Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 3, 2023

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
jotai ^1.7.7 -> ^2.0.0 age confidence

Release Notes

pmndrs/jotai (jotai)

v2.16.0

Compare Source

This version deprecates atomFamily in jotai/utils in favor of jotai-family, and includes some internal changes.

What's Changed

Full Changelog: pmndrs/jotai@v2.15.2...v2.16.0

v2.15.2

Compare Source

This release introduces some internal changes. In particular, it adds a warning when unsupported store mutations (side effects) are detected.

What's Changed

Full Changelog: pmndrs/jotai@v2.15.1...v2.15.2

v2.15.1

Compare Source

A minor but important fix in utils.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.15.0...v2.15.1

v2.15.0

Compare Source

This is another change in the internal functions of the core, to help Jotai ecosystem libraries.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.14.0...v2.15.0

v2.14.0

Compare Source

This version changes the internal functions of the core. Libraries that depend on them, such as jotai-devtools, need to be updated correspondingly.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.13.1...v2.14.0

v2.13.1

Compare Source

This version fixes some types in utils.

What's Changed

Full Changelog: pmndrs/jotai@v2.13.0...v2.13.1

v2.13.0

Compare Source

This removes the deprecated devstore. Be sure to use the latest jotai-devtools.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.12.5...v2.13.0

v2.12.5

Compare Source

An improvement for some edge cases.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.12.4...v2.12.5

v2.12.4

Compare Source

We deprecate devstore capability, which will be dropped in the next minor version. Please use the latest jotai-devtools library.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.12.3...v2.12.4

v2.12.3

Compare Source

This introduces an internal capability for jotai-devtools.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.12.2...v2.12.3

v2.12.2

Compare Source

It includes some refactors and some minor fixes.

What's Changed

  • refactor(vanilla, react): change exported functions to 'function declarations' and non-exported ones to 'arrow functions' by @​sukvvon in #​3002
  • fix(core): improve error handling with multiple errors in flashCallbacks by @​nightohl in #​3011
  • fix(utils): atomWithObservable option for React 19 behavior by @​dai-shi in #​3016
  • fix(utils): Fix deepFreeze fails for boolean, number, string by @​devuxer in #​3018
  • refactor(core): avoid onCancel hack by @​dai-shi in #​3019

New Contributors

Full Changelog: pmndrs/jotai@v2.12.1...v2.12.2

v2.12.1

Compare Source

This fixes an internal behavior necessary for some Jotai ecosystem libraries.

What's Changed

  • fix(core): Remove extra onChange store hook in recomputeInvalidatedDependents by @​dmaskasky in #​2982

Full Changelog: pmndrs/jotai@v2.12.0...v2.12.1

v2.12.0

Compare Source

This introduces a significant change in the history of Jotai development. The Jotai core aims to remain minimal while supporting the growth of the ecosystem. It now exposes some internal functions for the ecosystem.

For library authors, please make sure to pin the jotai package version if you rely on these internal functions.

Huge thanks to @​dmaskasky for helping finalize the API.

What's Changed

Full Changelog: pmndrs/jotai@v2.11.3...v2.12.0

v2.11.3

Compare Source

Unfortunately, we encountered another regression with the v2.11 rearchitecture. We hope there are no more issues, but we can't be sure if it's stable unless no more are reported. Please give it a try and let us know if you find anything!

What's Changed

Full Changelog: pmndrs/jotai@v2.11.2...v2.11.3

v2.11.2

Compare Source

There was a regression in v2.11.1, which is fixed in this patch.

What's Changed

  • fix(core): derived atom is not re-evaluated if it read between multiple set by @​dai-shi in

New Contributors

Full Changelog: pmndrs/jotai@v2.11.1...v2.11.2

v2.11.1

Compare Source

Jotai v2.11.0 was a big change, and we faced some fundamental issues. It required time to reconsider the architecture from the ground up. We've added various tests, and this patch version should be more stable.

Having that said, we are still in the middle of the re-architecture. If you prefer to stay away from bleeding-edge features and encounter no bugs, feel free to keep using the previous versions.

Kudos to @​dmaskasky

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.11.0...v2.11.1

v2.11.0

Compare Source

There are no public API changes, but some internal behaviors have been improved. Now, atom updates are batched in a single write, which might provide a performance benefit in certain edge cases. This feature has been requested actually for a long time, and it's finally implemented. See also #​2782.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.4...v2.11.0

v2.10.4

Compare Source

A minor improvement for some edge cases. (For more information, see #​2789.)

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.3...v2.10.4

v2.10.3

Compare Source

This fixes various edge cases. Huge thanks to @​dmaskasky ! 🎉

What's Changed

Full Changelog: pmndrs/jotai@v2.10.2...v2.10.3

v2.10.2

Compare Source

Fixed some jotai/utils for a regression in v2.10.0.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.1...v2.10.2

v2.10.1

Compare Source

This fixes a bug in an extreme edge case. If you find this change breaks something, please report to us.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.0...v2.10.1

v2.10.0

Compare Source

It comes with another significant internal change to address some edge cases.

Since v2.9.0, we've been working on some internal refactors to support more edge cases and clean up the code.

Users are encouraged to update to the new versions eventually, but if you're satisfied with the current situation and prefer to avoid temporary instability, you can stick with v2.8.4 for now.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.9.3...v2.10.0

v2.9.3

Compare Source

This fixes a regression in an edge case that is introduced in v2.6.4.

What's Changed

  • fix(store): derived atom not updating when its value changes if another atom is read it conditionally by @​yuneco in #​2700
  • experimental(core): expose unstable_derive by @​dai-shi in #​2652

New Contributors

Full Changelog: pmndrs/jotai@v2.9.2...v2.9.3

v2.9.2

Compare Source

A small improvement in atomFamily for edge use cases.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.9.1...v2.9.2

v2.9.1

Compare Source

This patch version includes various fixes. Huge thanks to contributors!

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.9.0...v2.9.1

v2.9.0

Compare Source

This version introduces a new core implementation. All tests are passing but there can be some regressions due to missing tests. Please feel free to report such cases and let's improve test coverage.

The benefit with the new implementation:

  • Fix memory leak issue with vanilla store usage.
  • More readability of the core code.

What's Changed

Full Changelog: pmndrs/jotai@v2.8.4...v2.9.0

v2.8.4

Compare Source

This changes the behavior of async atom with abort signal on unmount to fix some use cases.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.3...v2.8.4

v2.8.3

Compare Source

The improvement for atomWithStorage in v2.8.2 contained a bug, which is fixed in this version.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.2...v2.8.3

v2.8.2

Compare Source

This fixes another edge case and improves utils for more flexibility.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.1...v2.8.2

v2.8.1

Compare Source

This fixes a regression in v2.6.4 and a regression in v2.7.0.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.8.0...v2.8.1

v2.8.0

Compare Source

This version introduces a new feature atomWithLazy and deprecates useReducerAtom and freezeAtomCreator. It also introduces an experimental store implementation in jotai/experimental.

Migration Guide

selectAtom

selectAtom will no longer internally unwrap promises. To migrate to the new api, use the unwrap utility from jotai/utils package.

// suppose we have this
const baseAtom = atom(Promise.resolve({ id: 0, name: 'test' }))

// previously selectAtom would internally unwrap promises.
const idAtom = selectAtom(
  baseAtom,
  ({ name }) => name,
  (prev, curr) => prev.id === curr.id
)

// instead, you need to import `unwrap` from 'jotai/utils' and pass the unwrapped atom 
import { unwrap } from 'jotai/utils'
  ...
const idAtom = selectAtom(
  unwrap(baseAtom),
  ({ name }) => name,
  (prev, curr) => prev.id === curr.id
)
useReducerAtom

https://jotai.org/docs/recipes/use-reducer-atom

freezeAtomCreator

https://jotai.org/docs/guides/debugging#freezeatomcreator

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.7.2...v2.8.0

v2.7.2

Compare Source

Mostly refactors.

What's Changed

Full Changelog: pmndrs/jotai@v2.7.1...v2.7.2

v2.7.1

Compare Source

This fixes a regression in v2.7.0.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.7.0...v2.7.1

v2.7.0

Compare Source

We've improved the use of WeakMap for better memory management. Please report to us if any regressions are found.

What's Changed

Full Changelog: pmndrs/jotai@v2.6.5...v2.7.0

v2.6.5

Compare Source

Some type improvements!

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.6.4...v2.6.5

v2.6.4

Compare Source

Performance improvement! Check it out!

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.6.3...v2.6.4

v2.6.3

Compare Source

Some improvements in core and utils 👏

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.6.2...v2.6.3

v2.6.2

Compare Source

Some improvements for atomWithStorage. Feedback is welcome.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.6.1...v2.6.2

v2.6.1

Compare Source

This version has two minor improvements for library authors. It's wonderful to see Jotai ecosystem growing. No major bugs have been reported lately. It's fairly okay to say the current version is pretty stable.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.6.0...v2.6.1

v2.6.0

Compare Source

We can now directly use <Provider> in React Server Components. 🎉

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.5.1...v2.6.0

v2.5.1

Compare Source

This fixes some small issues in jotai/utils.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.5.0...v2.5.1

v2.5.0

Compare Source

This fixes some bugs, one of which was critical for jotai-effect. It also adds a new internal capability that may help extensions such as jotai-scope.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.4.3...v2.5.0

v2.4.3

Compare Source

This fixes a regression in an edge case, which has existed since v2.1.1.

What's Changed

  • fix(vanilla): Returning the same Promise twice from an atom getter causes Promise chaining cycle. by @​iwoplaza in #​2152

New Contributors

Full Changelog: pmndrs/jotai@v2.4.2...v2.4.3

v2.4.2

[Compare Source](https://redirect.github.com/pmndrs/jotai/com


Configuration

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

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@cypress
Copy link

cypress bot commented Feb 3, 2023

Passing run #502 ↗︎

0 6 0 0 Flakiness 0

Details:

Merge 78fb17d into ab9cae0...
Project: react-todo-app-ts Commit: 9b33281065 ℹ️
Status: Passed Duration: 01:26 💡
Started: Feb 3, 2023 4:46 PM Ended: Feb 3, 2023 4:47 PM

This comment has been generated by cypress-bot as a result of this project's GitHub integration settings.

@renovate renovate bot force-pushed the renovate/jotai-2.x branch from 78fb17d to 736d926 Compare January 8, 2024 12:24
@renovate
Copy link
Contributor Author

renovate bot commented Jan 8, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
 WARN  GET https://registry.npmjs.org/jotai error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/cli/-/cli-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-2.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.4.8.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-msw/-/typescript-msw-1.0.7.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.3.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-react-query/-/typescript-react-query-4.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@heroicons/react/-/react-2.0.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.8.8.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@reach/dialog/-/dialog-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@reach/visually-hidden/-/visually-hidden-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@react-hook/media-query/-/media-query-1.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rooks/use-mutation-observer/-/use-mutation-observer-4.11.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/jotai error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/cli/-/cli-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-2.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.4.8.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-msw/-/typescript-msw-1.0.7.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.3.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-react-query/-/typescript-react-query-4.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@heroicons/react/-/react-2.0.10.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.8.8.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@reach/dialog/-/dialog-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@reach/visually-hidden/-/visually-hidden-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@react-hook/media-query/-/media-query-1.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rooks/use-mutation-observer/-/use-mutation-observer-4.11.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@sentry/tracing/-/tracing-7.11.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
undefined
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

TypeError [ERR_INVALID_THIS]: Value of "this" must be of type URLSearchParams
    at Proxy.getAll (node:internal/url:527:13)
    at Proxy.<anonymous> (/opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59379:55)
    at /opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59441:31
    at Array.reduce (<anonymous>)
    at Proxy.raw (/opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59440:33)
    at new Headers (/opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59325:28)
    at getNodeRequestOptions (/opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59674:23)
    at /opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59731:25
    at new Promise (<anonymous>)
    at fetch (/opt/containerbase/tools/pnpm/7.26.2/node_modules/pnpm/dist/pnpm.cjs:59729:14)
 WARN  GET https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.4.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.0.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-4.0.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/cypress/-/cypress-8.0.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/react/-/react-13.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-8.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/headroom.js/-/headroom.js-0.12.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/masonry-layout/-/masonry-layout-4.2.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-18.11.11.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.0.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.

@renovate renovate bot force-pushed the renovate/jotai-2.x branch from 736d926 to 18fa83a Compare July 5, 2024 18:29
@renovate
Copy link
Contributor Author

renovate bot commented Jul 5, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
 WARN  GET https://registry.npmjs.org/jotai error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/cli/-/cli-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-2.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.4.8.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-msw/-/typescript-msw-1.0.7.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.3.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-react-query/-/typescript-react-query-4.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@heroicons/react/-/react-2.0.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.8.8.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@reach/dialog/-/dialog-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@reach/visually-hidden/-/visually-hidden-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@react-hook/media-query/-/media-query-1.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rooks/use-mutation-observer/-/use-mutation-observer-4.11.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/jotai error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/cli/-/cli-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/add/-/add-3.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-2.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.4.8.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-msw/-/typescript-msw-1.0.7.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.3.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@graphql-codegen/typescript-react-query/-/typescript-react-query-4.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@heroicons/react/-/react-2.0.10.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.8.8.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@reach/dialog/-/dialog-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@reach/visually-hidden/-/visually-hidden-0.18.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@react-hook/media-query/-/media-query-1.1.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rooks/use-mutation-observer/-/use-mutation-observer-4.11.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@sentry/tracing/-/tracing-7.11.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 ERR_PNPM_META_FETCH_FAIL  GET https://registry.npmjs.org/jotai: Value of "this" must be of type URLSearchParams

This error happened while installing a direct dependency of /tmp/renovate/repos/github/manoldonev/react-todo-app-ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant