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

chore(deps): update all non-major dependencies #598

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) ^3.9.5 -> ^3.10.4 age adoption passing confidence
@nuxt-themes/docus ^1.1.3 -> ^1.15.0 age adoption passing confidence
@nuxt/kit (source) ^3.10.3 -> ^3.11.2 age adoption passing confidence
@nuxt/module-builder ^0.5.5 -> ^0.7.0 age adoption passing confidence
@nuxt/schema (source) ^3.10.3 -> ^3.11.2 age adoption passing confidence
@nuxt/ui (source) ^2.14.1 -> ^2.16.0 age adoption passing confidence
@types/node (source) ^20.11.24 -> ^20.12.12 age adoption passing confidence
@vue/apollo-composable (source) ^4.0.1 -> ^4.0.2 age adoption passing confidence
graphql-ws ^5.15.0 -> ^5.16.0 age adoption passing confidence
nuxt (source) ^3.10.3 -> ^3.11.2 age adoption passing confidence
nuxt (source) ^3.0.0 -> ^3.11.2 age adoption passing confidence
pnpm (source) 8.15.2 -> 8.15.8 age adoption passing confidence
yarn 1.22.19 -> 1.22.22 age adoption passing confidence

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.10.4

Compare Source

Patch Changes
  • #​11838 8475346 Thanks @​alex-kinokon! - Don’t prompt for DevTools installation for browser extension page

  • #​11839 6481fe1 Thanks @​jerelmiller! - Fix a regression in 3.9.5 where a merge function that returned an incomplete result would not allow the client to refetch in order to fulfill the query.

  • #​11844 86984f2 Thanks @​jerelmiller! - Honor the @nonreactive directive when using cache.watchFragment or the useFragment hook to avoid rerendering when using these directives.

  • #​11824 47ad806 Thanks @​phryneas! - Create branded QueryRef type without exposed properties.

    This change deprecates QueryReference in favor of a QueryRef type that doesn't expose any properties.
    This change also updates preloadQuery to return a new PreloadedQueryRef type, which exposes the toPromise function as it does today. This means that query refs produced by useBackgroundQuery and useLoadableQuery now return QueryRef types that do not have access to a toPromise function, which was never meant to be used in combination with these hooks.

    While we tend to avoid any types of breaking changes in patch releases as this, this change was necessary to support an upcoming version of the React Server Component integration, which needed to omit the toPromise function that would otherwise have broken at runtime.
    Note that this is a TypeScript-only change. At runtime, toPromise is still present on all queryRefs currently created by this package - but we strongly want to discourage you from accessing it in all cases except for the PreloadedQueryRef use case.

    Migration is as simple as replacing all references to QueryReference with QueryRef, so it should be possible to do this with a search & replace in most code bases:

    -import { QueryReference } from '@​apollo/client'
    +import { QueryRef } from '@​apollo/client'
    
    - function Component({ queryRef }: { queryRef: QueryReference<TData> }) {
    + function Component({ queryRef }: { queryRef: QueryRef<TData> }) {
      // ...
    }
  • #​11845 4c5c820 Thanks @​jerelmiller! - Remove @nonreactive directives from queries passed to MockLink to ensure they are properly matched.

  • #​11837 dff15b1 Thanks @​jerelmiller! - Fix an issue where a polled query created in React strict mode may not stop polling after the component unmounts while using the cache-and-network fetch policy.

v3.10.3

Compare Source

Patch Changes

v3.10.2

Compare Source

Patch Changes

v3.10.1

Compare Source

Patch Changes

v3.10.0

Compare Source

Minor Changes
Patch Changes

v3.9.11

Compare Source

Patch Changes
  • #​11769 04132af Thanks @​jerelmiller! - Fix an issue where using skipToken or the skip option with useSuspenseQuery in React's strict mode would perform a network request.

v3.9.10

Compare Source

Patch Changes
  • #​11738 b1a5eb8 Thanks @​jerelmiller! - Fix an issue where rerendering useBackgroundQuery after the queryRef had been disposed, either via the auto dispose timeout or by unmounting useReadQuery, would cause the queryRef to be recreated potentially resulting in another network request.

  • #​11738 b1a5eb8 Thanks @​jerelmiller! - Allow queryRefs to be disposed of synchronously when a suspense hook unmounts. This prevents some situations where using a suspense hook with the same query/variables as the disposed queryRef accidentally used the disposed queryRef rather than creating a new instance.

  • #​11670 cc5c03b Thanks @​phryneas! - Bail out of executeSubSelectedArray calls if the array has 0 elements.

v3.9.9

Compare Source

Patch Changes
  • #​11696 466ef82 Thanks @​PiR1! - Immediately dispose of the queryRef if useBackgroundQuery unmounts before the auto dispose timeout kicks in.

v3.9.8

Compare Source

Patch Changes
  • #​11706 8619bc7 Thanks @​jerelmiller! - Fix issue in all suspense hooks where returning an empty array after calling fetchMore would rerender the component with an empty list.

  • #​11694 835d5f3 Thanks @​phryneas! - Expose setErrorMessageHandler from @apollo/client/dev entrypoint.

  • #​11689 cb8ffe5 Thanks @​jerelmiller! - Fix issue where passing a new from option to useFragment would first render with the previous value before rerendering with the correct value.

  • #​11713 642092c Thanks @​jerelmiller! - Fix issue where setting a default watchQuery option in the ApolloClient constructor could break startTransition when used with suspense hooks.

v3.9.7

Compare Source

Patch Changes

v3.9.6

Compare Source

Patch Changes
nuxt-themes/docus (@​nuxt-themes/docus)

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.14.9...v1.15.0

v1.14.9

Compare Source

v1.14.8

Compare Source

v1.14.7

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.14.6...v1.14.7

v1.14.6

Compare Source

  • fix(search): handle back docsearch properly (b5f3108)
  • fix(footer): handle icons value for credits (e1ed5c8)

Full Changelog: nuxt-themes/docus@v1.14.5...v1.14.6

v1.14.5

Compare Source

What's Changed

Full Changelog: nuxt-themes/docus@v1.14.4...v1.14.5

v1.14.4

Compare Source

v1.14.3

Compare Source

  • fix: no need to have client-only for AppSearch (bb9c50f)

Full Changelog: nuxt-themes/docus@v1.14.2...v1.14.3

v1.14.2

Compare Source

What's Changed

Full Changelog: nuxt-themes/docus@v1.14.1...v1.14.2

v1.14.1

Compare Source

  • fix: add AppSearch only on client-side (b3a93ef)

v1.14.0

Compare Source

What's Changed

CleanShot.2023-07-12.at.10.22.36.mp4

Full Changelog: nuxt-themes/docus@v1.13.1...v1.14.0

v1.13.1

Compare Source

  • fix: ignore pinceau routes to generate without failing (3e728b5)

v1.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.12.3...v1.13.0

v1.12.3

Compare Source

  • fix: use public runtime config for DocSearch (2d0a25a)

v1.12.2

Compare Source

v1.12.1

Compare Source

v1.12.0

Compare Source

  • chore(lockfile): upgrade lockfile (ead6d06)
  • docs: logo customization (#​905) (b52509e)
  • feat(rel): add rel support for textLinks and iconLinks too (838003d)
  • Merge branch 'main' of github.com:nuxtlabs/docus (9d20ec9)
  • feat: allow rel for socials links to be configured (#​899) (fbd0971)
  • chore(deps): up (117bd8b)
  • chore(clean): clean comments (a710a9a)
  • chore(deployment): add github action (97d6bb5)
  • 1 deletion by Nuxt Studio (e277328)
  • chore(deployment): add github action (b85ff39)
  • chore(fix): iconLinks in starter (5d2eff5)
  • feat(nuxt): fix nuxt version in starter (c62df23)
  • chore(devtools): add devtools to starter (8000f2c)
  • feat(starter): move docus-starter inside this repository (#​904) (a8af7e6)

v1.11.1

Compare Source

v1.11.0

Compare Source

v1.10.1

Compare Source

  • chore(deps): update typography (a1dcf4e)

v1.10.0

Compare Source

v1.9.10

Compare Source

v1.9.9

Compare Source

What's Changed

Full Changelog: nuxt-themes/docus@v1.9.8...v1.9.9

v1.9.8

Compare Source

What's Changed

Before After
CleanShot 2023-03-10 at 16 05 26 CleanShot 2023-03-10 at 16 05 59

Full Changelog: nuxt-themes/docus@v1.9.6...v1.9.8

v1.9.7

Compare Source

v1.9.6

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.9.4...v1.9.6

v1.9.5

Compare Source

v1.9.4

Compare Source

  • fix: show aside when level 0 and one parent only (8b920c2)

v1.9.3

Compare Source

  • fix(mobile): show dialog if one nav has children (5bfca2b)

v1.9.2

Compare Source

v1.9.1

Compare Source

  • fix: hide aside if navigation is empty (ed3dd92)
  • fix: update deps and remove logs (4e54ed4)

v1.9.0

Compare Source

v1.8.3

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.8.2...v1.8.3

v1.8.2

Compare Source

  • fix: remove socials default key to enable sorting for end user (#​818) (bd97760)
  • chore(deps): upgrade deps (0cb1ba7)
  • docs: small improvements (bada05b)
  • chore: up studio (0b92c14)

v1.8.1

Compare Source

  • chore(deps): upgrade typography (ce842bb)

v1.8.0

Compare Source

v1.7.4

Compare Source

v1.7.3

Compare Source

v1.7.2

Compare Source

  • fix: export app.config for correct defaults (2b58c97)
  • docs: fix the wrong description about configuration (#​807) (e932e01)

v1.7.1

Compare Source

  • chore(deps): upgrade deps ; fix build (55dcb5e)

v1.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.6.3...v1.7.0

v1.6.3

Compare Source

  • chore(header): set fixed as default header position (31aaf1a)

v1.6.2

Compare Source

  • chore(deps): upgrade deps ; fix branch on edit on github links (a341a96)
  • fix: fluid layout (#​789) (e190583)
  • docs: update definitions of configuration (#​786) (056a877)
  • docs: remove old layout property (972f359)

v1.6.1

Compare Source

v1.6.0

Compare Source

v1.5.0

Compare Source

v1.4.7

Compare Source

  • chore(schema): update schema & deps (5bcbd4d)

[v1.4.6](https://togithub.com/nuxt-themes/doc


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.

👻 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 Mend Renovate. View repository job log here.

Copy link

netlify bot commented Mar 1, 2024

Deploy Preview for apollo-module failed. Why did it fail? →

Name Link
🔨 Latest commit 012a92b
🔍 Latest deploy log https://app.netlify.com/sites/apollo-module/deploys/664e3cc8bf0ead00088d553d

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d077e40 to 3dff029 Compare March 12, 2024 02:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from b9b945b to 0df96a8 Compare March 19, 2024 13:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2153107 to 2f97b4f Compare March 26, 2024 15:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 425b151 to 3359e9c Compare April 2, 2024 21:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from a1331ec to f5bdd05 Compare April 10, 2024 15:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 18e9d9a to d577260 Compare April 13, 2024 20:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a74ee1d to 566b4fe Compare April 30, 2024 00:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 72d5540 to 9a4f58e Compare May 8, 2024 15:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6484a21 to 2b1e856 Compare May 15, 2024 03:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b1e856 to 012a92b Compare May 22, 2024 18:43
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.

None yet

0 participants