Skip to content

Commit c9f0fd9

Browse files
[release] 20250424 (#151)
* Update @subql deps * Update headers to 2025 * Update to node LTS * Sync changes and implement blockchain service * [release] 20250424 --------- Co-authored-by: stwiname <[email protected]> Co-authored-by: Scott Twiname <[email protected]>
1 parent 3291922 commit c9f0fd9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1044
-1198
lines changed

.github/workflows/gh-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js environment
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: 18
18+
node-version: lts/*
1919

2020
- run: yarn install
2121

.github/workflows/pr.yml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: PR
22
on:
33
pull_request:
44
paths-ignore:
5-
- '.github/workflows/**'
5+
- ".github/workflows/**"
66
jobs:
77
code-style:
88
name: code-style
@@ -12,53 +12,53 @@ jobs:
1212
SUBQL_ACCESS_TOKEN_TEST: ${{ secrets.SUBQL_ACCESS_TOKEN_TEST }}
1313
SUBQL_ORG_TEST: ${{ secrets.SUBQL_ORG_TEST }}
1414
steps:
15-
- uses: actions/checkout@v3
16-
- name: Setup Node.js environment
17-
uses: actions/setup-node@v4
18-
with:
19-
node-version: 18
20-
- run: yarn
21-
- name: build
22-
run: yarn build
23-
- name: code-style check
24-
run: yarn pretty-quick --check --pattern 'packages/*/src/**/*' --branch origin/main
25-
- name: lint
26-
run: yarn lint
15+
- uses: actions/checkout@v3
16+
- name: Setup Node.js environment
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: lts/*
20+
- run: yarn
21+
- name: build
22+
run: yarn build
23+
- name: code-style check
24+
run: yarn pretty-quick --check --pattern 'packages/*/src/**/*' --branch origin/main
25+
- name: lint
26+
run: yarn lint
2727

2828
coverage:
29-
name: Coverage report
30-
runs-on: ubuntu-latest
31-
services:
32-
postgres:
33-
image: postgres
34-
env:
35-
POSTGRES_PASSWORD: postgres
36-
options: >-
37-
--health-cmd pg_isready
38-
--health-interval 10s
39-
--health-timeout 5s
40-
--health-retries 5
29+
name: Coverage report
30+
runs-on: ubuntu-latest
31+
services:
32+
postgres:
33+
image: postgres
4134
env:
42-
DB_USER: postgres
43-
DB_PASS: postgres
44-
DB_DATABASE: postgres
45-
DB_HOST: postgres
46-
DB_PORT: 5432
47-
steps:
48-
- uses: actions/checkout@v3
35+
POSTGRES_PASSWORD: postgres
36+
options: >-
37+
--health-cmd pg_isready
38+
--health-interval 10s
39+
--health-timeout 5s
40+
--health-retries 5
41+
env:
42+
DB_USER: postgres
43+
DB_PASS: postgres
44+
DB_DATABASE: postgres
45+
DB_HOST: postgres
46+
DB_PORT: 5432
47+
steps:
48+
- uses: actions/checkout@v3
4949

50-
- name: Use Node 18
51-
uses: actions/setup-node@v4
52-
with:
53-
node-version: 18
50+
- name: Use Node 18
51+
uses: actions/setup-node@v4
52+
with:
53+
node-version: lts/*
5454

55-
- name: Installing dependencies
56-
run: yarn install
55+
- name: Installing dependencies
56+
run: yarn install
5757

58-
- uses: artiomtr/jest-coverage-report-action@v2
59-
with:
60-
github-token: ${{ secrets.GITHUB_TOKEN }}
61-
skip-step: install
62-
working-directory: ${{ matrix.path }}
63-
test-script: yarn test-jest
64-
annotations: none
58+
- uses: artiomtr/jest-coverage-report-action@v2
59+
with:
60+
github-token: ${{ secrets.GITHUB_TOKEN }}
61+
skip-step: install
62+
working-directory: ${{ matrix.path }}
63+
test-script: yarn test-jest
64+
annotations: none

.github/workflows/prerelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- main
66
paths-ignore:
7-
- '.github/workflows/**'
7+
- ".github/workflows/**"
88

99
concurrency:
1010
group: publish
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Node.js environment
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: lts/*
2828

2929
- uses: marceloprado/has-changed-path@v1
3030
id: changed-types
@@ -72,6 +72,6 @@ jobs:
7272
- name: Commit changes
7373
uses: EndBug/add-and-commit@v5
7474
with:
75-
message: '[SKIP CI] Prerelease'
75+
message: "[SKIP CI] Prerelease"
7676
env:
7777
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- main
66
paths-ignore:
7-
- '.github/workflows/**'
7+
- ".github/workflows/**"
88
workflow_dispatch:
99

1010
concurrency:
@@ -48,7 +48,7 @@ jobs:
4848
- name: Setup Node.js environment
4949
uses: actions/setup-node@v4
5050
with:
51-
node-version: 18
51+
node-version: lts/*
5252

5353
#Identify changes
5454
- uses: marceloprado/has-changed-path@v1

.github/workflows/sync-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node.js environment
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 18
20+
node-version: lts/*
2121
- run: yarn
2222

2323
# Update deps

.yarn/versions/31ca9e7f.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
undecided:
2+
- "@subql/common-algorand"
3+
- "@subql/node-algorand"

.yarn/versions/92a9bff3.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
undecided:
2+
- "@subql/common-algorand"
3+
- "@subql/types-algorand"

.yarn/versions/c5a83358.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
undecided:
2+
- "@subql/node-algorand"
3+
- "@subql/types-algorand"

packages/common-algorand/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [4.4.0] - 2025-04-28
10+
### Changed
11+
- Update `@subql/common`
12+
913
## [4.3.1] - 2025-01-28
1014
### Changed
1115
- Update `@subql/common` dependency
@@ -125,7 +129,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
125129
- Fixed `assetId` on transaction filter being validated as a string. (#9)
126130

127131
## [1.0.0] - 2022-08-04
128-
[Unreleased]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.3.1...HEAD
132+
[Unreleased]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.4.0...HEAD
133+
[4.4.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.3.1...common-algorand/4.4.0
129134
[4.3.1]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.3.0...common-algorand/4.3.1
130135
[4.3.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.2.5...common-algorand/4.3.0
131136
[4.2.5]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.2.4...common-algorand/4.2.5

packages/common-algorand/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@subql/common-algorand",
3-
"version": "4.3.1",
3+
"version": "4.4.0",
44
"description": "",
55
"scripts": {
66
"build": "rm -rf dist && tsc -b",
@@ -14,7 +14,7 @@
1414
"main": "dist/index.js",
1515
"license": "GPL-3.0",
1616
"dependencies": {
17-
"@subql/common": "^5.3.0",
17+
"@subql/common": "^5.5.0",
1818
"@subql/types-algorand": "workspace:*"
1919
},
2020
"peerDependencies": {

0 commit comments

Comments
 (0)