Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the npm group across 1 directory with 20 updates #180

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

Bumps the npm group with 20 updates in the / directory:

Package From To
@types/c3 0.7.8 0.7.11
@types/node 15.14.9 22.13.8
@types/stripe-v3 3.1.29 3.1.33
@types/uikit 3.14.0 3.14.5
css-loader 5.2.7 7.1.2
d3-scale-chromatic 3.0.0 3.1.0
@types/d3-scale-chromatic 3.0.0 3.1.0
jquery 3.7.0 3.7.1
mini-css-extract-plugin 1.6.2 2.9.2
ol 5.3.3 10.4.0
sass 1.32.13 1.85.1
sass-loader 11.1.1 16.0.5
ts-loader 9.4.4 9.5.2
typescript 4.9.5 5.8.2
vue 2.7.14 3.5.13
vue-loader 15.10.1 17.4.2
vue-multiselect 2.1.7 3.2.0
vue-template-compiler 2.7.14 2.7.16
webpack 5.94.0 5.98.0
webpack-cli 4.10.0 6.0.1

Updates @types/c3 from 0.7.8 to 0.7.11

Commits

Updates @types/node from 15.14.9 to 22.13.8

Commits

Updates @types/stripe-v3 from 3.1.29 to 3.1.33

Commits

Updates @types/uikit from 3.14.0 to 3.14.5

Commits

Updates css-loader from 5.2.7 to 7.1.2

Release notes

Sourced from css-loader's releases.

v7.1.2

7.1.2 (2024-05-22)

Bug Fixes

  • keep order of @imports with the webpackIgnore comment (#1600) (76757ef)

v7.1.1

7.1.1 (2024-04-10)

Bug Fixes

  • automatically rename class default to _default when named export is enabled (#1590) (d6c31a1)

v7.1.0

7.1.0 (2024-04-08)

Features

  • added the getJSON option to output CSS modules mapping (#1577) (af834b4)

v7.0.0

7.0.0 (2024-04-04)

⚠ BREAKING CHANGES

  • The modules.namedExport option is true by default if you enable the esModule option

Migration guide:

Before:

import style from "./style.css";
console.log(style.myClass);

After:

import * as style from "./style.css";
console.log(style.myClass);

... (truncated)

Changelog

Sourced from css-loader's changelog.

7.1.2 (2024-05-22)

Bug Fixes

  • keep order of @imports with the webpackIgnore comment (#1600) (76757ef)

7.1.1 (2024-04-10)

Bug Fixes

  • automatically rename class default to _default when named export is enabled (#1590) (d6c31a1)

7.1.0 (2024-04-08)

Features

  • added the getJSON option to output CSS modules mapping (#1577) (af834b4)

7.0.0 (2024-04-04)

⚠ BREAKING CHANGES

  • The modules.namedExport option is true by default if you enable the esModule option

Migration guide:

Before:

import style from "./style.css";
console.log(style.myClass);

After:

import * as style from "./style.css";
console.log(style.myClass);

To restore 6.x behavior, please use:

module.exports = {
</tr></table> 

... (truncated)

Commits

Updates d3-scale-chromatic from 3.0.0 to 3.1.0

Release notes

Sourced from d3-scale-chromatic's releases.

v3.1.0

  • Add d3.schemeObservable10. #51
Commits

Updates @types/d3-scale-chromatic from 3.0.0 to 3.1.0

Commits

Updates jquery from 3.7.0 to 3.7.1

Release notes

Sourced from jquery's releases.

jQuery 3.7.1 Released: Reliable Table Row Dimensions

https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/

Commits
  • f79d5f1 3.7.1
  • 399b201 Release: revert change that broke release
  • f85d521 Release: update authors
  • 763ade6 Build: Generate the slim build on grunt & run compare_size on it
  • a288838 CSS: Make the reliableTrDimensions support test work with Bootstrap CSS (3.x ...
  • 87467a6 Selector: Only attach the unload handler in IE & Edge Legacy
  • 3c18c1f Build: Make sure *.cjs & *.mjs files use UNIX line endings as well
  • 72ae577 Build: switch preferred email for timmywil
  • a370d7d Build: Build: Bump actions/checkout from 3.5.2 to 3.5.3
  • 4a29888 Docs: Fix typos found by codespell
  • Additional commits viewable in compare view

Updates mini-css-extract-plugin from 1.6.2 to 2.9.2

Release notes

Sourced from mini-css-extract-plugin's releases.

v2.9.2

2.9.2 (2024-11-01)

Bug Fixes

v2.9.1

2.9.1 (2024-08-19)

Bug Fixes

  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)

v2.9.0

2.9.0 (2024-04-16)

Features

  • add support for link preload/prefetch (#1043) (ee25e51)
  • added the defaultExport option to generate default and named export together (#1084) (74ae781)

Bug Fixes

v2.8.1

2.8.1 (2024-02-27)

Bug Fixes

  • add nonce if __webpack_nonce__ has been defined (c7f0aee)

v2.8.0

2.8.0 (2024-02-01)

Features

  • added the beforeTagInsert hook (#1054) (6313bf6)
  • support named exports with any characters (b656c5c)

v2.7.7

2.7.7 (2024-01-10)

... (truncated)

Changelog

Sourced from mini-css-extract-plugin's changelog.

2.9.2 (2024-11-01)

Bug Fixes

2.9.1 (2024-08-19)

Bug Fixes

  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)

2.9.0 (2024-04-16)

Features

  • add support for link preload/prefetch (#1043) (ee25e51)
  • added the defaultExport option to generate default and named export together (#1084) (74ae781)

Bug Fixes

2.8.1 (2024-02-27)

Bug Fixes

  • add nonce if __webpack_nonce__ has been defined (c7f0aee)

2.8.0 (2024-02-01)

Features

  • added the beforeTagInsert hook (#1054) (6313bf6)
  • support named exports with any characters (b656c5c)

2.7.7 (2024-01-10)

Bug Fixes

  • add ';' to import media queries (#1051) (98acf2b)
  • add ChunkLoadError name to chunk loading error (#1073) (e3f8375)
  • adding media, supports and layer for external import (#1072) (60c5331)

... (truncated)

Commits

Updates ol from 5.3.3 to 10.4.0

Release notes

Sourced from ol's releases.

v10.4.0

With more than 40 pull requests, the 10.4 release brings performance improvements, bug fixes, better TypeScript generics and new features. New features include a convenience Image layer loader for debugging MapServer map files using the MapServer CGI API, and an experimental WebGLVectorTile layer.

Upgrade notes

Deprecation of ol/layer/WebGLPoints

Use ol/layer/WebGLVector instead. Besides rendering points it will also render lines and polygons. In most cases this is a drop-in replacement. To use filtering the style and filter have to be in a nested object.

// Before
new WebGLPointsLayer({
  filter: ['between', ['get', 'year'], ['var', 'minYear'], ['var', 'maxYear']],
  style: {
    'circle-radius': 8,
    'circle-fill-color': 'blue',
  },
  source: vectorSource,
})
// After
new WebGLVectorLayer({
style: [{
filter: ['between', ['get', 'year'], ['var', 'minYear'], ['var', 'maxYear']],
style: {
'circle-radius': 8,
'circle-fill-color': 'blue',
},
}],
source: vectorSource,
})

ol/style/webgl module removal

WebGL renderers used to rely on the WebGLStyle type in the ol/style/webgl module. This is not the case anymore, all renderers now rely on FlatStyle from ol/style/flat.

-import type { WebGLStyle } from 'ol/style/webgl';
+import type { FlatStyle } from 'ol/style/flat';

ol-mapbox-style compatibility

This version of OpenLayers is only compatible with [email protected] or higher.

Returning false from a one-time listener added with once

Returning false from the listener function will now stop propagation, when the listener is added with once. Previously this only worked with the on method.

... (truncated)

Commits
  • 85219a8 Updates for the 10.4.0 release
  • b8306d3 Merge pull request #16591 from geographika/mapserver-source
  • 2262a6a Fix typo
  • b79ccdf Update comments
  • 7549ac6 Update test/browser/spec/ol/source/mapserver.test.js
  • 9b358c6 Update file names and title to include CGI
  • 5590f98 Remove map from test and test all querystring parameters are set correctly
  • 698c82e Update tests
  • c7a99bf Add mapserver.js
  • b8a98df Add createLoader function for MapServer layers with example and tests
  • Additional commits viewable in compare view

Updates sass from 1.32.13 to 1.85.1

Release notes

Sourced from sass's releases.

Dart Sass 1.85.1

To install Sass 1.85.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.

See the full changelog for changes in earlier releases.

Dart Sass 1.85.0

To install Sass 1.85.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No longer fully trim redundant selectors generated by @extend. This caused unacceptable performance issues for certain heavy users of @extend. We'll try to find a more performant way to accomplish it in the future.

See the full changelog for changes in earlier releases.

Dart Sass 1.83.4

To install Sass 1.83.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.83.3

To install Sass 1.83.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.83.2

To install Sass 1.83.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.85.1

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.

1.85.0

  • No longer fully trim redundant selectors generated by @extend. This caused unacceptable performance issues for certain heavy users of @extend. We'll try to find a more performant way to accomplish it in the future.

1.84.0

  • Allow newlines in whitespace in the indented syntax.

  • Potentially breaking bug fix: Selectors with unmatched brackets now always produce a parser error. Previously, some edge cases like [foo#{"]:is(bar"}) {a: b} would compile without error, but this was an unintentional bug.

  • Fix a bug in which various Color Level 4 functions weren't allowed in plain CSS.

  • Fix the error message for @extend without a selector and possibly other parsing edge-cases in contexts that allow interpolation.

Embedded Host

  • Fixed the implementation of the SassBoolean type to adhere to the spec, now using a class instead of an interface.

1.83.4

  • No user-visible changes.

1.83.3

  • No user-visible changes.

1.83.2

  • Properly display deprecation IDs for the JS Sass API.

  • Don't display deprecation IDs for user-defined deprecations.

1.83.1

  • Fix a bug where --quiet-deps would get deactivated for @content blocks, even when those blocks were entirely contained within dependencies.

... (truncated)

Commits

Updates sass-loader from 11.1.1 to 16.0.5

Release notes

Sourced from sass-loader's releases.

v16.0.5

16.0.5 (2025-02-14)

Bug Fixes

  • allow to import CSS using @use with css extension (#1254) (3352e49)

v16.0.4

16.0.4 (2024-12-04)

Bug Fixes

  • include sources map сontent for modern api by default (#1250) (70a10ff)

v16.0.3

16.0.3 (2024-11-01)

Bug Fixes

  • modern-compiler: dispose redundant compilers (#1245) (004ed38)

v16.0.2

16.0.2 (2024-09-20)

Bug Fixes

v16.0.1

16.0.1 (2024-08-19)

Bug Fixes

  • generate correct sourceMaps for modern-compiler api (#1228) (f862f7a)

v16.0.0

16.0.0 (2024-07-26)

⚠ BREAKING CHANGES

  • use modern Sass JS API by default for sass and sass-embedded

[!WARNING]

The sass options are different for the legacy (before) and modern APIs. Please look at docs how to migrate to the modern options.

... (truncated)

Changelog

Sourced from sass-loader's changelog.

16.0.5 (2025-02-14)

Bug Fixes

  • allow to import CSS using @use with css extension (#1254) (3352e49)

16.0.4 (2024-12-04)

Bug Fixes

  • include sources map сontent for modern api by default (#1250) (70a10ff)

16.0.3 (2024-11-01)

Bug Fixes

  • modern-compiler: dispose redundant compilers (#1245) (004ed38)

16.0.2 (2024-09-20)

Bug Fixes

16.0.1 (2024-08-19)

Bug Fixes

  • generate correct sourceMaps for modern-compiler api (#1228) (f862f7a)

16.0.0 (2024-07-26)

⚠ BREAKING CHANGES

  • use modern Sass JS API by default for sass and sass-embedded

[!WARNING]

The sass options are different for the legacy (before) and modern APIs. Please look at docs how to migrate to the modern options. Legacy options - https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/ Modern options - https://sass-lang.com/documentation/js-api/interfaces/options/

To return to the previous logic use:

</tr></table> 

... (truncated)

Commits

Updates ts-loader from 9.4.4 to 9.5.2

Release notes

Sourced from ts-loader's releases.

v9.5.2

This release is actually v9.5.2 but due to a problem with the initial release workflow we incremented to v9.5.3

v9.5.1

v9.5.0

Changelog

Sourced from ts-loader's changelog.

9.5.2

9.5.1

9.5.0

Commits

Updates typescript from 4.9.5 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

... (truncated)

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • Additional commits viewable in compare view

Updates vue from 2.7.14 to 3.5.13

Release notes

Sourced from vue's releases.

v3.5.13

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.12

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.11

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.10

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.9

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.8

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.7

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.6

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.5

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.4

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.3

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.2

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.1

For stable releases, please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vue's changelog.

3.5.13 (2024-11-15)

Bug Fixes

  • compiler-core: handle v-memo + v-for with functional key (#12014) (99009ee), closes #12013
  • compiler-dom: properly stringify template string style (#12392) (2d78539), closes #12391
  • custom-element: avoid triggering mutationObserver when relecting props (352bc88), closes #12214 #12215
  • deps: update dependency postcss to ^8.4.48 (#12356) (b5ff930)
  • hydration: the component vnode's el should be updated when a mismatch occurs. (#12255) (a20a4cb), closes #12253
  • reactiivty: avoid unnecessary watcher effect removal from inactive scope (2193284), closes #5783 #5806
  • reactivity: release nested effects/scopes on effect scope stop (#12373) (bee2f5e), closes #12370
  • runtime-dom: set css vars before user onMounted hooks (2d5c5e2), closes #11533
  • runtime-dom: set css vars on update to handle child forcing reflow in onMount (#11561) (c4312f9)
  • ssr: avoid updating subtree of async component if it is resolved (#12363) (da7ad5e), closes #12362
  • ssr: ensure v-text updates correctly with custom directives in SSR output (#12311) (1f75d4e), closes #12309
  • ssr: handle initial selected state for select with v-model + v-for option (#12399) (4f8d807), closes #12395
  • teleport: handle deferred teleport update before mounted (#12168) (

Bumps the npm group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/c3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/c3) | `0.7.8` | `0.7.11` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `15.14.9` | `22.13.8` |
| [@types/stripe-v3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/stripe-v3) | `3.1.29` | `3.1.33` |
| [@types/uikit](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uikit) | `3.14.0` | `3.14.5` |
| [css-loader](https://github.com/webpack-contrib/css-loader) | `5.2.7` | `7.1.2` |
| [d3-scale-chromatic](https://github.com/d3/d3-scale-chromatic) | `3.0.0` | `3.1.0` |
| [@types/d3-scale-chromatic](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/d3-scale-chromatic) | `3.0.0` | `3.1.0` |
| [jquery](https://github.com/jquery/jquery) | `3.7.0` | `3.7.1` |
| [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) | `1.6.2` | `2.9.2` |
| [ol](https://github.com/openlayers/openlayers) | `5.3.3` | `10.4.0` |
| [sass](https://github.com/sass/dart-sass) | `1.32.13` | `1.85.1` |
| [sass-loader](https://github.com/webpack-contrib/sass-loader) | `11.1.1` | `16.0.5` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.4.4` | `9.5.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.9.5` | `5.8.2` |
| [vue](https://github.com/vuejs/core) | `2.7.14` | `3.5.13` |
| [vue-loader](https://github.com/vuejs/vue-loader) | `15.10.1` | `17.4.2` |
| [vue-multiselect](https://github.com/shentao/vue-multiselect) | `2.1.7` | `3.2.0` |
| [vue-template-compiler](https://github.com/vuejs/vue) | `2.7.14` | `2.7.16` |
| [webpack](https://github.com/webpack/webpack) | `5.94.0` | `5.98.0` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `4.10.0` | `6.0.1` |



Updates `@types/c3` from 0.7.8 to 0.7.11
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/c3)

Updates `@types/node` from 15.14.9 to 22.13.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/stripe-v3` from 3.1.29 to 3.1.33
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/stripe-v3)

Updates `@types/uikit` from 3.14.0 to 3.14.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/uikit)

Updates `css-loader` from 5.2.7 to 7.1.2
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-loader@v5.2.7...v7.1.2)

Updates `d3-scale-chromatic` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/d3/d3-scale-chromatic/releases)
- [Commits](d3/d3-scale-chromatic@v3.0.0...v3.1.0)

Updates `@types/d3-scale-chromatic` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/d3-scale-chromatic)

Updates `jquery` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/jquery/jquery/releases)
- [Changelog](https://github.com/jquery/jquery/blob/main/changelog.md)
- [Commits](jquery/jquery@3.7.0...3.7.1)

Updates `mini-css-extract-plugin` from 1.6.2 to 2.9.2
- [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/mini-css-extract-plugin@v1.6.2...v2.9.2)

Updates `ol` from 5.3.3 to 10.4.0
- [Release notes](https://github.com/openlayers/openlayers/releases)
- [Commits](openlayers/openlayers@v5.3.3...v10.4.0)

Updates `sass` from 1.32.13 to 1.85.1
- [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.32.13...1.85.1)

Updates `sass-loader` from 11.1.1 to 16.0.5
- [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
- [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/sass-loader@v11.1.1...v16.0.5)

Updates `ts-loader` from 9.4.4 to 9.5.2
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v9.4.4...v9.5.2)

Updates `typescript` from 4.9.5 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v4.9.5...v5.8.2)

Updates `vue` from 2.7.14 to 3.5.13
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.13)

Updates `vue-loader` from 15.10.1 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@v15.10.1...v17.4.2)

Updates `vue-multiselect` from 2.1.7 to 3.2.0
- [Release notes](https://github.com/shentao/vue-multiselect/releases)
- [Commits](shentao/vue-multiselect@v2.1.7...v3.2.0)

Updates `vue-template-compiler` from 2.7.14 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.14...v2.7.16)

Updates `webpack` from 5.94.0 to 5.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.94.0...v5.98.0)

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

---
updated-dependencies:
- dependency-name: "@types/c3"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@types/stripe-v3"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/uikit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: css-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: d3-scale-chromatic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/d3-scale-chromatic"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: jquery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: mini-css-extract-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ol
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: sass-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ts-loader
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue-multiselect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue-template-compiler
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: webpack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: webpack-cli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 1, 2025
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.

0 participants