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

Upgrade @polkadot/api version to 14 #2596

Closed
Closed
Show file tree
Hide file tree
Changes from 3 commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"typescript": "^5.5.4"
},
"resolutions": {
"@polkadot/api": "12.3.1",
"@polkadot/api": "14.3.1",
"@polkadot/util": "13.0.2",
"node-fetch": "2.6.7"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/test/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"author": "SubQuery Team",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^11",
"@polkadot/api": "^14",
"@subql/cli": "latest",
"@subql/testing": "latest",
"@subql/types": "latest",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/fixtures/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"author": "Ian He & Jay Ji",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "^12.3.1",
"@polkadot/api": "^14.3.1",
"@subql/types": "latest",
"typescript": "^4.9.5",
"@subql/cli": "latest"
Expand Down
2 changes: 1 addition & 1 deletion packages/node-core/test/v1.0.0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"author": "Ian He & Jay Ji",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "^12.3.1",
"@polkadot/api": "^14.3.1",
"@subql/types": "latest",
"typescript": "^4.9.5",
"@subql/cli": "latest"
Expand Down
5 changes: 2 additions & 3 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### 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.
- Update polkadot/api library to 14 version


## [5.2.9] - 2024-10-30
Expand Down
4 changes: 2 additions & 2 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",
stepanLav marked this conversation as resolved.
Show resolved Hide resolved
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -24,7 +24,7 @@
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^3.0.1",
"@polkadot/api": "^12.3.1",
"@polkadot/api": "^14.3.1",
"@subql/common": "workspace:*",
"@subql/common-substrate": "workspace:*",
"@subql/node-core": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"author": "Ian He & Jay Ji",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "^12.3.1",
"@polkadot/api": "^14.3.1",
"@subql/types": "dev",
"typescript": "^4.1.3",
"@subql/cli": "dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/node/test/projectFixture/v1.0.0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"author": "Ian He & Jay Ji",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "^12.3.1",
"@polkadot/api": "^14.3.1",
"@subql/types": "dev",
"typescript": "^4.9.5",
"@subql/cli": "dev"
Expand Down
2 changes: 2 additions & 0 deletions packages/types/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]
### Added
- Update polkadot/api library to 14 version
stepanLav marked this conversation as resolved.
Show resolved Hide resolved

## [3.11.3] - 2024-10-23
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@subql/types-core": "workspace:*"
},
"peerDependencies": {
"@polkadot/api": "^12"
"@polkadot/api": "^14"
},
"devDependencies": {
"@polkadot/api": "^12.3.1"
"@polkadot/api": "^14.3.1"
}
}
Loading