Skip to content

Commit

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

* align node version with all sdks
  • Loading branch information
bz888 authored Mar 5, 2024
1 parent 7fcf90c commit 94f7833
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 16 deletions.
Empty file removed .yarn/versions/1102e26f.yml
Empty file.
Empty file removed .yarn/versions/66408aad.yml
Empty file.
Empty file removed .yarn/versions/79a0a9e4.yml
Empty file.
Empty file removed .yarn/versions/991d9292.yml
Empty file.
Empty file removed .yarn/versions/b29712ed.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/daa2e624.yml

This file was deleted.

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.4.0] - 2024-03-05
### Changed
- Update deployment command to align with ManagedService API changes (#2282)

Expand Down Expand Up @@ -536,7 +538,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.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.4.0...HEAD
[4.4.0]: https://github.com/subquery/subql/compare/cli/4.3.0...cli/4.4.0
[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
Expand Down
5 changes: 2 additions & 3 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.3.1-0",
"version": "4.4.0",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down Expand Up @@ -90,6 +90,5 @@
"types": "lib/index.d.ts",
"resolutions": {
"node-fetch": "2.6.7"
},
"stableVersion": "4.3.0"
}
}
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]

## [7.4.0] - 2024-03-05
### Fixed
- Fix missing incrememnt keys on `_metadata` table (#2283)
- Fixed unexpected `store` on testing suite Entity (#2285)
Expand Down Expand Up @@ -589,7 +591,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.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/7.4.0...HEAD
[7.4.0]: https://github.com/subquery/subql/compare/node-core/7.3.1...node-core/7.4.0
[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
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.2-1",
"version": "7.4.0",
"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.2-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.9.0] - 2024-03-05
### Changed
- Update `@subql/node-core` to 7.4.0

## [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
Expand Down Expand Up @@ -1117,7 +1121,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.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/3.9.0...HEAD
[3.9.0]: https://github.com/subquery/subql/compare/node/3.6.1...node/3.9.0
[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
Expand Down
2 changes: 1 addition & 1 deletion 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",
"version": "3.9.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down
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.10.0] - 2024-03-05
### Added
- Fulltext search plugin to sanitise search input (#2280)

Expand Down Expand Up @@ -285,7 +287,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.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/query/2.10.0...HEAD
[2.10.0]: https://github.com/subquery/subql/compare/query/2.9.1...query/2.10.0
[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
Expand Down
2 changes: 1 addition & 1 deletion 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",
"version": "2.10.0",
"description": "",
"bin": {
"subql-query": "./bin/run"
Expand Down
5 changes: 4 additions & 1 deletion packages/utils/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.8.0] - 2024-03-05
### Added
- New fullText graphql directive (#2280)

Expand Down Expand Up @@ -120,7 +122,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.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/utils/2.8.0...HEAD
[2.8.0]: https://github.com/subquery/subql/compare/utils/2.7.1...utils/2.8.0
[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
Expand Down
2 changes: 1 addition & 1 deletion 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",
"version": "2.8.0",
"description": "",
"packageManager": "[email protected]",
"scripts": {
Expand Down

0 comments on commit 94f7833

Please sign in to comment.