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] 20231017 #183

Merged
merged 3 commits into from
Oct 17, 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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"devDependencies": {
"@actions/core": "^1.10.0",
"@babel/preset-env": "^7.16.11",
"@geut/chan": "^3.2.9",
"@octokit/request": "^5.6.3",
"@types/cron-converter": "^1",
"@types/node": "^14.18.10",
Expand Down
3 changes: 2 additions & 1 deletion packages/common-ethereum/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"scripts": {
"build": "rm -rf dist && tsc -b",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\""
"format": "prettier --write \"src/**/*.ts\"",
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-ethereum\" --release-prefix=\"common-ethereum/\""
},
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down
15 changes: 12 additions & 3 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.4] - 2023-10-12
## [3.0.5] - 2023-10-17
### Fixed
- Update `@subql/node-core` to fix issues with using object destructing for store interface and workers
- Update `@subql/node-core` to fix:
- Dictionary validation error causing application exit (#2101)
- Auto queue flush getting the queue into a bad state (#2103)
- Fix getCache could not been cleared after reindex, and could have been re-used and lead to error, such as syncPoi

## [3.0.4] - 2023-10-12
### Changed
Expand All @@ -20,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed AutoQueue timeout issue.
- Fixed Poi sync could block DB IO and drop connection issue.

## [3.0.4] - 2023-10-12
### Fixed
- Update `@subql/node-core` to fix issues with using object destructing for store interface and workers

## [3.0.3] - 2023-10-05
### Changed
- Version bump with `@subql/types-ethereum` 3.0.2
Expand Down Expand Up @@ -278,7 +285,9 @@ 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.0.4...HEAD
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.5...HEAD
[3.0.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.4...node-ethereum/3.0.5
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
[3.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.2...node-ethereum/3.0.3
[3.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.1...node-ethereum/3.0.2
Expand Down
10 changes: 5 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.0.5-0",
"version": "3.0.5",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -10,7 +10,8 @@
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nodemon",
"start:prod": "node dist/main"
"start:prod": "node dist/main",
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-ethereum\" --release-prefix=\"node-ethereum/\""
},
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -26,7 +27,7 @@
"@nestjs/schedule": "^3.0.1",
"@subql/common": "3.1.2",
"@subql/common-ethereum": "workspace:*",
"@subql/node-core": "^6.0.2",
"@subql/node-core": "^6.0.3",
"@subql/testing": "^2.0.2",
"@subql/types-ethereum": "workspace:*",
"cacheable-lookup": "6",
Expand Down Expand Up @@ -64,6 +65,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.0.4"
]
}
3 changes: 2 additions & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"repository": "github:subquery/subql",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc -b"
"build": "rm -rf dist && tsc -b",
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-ethereum\" --release-prefix=\"types-ethereum/\""
},
"author": "Ian He",
"main": "dist/index.js",
Expand Down
Loading
Loading