Skip to content

Commit d93286b

Browse files
authored
chore: Update devDependencies versions (#2577)
1 parent 50e7dba commit d93286b

File tree

93 files changed

+6364
-10052
lines changed

Some content is hidden

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

93 files changed

+6364
-10052
lines changed

.changeset/red-badgers-jog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
"@thirdweb-dev/react-native-compat": patch
3+
"@thirdweb-dev/contracts-js": patch
4+
"@thirdweb-dev/react-native": patch
5+
"@thirdweb-dev/merkletree": patch
6+
"@thirdweb-dev/react-core": patch
7+
"@thirdweb-dev/payments": patch
8+
"@thirdweb-dev/unity-js-bridge": patch
9+
"@thirdweb-dev/storage": patch
10+
"@thirdweb-dev/wallets": patch
11+
"@thirdweb-dev/chains": patch
12+
"@thirdweb-dev/crypto": patch
13+
"@thirdweb-dev/service-utils": patch
14+
"@thirdweb-dev/react": patch
15+
"@thirdweb-dev/auth": patch
16+
"typedoc-gen": patch
17+
"@thirdweb-dev/cli": patch
18+
"@thirdweb-dev/pay": patch
19+
"@thirdweb-dev/sdk": patch
20+
"thirdweb": patch
21+
---
22+
23+
update dependencies

.github/composite-actions/install/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ description: "Sets up Node.js and runs install"
44
runs:
55
using: composite
66
steps:
7-
- uses: pnpm/action-setup@v2
7+
- uses: pnpm/action-setup@v3
88
with:
99
version: 8
1010
- name: Setup Node.js
11-
uses: actions/setup-node@v3
11+
uses: actions/setup-node@v4
1212
with:
1313
node-version: 20
1414
registry-url: "https://registry.npmjs.org"

.github/workflows/build-test-lint.yml

Lines changed: 55 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828

2929
steps:
3030
- name: Check out code
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 25
3434

3535
- name: Setup bun
3636
uses: oven-sh/setup-bun@v1
3737
with:
38-
bun-version: 1.0.21
38+
bun-version: 1.0.35
3939

4040
- name: Install
4141
uses: ./.github/composite-actions/install
@@ -46,7 +46,7 @@ jobs:
4646
- id: get-week
4747
run: echo "WEEK=$(date +%U)" >> $GITHUB_OUTPUT
4848

49-
- uses: actions/cache@v3
49+
- uses: actions/cache@v4
5050
timeout-minutes: 5
5151
id: cache-build
5252
with:
@@ -60,21 +60,21 @@ jobs:
6060
needs: build
6161
steps:
6262
- name: Setup node
63-
uses: actions/setup-node@v3
63+
uses: actions/setup-node@v4
6464
with:
6565
node-version: 20
6666
check-latest: true
6767

6868
- name: Setup bun
6969
uses: oven-sh/setup-bun@v1
7070
with:
71-
bun-version: 1.0.21
71+
bun-version: 1.0.35
7272

73-
- uses: pnpm/action-setup@v2
73+
- uses: pnpm/action-setup@v3
7474
with:
7575
version: 8
7676

77-
- uses: actions/cache@v3
77+
- uses: actions/cache@v4
7878
timeout-minutes: 5
7979
id: restore-build
8080
with:
@@ -90,7 +90,7 @@ jobs:
9090
needs: build
9191
steps:
9292
- name: Setup node
93-
uses: actions/setup-node@v3
93+
uses: actions/setup-node@v4
9494
with:
9595
node-version: 20
9696
check-latest: true
@@ -99,13 +99,13 @@ jobs:
9999
- name: Setup bun
100100
uses: oven-sh/setup-bun@v1
101101
with:
102-
bun-version: 1.0.21
102+
bun-version: 1.0.35
103103

104-
- uses: pnpm/action-setup@v2
104+
- uses: pnpm/action-setup@v3
105105
with:
106106
version: 8
107107

108-
- uses: actions/cache@v3
108+
- uses: actions/cache@v4
109109
timeout-minutes: 5
110110
id: restore-build
111111
with:
@@ -120,7 +120,43 @@ jobs:
120120
- name: Upload coverage reports to Codecov
121121
uses: codecov/codecov-action@v3
122122
with:
123-
files: ./legacy_packages/sdk/coverage/evm/lcov.info,./packages/thirdweb/coverage/lcov.info
123+
files: ./packages/thirdweb/coverage/lcov.info
124+
125+
test_legacy:
126+
timeout-minutes: 15
127+
name: Unit Tests (Legacy)
128+
runs-on: ubuntu-latest-16
129+
needs: build
130+
steps:
131+
- name: Setup node
132+
uses: actions/setup-node@v4
133+
with:
134+
node-version: 20
135+
check-latest: true
136+
137+
# we use bun for some test suites
138+
- name: Setup bun
139+
uses: oven-sh/setup-bun@v1
140+
with:
141+
bun-version: 1.0.35
142+
143+
- uses: pnpm/action-setup@v3
144+
with:
145+
version: 8
146+
147+
- uses: actions/cache@v4
148+
timeout-minutes: 5
149+
id: restore-build
150+
with:
151+
path: ./*
152+
key: ${{ github.sha }}-${{ github.run_number }}
153+
154+
- run: pnpm test:legacy
155+
156+
- name: Upload coverage reports to Codecov
157+
uses: codecov/codecov-action@v3
158+
with:
159+
files: ./legacy_packages/sdk/coverage/evm/lcov.info
124160

125161
e2e:
126162
timeout-minutes: 15
@@ -129,7 +165,7 @@ jobs:
129165
needs: build
130166
steps:
131167
- name: Setup node
132-
uses: actions/setup-node@v3
168+
uses: actions/setup-node@v4
133169
with:
134170
node-version: 20
135171
check-latest: true
@@ -138,13 +174,13 @@ jobs:
138174
- name: Setup bun
139175
uses: oven-sh/setup-bun@v1
140176
with:
141-
bun-version: 1.0.21
177+
bun-version: 1.0.35
142178

143-
- uses: pnpm/action-setup@v2
179+
- uses: pnpm/action-setup@v3
144180
with:
145181
version: 8
146182

147-
- uses: actions/cache@v3
183+
- uses: actions/cache@v4
148184
timeout-minutes: 5
149185
id: restore-build
150186
with:
@@ -169,16 +205,16 @@ jobs:
169205
needs: build
170206
steps:
171207
- name: Setup node
172-
uses: actions/setup-node@v3
208+
uses: actions/setup-node@v4
173209
with:
174210
node-version: 20
175211
check-latest: true
176212

177-
- uses: pnpm/action-setup@v2
213+
- uses: pnpm/action-setup@v3
178214
with:
179215
version: 8
180216

181-
- uses: actions/cache@v3
217+
- uses: actions/cache@v4
182218
timeout-minutes: 5
183219
id: restore-build
184220
with:

.github/workflows/codeql-analysis.yml

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ "main" ]
16+
branches: ["main"]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ "main" ]
19+
branches: ["main"]
2020
schedule:
21-
- cron: '37 9 * * 3'
21+
- cron: "37 9 * * 3"
2222

2323
jobs:
2424
analyze:
@@ -32,41 +32,40 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
language: [ 'javascript' ]
35+
language: ["javascript"]
3636
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
3737
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
3838

3939
steps:
40-
- name: Checkout repository
41-
uses: actions/checkout@v3
40+
- name: Checkout repository
41+
uses: actions/checkout@v4
4242

43-
# Initializes the CodeQL tools for scanning.
44-
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
46-
with:
47-
languages: ${{ matrix.language }}
48-
# If you wish to specify custom queries, you can do so here or in a config file.
49-
# By default, queries listed here will override any specified in a config file.
50-
# Prefix the list here with "+" to use these queries and those in the config file.
51-
52-
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
53-
# queries: security-extended,security-and-quality
43+
# Initializes the CodeQL tools for scanning.
44+
- name: Initialize CodeQL
45+
uses: github/codeql-action/init@v2
46+
with:
47+
languages: ${{ matrix.language }}
48+
# If you wish to specify custom queries, you can do so here or in a config file.
49+
# By default, queries listed here will override any specified in a config file.
50+
# Prefix the list here with "+" to use these queries and those in the config file.
5451

55-
56-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57-
# If this step fails, then you should remove it and run the build manually (see below)
58-
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
52+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
53+
# queries: security-extended,security-and-quality
6054

61-
# ℹ️ Command-line programs to run using the OS shell.
62-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
55+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
56+
# If this step fails, then you should remove it and run the build manually (see below)
57+
- name: Autobuild
58+
uses: github/codeql-action/autobuild@v2
6359

64-
# If the Autobuild fails above, remove it and uncomment the following three lines.
65-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
60+
# ℹ️ Command-line programs to run using the OS shell.
61+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6662

67-
# - run: |
68-
# echo "Run, Build Application using script"
69-
# ./location_of_script_within_repo/buildscript.sh
63+
# If the Autobuild fails above, remove it and uncomment the following three lines.
64+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
7065

71-
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
66+
# - run: |
67+
# echo "Run, Build Application using script"
68+
# ./location_of_script_within_repo/buildscript.sh
69+
70+
- name: Perform CodeQL Analysis
71+
uses: github/codeql-action/analyze@v2

.github/workflows/release-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
runs-on: ubuntu-latest-16
2525
steps:
2626
- name: Checkout branch
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
# bun setup is required, because pnpm typdoc will run pnpm build and some packages uses bun for build
3030
- name: Setup bun
3131
uses: oven-sh/setup-bun@v1
3232
with:
33-
bun-version: 1.0.21
33+
bun-version: 1.0.35
3434

3535
- name: Install
3636
uses: ./.github/composite-actions/install

.github/workflows/release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
6262

6363
- name: pull the repo.
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6565
with:
6666
persist-credentials: true
6767
repository: ${{ fromJson(steps.get_pull_request_ref.outputs.data).head.repo.full_name }}
@@ -70,7 +70,7 @@ jobs:
7070
- name: Setup bun
7171
uses: oven-sh/setup-bun@v1
7272
with:
73-
bun-version: 1.0.21
73+
bun-version: 1.0.35
7474

7575
- name: Install
7676
uses: ./.github/composite-actions/install

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest-16
2727
steps:
2828
- name: Checkout branch
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232
# Do not use the GITHUB_TOKEN by default
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup bun
3636
uses: oven-sh/setup-bun@v1
3737
with:
38-
bun-version: 1.0.21
38+
bun-version: 1.0.35
3939

4040
- name: Install
4141
uses: ./.github/composite-actions/install

.github/workflows/sync-chains.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install bun
1616
uses: oven-sh/setup-bun@v1
1717
with:
18-
bun-version: 1.0.21
18+
bun-version: 1.0.35
1919

2020
- name: Run chains sync
2121
run: bun run db:sync

0 commit comments

Comments
 (0)