Skip to content

Commit

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

* fix cli changelog

* common release
  • Loading branch information
jiqiang90 authored Oct 18, 2023
1 parent a84000f commit 64d920c
Show file tree
Hide file tree
Showing 14 changed files with 40 additions and 36 deletions.
11 changes: 0 additions & 11 deletions .yarn/versions/827765ec.yml

This file was deleted.

Empty file removed .yarn/versions/b7656feb.yml
Empty file.
Empty file removed .yarn/versions/cc585a8c.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/eba6cd5c.yml

This file was deleted.

19 changes: 11 additions & 8 deletions 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.5] - 2023-10-18
### Changed
- Update error handling on deployment commands (#2108)

Expand Down Expand Up @@ -434,13 +436,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.9.0] - 2021-04-19
### Added
- annotation is now supported in
- Can be added on any field of any entity except primary or foreign keys
- `@subql/node` will recognise it and create table with additional indexes to speed querying
- Allow query by indexed field via `global.store` (#271)
- annotation is now supported in
- We'll automatically generate coresponding JSON interfaces when querying this data (#275)
- Read more about how you can use this in our [updated docs](https://doc.subquery.network/create/graphql.html#json-type)
- `@index` annotation is now supported in `graphql.schema` (#255):
- Can be added on any field of any entity except primary or foreign keys
- `@subql/node` will recognise it and create table with additional indexes to speed querying
- Allow query by indexed field via `global.store` (#271)
- `@jsonField` annotation is now supported in `graphql.schema` which allows you to store structured data JSON data in a single database field
- We'll automatically generate coresponding JSON interfaces when querying this data (#275)
- Read more about how you can use this in our [updated docs](https://doc.subquery.network/create/graphql.html#json-type)

## [0.8.0] - 2021-03-11
### Added
Expand Down Expand Up @@ -479,7 +481,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.4...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/4.0.5...HEAD
[4.0.5]: https://github.com/subquery/subql/compare/cli/4.0.4...cli/4.0.5
[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
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.5-0",
"version": "4.0.5",
"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"
}
}
7 changes: 6 additions & 1 deletion packages/common-substrate/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.1.2] - 2023-10-18
### Changed
- Version bump with `common` 3.1.3

## [3.1.1] - 2023-10-03
### Changed
- Version bump with `types-core` 0.1.1
Expand Down Expand Up @@ -112,7 +116,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.1.1...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/3.1.2...HEAD
[3.1.2]: https://github.com/subquery/subql/compare/common-substrate/3.1.1...common-substrate/3.1.2
[3.1.1]: https://github.com/subquery/subql/compare/common-substrate/3.1.0...common-substrate/3.1.1
[3.1.0]: https://github.com/subquery/subql/compare/common-substrate/3.0.1...common-substrate/3.1.0
[3.0.1]: https://github.com/subquery/subql/compare/common-substrate/2.4.0...common-substrate/3.0.1
Expand Down
2 changes: 1 addition & 1 deletion 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.1.2-0",
"version": "3.1.2",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down
5 changes: 4 additions & 1 deletion packages/common/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]

## [3.1.3] - 2023-10-18
### Fixed
- IPFS Reader error handling (#2106)

Expand Down Expand Up @@ -328,7 +330,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.1.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/common/3.1.3...HEAD
[3.1.3]: https://github.com/subquery/subql/compare/common/3.1.2...common/3.1.3
[3.1.2]: https://github.com/subquery/subql/compare/common/3.1.1...common/3.1.2
[3.1.1]: https://github.com/subquery/subql/compare/common/3.1.0...common/3.1.1
[3.1.0]: https://github.com/subquery/subql/compare/common/3.0.1...common/3.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common",
"version": "3.1.3-1",
"version": "3.1.3",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down
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.4] - 2023-10-18
### Fixed
- Store bulk methods failing with workers (#2107)

Expand Down Expand Up @@ -439,7 +441,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.3...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.0.4...HEAD
[6.0.4]: https://github.com/subquery/subql/compare/node-core/6.0.3...node-core/6.0.4
[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
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.4-0",
"version": "6.0.4",
"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"
}
}
8 changes: 7 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +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]

## [3.0.8] - 2023-10-18
### Fixed
- Update node-core, fix store bulk methods failing with workers

## [3.0.7] - 2023-10-17
### Changed
- Update with node-core 6.0.3
Expand Down Expand Up @@ -1010,7 +1015,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.7...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/3.0.8...HEAD
[3.0.8]: https://github.com/subquery/subql/compare/node/3.0.7...node/3.0.8
[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
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.8-0",
"version": "3.0.8",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -60,6 +60,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.0.7"
]
}

0 comments on commit 64d920c

Please sign in to comment.