Update all dependencies #34

Merged
kjuulh merged 1 commits from renovate/all into main 2023-03-20 19:02:44 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies minor 18.14.5 -> 18.15.3
autoprefixer devDependencies patch 10.4.13 -> 10.4.14
eslint (source) devDependencies minor 8.35.0 -> 8.36.0
harbor.server.kjuulh.io/kjuulh/git-log stage major 1677594633445 -> 1679333724947
prettier (source) devDependencies patch 2.8.4 -> 2.8.5
prettier-plugin-tailwindcss devDependencies patch 0.2.4 -> 0.2.5
react-markdown dependencies patch 8.0.5 -> 8.0.6
styled-components (source) dependencies patch 6.0.0-beta.12 -> 6.0.0-beta.13
typescript (source) devDependencies major 4.9.5 -> 5.0.2

Release Notes

postcss/autoprefixer

v10.4.14

Compare Source

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).
eslint/eslint

v8.36.0

Compare Source

Features

Bug Fixes

  • 92c1943 fix: correctly iterate files matched by glob patterns (#​16831) (Nitin Kumar)

Documentation

  • b98fdd4 docs: Update README (GitHub Actions Bot)
  • caf08ce docs: fix estree link in custom formatters docs (#​16967) (Milos Djermanovic)
  • 3398431 docs: Custom Parsers cleanup/expansion (#​16887) (Ben Perlmutter)
  • 19d3531 docs: Update README (GitHub Actions Bot)
  • b09a512 docs: detect and fix broken links (#​16837) (Nitin Kumar)

Chores

prettier/prettier

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
tailwindlabs/prettier-plugin-tailwindcss

v0.2.5

Compare Source

Fixed
  • Fix class sorting in capture liquid tag (#​131)
remarkjs/react-markdown

v8.0.6

Compare Source

styled-components/styled-components

v6.0.0-beta.13

Compare Source

yarn add styled-components@beta

Changed in this version

Breaking changes in v6

  • now using stylis v4 (if using stylis-plugin-rtl you'll need to upgrade to the newer version)
  • styled-components now provides its own types; if you installed @types/styled-components in the past, you'll want to remove it
  • dropped $as and $forwardedAs props (use as or forwardedAs)
  • dropped automatic prop filtering; use transient props ($ prefix) for stuff you don't want to be passed to child component / HTML
  • dropped deprecated withComponent API (87f511a); use "as" prop instead
  • node >= 14 needed

New Contributors (thank you!)

Full Changelog: https://github.com/styled-components/styled-components/compare/v6.0.0-beta.11...v6.0.0-beta.12

Microsoft/TypeScript

v5.0.2: TypeScript 5.0

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


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 | minor | [`18.14.5` -> `18.15.3`](https://renovatebot.com/diffs/npm/@types%2fnode/18.14.5/18.15.3) | | [autoprefixer](https://github.com/postcss/autoprefixer) | devDependencies | patch | [`10.4.13` -> `10.4.14`](https://renovatebot.com/diffs/npm/autoprefixer/10.4.13/10.4.14) | | [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | devDependencies | minor | [`8.35.0` -> `8.36.0`](https://renovatebot.com/diffs/npm/eslint/8.35.0/8.36.0) | | harbor.server.kjuulh.io/kjuulh/git-log | stage | major | `1677594633445` -> `1679333724947` | | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | patch | [`2.8.4` -> `2.8.5`](https://renovatebot.com/diffs/npm/prettier/2.8.4/2.8.5) | | [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | devDependencies | patch | [`0.2.4` -> `0.2.5`](https://renovatebot.com/diffs/npm/prettier-plugin-tailwindcss/0.2.4/0.2.5) | | [react-markdown](https://github.com/remarkjs/react-markdown) | dependencies | patch | [`8.0.5` -> `8.0.6`](https://renovatebot.com/diffs/npm/react-markdown/8.0.5/8.0.6) | | [styled-components](https://styled-components.com) ([source](https://github.com/styled-components/styled-components)) | dependencies | patch | [`6.0.0-beta.12` -> `6.0.0-beta.13`](https://renovatebot.com/diffs/npm/styled-components/6.0.0-beta.12/6.0.0-beta.13) | | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/Microsoft/TypeScript)) | devDependencies | major | [`4.9.5` -> `5.0.2`](https://renovatebot.com/diffs/npm/typescript/4.9.5/5.0.2) | --- ### Release Notes <details> <summary>postcss/autoprefixer</summary> ### [`v10.4.14`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#&#8203;10414) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.4.13...10.4.14) - Improved startup time and reduced JS bundle size (by Kārlis Gaņģis). </details> <details> <summary>eslint/eslint</summary> ### [`v8.36.0`](https://github.com/eslint/eslint/releases/tag/v8.36.0) [Compare Source](https://github.com/eslint/eslint/compare/v8.35.0...v8.36.0) #### Features - [`c89a485`](https://github.com/eslint/eslint/commit/c89a485c49450532ee3db74f2638429f1f37d0dd) feat: Add `checkJSDoc` option to multiline-comment-style ([#&#8203;16807](https://github.com/eslint/eslint/issues/16807)) (Laurent Cozic) - [`f5f5e11`](https://github.com/eslint/eslint/commit/f5f5e11bd5fd3daab9ccae41e270739c836c305e) feat: Serialize parsers/processors in flat config ([#&#8203;16944](https://github.com/eslint/eslint/issues/16944)) (Nicholas C. Zakas) - [`4799297`](https://github.com/eslint/eslint/commit/4799297ea582c81fd1e5623d32a7ddf7a7f3a126) feat: use [@&#8203;eslint-community](https://github.com/eslint-community) dependencies ([#&#8203;16784](https://github.com/eslint/eslint/issues/16784)) (Michaël De Boey) #### Bug Fixes - [`92c1943`](https://github.com/eslint/eslint/commit/92c1943ba73ea01e87086236e8736539b0eed558) fix: correctly iterate files matched by glob patterns ([#&#8203;16831](https://github.com/eslint/eslint/issues/16831)) (Nitin Kumar) #### Documentation - [`b98fdd4`](https://github.com/eslint/eslint/commit/b98fdd413a3b07b262bfce6f704c1c1bb8582770) docs: Update README (GitHub Actions Bot) - [`caf08ce`](https://github.com/eslint/eslint/commit/caf08ce0cc74917f7c0eec92d25fd784dc33ac4d) docs: fix estree link in custom formatters docs ([#&#8203;16967](https://github.com/eslint/eslint/issues/16967)) (Milos Djermanovic) - [`3398431`](https://github.com/eslint/eslint/commit/3398431574b903757bc78b08c8ed36b7b9fce8eb) docs: Custom Parsers cleanup/expansion ([#&#8203;16887](https://github.com/eslint/eslint/issues/16887)) (Ben Perlmutter) - [`19d3531`](https://github.com/eslint/eslint/commit/19d3531d9b54e1004318d28f9a6e18305c5bcc18) docs: Update README (GitHub Actions Bot) - [`b09a512`](https://github.com/eslint/eslint/commit/b09a512107249a4eb19ef5a37b0bd672266eafdb) docs: detect and fix broken links ([#&#8203;16837](https://github.com/eslint/eslint/issues/16837)) (Nitin Kumar) #### Chores - [`602b111`](https://github.com/eslint/eslint/commit/602b11121910a97ab2bc4a95a46dd0ccd0a89309) chore: upgrade [@&#8203;eslint/js](https://github.com/eslint/js)[@&#8203;8](https://github.com/8).36.0 ([#&#8203;16978](https://github.com/eslint/eslint/issues/16978)) (Milos Djermanovic) - [`43c2345`](https://github.com/eslint/eslint/commit/43c2345c27024aeab6127e6bbfd55c8b70bd317e) chore: package.json update for [@&#8203;eslint/js](https://github.com/eslint/js) release (ESLint Jenkins) - [`00afb84`](https://github.com/eslint/eslint/commit/00afb84e5039874c8745a45c953fceaf0c71c454) chore: upgrade [@&#8203;eslint/eslintrc](https://github.com/eslint/eslintrc)[@&#8203;2](https://github.com/2).0.1 ([#&#8203;16977](https://github.com/eslint/eslint/issues/16977)) (Milos Djermanovic) - [`698c5aa`](https://github.com/eslint/eslint/commit/698c5aad50e628ff00281dbc786e42de79834035) chore: upgrade espree@9.5.0 ([#&#8203;16976](https://github.com/eslint/eslint/issues/16976)) (Milos Djermanovic) - [`75acdd2`](https://github.com/eslint/eslint/commit/75acdd21c5ce7024252e9d41ed77d2f30587caac) chore: lint more js files in docs ([#&#8203;16964](https://github.com/eslint/eslint/issues/16964)) (Milos Djermanovic) - [`89d9844`](https://github.com/eslint/eslint/commit/89d9844b3151f09b5b21b6eeeda671009ec301e9) ci: bump actions/add-to-project from 0.4.0 to 0.4.1 ([#&#8203;16943](https://github.com/eslint/eslint/issues/16943)) (dependabot\[bot]) </details> <details> <summary>prettier/prettier</summary> ### [`v2.8.5`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;285) [Compare Source](https://github.com/prettier/prettier/compare/2.8.4...2.8.5) [diff](https://github.com/prettier/prettier/compare/2.8.4...2.8.5) ##### Support TypeScript 5.0 ([#&#8203;14391](https://github.com/prettier/prettier/pull/14391) by [@&#8203;fisker](https://github.com/fisker), [#&#8203;13819](https://github.com/prettier/prettier/pull/13819) by [@&#8203;fisker](https://github.com/fisker), [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki)) TypeScript 5.0 introduces two new syntactic features: - `const` modifiers for type parameters - `export type *` declarations ##### Add missing parentheses for decorator ([#&#8203;14393](https://github.com/prettier/prettier/pull/14393) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```jsx // Input class Person { @&#8203;(myDecoratorArray[0]) greet() {} } // Prettier 2.8.4 class Person { @&#8203;myDecoratorArray[0] greet() {} } // Prettier 2.8.5 class Person { @&#8203;(myDecoratorArray[0]) greet() {} } ``` ##### Add parentheses for `TypeofTypeAnnotation` to improve readability ([#&#8203;14458](https://github.com/prettier/prettier/pull/14458) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```tsx // Input type A = (typeof node.children)[]; // Prettier 2.8.4 type A = typeof node.children[]; // Prettier 2.8.5 type A = (typeof node.children)[]; ``` ##### Support `max_line_length=off` when parsing `.editorconfig` ([#&#8203;14516](https://github.com/prettier/prettier/pull/14516) by [@&#8203;josephfrazier](https://github.com/josephfrazier)) If an .editorconfig file is in your project and it sets `max_line_length=off` for the file you're formatting, it will be interpreted as a `printWidth` of `Infinity` rather than being ignored (which previously resulted in the default `printWidth` of 80 being applied, if not overridden by Prettier-specific configuration). <!-- prettier-ignore --> ```html <!-- Input --> <div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/> <!-- Prettier 2.8.4 --> <div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />; <!-- Prettier 2.8.5 --> <div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />; ``` </details> <details> <summary>tailwindlabs/prettier-plugin-tailwindcss</summary> ### [`v0.2.5`](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/HEAD/CHANGELOG.md#&#8203;025---2023-03-17) [Compare Source](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.2.4...v0.2.5) ##### Fixed - Fix class sorting in `capture` liquid tag ([#&#8203;131](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/131)) </details> <details> <summary>remarkjs/react-markdown</summary> ### [`v8.0.6`](https://github.com/remarkjs/react-markdown/blob/HEAD/changelog.md#&#8203;806---2023-03-20) [Compare Source](https://github.com/remarkjs/react-markdown/compare/8.0.5...8.0.6) - [`33ab015`](https://github.com/remarkjs/react-markdown/commit/33ab015) Update to TS 5\ by [**@&#8203;Methuselah96**](https://github.com/Methuselah96) in [#&#8203;734](https://github.com/remarkjs/react-markdown/issues/734) </details> <details> <summary>styled-components/styled-components</summary> ### [`v6.0.0-beta.13`](https://github.com/styled-components/styled-components/releases/tag/v6.0.0-beta.13) [Compare Source](https://github.com/styled-components/styled-components/compare/v6.0.0-beta.12...v6.0.0-beta.13) yarn add styled-components@beta #### Changed in this version - Remove "exports" entries by [@&#8203;SilviaPag95](https://github.com/SilviaPag95) in https://github.com/styled-components/styled-components/pull/3961 - Make styled components work when the Object prototype is frozen by [@&#8203;jportner](https://github.com/jportner) in https://github.com/styled-components/styled-components/pull/3963 #### Breaking changes in v6 - now using `stylis` v4 (if using `stylis-plugin-rtl` you'll need to upgrade to the newer version) - styled-components now provides its own types; if you installed `@types/styled-components` in the past, you'll want to remove it - dropped `$as` and `$forwardedAs` props (use `as` or `forwardedAs`) - dropped automatic prop filtering; use transient props (`$` prefix) for stuff you don't want to be passed to child component / HTML - dropped deprecated `withComponent` API ([`87f511a`](https://github.com/styled-components/styled-components/commit/87f511a228e5b13b1ff70a416409e0705e5bf456)); use "as" prop instead - node >= 14 needed #### New Contributors (thank you!) - [@&#8203;SilviaPag95](https://github.com/SilviaPag95) made their first contribution in https://github.com/styled-components/styled-components/pull/3961 - [@&#8203;jportner](https://github.com/jportner) made their first contribution in https://github.com/styled-components/styled-components/pull/3963 **Full Changelog**: https://github.com/styled-components/styled-components/compare/v6.0.0-beta.11...v6.0.0-beta.12 </details> <details> <summary>Microsoft/TypeScript</summary> ### [`v5.0.2`](https://github.com/microsoft/TypeScript/releases/tag/v5.0.2): TypeScript 5.0 [Compare Source](https://github.com/Microsoft/TypeScript/compare/v4.9.5...v5.0.2) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/). For the complete list of fixed issues, check out the - [fixed issues query for Typescript v5.0.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+). - [fixed issues query for Typescript v5.0.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+). - [fixed issues query for Typescript v5.0.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) </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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTQuNiIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh changed title from Update dependency @types/node to v18.14.6 to Update all dependencies 2023-03-05 20:16:58 +01:00
kjuulh force-pushed renovate/all from ab1400f848 to 38f022aad6 2023-03-05 20:16:59 +01:00 Compare
kjuulh changed title from Update all dependencies to Update dependency @types/node to v18.14.6 2023-03-08 01:40:30 +01:00
kjuulh changed title from Update dependency @types/node to v18.14.6 to Update all dependencies 2023-03-08 20:09:38 +01:00
kjuulh force-pushed renovate/all from 38f022aad6 to d3dbe7bb0a 2023-03-09 21:26:47 +01:00 Compare
kjuulh force-pushed renovate/all from d3dbe7bb0a to 1de0f1d081 2023-03-10 16:39:07 +01:00 Compare
kjuulh force-pushed renovate/all from 1de0f1d081 to 0f987a8556 2023-03-10 23:18:59 +01:00 Compare
kjuulh force-pushed renovate/all from 0f987a8556 to 71152dfba3 2023-03-13 18:18:31 +01:00 Compare
kjuulh force-pushed renovate/all from 71152dfba3 to 8e920f1b5a 2023-03-13 19:05:17 +01:00 Compare
kjuulh force-pushed renovate/all from 8e920f1b5a to e04ddef844 2023-03-14 18:29:40 +01:00 Compare
kjuulh force-pushed renovate/all from e04ddef844 to 704e2ce5f3 2023-03-16 22:03:37 +01:00 Compare
kjuulh force-pushed renovate/all from 704e2ce5f3 to dd2bec2303 2023-03-16 22:58:49 +01:00 Compare
kjuulh force-pushed renovate/all from dd2bec2303 to 21ed740ee3 2023-03-18 11:04:42 +01:00 Compare
kjuulh force-pushed renovate/all from 21ed740ee3 to 67dd579a5d 2023-03-19 12:18:27 +01:00 Compare
kjuulh force-pushed renovate/all from 67dd579a5d to ecd22f07b0 2023-03-19 13:01:16 +01:00 Compare
kjuulh force-pushed renovate/all from ecd22f07b0 to 394ae2ea97 2023-03-20 18:39:28 +01:00 Compare
kjuulh merged commit 394ae2ea97 into main 2023-03-20 19:02:44 +01:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/microblog#34
No description provided.