SavageCore / pd3-vault-cracker

Generates vault code possibilities from fingerprints
https://savagecore.github.io/pd3-vault-cracker/
GNU General Public License v3.0
9 stars 2 forks source link

Bump the development-dependencies group with 11 updates #44

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps the development-dependencies group with 11 updates:

Package From To
@typescript-eslint/eslint-plugin 6.13.1 6.13.2
@vite-pwa/assets-generator 0.0.11 0.1.0
@vitest/coverage-v8 0.34.6 1.0.4
@vitest/ui 0.34.6 1.0.4
prettier 3.1.0 3.1.1
stylelint 15.11.0 16.0.1
stylelint-prettier 4.1.0 5.0.0
typescript 5.3.2 5.3.3
vite 5.0.5 5.0.7
vite-plugin-pwa 0.17.2 0.17.4
vitest 0.34.6 1.0.4

Updates @typescript-eslint/eslint-plugin from 6.13.1 to 6.13.2

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v6.13.2

6.13.2 (2023-12-04)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

6.13.2 (2023-12-04)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

Commits
  • cc2c6d3 chore: publish v6.13.2
  • 37f34f4 docs: add 'When Not To Use It' or an intentional omission notice on all rules...
  • 96abf18 chore: finish enabling no-unnecessary-condition internally (#8004)
  • 4dae083 chore: prefix all nx package scripts with npx (#7988)
  • See full diff in compare view


Updates @vite-pwa/assets-generator from 0.0.11 to 0.1.0

Release notes

Sourced from @​vite-pwa/assets-generator's releases.

v0.1.0

   🚨 Breaking Changes

    View changes on GitHub
Commits


Updates @vitest/coverage-v8 from 0.34.6 to 1.0.4

Release notes

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

v1.0.4

The previous release was built incorrectly and didn't include the performance fix. This release fixes that.

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.0.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.0.2

   🐞 Bug Fixes

    View changes on GitHub

v1.0.1

   🐞 Bug Fixes

... (truncated)

Commits
  • 66933c3 chore: release v1.0.4
  • 7c19664 chore: release v1.0.3
  • 7006bb3 chore: release v1.0.2
  • 0802167 chore: release v1.0.1
  • 420707f fix: bump vitest packages peerDependencies versions (#4654)
  • 34517ce chore: release v1.0.0
  • 4166c41 fix(coverage): improve memory usage by writing temporary files on file system...
  • b766d34 chore: release v1.0.0-beta.6
  • 1fdd6fe fix(deps): update dependency std-env to ^3.5.0 (#4582)
  • a70f216 fix(deps): update dependency v8-to-istanbul to ^9.2.0 (#4583)
  • Additional commits viewable in compare view


Updates @vitest/ui from 0.34.6 to 1.0.4

Release notes

Sourced from @​vitest/ui's releases.

v1.0.4

The previous release was built incorrectly and didn't include the performance fix. This release fixes that.

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.0.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.0.2

   🐞 Bug Fixes

    View changes on GitHub

v1.0.1

   🐞 Bug Fixes

... (truncated)

Commits


Updates prettier from 3.1.0 to 3.1.1

Release notes

Sourced from prettier's releases.

3.1.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.1.1

diff

Fix config file search (#15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc

// Prettier 3.1.1 await prettier.resolveConfigFile(new URL("./test.js", import.meta.url)); // <CWD>/.prettierrc

Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#15662 by @​auvred)

// Input
aaaaaaaaaaaaaaa
    ? bbbbbbbbbbbbbbbbbb
    : ccccccccccccccc
      ? ddddddddddddddd
      : eeeeeeeeeeeeeee
        ? fffffffffffffff
        : gggggggggggggggg;

// Prettier 3.1.0 aaaaaaaaaaaaaaa ? bbbbbbbbbbbbbbbbbb : ccccccccccccccc ? ddddddddddddddd : eeeeeeeeeeeeeee ? fffffffffffffff </tr></table>

... (truncated)

Commits
  • b86701d Release 3.1.1
  • c97480c Use attributes instead of deprecated assertions (#15758)
  • 0d1ffb3 Consistently use tabs in ternaries when useTabs is true (#15662)
  • 5f7aedc fix example to fit the actual experimentalTernaries behaviour (#15747)
  • 1e30f66 Remove claim, untrue since over 5 years ago, that cursorOffset is incompatibl...
  • 39e4e7b Add cursorOffset to Playground (#15751)
  • 8e816ad Allow skipping symlink patterns, to avoid raising a fault (#15533)
  • 2ca5d75 Fix expect call in dts test (#15766)
  • 15c7428 chore(deps): update dependency flow-parser to v0.223.3 (#15760)
  • d3b3d4f chore(deps): update dependency hermes-parser to v0.18.0 (#15761)
  • Additional commits viewable in compare view


Updates stylelint from 15.11.0 to 16.0.1

Release notes

Sourced from stylelint's releases.

16.0.1

16.0.0

Migrating to 16.0.0 guide.

16.0.0-3

This is a pre-release version of 16.0.0. For details, see the following documents:

You can try the pre-release version via:

npm i stylelint@next

16.0.0-2

This is a pre-release version of 16.0.0. For details, see the following documents:

You can try the pre-release version via:

npm i stylelint@next

... (truncated)

Changelog

Sourced from stylelint's changelog.

16.0.1

16.0.0

Migrating to 16.0.0 guide.

Commits


Updates stylelint-prettier from 4.1.0 to 5.0.0

Changelog

Sourced from stylelint-prettier's changelog.

5.0.0 (2023-12-10)

Increase the minimum required versions of stylelintand node. Stylelint v16 has converted its codebase to esm and has deprecated its commonjs apis. We've followed their suggested migration guide and stylelint-prettier is now an esm-only package. This has required dropping support for v15 at the same time.

  • Minimum stylelint version is now v16 (drop support for v15.x)
  • Minimum node requirements is now >=18.12.0 (drop support for v14.x and v16.x)
Commits
  • b78aa96 v5.0.0
  • e26c5fd v5.0.0 changelog
  • 32360e6 readme update
  • fbd64d5 Merge pull request #346 from prettier/v5
  • d81ff2d Update eslint-plugin-n and strip-ansi
  • 9f52921 Replace jest with the node built-in test runner
  • 35ac519 Updates to support stylelint v16
  • 3793625 Extract ruleFunction and apply rulename and messages to that
  • 71dbdcf Move stylelint-prettier.js to index.js
  • 5aa6c2f Bump the dev-dependencies group with 11 updates (#344)
  • Additional commits viewable in compare view


Updates typescript from 5.3.2 to 5.3.3

Release notes

Sourced from typescript's releases.

TypeScript 5.3.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits


Updates vite from 5.0.5 to 5.0.7

Changelog

Sourced from vite's changelog.

5.0.7 (2023-12-08)

5.0.6 (2023-12-06)

Commits


Updates vite-plugin-pwa from 0.17.2 to 0.17.4

Release notes

Sourced from vite-plugin-pwa's releases.

v0.17.4

   🚀 Features

    View changes on GitHub

v0.17.3

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 3eed0a3 chore: release v0.17.4
  • 07b9150 chore: include types in svelte example (#617)
  • f90c09b feat(types): autocomplete purpose in IconResource (#616)
  • 605ce1a chore: release v0.17.3
  • c7e90a4 fix: configure static assets when includeAssets option is true regardless of ...
  • See full diff in compare view


Updates vitest from 0.34.6 to 1.0.4

Release notes

Sourced from vitest's releases.

v1.0.4

The previous release was built incorrectly and didn't include the performance fix. This release fixes that.

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.0.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.0.2

   🐞 Bug Fixes

    View changes on GitHub

v1.0.1

   🐞 Bug Fixes

... (truncated)

Commits
  • 66933c3 chore: release v1.0.4
  • 474bbc0 chore: LICENSE
  • a7931bb fix(cli): --coverage.all=false resolved incorrectly (#4697)
  • 7c19664 chore: release v1.0.3
  • 7e5594d revert: close pool early in run-mode
    codecov-commenter commented 9 months ago

    Codecov Report

    All modified and coverable lines are covered by tests :white_check_mark:

    Comparison is base (9a48f1c) 100.00% compared to head (2bd5bf7) 96.59%.

    Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #44 +/- ## =========================================== - Coverage 100.00% 96.59% -3.41% =========================================== Files 16 20 +4 Lines 909 941 +32 Branches 35 39 +4 =========================================== Hits 909 909 - Misses 0 28 +28 - Partials 0 4 +4 ```

    :umbrella: View full report in Codecov by Sentry.
    :loudspeaker: Have feedback on the report? Share it here.