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

Bump the minor group with 7 updates #348

Merged
merged 1 commit into from
Dec 10, 2023

Conversation

dependabot[bot]
Copy link

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

Bumps the minor group with 7 updates:

Package From To
@stylistic/eslint-plugin-ts 1.4.1 1.5.0
@types/chrome 0.0.253 0.0.254
@types/node 20.10.3 20.10.4
esbuild 0.19.8 0.19.9
eslint-plugin-vitest 0.3.10 0.3.12
html-validate 8.7.3 8.7.4
typescript 5.2.2 5.3.3

Updates @stylistic/eslint-plugin-ts from 1.4.1 to 1.5.0

Release notes

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

v1.5.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v1.5.0-beta.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • b1a203b chore: release v1.5.0
  • e313228 chore: update deps
  • 5243450 chore: release v1.5.0-beta.0
  • fb6d495 chore: update deps
  • 58f224f feat(configs): enable extra rules in the configs factory (#205)
  • 59ff2a2 fix(ts/quotes): allow backtick literals, but forbid backtick import assertion...
  • e54fecb docs: render whitespaces in code snippet (#182)
  • See full diff in compare view

Updates @types/chrome from 0.0.253 to 0.0.254

Commits

Updates @types/node from 20.10.3 to 20.10.4

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.12

Release notes

Sourced from eslint-plugin-vitest's releases.

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
  • 78864d2 chore: release v0.3.12
  • 32f7348 chore: release v0.3.11
  • d0e882e chore(packages): update vitest
  • 6f9beb3 chore(cleanup): remove unused files
  • 7ef6098 Feat/shorten o done callback (#314)
  • b7eb2ce fix(vitest/no-done-callback): do not report accesssing of text context when t...
  • 864205b chore(deps-dev): bump tsx from 4.4.0 to 4.5.0 (#301)
  • 6282417 chore(deps-dev): bump @​types/node from 20.9.5 to 20.10.0 (#302)
  • 6b9b30d chore(deps-dev): bump @​types/node from 20.9.4 to 20.9.5 (#299)
  • 8875f89 chore(deps-dev): bump tsx from 4.3.0 to 4.4.0 (#300)
  • Additional commits viewable in compare view

Updates html-validate from 8.7.3 to 8.7.4

Release notes

Sourced from html-validate's releases.

v8.7.4

8.7.4 (2023-12-10)

Bug Fixes

  • deps: pin @​sidvind/better-ajv-errors (94f778b), closes #231
  • deps: support vitest v1 (4cc4d23)
Commits
  • 64adcef chore(release): 8.7.4
  • 8428156 chore(deps): update dependency @​sidvind/better-ajv-errors to 2.1.3
  • 948e6b5 chore(deps): remove reference
  • 88d3620 refactor: move most of config contructor to static method
  • d776242 style: npx sort-package-json
  • 4d47942 build(deps-dev): bump vite from 4.4.9 to 4.4.12
  • efdf539 chore(deps): force marked to latest version
  • 9786766 chore(deps): update node requirement
  • 590fabd build: use latest node again
  • 94f778b fix(deps): pin @​sidvind/better-ajv-errors
  • Additional commits viewable in compare view

Updates typescript from 5.2.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:

TypeScript 5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm.

Commits

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

@dependabot dependabot bot requested a review from a team as a code owner December 10, 2023 08:22
@dependabot dependabot bot added the area/dependencies The issue or PR is related to dependencies label Dec 10, 2023
djahandarie
djahandarie previously approved these changes Dec 10, 2023
@djahandarie
Copy link
Collaborator

@dependabot rebase

Copy link

github-actions bot commented Dec 10, 2023

✔️ No visual differences introduced by this PR.

View Playwright Report (note: open the "playwright-report" artifact)

Bumps the minor group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@stylistic/eslint-plugin-ts](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin-ts) | `1.4.1` | `1.5.0` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.253` | `0.0.254` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.10.3` | `20.10.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.12` |
| [html-validate](https://gitlab.com/html-validate/html-validate) | `8.7.3` | `8.7.4` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.3.3` |


Updates `@stylistic/eslint-plugin-ts` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v1.5.0/packages/eslint-plugin-ts)

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

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

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.12
- [Release notes](https://github.com/veritem/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v0.3.10...v0.3.12)

Updates `html-validate` from 8.7.3 to 8.7.4
- [Release notes](https://gitlab.com/html-validate/html-validate/tags)
- [Commits](https://gitlab.com/html-validate/html-validate/compare/v8.7.3...v8.7.4)

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

---
updated-dependencies:
- dependency-name: "@stylistic/eslint-plugin-ts"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: html-validate
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/minor-80353b373c branch from ad6129e to c723b85 Compare December 10, 2023 08:29
@djahandarie djahandarie added this pull request to the merge queue Dec 10, 2023
Merged via the queue into master with commit 7cea3d9 Dec 10, 2023
5 checks passed
@djahandarie djahandarie deleted the dependabot/npm_and_yarn/minor-80353b373c branch December 10, 2023 08:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/dependencies The issue or PR is related to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant