Skip to content

Commit

Permalink
Release v1.1.0-rc1 (#1226)
Browse files Browse the repository at this point in the history
* Add participation routes to config files

* Release 1.1.0-rc1
  • Loading branch information
muXxer authored Dec 3, 2021
1 parent f5fa1ae commit 299c946
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 4 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

All notable changes to this project will be documented in this file.

## [1.1.0-rc1] - 03.12.2021

### Added
- Add participation plugin (#1204, #1207, #1208, #1209, #1210, #1212, #1215, #1218, #1221)
- Add participation-cli tool (#1206, #1219)
- Add rocksdb static binaries for macOS (#1192)

### Changed
- Refactor the JWT auth for the API (#1191)
- Separate UTXO database (#1201, #1205)
- Add JSON output to some of the tools (#1199)
- Only accept bech32 addresses with the correct prefix in the rest API (#1197)

### Fixed
- Improve search missing milestones (#1196)
- Optimize RocksDB level compaction (#1223)
- Use integer instead of strings for ulimits in docker-compose file

### Chore
- Updated dependencies and Go 1.17 (#1193)
- Updated cross compiler to latest version (#1224)
- Updated deps to latest versions (#1192, #1217, #1182, #1225)
- Use contexts to cancel instead of signal channels (#1195, 1198)

### Workflows
- Run snyk test in a schedule instead on every PR (#1200)
- Updated CodeQL workflow according to generator from github (#1194)
- Added twitter bot notification on release (#1216)

## [1.0.6-rc1] - 04.10.2021

### Added
Expand Down
5 changes: 4 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"/api/v1/outputs*",
"/api/v1/addresses*",
"/api/v1/treasury",
"/api/v1/receipts*"
"/api/v1/receipts*",
"/api/plugins/participation/events*",
"/api/plugins/participation/outputs*",
"/api/plugins/participation/addresses*"
],
"protectedRoutes": [
"/api/v1/*",
Expand Down
5 changes: 4 additions & 1 deletion config_comnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"/api/v1/outputs*",
"/api/v1/addresses*",
"/api/v1/treasury",
"/api/v1/receipts*"
"/api/v1/receipts*",
"/api/plugins/participation/events*",
"/api/plugins/participation/outputs*",
"/api/plugins/participation/addresses*"
],
"protectedRoutes": [
"/api/v1/*",
Expand Down
5 changes: 4 additions & 1 deletion config_devnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"/api/v1/outputs*",
"/api/v1/addresses*",
"/api/v1/treasury",
"/api/v1/receipts*"
"/api/v1/receipts*",
"/api/plugins/participation/events*",
"/api/plugins/participation/outputs*",
"/api/plugins/participation/addresses*"
],
"protectedRoutes": [
"/api/v1/*",
Expand Down
2 changes: 1 addition & 1 deletion core/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var (
Name = "HORNET"

// Version of the app.
Version = "1.0.6-rc1"
Version = "1.1.0-rc1"
)

var (
Expand Down
3 changes: 3 additions & 0 deletions plugins/restapi/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ var params = &node.PluginParams{
"/api/v1/addresses*",
"/api/v1/treasury",
"/api/v1/receipts*",
"/api/plugins/participation/events*",
"/api/plugins/participation/outputs*",
"/api/plugins/participation/addresses*",
}, "the HTTP REST routes which can be called without authorization. Wildcards using * are allowed")
fs.StringSlice(CfgRestAPIProtectedRoutes,
[]string{
Expand Down

0 comments on commit 299c946

Please sign in to comment.