Skip to content

Commit 15b3259

Browse files
asheshvclaude
andcommitted
fix: Bump python & javascript dependencies
Update Python dependencies: - google-auth-oauthlib 1.3.0 → 1.3.1 - sphinxcontrib-youtube 1.4.1 → 1.5.0 - fixtures 4.3.1 → 4.3.2 - Add missing newline at end of requirements files Update JavaScript dependencies: - Replace deprecated @babel/plugin-proposal-* packages with @babel/plugin-transform-* equivalents - Remove unused @types/classnames dependency - Update yarn.lock Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d59fcf3 commit 15b3259

8 files changed

Lines changed: 340 additions & 400 deletions

File tree

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Flask-SQLAlchemy==3.1.*
3434
Flask-WTF==1.2.*
3535
Flask==3.1.*
3636
google-api-python-client==2.*
37-
google-auth-oauthlib==1.3.0
37+
google-auth-oauthlib==1.3.1
3838
gssapi==1.11.*
3939
jsonformatter~=0.3.4
4040
keyring==25.*
@@ -62,4 +62,4 @@ urllib3==2.6.*; python_version > '3.9'
6262
user-agents==2.2.0
6363
Werkzeug==3.1.*
6464
WTForms==3.1.*; python_version <= '3.9'
65-
WTForms==3.2.*; python_version > '3.9'
65+
WTForms==3.2.*; python_version > '3.9'

tools/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ requests>=2.21.0
22
requests[security]>=2.21.0
33
safety>=1.9.0
44
Sphinx==7.4.7
5-
sphinxcontrib-youtube==1.4.1
5+
sphinxcontrib-youtube==1.5.0

web/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = [
4242
'babelOptions': {
4343
'plugins': [
4444
'@babel/plugin-syntax-jsx',
45-
'@babel/plugin-proposal-class-properties',
45+
'@babel/plugin-transform-class-properties',
4646
],
4747
},
4848
...reactjs.configs.recommended.parserOptions,

web/babel.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"presets": [["@babel/preset-env", {"modules": "commonjs", "useBuiltIns": "usage", "corejs": 3}], ["@babel/preset-react", {
33
"runtime": "automatic"
44
}], "@babel/preset-typescript"],
5-
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/proposal-object-rest-spread"]
5+
"plugins": ["@babel/plugin-transform-class-properties", "@babel/plugin-transform-object-rest-spread"]
66
}

web/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"@babel/core": "^7.28.3",
1111
"@babel/eslint-parser": "^7.28.6",
1212
"@babel/eslint-plugin": "^7.26.10",
13-
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
1413
"@babel/plugin-syntax-jsx": "^7.16.0",
14+
"@babel/plugin-transform-object-rest-spread": "^7.28.6",
1515
"@babel/plugin-transform-runtime": "^7.28.3",
1616
"@babel/preset-env": "^7.29.0",
1717
"@babel/preset-typescript": "^7.24.7",
@@ -70,7 +70,7 @@
7070
"sharp": "^0.34.4"
7171
},
7272
"dependencies": {
73-
"@babel/plugin-proposal-class-properties": "^7.10.4",
73+
"@babel/plugin-transform-class-properties": "^7.28.6",
7474
"@babel/preset-react": "^7.27.1",
7575
"@codemirror/lang-json": "^6.0.1",
7676
"@codemirror/lang-sql": "^6.10.0",
@@ -89,7 +89,6 @@
8989
"@tanstack/react-query": "^5.90.19",
9090
"@tanstack/react-table": "^8.16.0",
9191
"@tanstack/react-virtual": "^3.13.21",
92-
"@types/classnames": "^2.3.4",
9392
"@types/react": "^19.2.9",
9493
"@types/react-dom": "^19.0.0",
9594
"@xterm/addon-fit": "^0.11.0",

web/regression/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# relevant packages.
2323
###########################################################
2424
extras==1.0.0
25-
fixtures==4.3.1
25+
fixtures==4.3.2
2626
linecache2==1.0.0
2727
pbr==7.0.3
2828
pycodestyle>=2.5.0

web/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ module.exports = [{
143143
presets: [['@babel/preset-env', {'modules': 'commonjs', 'useBuiltIns': 'usage', 'corejs': 3}], ['@babel/preset-react', {
144144
'runtime': 'automatic'
145145
}], '@babel/preset-typescript'],
146-
plugins: ['@babel/plugin-proposal-class-properties', '@babel/proposal-object-rest-spread'],
146+
plugins: ['@babel/plugin-transform-class-properties', '@babel/plugin-transform-object-rest-spread'],
147147
},
148148
},
149149
}, {

0 commit comments

Comments
 (0)