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 #154

Merged
merged 1 commit into from
Dec 11, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

Bumps the all group with 9 updates:

Package From To
@nihalgonsalves/esconfig 0.6.11 0.6.13
@types/node 18.19.2 18.19.3
@vitest/coverage-v8 1.0.1 1.0.4
@vitest/ui 1.0.1 1.0.4
esbuild 0.19.8 0.19.9
eslint-plugin-vitest 0.3.10 0.3.15
prettier 3.1.0 3.1.1
typescript 5.3.2 5.3.3
vitest 1.0.1 1.0.4

Updates @nihalgonsalves/esconfig from 0.6.11 to 0.6.13

Release notes

Sourced from @​nihalgonsalves/esconfig's releases.

v0.6.13

0.6.13 (2023-12-11)

Features

  • deps: bump the all group with 4 updates (#56) (4214ae0)

v0.6.12

0.6.12 (2023-12-04)

Features

  • deps: bump the all group with 5 updates (#53) (a1ff01d)
Changelog

Sourced from @​nihalgonsalves/esconfig's changelog.

0.6.13 (2023-12-11)

Features

  • deps: bump the all group with 4 updates (#56) (4214ae0)

0.6.12 (2023-12-04)

Features

  • deps: bump the all group with 5 updates (#53) (a1ff01d)
Commits

Updates @types/node from 18.19.2 to 18.19.3

Commits

Updates @vitest/coverage-v8 from 1.0.1 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
Commits

Updates @vitest/ui from 1.0.1 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
Commits

Updates esbuild from 0.19.8 to 0.19.9

Release notes

Sourced from esbuild's releases.

v0.19.9

  • Add support for transforming new CSS gradient syntax for older browsers

    The specification called CSS Images Module Level 4 introduces new CSS gradient syntax for customizing how the browser interpolates colors in between color stops. You can now control the color space that the interpolation happens in as well as (for "polar" color spaces) control whether hue angle interpolation happens clockwise or counterclockwise. You can read more about this in Mozilla's blog post about new CSS gradient features.

    With this release, esbuild will now automatically transform this syntax for older browsers in the target list. For example, here's a gradient that should appear as a rainbow in a browser that supports this new syntax:

    /* Original code */
    .rainbow-gradient {
      width: 100px;
      height: 100px;
      background: linear-gradient(in hsl longer hue, #7ff, #77f);
    }
    /* New output (with --target=chrome99) */
    .rainbow-gradient {
    width: 100px;
    height: 100px;
    background:
    linear-gradient(
    #77ffff,
    #77ffaa 12.5%,
    #77ff80 18.75%,
    #84ff77 21.88%,
    #99ff77 25%,
    #eeff77 37.5%,
    #fffb77 40.62%,
    #ffe577 43.75%,
    #ffbb77 50%,
    #ff9077 56.25%,
    #ff7b77 59.38%,
    #ff7788 62.5%,
    #ff77dd 75%,
    #ff77f2 78.12%,
    #f777ff 81.25%,
    #cc77ff 87.5%,
    #7777ff);
    }

    You can now use this syntax in your CSS source code and esbuild will automatically convert it to an equivalent gradient for older browsers. In addition, esbuild will now also transform "double position" and "transition hint" syntax for older browsers as appropriate:

    /* Original code */
    .stripes {
      width: 100px;
      height: 100px;
      background: linear-gradient(#e65 33%, #ff2 33% 67%, #99e 67%);
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.19.9

  • Add support for transforming new CSS gradient syntax for older browsers

    The specification called CSS Images Module Level 4 introduces new CSS gradient syntax for customizing how the browser interpolates colors in between color stops. You can now control the color space that the interpolation happens in as well as (for "polar" color spaces) control whether hue angle interpolation happens clockwise or counterclockwise. You can read more about this in Mozilla's blog post about new CSS gradient features.

    With this release, esbuild will now automatically transform this syntax for older browsers in the target list. For example, here's a gradient that should appear as a rainbow in a browser that supports this new syntax:

    /* Original code */
    .rainbow-gradient {
      width: 100px;
      height: 100px;
      background: linear-gradient(in hsl longer hue, #7ff, #77f);
    }
    /* New output (with --target=chrome99) */
    .rainbow-gradient {
    width: 100px;
    height: 100px;
    background:
    linear-gradient(
    #77ffff,
    #77ffaa 12.5%,
    #77ff80 18.75%,
    #84ff77 21.88%,
    #99ff77 25%,
    #eeff77 37.5%,
    #fffb77 40.62%,
    #ffe577 43.75%,
    #ffbb77 50%,
    #ff9077 56.25%,
    #ff7b77 59.38%,
    #ff7788 62.5%,
    #ff77dd 75%,
    #ff77f2 78.12%,
    #f777ff 81.25%,
    #cc77ff 87.5%,
    #7777ff);
    }

    You can now use this syntax in your CSS source code and esbuild will automatically convert it to an equivalent gradient for older browsers. In addition, esbuild will now also transform "double position" and "transition hint" syntax for older browsers as appropriate:

    /* Original code */
    .stripes {
      width: 100px;
      height: 100px;
      background: linear-gradient(#e65 33%, #ff2 33% 67%, #99e 67%);

... (truncated)

Commits
  • 9edc9d4 publish 0.19.9 to npm
  • 791619e release notes: link to gradient tests
  • 83b4171 css: implement lowering of gradient syntax
  • 4a3b265 css: fix calc() inlining whitespace bug
  • 90989ec remove a stray log statement
  • f260285 css gradients: handle color transition hints
  • e4c55af css gradients: lower colors, fix double positions
  • a389c52 css: add lab() + lch() + oklab() + oklch()
  • b837f21 css: avoid overwriting manual fallback colors
  • 824ede6 css: simplify color() duplication fallback logic
  • Additional commits viewable in compare view

Updates eslint-plugin-vitest from 0.3.10 to 0.3.15

Release notes

Sourced from eslint-plugin-vitest's releases.

v0.3.15

No release notes provided.

v0.3.14

Features

v0.3.13

Features

  • vitest/require-local-test-context-for-concurrent-snapshots: add rule (#315) (ffce7e1)

What's Changed

Full Changelog: veritem/eslint-plugin-vitest@v0.3.12...v0.3.13

v0.3.12

Bug Fixes

  • packages: update packages (#298) (4ab7238)
  • vitest/no-done-callback: do not report accesssing of text context when test runs concurrently (#313) (b7eb2ce)

Features

  • engines: update minimum node version (9ff1c16)
Commits
  • be27d83 chore: release v0.3.15
  • c2be10a chore(docs) make import node test recommended (#318)
  • fc18ad2 chore: release v0.3.14
  • ccd7e88 feat: new rule no-import-node-test (#317)
  • 68c2b8f chore: release v0.3.13
  • bbedf7c chore(outdated docs): improve documentation (#316)
  • ffce7e1 feat(vitest/require-local-test-context-for-concurrent-snapshots): add rule (#...
  • 78864d2 chore: release v0.3.12
  • 32f7348 chore: release v0.3.11
  • d0e882e chore(packages): update vitest
  • Additional commits viewable in compare view

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 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 vitest from 1.0.1 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
Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
@types/node [>= 20.a, < 21]

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

| Package | From | To |
| --- | --- | --- |
| [@nihalgonsalves/esconfig](https://github.com/nihalgonsalves/esconfig) | `0.6.11` | `0.6.13` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.19.2` | `18.19.3` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.0.1` | `1.0.4` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `1.0.1` | `1.0.4` |
| [esbuild](https://github.com/evanw/esbuild) | `0.19.8` | `0.19.9` |
| [eslint-plugin-vitest](https://github.com/veritem/eslint-plugin-vitest) | `0.3.10` | `0.3.15` |
| [prettier](https://github.com/prettier/prettier) | `3.1.0` | `3.1.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.2` | `5.3.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.0.1` | `1.0.4` |


Updates `@nihalgonsalves/esconfig` from 0.6.11 to 0.6.13
- [Release notes](https://github.com/nihalgonsalves/esconfig/releases)
- [Changelog](https://github.com/nihalgonsalves/esconfig/blob/main/CHANGELOG.md)
- [Commits](nihalgonsalves/esconfig@v0.6.11...v0.6.13)

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

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

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

Updates `esbuild` from 0.19.8 to 0.19.9
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.19.8...v0.19.9)

Updates `eslint-plugin-vitest` from 0.3.10 to 0.3.15
- [Release notes](https://github.com/veritem/eslint-plugin-vitest/releases)
- [Commits](veritem/eslint-plugin-vitest@v0.3.10...v0.3.15)

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

Updates `typescript` from 5.3.2 to 5.3.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.3.2...v5.3.3)

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

---
updated-dependencies:
- dependency-name: "@nihalgonsalves/esconfig"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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-patch
  dependency-group: all
- dependency-name: "@vitest/ui"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  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-patch
  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 Dec 11, 2023
@nihalgonsalves nihalgonsalves merged commit 410e0d6 into main Dec 11, 2023
1 check passed
@nihalgonsalves nihalgonsalves deleted the dependabot/npm_and_yarn/all-f1585934bb branch December 11, 2023 20:53
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