Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the npm-dependencies group with 34 updates:

Package From To
@fontsource/poppins 5.0.8 5.2.7
@imengyu/vue3-context-menu 1.3.3 1.5.2
@microsoft/signalr 7.0.12 10.0.0
@sentry/vue 7.75.1 10.26.0
axios 1.8.3 1.13.2
bootstrap-vue-next 0.14.10 0.40.8
copy-webpack-plugin 13.0.0 13.0.1
core-js 3.33.1 3.47.0
esp-web-tools 9.4.0 10.1.1
vue 3.4.15 3.5.24
vue-router 4.5.0 4.6.3
vue-sweetalert2 5.0.5 5.0.11
@babel/core 7.23.2 7.28.5
@babel/preset-env 7.23.2 7.28.5
@fortawesome/fontawesome-svg-core 6.4.2 7.1.0
@fortawesome/free-brands-svg-icons 6.4.2 7.1.0
@fortawesome/free-regular-svg-icons 6.4.2 7.1.0
@fortawesome/free-solid-svg-icons 6.4.2 7.1.0
autoprefixer 10.4.16 10.4.22
babel-loader 9.1.3 10.0.0
bootstrap 5.3.2 5.3.8
css-loader 6.8.1 7.1.2
html-webpack-plugin 5.5.3 5.6.5
mini-css-extract-plugin 2.7.6 2.9.4
postcss 8.4.33 8.5.6
postcss-loader 7.3.3 8.2.0
sass 1.69.4 1.94.2
sass-loader 13.3.2 16.0.6
style-loader 3.3.3 4.0.0
vue-loader 17.3.0 17.4.2
vue-template-compiler 2.7.15 2.7.16
webpack 5.89.0 5.103.0
webpack-cli 5.1.4 6.0.1
webpack-dev-server 4.15.1 5.2.2

Updates @fontsource/poppins from 5.0.8 to 5.2.7

Commits

Updates @imengyu/vue3-context-menu from 1.3.3 to 1.5.2

Commits

Updates @microsoft/signalr from 7.0.12 to 10.0.0

Release notes

Sourced from @​microsoft/signalr's releases.

.NET 10.0

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v10.0.0-rc.2.25502.107...v10.0.0

.NET 10.0 RC 2

Release

What's Changed

... (truncated)

Commits

Updates @sentry/vue from 7.75.1 to 10.26.0

Release notes

Sourced from @​sentry/vue's releases.

10.26.0

Important Changes

  • feat(core): Instrument LangGraph Agent (#18114)

Adds support for instrumenting LangGraph StateGraph operations in Node. The LangGraph integration can be configured as follows:

Sentry.init({
  dsn: '__DSN__',
  sendDefaultPii: false, // Even with PII disabled globally
  integrations: [
    Sentry.langGraphIntegration({
      recordInputs: true, // Force recording input messages
      recordOutputs: true, // Force recording response text
    }),
  ],
});
  • feat(cloudflare/vercel-edge): Add manual instrumentation for LangGraph (#18112)

Instrumentation for LangGraph in Cloudflare Workers and Vercel Edge environments is supported by manually calling instrumentLangGraph:

import * as Sentry from '@sentry/cloudflare'; // or '@sentry/vercel-edge'
import { StateGraph, START, END, MessagesAnnotation } from '@langchain/langgraph';
// Create and instrument the graph
const graph = new StateGraph(MessagesAnnotation)
.addNode('agent', agentFn)
.addEdge(START, 'agent')
.addEdge('agent', END);
Sentry.instrumentLangGraph(graph, {
recordInputs: true,
recordOutputs: true,
});
const compiled = graph.compile({ name: 'weather_assistant' });
await compiled.invoke({
messages: [{ role: 'user', content: 'What is the weather in SF?' }],
});

  • feat(node): Add OpenAI SDK v6 support (#18244)

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

10.26.0

Important Changes

  • feat(core): Instrument LangGraph Agent (#18114)

Adds support for instrumenting LangGraph StateGraph operations in Node. The LangGraph integration can be configured as follows:

Sentry.init({
  dsn: '__DSN__',
  sendDefaultPii: false, // Even with PII disabled globally
  integrations: [
    Sentry.langGraphIntegration({
      recordInputs: true, // Force recording input messages
      recordOutputs: true, // Force recording response text
    }),
  ],
});
  • feat(cloudflare/vercel-edge): Add manual instrumentation for LangGraph (#18112)

Instrumentation for LangGraph in Cloudflare Workers and Vercel Edge environments is supported by manually calling instrumentLangGraph:

import * as Sentry from '@sentry/cloudflare'; // or '@sentry/vercel-edge'
import { StateGraph, START, END, MessagesAnnotation } from '@langchain/langgraph';
// Create and instrument the graph
const graph = new StateGraph(MessagesAnnotation)
.addNode('agent', agentFn)
.addEdge(START, 'agent')
.addEdge('agent', END);
Sentry.instrumentLangGraph(graph, {
recordInputs: true,
recordOutputs: true,
});
const compiled = graph.compile({ name: 'weather_assistant' });
await compiled.invoke({
messages: [{ role: 'user', content: 'What is the weather in SF?' }],
});

  • feat(node): Add OpenAI SDK v6 support (#18244)

Other Changes

... (truncated)

Commits
  • 8ab6227 release: 10.26.0
  • d33c795 Merge pull request #18249 from getsentry/prepare-release/10.26.0
  • be12569 meta(changelog): Update changelog for 10.26.0
  • be29c56 chore(e2e): Bump zod in e2e tests (#18251)
  • b3bf56d feat(node): Add OpenAI SDK v6 support and integration tests (#18244)
  • 584d4bc feat(cloudflare/vercel-edge): Add manual instrumentation for LangGraph (#18112)
  • d12ba2e feat(metrics): Add default server.address attribute on server runtimes (#18...
  • 935ef55 feat(core): Support OpenAI embeddings API (#18224)
  • 610ae69 feat(browser-utils): bump web-vitals to 5.1.0 (#18091)
  • 9482a02 fix(nextjs): Respect PORT variable for dev error symbolication (#18227)
  • Additional commits viewable in compare view

Updates axios from 1.8.3 to 1.13.2

Release notes

Sourced from axios's releases.

Release v1.13.2

Release notes:

Bug Fixes

  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#7196) (0588880)

Performance Improvements

Contributors to this release

Release v1.13.1

Release notes:

Bug Fixes

  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#7193) (bcd5581)

Contributors to this release

Release v1.13.0

Release notes:

Bug Fixes

  • fetch: prevent TypeError when config.env is undefined (#7155) (015faec)
  • resolve issue #7131 (added spacing in mergeConfig.js) (#7133) (9b9ec98)

Features

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.13.2 (2025-11-04)

Bug Fixes

  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#7196) (0588880)

Performance Improvements

Contributors to this release

1.13.1 (2025-10-28)

Bug Fixes

  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#7193) (bcd5581)

Contributors to this release

1.13.0 (2025-10-27)

Bug Fixes

  • fetch: prevent TypeError when config.env is undefined (#7155) (015faec)
  • resolve issue #7131 (added spacing in mergeConfig.js) (#7133) (9b9ec98)

Features

Contributors to this release

... (truncated)

Commits
  • 08b84b5 chore(release): v1.13.2 (#7207)
  • 8d37233 fix(http): fix 'socket hang up' bug for keep-alive requests when using timeou...
  • 12c314b perf(http): fix early loop exit; (#7202)
  • f6d79e7 chore(sponsor): update sponsor block (#7203)
  • 0588880 fix(http): use default export for http2 module to support stubs; (#7196)
  • 1ef8e72 chore(release): v1.13.1 (#7194)
  • bcd5581 fix(http): fixed a regression that caused the data stream to be interrupted f...
  • c9b3371 chore: enhance styling and responsiveness in client.html (#7173)
  • 9ead04d [Release] v1.13.0 (#7189)
  • d000fbf fix(http2): fix possible race condition when handling http2 stream on almost ...
  • Additional commits viewable in compare view

Updates bootstrap-vue-next from 0.14.10 to 0.40.8

Release notes

Sourced from bootstrap-vue-next's releases.

bootstrapvuenext: v0.40.8

0.40.8 (2025-11-17)

Features

  • add name and form props to BFormRating for form submission (#2895) (f14f049)
  • BTable: add an AbortSignal to the provider object parameter for cancelling in progress requests (2a12859)
  • BTable: add configurable debouncing (2a12859)

Bug Fixes

nuxt: v0.40.8

0.40.8 (2025-11-17)

Miscellaneous Chores

  • nuxt: Synchronize main group versions

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • bootstrap-vue-next bumped to 0.40.8
    • peerDependencies
      • bootstrap-vue-next bumped to 0.40.8

bootstrapvuenext: v0.40.7

0.40.7 (2025-10-22)

Features

  • add NumpadEnter support for BTable and BFormTags keyboard navigation (accessibility) (#2884) (bdf6fee)

nuxt: v0.40.7

0.40.7 (2025-10-22)

Miscellaneous Chores

  • nuxt: Synchronize main group versions

... (truncated)

Changelog

Sourced from bootstrap-vue-next's changelog.

0.40.8 (2025-11-17)

Features

  • add name and form props to BFormRating for form submission (#2895) (f14f049)
  • BTable: add an AbortSignal to the provider object parameter for cancelling in progress requests (2a12859)
  • BTable: add configurable debouncing (2a12859)

Bug Fixes

0.40.7 (2025-10-22)

Features

  • add NumpadEnter support for BTable and BFormTags keyboard navigation (accessibility) (#2884) (bdf6fee)

0.40.6 (2025-10-07)

Bug Fixes

  • BApp: wrap our test app in BApp in main.ts to enable easy verification of useModal, etc. (#2865) (d7d3476)
  • useModalOrchestrator: circular dependency (#2874) (c0bf12f)

0.40.5 (2025-09-23)

Bug Fixes

  • BToggle: stop looking for missing targets after directive is unmounted (#2857) (b358449)

0.40.4 (2025-09-16)

Bug Fixes

  • BOrchestrator: fix transition delay. (af49d33)

0.40.3 (2025-09-12)

Bug Fixes

  • BTable: events being wrongly stopped when sent from elements inside TRs (#2841) (ee8b0f7)

0.40.2 (2025-09-09)

Features

... (truncated)

Commits
  • 4664f03 chore: release main (#2896)
  • 2a12859 feat(BTable): add configurable debouncing
  • 4f85d27 ci: Add publint to the build process (#2909)
  • 7b39759 fix(directives): Robustness fixes for directives (#2906)
  • 84b5805 docs(BFormInput): document @​wheel.prevent for disabling mousewheel events (#2...
  • 4b0d55a fix(typings): Fix paths to *.d.mts files (#2907)
  • f14f049 feat: add name and form props to BFormRating for form submission (#2895)
  • dfabcef chore: release main (#2885)
  • bdf6fee feat: add NumpadEnter support for BTable and BFormTags keyboard navigation (a...
  • 52fd18b docs: prevent href=# links from scrolling to top (#2861)
  • Additional commits viewable in compare view

Updates copy-webpack-plugin from 13.0.0 to 13.0.1

Release notes

Sourced from copy-webpack-plugin's releases.

v13.0.1

13.0.1 (2025-08-12)

Bug Fixes

Changelog

Sourced from copy-webpack-plugin's changelog.

13.0.1 (2025-08-12)

Bug Fixes

Commits

Updates core-js from 3.33.1 to 3.47.0

Changelog

Sourced from core-js's changelog.

3.47.0 - 2025.11.18

3.46.0 - 2025.10.09

... (truncated)

Commits
  • c1d2c7e v3.47.0
  • 400f00e move JSON.parse source text access to stable ES
  • 2b383e9 move joint iteration to stage 3
  • 21f984c move Iterator sequencing proposal to stable ES
  • 6add4cd add explicit "sideEffects": true to core-js and core-js-bundle packages
  • 0f6c98d update eslint-plugin-unicorn
  • fe04540 fix increasing .size in URLSearchParams.prototype.append polyfill in IE8-
  • 98d9dc4 v3.46.0
  • 38420bd add homepage field to package.jsons
  • a7aee4c some fixes
  • Additional commits viewable in compare view

Updates esp-web-tools from 9.4.0 to 10.1.1

Release notes

Sourced from esp-web-tools's releases.

10.1.1

What's Changed

Dependencies

10.1.0

What's Changed

This release includes an updated esptool.js with a rewritten transport layer. This should address most timeout issues.

  • Fix missing icons (#543) ...

    Description has been truncated

Bumps the npm-dependencies group with 34 updates:

| Package | From | To |
| --- | --- | --- |
| [@fontsource/poppins](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/poppins) | `5.0.8` | `5.2.7` |
| [@imengyu/vue3-context-menu](https://github.com/imengyu/vue3-context-menu) | `1.3.3` | `1.5.2` |
| [@microsoft/signalr](https://github.com/dotnet/aspnetcore) | `7.0.12` | `10.0.0` |
| [@sentry/vue](https://github.com/getsentry/sentry-javascript) | `7.75.1` | `10.26.0` |
| [axios](https://github.com/axios/axios) | `1.8.3` | `1.13.2` |
| [bootstrap-vue-next](https://github.com/bootstrap-vue-next/bootstrap-vue-next/tree/HEAD/packages/bootstrap-vue-next) | `0.14.10` | `0.40.8` |
| [copy-webpack-plugin](https://github.com/webpack-contrib/copy-webpack-plugin) | `13.0.0` | `13.0.1` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.33.1` | `3.47.0` |
| [esp-web-tools](https://github.com/esphome/esp-web-tools) | `9.4.0` | `10.1.1` |
| [vue](https://github.com/vuejs/core) | `3.4.15` | `3.5.24` |
| [vue-router](https://github.com/vuejs/router) | `4.5.0` | `4.6.3` |
| [vue-sweetalert2](https://github.com/avil13/vue-sweetalert2) | `5.0.5` | `5.0.11` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.23.2` | `7.28.5` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.23.2` | `7.28.5` |
| [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `7.1.0` |
| [@fortawesome/free-brands-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `7.1.0` |
| [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `7.1.0` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `7.1.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.16` | `10.4.22` |
| [babel-loader](https://github.com/babel/babel-loader) | `9.1.3` | `10.0.0` |
| [bootstrap](https://github.com/twbs/bootstrap) | `5.3.2` | `5.3.8` |
| [css-loader](https://github.com/webpack-contrib/css-loader) | `6.8.1` | `7.1.2` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.5.3` | `5.6.5` |
| [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) | `2.7.6` | `2.9.4` |
| [postcss](https://github.com/postcss/postcss) | `8.4.33` | `8.5.6` |
| [postcss-loader](https://github.com/webpack-contrib/postcss-loader) | `7.3.3` | `8.2.0` |
| [sass](https://github.com/sass/dart-sass) | `1.69.4` | `1.94.2` |
| [sass-loader](https://github.com/webpack/sass-loader) | `13.3.2` | `16.0.6` |
| [style-loader](https://github.com/webpack-contrib/style-loader) | `3.3.3` | `4.0.0` |
| [vue-loader](https://github.com/vuejs/vue-loader) | `17.3.0` | `17.4.2` |
| [vue-template-compiler](https://github.com/vuejs/vue) | `2.7.15` | `2.7.16` |
| [webpack](https://github.com/webpack/webpack) | `5.89.0` | `5.103.0` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `5.1.4` | `6.0.1` |
| [webpack-dev-server](https://github.com/webpack/webpack-dev-server) | `4.15.1` | `5.2.2` |


Updates `@fontsource/poppins` from 5.0.8 to 5.2.7
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/poppins)

Updates `@imengyu/vue3-context-menu` from 1.3.3 to 1.5.2
- [Commits](https://github.com/imengyu/vue3-context-menu/commits)

Updates `@microsoft/signalr` from 7.0.12 to 10.0.0
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.12...v10.0.0)

Updates `@sentry/vue` from 7.75.1 to 10.26.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.75.1...10.26.0)

Updates `axios` from 1.8.3 to 1.13.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.8.3...v1.13.2)

Updates `bootstrap-vue-next` from 0.14.10 to 0.40.8
- [Release notes](https://github.com/bootstrap-vue-next/bootstrap-vue-next/releases)
- [Changelog](https://github.com/bootstrap-vue-next/bootstrap-vue-next/blob/main/packages/bootstrap-vue-next/CHANGELOG.md)
- [Commits](https://github.com/bootstrap-vue-next/bootstrap-vue-next/commits/nuxt-v0.40.8/packages/bootstrap-vue-next)

Updates `copy-webpack-plugin` from 13.0.0 to 13.0.1
- [Release notes](https://github.com/webpack-contrib/copy-webpack-plugin/releases)
- [Changelog](https://github.com/webpack/copy-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](webpack/copy-webpack-plugin@v13.0.0...v13.0.1)

Updates `core-js` from 3.33.1 to 3.47.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.47.0/packages/core-js)

Updates `esp-web-tools` from 9.4.0 to 10.1.1
- [Release notes](https://github.com/esphome/esp-web-tools/releases)
- [Commits](esphome/esp-web-tools@9.4.0...10.1.1)

Updates `vue` from 3.4.15 to 3.5.24
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.4.15...v3.5.24)

Updates `vue-router` from 4.5.0 to 4.6.3
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v4.5.0...v4.6.3)

Updates `vue-sweetalert2` from 5.0.5 to 5.0.11
- [Release notes](https://github.com/avil13/vue-sweetalert2/releases)
- [Commits](avil13/vue-sweetalert2@v5.0.5...v5.0.11)

Updates `@babel/core` from 7.23.2 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-core)

Updates `@babel/preset-env` from 7.23.2 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-env)

Updates `@fortawesome/fontawesome-svg-core` from 6.4.2 to 7.1.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.4.2...7.1.0)

Updates `@fortawesome/free-brands-svg-icons` from 6.4.2 to 7.1.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.4.2...7.1.0)

Updates `@fortawesome/free-regular-svg-icons` from 6.4.2 to 7.1.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.4.2...7.1.0)

Updates `@fortawesome/free-solid-svg-icons` from 6.4.2 to 7.1.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.4.2...7.1.0)

Updates `autoprefixer` from 10.4.16 to 10.4.22
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.16...10.4.22)

Updates `babel-loader` from 9.1.3 to 10.0.0
- [Release notes](https://github.com/babel/babel-loader/releases)
- [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md)
- [Commits](babel/babel-loader@v9.1.3...v10.0.0)

Updates `bootstrap` from 5.3.2 to 5.3.8
- [Release notes](https://github.com/twbs/bootstrap/releases)
- [Commits](twbs/bootstrap@v5.3.2...v5.3.8)

Updates `css-loader` from 6.8.1 to 7.1.2
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack/css-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/css-loader@v6.8.1...v7.1.2)

Updates `html-webpack-plugin` from 5.5.3 to 5.6.5
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.5.3...v5.6.5)

Updates `mini-css-extract-plugin` from 2.7.6 to 2.9.4
- [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
- [Changelog](https://github.com/webpack/mini-css-extract-plugin/blob/main/CHANGELOG.md)
- [Commits](webpack/mini-css-extract-plugin@v2.7.6...v2.9.4)

Updates `postcss` from 8.4.33 to 8.5.6
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.33...8.5.6)

Updates `postcss-loader` from 7.3.3 to 8.2.0
- [Release notes](https://github.com/webpack-contrib/postcss-loader/releases)
- [Changelog](https://github.com/webpack/postcss-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/postcss-loader@v7.3.3...v8.2.0)

Updates `sass` from 1.69.4 to 1.94.2
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.69.4...1.94.2)

Updates `sass-loader` from 13.3.2 to 16.0.6
- [Release notes](https://github.com/webpack/sass-loader/releases)
- [Changelog](https://github.com/webpack/sass-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/sass-loader@v13.3.2...v16.0.6)

Updates `style-loader` from 3.3.3 to 4.0.0
- [Release notes](https://github.com/webpack-contrib/style-loader/releases)
- [Changelog](https://github.com/webpack/style-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/style-loader@v3.3.3...v4.0.0)

Updates `vue-loader` from 17.3.0 to 17.4.2
- [Release notes](https://github.com/vuejs/vue-loader/releases)
- [Changelog](https://github.com/vuejs/vue-loader/blob/main/CHANGELOG.md)
- [Commits](vuejs/vue-loader@v17.3.0...v17.4.2)

Updates `vue-template-compiler` from 2.7.15 to 2.7.16
- [Release notes](https://github.com/vuejs/vue/releases)
- [Changelog](https://github.com/vuejs/vue/blob/main/CHANGELOG.md)
- [Commits](vuejs/vue@v2.7.15...v2.7.16)

Updates `webpack` from 5.89.0 to 5.103.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.89.0...v5.103.0)

Updates `webpack-cli` from 5.1.4 to 6.0.1
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@5.1.4...webpack-cli@6.0.1)

Updates `webpack-dev-server` from 4.15.1 to 5.2.2
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack-dev-server@v4.15.1...v5.2.2)

---
updated-dependencies:
- dependency-name: "@fontsource/poppins"
  dependency-version: 5.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@imengyu/vue3-context-menu"
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@microsoft/signalr"
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@sentry/vue"
  dependency-version: 10.26.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: bootstrap-vue-next
  dependency-version: 0.40.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: copy-webpack-plugin
  dependency-version: 13.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: core-js
  dependency-version: 3.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: esp-web-tools
  dependency-version: 10.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: vue
  dependency-version: 3.5.24
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vue-router
  dependency-version: 4.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vue-sweetalert2
  dependency-version: 5.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@babel/core"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@babel/preset-env"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@fortawesome/fontawesome-svg-core"
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@fortawesome/free-brands-svg-icons"
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@fortawesome/free-regular-svg-icons"
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@fortawesome/free-solid-svg-icons"
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: babel-loader
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: bootstrap
  dependency-version: 5.3.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: css-loader
  dependency-version: 7.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: html-webpack-plugin
  dependency-version: 5.6.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: mini-css-extract-plugin
  dependency-version: 2.9.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: postcss-loader
  dependency-version: 8.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: sass
  dependency-version: 1.94.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: sass-loader
  dependency-version: 16.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: style-loader
  dependency-version: 4.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: vue-loader
  dependency-version: 17.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vue-template-compiler
  dependency-version: 2.7.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: webpack
  dependency-version: 5.103.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: webpack-cli
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: webpack-dev-server
  dependency-version: 5.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 24, 2025
@hhvrc hhvrc closed this Nov 24, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 24, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-dependencies-192c49eccc branch November 24, 2025 20:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants