OpenShock / WebUI

The current frontend of OpenShock, to be retired soonTM
https://openshock.app
GNU Affero General Public License v3.0
5 stars 5 forks source link

build(deps): bump the npm-dependencies group with 16 updates #115

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 7 months ago

Bumps the npm-dependencies group with 16 updates:

Package From To
@imengyu/vue3-context-menu 1.3.3 1.3.5
@microsoft/signalr 7.0.12 8.0.0
@sentry/vue 7.75.1 7.88.0
axios 1.5.1 1.6.2
bootstrap-vue-next 0.14.10 0.15.5
core-js 3.33.1 3.34.0
esp-web-tools 9.4.0 9.4.3
@babel/core 7.23.2 7.23.6
@babel/preset-env 7.23.2 7.23.6
@fortawesome/fontawesome-svg-core 6.4.2 6.5.1
@fortawesome/free-brands-svg-icons 6.4.2 6.5.1
@fortawesome/free-regular-svg-icons 6.4.2 6.5.1
@fortawesome/free-solid-svg-icons 6.4.2 6.5.1
html-webpack-plugin 5.5.3 5.5.4
sass 1.69.4 1.69.5
vue-loader 17.3.0 17.3.1

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

Commits


Updates @microsoft/signalr from 7.0.12 to 8.0.0

Release notes

Sourced from @​microsoft/signalr's releases.

.NET 8.0.0

Release

.NET 8.0 RC 2

Release

.NET 8.0 RC 1

Release

.NET 8.0 Preview 7

Release

.NET 8.0 Preview 6

Release

.NET 8.0 Preview 5

Release

.NET 8.0 Preview 4

Release

.NET 8.0 Preview 3

Release

.NET 8.0 Preview 2

Release

.NET 8.0 Preview 1

Release

.NET 7.0.14

Release

What's Changed

Full Changelog: https://github.com/dotnet/aspnetcore/compare/v7.0.13...v7.0.14

.NET 7.0.13

Release

Commits
  • 3f1acb5 Merged PR 34970: [internal/release/8.0] Update dependencies from dnceng/inter...
  • 3caebba Merged PR 34962: [internal/release/8.0] Update dependencies from dnceng/inter...
  • c608ee3 Merge in 'release/8.0' changes
  • 9506f5a Quarantine ConnectionClosedWithoutActiveRequestsOrGoAwayFIN (#51771)
  • c8270da Merge in 'release/8.0' changes
  • 892b10b Remove selenium-standalone; update Selenium.WebDriver (#51775)
  • c26c6ca Merged PR 34926: [internal/release/8.0] Update dependencies from dnceng/inter...
  • 43bcd57 Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-ef...
  • 4753bec [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-runtime
  • 4f7f2fd [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-efcore
  • Additional commits viewable in compare view


Updates @sentry/vue from 7.75.1 to 7.88.0

Release notes

Sourced from @​sentry/vue's releases.

7.88.0

Important Changes

  • feat(browser): Add browser metrics sdk (#9794)

The release adds alpha support for Sentry developer metrics in the Browser SDKs (@sentry/browser and related framework SDKs). Via the newly introduced APIs, you can now flush metrics directly to Sentry.

To enable capturing metrics, you first need to add the MetricsAggregator integration.

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    new Sentry.metrics.MetricsAggregator(),
  ],
});

Then you'll be able to add counters, sets, distributions, and gauges under the Sentry.metrics namespace.

// Add 4 to a counter named `hits`
Sentry.metrics.increment('hits', 4);

// Add 2 to gauge named parallel_requests, tagged with happy: "no" Sentry.metrics.gauge('parallel_requests', 2, { tags: { happy: 'no' } });

// Add 4.6 to a distribution named response_time with unit seconds Sentry.metrics.distribution('response_time', 4.6, { unit: 'seconds' });

// Add 2 to a set named valuable.ids Sentry.metrics.set('valuable.ids', 2);

In a future release we'll add support for server runtimes (Node, Deno, Bun, Vercel Edge, etc.)

  • feat(deno): Optionally instrument Deno.cron (#9808)

This releases add support for instrumenting Deno cron's with Sentry cron monitors. This requires v1.38 of Deno run with the --unstable flag and the usage of the DenoCron Sentry integration.

// Import from the Deno registry
import * as Sentry from "https://deno.land/x/sentry/index.mjs";

Sentry.init({ dsn: 'DSN', integrations: [ new Sentry.DenoCron(), ], }); </tr></table>

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

7.88.0

Important Changes

  • feat(browser): Add browser metrics sdk (#9794)

The release adds alpha support for Sentry developer metrics in the Browser SDKs (@sentry/browser and related framework SDKs). Via the newly introduced APIs, you can now flush metrics directly to Sentry.

To enable capturing metrics, you first need to add the MetricsAggregator integration.

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    new Sentry.metrics.MetricsAggregator(),
  ],
});

Then you'll be able to add counters, sets, distributions, and gauges under the Sentry.metrics namespace.

// Add 4 to a counter named `hits`
Sentry.metrics.increment('hits', 4);

// Add 2 to gauge named parallel_requests, tagged with happy: &quot;no&quot; Sentry.metrics.gauge('parallel_requests', 2, { tags: { happy: 'no' } });

// Add 4.6 to a distribution named response_time with unit seconds Sentry.metrics.distribution('response_time', 4.6, { unit: 'seconds' });

// Add 2 to a set named valuable.ids Sentry.metrics.set('valuable.ids', 2);

In a future release we'll add support for server runtimes (Node, Deno, Bun, Vercel Edge, etc.)

  • feat(deno): Optionally instrument Deno.cron (#9808)

This releases add support for instrumenting Deno cron's with Sentry cron monitors. This requires v1.38 of Deno run with the --unstable flag and the usage of the DenoCron Sentry integration.

// Import from the Deno registry
import * as Sentry from "https://deno.land/x/sentry/index.mjs";

Sentry.init({ dsn: 'DSN', integrations: [ new Sentry.DenoCron(), ], </tr></table>

... (truncated)

Commits


Updates axios from 1.5.1 to 1.6.2

Release notes

Sourced from axios's releases.

Release v1.6.2

Release notes:

Features

  • withXSRFToken: added withXSRFToken option as a workaround to achieve the old withCredentials behavior; (#6046) (cff9967)

PRs

  • feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old `withCredentials` behavior; ( #6046 )

📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour. 
You should now use withXSRFToken along with withCredential to get the old behavior.
This functionality is considered as a fix.

Contributors to this release

Release v1.6.1

Release notes:

Bug Fixes

  • formdata: fixed content-type header normalization for non-standard browser environments; (#6056) (dd465ab)
  • platform: fixed emulated browser detection in node.js environment; (#6055) (3dc8369)

Contributors to this release

Release v1.6.0

Release notes:

Bug Fixes

  • CSRF: fixed CSRF vulnerability CVE-2023-45857 (#6028) (96ee232)
  • dns: fixed lookup function decorator to work properly in node v20; (#6011) (5aaff53)
  • types: fix AxiosHeaders types; (#5931) (a1c8ad0)

PRs

  • CVE 2023 45857 ( #6028 )

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.6.2 (2023-11-14)

Features

  • withXSRFToken: added withXSRFToken option as a workaround to achieve the old withCredentials behavior; (#6046) (cff9967)

PRs

  • feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old `withCredentials` behavior; ( #6046 )

📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour. 
You should now use withXSRFToken along with withCredential to get the old behavior.
This functionality is considered as a fix.

Contributors to this release

1.6.1 (2023-11-08)

Bug Fixes

  • formdata: fixed content-type header normalization for non-standard browser environments; (#6056) (dd465ab)
  • platform: fixed emulated browser detection in node.js environment; (#6055) (3dc8369)

Contributors to this release

PRs

  • feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old `withCredentials` behavior; ( #6046 )

📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour. 
You should now use withXSRFToken along with withCredential to get the old behavior.
This functionality is considered as a fix.

1.6.0 (2023-10-26)

Bug Fixes

  • CSRF: fixed CSRF vulnerability CVE-2023-45857 (#6028) (96ee232)

... (truncated)

Commits
  • b3be365 chore(release): v1.6.2 (#6082)
  • 8739acb chore(ci): removed redundant release action; (#6081)
  • bfa9c30 chore(docs): fix outdated grunt to npm scripts (#6073)
  • a2b0fb3 chore(docs): update README.md (#6048)
  • b12a608 chore(ci): removed paths-ignore filter; (#6080)
  • 0c9d886 chore(ci): reworked ignoring files logic; (#6079)
  • 30873ee chore(ci): add paths-ignore config to testing action; (#6078)
  • cff9967 feat(withXSRFToken): added withXSRFToken option as a workaround to achieve th...
  • 7009715 chore(ci): fixed release notification action; (#6064)
  • 7144f10 chore(ci): fixed release notification action; (#6063)
  • Additional commits viewable in compare view


Updates bootstrap-vue-next from 0.14.10 to 0.15.5

Changelog

Sourced from bootstrap-vue-next's changelog.

0.15.5 (2023-11-23)

Features

  • BDropdown: add boundaryPadding prop (efc1ce9)
  • BDropdown: overflow auto and sizing middleware to limit the size to visible viewport (efc1ce9)
  • BPopover: add boundary prop (efc1ce9)
  • BPopover: add boundaryPadding prop (efc1ce9)
  • BPopover: add peristent option to popover (a195b5d)
  • BPopover: overflow auto and sizing middleware to limit the size to visible viewport (efc1ce9)

Bug Fixes

  • BDropdown: fix dropup prop ignored (efc1ce9)
  • BPopover: default offset has changed in bootstrap css (a195b5d)
  • BPopover: hide not working (efc1ce9)

0.15.4 (2023-11-22)

Bug Fixes

0.15.3 (2023-11-22)

Bug Fixes

  • BFormCheckboxGroup: updates to modelValue being recursive fixes #1623 (7991073)

0.15.2 (2023-11-22)

Features

Bug Fixes

  • BTable: current page not working causing no pagination fixes #1613 (9f2ef8b)

Performance Improvements

  • BImg: improve blank img resolution (84ce349)

... (truncated)

Commits


Updates core-js from 3.33.1 to 3.34.0

Changelog

Sourced from core-js's changelog.

3.34.0 - 2023.12.06
3.33.3 - 2023.11.20
3.33.2 - 2023.10.31
  • Simplified structuredClone polyfill, avoided second tree pass in cases of transferring
  • Added support of SuppressedError to structuredClone polyfill
  • Removed unspecified unnecessary ArrayBuffer and DataView dependencies of structuredClone lack of which could cause errors in some entries in IE10-
  • Fixed handling of fractional number part in Number.fromString
  • Compat data improvements:
Commits
  • bc16b93 3.34.0
  • 19bd058 fix RegExp named capture groups object prototype
  • bedf292 relax some specific cases of Number.fromString validation before clarificat...
  • 27ce99b fix an-uint8-array validation with polyfilled typed arrays
  • 98f3276 fix a web incompatibility issue of Iterator helpers proposal
  • d27aa04 some stylistic changes
  • 6ea90d5 add some tests
  • bcb3297 add some entries
  • a75c128 add .fromBase64 method
  • 319c69a add .toBase64 method
  • Additional commits viewable in compare view


Updates esp-web-tools from 9.4.0 to 9.4.3

Release notes

Sourced from esp-web-tools's releases.

9.4.3

What's Changed

  • Add small delay when resetting because USB JTAG, take 2 (#444) @​kbx81

9.4.2

What's Changed

  • Add small delay when resetting because USB JTAG (#443) @​kbx81

Dependencies

9.4.1

What's Changed

Dependencies

Commits


Updates @babel/core from 7.23.2 to 7.23.6

Release notes

Sourced from @​babel/core's releases.

v7.23.6 (2023-12-11)

Thanks @​martinez-hugo and @​odinho for your first pull requests!

:eyeglasses: Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

:bug: Bug Fix

  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #16161 Ensure the [[@@toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript

:microscope: Output optimization

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

Committers: 7

v7.23.5 (2023-11-29)

:eyeglasses: Spec Compliance

  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators

:bug: Bug Fix

  • babel-traverse, babel-types

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.23.6 (2023-12-11)

:eyeglasses: Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

:bug: Bug Fix

  • babel-generator
  • babel-helpers, babel-plugin-proposal-explicit-resource-management
  • babel-plugin-proposal-decorators, babel-plugin-transform-class-properties
    • #16161 Ensure the [[@@toPrimitive]] call of a decorated class member key is invoked once (@​JLHwung)
    • #16148 Support named evaluation for decorated anonymous class exp (@​JLHwung)
  • babel-plugin-transform-for-of, babel-preset-env
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-plugin-transform-typescript

:microscope: Output optimization

  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-helpers, babel-plugin-proposal-decorators

v7.23.5 (2023-11-29)

:eyeglasses: Spec Compliance

  • babel-plugin-proposal-decorators
  • babel-helpers, babel-plugin-proposal-decorators

:bug: Bug Fix

  • babel-traverse, babel-types
  • babel-plugin-transform-classes
  • babel-generator
  • babel-helpers
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties, babel-plugin-transform-typescript
  • babel-generator, babel-plugin-transform-modules-commonjs, babel-plugin-transform-parameters, babel-plugin-transform-typescript, babel-traverse
  • babel-eslint-plugin

... (truncated)

Commits


Updates @babel/preset-env from 7.23.2 to 7.23.6

Release notes

Sourced from @​babel/preset-env's releases.

v7.23.6 (2023-12-11)

Thanks @​martinez-hugo and @​odinho for your first pull requests!

:eyeglasses: Spec Compliance

  • babel-generator, babel-parser, babel-types
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-types

:bug: Bug Fix

  • babel-generator
    • #16166 fix: Correctly indenting when... _Description has been truncated_
dependabot[bot] commented 6 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.