Update all dependencies #17

Merged
kjuulh merged 1 commits from renovate/all into main 2022-12-09 18:46:35 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies patch 18.11.9 -> 18.11.12
@types/react (source) devDependencies patch 18.0.25 -> 18.0.26
eslint (source) devDependencies minor 8.28.0 -> 8.29.0
harbor.server.kjuulh.io/kjuulh/git-log stage major 1669313747260 -> 1670605487673
prettier (source) devDependencies patch 2.8.0 -> 2.8.1
prettier-plugin-tailwindcss devDependencies patch 0.2.0 -> 0.2.1
react-markdown dependencies patch 8.0.3 -> 8.0.4
typescript (source) devDependencies patch 4.9.3 -> 4.9.4

Release Notes

eslint/eslint

v8.29.0

Compare Source

Features

  • 49a07c5 feat: add allowParensAfterCommentPattern option to no-extra-parens (#​16561) (Nitin Kumar)
  • e6a865d feat: prefer-named-capture-group add suggestions (#​16544) (Josh Goldberg)
  • a91332b feat: In no-invalid-regexp validate flags also for non-literal patterns (#​16583) (trosos)

Documentation

Chores

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)
remarkjs/react-markdown

v8.0.4

Compare Source

Full Changelog: https://github.com/remarkjs/react-markdown/compare/8.0.3...8.0.4

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.12`](https://renovatebot.com/diffs/npm/@types%2fnode/18.11.9/18.11.12) | | [@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) | | [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | devDependencies | minor | [`8.28.0` -> `8.29.0`](https://renovatebot.com/diffs/npm/eslint/8.28.0/8.29.0) | | harbor.server.kjuulh.io/kjuulh/git-log | stage | major | `1669313747260` -> `1670605487673` | | [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 | patch | [`0.2.0` -> `0.2.1`](https://renovatebot.com/diffs/npm/prettier-plugin-tailwindcss/0.2.0/0.2.1) | | [react-markdown](https://github.com/remarkjs/react-markdown) | dependencies | patch | [`8.0.3` -> `8.0.4`](https://renovatebot.com/diffs/npm/react-markdown/8.0.3/8.0.4) | | [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>eslint/eslint</summary> ### [`v8.29.0`](https://github.com/eslint/eslint/releases/tag/v8.29.0) [Compare Source](https://github.com/eslint/eslint/compare/v8.28.0...v8.29.0) #### Features - [`49a07c5`](https://github.com/eslint/eslint/commit/49a07c52c5af7e98d161ff4acd44bbbe0aa6383b) feat: add `allowParensAfterCommentPattern` option to no-extra-parens ([#&#8203;16561](https://github.com/eslint/eslint/issues/16561)) (Nitin Kumar) - [`e6a865d`](https://github.com/eslint/eslint/commit/e6a865d70aed9e1c07be712e40c38da1a5dda849) feat: `prefer-named-capture-group` add suggestions ([#&#8203;16544](https://github.com/eslint/eslint/issues/16544)) (Josh Goldberg) - [`a91332b`](https://github.com/eslint/eslint/commit/a91332b8bd9adfa2aa8110071bdf73f56d400050) feat: In no-invalid-regexp validate flags also for non-literal patterns ([#&#8203;16583](https://github.com/eslint/eslint/issues/16583)) (trosos) #### Documentation - [`0311d81`](https://github.com/eslint/eslint/commit/0311d81834d675b8ae7cc92a460b37115edc4018) docs: Configuring Plugins page intro, page tweaks, and rename ([#&#8203;16534](https://github.com/eslint/eslint/issues/16534)) (Ben Perlmutter) - [`57089b1`](https://github.com/eslint/eslint/commit/57089b1ede624452bc94404b6e60d01d48cfd468) docs: add a property assignment example for camelcase rule ([#&#8203;16605](https://github.com/eslint/eslint/issues/16605)) (Milos Djermanovic) - [`b6ab030`](https://github.com/eslint/eslint/commit/b6ab030897d2e8b314b33a6502346a4ac45bb8da) docs: add docs codeowners ([#&#8203;16601](https://github.com/eslint/eslint/issues/16601)) (Strek) - [`6380c87`](https://github.com/eslint/eslint/commit/6380c87c563be5dc78ce0ddd5c7409aaf71692bb) docs: fix sitemap and feed ([#&#8203;16592](https://github.com/eslint/eslint/issues/16592)) (Milos Djermanovic) - [`ade621d`](https://github.com/eslint/eslint/commit/ade621dd12fcd3b65644bb3468248cc040db756c) docs: perf debounce the search query ([#&#8203;16586](https://github.com/eslint/eslint/issues/16586)) (Shanmughapriyan S) - [`fbcf3ab`](https://github.com/eslint/eslint/commit/fbcf3abd54dd20aec3c695cacece56493633c97f) docs: fix searchbar clear button ([#&#8203;16585](https://github.com/eslint/eslint/issues/16585)) (Shanmughapriyan S) - [`f894035`](https://github.com/eslint/eslint/commit/f89403553b31d24f4fc841424cc7dcb8c3ef689f) docs: HTTPS link to yeoman.io ([#&#8203;16582](https://github.com/eslint/eslint/issues/16582)) (Christian Oliff) - [`de12b26`](https://github.com/eslint/eslint/commit/de12b266f2aa6f063d0af888b8f0de41d09ec33f) docs: Update configuration file pages ([#&#8203;16509](https://github.com/eslint/eslint/issues/16509)) (Ben Perlmutter) - [`1ae9f20`](https://github.com/eslint/eslint/commit/1ae9f2067442434c6ccc6b41703624b302d17c67) docs: update correct code examples for `no-extra-parens` rule ([#&#8203;16560](https://github.com/eslint/eslint/issues/16560)) (Nitin Kumar) #### Chores - [`7628403`](https://github.com/eslint/eslint/commit/7628403a57d9d9b4e2cb2b36309170900f58832e) chore: add discord channel link ([#&#8203;16590](https://github.com/eslint/eslint/issues/16590)) (Amaresh S M) - [`f5808cb`](https://github.com/eslint/eslint/commit/f5808cb51529174a67b4938223f06435ad6d5118) chore: fix rule doc headers check ([#&#8203;16564](https://github.com/eslint/eslint/issues/16564)) (Milos Djermanovic) </details> <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)) </details> <details> <summary>remarkjs/react-markdown</summary> ### [`v8.0.4`](https://github.com/remarkjs/react-markdown/releases/tag/8.0.4) [Compare Source](https://github.com/remarkjs/react-markdown/compare/8.0.3...8.0.4) - [`9b20440`](https://github.com/remarkjs/react-markdown/commit/9b20440) Fix type of `td`, `th` props by [@&#8203;lucasassisrosa](https://github.com/lucasassisrosa) in https://github.com/remarkjs/react-markdown/pull/714 - [`cfe075b`](https://github.com/remarkjs/react-markdown/commit/cfe075b) Add clarification of `alt` on `img` in docs by [@&#8203;cballenar](https://github.com/cballenar) in https://github.com/remarkjs/react-markdown/pull/692 **Full Changelog**: https://github.com/remarkjs/react-markdown/compare/8.0.3...8.0.4 </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 force-pushed renovate/all from 15b82fdbf1 to 3c5e45ae3d 2022-12-02 15:59:11 +01:00 Compare
kjuulh force-pushed renovate/all from 3c5e45ae3d to cb56f6a532 2022-12-02 22:55:29 +01:00 Compare
kjuulh force-pushed renovate/all from cb56f6a532 to 9d91f1c19f 2022-12-05 21:30:35 +01:00 Compare
kjuulh force-pushed renovate/all from 9d91f1c19f to a01c5c9b3f 2022-12-07 18:29:37 +01:00 Compare
kjuulh force-pushed renovate/all from a01c5c9b3f to c887e499ed 2022-12-08 23:52:45 +01:00 Compare
kjuulh force-pushed renovate/all from c887e499ed to 3d4864f4ae 2022-12-09 18:27:00 +01:00 Compare
kjuulh merged commit 3d4864f4ae into main 2022-12-09 18:46:35 +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/microblog#17
No description provided.