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 non-major #268

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

chore(deps): update non-major #268

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 1, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@sanity/image-url (source) 1.0.2 -> 1.1.0 age adoption passing confidence dependencies minor
@sanity/mutator (source) ^2.33.2 -> ^3.18.0 age adoption passing confidence dependencies minor
@sanity/semantic-release-preset (source) ^4.1.1 -> ^4.1.8 age adoption passing confidence devDependencies patch
@types/debug (source) ^4.1.7 -> ^4.1.12 age adoption passing confidence devDependencies patch
@types/jest (source) ^29.4.0 -> ^29.5.14 age adoption passing confidence devDependencies patch
@types/lodash (source) ^4.14.191 -> ^4.17.14 age adoption passing confidence devDependencies minor
@types/react-dom (source) ^18.0.10 -> ^18.3.5 age adoption passing confidence devDependencies minor
@types/split2 (source) ^4.0.0 -> ^4.2.3 age adoption passing confidence devDependencies patch
@types/through2 (source) ^2.0.38 -> ^2.0.41 age adoption passing confidence devDependencies patch
@types/url-parse (source) 1.4.9 -> 1.4.11 age adoption passing confidence dependencies patch
EndBug/add-and-commit 1bad3ab -> a94899b action digest
actions/checkout 3df4ab1 -> 11bd719 action digest
axios (source) ^0.27.2 -> ^0.29.0 age adoption passing confidence dependencies minor
debug 4.3.4 -> 4.4.0 age adoption passing confidence dependencies minor
eslint-config-prettier ^8.6.0 -> ^8.10.0 age adoption passing confidence devDependencies patch
gatsby (source, changelog) ^5.5.0 -> ^5.14.1 age adoption passing confidence devDependencies minor
gatsby-core-utils (source) 4.12.0 -> 4.14.0 age adoption passing confidence dependencies minor
gatsby-plugin-image (source) ^3.5.0 -> ^3.14.0 age adoption passing confidence devDependencies minor
gatsby-plugin-utils (source) 4.12.1 -> 4.14.0 age adoption passing confidence dependencies minor
jest (source) ^29.4.1 -> ^29.7.0 age adoption passing confidence devDependencies patch
prettier (source) ^2.8.3 -> ^2.8.8 age adoption passing confidence devDependencies patch
prettier-plugin-packagejson ^2.4.2 -> ^2.5.8 age adoption passing confidence devDependencies minor
prettier-plugin-tailwindcss ^0.4.0 -> ^0.6.10 age adoption passing confidence devDependencies minor
react (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence devDependencies minor
semantic-release ^21.1.1 -> ^21.1.2 age adoption passing confidence devDependencies patch
ts-jest (source) ^29.0.5 -> ^29.2.5 age adoption passing confidence devDependencies minor
typescript (source) ^5.0.0 -> ^5.7.3 age adoption passing confidence devDependencies minor

Release Notes

sanity-io/image-url (@​sanity/image-url)

v1.1.0

Compare Source

Changes
  • Add new frame() method
  • Add new vanityName() method (thanks @​Isissss!)
  • Allow specifying baseUrl in builder typings (thanks @​ryami333!)
  • Allow resetting format through .format(undefined) (thanks @​selbekk!)
sanity-io/sanity (@​sanity/mutator)

v3.70.0

Compare Source

✨ Highlights

Improvements to Visual Editing

This release includes several changes across the @sanity/astro and @sanity/visual-editing packages, resulting in a more stable Visual Editing experience with Astro and a smoother initial setup:

  • A React 19 peer dependency issue was fixed in @sanity/astro version 3.1.9 that caused errors in new projects setup using Astro’s CLI tool.
  • Added support for libraries publishing pre-compiled code with the React Compiler to the Astro codebase.
  • Previously, Visual Editing overlays would lose their titles/preview information after a change had been made when working with an Astro project. This is now fixed.

Other features

  • The sanity package now exports an experimental EditPortal component, which allows users to create Dialog or Popover components that include Presence and scroll virtualization out of the box, like so:
import React, {useRef, useState} from 'react'
+import {EditPortal} from 'sanity'

 export const CustomFormDialog: React.FC<Props> = ({parentProps, paths, onClose}) => {
   return (
-     <Dialog header="Edit Link" id="edit-link" animate width={600} onClose={onClose} zOffset={1000}>
+     <EditPortal header="Edit Link" id="edit-link" animate width={600} onClose={onClose} zOffset={1000}>
       ...rest
-      </Dialog>
+     </EditPortal>

🐛 Notable bugfixes

  • Fixes a case where the commands schema extract, manifest extract, graphql deploy, documents validate or schema validate would never complete.
  • Fixes an issue in Vision where the cursor would sometimes jump to the beginning of the editor.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.20.2 (#​8219) | 5ddfe63
renovate[bot] | chore(deps): update typescript-tooling (#​8210) | fb1cf5b
renovate[bot] | fix(deps): update dependency get-it to ^8.6.6 (#​8221) | 17e10ca
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.19 (#​8222) | 07651a5
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.20.3 (#​8223) | a363bba
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.24.3 (#​8213) | 47577ea
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.21.0 (#​8227) | 5c28f4f
Rostislav Melkumyan | feat(cli): skip directories without .env.example when bootstrapping remote template (#​8216) | 86c6ab1
Snorre Eskeland Brekke | fix: ensures singleworkspace falls back to the name 'default' as expected in all contexts (#​8228) | fe708e8
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.21.1 (#​8234) | 26b64c7
Pedro Bonamin | chore(core): export EditPortal from sanity (#​8229) | ab31417
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.21.1 (#​8230) | 9e624fa
Bjørge Næss | fix(ci): pin ubuntu version for e2e component tests to 22.04 (#​8245) | b3cce81
Pedro Bonamin | fix(core): support serverDocumentActions flag in plugins (#​8247) | 78318f3
Rostislav Melkumyan | feat(cli): slim down remote test template (#​8224) | 41580c4
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8244) | 256ffac
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.14 (#​8246) | 2664f0f
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.2 (#​8248) | f3151c3
Magnus Holm | fix(cli): explicitly exit workers when they're done (#​8226) | 104b74c
Christian Grøngaard | fix(block-tools): "soft" deprecate in favour of @​portabletext/block-tools (#​8254) | 885cfe0
Pedro Bonamin | chore(core): add <AvatarSkeleton /> component (#​8249) | 0ab9c5b
Pedro Bonamin | fix(vision): debounce type setState to fix cursor jump (#​8238) | 15cba9a
Ash | feat(sanity): include _id field in groq2024 searches (#​8237) | e0a2b6d
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.21.2 (#​8253) | 39f8900
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.15 (#​8259) | 9d362e1
renovate[bot] | chore(deps): update dev-non-major (#​8240) | 8299462
Christian Grøngaard | test: fix @​portabletext/block-tools alias (#​8262) | 7c2a68b
ecospark[bot] | chore(prettier): fix unformatted files 🤖 ✨ (#​8263) | 5505240
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.21.3 (#​8265) | df392a4
Christian Grøngaard | fix(deps): update dependency @​portabletext/editor to ^1.21.5 (#​8264) | 1938999
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8266) | c453b1f
Rostislav Melkumyan | chore(cli): bump @sanity/template-validator to latest (2.3.2) (#​8220) | 9266e11
Pedro Bonamin | fix(core): export EditPortal as beta (#​8270) | c65b13c

v3.69.0

Compare Source

Markdown behaviors for the Portable Text Editor

The Portable Text Editor (PTE) now ships with markdown keyboard shortcuts for headings, block quotes and lists.

This change extends the core behaviors of the PTE with default markdown behaviors for a more intuitive writing experience. This allows you to:

  1. Use # characters to create headings.
  2. Use > to create a blockquote.
  3. Use Backspace at the beginning of a block to clear its style.
  4. Use -, *, _ or 1. to initiate a list.

This is part of the effort that brings features from the new standalone Portable Text Editor back into the Studio.

TypeGen: add support for astro

You can now generate types from queries in .astro files. Learn more in the TypeGen docs.

🐛 Notable bugfixes

  • Fixes schema extraction with nested union references.
  • Header when creating new documents is now translated.
  • Fixes WebSocket is closed before the connection is established warning.
  • Fixes a regression introduced in v3.68.0 that could in rare cases cause a crash when opening a document in the Studio.
  • unset() inside custom datetime input components will now show that the value has been unset in the Studio UI.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Cody Olsen | fix: WebSocket is closed before the connection is established warning (#​8042) | 57150e7
renovate[bot] | fix(deps): Update dev-non-major (#​8100) | 9897dbc
renovate[bot] | chore(deps): update dependency turbo to ^2.3.3 (#​8099) | 1f1f061
Sindre Gulseth | feat(typegen): add support for astro (#​8098) | 92dfc9f
renovate[bot] | fix(deps): update dependency @​sanity/icons to ^3.5.5 (#​8106) | 93ea8af
renovate[bot] | chore(deps): update typescript-tooling (#​8104) | d35bf4e
renovate[bot] | chore(deps): update dependency @​sanity/tsdoc to v1.0.153 (#​8107) | 9115c4f
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.10 (#​8109) | 87f783d
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.10.12 (#​8108) | a20bcf7
renovate[bot] | fix(deps): update dependency @​sanity/icons to ^3.5.5 (#​8105) | 9b7ee0b
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.18.1 (#​8088) | 1d23092
Rostislav Melkumyan | chore(cli): bump template validator (#​8115) | e39c5b2
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.18.2 (#​8113) | d3d1540
Bjørge Næss | fix(core): re-subscribes to shared pair listener opens a new connection (#​8120) | 8f61ce3
Cody Olsen | fix: preload documents on hover (#​8110) | 303841d
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.18.3 (#​8117) | cd989d1
Bjørge Næss | fix(core): merge in listenerEvents in _keepalive stream (#​8122) | babdfe4
renovate[bot] | fix(deps): update dependency @​sanity/export to ^3.42.0 (#​8111) | d6aa711
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.18.5 (#​8124) | 8c61a7e
renovate[bot] | chore(deps): update dev-non-major (#​8125) | ef8cb12
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.17 (#​8126) | 4935373
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.19.14 (#​8127) | ac2be36
renovate[bot] | chore(deps): update dev-non-major (#​8128) | ddb65fa
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.18 (#​8132) | 30f3945
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.18.6 (#​8136) | 42b4320
renovate[bot] | fix(deps): update dependency @​sanity/icons to ^3.5.6 (#​8129) | 797a381
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8134) | 994598c
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.19.16 (#​8133) | 6d18640
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.18.7 (#​8148) | 59b143e
renovate[bot] | chore(deps): update typescript-tooling (#​8149) | d350ef9
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.10.14 (#​8150) | 751a5f5
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.11 (#​8151) | 1546ea7
renovate[bot] | fix(deps): update dependency @​sanity/export to ^3.42.1 (#​8153) | 9722e5f
renovate[bot] | fix(deps): update dependency @​sanity/icons to ^3.5.7 (#​8155) | e113dff
renovate[bot] | chore(deps): update dependency @​testing-library/react to v16 (#​8158) | cfefb7d
Eoin Falconer | fix: make header new and error text customisable (#​8162) | 30cd307
Jordan Lawrence | chore(tasks): fixing typo in empty state title (#​8143) | 4f08c3d
Rostislav Melkumyan | chore(cli): bump @sanity/template-validator to v2.0.0 (#​8156) | be79fe8
Bjørge Næss | fix(sanity): throw a better error if onChange called during initial render (#​8165) | 3285312
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8164) | 466c6fa
Cody Olsen | chore: add github problem matcher for PR linting (#​8161) | 323d1b1
Cody Olsen | fix: remove react-hooks linter suppression (#​8051) | 1d25b3c
Pedro Bonamin | chore(core): replace 'sanity' imports for relative paths in core (#​8160) | 32ae6ec
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.10.15 (#​8172) | 5010c37
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.19.0 (#​8167) | 6c6fc0c
renovate[bot] | chore(deps): update dependency @​sanity/tsdoc to v1.0.158 (#​8169) | b5dce86
renovate[bot] | fix(deps): Update dev-non-major (#​8174) | 60cede8
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.10.16 (#​8175) | 3a972e9
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.10.17 (#​8177) | 9d68dad
Christian Grøngaard | feat(core): add default markdown behaviors to PTE (#​8168) | 17aa32c
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.10.18 (#​8185) | d9c959a
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8187) | fd30cb3
Cody Olsen | chore: temporarily downgrade compiler runtime (#​8188) | 7bf6104
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.0 (#​8190) | 5211c0d
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.12 (#​8189) | 107435b
renovate[bot] | chore(deps): update dependency styled-components to ^6.1.14 (#​8182) | 001dda7
renovate[bot] | chore(deps): update typescript-tooling (#​8186) | 5542235
renovate[bot] | fix(deps): update dependency @​sanity/export to ^3.42.2 (#​8179) | 4e60fe9
Rostislav Melkumyan | feat(cli): copy additions for remote project bootstrapper (#​8141) | f453cbc
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.19.17 (#​8195) | c44e5b0
Rostislav Melkumyan | feat(cli): allow credentials when adding CORS entry (#​8191) | b57cb26
Cody Olsen | chore: upgrade test studios to react 19, remove next studios (#​8178) | 9ed1ff7
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8197) | f0ece85
renovate[bot] | fix(deps): Update dev-non-major (#​8183) | 504337e
renovate[bot] | chore(deps): update dependency @​vitejs/plugin-react to ^4.3.4 (#​8198) | 9c12eca
renovate[bot] | chore(deps): update vitest monorepo to ^2.1.8 (#​8200) | c9d7b62
Bjørge Næss | fix(structure): set patchRef in an insertion effect instead of regular useEffect (#​8194) | facd3fb
renovate[bot] | chore(deps): update react monorepo (#​8199) | e3e3ad1
Robin Neatherway | fix: fixes schema extraction with nested union refs (#​8096) | ac62487
Cody Olsen | fix: React 19 typings (finally) (#​8171) | 68f244b
Eoin Falconer | fix: unset should unset readOnly date field from custom input component (#​8192) | e4f7164
renovate[bot] | chore(deps): update typescript-tooling (#​8207) | d3a71a4
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.1 (#​8203) | e98cf47
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.20.1 (#​8206) | a354c03
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.20.0 (#​8208) | 1e12bc9
Bjørge Næss | fix(sanity): fix race condition introduced by #​8120 (#​8211) | 27feda0

v3.68.3

Compare Source

🐛 Notable bugfixes

  • Improves React 19 compatibility for TypeScript users by changing @types/react from a direct dependency to a peer dependency in @sanity/types.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Cody Olsen | fix: support react 19 type definitions (#​8121) | ac26a4f

v3.68.2

Compare Source

🐛 Notable bugfixes

  • Removes reliance on third party dependency due to license incompatibility

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Magnus Holm | feat(cli): remove patching of tsconfig.json and thus silver-fleece dependency (#​8114) | d2f2254

v3.68.1

Compare Source

🐛 Notable bugfixes

  • Fixes issue with presentation tool crashing.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.19.13 (#​8102) | cfaa69b

v3.68.0

Compare Source

🐛 Notable bugfixes

  • Improves performance of the presence menu.
  • Improves scrolling performance of document list pane views.
  • Improves rendering performance when hovering over fields.
  • Keeps tab focus inside popover dialogs for the Portable Text Editor when editing links and similar.
  • Fixes a bug that could cause relative timestamps, such as those shown in the document history inspector, to incorrectly appear to be in the future.
  • Fixes an issue where WebKit was unable to tab into a form field's action menu.
  • Large Portable Text fields are now streamed into the editor

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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 using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot requested a review from a team October 1, 2023 00:32
@renovate
Copy link
Contributor Author

renovate bot commented Oct 1, 2023

⚠ 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: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: [email protected]
npm error Found: [email protected]
npm error node_modules/semantic-release
npm error   dev semantic-release@"^21.1.2" from [email protected]
npm error   packages/gatsby-source-sanity
npm error     [email protected]
npm error     node_modules/gatsby-source-sanity
npm error       workspace packages/gatsby-source-sanity from the root project
npm error       1 more (example-blog)
npm error
npm error Could not resolve dependency:
npm error peer semantic-release@"^22.0.12 || ^23.0.2" from @sanity/[email protected]
npm error node_modules/@sanity/semantic-release-preset
npm error   dev @sanity/semantic-release-preset@"^4.1.7" from [email protected]
npm error   packages/gatsby-source-sanity
npm error     [email protected]
npm error     node_modules/gatsby-source-sanity
npm error       workspace packages/gatsby-source-sanity from the root project
npm error       1 more (example-blog)
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-05-09T06_38_05_383Z-eresolve-report.txt

npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-09T06_38_05_383Z-debug-0.log

@vercel
Copy link

vercel bot commented Oct 1, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gatsby-source-sanity ❌ Failed (Inspect) Jan 17, 2025 2:48am

@renovate renovate bot force-pushed the renovate/examples branch from 5af0984 to c9dea29 Compare October 2, 2023 23:05
@renovate renovate bot force-pushed the renovate/examples branch from c9dea29 to 6c47a74 Compare October 3, 2023 19:03
@renovate renovate bot force-pushed the renovate/examples branch from 6c47a74 to 41c0dbb Compare October 4, 2023 15:28
@renovate renovate bot force-pushed the renovate/examples branch from 41c0dbb to 8527991 Compare October 4, 2023 22:32
@renovate renovate bot force-pushed the renovate/examples branch from 8527991 to 728dffa Compare October 6, 2023 21:41
@renovate renovate bot force-pushed the renovate/examples branch from 728dffa to c85a812 Compare October 7, 2023 02:07
@renovate renovate bot force-pushed the renovate/examples branch from c85a812 to 1a8d7b4 Compare October 9, 2023 14:02
@renovate renovate bot force-pushed the renovate/examples branch from 1a8d7b4 to 4742657 Compare October 9, 2023 19:14
@renovate renovate bot force-pushed the renovate/examples branch from 4742657 to 56535dc Compare October 10, 2023 21:13
@renovate renovate bot force-pushed the renovate/examples branch from 56535dc to 198cfec Compare October 12, 2023 23:05
@renovate renovate bot force-pushed the renovate/examples branch from 198cfec to 1ba8684 Compare October 13, 2023 03:56
@renovate renovate bot force-pushed the renovate/examples branch from 1ba8684 to 73be740 Compare October 17, 2023 22:40
@renovate renovate bot force-pushed the renovate/examples branch from b0c4c59 to 03d9065 Compare November 21, 2024 15:19
@renovate renovate bot force-pushed the renovate/examples branch from 03d9065 to eda05f8 Compare November 25, 2024 03:53
@renovate renovate bot force-pushed the renovate/examples branch from eda05f8 to e50ca04 Compare November 26, 2024 13:17
@renovate renovate bot force-pushed the renovate/examples branch from e50ca04 to 2df344c Compare December 5, 2024 19:48
@renovate renovate bot changed the title fix(deps): Update non-major chore(deps): update non-major Dec 8, 2024
@renovate renovate bot changed the title chore(deps): update non-major fix(deps): Update non-major Dec 8, 2024
@renovate renovate bot force-pushed the renovate/examples branch from 2df344c to c554f4c Compare December 9, 2024 21:45
@renovate renovate bot changed the title fix(deps): Update non-major chore(deps): update non-major Dec 10, 2024
@renovate renovate bot force-pushed the renovate/examples branch from c554f4c to 0e5f0f1 Compare December 11, 2024 02:22
@renovate renovate bot force-pushed the renovate/examples branch from 0e5f0f1 to bb54c5e Compare December 11, 2024 05:25
@renovate renovate bot force-pushed the renovate/examples branch from bb54c5e to 26e5213 Compare December 20, 2024 19:11
@renovate renovate bot force-pushed the renovate/examples branch from 26e5213 to 716b2bc Compare January 3, 2025 18:35
@renovate renovate bot force-pushed the renovate/examples branch from 716b2bc to ea48390 Compare January 8, 2025 20:50
@renovate renovate bot force-pushed the renovate/examples branch from ea48390 to 840fa25 Compare January 14, 2025 22:48
@renovate renovate bot force-pushed the renovate/examples branch from 840fa25 to a4a0c5a Compare January 15, 2025 18:31
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