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] 20231004 near #69

Merged
merged 1 commit into from
Oct 4, 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
13 changes: 10 additions & 3 deletions packages/common-near/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0] - 2023-10-04
### Added
- Parent field to manifest for project upgrades

### Changed
- Update model with `@subql/types-core` and `@subql/common`

## [2.4.1] - 2023-09-27
### Update
### Changed
- Update `subql/common` (#64)

## [2.4.0] - 2023-08-02
Expand Down Expand Up @@ -43,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add transaction receipts handlers and filters (#13)

## [1.0.0] - 2023-01-26
[Unreleased]: https://github.com/subquery/subql-near/compare/common-near/2.4.1...HEAD
[Unreleased]: https://github.com/subquery/subql-near/compare/common-near/3.0.0...HEAD
[3.0.0]: https://github.com/subquery/subql-near/compare/commonm-near/2.4.1...commonm-near/3.0.0
[2.4.1]: https://github.com/subquery/subql-near/compare/common-near/2.4.0...common-near/2.4.1
[2.4.0]: https://github.com/subquery/subql-near/compare/common-near/2.3.0...common-near/2.4.0
[2.3.0]: https://github.com/subquery/subql-near/compare/common-near/2.2.1...common-near/2.3.0
Expand All @@ -54,4 +62,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[2.0.0]: https://github.com/subquery/subql-near/compare/common-near/1.1.0...common-near/2.0.0
[1.1.0]: https://github.com/subquery/subql-near/compare/common-near/1.0.0...common-near/1.1.0
[1.0.0]: https://github.com/subquery/subql-near/tags/1.0.0

2 changes: 1 addition & 1 deletion packages/common-near/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common-near",
"version": "2.4.1",
"version": "3.0.0",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down
20 changes: 17 additions & 3 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0] - 2023-10-04
### Changed
- Update `@subql/node-core` and sync with main SDK.

### Fixed
- Fix dictionary metadata validation failed
- Improve get finalized block error logging
- Fix reindex also start index service (#155)
- Fix warning for filter address (#154)
- Fetching logs via block height resulting in invalid results. Block hash is now used to ensure
correct results. (#156)
- Node runner options being overwritten by yargs defaults (#148)
- Fix yargs default override runner nodeOptions (#166)

## [2.10.2] - 2023-09-27
### Update
### Changed
- Update `subql/common` (#64)

## [2.10.1] - 2023-09-27
Expand Down Expand Up @@ -118,7 +132,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `toJson` method to function args (#9)

## 1.18.0 - 2023-01-26
[Unreleased]: https://github.com/subquery/subql-near/compare/node-near/2.10.2...HEAD
[Unreleased]: https://github.com/subquery/subql-near/compare/node-near/3.0.0...HEAD
[3.0.0]: https://github.com/subquery/subql-near/compare/node-near/2.10.2...node-near/3.0.0
[2.10.2]: https://github.com/subquery/subql-near/compare/node-near/2.10.1...node-near/2.10.2
[2.10.1]: https://github.com/subquery/subql-near/compare/node-near/2.10.0...node-near/2.10.1
[2.10.0]: https://github.com/subquery/subql-near/compare/node-near/2.8.0...node-near/2.10.0
Expand All @@ -130,4 +145,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[2.5.0]: https://github.com/subquery/subql-near/compare/node-near/2.3.1...node-near/2.5.0
[2.3.1]: https://github.com/subquery/subql-near/compare/node-near/2.3.0...node-near/2.3.1
[2.3.0]: https://github.com/subquery/subql-near/compare/node-near/2.1.1...node-near/2.3.0

2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-near",
"version": "2.10.2",
"version": "3.0.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down
14 changes: 9 additions & 5 deletions packages/types/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.0] - 2023-10-04
### Changed
- Use `@subql/types-core`

## [2.1.3] - 2023-09-27
### Added
- Support for `signedDelegate` actions (#62)
Expand All @@ -15,9 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- update license (#56)

## [2.1.1] - 2023-05-17
### Fixed
- Rerelease of 2.1.0

## [2.1.0] - 2023-05-17
### Updated
### Changed
- Sync with main SDK

## [2.0.0] - 2023-05-01
Expand All @@ -37,10 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Args type for funciton calls (#9)

## [1.0.0] - 2023-01-26

Initial Release

[Unreleased]: https://github.com/subquery/subql-near/compare/types-near/v2.1.3...HEAD
[Unreleased]: https://github.com/subquery/subql-near/compare/types-near/3.0.0...HEAD
[3.0.0]: https://github.com/subquery/subql-near/compare/types-near/2.1.3...types-near/3.0.0
[2.1.3]: https://github.com/subquery/subql-near/compare/types-near/v2.1.2...types-near/v2.1.3
[2.1.2]: https://github.com/subquery/subql-near/compare/types-near/v2.1.1...types-near/v2.1.2
[2.1.1]: https://github.com/subquery/subql-near/compare/types-near/v2.1.0...types-near/v2.1.1
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types-near",
"version": "2.1.3",
"version": "3.0.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down
Loading