Skip to content

Commit

Permalink
[release] 20240503 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 authored May 3, 2024
1 parent b59d353 commit d5c9b52
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ jobs:
run: |
if [ -n "${{ github.event.head_commit.message }}" ]
then
echo "commit-message=\"${{ github.event.head_commit.message }}\"" >> "$GITHUB_OUTPUT"
echo "commit-message='$(echo "${{ github.event.head_commit.message }}" | head -n 1)'" >> "$GITHUB_OUTPUT"
else
echo "commit-message=\"$(git log -1 --pretty=%B | head -n 1)\"" >> "$GITHUB_OUTPUT"
fi
Build-Publish:
name: Build-Publish
needs: pre-ci
Expand Down
6 changes: 5 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.11.2] - 2024-05-03
### Fixed
- temp fixed version for node-core, to fix stellar-sdk `Uinit8Array` in sandbox issue.

## [3.11.1] - 2024-05-02
### Fixed
Expand Down Expand Up @@ -130,7 +133,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- rename `soroban` to `sorobanEndpoint` in network config (#16)

## [2.12.0] - 2023-09-12
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.1...HEAD
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.2...HEAD
[3.11.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.1...node-stellar/3.11.2
[3.11.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.0...node-stellar/3.11.1
[3.11.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...node-stellar/3.11.0
[3.10.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.0...node-stellar/3.10.1
Expand Down
5 changes: 3 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-stellar",
"version": "3.11.1",
"version": "3.11.2",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -26,10 +26,11 @@
"@nestjs/schedule": "^3.0.1",
"@subql/common": "^3.5.1",
"@subql/common-stellar": "workspace:*",
"@subql/node-core": "^10.1.2",
"@subql/node-core": "10.1.0",
"@subql/testing": "^2.0.0",
"@subql/types-stellar": "workspace:*",
"lodash": "^4.17.21",
"pg": "^8.11.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"stellar-sdk": "^11.2.2",
Expand Down
1 change: 1 addition & 0 deletions packages/node/src/stellar/block.stellar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export class StellarBlockWrapped implements StellarBlockWrapper {
filter: StellarBlockFilter,
address?: string,
): boolean {
if (!filter) return true;
if (filter?.modulo && block.sequence % filter.modulo !== 0) {
return false;
}
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2762,9 +2762,9 @@ __metadata:
languageName: node
linkType: hard

"@subql/node-core@npm:^10.1.2":
version: 10.1.2
resolution: "@subql/node-core@npm:10.1.2"
"@subql/node-core@npm:10.1.0":
version: 10.1.0
resolution: "@subql/node-core@npm:10.1.0"
dependencies:
"@apollo/client": ^3.8.8
"@nestjs/common": ^9.4.0
Expand All @@ -2784,14 +2784,13 @@ __metadata:
lodash: ^4.17.21
lru-cache: 10.1.0
merkle-tools: ^1.4.1
pg: ^8.11.5
prom-client: ^14.0.1
source-map: ^0.7.4
tar: ^6.2.1
toposort-class: ^1.0.1
vm2: ^3.9.19
yargs: ^16.2.0
checksum: 30c76d1f416cff13c602643f42d9a1f8bfd73ddc83c25911e0ea222c23c85cf7fb7a00ef31c367e6e9b97972fffd85eb7d00b2745e2d238de7bf6e13c13dc4a8
checksum: b7df8c672e93bc6339d47c4a8c806dd8fca7c1a24e0ce0ac065925928151bc476b8cf9f6149e85c472085f81800d601a79ea6fd8e1e0ca09636b09fdc3371dd0
languageName: node
linkType: hard

Expand All @@ -2808,7 +2807,7 @@ __metadata:
"@nestjs/testing": ^9.4.0
"@subql/common": ^3.5.1
"@subql/common-stellar": "workspace:*"
"@subql/node-core": ^10.1.2
"@subql/node-core": 10.1.0
"@subql/testing": ^2.0.0
"@subql/types-stellar": "workspace:*"
"@types/express": ^4.17.13
Expand All @@ -2820,6 +2819,7 @@ __metadata:
dotenv: ^15.0.1
lodash: ^4.17.21
nodemon: ^2.0.15
pg: ^8.11.5
reflect-metadata: ^0.1.13
rimraf: ^3.0.2
stellar-sdk: ^11.2.2
Expand Down

0 comments on commit d5c9b52

Please sign in to comment.