Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-

- name: Setup Node 20.x
- name: Setup Node 24.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "24.x"

- name: Check npm audit on ${{ matrix.os }}
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:
jobs:
pull-from-crowdin:
runs-on: [k8s-public]
container: node:20
container: node:24
env:
localization_branch_name: l10n_crowdin_translations
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:
push-to-crowdin:
runs-on: [k8s-public]
container: node:20
container: node:24
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extract-strings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
fetch-depth: 0
token: ${{ secrets.REPO_COMMIT }}

- name: Setup Node 20.x
- name: Setup Node 24.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "24.x"

- name: Set up commit signing
uses: Chia-Network/actions/commit-sign/gpg@main
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
24
3,960 changes: 2,226 additions & 1,734 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"ajv": "8.17.1",
"ajv": "8.18.0",
"date-and-time": "2.4.3",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
Expand Down Expand Up @@ -76,9 +76,13 @@
"js-yaml": "4.1.1",
"esbuild": "0.25.5",
"tmp": "0.2.5",
"qs": "6.14.1",
"qs": "6.15.0",
"schema-utils": "4.3.3",
"tar": "7.5.7"
"tar": "7.5.9",
"minimatch@3.0.5": "3.1.4",
"minimatch@9.0.3": "9.0.9",
"rollup": "4.59.0",
"serialize-javascript": "7.0.4"
},
"version": "1.2.10-dev132"
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"moment": "2.30.1",
"overlayscrollbars": "1.13.3",
"overlayscrollbars-react": "0.3.0",
"qs": "6.14.1",
"qs": "6.15.0",
"react-dropzone": "14.2.3",
"react-number-format": "5.4.3",
"react-redux": "8.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"@types/validator": "13.11.1",
"@walletconnect/types": "2.10.0",
"@welldone-software/why-did-you-render": "7.0.1",
"ajv": "8.17.1",
"ajv": "8.18.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "9.2.1",
"babel-plugin-lodash": "3.3.4",
Expand Down
Loading