open-goal / launcher

A launcher for the OpenGOAL Project to simplify usage and installation
ISC License
65 stars 13 forks source link

build(deps): bump the frontend-deps group with 16 updates #427

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the frontend-deps group with 16 updates:

Package From To
country-flag-emoji-polyfill 0.1.5 0.1.8
@iconify-json/mdi 1.1.63 1.1.64
@sveltejs/vite-plugin-svelte 3.0.1 3.0.2
@testing-library/svelte 4.0.5 4.1.0
@vitest/coverage-v8 1.1.0 1.2.2
autoprefixer 10.4.16 10.4.17
classnames 2.3.3 2.5.1
flowbite-svelte 0.44.21 0.44.22
jsdom 23.0.1 24.0.0
postcss 8.4.32 8.4.33
prettier 3.1.1 3.2.4
svelte 4.2.8 4.2.9
tailwindcss 3.4.0 3.4.1
unplugin-icons 0.18.1 0.18.3
vite 5.0.10 5.0.12
vitest 1.1.0 1.2.2

Updates country-flag-emoji-polyfill from 0.1.5 to 0.1.8

Changelog

Sourced from country-flag-emoji-polyfill's changelog.

0.1.8

  • Fix NPM publish mistake which didn't include the TwemojiCountryFlags.woff2 font file
  • No code changes

0.1.7

  • Change package.json such that, hopefully, it works better in everybody's build setup (notably the TypeScript types). Thanks @​DanielleHuisman for PR #13.
  • Switch to unbuild to enable the above.
  • Add this changelog.

0.1.6

Sorry I forgot, please see the commit history.

Commits


Updates @iconify-json/mdi from 1.1.63 to 1.1.64

Commits


Updates @sveltejs/vite-plugin-svelte from 3.0.1 to 3.0.2

Release notes

Sourced from @​sveltejs/vite-plugin-svelte's releases.

@​sveltejs/vite-plugin-svelte@​3.0.2

Patch Changes

  • fix(compile): correctly determine script lang in files where a comment precedes the script tag (#844)
Changelog

Sourced from @​sveltejs/vite-plugin-svelte's changelog.

3.0.2

Patch Changes

  • fix(compile): correctly determine script lang in files where a comment precedes the script tag (#844)
Commits


Updates @testing-library/svelte from 4.0.5 to 4.1.0

Release notes

Sourced from @​testing-library/svelte's releases.

v4.1.0

4.1.0 (2024-01-27)

Features

v4.0.6

4.0.6 (2024-01-24)

Bug Fixes

  • types: correct type annotation for act (38f7518)
Commits
  • ee1b1f7 feat(vitest): add vitest cleanup export (#294)
  • 16a7a4b chore: fix linting, formatting, and git hooks configs (#291)
  • 9bd2f39 Merge pull request #287 from testing-library/gh209-setContext
  • 9fdce65 Merge pull request #289 from testing-library/simplify-act
  • f5121e1 chore: simplify implementation of act
  • 9ef86c7 Merge pull request #288 from mcous/fix-134
  • 38f7518 fix(types): correct type annotation for act
  • 614b9b7 add new context test
  • See full diff in compare view


Updates @vitest/coverage-v8 from 1.1.0 to 1.2.2

Release notes

Sourced from @​vitest/coverage-v8's releases.

v1.2.2

   🐞 Bug Fixes

    View changes on GitHub

v1.2.1

   🐞 Bug Fixes

    View changes on GitHub

v1.2.0

... (truncated)

Commits


Updates autoprefixer from 10.4.16 to 10.4.17

Release notes

Sourced from autoprefixer's releases.

10.4.17

  • Fixed user-select: contain prefixes.
Changelog

Sourced from autoprefixer's changelog.

10.4.17

  • Fixed user-select: contain prefixes.
Commits


Updates classnames from 2.3.3 to 2.5.1

Changelog

Sourced from classnames's changelog.

v2.5.1 / 2023-12-29

  • Remove workspaces field from package (#350)

v2.5.0 / 2023-12-27

  • Restore ability to pass a TypeScript interface (#341)
  • Add exports field to package (#342)

v2.4.0 / 2023-12-26

  • Use string concatenation to increase performance thanks Jon Koops (#336)
Commits


Updates flowbite-svelte from 0.44.21 to 0.44.22

Changelog

Sourced from flowbite-svelte's changelog.

0.44.22 (2024-01-12)

Bug Fixes

Commits


Updates jsdom from 23.0.1 to 24.0.0

Release notes

Sourced from jsdom's releases.

Version 24.0.0

This release reverts our selector engine back to nwsapi. As discussed in #3659, the performance regressions from @asamuzakjp/dom-selector turned out to be higher than anticipated. In the future, we can revisit @asamuzakjp/dom-selector after it reaches nwsapi's performance on the two real-world benchmarks provided by the community.

Since reverting to nwsapi causes several functionality regressions, e.g. removing :has() support, we've decided to make this a major version.

Additionally:

  • Small fixes to edge-case behavior of the following properties: input.maxLength, input.minLength, input.size, progress.max, tableCell.colSpan, tableCell.rowSpan, tableCol.span, textArea.cols, textArea.maxLength, textArea.minLength, textArea.rows.

Version 23.2.0

This release switches our CSS selector engine from nwsapi to @asamuzakjp/dom-selector. The new engine is more actively maintained, and supports many new selectors: see the package's documentation for the full list. It also works better with shadow trees.

There is a potential of a performance regression due to this change. In our stress test benchmark, which runs most of these 273 selectors against this 128 KiB document, the new engine completes the benchmark only 0.25x as fast. However, we're hopeful that in more moderate usage this will not be a significant issue. Any help speeding up @asamuzakjp/dom-selector is appreciated, and feel free to open an issue if this has had a significant impact on your project.

Version 23.1.0

  • Added an initial implementation of ElementInternals, including the shadowRoot getter and the string-valued ARIA properties. (zjffun)
  • Added the string-valued ARIA attribute-reflecting properties to Element.
  • Fixed history.pushState() and history.replaceState() to follow the latest specification, notably with regards to how they handle empty string inputs and what new URLs are possible.
  • Fixed the input.valueAsANumber setter to handle NaN correctly. (alexandertrefz)
  • Updated various dependencies, including cssstyle which contains several bug fixes.
Changelog

Sourced from jsdom's changelog.

24.0.0

This release reverts our selector engine back to nwsapi. As discussed in #3659, the performance regressions from @asamuzakjp/dom-selector turned out to be higher than anticipated. In the future, we can revisit @asamuzakjp/dom-selector after it reaches nwsapi's performance on the two real-world benchmarks provided by the community.

Since reverting to nwsapi causes several functionality regressions, e.g. removing :has() support, we've decided to make this a major version.

Additionally:

  • Small fixes to edge-case behavior of the following properties: input.maxLength, input.minLength, input.size, progress.max, tableCell.colSpan, tableCell.rowSpan, tableCol.span, textArea.cols, textArea.maxLength, textArea.minLength, textArea.rows.

23.2.0

This release switches our CSS selector engine from nwsapi to @asamuzakjp/dom-selector. The new engine is more actively maintained, and supports many new selectors: see the package's documentation for the full list. It also works better with shadow trees.

There is a potential of a performance regression due to this change. In our stress test benchmark, which runs most of these 273 selectors against this 128 KiB document, the new engine completes the benchmark only 0.25x as fast. However, we're hopeful that in more moderate usage this will not be a significant issue. Any help speeding up @asamuzakjp/dom-selector is appreciated, and feel free to open an issue if this has had a significant impact on your project.

23.1.0

  • Added an initial implementation of ElementInternals, including the shadowRoot getter and the string-valued ARIA properties. (zjffun)
  • Added the string-valued ARIA attribute-reflecting properties to Element.
  • Fixed history.pushState() and history.replaceState() to follow the latest specification, notably with regards to how they handle empty string inputs and what new URLs are possible.
  • Fixed the input.valueAsANumber setter to handle NaN correctly. (alexandertrefz)
  • Updated various dependencies, including cssstyle which contains several bug fixes.
Commits
  • 2f8a730 Version 24.0.0
  • db0a4dc Implement the remaining types of numeric reflection
  • c1d7005 Implement full long reflection
  • ac815ff Revert back to nwsapi
  • 5b1a49e Fix changelog link to dom-selector
  • cf8b707 Version 23.2.0
  • 908f27d Update dom-selector and roll web platform tests
  • c039e52 Switch from nwsapi to dom-selector
  • b677627 Add new CSS selectors benchmark
  • 4b33d36 Enable WPT directories css/selectors and css/css-scoping
  • Additional commits viewable in compare view


Updates postcss from 8.4.32 to 8.4.33

Release notes

Sourced from postcss's releases.

8.4.33

Changelog

Sourced from postcss's changelog.

8.4.33

  • Fixed NoWorkResult behavior difference with normal mode (by Romain Menke).
  • Fixed NoWorkResult usage conditions (by @​ahmdammarr).
Commits
  • ae57d83 Release 8.4.33 version
  • 2e9d029 Update dependencies
  • 892b269 Update size limit for new metric on brotli
  • f2e7a9f Merge pull request #1908 from ahmdammarr/refactor/safe-check-for-NoWorkResult
  • c751e11 Merge pull request #1909 from romainmenke/no-work-result-vs-lazy-result--inve...
  • 3c2fa2a fix
  • a4626e9 failing test
  • c37346d refactor: check all falsy conditions of plugins and opts before returning NoW...
  • See full diff in compare view


Updates prettier from 3.1.1 to 3.2.4

Release notes

Sourced from prettier's releases.

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.4

diff

Fix incorrect parser inference (#15947 by @​fisker)

Files like .eslintrc.json were incorrectly formatted as JSONC files.

// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }

// Prettier 3.2.4 prettier --file-info .eslintrc.json { "ignored": false, "inferredParser": "json" }

3.2.3

diff

Throw errors for invalid code (#15881 by @​fisker, @​Josh-Cena, @​auvred)

// Input
1++;

// Prettier 3.2.2 1++;

// Prettier 3.2.3 SyntaxError: Invalid left-hand side expression in unary operation (1:1) > 1 | 1++; | ^

// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
</tr></table> 

... (truncated)

Commits


Updates svelte from 4.2.8 to 4.2.9

Release notes

Sourced from svelte's releases.

svelte@4.2.9

Patch Changes

  • fix: add types for popover attributes and events (#10042)

  • fix: add gamepadconnected and gamepaddisconnected events (#9864)

  • fix: make @types/estree a dependency (#10149)

  • fix: bump axobject-query (#10167)

Changelog

Sourced from svelte's changelog.

4.2.9

Patch Changes

  • fix: add types for popover attributes and events (#10042)

  • fix: add gamepadconnected and gamepaddisconnected events (#9864)

  • fix: make @types/estree a dependency (#10149)

  • fix: bump axobject-query (#10167)

Commits


Updates tailwindcss from 3.4.0 to 3.4.1

Release notes

Sourced from tailwindcss's releases.

v3.4.1

Fixed

  • Don't remove keyframe stops when using important utilities (#12639)
  • Don't add spaces to gradients and grid track names when followed by calc() (#12704)
  • Restore old behavior for class dark mode strategy (#12717)

Added

  • Add new selector and variant strategies for dark mode (#12717)

Changed

  • Support rtl and ltr variants on same element as dir attribute (#12717)
Changelog

Sourced from tailwindcss's changelog.

[3.4.1] - 2024-01-05

Fixed

  • Don't remove keyframe stops when using important utilities (#12639)
  • Don't add spaces to gradients and grid track names when followed by calc() (#12704)
  • Restore old behavior for class dark mode strategy (#12717)

Added

  • Add new selector and variant strategies for dark mode (#12717)

Changed

  • Support rtl and ltr variants on same element as dir attribute (#12717)
Commits
  • 7361468 3.4.1
  • 508e7f2 Fix code style
  • 3fb57e5 Restore old behavior for class dark mode, add new selector and variant ...
  • 78fedd5 Don't add spaces to gradients and grid track names when followed by calc() ...
  • 08a0a6c Update changelog
  • 8890775 Don't remove keyframe stops when using important utilities (#12639)
  • f33d6a5 Update CI
  • See full diff in compare view


Updates unplugin-icons from 0.18.1 to 0.18.3

Release notes

Sourced from unplugin-icons's releases.

v0.18.3

   🚀 Features

    View changes on GitHub

v0.18.2

   🐞 Bug Fixes

    View changes on GitHub
Commits


Updates vite from 5.0.10 to 5.0.12

Changelog

Sourced from vite's changelog.

5.0.12 (2024-01-19)

5.0.11 (2024-01-05)

Commits
  • ee81e19 release: v5.0.12
  • 91641c4 fix: fs deny for case insensitive systems (#15653)
  • ef89f80 fix: await configResolved hooks of worker plugins (#15597) (#15605)
  • b44c493 release: v5.0.11
  • d2aa096 fix: inject __vite__mapDeps code before sourcemap file comment (#15483)
  • 2a540ee chore(deps): update tj-actions/changed-files action to v41 (#15476)
  • 5ea9edb fix(html): handle offset magic-string slice error (#15435)
  • 49d21fe chore(deps): update dependency strip-literal to v2 (#15475)
  • 8de7bd2 fix(assets): avoid splitting , inside base64 value of srcset attribute (#...
  • 19e3c9a fix: don't pretransform classic script links (#15361)
  • See full diff in compare view


Updates vitest from 1.1.0 to 1.2.2

Release notes

Sourced from vitest's releases.

v1.2.2

   🐞 Bug Fixes

xTVaser commented 7 months ago

@dependabot rebase