diff --git a/CHANGELOG.md b/CHANGELOG.md index 5af7239..c042c99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.7.1 + +- Upgrade all dependencies to the latest npm versions, but not + web-test-runner-jasmine because it requires node>=24.0.0, and not jasmine-core + because of web-test-runner-jasmine. + ## v0.7.0 - Upgrade to Material 3 Web Components (https://material-web.dev/). diff --git a/package.json b/package.json index e06f060..b07f546 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codec_compare", - "version": "0.7.0", + "version": "0.7.1", "description": "Codec performance comparison tool", "publisher": "Google LLC", "author": "Yannis Guyon", @@ -13,19 +13,19 @@ "test": "web-test-runner \"src/**/*_test.ts\" --node-resolve" }, "devDependencies": { - "@types/jasmine": "^5.1.5", - "@types/node": "^22.10.2", - "@types/plotly.js-dist": "npm:@types/plotly.js@^2.12.30", - "@web/dev-server-esbuild": "^1.0.4", - "@web/test-runner": "^0.19.0", - "jasmine-core": "^5.5.0", - "typescript": "^5.7.2", - "vite": "^6.3.2", - "web-test-runner-jasmine": "^0.0.6" + "@types/jasmine": "^6.0.0", + "@types/node": "^25.6.0", + "@types/plotly.js-dist": "npm:@types/plotly.js@^3.0.10", + "@web/dev-server-esbuild": "^1.0.5", + "@web/test-runner": "^0.20.2", + "jasmine-core": "^5.13.0", + "typescript": "^6.0.3", + "vite": "^8.0.10", + "web-test-runner-jasmine": "^0.1.5" }, "dependencies": { - "@material/web": "^1.4.1", - "lit": "^3.2.1", - "plotly.js-dist": "^2.35.3" + "@material/web": "^2.4.1", + "lit": "^3.3.2", + "plotly.js-dist": "^3.5.1" } } diff --git a/src/codec_compare.ts b/src/codec_compare.ts index 272b813..6fbb9bc 100644 --- a/src/codec_compare.ts +++ b/src/codec_compare.ts @@ -258,7 +258,7 @@ export class CodecCompare extends LitElement {

- Codec Compare version 0.7.0
+ Codec Compare version 0.7.1
Sources on GitHub diff --git a/vite.config.js b/vite.config.js index 91e9fdc..eaee319 100644 --- a/vite.config.js +++ b/vite.config.js @@ -25,7 +25,8 @@ export default defineConfig({ main: resolve(__dirname, 'index.html'), visualizer: resolve(__dirname, 'visualizer.html') } - } + }, + chunkSizeWarningLimit: 10000 }, publicDir: 'assets' })