Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-coveooss[bot]
Copy link
Contributor

@renovate-coveooss renovate-coveooss bot commented Aug 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@coveo/headless (source) 3.8.1 -> 3.12.0 age adoption passing confidence
@types/react (source) 18.3.3 -> 18.3.16 age adoption passing confidence
@types/react-dom (source) 18.3.0 -> 18.3.5 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.17.0 -> 7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.17.0 -> 7.18.0 age adoption passing confidence
@vitejs/plugin-react (source) 4.3.1 -> 4.3.4 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-react-refresh 0.4.9 -> 0.4.16 age adoption passing confidence
typescript (source) 5.5.4 -> 5.7.2 age adoption passing confidence

Release Notes

coveo/ui-kit (@​coveo/headless)

v3.12.0

Compare Source

  • feat(headless SSR): fetch recommendations with a productId (#​4768) (6d53c57), closes #​4768
  • feat(headless SSR): fetchStaticState should only accept solutiontype-specific controllers (#​4769) (f961cb2), closes #​4769
  • fix(headless commerce): make parameter manager prop.initialState optional (#​4776) (79433ed), closes #​4776
  • fix(headless): update the rga events to send the searchId instead of the streamId as response id (#​4 (d95ed0a), closes #​4766
  • fix(headless/ssr-commerce): standalone search box only for listing & standalone (#​4735) (605156c), closes #​4735
  • chore(headless): add sourcemaps for nodejs esm build (#​4749) (74cb96a), closes #​4749

v3.11.0

Compare Source

v3.10.0

Compare Source

v3.9.0

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.18.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib

  • eslint-plugin: [unbound-method] report on destructuring in function parameters

  • eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types

  • eslint-plugin: [strict-boolean-expressions] support branded booleans

❤️ Thank You
  • auvred
  • Oliver Salzburg
  • Vinccool96
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.18.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.4

Compare Source

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #​386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})

v4.3.2

Compare Source

Ignore directive sourcemap error #​369

eslint/eslint (eslint)

v8.57.1

Compare Source

Bug Fixes

  • a19072f fix: add logic to handle fixTypes in the lintText() method (#​18900) (Francesco Trotta)
  • 04c7188 fix: Don't lint same file multiple times (#​18899) (Francesco Trotta)
  • 87ec3c4 fix: do not throw when defining a global named __defineSetter__ (#​18898) (Francesco Trotta)
  • 60a1267 fix: Provide helpful error message for nullish configs (#​18889) (Milos Djermanovic)
  • a0dea8e fix: allow name in global ignores, fix --no-ignore for non-global (#​18875) (Milos Djermanovic)
  • 3836bb4 fix: do not crash on error in fs.walk filter (#​18886) (Milos Djermanovic)
  • 2dec349 fix: skip processor code blocks that match only universal patterns (#​18880) (Milos Djermanovic)

Documentation

Build Related

  • 35d366a build: Support updates to previous major versions (#​18870) (Milos Djermanovic)

Chores

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

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.

v0.4.14

Compare Source

v0.4.13

Compare Source

v0.4.12

Compare Source

  • Support type assertion on default export (fixes #​48)
  • Add default export to fix usage with jiti (fixes #​50)

v0.4.11

Compare Source

  • Ignore type exports (ex. export type foo = string;) (fixes #​47)

v0.4.10

Compare Source

  • Support function Foo() {}; export default React.memo(Foo) (#​46) (thanks @​SukkaW!)
microsoft/TypeScript (typescript)

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3: TypeScript 5.6.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.6.2: TypeScript 5.6

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 - "* 0-3 * * 1" in timezone America/Toronto, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@renovate-coveooss renovate-coveooss bot changed the title Update all non-major dependencies fix(deps): update all non-major dependencies Oct 3, 2024
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 3d39bd5 to cfcd05c Compare October 18, 2024 15:06
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a1884bb to cbe4980 Compare October 31, 2024 18:36
jpmarceau pushed a commit that referenced this pull request Nov 13, 2024
DOC-15369 remove unnecessary fields
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from cbe4980 to fcb5b88 Compare November 13, 2024 18:37
@renovate-coveooss renovate-coveooss bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Nov 13, 2024
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from fcb5b88 to f6c944c Compare November 20, 2024 14:06
@renovate-coveooss renovate-coveooss bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 20, 2024
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9a3f439 to 4125bb4 Compare December 3, 2024 11:06
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 54f34b3 to 1c0ddfb Compare December 12, 2024 19:36
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from cfef5d1 to 314bd03 Compare December 18, 2024 03:06
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 314bd03 to 8a7cbe8 Compare December 18, 2024 14:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants