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 across 1 directory with 32 updates #149

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the npm-dependencies group with 31 updates in the / directory:

Package From To
@fontsource/poppins 5.0.8 5.0.14
@imengyu/vue3-context-menu 1.3.3 1.4.1
@microsoft/signalr 7.0.12 8.0.0
@sentry/vue 7.75.1 8.7.0
axios 1.5.1 1.7.2
bootstrap-vue-next 0.14.10 0.20.0
copy-webpack-plugin 11.0.0 12.0.2
core-js 3.33.1 3.37.1
esp-web-tools 9.4.0 10.0.1
vue 3.4.15 3.4.27
vue-router 4.2.5 4.3.2
vue-sweetalert2 5.0.5 5.0.10
@babel/core 7.23.2 7.24.6
@babel/preset-env 7.23.2 7.24.6
@fortawesome/fontawesome-svg-core 6.4.2 6.5.2
@fortawesome/free-brands-svg-icons 6.4.2 6.5.2
@fortawesome/free-regular-svg-icons 6.4.2 6.5.2
@fortawesome/free-solid-svg-icons 6.4.2 6.5.2
autoprefixer 10.4.16 10.4.19
bootstrap 5.3.2 5.3.3
css-loader 6.8.1 7.1.2
html-webpack-plugin 5.5.3 5.6.0
mini-css-extract-plugin 2.7.6 2.9.0
postcss-loader 7.3.3 8.1.1
sass 1.69.4 1.77.4
sass-loader 13.3.2 14.2.1
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.91.0
webpack-dev-server 4.15.1 5.0.4

Updates @fontsource/poppins from 5.0.8 to 5.0.14

Commits


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

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

Release

.NET 7.0.18

Release

.NET 7.0.17

Release

.NET 7.0.16

Release

.NET 7.0.15

Release

.NET 7.0.14

Release

What's Changed

... (truncated)

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 8.7.0

Release notes

Sourced from @​sentry/vue's releases.

8.7.0

Important Changes

  • feat(react): Add TanStack Router integration (#12095)

    This release adds instrumentation for TanStack router with a new tanstackRouterBrowserTracingIntegration in the @sentry/react SDK:

    import * as Sentry from '@sentry/react';
    import { createRouter } from '@tanstack/react-router';
    

    const router = createRouter({ // Your router options... });

    Sentry.init({ dsn: 'PUBLIC_DSN', integrations: [Sentry.tanstackRouterBrowserTracingIntegration(router)], tracesSampleRate: 1.0, });

Other Changes

  • fix(nextjs): Do not hide sourceMappingURL comment on client when nextConfig.productionBrowserSourceMaps: true is set (#12278)

8.6.0

8.6.0 did not release fully, so this 8.7.0 also includes changes from that release.

Important Changes

  • feat(metrics): Add timings method to metrics (#12226)

    This introduces a new method, metrics.timing(), which can be used in two ways:

    1. With a numeric value, to simplify creating a distribution metric. This will default to second as unit:
    Sentry.metrics.timing('myMetric', 100);
    
    1. With a callback, which will wrap the duration of the callback. This can accept a sync or async callback. It will create an inactive span around the callback and at the end emit a metric with the duration of the span in seconds:
    const returnValue = Sentry.metrics.timing('myMetric', measureThisFunction);
    

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

8.7.0

Important Changes

  • feat(react): Add TanStack Router integration (#12095)

    This release adds instrumentation for TanStack router with a new tanstackRouterBrowserTracingIntegration in the @sentry/react SDK:

    import * as Sentry from '@sentry/react';
    import { createRouter } from '@tanstack/react-router';
    

    const router = createRouter({ // Your router options... });

    Sentry.init({ dsn: 'PUBLIC_DSN', integrations: [Sentry.tanstackRouterBrowserTracingIntegration(router)], tracesSampleRate: 1.0, });

Other Changes

  • fix(nextjs): Do not hide sourceMappingURL comment on client when nextConfig.productionBrowserSourceMaps: true is set (#12278)

8.6.0

Important Changes

  • feat(metrics): Add timings method to metrics (#12226)

    This introduces a new method, metrics.timing(), which can be used in two ways:

    1. With a numeric value, to simplify creating a distribution metric. This will default to second as unit:
    Sentry.metrics.timing('myMetric', 100);
    
    1. With a callback, which will wrap the duration of the callback. This can accept a sync or async callback. It will create an inactive span around the callback and at the end emit a metric with the duration of the span in seconds:
    const returnValue = Sentry.metrics.timing('myMetric', measureThisFunction);
    

... (truncated)

Commits
  • 41b8f79 release: 8.7.0
  • d4aaa3a Merge pull request #12280 from getsentry/prepare-release/8.7.0
  • 9b09cb2 Merge branch 'master' into prepare-release/8.7.0
  • 4aaaba7 meta: Add Changelog entry for 8.7.0
  • d9562b9 fix(nextjs): Do not hide sourceMappingURL comment on client when `nextConfi...
  • 0d1093d feat(react): Add TanStack Router integration (#12095)
  • bbe7be5 build: Remove @types/rimraf and some rimraf usage (#12276)
  • 81e0fd1 build: Bump node to 18.20.3 (#12271)
  • 264675d Merge pull request #12272 from getsentry/prepare-release/8.6.00
  • bf0a138 test(react): Update react-create-hash-router E2E test (#12262)
  • Additional commits viewable in compare view


Updates axios from 1.5.1 to 1.7.2

Release notes

Sourced from axios's releases.

Release v1.7.2

Release notes:

Bug Fixes

Contributors to this release

Release v1.7.1

Release notes:

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

Release v1.7.0

Release notes:

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

Release v1.7.0-beta.2

Release notes:

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

Release v1.7.0-beta.1

Release notes:

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.2 (2024-05-21)

Bug Fixes

Contributors to this release

1.7.1 (2024-05-20)

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

1.7.0 (2024-05-19)

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

1.7.0-beta.2 (2024-05-19)

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

... (truncated)

Commits
  • 0e4f9fa chore(release): v1.7.2 (#6414)
  • 4f79aef fix(fetch): enhance fetch API detection; (#6413)
  • 67d1373 chore(release): v1.7.1 (#6411)
  • 733f15f fix(fetch): fixed ReferenceError issue when TextEncoder is not available in t...
  • 3041c61 [Release] v1.7.0 (#6408)
  • 18b13cb chore(docs): add fetch adapter docs; (#6407)
  • e62099b fix(fetch): fixed a possible memory leak in the AbortController for the strea...
  • b49aa8e chore(release): v1.7.0-beta.2 (#6403)
  • d57f03a chore(ci): bump create-pull-request version to fix a bug; (#6405)
  • 097b0d1 chore(ci): add tag resolution for npm releases based on package version; (#6404)
  • Additional commits viewable in compare view


Updates bootstrap-vue-next from 0.14.10 to 0.20.0

Changelog

Sourced from bootstrap-vue-next's changelog.

0.20.0 (2024-06-02)

⚠ BREAKING CHANGES

  • BFormFile: remove props placement and browser
  • BFormFile: remove unneeded input-group div

Features

  • BDropdown: add skipWrapper and wrapperClass props (bb5cdc5)
  • BFormFile: add option to remove the default button and/or styles (14534d1)

Bug Fixes

  • BDropdown: fix wrapper class, skip wrapper in input-group (bb5cdc5)
  • BFormFile: remove props placement and browser (14534d1)
  • BFormFile: remove unneeded input-group div (14534d1)
  • BOverlay: fix noWrap (#1933) (55672ff)
  • BTable: fixed aria-sort for th gets changed back to 'none' when no longer sorting (379b838)

0.19.0 (2024-05-26)

⚠ BREAKING CHANGES

  • Bimg: converge props start, end, & center into single "placement" prop
  • BCardImg: converge placment props into single "placement" prop. top, bottom, start,end, center => placement
  • BLink: remove prop append -- vue router deprecation
  • BTable: remove prop noSortReset, use mustSort ... by default sortability can be reset by clicking (3) times [asc => desc => undefined => asc...]
  • BAvatar: remove icon prop - use svg in slot if needed
  • BBadge: revamp, remove prop textIndicator -- use prop placement (bootstrap also says parent elements should have position-relative class... Not sure how much this affects things)
  • BCard: remove prop overlay, add it into the imgPlacement prop (imgPlacement="overlay")
  • BAvatar: remove props badgeTop, badgeStart -- use badgePlacement instead
  • BAvatar: remove prop badgeOffset, no alternative added

Features

  • BAvatar: add prop badgeDotIndicator (cf9b942)
  • BAvatar: add prop badgePill (cf9b942)
  • BAvatar: remove icon prop - use svg in slot if needed (cf9b942)
  • BAvatar: remove prop badgeOffset, no alternative added (cf9b942)
  • BAvatar: remove props badgeTop, badgeStart -- use badgePlacement instead (cf9b942)
  • BBadge: add prop placement with directions to place on element (cf9b942)
  • BBadge: dotindicator follows placement of prop placement (cf9b942)
  • BBadge: revamp, remove prop textIndicator -- use prop placement (bootstrap also says parent elements should have position-relative class... Not sure how much this affects things) (cf9b942)
  • BBadge: when dotIndicator is true, use class visually-hidden on text (cf9b942)
  • BCardImg: converge placment props into single "placement" prop. top, bottom, start,end, center => placement (cf9b942)
  • BCard: remove prop overlay, add it into the imgPlacement prop (imgPlacement="overlay") (cf9b942)

... (truncated)

Commits
  • 9241bbe chore: release main
  • 379b838 fix(BTable): fixed aria-sort for th gets changed back to 'none' when no longe...
  • 55672ff fix(BOverlay): fix noWrap (#1933)
  • 14534d1 fix(BFormFile): remove unneeded input-group div (#1932)
  • bb5cdc5 Dropdown input group fixes (#1914)
  • 73b6938 chore: release main
  • e7130aa feat(BTable): adds the ability to filter by formatter Solves #1413
  • cf9b942 feat: move unplugin-vue-components component resolver to main package (#1918)
  • 01f87b8 feat(BOffcanvas): allow specifying a width (#1903)
  • 81bd830 chore: fix type issue
  • Additional commits viewable in compare view


Updates copy-webpack-plugin from 11.0.0 to 12.0.2

Release notes

Sourced from copy-webpack-plugin's releases.

v12.0.2

12.0.2 (2024-01-17)

Bug Fixes

v12.0.1

12.0.1 (2024-01-11)

Bug Fixes

v12.0.0

12.0.0 (2024-01-10)

⚠ BREAKING CHANGES

  • update globby to 14.0.0
  • minimum supported Node.js version is 18.12.0 (#759) (a5b7d06)
Changelog

Sourced from copy-webpack-plugin's changelog.

12.0.2 (2024-01-17)

Bug Fixes

12.0.1 (2024-01-11)

Bug Fixes

12.0.0 (2024-01-10)

⚠ BREAKING CHANGES

  • update globby to 14.0.0
  • minimum supported Node.js version is 18.12.0 (#759) (a5b7d06)
Commits


Updates core-js from 3.33.1 to 3.37.1

Changelog

Sourced from core-js's changelog.

3.37.1 - 2024.05.14
3.37.0 - 2024.04.17

... (truncated)

Commits


Updates esp-web-tools from 9.4.0 to 10.0.1

Release notes

Sourced from esp-web-tools's releases.

10.0.1

What's Changed

10.0.0

What's Changed

ESP Web Tools has been migrated to use Material 3 design. This changes both the look of the button and the dialog. The button style can be customed, see the website for more info.

New button: CleanShot 2024-02-12 at 15 59 01

New dialog: CleanShot 2024-02-12 at 15 59 21

Dependencies

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

... (truncated)

Commits


Updates vue from 3.4.15 to 3.4.27

Release notes

Sourced from vue's releases.

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.

v3.4.25

Please refer to CHANGELOG.md for details.

v3.4.24

Please refer to CHANGELOG.md for details.

v3.4.23

Please refer to CHANGELOG.md for details.

v3.4.22

Please refer to CHANGELOG.md for details.

v3.4.21

Please refer to CHANGELOG.md for details.

v3.4.20

Please refer to CHANGELOG.md for details.

v3.4.19

Please refer to CHANGELOG.md for details.

v3.4.18

Please refer to CHANGELOG.md for details.

v3.4.17

Please refer to CHANGELOG.md for details.

v3.4.16

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vue's changelog.

3.4.27 (2024-05-06)

Bug Fixes

3.4.26 (2024-04-29)

Bug Fixes

3.4.25 (2024-04-24)

Bug Fixes

3.4.24 (2024-04-22)

Bug Fixes

  • compiler-core: handle template ref bound via v-bind object on v-for (#10706) (da7adef), closes #10696
  • compiler-core: properly parse await expressions in edge cases (b92c25f), closes #10754
  • compiler-sfc: handle readonly operator and ReadonlyArray/Map/Set types (5cef52a), closes #10726
  • compiler-ssr: fix hydration mismatch for conditional slot in transition (f12c81e), closes #10743
  • compiler-ssr: fix v-html SSR for nullish values (1ff4076), closes #10725
  • deps: update compiler (#10760) (15df5c1)
  • runtime-core: fix edge case of KeepAlive inside Transition with slot children (#10719) (e51ca61), closes #10708

... (truncated)

Commits