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 with 20 updates #152

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 17, 2024

Bumps the npm group with 20 updates:

Package From To
@types/c3 0.7.8 0.7.11
@types/node 15.14.9 22.4.0
@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.0.3
jquery 3.7.0 3.7.1
mini-css-extract-plugin 1.6.2 2.9.0
ol 5.3.3 10.0.0
sass 1.32.13 1.77.8
sass-loader 11.1.1 16.0.0
ts-loader 9.4.4 9.5.1
typescript 4.9.5 5.5.4
vue 2.7.14 3.4.38
vue-loader 15.10.1 17.4.2
vue-multiselect 2.1.7 3.0.0
vue-template-compiler 2.7.14 2.7.16
webpack 5.88.2 5.93.0
webpack-cli 4.10.0 5.1.4

Updates @types/c3 from 0.7.8 to 0.7.11

Commits

Updates @types/node from 15.14.9 to 22.4.0

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.0.3

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.0

Release notes

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

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)

Bug Fixes

v2.7.6

2.7.6 (2023-05-19)

Bug Fixes

... (truncated)

Changelog

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

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

2.7.6 (2023-05-19)

Bug Fixes

2.7.5 (2023-03-16)

Bug Fixes

... (truncated)

Commits
  • 7cc2789 chore(release): 2.9.0
  • 29f0b91 test: fix (#1096)
  • ee25e51 feat: add support for link preload/prefetch (#1043)
  • 1a56673 fix: avoid reloading all csses when hot load (#1090)
  • e73061d chore: update dependencies to the latest version (#1095)
  • 74ae781 fix: added the defaultExport option to generate default and named export to...
  • 92c7eb3 chore(deps-dev): bump express from 4.18.2 to 4.19.2 (#1093)
  • 51065cc chore(deps-dev): bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#1091)
  • 8bf0ad6 chore(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6 (#1088)
  • 717acf1 chore: upgrade dependencies to latest version (#1086)
  • Additional commits viewable in compare view

Updates ol from 5.3.3 to 10.0.0

Release notes

Sourced from ol's releases.

v10.0.0

10.0.0

The 10.0 release brings several significant improvements, including a new base source for image tile sources with improved performance and simplified code. Flat styles handling has been reworked, removing the need to specify type hints among other internal improvements. In the WebGL renderer, a memory allocation issue has been fixed. For better developer experience, we improved generic types and fixed some issues with types, stabilizing the back and forth on generics in v9.x.

Breaking changes are very minor, so we recommend upgrading to v10.x for all v9.x users.

Backwards incompatible changes

ol/source/VectorTile: getFeaturesInExtent() method moved to ol/layer/VectorTile

The getFeaturesInExtent() method of ol/source/VectorTile has been moved to ol/layer/VectorTile. The signature and behavior have not changed, so all that needs to be done is change code from e.g.

layer.getSource().getFeaturesInExtent(extent);

to

layer.getFeaturesInExtent(extent);
Flat styles: Removal of Type hints in 'get' expressions

For the Canvas renderer, additional arguments to the 'get' call expression now mean access to nested properties or array items. The expression system has been improved so type hints are no longer needed. If you were previously using a type hint in a get expression, you have to change the expression from e.g.

['get', 'foo', 'number[]']

to

['get', 'foo']

Other changes

Removal of the opaque option from all Tile sources

The opaque option was previously used to hint the renderer to perform some optimizations on layers known to be fully opaque. This is no longer needed, and the option has been removed.

List of all changes

See below for a complete list of features and fixes.

... (truncated)

Commits
  • 6734ed6 Updates for the 10.0.0 release
  • 3453374 Merge pull request #16026 from Makio64/main
  • d191503 remove outdated doc
  • b03d512 Merge pull request #16021 from NiclasSchmitz/main
  • 6a831cf Fix cluster geometryFunction return type
  • b214192 Merge pull request #16012 from openlayers/dependabot/npm_and_yarn/rollup-4.19.0
  • 2748213 Merge pull request #16015 from openlayers/dependabot/npm_and_yarn/mocha-10.7.0
  • ca98579 Merge pull request #16014 from openlayers/dependabot/npm_and_yarn/octokit/res...
  • bec3177 Merge pull request #16013 from openlayers/dependabot/npm_and_yarn/typescript-...
  • d43769b Bump mocha from 10.6.0 to 10.7.0
  • Additional commits viewable in compare view

Updates sass from 1.32.13 to 1.77.8

Release notes

Sourced from sass's releases.

Dart Sass 1.77.8

To install Sass 1.77.8, 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.77.5

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

Changes

  • Fully trim redundant selectors generated by @extend.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.4

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

Changes

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.3

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

Changes

Dart API

... (truncated)

Changelog

Sourced from sass's changelog.

1.77.8

  • No user-visible changes.

1.77.7

  • Declarations that appear after nested rules are deprecated, because the semantics Sass has historically used are different from the semantics specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown at-rule values was being preserved in the CSS output, leading to potentially invalid CSS. It's now properly parsed as a silent comment and omitted from the CSS output.

1.77.6

  • Fix a few cases where comments and occasionally even whitespace wasn't allowed between the end of Sass statements and the following semicolon.

1.77.5

  • Fully trim redundant selectors generated by @extend.

1.77.4

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

1.77.3

Dart API

  • Deprecation.duplicateVariableFlags has been deprecated and replaced with Deprecation.duplicateVarFlags to make it consistent with the duplicate-var-flags name used on the command line and in the JS API.

1.77.2

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look like vendor-prefixed functions with special CSS syntax.

... (truncated)

Commits
  • be9c3ac Run Windows ARM64 releases on windows-latest instead (#2275)
  • d4b1939 Run pub in verbose mode on windows-arm64
  • c96b5e2 Fix windows-arm64 release (#2274)
  • 7203d65 Deprecated mixed declarations (#2267)
  • 1edc247 Avoid [this] in Dartdoc comments (#2273)
  • a164889 Enable AOT build for windows-arm64 (#2270)
  • 04b6251 Parse silent comments in _interpolatedDeclarationValue() (#2266)
  • 860eb5a Fix linux-ia32, linux-arm-musl, and windows-arm64 releases (#2265)
  • 7aae1e6 Fix a bug where comments were incorrectly forbidden in some cases (#2264)
  • cf6f9d0 Build AOT releases with native arm64 runners (#2262)
  • Additional commits viewable in compare view

Updates sass-loader from 11.1.1 to 16.0.0

Release notes

Sourced from sass-loader's releases.

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. 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:

module.exports = {
  module: {
    rules: [
      {
        test: /\.s[ac]ss$/i,
        use: [
          "style-loader",
          "css-loader",
          {
            loader: "sass-loader",
            options: {
              api: "legacy",
              // Your options
            },
          },
        ],
      },
    ],
  },
};

Features

  • use modern Sass JS API by default for sass and sass-embedded (10be1ba)

v15.0.0

⚠ BREAKING CHANGES

  • prefer sass-embedded over sass by default (#1211)

Features

... (truncated)

Changelog

Sourced from sass-loader's changelog.

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:

module.exports = {
  module: {
    rules: [
      {
        test: /\.s[ac]ss$/i,
        use: [
          "style-loader",
          "css-loader",
          {
            loader: "sass-loader",
            options: {
              api: "legacy",
              // Your options
            },
          },
        ],
      },
    ],
  },
};

Features

  • use modern Sass JS API by default for sass and sass-embedded (10be1ba)

15.0.0 (2024-07-23)

⚠ BREAKING CHANGES

  • prefer sass-embedded over sass by default (#1211)

Features

... (truncated)

Commits

Updates ts-loader from 9.4.4 to 9.5.1

Release notes

Sourced from ts-loader's releases.

v9.5.1

v9.5.0

Changelog

Sourced from ts-loader's changelog.

9.5.1

9.5.0

Commits

Updates typescript from 4.9.5 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates vue from 2.7.14 to 3.4.38

Release notes

Sourced from vue's releases.

v3.4.38

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

v3.4.37

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

v3.4.36

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

v3.4.35

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

v3.4.34

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

v3.4.33

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

v3.4.32

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

v3.4.31

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

v3.4.30

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

v3.4.29

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

v3.4.28

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

v3.4.27

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

v3.4.26

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vue's changelog.

3.4.38 (2024-08-15)

Bug Fixes

  • build: revert entities to 4.5 to avoid runtime resolution errors (f349af7), closes #11603
  • compiler-core: use ast-based check for function expressions when possible (236cac3), closes #11615
  • compiler-sfc: handle keyof operator with index object (#11581) (74d26db)
  • types: add fallback stub for DOM types when DOM lib is absent (#11598) (4db0085)

3.4.37 (2024-08-08)

Bug Fixes

  • compiler-core: use isProp.arg.loc instead of isProp.loc (#11547) (236fb7a)
  • custom-element: fix custom-element double render on immediate prop change (978ff3c), closes #9885 #11335
  • defineModel: detect changes respect custom getter and setter (#11543) (e042888), closes #11541 #11526 #11527
  • keep-alive: avoid cache suspense comment root (#11479) (a917c05)
  • keep-alive: fix render error in cached is undefined (#11496) (81351dc), closes #11427 #11431
  • Revert "fix(types/ref): allow getter and setter types to be unrelated (#11442)" (b1abac0)
  • Revert "fix(types/ref): correct type inference for nested refs (#11536)" (3a56315)
  • runtime-core: fix warning for missing event handler (#11489) (e359ff0), closes #4803 #8268
  • runtime-core: prioritize using the provides from currentApp in nested createApp (#11502) (7e75de0), closes #11488
    • Note: this change will break inject calls inside Pinia stores that expects to be able to inject provided values from the component using the store. This is expected because the usage is relying on previously incorrect behavior.
  • runtime-dom: apply css vars before mount (#11538) (fdc2a31), closes #11533
  • ssr: ...

    Description has been truncated

Bumps the npm group with 20 updates:

| 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.4.0` |
| [@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.0.3` |
| [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.0` |
| [ol](https://github.com/openlayers/openlayers) | `5.3.3` | `10.0.0` |
| [sass](https://github.com/sass/dart-sass) | `1.32.13` | `1.77.8` |
| [sass-loader](https://github.com/webpack-contrib/sass-loader) | `11.1.1` | `16.0.0` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.4.4` | `9.5.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `4.9.5` | `5.5.4` |
| [vue](https://github.com/vuejs/core) | `2.7.14` | `3.4.38` |
| [vue-loader](https://github.com/vuejs/vue-loader) | `15.10.1` | `17.4.2` |
| [vue-multiselect](https://github.com/suadelabs/vue-multiselect) | `2.1.7` | `3.0.0` |
| [vue-template-compiler](https://github.com/vuejs/vue) | `2.7.14` | `2.7.16` |
| [webpack](https://github.com/webpack/webpack) | `5.88.2` | `5.93.0` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `4.10.0` | `5.1.4` |


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.4.0
- [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.0.3
- [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.0
- [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.0)

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

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

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

Updates `ts-loader` from 9.4.4 to 9.5.1
- [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.1)

Updates `typescript` from 4.9.5 to 5.5.4
- [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.5.4)

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

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.0.0
- [Release notes](https://github.com/suadelabs/vue-multiselect/releases)
- [Commits](https://github.com/suadelabs/vue-multiselect/commits)

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.88.2 to 5.93.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.88.2...v5.93.0)

Updates `webpack-cli` from 4.10.0 to 5.1.4
- [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]@5.1.4)

---
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-patch
  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 Aug 17, 2024
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.

1 participant