Skip to content

Commit b17748f

Browse files
Merge pull request #11002 from DestinyItemManager/dependabot/npm_and_yarn/minor-c0d6d63e05
Bump the minor group with 17 updates
2 parents b1f44bd + 0757589 commit b17748f

File tree

5 files changed

+449
-382
lines changed

5 files changed

+449
-382
lines changed

.github/workflows/deploy-beta.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,10 @@ jobs:
6464
DIM_API_KEY: ${{ secrets.DIM_API_KEY }}
6565

6666
# Send webpack stats and build information to RelativeCI
67-
- name: Send webpack stats to RelativeCI
68-
uses: relative-ci/agent-action@v2
67+
- name: Upload bundle stats artifact
68+
uses: relative-ci/agent-upload-artifact-action@v2
6969
with:
7070
webpackStatsFile: ./webpack-stats.json
71-
key: ${{ secrets.RELATIVE_CI_KEY }}
72-
token: ${{ secrets.GITHUB_TOKEN }}
7371

7472
- name: Check Syntax
7573
run: pnpm syntax

.github/workflows/pr-build.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,11 @@ jobs:
6464
- config/webpack.ts
6565
- babel.config.js
6666
67-
- name: Send webpack stats to RelativeCI
67+
- name: Upload bundle stats artifact
6868
if: ${{ steps.filter.outputs.build-pipeline == 'true' }}
69-
uses: relative-ci/agent-action@v2
69+
uses: relative-ci/agent-upload-artifact-action@v2
7070
with:
7171
webpackStatsFile: ./webpack-stats.json
72-
key: ${{ secrets.RELATIVE_CI_KEY }}
73-
token: ${{ secrets.GITHUB_TOKEN }}
7472

7573
# Deploy a preview version of the server!
7674

.github/workflows/relative-ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: RelativeCI
2+
3+
on:
4+
workflow_run:
5+
workflows: ["PR Build", "Deploy Beta"]
6+
types:
7+
- completed
8+
9+
jobs:
10+
ingest:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Send bundle stats and build information to RelativeCI
14+
uses: relative-ci/[email protected]
15+
with:
16+
key: ${{ secrets.RELATIVE_CI_KEY }}
17+
token: ${{ secrets.GITHUB_TOKEN }}

package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@
8585
"@babel/plugin-transform-react-constant-elements": "^7.25.9",
8686
"@babel/plugin-transform-react-inline-elements": "^7.25.9",
8787
"@babel/plugin-transform-runtime": "^7.26.10",
88-
"@babel/plugin-transform-typescript": "^7.26.8",
88+
"@babel/plugin-transform-typescript": "^7.27.0",
8989
"@babel/preset-env": "^7.26.9",
9090
"@babel/preset-react": "^7.26.3",
91-
"@babel/preset-typescript": "^7.26.0",
91+
"@babel/preset-typescript": "^7.27.0",
9292
"@babel/register": "^7.25.9",
93-
"@eslint-react/eslint-plugin": "^1.34.1",
93+
"@eslint-react/eslint-plugin": "^1.37.3",
9494
"@eslint/compat": "^1.2.7",
9595
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
9696
"@testing-library/react": "^16.2.0",
@@ -101,7 +101,7 @@
101101
"@types/node": "22.0.2",
102102
"@types/papaparse": "^5.3.15",
103103
"@types/prop-types": "^15.7.14",
104-
"@types/react": "19.0.10",
104+
"@types/react": "19.0.12",
105105
"@types/react-beautiful-dnd": "^13.1.8",
106106
"@types/react-dnd-multi-backend": "^6.0.6",
107107
"@types/react-dom": "^19.0.4",
@@ -110,8 +110,8 @@
110110
"@types/webpack": "^5.28.5",
111111
"@types/webpack-env": "^1.18.8",
112112
"@types/webpack-stats-plugin": "^0.3.5",
113-
"@typescript-eslint/eslint-plugin": "^8.26.1",
114-
"@typescript-eslint/parser": "^8.26.1",
113+
"@typescript-eslint/eslint-plugin": "^8.28.0",
114+
"@typescript-eslint/parser": "^8.28.0",
115115
"autoprefixer": "^10.4.21",
116116
"babel-jest": "^29.7.0",
117117
"babel-loader": "^10.0.0",
@@ -133,7 +133,7 @@
133133
"eslint-plugin-jsx-a11y": "^6.10.2",
134134
"eslint-plugin-react": "^7.37.4",
135135
"eslint-plugin-react-hooks": "^5.2.0",
136-
"eslint-plugin-react-redux": "^4.2.1",
136+
"eslint-plugin-react-redux": "^4.2.2",
137137
"eslint-plugin-regexp": "^2.7.0",
138138
"eslint-plugin-sonarjs": "^1.0.4",
139139
"fontawesome-subset": "^4.5.0",
@@ -165,7 +165,7 @@
165165
"prettier": "^3.5.3",
166166
"prettier-plugin-organize-imports": "^4.1.0",
167167
"react-refresh": "^0.16.0",
168-
"sass": "^1.85.1",
168+
"sass": "^1.86.0",
169169
"sass-loader": "^16.0.5",
170170
"sonda": "^0.7.1",
171171
"source-map-loader": "^5.0.0",
@@ -177,12 +177,12 @@
177177
"svgo": "^3.3.2",
178178
"svgo-loader": "^4.0.0",
179179
"terser-webpack-plugin": "^5.3.14",
180-
"ts-jest": "^29.2.6",
180+
"ts-jest": "^29.3.0",
181181
"ts-loader": "^9.5.2",
182182
"ts-unused-exports": "^11.0.1",
183183
"tsconfig-paths-webpack-plugin": "^4.2.0",
184184
"typescript": "^5.8.2",
185-
"typescript-eslint": "^8.26.1",
185+
"typescript-eslint": "^8.28.0",
186186
"webpack": "^5.98.0",
187187
"webpack-cli": "^6.0.1",
188188
"webpack-dev-server": "^5.2.0",
@@ -191,7 +191,7 @@
191191
"workbox-webpack-plugin": "7.3.0"
192192
},
193193
"dependencies": {
194-
"@babel/runtime": "^7.26.10",
194+
"@babel/runtime": "^7.27.0",
195195
"@beyond-js/md5": "^0.0.1",
196196
"@destinyitemmanager/dim-api-types": "^1.35.0",
197197
"@fortawesome/fontawesome-free": "^5.15.4",
@@ -200,15 +200,15 @@
200200
"@hello-pangea/dnd": "^18.0.1",
201201
"@popperjs/core": "^2.11.8",
202202
"@react-hook/resize-observer": "^2.0.2",
203-
"@sentry/browser": "^9.6.0",
204-
"@sentry/react": "^9.6.0",
205-
"@sentry/types": "^9.6.0",
206-
"@tanstack/react-virtual": "^3.13.4",
203+
"@sentry/browser": "^9.9.0",
204+
"@sentry/react": "^9.9.0",
205+
"@sentry/types": "^9.9.0",
206+
"@tanstack/react-virtual": "^3.13.5",
207207
"@textcomplete/core": "^0.1.13",
208208
"@textcomplete/textarea": "^0.1.13",
209209
"@textcomplete/utils": "^0.1.13",
210210
"bungie-api-ts": "^5.2.0",
211-
"caniuse-lite": "^1.0.30001705",
211+
"caniuse-lite": "^1.0.30001707",
212212
"clsx": "^2.1.1",
213213
"comlink": "^4.4.2",
214214
"core-js": "^3.41.0",
@@ -231,7 +231,7 @@
231231
"react-dom": "^19.0.0",
232232
"react-dropzone": "^14.3.8",
233233
"react-redux": "^9.2.0",
234-
"react-router": "^7.3.0",
234+
"react-router": "^7.4.0",
235235
"react-textarea-autosize": "^8.5.8",
236236
"redux": "^5.0.1",
237237
"redux-thunk": "^3.1.0",

0 commit comments

Comments
 (0)