Update all dependencies #23

Merged
kjuulh merged 1 commits from renovate/all into main 2022-12-10 20:45:39 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies patch 18.11.9 -> 18.11.13
@types/react (source) devDependencies patch 18.0.25 -> 18.0.26
@types/uuid (source) devDependencies major 8.3.4 -> 9.0.0
prettier (source) devDependencies patch 2.8.0 -> 2.8.1
prettier-plugin-tailwindcss devDependencies minor 0.1.13 -> 0.2.1
sass devDependencies patch 1.56.1 -> 1.56.2
typescript (source) devDependencies patch 4.9.3 -> 4.9.4

Release Notes

prettier/prettier

v2.8.1

Compare Source

diff

Fix SCSS map in arguments (#​9184 by @​agamkrbit)
// Input
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
  ),
  $display-breakpoints
);

// Prettier 2.8.0
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, " sm
      ")-1})",
  ),
  $display-breakpoints
);

// Prettier 2.8.1
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
  ),
  $display-breakpoints
);
Support auto accessors syntax (#​13919 by @​sosukesuzuki)

Support for Auto Accessors Syntax landed in TypeScript 4.9.

(Doesn't work well with babel-ts parser)

class Foo {
  accessor foo: number = 3;
}
tailwindlabs/prettier-plugin-tailwindcss

v0.2.1

Compare Source

Fixed
  • Fix support for latest Shopify Liquid plugin (#​109)

v0.2.0

Compare Source

Changed
  • Don't bundle prettier-plugin-svelte (#​101)
Added
  • Improve compatibility with other Prettier plugins (#​101, #​102)
sass/dart-sass

v1.56.2

Compare Source

Embedded Sass
Microsoft/TypeScript

v4.9.4: TypeScript 4.9.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Changes:

This list of changes was auto generated.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`18.11.9` -> `18.11.13`](https://renovatebot.com/diffs/npm/@types%2fnode/18.11.9/18.11.13) | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`18.0.25` -> `18.0.26`](https://renovatebot.com/diffs/npm/@types%2freact/18.0.25/18.0.26) | | [@types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | major | [`8.3.4` -> `9.0.0`](https://renovatebot.com/diffs/npm/@types%2fuuid/8.3.4/9.0.0) | | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | patch | [`2.8.0` -> `2.8.1`](https://renovatebot.com/diffs/npm/prettier/2.8.0/2.8.1) | | [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | devDependencies | minor | [`0.1.13` -> `0.2.1`](https://renovatebot.com/diffs/npm/prettier-plugin-tailwindcss/0.1.13/0.2.1) | | [sass](https://github.com/sass/dart-sass) | devDependencies | patch | [`1.56.1` -> `1.56.2`](https://renovatebot.com/diffs/npm/sass/1.56.1/1.56.2) | | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/Microsoft/TypeScript)) | devDependencies | patch | [`4.9.3` -> `4.9.4`](https://renovatebot.com/diffs/npm/typescript/4.9.3/4.9.4) | --- ### Release Notes <details> <summary>prettier/prettier</summary> ### [`v2.8.1`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;281) [Compare Source](https://github.com/prettier/prettier/compare/2.8.0...2.8.1) [diff](https://github.com/prettier/prettier/compare/2.8.0...2.8.1) ##### Fix SCSS map in arguments ([#&#8203;9184](https://github.com/prettier/prettier/pull/9184) by [@&#8203;agamkrbit](https://github.com/agamkrbit)) <!-- prettier-ignore --> ```scss // Input $display-breakpoints: map-deep-merge( ( "print-only": "only print", "screen-only": "only screen", "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})", ), $display-breakpoints ); // Prettier 2.8.0 $display-breakpoints: map-deep-merge( ( "print-only": "only print", "screen-only": "only screen", "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, " sm ")-1})", ), $display-breakpoints ); // Prettier 2.8.1 $display-breakpoints: map-deep-merge( ( "print-only": "only print", "screen-only": "only screen", "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})", ), $display-breakpoints ); ``` ##### Support auto accessors syntax ([#&#8203;13919](https://github.com/prettier/prettier/pull/13919) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki)) Support for [Auto Accessors Syntax](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#auto-accessors-in-classes) landed in TypeScript 4.9. (Doesn't work well with `babel-ts` parser) <!-- prettier-ignore --> ```tsx class Foo { accessor foo: number = 3; } ``` </details> <details> <summary>tailwindlabs/prettier-plugin-tailwindcss</summary> ### [`v0.2.1`](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/HEAD/CHANGELOG.md#&#8203;021---2022-12-08) [Compare Source](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.2.0...v0.2.1) ##### Fixed - Fix support for latest Shopify Liquid plugin ([#&#8203;109](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/109)) ### [`v0.2.0`](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/HEAD/CHANGELOG.md#&#8203;020---2022-11-25) [Compare Source](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.1.13...v0.2.0) ##### Changed - Don't bundle `prettier-plugin-svelte` ([#&#8203;101](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/101)) ##### Added - Improve compatibility with other Prettier plugins ([#&#8203;101](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/101), [#&#8203;102](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/102)) </details> <details> <summary>sass/dart-sass</summary> ### [`v1.56.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#&#8203;1562) [Compare Source](https://github.com/sass/dart-sass/compare/1.56.1...1.56.2) ##### Embedded Sass - The embedded compiler now supports version 1.2.0 of [the embedded protocol](https://github.com/sass/embedded-protocol). </details> <details> <summary>Microsoft/TypeScript</summary> ### [`v4.9.4`](https://github.com/microsoft/TypeScript/releases/tag/v4.9.4): TypeScript 4.9.4 [Compare Source](https://github.com/Microsoft/TypeScript/compare/v4.9.3...v4.9.4) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9). For the complete list of fixed issues, check out the - [fixed issues query for Typescript v4.9.4](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+4.9.4%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) #### Changes: - [`e286821`](https://github.com/Microsoft/TypeScript/commit/e2868216f637e875a74c675845625eb15dcfe9a2) Bump version to 4.9.4 and LKG. - [`eb5419f`](https://github.com/Microsoft/TypeScript/commit/eb5419fc8d980859b98553586dfb5f40d811a745) Cherry-pick [#&#8203;51704](https://github.com/Microsoft/TypeScript/issues/51704) to release 4.9 ([#&#8203;51712](https://github.com/Microsoft/TypeScript/issues/51712)) - [`b4d382b`](https://github.com/Microsoft/TypeScript/commit/b4d382b9b12460adf2da4cc0d1429cf19f8dc8be) Cherry-pick changes for narrowing to tagged literal types. - [`e7a02f4`](https://github.com/Microsoft/TypeScript/commit/e7a02f43fce47e1a39259ada5460bcc33c8e98b5) Port of [#&#8203;51626](https://github.com/Microsoft/TypeScript/issues/51626) and [#&#8203;51689](https://github.com/Microsoft/TypeScript/issues/51689) to release-4.9 ([#&#8203;51627](https://github.com/Microsoft/TypeScript/issues/51627)) - [`1727912`](https://github.com/Microsoft/TypeScript/commit/1727912f0437a7f367d90040fc4b0b4f3efd017a) Cherry-pick fix around `visitEachChild` to release-4.9. ([#&#8203;51544](https://github.com/Microsoft/TypeScript/issues/51544)) This list of changes was [auto generated](https://typescript.visualstudio.com/cf7ac146-d525-443c-b23c-0d58337efebc/\_release?releaseId=117&\_a=release-summary). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yMy4xIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9-->
kjuulh changed title from Update dependency prettier-plugin-tailwindcss to v0.2.0 to Update all dependencies 2022-12-01 20:37:49 +01:00
kjuulh force-pushed renovate/all from 6493ba2e51 to b388b62eaa 2022-12-01 20:37:50 +01:00 Compare
kjuulh force-pushed renovate/all from b388b62eaa to a59e337dab 2022-12-02 16:05:48 +01:00 Compare
kjuulh force-pushed renovate/all from a59e337dab to 83ad26003c 2022-12-05 21:16:28 +01:00 Compare
kjuulh force-pushed renovate/all from 83ad26003c to 9a4ecc0ebc 2022-12-07 18:36:09 +01:00 Compare
kjuulh force-pushed renovate/all from 9a4ecc0ebc to 7d5be92ba8 2022-12-09 00:00:40 +01:00 Compare
kjuulh force-pushed renovate/all from 7d5be92ba8 to a47c56fcb4 2022-12-10 20:21:38 +01:00 Compare
kjuulh merged commit a47c56fcb4 into main 2022-12-10 20:45:39 +01:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/wishlist-client#23
No description provided.