Skip to content

Commit

Permalink
[release] 20240229 (#2279)
Browse files Browse the repository at this point in the history
* [release] 20240229

* fix changelog
  • Loading branch information
jiqiang90 authored Feb 29, 2024
1 parent 718a045 commit 17bde98
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 19 deletions.
5 changes: 4 additions & 1 deletion packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [4.3.0] - 2024-02-29
### Fixed
- Publish command output flag not working (#2270)

Expand Down Expand Up @@ -532,7 +534,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- support subcommand codegen
- support subcommand init

[Unreleased]: https://github.com/subquery/subql/compare/cli/4.2.7...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.3.0...HEAD
[4.3.0]: https://github.com/subquery/subql/compare/cli/4.2.7...cli/4.3.0
[4.2.7]: https://github.com/subquery/subql/compare/cli/4.2.6...cli/4.2.7
[4.2.6]: https://github.com/subquery/subql/compare/cli/4.2.5...cli/4.2.6
[4.2.5]: https://github.com/subquery/subql/compare/cli/4.2.4...cli/4.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@subql/cli",
"description": "cli for subquery",
"version": "4.2.7",
"version": "4.3.0",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down
6 changes: 5 additions & 1 deletion packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [7.3.1] - 2024-02-29
### Removed
- `scale-batch-size` flag as it had no use (#2275)

### Fixed
- Drop subscription triggers and notifiy_functions (#2277)
- Fix poi issue due to Int hashCode failed (#2278)

## [7.3.0] - 2024-02-23
### Added
Expand Down Expand Up @@ -580,7 +583,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Move blockchain agnostic code from `node` to `node-core` package. (#1222)

[Unreleased]: https://github.com/subquery/subql/compare/node-core/7.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/7.3.1...HEAD
[7.3.1]: https://github.com/subquery/subql/compare/node-core/7.3.0...node-core/7.3.1
[7.3.0]: https://github.com/subquery/subql/compare/node-core/7.2.1...node-core/7.3.0
[7.2.1]: https://github.com/subquery/subql/compare/node-core/7.2.0...node-core/7.2.1
[7.2.0]: https://github.com/subquery/subql/compare/node-core/7.1.0...node-core/7.2.0
Expand Down
5 changes: 2 additions & 3 deletions packages/node-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-core",
"version": "7.3.1-1",
"version": "7.3.1",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -47,6 +47,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "7.3.1-0"
}
}
7 changes: 6 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.6.1] - 2024-02-29
### Fixed
- Update `@subql/node-core` to fix Poi generation issue with negative integer, also drop subscription triggers and notifiy_functions

## [3.6.0] - 2024-02-23
### Changed
- Update `@subql/node-core` to 7.3.0
Expand Down Expand Up @@ -1113,7 +1117,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- bump @polkadot/api to 3.1.1

[Unreleased]: https://github.com/subquery/subql/compare/node/3.6.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/3.6.1...HEAD
[3.6.1]: https://github.com/subquery/subql/compare/node/3.6.0...node/3.6.1
[3.6.0]: https://github.com/subquery/subql/compare/node/3.5.3...node/3.6.0
[3.5.3]: https://github.com/subquery/subql/compare/node/3.5.1...node/3.5.3
[3.5.1]: https://github.com/subquery/subql/compare/node/3.5.0...node/3.5.1
Expand Down
5 changes: 2 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node",
"version": "3.6.1-0",
"version": "3.6.1",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -59,6 +59,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.6.0"
]
}
5 changes: 4 additions & 1 deletion packages/query/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.9.1] - 2024-02-29
### Fixed
- Relation filters not taking into account block height when historical is enabled (#2276)

Expand Down Expand Up @@ -281,7 +283,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- overwrite plugin to fix one to one unique key check
- update query publish and docker build process

[Unreleased]: https://github.com/subquery/subql/compare/query/2.9.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/query/2.9.1...HEAD
[2.9.1]: https://github.com/subquery/subql/compare/query/2.9.0...query/2.9.1
[2.9.0]: https://github.com/subquery/subql/compare/query/2.8.0...query/2.9.0
[2.8.0]: https://github.com/subquery/subql/compare/query/2.7.0...query/2.8.0
[2.7.0]: https://github.com/subquery/subql/compare/query/2.6.0...query2.7.0
Expand Down
5 changes: 2 additions & 3 deletions packages/query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/query",
"version": "2.9.1-1",
"version": "2.9.1",
"description": "",
"bin": {
"subql-query": "./bin/run"
Expand Down Expand Up @@ -69,6 +69,5 @@
"@types/rimraf": "^3.0.2",
"@types/yargs": "^16.0.4",
"nodemon": "^2.0.15"
},
"stableVersion": "2.9.1-0"
}
}
6 changes: 4 additions & 2 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.7.1] - 2024-02-29
### Fixed
- Fixed Int hashCode method failed due to original method not support negative value
- Fixed Int hashCode method failed due to original method not support negative value (#2278)

## [2.7.0] - 2024-01-25
### Added
Expand Down Expand Up @@ -117,7 +118,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Update polkadot/api to 9

[Unreleased]: https://github.com/subquery/subql/compare/utils/2.7.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/utils/2.7.1...HEAD
[2.7.1]: https://github.com/subquery/subql/compare/utils/2.7.0...utils/2.7.1
[2.7.0]: https://github.com/subquery/subql/compare/utils/2.6.2...utils/2.7.0
[2.6.2]: https://github.com/subquery/subql/compare/utils/2.6.1...utils/2.6.2
[2.6.1]: https://github.com/subquery/subql/compare/utils/2.6.0...utils/2.6.1
Expand Down
5 changes: 2 additions & 3 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/utils",
"version": "2.7.1-1",
"version": "2.7.1",
"description": "",
"packageManager": "[email protected]",
"scripts": {
Expand Down Expand Up @@ -30,6 +30,5 @@
},
"devDependencies": {
"@types/semver": "^7"
},
"stableVersion": "2.7.1-0"
}
}

0 comments on commit 17bde98

Please sign in to comment.