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 20 updates #121

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the npm-dependencies group with 20 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.92.0
axios 1.5.1 1.6.5
bootstrap-vue-next 0.14.10 0.15.5
core-js 3.33.1 3.35.0
esp-web-tools 9.4.0 9.4.3
vue 3.3.7 3.4.5
@babel/core 7.23.2 7.23.7
@babel/preset-env 7.23.2 7.23.7
@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
postcss-loader 7.3.3 7.3.4
sass 1.69.4 1.69.7
sass-loader 13.3.2 13.3.3
vue-loader 17.3.0 17.4.2
vue-template-compiler 2.7.15 2.7.16

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

Release notes

Sourced from @​sentry/vue's releases.

7.92.0

Important Changes

Deprecations

  • feat(core): Add span.updateName() and deprecate span.setName() (#10018)
  • feat(core): Deprecate span.getTraceContext() (#10032)
  • feat(core): Deprecate span.toTraceparent() in favor of spanToTraceHeader() util (#10031)
  • feat(core): Deprecate trace in favor of startSpan (#10012)
  • feat(core): Deprecate span toContext() and updateWithContext() (#10030)
  • ref: Deprecate deepReadDirSync (#10016)
  • ref: Deprecate lastEventId() (#10043)

Please take a look at the Migration docs for more details. These methods will be removed in the upcoming v8 major release.

Cron Monitoring Support for cron and node-cron libraries

  • feat(node): Instrumentation for cron library (#9999)
  • feat(node): Instrumentation for node-cron library (#9904)

This release adds instrumentation for the cron and node-cron libraries. This allows you to monitor your cron jobs with Sentry cron monitors.

For cron:

import * as Sentry from '@sentry/node';
import { CronJob } from 'cron';

const CronJobWithCheckIn = Sentry.cron.instrumentCron(CronJob, 'my-cron-job');

// use the constructor const job = new CronJobWithCheckIn('* * * * *', () => { console.log('You will see this message every minute'); });

// or from const job = CronJobWithCheckIn.from({ cronTime: '* * * * *', onTick: () => { console.log('You will see this message every minute'); }, });

For node-cron:

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

</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

7.92.0

Important Changes

Deprecations

  • feat(core): Add span.updateName() and deprecate span.setName() (#10018)
  • feat(core): Deprecate span.getTraceContext() (#10032)
  • feat(core): Deprecate span.toTraceparent() in favor of spanToTraceHeader() util (#10031)
  • feat(core): Deprecate trace in favor of startSpan (#10012)
  • feat(core): Deprecate span toContext() and updateWithContext() (#10030)
  • ref: Deprecate deepReadDirSync (#10016)
  • ref: Deprecate lastEventId() (#10043)

Please take a look at the Migration docs for more details. These methods will be removed in the upcoming v8 major release.

Cron Monitoring Support for cron and node-cron libraries

  • feat(node): Instrumentation for cron library (#9999)
  • feat(node): Instrumentation for node-cron library (#9904)

This release adds instrumentation for the cron and node-cron libraries. This allows you to monitor your cron jobs with Sentry cron monitors.

For cron:

import * as Sentry from '@sentry/node';
import { CronJob } from 'cron';

const CronJobWithCheckIn = Sentry.cron.instrumentCron(CronJob, 'my-cron-job');

// use the constructor const job = new CronJobWithCheckIn('* * * * *', () => { console.log('You will see this message every minute'); });

// or from const job = CronJobWithCheckIn.from({ cronTime: '* * * * *', onTick: () => { console.log('You will see this message every minute'); }, });

For node-cron:

import * as Sentry from '@sentry/node';
import cron from 'node-cron';
</tr></table> 

... (truncated)

Commits
  • 30eddd5 release: 7.92.0
  • 7bca411 Merge pull request #10063 from getsentry/prepare-release/7.92.0
  • c06c2d8 meta(changelog): Update changelog for 7.92.0
  • 33348ec fix(node): Anr doesn't block exit (#10064)
  • 99f39b5 test(remix): Override web-streams-polyfill version to fix integration tests...
  • 09e4ecc docs: Add docs for new performance APIs (#10017)
  • 59ffba3 feat(core): Add setClient() and getClient() to Scope (#10055)
  • 5462b04 build: Re-enable eslint no-unused-vars, no-control-regex and `no-loss-of-...
  • 8fdf340 ref: Deprecate lastEventId() (#10043)
  • b1458d6 meta: Disable biome quickfix in vscode config (#10051)
  • Additional commits viewable in compare view


Updates axios from 1.5.1 to 1.6.5

Release notes

Sourced from axios's releases.

Release v1.6.5

Release notes:

Bug Fixes

  • ci: refactor notify action as a job of publish action; (#6176) (0736f95)
  • dns: fixed lookup error handling; (#6175) (f4f2b03)

Contributors to this release

Release v1.6.4

Release notes:

Bug Fixes

  • security: fixed formToJSON prototype pollution vulnerability; (#6167) (3c0c11c)
  • security: fixed security vulnerability in follow-redirects (#6163) (75af1cd)

Contributors to this release

Release v1.6.3

Release notes:

Bug Fixes

  • Regular Expression Denial of Service (ReDoS) (#6132) (5e7ad38)

Contributors to this release

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.
</tr></table> 

... (truncated)

Changelog

Sourced from axios's changelog.

1.6.5 (2024-01-05)

Bug Fixes

  • ci: refactor notify action as a job of publish action; (#6176) (0736f95)
  • dns: fixed lookup error handling; (#6175) (f4f2b03)

Contributors to this release

1.6.4 (2024-01-03)

Bug Fixes

  • security: fixed formToJSON prototype pollution vulnerability; (#6167) (3c0c11c)
  • security: fixed security vulnerability in follow-redirects (#6163) (75af1cd)

Contributors to this release

1.6.3 (2023-12-26)

Bug Fixes

  • Regular Expression Denial of Service (ReDoS) (#6132) (5e7ad38)

Contributors to this release

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 )
</tr></table> 

... (truncated)

Commits


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

Changelog

Sourced from core-js's changelog.

3.35.0 - 2023.12.29
3.34.0 - 2023.12.06
3.33.3 - 2023.11.20

... (truncated)

Commits
  • eafff6c 3.35.0
  • 63b7e18 simplify handling [[IsHTMLDDA]], is-object case already covered in `is-ca...
  • 8d46fe0 use toObject at the first place for the expected errors order
  • a090286 make collections .from method non-generic
  • 6e650fb make collections .of method non-generic
  • 87540ce fix subclassing of wrapped ArrayBuffer
  • a7b141b it seems that the ancient Array.prototype.push bug is fixed in V8 ~ Chrome ...
  • c8a8167 extract a-data-view helper
  • ff68fa6 drop array-slice-simple since in all current cases of usage it can't take `...
  • d5ee26e join array sorting in one 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.4.5

Release notes

Sourced from vue's releases.

v3.4.5

Please refer to CHANGELOG.md for details.

v3.4.4

Please refer to CHANGELOG.md for details.

v3.4.3

Please refer to CHANGELOG.md for details.

v3.4.2

Please refer to CHANGELOG.md for details.

v3.4.1

Please refer to CHANGELOG.md for details.

v3.4.0

Please refer to CHANGELOG.md for details.

v3.4.0-rc.3

Please refer to CHANGELOG.md for details.

v3.4.0-rc.2

Please refer to CHANGELOG.md for details.

v3.4.0-rc.1

Please refer to CHANGELOG.md for details.

v3.4.0-beta.4

Please refer to CHANGELOG.md for details.

v3.4.0-beta.3

Please refer to CHANGELOG.md for details.

v3.4.0-beta.2

Please refer to CHANGELOG.md for details.

v3.4.0-beta.1

Please refer to CHANGELOG.md for details.

v3.4.0-alpha.4

Please refer to CHANGELOG.md for details.

v3.4.0-alpha.3

Please refer to CHANGELOG.md for details.

v3.4.0-alpha.2

Please refer to CHANGELOG.md for details.

v3.4.0-alpha.1

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vue's changelog.

3.4.5 (2024-01-04)

Bug Fixes

  • compiler-sfc: fix co-usage of defineModel transform options and props destructure (b20350d), closes #9972
  • compiler-sfc: fix sfc template unref rewrite for class instantiation (ae60a91), closes #6483 #6491
  • compiler-ssr: fix node clone edge case caused by AST reuse (#9983) (7dbdb3e), closes #9981
  • watch: cleanup watcher effect from scope when manually stopped (#9978) (d2d8955)

3.4.4 (2024-01-03)

Bug Fixes

  • compiler-sfc: fix scss source map regression (71d3121), closes #9970 #9969
  • compiler-sfc: use compilerOptions when re-parsing consumed AST (d94d8d4)
  • defineModel: support kebab-case/camelCase mismatches (#9950) (10ccb9b)
  • runtime-core: correctly assign suspenseId to avoid conflicts with the default id (#9966) (0648804), closes #9944
  • ssr: avoid rendering transition-group slot content as a fragment (#9961) (0160264), closes #9933
  • watch: remove instance unmounted short circuit in getter of watchEffect (#9948) (f300a40)
  • watch: revert watch behavior when watching shallow reactive objects (a9f781a), closes #9965

Performance Improvements

  • watch: avoid double traverse for reactive source (24d77c2)

3.4.3 (2023-12-30)

Bug Fixes

  • compiler-sfc: respect sfc parse options in cache key (b8d58ec)

3.4.2 (2023-12-30)

Bug Fixes

  • compiler-sfc: fix dev regression for dot / namespace component usage (dce99c1), closes #9947
  • runtime-core: support deep: false when watch reactive (#9928) (4f703d1), closes #9916
  • ssr: fix hydration error for slot outlet inside transition-group (#9937) (6cb00ed), closes #9933

... (truncated)

Commits
  • 0275dd3 release: v3.4.5
  • b20350d fix(compiler-sfc): fix co-usage of defineModel transform options and props de...
  • ae60a91 fix(compiler-sfc): fix sfc template unref rewrite for class instantiation
  • fda5192 chore: disallow console statement (#9986)
  • 0ae651a chore: remove log
  • e790e1b build: add production/development export conditions (#9977)
  • 7dbdb3e fix(compiler-ssr): fix node clone edge case caused by AST reuse (#9983)
  • d2d8955 fix(watch): cleanup watcher effect from scope when manually stopped (#9978)
  • f70f7ca release: v3.4.4
  • fe03b2f chore(apiWatch): constraint deep passes boolean (#9952)
  • Additional commits viewable in compare view


Updates @babel/core from 7.23.2 to 7.23.7

Release notes

Sourced from @​babel/core's releases.

v7.23.7 (2023-12-29)

:bug: Bug Fix

:house: Internal

  • babel-helper-create-class-features-plugin
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators

Committers: 4

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
    • #16150 u... _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.