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 17 updates #117

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the npm-dependencies group with 17 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.91.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
vue 3.3.7 3.3.13
@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.6.0
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.91.0

Release notes

Sourced from @​sentry/vue's releases.

7.91.0

Important Changes

  • feat: Add server runtime metrics aggregator (#9894)

The release adds alpha support for Sentry developer metrics in the server runtime SDKs (@sentry/node, @sentry/deno, @sentry/nextjs server-side, etc.). Via the newly introduced APIs, you can now flush metrics directly to Sentry.

To enable capturing metrics, you first need to add the metricsAggregator experiment to your Sentry.init call.

Sentry.init({
  dsn: '__DSN__',
  _experiments: {
    metricsAggregator: true,
  },
});

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 type: "a" Sentry.metrics.gauge('parallel_requests', 2, { tags: { type: 'a' } });

// 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);

  • feat(node): Rework ANR to use worker script via an integration (#9945)

The ANR tracking integration for Node has been reworked to use an integration. ANR tracking now requires a minimum Node version of 16 or higher. Previously you had to call Sentry.enableANRDetection before running your application, now you can simply add the Anr integration to your Sentry.init call.

import * as Sentry from '@sentry/node';

Sentry.init({ dsn: 'https://public@dsn.ingest.sentry.io/1337', integrations: [new Sentry.Integrations.Anr({ captureStackTrace: true, anrThreshold: 200 })], });

Other Changes

  • feat(breadcrumbs): Send component names on UI breadcrumbs (#9946)

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

7.91.0

Important Changes

  • feat: Add server runtime metrics aggregator (#9894)

The release adds alpha support for Sentry developer metrics in the server runtime SDKs (@sentry/node, @sentry/deno, @sentry/nextjs server-side, etc.). Via the newly introduced APIs, you can now flush metrics directly to Sentry.

To enable capturing metrics, you first need to add the metricsAggregator experiment to your Sentry.init call.

Sentry.init({
  dsn: '__DSN__',
  _experiments: {
    metricsAggregator: true,
  },
});

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 type: "a" Sentry.metrics.gauge('parallel_requests', 2, { tags: { type: 'a' } });

// 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);

  • feat(node): Rework ANR to use worker script via an integration (#9945)

The ANR tracking integration for Node has been reworked to use an integration. ANR tracking now requires a minimum Node version of 16 or higher. Previously you had to call Sentry.enableANRDetection before running your application, now you can simply add the Anr integration to your Sentry.init call.

import * as Sentry from '@sentry/node';

Sentry.init({ dsn: 'https://public@dsn.ingest.sentry.io/1337', integrations: [new Sentry.Integrations.Anr({ captureStackTrace: true, anrThreshold: 200 })], });

Other Changes

... (truncated)

Commits
  • 4c19ee3 release: 7.91.0
  • 17f490e Merge pull request #9965 from getsentry/prepare-release/7.91.0
  • f08bec8 meta(changelog): Update changelog for 7.91.0
  • cf412d9 fix(core): Rethrow caught promise rejections in startSpan, `startSpanManual...
  • 948e7d3 feat(sveltekit): Add options to configure fetch instrumentation script for CS...
  • f56219a build: Fix size limit (#9967)
  • 7f8eca7 feat: Add server runtime metrics aggregator (#9894)
  • 5d16aae chore(biome): enable noUnusedImports rule (#9895)
  • f819d81 feat(breadcrumbs): Send component names on UI breadcrumbs (#9946)
  • 9a2570b feat(replay): Send component names in replay breadcrumbs (#9947)
  • Additional commits viewable in compare view


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 'withXSRFToken' 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 'withXSRFToken' 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 'withXSRFToken' 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 vue from 3.3.7 to 3.3.13

Release notes

Sourced from vue's releases.

v3.3.13

Please refer to CHANGELOG.md for details.

v3.3.12

Please refer to CHANGELOG.md for details.

v3.3.11

Please refer to CHANGELOG.md for details.

v3.3.10

Please refer to CHANGELOG.md for details.

v3.3.9

Please refer to CHANGELOG.md for details.

v3.3.8

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vue's changelog.

3.3.13 (2023-12-19)

Bug Fixes

  • compiler-core: fix v-on with modifiers on inline expression of undefined (#9866) (bae79dd), closes #9865
  • runtime-dom: cache event handlers by key/modifiers (#9851) (04d2c05), closes #9849
  • types: extract properties from extended collections (#9854) (24b1c1d), closes #9852

3.3.12 (2023-12-16)

Bug Fixes

  • hydration: handle appear transition before patch props (#9837) (e70f4c4), closes #9832
  • sfc/cssVars: fix loss of CSS v-bind variables when setting inline style with string value (#9824) (0a387df), closes #9821
  • ssr: fix suspense hydration of fallback content (#7188) (60415b5)
  • types: add xmlns:xlink to SVGAttributes (#9300) (0d61b42), closes #9299
  • types: fix shallowRef type error (#9839) (9a57158)
  • types: support for generic keyof slots (#8374) (213eba4)

3.3.11 (2023-12-08)

Bug Fixes

  • custom-element: correctly handle number type props in prod (#8989) (d74d364)
  • reactivity: fix mutation on user proxy of reactive Array (6ecbd5c), closes #9742 #9751 #9750
  • runtime-dom: fix width and height prop check condition (5b00286), closes #9762
  • shared: handle Map with symbol keys in toDisplayString (#9731) (364821d), closes #9727
  • shared: handle more Symbol cases in toDisplayString (983d45d)
  • Suspense: properly get anchor when mount fallback vnode (#9770) (b700328), closes #9769
  • types: ref() return type should not be any when initial value is any (#9768) (cdac121)
  • watch: should not fire pre watcher on child component unmount (#7181) (6784f0b), closes #7030

3.3.10 (2023-12-04)

Bug Fixes

  • app: prevent template from being cached between apps with different options (#9724) (ec71585), closes #9618
  • compiler-sfc: avoid passing forEach index to genMap (f12db7f)
  • compiler-sfc: deindent pug/jade templates (6345197), closes #3231 #3842 #7723
  • compiler-sfc: fix :where and :is selector in scoped mode with multiple selectors (#9735) (c3e2c55), closes #9707

... (truncated)

Commits
  • 7c49a9c release: v3.3.13
  • bae79dd fix(compiler-core): fix v-on with modifiers on inline expression of undefined...
  • 24b1c1d fix(types): extract properties from extended collections (#9854)
  • 04d2c05 fix(runtime-dom): cache event handlers by key/modifiers (#9851)
  • 4e7967f release: v3.3.12
  • d0b849a test(types): add test for ref/shallowRef generic casting
  • 9a57158 fix(types): fix shallowRef type error (#9839)
  • e70f4c4 fix(hydration): handle appear transition before patch props (#9837)
  • 0a387df fix(sfc/cssVars): fix loss of CSS v-bind variables when setting inline style ...
  • a6503e3 refactor(types): simplify EmitsToProps types (#9788)
  • Additional commits viewable in compare view


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

dependabot[bot] commented 6 months ago

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