Skip to content

Commit

Permalink
[release] 20240207 Sync @subql dependencies (#248)
Browse files Browse the repository at this point in the history
* Update @subql deps

* Update types-core, prepare release

---------

Co-authored-by: stwiname <[email protected]>
  • Loading branch information
stwiname and stwiname authored Feb 6, 2024
1 parent fe456eb commit 9679154
Show file tree
Hide file tree
Showing 7 changed files with 75 additions and 55 deletions.
7 changes: 6 additions & 1 deletion packages/common-ethereum/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.4.0] - 2024-02-07
### Changed
- Update `@subql/common`

## [3.3.0] - 2024-02-02
### Added
- Transaction filter function field can now be null (#243)
Expand Down Expand Up @@ -131,7 +135,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Sync with main sdk (#14)

## [0.1.0] - 2022-10-31
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/common-ethereum/3.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/common-ethereum/3.4.0...HEAD
[3.4.0]: https://github.com/subquery/subql-ethereum/compare/common-ethereum/3.3.0...common-ethereum/3.4.0
[3.3.0]: https://github.com/subquery/subql-ethereum/compare/common-ethereum/3.2.0...common-ethereum/3.3.0
[3.2.0]: https://github.com/subquery/subql-ethereum/compare/common-ethereum/3.1.2...common-ethereum/3.2.0
[3.1.2]: https://github.com/subquery/subql-ethereum/compare/common-ethereum/3.1.1...common-ethereum/3.1.2
Expand Down
7 changes: 3 additions & 4 deletions packages/common-ethereum/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common-ethereum",
"version": "3.3.1-0",
"version": "3.4.0",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand All @@ -14,7 +14,7 @@
"main": "dist/index.js",
"license": "GPL-3.0",
"dependencies": {
"@subql/common": "^3.3.1",
"@subql/common": "^3.4.0",
"@subql/types-ethereum": "workspace:*",
"@typechain/ethers-v5": "^11.1.1",
"@zilliqa-js/crypto": "^3.5.0",
Expand All @@ -35,6 +35,5 @@
"@types/rimraf": "3.0.2",
"ejs": "3.1.7",
"lodash": "4.17.21"
},
"stableVersion": "3.3.0"
}
}
6 changes: 5 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +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]

## [3.7.1] - 2024-02-07
### Added
- The ability to filter transactions with no input data (#243)

### Fixed
- Error handling for fetching dictionary chain aliases and switch to built in nodejs fetch (#247)
- Critical bug introduced in 3.6.0 which broke historical indexing

## [3.7.0] - 2024-01-30
### Added
Expand Down Expand Up @@ -395,7 +398,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Init release

[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.7.0...HEAD
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.7.1...HEAD
[3.7.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.7.0...node-ethereum/3.7.1
[3.7.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.6.0...node-ethereum/3.7.0
[3.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.2...node-ethereum/3.6.0
[3.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.1...node-ethereum/3.5.2
Expand Down
9 changes: 4 additions & 5 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-ethereum",
"version": "3.7.1-2",
"version": "3.7.1",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -25,9 +25,9 @@
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^3.0.1",
"@subql/common": "^3.3.1",
"@subql/common": "^3.4.0",
"@subql/common-ethereum": "workspace:*",
"@subql/node-core": "^7.2.0",
"@subql/node-core": "^7.2.1",
"@subql/testing": "^2.1.0",
"@subql/types-ethereum": "workspace:*",
"cacheable-lookup": "6",
Expand Down Expand Up @@ -65,6 +65,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.7.1-1"
]
}
7 changes: 6 additions & 1 deletion 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.3.1] - 2024-02-07
### Changed
- Update `@subql/types-core`

## [3.3.0] - 2024-02-02
### Fixed
- Fix Eth datasource miss extend base datasource type, missing `endBlock` in Datasource
Expand Down Expand Up @@ -94,7 +98,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Sync with main sdk (#14)

## [0.1.0] - 2022-10-31
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/3.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/3.3.1...HEAD
[3.3.1]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/3.3.0...types-ethereum/3.3.1
[3.3.0]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/3.2.1...types-ethereum/3.3.0
[3.2.1]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/3.2.0...types-ethereum/3.2.1
[3.2.0]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/3.1.0...types-ethereum/3.2.0
Expand Down
7 changes: 3 additions & 4 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types-ethereum",
"version": "3.3.1-0",
"version": "3.3.1",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -18,7 +18,6 @@
],
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.1",
"@subql/types-core": "^0.4.0"
},
"stableVersion": "3.3.0"
"@subql/types-core": "^0.5.0"
}
}
87 changes: 48 additions & 39 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3186,7 +3186,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@subql/common-ethereum@workspace:packages/common-ethereum"
dependencies:
"@subql/common": ^3.3.1
"@subql/common": ^3.4.0
"@subql/types-ethereum": "workspace:*"
"@typechain/ethers-v5": ^11.1.1
"@types/ejs": ^3.1.2
Expand All @@ -3207,11 +3207,11 @@ __metadata:
languageName: unknown
linkType: soft

"@subql/common@npm:3.3.1, @subql/common@npm:^3.3.1":
version: 3.3.1
resolution: "@subql/common@npm:3.3.1"
"@subql/common@npm:3.4.0, @subql/common@npm:^3.4.0":
version: 3.4.0
resolution: "@subql/common@npm:3.4.0"
dependencies:
"@subql/types-core": 0.4.0
"@subql/types-core": 0.4.1-0
axios: ^0.27.2
class-transformer: ^0.5.1
class-validator: ^0.14.0
Expand All @@ -3221,23 +3221,23 @@ __metadata:
reflect-metadata: ^0.1.13
semver: ^7.5.2
update-notifier: 5.1.0
checksum: cbb55958e925756b8145444b088e12a2b08873458c5df5a08deb28b5ea8bf16d19ef627a04e256a82c2e7e31820fcc787793b863ca3abf3316edff005e5f812d
checksum: 208b9674aa6be5460f0252ad7d83568d4943ab74dbb0868de7ed91286feead6288880839983d27d156f088c056fd168503ece014638faf4cfa1938de9fc2a239
languageName: node
linkType: hard

"@subql/node-core@npm:^7.2.0":
version: 7.2.0
resolution: "@subql/node-core@npm:7.2.0"
"@subql/node-core@npm:^7.2.1":
version: 7.2.1
resolution: "@subql/node-core@npm:7.2.1"
dependencies:
"@apollo/client": ^3.8.8
"@nestjs/common": ^9.4.0
"@nestjs/event-emitter": ^2.0.0
"@nestjs/schedule": ^3.0.1
"@subql/apollo-links": ^1.3.2
"@subql/common": 3.3.1
"@subql/testing": 2.1.0
"@subql/types": 3.3.0
"@subql/utils": 2.7.0
"@subql/common": 3.4.0
"@subql/testing": 2.1.1-0
"@subql/types": 3.3.1-0
"@subql/utils": 2.7.1-0
"@willsoto/nestjs-prometheus": ^5.4.0
async-lock: ^1.4.0
async-mutex: ^0.4.0
Expand All @@ -3252,7 +3252,7 @@ __metadata:
tar: ^6.1.11
vm2: ^3.9.19
yargs: ^16.2.0
checksum: 596f38f1d8815f2eff7cc08a6619741faea8aea772b831a0a4c612681ca2fea1b6798668e991668efebe1d91973f4235de4367f0b4bbc0779b190aef018e6ad0
checksum: abfd99f6cdf7d89e8f77448aaf7ff64cce2514f36b2bc2a9cf2caf02694467905980882f161edd88c5dddc21c5f63302bacb53b564ed530311415f561c930bf6
languageName: node
linkType: hard

Expand All @@ -3268,9 +3268,9 @@ __metadata:
"@nestjs/schedule": ^3.0.1
"@nestjs/schematics": ^9.2.0
"@nestjs/testing": ^9.4.0
"@subql/common": ^3.3.1
"@subql/common": ^3.4.0
"@subql/common-ethereum": "workspace:*"
"@subql/node-core": ^7.2.0
"@subql/node-core": ^7.2.1
"@subql/testing": ^2.1.0
"@subql/types-ethereum": "workspace:*"
"@types/express": ^4.17.13
Expand Down Expand Up @@ -3301,7 +3301,16 @@ __metadata:
languageName: unknown
linkType: soft

"@subql/testing@npm:2.1.0, @subql/testing@npm:^2.1.0":
"@subql/testing@npm:2.1.1-0":
version: 2.1.1-0
resolution: "@subql/testing@npm:2.1.1-0"
dependencies:
"@subql/types-core": ^0.4.1-0
checksum: d27d1181f2afb1a394a80fc7d7e36bdd1e64981728d41214412cdeab930c45a7d3bd7cdc58d25d4653c3dcdaf2a456a4e7ae67e4f2ccb39f5494905d06cdecad
languageName: node
linkType: hard

"@subql/testing@npm:^2.1.0":
version: 2.1.0
resolution: "@subql/testing@npm:2.1.0"
dependencies:
Expand All @@ -3310,30 +3319,30 @@ __metadata:
languageName: node
linkType: hard

"@subql/types-core@npm:0.3.0":
version: 0.3.0
resolution: "@subql/types-core@npm:0.3.0"
"@subql/types-core@npm:0.4.1-0, @subql/types-core@npm:^0.4.1-0":
version: 0.4.1-0
resolution: "@subql/types-core@npm:0.4.1-0"
dependencies:
package-json-type: ^1.0.3
checksum: fa9ec3bb27d33b57a18425553f6f9239dca439f37f296ae49dd1da958a3d6f14d73aa0831c057828618798926049c0308f3cba68276c80bfbff2fbfe265d1bf3
checksum: f7a51202b6e350e65f65a55136a2b48c8d6ae403850e96215995648656b3ef0779ef33ae526c7ffaa51b221b29255137e84ffd0abb5c1155095b1abfb15ef340
languageName: node
linkType: hard

"@subql/types-core@npm:0.4.0, @subql/types-core@npm:^0.4.0":
version: 0.4.0
resolution: "@subql/types-core@npm:0.4.0"
"@subql/types-core@npm:^0.1.2-0":
version: 0.1.2-0
resolution: "@subql/types-core@npm:0.1.2-0"
dependencies:
package-json-type: ^1.0.3
checksum: e3565739c7a7e74f00dd1cfb81a1d4dab00875c23b7759dec0e3dd89e5e29d49e90aec2ef8366b77113a15fe85f6dd1a33476600a21ce7779ed1444920732a90
checksum: a70258c1cbe8aa407946ed4cd8fa13c6fea72caa0efa1837a4c400c535b0e4d483388d8c54eedd1afa483e65ac85706d637e0112230129e9313a90a552d7244f
languageName: node
linkType: hard

"@subql/types-core@npm:^0.1.2-0":
version: 0.1.2-0
resolution: "@subql/types-core@npm:0.1.2-0"
"@subql/types-core@npm:^0.5.0":
version: 0.5.0
resolution: "@subql/types-core@npm:0.5.0"
dependencies:
package-json-type: ^1.0.3
checksum: a70258c1cbe8aa407946ed4cd8fa13c6fea72caa0efa1837a4c400c535b0e4d483388d8c54eedd1afa483e65ac85706d637e0112230129e9313a90a552d7244f
checksum: bc348655ead081a6e15c669e5b44dbb78a3673d2497d173a1d4a6e21c328702b3582ee0d8e71042b3e25d6e1d41fbc5a3cf4724a07e2062bd01b87cf5956f6d6
languageName: node
linkType: hard

Expand All @@ -3342,24 +3351,24 @@ __metadata:
resolution: "@subql/types-ethereum@workspace:packages/types"
dependencies:
"@ethersproject/abstract-provider": ^5.6.1
"@subql/types-core": ^0.4.0
"@subql/types-core": ^0.5.0
languageName: unknown
linkType: soft

"@subql/types@npm:3.3.0":
version: 3.3.0
resolution: "@subql/types@npm:3.3.0"
"@subql/types@npm:3.3.1-0":
version: 3.3.1-0
resolution: "@subql/types@npm:3.3.1-0"
dependencies:
"@subql/types-core": 0.3.0
"@subql/types-core": 0.4.1-0
peerDependencies:
"@polkadot/api": ^10
checksum: 1a8227edae7f77f08de1f255660a8425cffa29ca178deb0a06f7713860af214bdf77092857001e9f12d3124554d092374d23607601266c40c339aea53cbc8547
checksum: 99ae4c8894a0884a8bb5471d19b29ff4bb90246e2b8413565bdb150b3cbadc67fb66f71b2af07680033bc9cb39afd20ed070c4fafd7639a662a81f7cc17f8a98
languageName: node
linkType: hard

"@subql/utils@npm:2.7.0":
version: 2.7.0
resolution: "@subql/utils@npm:2.7.0"
"@subql/utils@npm:2.7.1-0":
version: 2.7.1-0
resolution: "@subql/utils@npm:2.7.1-0"
dependencies:
"@polkadot/util": ^12.5.1
"@polkadot/util-crypto": ^12.5.1
Expand All @@ -3375,7 +3384,7 @@ __metadata:
rotating-file-stream: ^3.0.2
semver: ^7.5.2
tar: ^6.1.11
checksum: fd0b783a1b648d3364670cbfdc173685f76c04c14868849a336206a1ae308036e11d48a7ed48561c29f5a2ba1bb964d3a2fab08f2676fb61fba1f1385099ea24
checksum: ba4c74ab8fa5d8cc8e1fae3c0fdfc7272fdea2bccb5e69fea388c9aee42f2784c30d3cee39377d9d14ac8442a42d42651343357beaf80f075b50b0bdf12155e8
languageName: node
linkType: hard

Expand Down

0 comments on commit 9679154

Please sign in to comment.