Skip to content

Commit

Permalink
[release] 20240729 (#333)
Browse files Browse the repository at this point in the history
* Update node core, fix TZ

* Update changelogs, bump version

* Update docker file
  • Loading branch information
stwiname authored Jul 29, 2024
1 parent 4c7b316 commit 59ca3dd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.1] - 2024-07-29
### Fixed
- Docker images not having TZ set to UTC (#333)
- Bump `@subql/node-core` with fixes for data consitstency issue (#333)

## [5.0.0] - 2024-07-26
### Changed
- Enable ts strict mode
- Use Subquery Project code from node core (#331)
- Breaking change: Update to latest `@subql/node-core`, require indexing environment timezone set to UTC (#330)

### Fixed
- Bump with `@subql/node-core`, fixed various issues causing poi inconsistency (#2497)

Expand Down Expand Up @@ -526,7 +532,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/5.0.0...HEAD
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.1...HEAD
[5.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.0...node-ethereum/5.0.1
[5.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.3...node-ethereum/5.0.0
[4.7.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.2...node-ethereum/4.7.3
[4.7.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.1...node-ethereum/4.7.2
Expand Down
2 changes: 1 addition & 1 deletion packages/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Build stage
FROM node:18-alpine as builder
ENV TZ utc
# Set working directory
WORKDIR /app

Expand Down Expand Up @@ -41,6 +40,7 @@ RUN mkdir -p .monitor && \

# Make the user not ROOT
USER 1000
ENV TZ=utc

# Set Entry point and command
ENTRYPOINT ["/sbin/tini", "--", "/usr/local/lib/node_modules/@subql/node-ethereum/bin/run"]
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-ethereum",
"version": "5.0.0",
"version": "5.0.1",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -25,7 +25,7 @@
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^3.0.1",
"@subql/common-ethereum": "workspace:*",
"@subql/node-core": "^13.0.0",
"@subql/node-core": "^13.0.1",
"@subql/testing": "^2.2.1",
"@subql/types-ethereum": "workspace:*",
"cacheable-lookup": "6",
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2997,9 +2997,9 @@ __metadata:
languageName: node
linkType: hard

"@subql/node-core@npm:^13.0.0":
version: 13.0.0
resolution: "@subql/node-core@npm:13.0.0"
"@subql/node-core@npm:^13.0.1":
version: 13.0.1
resolution: "@subql/node-core@npm:13.0.1"
dependencies:
"@apollo/client": ^3.8.8
"@nestjs/common": ^9.4.0
Expand All @@ -3026,7 +3026,7 @@ __metadata:
toposort-class: ^1.0.1
vm2: ^3.9.19
yargs: ^16.2.0
checksum: 91ebd7999da59470ef13923db694b81353e810892d63aa15174ff1c2688e61d6b0860fb53efdb31700fccf0772a42fbe19afff66efac5fb9ca258c9aa4012b2f
checksum: 6946a95cd4ec14c9d1a00ecb830a8d92174923db85b89ba340c76afa5fa96bc07c83f6051dbd87ccb65085f43093437ebd2e24ee9de4285a576f84f5e5e5cda3
languageName: node
linkType: hard

Expand All @@ -3042,7 +3042,7 @@ __metadata:
"@nestjs/schematics": ^9.2.0
"@nestjs/testing": ^9.4.0
"@subql/common-ethereum": "workspace:*"
"@subql/node-core": ^13.0.0
"@subql/node-core": ^13.0.1
"@subql/testing": ^2.2.1
"@subql/types-ethereum": "workspace:*"
"@types/express": ^4.17.13
Expand Down

0 comments on commit 59ca3dd

Please sign in to comment.