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] 20231128 #88

Merged
merged 2 commits into from
Nov 28, 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
8 changes: 7 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.4.4] - 2023-11-28
### Fixed
- Fix ipfs deployment templates path failed to resolved, issue was introduced node-core 7.0.0
- Update with node-core to fix network dictionary timeout but not fallback to config dictionary issue

## [3.4.3] - 2023-11-27
### Changed
- Update `@subql/node-core` with minor fixes
Expand Down Expand Up @@ -172,7 +177,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/3.4.3...HEAD
[Unreleased]: https://github.com/subquery/subql-near/compare/node-near/3.4.4...HEAD
[3.4.4]: https://github.com/subquery/subql-near/compare/node-near/3.4.3...node-near/3.4.4
[3.4.3]: https://github.com/subquery/subql-near/compare/node-near/3.4.2...node-near/3.4.3
[3.4.2]: https://github.com/subquery/subql-near/compare/node-near/3.4.1...node-near/3.4.2
[3.4.1]: https://github.com/subquery/subql-near/compare/node-near/3.4.0...node-near/3.4.1
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-near",
"version": "3.4.3",
"version": "3.4.4",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -27,7 +27,7 @@
"@nestjs/schedule": "^3.0.1",
"@subql/common": "^3.3.0",
"@subql/common-near": "workspace:*",
"@subql/node-core": "^7.0.0",
"@subql/node-core": "^7.0.1",
"@subql/types-near": "workspace:*",
"cron-converter": "^1.0.2",
"eventemitter2": "^6.4.5",
Expand Down
14 changes: 7 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3230,7 +3230,7 @@ __metadata:
languageName: node
linkType: hard

"@subql/apollo-links@npm:^1.2.2":
"@subql/apollo-links@npm:^1.2.3":
version: 1.100.0
resolution: "@subql/apollo-links@npm:1.100.0"
dependencies:
Expand Down Expand Up @@ -3303,15 +3303,15 @@ __metadata:
languageName: node
linkType: hard

"@subql/node-core@npm:^7.0.0":
version: 7.0.0
resolution: "@subql/node-core@npm:7.0.0"
"@subql/node-core@npm:^7.0.1":
version: 7.0.1
resolution: "@subql/node-core@npm:7.0.1"
dependencies:
"@apollo/client": ^3.7.16
"@nestjs/common": ^9.4.0
"@nestjs/event-emitter": ^2.0.0
"@nestjs/schedule": ^3.0.1
"@subql/apollo-links": ^1.2.2
"@subql/apollo-links": ^1.2.3
"@subql/common": 3.3.1-0
"@subql/testing": 2.1.0
"@subql/types": 3.3.0
Expand All @@ -3330,7 +3330,7 @@ __metadata:
tar: ^6.1.11
vm2: ^3.9.19
yargs: ^16.2.0
checksum: 0c83ef7d7540c6ae667faaec69c7ad542880c481c763199bccaa22bb4110ee9a516cc29a4dc74e99be48157b1ccc0668cad24f8fb3910977146e2293ff3f5a91
checksum: 61060f1578cb8698ff3ed9a8ece1ae045e27704a1ce37dfbb2bac75cc7d4babf006582ca2d9539f3fb2d07a6af22d45daec7649ca7894f92b08df918203712be
languageName: node
linkType: hard

Expand All @@ -3348,7 +3348,7 @@ __metadata:
"@nestjs/testing": ^9.4.0
"@subql/common": ^3.3.0
"@subql/common-near": "workspace:*"
"@subql/node-core": ^7.0.0
"@subql/node-core": ^7.0.1
"@subql/types-near": "workspace:*"
"@types/express": ^4.17.13
"@types/jest": ^27.4.0
Expand Down
Loading