Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

chore(deps): update devdependencies (non-major) (patch) #239

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 22.10.0 -> 22.10.9 age adoption passing confidence
@types/react (source) 18.3.12 -> 18.3.18 age adoption passing confidence
@types/react-dom (source) 18.3.1 -> 18.3.5 age adoption passing confidence
cypress (source) 13.16.0 -> 13.16.1 age adoption passing confidence
eslint-plugin-react-refresh 0.4.14 -> 0.4.18 age adoption passing confidence
i18next (source) 24.0.2 -> 24.0.5 age adoption passing confidence
prettier (source) 3.4.1 -> 3.4.2 age adoption passing confidence
react-i18next 15.1.2 -> 15.1.4 age adoption passing confidence
react-router-dom (source) 7.0.1 -> 7.0.2 age adoption passing confidence
typescript (source) 5.7.2 -> 5.7.3 age adoption passing confidence
vite (source) 5.4.11 -> 5.4.14 age adoption passing confidence

Release Notes

cypress-io/cypress (cypress)

v13.16.1

Compare Source

Changelog: https://docs.cypress.io/app/references/changelog#13-16-1

ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.4.18

Compare Source

ESM/CJS interop is the worth that happend to this ecosystem, this is all I have to say.

v0.4.17

Compare Source

  • Fix detection of local components to not generate warning on for variable inside JSX files that follow React component naming (fixes #​75)
  • Update types to not require extra unnecessary .default property access under TS node16 module resolution (fixes #​70)

v0.4.16

Compare Source

Fix CJS/ESM interop issue. Sorry everyone for the trouble.

v0.4.15

Compare Source

Add support for custom HOCs (#​60)

By default, the rule only knows that memo & forwardRef function calls with return a React component. With this option, you can also allow extra function names like Mobx observer to make this code valid:

const Foo = () => <></>;
export default observer(Foo);
{
  "react-refresh/only-export-components": [
    "error",
    { "customHOCs": ["observer"] }
  ]
}

Thanks @​HorusGoul!

Add recommended config and simple types (#​67)

You can now add the recommended config to your ESLint config like this:

import reactRefresh from "eslint-plugin-react-refresh";

export default [
  /* Main config */
  reactRefresh.configs.recommended, // Or reactRefresh.configs.vite for Vite users
];

To follow ESLint recommandations, the rule is added with the error severity.

Some simple types ensure that people typecheking their config won't need @ts-expect-error anymore.

Bump ESLint peer dependency to 8.40

This was actually done by mistake in the previous release when moving from a deprecated API to a new one.

Given that ESLint 8 is officialy end-of-life and the only report (#​56) didn't get likes, I'm going forward and documenting the expected minimum version from ESLin in the package JSON so that people can get warning from their package manager.

i18next/i18next (i18next)

v24.0.5

Compare Source

  • remove extra log for 2268

v24.0.4

Compare Source

  • simplify fix: incorrect locale detected 2268

v24.0.3

Compare Source

  • fix: incorrect locale detected 2268
  • fix: Intl.getCanonicalLocales throws with custom regions 2267
prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;
i18next/react-i18next (react-i18next)

v15.1.4

Compare Source

  • Fix: warning each child should have a unique key 1820

v15.1.3

Compare Source

  • fix: Self-closing REACT components in translation strings should not attempt to replace the component's children 1815 1816
remix-run/react-router (react-router-dom)

v7.0.2

Compare Source

Patch Changes
microsoft/TypeScript (typescript)

v5.7.3

Compare Source

vitejs/vite (vite)

v5.4.14

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.13

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.12

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "* 0-4,22-23 * * 1-5,* * * * 0,6" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 25, 2024
@renovate renovate bot changed the title chore(deps): update dependency vite to v5.1.7 chore(deps): update dependency vite to v5.1.7 - autoclosed Mar 25, 2024
@renovate renovate bot closed this Mar 25, 2024
@renovate renovate bot deleted the renovate/patch-devdependencies-(non-major) branch March 25, 2024 07:36
@renovate renovate bot changed the title chore(deps): update dependency vite to v5.1.7 - autoclosed chore(deps): update dependency vite to v5.1.7 Mar 25, 2024
@renovate renovate bot reopened this Mar 25, 2024
@renovate renovate bot restored the renovate/patch-devdependencies-(non-major) branch March 25, 2024 12:05
@renovate renovate bot changed the title chore(deps): update dependency vite to v5.1.7 chore(deps): update dependency @types/react to v18.2.70 Mar 25, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from 2d15a70 to 65792c0 Compare March 26, 2024 12:03
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v18.2.70 chore(deps): update dependency @types/react to v18.2.71 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 65792c0 to d146e11 Compare March 26, 2024 19:25
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v18.2.71 chore(deps): update dependency @types/react to v18.2.72 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from d146e11 to 3b93d49 Compare March 27, 2024 14:43
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v18.2.72 chore(deps): update dependency @types/react to v18.2.73 Mar 27, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 3b93d49 to 97cdc6a Compare March 27, 2024 19:34
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v18.2.73 chore(deps): update devdependencies (non-major) (patch) Mar 28, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 4 times, most recently from dbb9edb to ba09ae9 Compare April 9, 2024 00:40
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 6 times, most recently from 629f655 to 5cc2035 Compare April 16, 2024 07:58
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 3 times, most recently from 5d0c110 to c53619a Compare April 25, 2024 16:04
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 5 times, most recently from c55ccd6 to 952726a Compare December 5, 2024 23:43
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) (patch) chore(deps): update dependency @types/react to v18.3.14 Dec 8, 2024
@renovate renovate bot changed the title chore(deps): update dependency @types/react to v18.3.14 chore(deps): update devdependencies (non-major) (patch) Dec 8, 2024
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 6 times, most recently from 648af53 to 7f26031 Compare December 11, 2024 10:29
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 2 times, most recently from aab4cc5 to 8e752b7 Compare December 20, 2024 01:48
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 3 times, most recently from 9ee177b to cc9e9c4 Compare January 3, 2025 08:06
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 4 times, most recently from 1e14da0 to 70f1dcc Compare January 13, 2025 22:55
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch 4 times, most recently from b5db64e to 62bfd28 Compare January 21, 2025 11:49
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 62bfd28 to 7d7fa29 Compare January 23, 2025 02:55
@renovate renovate bot force-pushed the renovate/patch-devdependencies-(non-major) branch from 7d7fa29 to b773f72 Compare January 23, 2025 10:48
@spaenleh spaenleh closed this Jan 23, 2025
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant