Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] 20241122 #2598

Merged
merged 3 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .yarn/versions/7cd00a40.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
undecided:
- "@subql/cli"
- "@subql/common"
- "@subql/common-substrate"
- "@subql/node"
- "@subql/node-core"
- "@subql/query"
4 changes: 3 additions & 1 deletion packages/cli/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]

## [5.3.1] - 2024-11-22
### Fixed
- Multi-chain project initialization error

Expand Down Expand Up @@ -690,7 +691,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/5.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/5.3.1...HEAD
[5.3.1]: https://github.com/subquery/subql/compare/cli/5.3.0...cli/5.3.1
[5.3.0]: https://github.com/subquery/subql/compare/cli/5.2.8...cli/5.3.0
[5.2.8]: https://github.com/subquery/subql/compare/cli/5.2.7...cli/5.2.8
[5.2.7]: https://github.com/subquery/subql/compare/cli/5.2.6...cli/5.2.7
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": "5.3.1-0",
"version": "5.3.1",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down Expand Up @@ -88,6 +88,5 @@
"types": "lib/index.d.ts",
"resolutions": {
"node-fetch": "2.6.7"
},
"stableVersion": "5.3.0"
}
}
5 changes: 4 additions & 1 deletion packages/common-substrate/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.3] - 2024-11-22
### Changed
- Update common (#2584)

Expand Down Expand Up @@ -195,7 +197,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/4.3.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.3.3...HEAD
[4.3.3]: https://github.com/subquery/subql/compare/common-substrate/4.3.2...common-substrate/4.3.3
[4.3.2]: https://github.com/subquery/subql/compare/common-substrate/4.3.1...common-substrate/4.3.2
[4.3.1]: https://github.com/subquery/subql/compare/common-substrate/4.3.0...common-substrate/4.3.1
[4.3.0]: https://github.com/subquery/subql/compare/common-substrate/4.2.0...common-substrate/4.3.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": "4.3.3-0",
"version": "4.3.3",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand All @@ -20,6 +20,5 @@
"peerDependencies": {
"class-transformer": "*",
"class-validator": "*"
},
"stableVersion": "4.3.2"
}
}
6 changes: 5 additions & 1 deletion packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ 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]

## [5.1.5] - 2024-11-22
### Fixed
- Removed imports of `@polkadot/util` without it being a dependency (#2592)

### Removed
- Support for cockroach DB (#2584)

Expand Down Expand Up @@ -423,7 +426,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/5.1.4...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/common/5.1.5...HEAD
[5.1.5]: https://github.com/subquery/subql/compare/common/5.1.4...common/5.1.5
[5.1.4]: https://github.com/subquery/subql/compare/common/5.1.3...common/5.1.4
[5.1.3]: https://github.com/subquery/subql/compare/common/5.1.2...common/5.1.3
[5.1.2]: https://github.com/subquery/subql/compare/common/5.1.1...common/5.1.2
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": "5.1.5-1",
"version": "5.1.5",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this needs to be more than a patch, removing cockroach will not be compatible

"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand All @@ -27,6 +27,5 @@
"@types/js-yaml": "^4.0.9",
"@types/semver": "^7.5.8",
"@types/update-notifier": "^6"
},
"stableVersion": "5.1.5-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]

## [14.2.0] - 2024-11-22
### Added
- lazy loading for monitor service (#2583)
- Add an `--enable-cache` flag, allowing you to choose between DB or cache for IO operations.
Expand Down Expand Up @@ -854,7 +856,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/14.1.7...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/14.2.0...HEAD
[14.2.0]: https://github.com/subquery/subql/compare/node-core/14.1.7...node-core/14.2.0
[14.1.7]: https://github.com/subquery/subql/compare/node-core/14.1.6...node-core/14.1.7
[14.1.6]: https://github.com/subquery/subql/compare/node-core/14.1.5...node-core/14.1.6
[14.1.5]: https://github.com/subquery/subql/compare/node-core/14.1.4...node-core/14.1.5
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": "14.1.8-3",
"version": "14.2.0",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are breaking changes so this should be major

"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/yargs": "^16.0.9"
},
"stableVersion": "14.1.8-2"
}
}
8 changes: 5 additions & 3 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ 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]

## [5.3.0] - 2024-11-22
### Added
- Support for historical indexing by timestamp as well as block height (#2584)

### Added
- Add an `--enable-cache` flag, allowing you to choose between DB or cache for IO operations.

- Add an `--enable-cache` flag, allowing you to choose between DB or cache for IO operations.

## [5.2.9] - 2024-10-30
### Changed
Expand Down Expand Up @@ -1329,7 +1330,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/5.2.9...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/5.3.0...HEAD
[5.3.0]: https://github.com/subquery/subql/compare/node/5.2.9...node/5.3.0
[5.2.9]: https://github.com/subquery/subql/compare/node/5.2.8...node/5.2.9
[5.2.8]: https://github.com/subquery/subql/compare/node/5.2.7...node/5.2.8
[5.2.7]: https://github.com/subquery/subql/compare/node/5.2.6...node/5.2.7
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": "5.2.10-1",
"version": "5.3.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -50,6 +50,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "5.2.10-0"
]
}
6 changes: 5 additions & 1 deletion packages/query/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ 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.16.0] - 2024-11-22
### Changed
- Update the playground to the latest GraphiQL (#2588)

### Added
- Support for historical indexing by timestamp as well as block height (#2584)

Expand Down Expand Up @@ -368,7 +371,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.15.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/query/2.16.0...HEAD
[2.16.0]: https://github.com/subquery/subql/compare/query/2.15.2...query/2.16.0
[2.15.2]: https://github.com/subquery/subql/compare/query/2.15.1...query/2.15.2
[2.15.1]: https://github.com/subquery/subql/compare/query/2.15.0...query/2.15.1
[2.15.0]: https://github.com/subquery/subql/compare/query/2.14.1...query/2.15.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.15.3-1",
"version": "2.16.0",
"description": "",
"bin": {
"subql-query": "./bin/run"
Expand Down Expand Up @@ -67,6 +67,5 @@
"@types/lodash": "^4.17.7",
"@types/yargs": "^16.0.9",
"nodemon": "^3.1.4"
},
"stableVersion": "2.15.3-0"
}
}
6 changes: 5 additions & 1 deletion packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ 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.15.0] - 2024-11-22
### Added
- Support for indexes on enums (#2586)

### Changed
- Update metadata types (#2584)

Expand Down Expand Up @@ -174,7 +177,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.14.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/utils/2.15.0...HEAD
[2.15.0]: https://github.com/subquery/subql/compare/utils/2.14.0...utils/2.15.0
[2.14.0]: https://github.com/subquery/subql/compare/utils/2.13.1...utils/2.14.0
[2.13.1]: https://github.com/subquery/subql/compare/utils/2.13.0...utils/2.13.1
[2.13.0]: https://github.com/subquery/subql/compare/utils/2.12.1...utils/2.13.0
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.14.1-1",
"version": "2.15.0",
"description": "",
"packageManager": "[email protected]",
"scripts": {
Expand Down Expand Up @@ -28,6 +28,5 @@
"devDependencies": {
"@types/detect-port": "^1.3.5",
"@types/pino": "^6.3.12"
},
"stableVersion": "2.14.1-0"
}
}
68 changes: 26 additions & 42 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6745,40 +6745,7 @@ __metadata:
languageName: unknown
linkType: soft

"@subql/common@npm:^4.0.0, @subql/common@npm:^4.1.1":
version: 4.1.1
resolution: "@subql/common@npm:4.1.1"
dependencies:
"@subql/types-core": 0.10.0
axios: ^0.28.0
class-transformer: ^0.5.1
class-validator: ^0.14.0
fs-extra: ^10.1.0
js-yaml: ^4.1.0
reflect-metadata: ^0.1.13
semver: ^7.5.2
update-notifier: 5.1.0
checksum: 2f578678b5af8190639ada7e2f22401b3ca7b7c7cab1bfdeb5860365c14e6c6a8724b02c95f1f8fedfcc01205d02d3de45cd486e2c3ee10ff5f898f973d6e0dc
languageName: node
linkType: hard

"@subql/common@npm:^5.0.0":
version: 5.1.4
resolution: "@subql/common@npm:5.1.4"
dependencies:
"@subql/types-core": 2.0.0
axios: ^0.28.0
class-transformer: ^0.5.1
class-validator: ^0.14.1
js-yaml: ^4.1.0
reflect-metadata: ^0.1.14
semver: ^7.6.3
update-notifier: ^5.1.0
checksum: e0e4d5eb6ff521234b784cdd82810566aa00c58303345915435d105432c5d98b618fa8523597d9e98edcffbaa3c383dd67458862ae38b1b7b7971fcac0dde092
languageName: node
linkType: hard

"@subql/common@workspace:*, @subql/common@workspace:packages/common":
"@subql/common@^5.0.0, @subql/common@workspace:*, @subql/common@workspace:packages/common":
version: 0.0.0-use.local
resolution: "@subql/common@workspace:packages/common"
dependencies:
Expand All @@ -6796,6 +6763,23 @@ __metadata:
languageName: unknown
linkType: soft

"@subql/common@npm:^4.0.0, @subql/common@npm:^4.1.1":
version: 4.1.1
resolution: "@subql/common@npm:4.1.1"
dependencies:
"@subql/types-core": 0.10.0
axios: ^0.28.0
class-transformer: ^0.5.1
class-validator: ^0.14.0
fs-extra: ^10.1.0
js-yaml: ^4.1.0
reflect-metadata: ^0.1.13
semver: ^7.5.2
update-notifier: 5.1.0
checksum: 2f578678b5af8190639ada7e2f22401b3ca7b7c7cab1bfdeb5860365c14e6c6a8724b02c95f1f8fedfcc01205d02d3de45cd486e2c3ee10ff5f898f973d6e0dc
languageName: node
linkType: hard

"@subql/node-core@workspace:*, @subql/node-core@workspace:packages/node-core":
version: 0.0.0-use.local
resolution: "@subql/node-core@workspace:packages/node-core"
Expand Down Expand Up @@ -6934,14 +6918,6 @@ __metadata:
languageName: node
linkType: hard

"@subql/[email protected], @subql/types-core@workspace:*, @subql/types-core@workspace:^, @subql/types-core@workspace:packages/types-core":
version: 0.0.0-use.local
resolution: "@subql/types-core@workspace:packages/types-core"
dependencies:
package-json-type: ^1.0.3
languageName: unknown
linkType: soft

"@subql/types-core@npm:0.10.0, @subql/types-core@npm:^0.10.0":
version: 0.10.0
resolution: "@subql/types-core@npm:0.10.0"
Expand All @@ -6967,6 +6943,14 @@ __metadata:
languageName: node
linkType: hard

"@subql/types-core@workspace:*, @subql/types-core@workspace:^, @subql/types-core@workspace:packages/types-core":
version: 0.0.0-use.local
resolution: "@subql/types-core@workspace:packages/types-core"
dependencies:
package-json-type: ^1.0.3
languageName: unknown
linkType: soft

"@subql/types-cosmos@npm:3.5.1":
version: 3.5.1
resolution: "@subql/types-cosmos@npm:3.5.1"
Expand Down
Loading