Skip to content

Commit

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

* common dependencies version bump
  • Loading branch information
jiqiang90 committed May 20, 2024
1 parent bab7d9f commit 0239d4d
Show file tree
Hide file tree
Showing 7 changed files with 112 additions and 113 deletions.
7 changes: 6 additions & 1 deletion packages/cli/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]

## [4.9.0] - 2024-05-20
### Changed
- Bump common dependencies to latest version

## [4.8.0] - 2024-05-08
### Changed
- Bump with @subql/util, update polkadot dependencies to v11
Expand Down Expand Up @@ -573,7 +577,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.8.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.9.0...HEAD
[4.9.0]: https://github.com/subquery/subql/compare/cli/4.8.0...cli/4.9.0
[4.8.0]: https://github.com/subquery/subql/compare/cli/4.7.0...cli/4.8.0
[4.7.0]: https://github.com/subquery/subql/compare/cli/4.6.0...cli/4.7.0
[4.6.0]: https://github.com/subquery/subql/compare/cli/4.5.2...cli/4.6.0
Expand Down
16 changes: 8 additions & 8 deletions 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.8.0",
"version": "4.9.0",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand All @@ -10,13 +10,13 @@
"dependencies": {
"@oclif/core": "^2.15.0",
"@subql/common": "workspace:*",
"@subql/common-algorand": "^3.3.0",
"@subql/common-concordium": "^3.5.1",
"@subql/common-cosmos": "^4.2.0",
"@subql/common-ethereum": "^3.5.0",
"@subql/common-flare": "^3.5.0",
"@subql/common-near": "^3.4.0",
"@subql/common-stellar": "^3.4.1",
"@subql/common-algorand": "^3.4.0",
"@subql/common-concordium": "^3.6.0",
"@subql/common-cosmos": "^4.3.0",
"@subql/common-ethereum": "^3.6.0",
"@subql/common-flare": "^3.6.0",
"@subql/common-near": "^3.5.0",
"@subql/common-stellar": "^3.5.0",
"@subql/common-substrate": "workspace:*",
"@subql/utils": "workspace:*",
"algosdk": "^1.19.0",
Expand Down
5 changes: 4 additions & 1 deletion packages/node-core/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]

## [10.3.0] - 2024-05-20
### Changed
- Update cache to always flush with a block height and clear after transaction commit (#2386)
- Export `SANDBOX_DEFAULT_BUILTINS` to share with other sandboxes (#2404)
Expand Down Expand Up @@ -687,7 +689,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/10.2.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/10.3.0...HEAD
[10.3.0]: https://github.com/subquery/subql/compare/node-core/10.2.0...node-core/10.3.0
[10.2.0]: https://github.com/subquery/subql/compare/node-core/10.1.2...node-core/10.2.0
[10.1.2]: https://github.com/subquery/subql/compare/node-core/10.1.1...node-core/10.1.2
[10.1.1]: https://github.com/subquery/subql/compare/node-core/10.1.0...node-core/10.1.1
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": "10.2.1-1",
"version": "10.3.0",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -48,6 +48,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "10.2.1-0"
}
}
4 changes: 3 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.4.2] - 2024-05-20
### Fixed
- Fix load chain types missing some builtins modules

Expand Down Expand Up @@ -1192,7 +1193,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/4.4.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/4.4.2...HEAD
[4.4.2]: https://github.com/subquery/subql/compare/node/4.4.1...node/4.4.2
[4.4.1]: https://github.com/subquery/subql/compare/node/4.4.0...node/4.4.1
[4.4.0]: https://github.com/subquery/subql/compare/node/4.3.2...node/4.4.0
[4.3.2]: https://github.com/subquery/subql/compare/node/4.3.1...node/4.3.2
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": "4.4.2-0",
"version": "4.4.2",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -54,6 +54,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "4.4.1"
]
}

0 comments on commit 0239d4d

Please sign in to comment.