Skip to content

Commit

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

* release util
  • Loading branch information
jiqiang90 authored Oct 11, 2023
1 parent 1aa4ba0 commit 4271110
Show file tree
Hide file tree
Showing 20 changed files with 32 additions and 34 deletions.
Empty file removed .yarn/versions/0568a5e3.yml
Empty file.
Empty file removed .yarn/versions/0e8338ad.yml
Empty file.
Empty file removed .yarn/versions/26f9d372.yml
Empty file.
Empty file removed .yarn/versions/3ef0d706.yml
Empty file.
Empty file removed .yarn/versions/454d0210.yml
Empty file.
5 changes: 0 additions & 5 deletions .yarn/versions/7a978424.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/7d0ba988.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/9aef76dc.yml

This file was deleted.

Empty file removed .yarn/versions/b09ea481.yml
Empty file.
Empty file removed .yarn/versions/b3da2d4b.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/e22b680b.yml

This file was deleted.

Empty file removed .yarn/versions/e9c86ee8.yml
Empty file.
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.0.3] - 2023-10-11
### Fixed
- Fixed yaml readers/writers on `init` command (#2082)

Expand Down Expand Up @@ -471,7 +473,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.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.0.3...HEAD
[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
[4.0.0]: https://github.com/subquery/subql/compare/cli/3.6.1...cli/4.0.0
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.3-1",
"version": "4.0.3",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down Expand Up @@ -91,6 +91,5 @@
"types": "lib/index.d.ts",
"resolutions": {
"node-fetch": "2.6.7"
},
"stableVersion": "4.0.3-0"
}
}
14 changes: 7 additions & 7 deletions packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@ 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.0] - 2023-10-11
### Changed
- Support scoped debug logging (#2077)

### Added
- Debug logging for dictionary queries (#2077)

### Fixed
- Fixed Poi migration performance issue with `sqlIterator`
- Fixed AutoQueue timeout issue, align setting with nodeConfig.

### Fixed
- Fixed Poi migration performance issue with `sqlIterator`
- Fixed AutoQueue timeout issue, align setting with nodeConfig.
- Fixed Poi migration performance issue with `sqlIterator`
- Fixed AutoQueue timeout issue, align setting with nodeConfig. (#2081)
- Fixed Poi sync could block DB IO and drop connection issue (#2086)

## [5.0.3] - 2023-10-03
### Fixed
Expand Down Expand Up @@ -423,7 +422,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/5.0.4...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.0.0...HEAD
[5.0.4]: https://github.com/subquery/subql/compare/node-core/5.0.3...node-core/6.0.0
[5.0.3]: https://github.com/subquery/subql/compare/node-core/5.0.2...node-core/5.0.3
[5.0.2]: https://github.com/subquery/subql/compare/node-core/5.0.1...node-core/5.0.2
[5.0.1]: https://github.com/subquery/subql/compare/node-core/4.2.3...node-core/5.0.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": "5.0.4-4",
"version": "6.0.0",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -44,6 +44,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "5.0.4-3"
}
}
11 changes: 7 additions & 4 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ 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]

## [3.0.5] - 2023-10-11
### Changed
- debug has changed from a boolean to a string to allow scoping debug log level (#2077)

### Fixed
- Sync with node-core.
- Sync with node-core.
- Fixed Poi migration performance issue.
- Fixed AutoQueue timeout issue.
- Fixed Poi sync could block DB IO and drop connection issue.
- Fixed AutoQueue timeout issue. (#2081)
- Fixed Poi sync could block DB IO and drop connection issue.(#2086)

## [3.0.4] - 2023-10-03
### Changed
Expand Down Expand Up @@ -1001,7 +1003,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.4...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/3.0.5...HEAD
[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
[3.0.3]: https://github.com/subquery/subql/compare/node/3.0.2...node/3.0.3
[3.0.2]: https://github.com/subquery/subql/compare/node/3.0.1...node/3.0.2
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.5-3",
"version": "3.0.5",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -59,6 +59,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.0.5-2"
]
}
8 changes: 7 additions & 1 deletion packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@ 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.4.4] - 2023-10-11
### Added
- Option to set debug level for child loggers

### Fixed
- fix undefined ts type for unsupported field type (#2003)

## [2.4.3] - 2023-07-31
### Fixed
- Update license (#1891)
Expand Down Expand Up @@ -86,7 +91,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/v2.4.3...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/v2.4.4...HEAD
[2.4.4]: https://github.com/subquery/subql/compare/v2.4.3...v2.4.4
[2.4.3]: https://github.com/subquery/subql/compare/v2.4.2...v2.4.3
[2.4.2]: https://github.com/subquery/subql/compare/utils/2.4.1...utils/2.4.2
[2.4.1]: https://github.com/subquery/subql/compare/utils/2.4.0...utils/2.4.1
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.4.4-2",
"version": "2.4.4",
"description": "",
"packageManager": "[email protected]",
"scripts": {
Expand Down

0 comments on commit 4271110

Please sign in to comment.