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] 20231017 #2105

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
Empty file removed .yarn/versions/34032365.yml
Empty file.
Empty file removed .yarn/versions/4ab18321.yml
Empty file.
Empty file removed .yarn/versions/5f4edfc1.yml
Empty file.
Empty file removed .yarn/versions/b68a9365.yml
Empty file.
Empty file removed .yarn/versions/ece9ecaa.yml
Empty file.
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.0.4] - 2023-10-17
### Fixed
- handle error on generate command (#2095)

## [4.0.3] - 2023-10-11
### Fixed
- Fixed yaml readers/writers on `init` command (#2082)
Expand Down Expand Up @@ -473,7 +477,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.0.3...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.0.4...HEAD
[4.0.4]: https://github.com/subquery/subql/compare/cli/4.0.3...cli/4.0.4
[4.0.3]: https://github.com/subquery/subql/compare/cli/4.0.2...cli/4.0.3
[4.0.2]: https://github.com/subquery/subql/compare/cli/4.0.1...cli/4.0.2
[4.0.1]: https://github.com/subquery/subql/compare/cli/4.0.0...cli/4.0.1
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.0.4-1",
"version": "4.0.4",
"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": "4.0.4-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]

## [6.0.3] - 2023-10-17
### Fixed
- Dictionary validation error causing application exit (#2101)
- Auto queue flush getting the queue into a bad state (#2103)
Expand Down Expand Up @@ -435,7 +437,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/6.0.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.0.3...HEAD
[6.0.3]: https://github.com/subquery/subql/compare/node-core/6.0.2...node-core/6.0.3
[6.0.2]: https://github.com/subquery/subql/compare/node-core/6.0.1...node-core/6.0.2
[6.0.1]: https://github.com/subquery/subql/compare/node-core/6.0.0...node-core/6.0.1
[6.0.0]: https://github.com/subquery/subql/compare/node-core/5.0.3...node-core/6.0.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": "6.0.3-2",
"version": "6.0.3",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -45,6 +45,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "6.0.3-1"
}
}
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.0.7] - 2023-10-17
### Changed
- Update with node-core 6.0.3

## [3.0.6] - 2023-10-12
### Changed
- Update node-core
Expand Down Expand Up @@ -1007,7 +1011,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.0.6...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/3.0.7...HEAD
[3.0.7]: https://github.com/subquery/subql/compare/node/3.0.6...node/3.0.7
[3.0.6]: https://github.com/subquery/subql/compare/node/3.0.5...node/3.0.6
[3.0.5]: https://github.com/subquery/subql/compare/node/3.0.4...node/3.0.5
[3.0.4]: https://github.com/subquery/subql/compare/node/3.0.3...node/3.0.4
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": "3.0.7-0",
"version": "3.0.7",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -60,6 +60,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.0.6"
]
}
7 changes: 5 additions & 2 deletions packages/query/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ 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.6.0] - 2023-10-17
### Added
- Add `lastFinalizedVerifiedHeight`, `unfinalizedBlocks`, `lastCreatedPoiHeight` and `latestSyncedPoiHeight` to metadata
- Add `lastFinalizedVerifiedHeight`, `unfinalizedBlocks`, `lastCreatedPoiHeight` and `latestSyncedPoiHeight` to metadata

## [2.5.0] - 2023-08-10
### Added
Expand Down Expand Up @@ -264,7 +266,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/v2.5.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/query/2.6.0...HEAD
[2.6.0]: https://github.com/subquery/subql/compare/query/2.5.0...query/2.6.0
[2.5.0]: https://github.com/subquery/subql/compare/v2.4.0...v2.5.0
[2.4.0]: https://github.com/subquery/subql/compare/query/2.3.0...query/2.4.0
[2.3.0]: https://github.com/subquery/subql/compare/query/2.2.0...query/2.3.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.5.1-1",
"version": "2.6.0",
"description": "",
"bin": {
"subql-query": "./bin/run"
Expand Down Expand Up @@ -67,6 +67,5 @@
"@types/rimraf": "^3.0.2",
"@types/yargs": "^16.0.4",
"nodemon": "^2.0.15"
},
"stableVersion": "2.5.1-0"
}
}
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.1.0] - 2023-10-17
### Changed
- Update with Typescript manifest (#2011)

## [2.0.2] - 2023-07-31
### Fixed
- Update license (#1891)
Expand All @@ -18,7 +22,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/v2.0.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/testing/2.1.0...HEAD
[2.1.0]: https://github.com/subquery/subql/compare/testing/2.0.2...testing/2.1.0
[2.0.2]: https://github.com/subquery/subql/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/subquery/subql/compare/testing/2.0.0...testing/2.0.1
[2.0.0]: https://github.com/subquery/subql/tag/v2.0.0
5 changes: 2 additions & 3 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/testing",
"version": "2.0.3-1",
"version": "2.1.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc -b",
Expand All @@ -14,6 +14,5 @@
"packageManager": "[email protected]",
"dependencies": {
"@subql/types-core": "workspace:^"
},
"stableVersion": "2.0.3-0"
}
}
Loading