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 all group with 9 updates #168

Merged
merged 1 commit into from
Feb 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 19, 2024

Bumps the all group with 9 updates:

Package From To
@commitlint/cli 18.6.0 18.6.1
@commitlint/config-conventional 18.6.0 18.6.2
@nihalgonsalves/esconfig 0.8.5 0.9.0
@types/node 18.19.15 18.19.17
@vitest/coverage-v8 1.2.2 1.3.0
@vitest/ui 1.2.2 1.3.0
browserslist 4.22.3 4.23.0
esbuild 0.20.0 0.20.1
vitest 1.2.2 1.3.0

Updates @commitlint/cli from 18.6.0 to 18.6.1

Release notes

Sourced from @​commitlint/cli's releases.

v18.6.1

18.6.1 (2024-02-13)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.6.0...v18.6.1

Changelog

Sourced from @​commitlint/cli's changelog.

18.6.1 (2024-02-13)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 18.6.0 to 18.6.2

Release notes

Sourced from @​commitlint/config-conventional's releases.

v18.6.2

18.6.2 (2024-02-14)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.6.1...v18.6.2

v18.6.1

18.6.1 (2024-02-13)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.6.0...v18.6.1

Changelog

Sourced from @​commitlint/config-conventional's changelog.

18.6.2 (2024-02-14)

Bug Fixes

18.6.1 (2024-02-13)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @nihalgonsalves/esconfig from 0.8.5 to 0.9.0

Release notes

Sourced from @​nihalgonsalves/esconfig's releases.

esconfig: v0.9.0

0.9.0 (2024-02-13)

⚠ BREAKING CHANGES

  • deps: upgrade all incl typescript-eslint v7

Features

  • deps: upgrade all incl typescript-eslint v7 (2ee9301)
Changelog

Sourced from @​nihalgonsalves/esconfig's changelog.

0.9.0 (2024-02-13)

⚠ BREAKING CHANGES

  • deps: upgrade all incl typescript-eslint v7

Features

  • deps: upgrade all incl typescript-eslint v7 (2ee9301)
Commits
  • a85d693 chore(main): release esconfig 0.9.0 (#80)
  • 2ee9301 feat(deps)!: upgrade all incl typescript-eslint v7
  • 6140a2b feat!(deps): upgrade all incl typescript-eslint v7
  • See full diff in compare view

Updates @types/node from 18.19.15 to 18.19.17

Commits

Updates @vitest/coverage-v8 from 1.2.2 to 1.3.0

Release notes

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

v1.3.0

🚀 Features

🐞 Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by vitestbot, a new releaser for @​vitest/coverage-v8 since your current version.


Updates @vitest/ui from 1.2.2 to 1.3.0

Release notes

Sourced from @​vitest/ui's releases.

v1.3.0

🚀 Features

🐞 Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by vitestbot, a new releaser for @​vitest/ui since your current version.


Updates browserslist from 4.22.3 to 4.23.0

Release notes

Sourced from browserslist's releases.

4.23.0

Changelog

Sourced from browserslist's changelog.

4.23.0

Commits

Updates esbuild from 0.20.0 to 0.20.1

Release notes

Sourced from esbuild's releases.

v0.20.1

  • Fix a bug with the CSS nesting transform (#3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
    color: red;
    }
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
    color: red;
    }

  • Constant folding for JavaScript inequality operators (#3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    // New output (with --minify)
    console.log(!0,!1);

  • Better handling of __proto__ edge cases (#3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {
      return { __proto__: __proto__ } // Note: sets the prototype

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.20.1

  • Fix a bug with the CSS nesting transform (#3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
    color: red;
    }
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
    color: red;
    }

  • Constant folding for JavaScript inequality operators (#3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    // New output (with --minify)
    console.log(!0,!1);

  • Better handling of __proto__ edge cases (#3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {

... (truncated)

Commits

Updates vitest from 1.2.2 to 1.3.0

Release notes

Sourced from vitest's releases.

v1.3.0

🚀 Features

🐞 Bug Fixes

... (truncated)

Commits

Bumps the all group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `18.6.0` | `18.6.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `18.6.0` | `18.6.2` |
| [@nihalgonsalves/esconfig](https://github.com/nihalgonsalves/esconfig) | `0.8.5` | `0.9.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.19.15` | `18.19.17` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.2.2` | `1.3.0` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `1.2.2` | `1.3.0` |
| [browserslist](https://github.com/browserslist/browserslist) | `4.22.3` | `4.23.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.0` | `0.20.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.2.2` | `1.3.0` |


Updates `@commitlint/cli` from 18.6.0 to 18.6.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v18.6.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 18.6.0 to 18.6.2
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v18.6.2/@commitlint/config-conventional)

Updates `@nihalgonsalves/esconfig` from 0.8.5 to 0.9.0
- [Release notes](https://github.com/nihalgonsalves/esconfig/releases)
- [Changelog](https://github.com/nihalgonsalves/esconfig/blob/main/CHANGELOG.md)
- [Commits](nihalgonsalves/esconfig@esconfig-v0.8.5...esconfig-v0.9.0)

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

Updates `@vitest/coverage-v8` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.3.0/packages/coverage-v8)

Updates `@vitest/ui` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.3.0/packages/ui)

Updates `browserslist` from 4.22.3 to 4.23.0
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](browserslist/browserslist@4.22.3...4.23.0)

Updates `esbuild` from 0.20.0 to 0.20.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.20.0...v0.20.1)

Updates `vitest` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.3.0/packages/vitest)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@nihalgonsalves/esconfig"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@vitest/ui"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: browserslist
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

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 Feb 19, 2024
@nihalgonsalves nihalgonsalves merged commit a625539 into main Feb 19, 2024
1 check passed
@nihalgonsalves nihalgonsalves deleted the dependabot/npm_and_yarn/all-4682e29888 branch February 19, 2024 20:37
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.

None yet

1 participant