Skip to content

Commit

Permalink
[release] 20240621 (#2464)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 authored Jun 21, 2024
1 parent 5ebdf1b commit 9af0971
Show file tree
Hide file tree
Showing 22 changed files with 74 additions and 59 deletions.
10 changes: 10 additions & 0 deletions .yarn/versions/92ff9489.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
undecided:
- "@subql/common"
- "@subql/common-substrate"
- "@subql/node"
- "@subql/node-core"
- "@subql/query"
- "@subql/testing"
- "@subql/types"
- "@subql/types-core"
- "@subql/utils"
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.15.0] - 2024-06-21
### Changed
- Update `@subql/utils`, `@subql/common` and other dependencies

## [4.14.0] - 2024-06-18
### Removed
- Deprecated flare SDK (#2428)
Expand Down Expand Up @@ -610,7 +614,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.14.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.15.0...HEAD
[4.15.0]: https://github.com/subquery/subql/compare/cli/4.14.0...cli/4.15.0
[4.14.0]: https://github.com/subquery/subql/compare/cli/4.13.1...cli/4.14.0
[4.13.1]: https://github.com/subquery/subql/compare/cli/4.13.0...cli/4.13.1
[4.13.0]: https://github.com/subquery/subql/compare/cli/4.12.0...cli/4.13.0
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.14.0",
"version": "4.15.0",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down
4 changes: 3 additions & 1 deletion packages/common-substrate/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]

## [3.8.1] - 2024-06-21
### Fixed
- Fix `EventFilter` incorrectly extend `BlockFilter`, lead dictionary error (#2463)

Expand Down Expand Up @@ -155,7 +156,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- init commit

[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/3.8.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/3.8.1...HEAD
[3.8.1]: https://github.com/subquery/subql/compare/common-substrate/3.8.0...common-substrate/3.8.1
[3.8.0]: https://github.com/subquery/subql/compare/common-substrate/3.7.0...common-substrate/3.8.0
[3.7.0]: https://github.com/subquery/subql/compare/common-substrate/3.6.0...common-substrate/3.7.0
[3.6.0]: https://github.com/subquery/subql/compare/common-substrate/3.5.0...common-substrate/3.6.0
Expand Down
5 changes: 2 additions & 3 deletions packages/common-substrate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common-substrate",
"version": "3.8.1-0",
"version": "3.8.1",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand All @@ -27,6 +27,5 @@
"@types/bn.js": "4.11.6",
"@types/js-yaml": "^4.0.4",
"@types/pino": "^6.3.12"
},
"stableVersion": "3.8.0"
}
}
6 changes: 4 additions & 2 deletions packages/common/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]

## [3.9.0] - 2024-06-21
### Added
- Enable ts strict model
- Enable ts strict model
- Reader interface method not returning undefined

## [3.8.0] - 2024-06-18
Expand Down Expand Up @@ -375,7 +376,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- init commit

[Unreleased]: https://github.com/subquery/subql/compare/common/3.8.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/common/3.9.0...HEAD
[3.9.0]: https://github.com/subquery/subql/compare/common/3.8.0...common/3.9.0
[3.8.0]: https://github.com/subquery/subql/compare/common/3.7.0...common/3.8.0
[3.7.0]: https://github.com/subquery/subql/compare/common/3.6.0...common/3.7.0
[3.6.0]: https://github.com/subquery/subql/compare/common/3.5.1...common/3.6.0
Expand Down
5 changes: 2 additions & 3 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common",
"version": "3.8.1-0",
"version": "3.9.0",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down Expand Up @@ -34,6 +34,5 @@
"@types/semver": "^7.3.9",
"@types/tar": "^6.1.1",
"@types/update-notifier": "^6"
},
"stableVersion": "3.8.0"
}
}
8 changes: 5 additions & 3 deletions packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.9.0] - 2024-06-21
### Fixed
- Store service index check failing with snake_case fields (#2461)

## Changed
- Error message for finding available port
### Changed
- Error message for finding available port

## [10.6.0] - 2024-06-18
### Fixed
Expand Down Expand Up @@ -738,7 +739,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.6.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/10.9.0...HEAD
[10.9.0]: https://github.com/subquery/subql/compare/node-core/10.6.0...node-core/10.9.0
[10.6.0]: https://github.com/subquery/subql/compare/node-core/10.5.1...node-core/10.6.0
[10.5.1]: https://github.com/subquery/subql/compare/node-core/10.5.0...node-core/10.5.1
[10.5.0]: https://github.com/subquery/subql/compare/node-core/10.4.1...node-core/10.5.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": "10.6.1-1",
"version": "10.9.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.6.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.6.6] - 2024-06-21
### Fixed
- Update with common-substrate, fix `EventFilter` incorrectly extend `BlockFilter`, lead dictionary error (#2463)
- Fix dictionary query entries included undefined fields (#2463)
Expand Down Expand Up @@ -1232,7 +1233,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.6.5...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/4.6.6...HEAD
[4.6.6]: https://github.com/subquery/subql/compare/node/4.6.5...node/4.6.6
[4.6.5]: https://github.com/subquery/subql/compare/node/4.6.4...node/4.6.5
[4.6.4]: https://github.com/subquery/subql/compare/node/4.6.3...node/4.6.4
[4.6.3]: https://github.com/subquery/subql/compare/node/4.6.2...node/4.6.3
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.6.6-0",
"version": "4.6.6",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -54,6 +54,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "4.6.5"
]
}
7 changes: 5 additions & 2 deletions packages/query/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.13.0] - 2024-06-21
### Fixed
- Fixed query service unable to query dynamic datasource due to change from #2302
- Fixed query service unable to query dynamic datasource due to change from #2302

### Added
- enable ts strict mode

Expand Down Expand Up @@ -324,7 +326,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.12.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/query/2.13.0...HEAD
[2.13.0]: https://github.com/subquery/subql/compare/query/2.12.1...query/2.13.0
[2.12.1]: https://github.com/subquery/subql/compare/query/2.12.0...query/2.12.1
[2.12.0]: https://github.com/subquery/subql/compare/query/2.11.1...query/2.12.0
[2.11.1]: https://github.com/subquery/subql/compare/query/2.11.0...query/2.11.1
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.12.2-2",
"version": "2.13.0",
"description": "",
"bin": {
"subql-query": "./bin/run"
Expand Down Expand Up @@ -70,6 +70,5 @@
"@types/rimraf": "^3.0.2",
"@types/yargs": "^16.0.4",
"nodemon": "^2.0.15"
},
"stableVersion": "2.12.2-1"
}
}
7 changes: 6 additions & 1 deletion packages/testing/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]

## [2.2.0] - 2024-06-21
### Changed
- Bump version with `@subql/types-core`

## [2.1.2] - 2024-06-18
### Changed
- Enable strict TS setting (#2446)
Expand All @@ -30,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Major release 2.0.0, align with other package versions

[Unreleased]: https://github.com/subquery/subql/compare/testing/2.1.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/testing/2.2.0...HEAD
[2.2.0]: https://github.com/subquery/subql/compare/testing/2.1.2...testing/2.2.0
[2.1.2]: https://github.com/subquery/subql/compare/testing/2.1.1...testing/2.1.2
[2.1.1]: https://github.com/subquery/subql/compare/testing/2.1.0...testing/2.1.1
[2.1.0]: https://github.com/subquery/subql/compare/testing/2.0.2...testing/2.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/testing",
"version": "2.1.2",
"version": "2.2.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc -b",
Expand Down
5 changes: 3 additions & 2 deletions packages/types-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ All notable changes to this project will be documented in this file.
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]

## [0.8.0] - 2024-06-21
### Changed
- Reader interface not returning undefined

Expand Down Expand Up @@ -46,7 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release of new package containing types common to all chains

[Unreleased]: https://github.com/subquery/subql/compare/types-core/0.7.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/types-core/0.8.0...HEAD
[0.8.0]: https://github.com/subquery/subql/compare/types-core/0.7.0...types-core/0.8.0
[0.7.0]: https://github.com/subquery/subql/compare/types-core/0.6.0...types-core/0.7.0
[0.6.0]: https://github.com/subquery/subql/compare/types-core/0.5.0...types-core/0.6.0
[0.5.0]: https://github.com/subquery/subql/compare/types-core/0.4.0...types-core/0.5.0
Expand Down
5 changes: 2 additions & 3 deletions packages/types-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types-core",
"version": "0.7.1-0",
"version": "0.8.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -17,6 +17,5 @@
],
"dependencies": {
"package-json-type": "^1.0.3"
},
"stableVersion": "0.7.0"
}
}
7 changes: 6 additions & 1 deletion packages/types/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.7.0] - 2024-06-21
### Changed
- Bump version with `@subql/types-core`

## [3.6.1] - 2024-06-12
### Changed
- Update polkadot dependencies to 11.2.1 (#2440)
Expand Down Expand Up @@ -233,7 +237,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- support block handler

[Unreleased]: https://github.com/subquery/subql/compare/types/3.6.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/types/3.7.0...HEAD
[3.7.0]: https://github.com/subquery/subql/compare/types/3.6.1...types/3.7.0
[3.6.1]: https://github.com/subquery/subql/compare/types/3.6.0...types/3.6.1
[3.6.0]: https://github.com/subquery/subql/compare/types/3.5.0...types/3.6.0
[3.5.0]: https://github.com/subquery/subql/compare/types/3.4.0...types/3.5.0
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types",
"version": "3.6.1",
"version": "3.7.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
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.12.0] - 2024-06-21
### Added
- Better error messages for invalid graphql schemas (#2458)

Expand Down Expand Up @@ -149,7 +151,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.11.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/utils/2.12.0...HEAD
[2.12.0]: https://github.com/subquery/subql/compare/utils/2.11.0...utils/2.12.0
[2.11.0]: https://github.com/subquery/subql/compare/utils/2.10.0...utils/2.11.0
[2.10.0]: https://github.com/subquery/subql/compare/utils/2.9.2...utils/2.10.0
[2.9.2]: https://github.com/subquery/subql/compare/utils/2.9.1...utils/2.9.2
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.11.1-1",
"version": "2.12.0",
"description": "",
"packageManager": "[email protected]",
"scripts": {
Expand Down Expand Up @@ -30,6 +30,5 @@
},
"devDependencies": {
"@types/semver": "^7"
},
"stableVersion": "2.11.1-0"
}
}
22 changes: 2 additions & 20 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6393,25 +6393,7 @@ __metadata:
languageName: unknown
linkType: soft

"@subql/common@npm:^3.5.1":
version: 3.8.0
resolution: "@subql/common@npm:3.8.0"
dependencies:
"@subql/types-core": 0.7.0
axios: ^0.28.0
class-transformer: ^0.5.1
class-validator: ^0.14.0
fs-extra: ^10.1.0
ipfs-http-client: 56
js-yaml: ^4.1.0
reflect-metadata: ^0.1.13
semver: ^7.5.2
update-notifier: 5.1.0
checksum: c4eb96996f99e5a47546613fbc177fba436b9cf62cebfd589898f734cca1fc463dd643acf56bc20319bf3bd256504084c4eef227b636be162a2da35d4e3350cd
languageName: node
linkType: hard

"@subql/common@workspace:*, @subql/common@workspace:packages/common":
"@subql/common@^3.5.1, @subql/common@workspace:*, @subql/common@workspace:packages/common":
version: 0.0.0-use.local
resolution: "@subql/common@workspace:packages/common"
dependencies:
Expand Down Expand Up @@ -6582,7 +6564,7 @@ __metadata:
languageName: node
linkType: hard

"@subql/types-core@npm:0.7.0, @subql/types-core@npm:^0.7.0":
"@subql/types-core@npm:^0.7.0":
version: 0.7.0
resolution: "@subql/types-core@npm:0.7.0"
dependencies:
Expand Down

0 comments on commit 9af0971

Please sign in to comment.