Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

build(deps-dev): bump the ui-deps group in /src/ui with 6 updates #659

Merged
merged 2 commits into from
Dec 15, 2023

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the ui-deps group in /src/ui with 6 updates:

Package From To
esbuild 0.19.8 0.19.9
globals 13.23.0 13.24.0
postcss-cli 10.1.0 11.0.0
prettier 3.1.0 3.1.1
prettier-plugin-tailwindcss 0.5.7 0.5.9
tailwindcss 3.3.5 3.3.6

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 globals from 13.23.0 to 13.24.0

Release notes

Sourced from globals's releases.

v13.24.0

  • Add WebXR classes to browser (#206) 6736d9c

sindresorhus/globals@v13.23.0...v13.24.0

Commits

Updates postcss-cli from 10.1.0 to 11.0.0

Changelog

Sourced from postcss-cli's changelog.

11.0.0 / 2023-12-05

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 prettier-plugin-tailwindcss from 0.5.7 to 0.5.9

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.5.9

Fixed

  • Fixed location of embedded preflight CSS file (#231)

v0.5.8

Added

  • Re-enable support for prettier-plugin-marko (#229)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.5.9] - 2023-12-05

Fixed

  • Fixed location of embedded preflight CSS file (#231)

[0.5.8] - 2023-12-05

Added

  • Re-enable support for prettier-plugin-marko (#229)
Commits

Updates tailwindcss from 3.3.5 to 3.3.6

Release notes

Sourced from tailwindcss's releases.

v3.3.6

Fixed

  • Don’t add spaces to negative numbers following a comma (#12324)
  • Don't emit @config in CSS when watching via the CLI (#12327)
  • Improve types for resolveConfig (#12272)
  • Ensure configured font-feature-settings for mono are included in Preflight (#12342)
  • Improve candidate detection in minified JS arrays (without spaces) (#12396)
  • Don't crash when given applying a variant to a negated version of a simple utility (#12514)
  • Fix support for slashes in arbitrary modifiers (#12515)
  • Fix source maps of variant utilities that come from an @layer rule (#12508)
  • Fix loading of built-in plugins when using an ESM or TypeScript config with the Standalone CLI (#12506)
Changelog

Sourced from tailwindcss's changelog.

[3.3.6] - 2023-12-04

Fixed

  • Improve types for resolveConfig (#12272)
  • Don’t add spaces to negative numbers following a comma (#12324)
  • Don't emit @config in CSS when watching via the CLI (#12327)
  • Ensure configured font-feature-settings for mono are included in Preflight (#12342)
  • Improve candidate detection in minified JS arrays (without spaces) (#12396)
  • Don't crash when given applying a variant to a negated version of a simple utility (#12514)
  • Fix support for slashes in arbitrary modifiers (#12515)
  • Fix source maps of variant utilities that come from an @layer rule (#12508)
  • Fix loading of built-in plugins when using an ESM or TypeScript config with the Standalone CLI (#12506)
Commits
  • 3125829 3.3.6
  • 16fd9ff Fix candidate detection regex
  • 89470d2 Improve candidate detection in minified JS arrays (without spaces) (#12396)
  • e26a1ba Fix loading of built-in plugins when using an ESM or TypeScript config with t...
  • 2dcb1fc Fix source maps of variant utilities that come from an @layer rule (#12508)
  • adb6f15 Fix generation of utilities that use slashes in arbitrary modifiers (#12515)
  • bbfb5a3 Don't crash when given applying a variant to a negated version of a simple ut...
  • 3713207 Fix code style
  • da0ee9c Remove unused import
  • 817c466 Ensure configured font-feature-settings for mono are included in Prefligh...
  • 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 ui-deps group in /src/ui with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.19.8` | `0.19.9` |
| [globals](https://github.com/sindresorhus/globals) | `13.23.0` | `13.24.0` |
| [postcss-cli](https://github.com/postcss/postcss-cli) | `10.1.0` | `11.0.0` |
| [prettier](https://github.com/prettier/prettier) | `3.1.0` | `3.1.1` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.7` | `0.5.9` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.3.5` | `3.3.6` |


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 `globals` from 13.23.0 to 13.24.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v13.23.0...v13.24.0)

Updates `postcss-cli` from 10.1.0 to 11.0.0
- [Release notes](https://github.com/postcss/postcss-cli/releases)
- [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-cli@10.1.0...11.0.0)

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 `prettier-plugin-tailwindcss` from 0.5.7 to 0.5.9
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.7...v0.5.9)

Updates `tailwindcss` from 3.3.5 to 3.3.6
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.3.5...v3.3.6)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-deps
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ui-deps
- dependency-name: postcss-cli
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: ui-deps
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-deps
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-deps
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ui-deps
...

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
@tomrtk tomrtk merged commit cea1015 into master Dec 15, 2023
10 checks passed
@tomrtk tomrtk deleted the dependabot/npm_and_yarn/src/ui/ui-deps-b27b9ace49 branch December 15, 2023 16:47
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
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

2 participants