Skip to content

chore(deps): update dependency @pinia/colada to v1#52

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-vue-ecosystem
Open

chore(deps): update dependency @pinia/colada to v1#52
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-vue-ecosystem

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2026

This PR contains the following updates:

Package Change Age Confidence
@pinia/colada (source) 0.21.71.0.0 age confidence

Release Notes

posva/pinia-colada (@​pinia/colada)

v1.0.0

Compare Source

  • feat!: remove deprecated two-parameter overloads from useQuery and useQueryState (422c391)
BREAKING CHANGES

Deprecations from 0.21.5 are now removed:

  • The useQuery(setupOptions, paramsGetter) and
    useQueryState(setupOptions, paramsGetter) two-parameter forms have been
    removed. Migrate to the single function parameter form:

    // Before
    useQuery(opts, () => id.value)
    useQueryState(opts, () => id.value)

    // After
    useQuery(() => opts(id.value))
    useQueryState(() => opts(id.value).key)

An ast-grep codemod is available to automate most callsites (may not
cover all edge cases):

ast-grep scan -r node_modules/@​pinia/colada/codemods/rules/migration-0-21-to-1-0.yaml -i src

0.21.7 (2026-03-02)

Bug Fixes
  • infinite: detach $onAction listener to survive component unmount (c756e3a), closes #​525

0.21.6 (2026-02-26)

Bug Fixes
Performance Improvements

0.21.5 (2026-02-22)

Bug Fixes
  • ssr: prevent memory leak (#​514) (9fd9baa)
  • types: restore UseQueryOptions variance for placeholderData callback (ef4a006)
Features
Deprecations
  • The two-parameter form of useQuery(setup, () => params) and useQueryState(setup, () => params) is deprecated. Use a single function parameter instead:

    - useQuery(useContactList, () => ({ search: search.value }))
    + useQuery(() => useContactList({ search: search.value }))

    A codemod is available to automate this migration. Commit your changes first, then run:

    pnpm --package=@​ast-grep/cli dlx ast-grep scan -r node_modules/@​pinia/colada/codemods/rules/migration-0-21-to-1-0.yaml -i src

    See Migration Codemods for details.

0.21.4 (2026-02-09)

Features

0.21.3 (2026-02-06)

Bug Fixes
  • infinite-query: compute hasNextPage correctly on cache hit (#​480) (895914a)
  • skip refetchOnWindowFocus and refetchOnReconnect for inactive defined queries (1d7f9d2), closes #​485

0.21.2 (2026-01-20)

Bug Fixes
  • correct GC time display for prefetched queries (#​464) (80e2c5a)
  • query: gc prefetched queries (ba1e90c)

0.21.1 (2026-01-09)

Bug Fixes
Features

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 becomes conflicted, 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.

@renovate renovate bot added the dependencies label Mar 6, 2026
@renovate renovate bot force-pushed the renovate/major-vue-ecosystem branch from 69b8789 to adaf959 Compare March 9, 2026 17:47
@renovate renovate bot force-pushed the renovate/major-vue-ecosystem branch from adaf959 to d1ab026 Compare March 13, 2026 11:46
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