Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the dependencies group with 9 updates #78

Merged
merged 1 commit into from
Jun 20, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 20, 2024

Bumps the dependencies group with 9 updates:

Package From To
@biomejs/biome 1.7.3 1.8.1
cspell 8.8.0 8.9.0
lefthook 1.6.10 1.6.16
@types/node 20.12.9 20.14.6
@types/vscode 1.89.0 1.90.0
@vscode/test-electron 2.3.9 2.4.0
@vscode/vsce 2.26.1 2.28.0
ts-jest 29.1.2 29.1.5
webpack 5.91.0 5.92.1

Updates @biomejs/biome from 1.7.3 to 1.8.1

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.8.1

CLI

Bug fixes

  • Fix #3069, prevent overwriting paths when using --staged or --changed options. Contributed by @​unvalley
  • Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by @​uncenter

Configuration

Bug fixes

  • Fix #3067, by assigning the correct default value to indentWidth. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes #3061. Contributed by @​denbezrukov
  • Fix #3068 where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by @​denbezrukov
  • Fix the formatting of CSS grid layout properties. Contributed by @​denbezrukov

Linter

Bug fixes

  • The noEmptyBlock css lint rule now treats empty blocks containing comments as valid ones. Contributed by @​Sec-ant

  • useLiteralKeys no longer reports quoted member names (#3085).

    Previously useLiteralKeys reported quoted member names that can be unquoted. For example, the rule suggested the following fix:

    - const x = { "prop": 0 };
    + const x = { prop: 0 };

    This conflicted with the option quoteProperties of our formatter.

    The rule now ignores quoted member names.

    Contributed by @​Conaclos

  • noEmptyInterface now ignores empty interfaces in ambient modules (#3110). Contributed by @​Conaclos

  • noUnusedVariables and noUnusedFunctionParameters no longer report the parameters of a constructor type (#3135).

    Previously, arg was reported as unused in a constructor type like:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.8.1 (2024-06-10)

Analyzer

CLI

Bug fixes

  • Fix #3069, prevent overwriting paths when using --staged or --changed options. Contributed by @​unvalley
  • Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by @​uncenter

Configuration

Bug fixes

  • Fix #3067, by assigning the correct default value to indentWidth. Contributed by @​ematipico

Editors

Formatter

Bug fixes

  • Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes #3061. Contributed by @​denbezrukov
  • Fix #3068 where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by @​denbezrukov
  • Fix the formatting of CSS grid layout properties. Contributed by @​denbezrukov

JavaScript APIs

Linter

Bug fixes

  • The noEmptyBlock css lint rule now treats empty blocks containing comments as valid ones. Contributed by @​Sec-ant

  • useLiteralKeys no longer reports quoted member names (#3085).

    Previously useLiteralKeys reported quoted member names that can be unquoted. For example, the rule suggested the following fix:

    - const x = { "prop": 0 };
    + const x = { prop: 0 };

    This conflicted with the option quoteProperties of our formatter.

    The rule now ignores quoted member names.

    Contributed by @​Conaclos

... (truncated)

Commits

Updates cspell from 8.8.0 to 8.9.0

Release notes

Sourced from cspell's releases.

v8.9.0

Changes

Features

feat: Support spell checking more document types (#5741)

fixes #5740

Checking Custom AST Nodes

The checkScope setting is used to enable / disable checking AST Nodes. Parsers are used to generate the AST (Abstract Syntax Tree) used by ESLint to evaluate a document. Each PlugIn gets access to the AST. checkScope can be used to handle new AST node when a custom parser is added.

rules: {
  '@cspell/spellchecker': ['warn', { checkScope: [
    ['JSONLiteral': true],  // will match AST Nodes of type `JSONLiteral` and spell check the value.
    ['JSONProperty[key] JSONLiteral', false]  // will turn off checking the JSON Property keys.
    ['JSONProperty JSONLiteral', false]  // will turn off checking the JSON Property keys and values.
    ['JSONProperty[value] JSONLiteral', true]  // will turn on checking the JSON Property values.
    ['YAMLPair[key] YAMLScalar', true],
    ['YAMLPair[value] YAMLScalar', true],
    ['YAMLSequence YAMLScalar', true],
  ] }],
},

New Options

  /**
   * Scope selectors to spell check.
   * This is a list of scope selectors to spell check.
   *
   * Example:
   * ```js
   * checkScope: [
   *     ['YAMLPair[key] YAMLScalar', true],
   *     ['YAMLPair[value] YAMLScalar', true],
   *     ['YAMLSequence[entries] YAMLScalar', true],
   *     ['JSONProperty[key] JSONLiteral', true],
   *     ['JSONProperty[value] JSONLiteral', true],
   *     ['JSONArrayExpression JSONLiteral', true],
   * ],
   * ```
   *
   * To turn off checking JSON keys, use the following:
   *
   * ```js
</tr></table> 

... (truncated)

Changelog

Sourced from cspell's changelog.

8.9.0 (2024-06-18)

Note: Version bump only for package cspell

8.9.0-alpha.0 (2024-06-18)

8.8.4 (2024-06-03)

8.8.3 (2024-05-23)

8.8.2 (2024-05-22)

8.8.1 (2024-05-10)

  • chore: Do not stop update if it fails to lint. (64ba085)
Commits

Updates lefthook from 1.6.10 to 1.6.16

Release notes

Sourced from lefthook's releases.

v1.6.16

Changelog

  • aa98a47 fix: fetch remotes only for non ghost hooks (#744)
  • 0a82d71 fix: skip overwriting hooks when fetching data from remotes (#745)

v1.6.15

Changelog

  • dd53f02 chore(golangci-lint): enable copyloopvar, intrange, and prealloc (#740)
  • bcec71f chore(golangci-lint): upgrade to 1.59.0 (#738)
  • c2b2db7 chore: refactor commands interfaces (#735)
  • 38ccbc1 deps: June, 3, lipgloss (0.11.0) and viper (1.19.0) (#742)
  • c0452db feat: add refetch option to remotes config (#739)
  • e953133 perf: delay git and uname commands in hook scripts until needed (#737)

v1.6.14

Changelog

  • 8b72963 1.6.14: fix git lfs pre-push hooks
  • afc1125 fix: share STDIN across different commands on pre-push hook (#732)

v1.6.13

Changelog

  • 556201d 1.6.13: support Mint package manager
  • e61cef5 chore: remove go patch version in go.mod (#726)
  • 2af01be deps: May 22 dependencies update (#706)
  • 04a6d51 feat: expand Swift integration with Mint support (#724)

v1.6.12

Changelog

  • e87cc77 1.6.12: fix interactive mode for scripts
  • e42043f fix: enable interactive scripts (#720)
  • ce8d4f2 fix: more verbose error on versions mismatch (#721)

v1.6.11

Changelog

  • fd407ef 1.6.11: fix partially staged logic and add --no-auto-install flag
  • 1d100c6 chore: bump go to 1.22 (#701)
  • 6965783 feat: add run --no-auto-install flag (#716)
  • 5c6d8ae fix: add --porcelain to git status --short (#711)
Changelog

Sourced from lefthook's changelog.

1.6.16 (2024-06-13)

  • fix: skip overwriting hooks when fetching data from remotes (#745) by @​mrexox
  • fix: fetch remotes only for non ghost hooks (#744) by @​mrexox

1.6.15 (2024-06-03)

  • feat: add refetch option to remotes config (#739) by @​mrexox
  • deps: June, 3, lipgloss (0.11.0) and viper (1.19.0) (#742) by @​mrexox
  • chore: enable copyloopvar, intrange, and prealloc (#740) by @​scop
  • perf: delay git and uname commands in hook scripts until needed (#737) by @​scop
  • chore: refactor commands interfaces (#735) by @​mrexox
  • chore: upgrade to 1.59.0 (#738) by @​scop

1.6.14 (2024-05-30)

1.6.13 (2024-05-27)

1.6.12 (2024-05-17)

1.6.11 (2024-05-13)

Commits
  • 14f712b 1.6.16: do not overwrite the hooks after re-fetching the remotes
  • 0a82d71 fix: skip overwriting hooks when fetching data from remotes (#745)
  • aa98a47 fix: fetch remotes only for non ghost hooks (#744)
  • a58c11d 1.6.15: add refetch option to remotes configuration
  • c0452db feat: add refetch option to remotes config (#739)
  • 38ccbc1 deps: June, 3, lipgloss (0.11.0) and viper (1.19.0) (#742)
  • dd53f02 chore(golangci-lint): enable copyloopvar, intrange, and prealloc (#740)
  • e953133 perf: delay git and uname commands in hook scripts until needed (#737)
  • c2b2db7 chore: refactor commands interfaces (#735)
  • bcec71f chore(golangci-lint): upgrade to 1.59.0 (#738)
  • Additional commits viewable in compare view

Updates @types/node from 20.12.9 to 20.14.6

Commits

Updates @types/vscode from 1.89.0 to 1.90.0

Commits

Updates @vscode/test-electron from 2.3.9 to 2.4.0

Changelog

Sourced from @​vscode/test-electron's changelog.

2.4.0 | 2024-05-24

  • Allow installing unreleased builds using an -unreleased suffix, such as insiders-unreleased.
  • Allow passing different data directories in runVSCodeCommand, using it for extension development.
  • Improve the appearance progress reporting.

2.3.10 | 2024-05-13

  • Add runVSCodeCommand method and workaround for Node CVE-2024-27980
Commits
  • 75003e1 2.4.0
  • 67845f3 Merge pull request #272 from microsoft/connor4312/update-and-spinners
  • 813ab3a chore: update dependencies, improve progress reporting appearence
  • 2d17e1e Merge pull request #270 from microsoft/connor4312/unreleased-builds
  • 50afe68 fix: improve flexibility of runVSCodeCommand
  • 021f593 feat: allow downloading unreleased versions via -unreleased suffix
  • 884a3c8 Merge pull request #269 from microsoft/connor4312/node-CVE-2024-27980
  • 68fb5fb 2.3.10
  • 3f7a3cc feat: runVSCodeCommand as workaround for CVE-2024-27980
  • 40ecedf Merge pull request #263 from microsoft/dependabot/npm_and_yarn/vite-2.9.18
  • Additional commits viewable in compare view

Updates @vscode/vsce from 2.26.1 to 2.28.0

Release notes

Sourced from @​vscode/vsce's releases.

v2.28.0

Changes:

Feature Requests:

  • #993: Support signing related features

Others:

  • #1003: Update Dockerfile to use node:18-alpine
  • #997: Dockerfile is out of date with respect to system requirements
  • #1002: fix generate-manifest
  • #1001: Bump braces from 3.0.2 to 3.0.3
  • #998: Bump @​azure/identity from 4.1.0 to 4.2.1
  • #994: Support signing related features

This list of changes was auto generated.

v2.27.1-4

Changes:

  • #1003: Update Dockerfile to use node:18-alpine
  • #997: Dockerfile is out of date with respect to system requirements

This list of changes was auto generated.

v2.27.1-3

Changes:

  • #1002: fix generate-manifest

This list of changes was auto generated.

v2.27.1-2

Changes:

  • #1001: Bump braces from 3.0.2 to 3.0.3

This list of changes was auto generated.

... (truncated)

Commits

Updates ts-jest from 29.1.2 to 29.1.5

Release notes

Sourced from ts-jest's releases.

v29.1.5

Please refer to CHANGELOG.md for details.

v29.1.4

Please refer to CHANGELOG.md for details.

v29.1.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.1.5 (2024-06-16)

Bug Fixes

29.1.4 (2024-05-28)

Bug Fixes

  • fix(transformer): allow transforming of .cts/.mts extensions. (b8f6eaa), closes #3996

Features

  • feat: make cli generate esm config based on type: "module" (81a5f64), closes #4210 #4012

29.1.3 (2024-05-21)

Bug Fixes

  • add @jest/transform as an optional peer dependency (0ba7f86)
  • bring back Node 14 support (eda56a7)

Performance Improvements

  • remove ts resolved module cache file (4c88da5)
Commits
  • a5f3c8a chore(release): 29.1.5
  • 78d61b3 build(deps): Update dependency eslint-plugin-jsdoc to ^48.2.12
  • 59026b4 build(deps-dev): bump braces in /examples/type-module
  • 32cc6bb build(deps): Update dependency eslint-plugin-jsdoc to ^48.2.11
  • 487172c build(deps): Update actions/checkout digest to 692973e
  • 5560334 build(deps-dev): bump braces from 3.0.2 to 3.0.3 in /examples/js-with-ts
  • 0d9e359 build(deps): bump braces from 3.0.2 to 3.0.3 in /website
  • 9803934 build(deps): Update dependency prettier to ^3.3.2
  • 543182a build(deps): Update dependency esbuild to ~0.21.5
  • b59777e build(deps): Update @​types packages to ^7.13.0
  • Additional commits viewable in compare view

Updates webpack from 5.91.0 to 5.92.1

Release notes

Sourced from webpack's releases.

v5.92.1

Bug Fixes

  • Doesn't crash with an error when the css experiment is enabled and contenthash is used

v5.92.0

Bug Fixes

  • Correct tidle range's comutation for module federation
  • Consider runtime for pure expression dependency update hash
  • Return value in the subtractRuntime function for runtime logic
  • Fixed failed to resolve promise when eager import a dynamic cjs
  • Avoid generation extra code for external modules when remapping is not required
  • The css/global type now handles the exports name
  • Avoid hashing for @keyframe and @property at-rules in css/global type
  • Fixed mangle with destructuring for JSON modules
  • The stats.hasWarnings() method now respects the ignoreWarnings option
  • Fixed ArrayQueue iterator
  • Correct behavior of __webpack_exports_info__.a.b.canMangle
  • Changed to the correct plugin name for the CommonJsChunkFormatPlugin plugin
  • Set the chunkLoading option to the import when environment is unknown and output is module
  • Fixed when runtimeChunk has no exports when module chunkFormat used
  • [CSS] Fixed parsing minimized CSS import
  • [CSS] URLs in CSS files now have correct public path
  • [CSS] The css module type should not allow parser to switch mode
  • [Types] Improved context module types

New Features

  • Added platform target properties to compiler
  • Improved multi compiler cache location and validating it
  • Support import attributes spec (with keyword)
  • Support node: prefix for Node.js core modules in runtime code
  • Support prefetch/preload for module chunk format
  • Support "..." in the importsFields option for resolver
  • Root module is less prone to be wrapped in IIFE
  • Export InitFragment class for plugins
  • Export compileBooleanMatcher util for plugins
  • Export InputFileSystem and OutputFileSystem types
  • [CSS] Support the esModule generator option for CSS modules
  • [CSS] Support CSS when chunk format is module
Commits
  • a82e0cd chore(release): 5.92.1
  • 0d07d65 fix: error with contenthash and css experiment
  • 8efac43 test: added
  • 10638c0 chore(deps-dev): bump eslint-plugin-n from 17.8.1 to 17.9.0
  • d0f7b65 chore(deps-dev): bump lint-staged from 15.2.5 to 15.2.7
  • 50bd02c chore(deps-dev): bump @​eslint/js from 9.4.0 to 9.5.0
  • 9e395cd chore(deps): bump acorn from 8.11.3 to 8.12.0
  • db7f83c chore(deps-dev): bump globals from 15.4.0 to 15.6.0
  • b7d2cbe chore(deps-dev): bump @​types/node from 20.14.2 to 20.14.5
  • 18dab63 chore(deps-dev): bump @​types/node from 20.14.2 to 20.14.5
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.7.3` | `1.8.1` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.8.0` | `8.9.0` |
| [lefthook](https://github.com/evilmartians/lefthook) | `1.6.10` | `1.6.16` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.9` | `20.14.6` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.89.0` | `1.90.0` |
| [@vscode/test-electron](https://github.com/Microsoft/vscode-test) | `2.3.9` | `2.4.0` |
| [@vscode/vsce](https://github.com/Microsoft/vsce) | `2.26.1` | `2.28.0` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.2` | `29.1.5` |
| [webpack](https://github.com/webpack/webpack) | `5.91.0` | `5.92.1` |


Updates `@biomejs/biome` from 1.7.3 to 1.8.1
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.8.1/packages/@biomejs/biome)

Updates `cspell` from 8.8.0 to 8.9.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.9.0/packages/cspell)

Updates `lefthook` from 1.6.10 to 1.6.16
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v1.6.10...v1.6.16)

Updates `@types/node` from 20.12.9 to 20.14.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/vscode` from 1.89.0 to 1.90.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/vscode)

Updates `@vscode/test-electron` from 2.3.9 to 2.4.0
- [Changelog](https://github.com/microsoft/vscode-test/blob/main/CHANGELOG.md)
- [Commits](microsoft/vscode-test@v2.3.9...v2.4.0)

Updates `@vscode/vsce` from 2.26.1 to 2.28.0
- [Release notes](https://github.com/Microsoft/vsce/releases)
- [Commits](microsoft/vscode-vsce@v2.26.1...v2.28.0)

Updates `ts-jest` from 29.1.2 to 29.1.5
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.2...v29.1.5)

Updates `webpack` from 5.91.0 to 5.92.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.92.1)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cspell
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lefthook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/vscode"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vscode/test-electron"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vscode/vsce"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 20, 2024
@senkenn
Copy link
Owner

senkenn commented Jun 20, 2024

close #52

@senkenn senkenn linked an issue Jun 20, 2024 that may be closed by this pull request
@senkenn senkenn merged commit 182ebc8 into main Jun 20, 2024
1 check passed
@senkenn senkenn deleted the dependabot/npm_and_yarn/dependencies-24be74c3b0 branch June 20, 2024 02:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix dependabot with pnpm
1 participant