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 #536

Merged
merged 1 commit into from
Jan 23, 2025
Merged

chore(deps): update non-major #536

merged 1 commit into from
Jan 23, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@sanity/client (source) 6.22.4 -> 6.27.1 age adoption passing confidence dependencies minor
@sanity/icons (source) 3.4.0 -> 3.5.7 age adoption passing confidence dependencies minor
@sanity/vision (source) 3.64.1 -> 3.71.2 age adoption passing confidence dependencies minor
@sanity/visual-editing (source) 2.7.0 -> 2.12.8 age adoption passing confidence dependencies minor
@types/react (source) 18.3.12 -> 18.3.18 age adoption passing confidence devDependencies patch
@​vercel/og 0.6.3 -> 0.6.4 age adoption passing confidence dependencies patch
eslint-config-next (source) 14.2.18 -> 14.2.23 age adoption passing confidence devDependencies patch
groq (source) 3.64.1 -> 3.71.2 age adoption passing confidence dependencies minor
next (source) 14.2.21 -> 14.2.23 age adoption passing confidence dependencies patch
next-sanity (source) 9.8.13 -> 9.8.42 age adoption passing confidence dependencies patch
peter-evans/create-pull-request 5e91468 -> 67ccf78 action digest
postcss (source) 8.4.49 -> 8.5.1 age adoption passing confidence devDependencies minor
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence devDependencies minor
prettier-plugin-packagejson 2.5.3 -> 2.5.8 age adoption passing confidence devDependencies patch
prettier-plugin-tailwindcss 0.6.8 -> 0.6.10 age adoption passing confidence devDependencies patch
sanity (source) 3.64.1 -> 3.71.2 age adoption passing confidence dependencies minor
sanity-plugin-asset-source-unsplash 3.0.1 -> 3.0.2 age adoption passing confidence dependencies patch
styled-components (source) 6.1.13 -> 6.1.14 age adoption passing confidence dependencies patch
swr (source) 2.2.5 -> 2.3.0 age adoption passing confidence dependencies minor
tailwindcss (source) 3.4.14 -> 3.4.17 age adoption passing confidence devDependencies patch
typescript (source) 5.6.3 -> 5.7.3 age adoption passing confidence devDependencies minor

Release Notes

sanity-io/client (@​sanity/client)

v6.27.1

Compare Source

Bug Fixes
  • csm: handle Cannot read properties of undefined (cb80d68)

v6.27.0

Compare Source

Features

v6.26.1

Compare Source

Bug Fixes

v6.26.0

Compare Source

Features

v6.25.0

Compare Source

Features
  • request: add flag to disable logging api warnings (#​925) (3f90ab0)

v6.24.4

Compare Source

Bug Fixes

v6.24.3

Compare Source

Bug Fixes

v6.24.2

Compare Source

Bug Fixes

v6.24.1

Compare Source

Bug Fixes

v6.24.0

Compare Source

Features
Bug Fixes
  • export validateApiPerspective (b73ae46)

v6.23.0

Compare Source

Features
Bug Fixes
  • types: add (abort) signal to raw request typings (#​926) (fcd9a16)

v6.22.5

Compare Source

Bug Fixes
sanity-io/icons (@​sanity/icons)

v3.5.7

Compare Source

Bug Fixes

v3.5.6

Compare Source

Bug Fixes
  • temporarily disable react compiler (03f3374)

v3.5.5

Compare Source

Bug Fixes
  • deps: upgrade @sanity/pkg-utils to v6.12.2 (7a2af1d)

v3.5.4

Compare Source

Bug Fixes

v3.5.3

Compare Source

Bug Fixes
  • deps: update react compiler dependencies 🤖 ✨ (#​101) (cf20e80)

v3.5.2

Compare Source

Bug Fixes

v3.5.1

Compare Source

Bug Fixes

v3.5.0

Compare Source

Features
Bug Fixes
sanity-io/sanity (@​sanity/vision)

v3.71.2

Compare Source

v3.71.1

Compare Source

🐛 Notable bugfixes

  • Fixes react module import error affecting production builds of auto-updating studios.

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
------------ | ------------- | -------------
Bjørge Næss | fix: revert back to vite v5 (#​8362) | 03fa6f1

v3.71.0

Compare Source

✨ Highlights

The @sanity/presentation codebase has been migrated into the sanity codebase

The @sanity/presentation codebase has been migrated into the sanity codebase. We've always recommended using Presentation Tool by importing it from sanity/presentation, like so:

// sanity.config.ts
import {defineConfig} from 'sanity'
import {presentationTool} from 'sanity/presentation'
import {structureTool} from 'sanity/structure'

export default defineConfig({
  plugins: [presentationTool(), structureTool()]
})

If you've been following this pattern then this change won't impact you in any way.

If you've been installing @sanity/presentation and are using it directly (we've sometimes suggested this to let folks try out bugfixes before they ship in the next release of sanity):

// sanity.config.ts
import {defineConfig} from 'sanity'
import {presentationTool} from '@​sanity/presentation'
import {structureTool} from 'sanity/structure'

export default defineConfig({
  plugins: [presentationTool(), structureTool()]
})

Then you need to search/replace all from '@​sanity/presentation' statements in your codebase with from 'sanity/presentation', and uninstall @sanity/presentation, as it'll no longer receive updates.

Other features

  • Adds disableActions option to array fields for disabling various array input capabilities.

🐛 Notable bugfixes

  • Fixes an issue preventing keyboard navigation to edit buttons for annotation and inline objects in the Portable Text Input.
  • Fixes an issue allowing custom form inputs to incorrectly patch a readOnly document by calling onChange.
  • The Presentation Tool's "Documents in use" pane now includes draft and unpublished documents, meaning it actually shows all documents in use, rather than just some of them.
  • No longer warns about duplicate keys when using Presentation on sanity dev with React Strict Mode, or embedded studios on Next.js App Router.

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
------------ | ------------- | -------------
Christian Grøngaard | fix(core): replace @sanity/block-tools with @portabletext/block-tools (#​8260) | 0ff7c7f
Pedro Bonamin | chore(core): update <Resizable/>, accept a position prop and remove duped and export from sanity (#​8250) | 4bca7b9
Pedro Bonamin | chore(core): use displayed value for document title (#​8268) | 9a5fee3
Pedro Bonamin | chore(core): update diffValue to accept a generic Meta property (#​8269) | cef5237
Pedro Bonamin | chore(core): add getTransactionLogs helper (#​8261) | 03e7760
Rostislav Melkumyan | chore(renovate): add @sanity/template-validator (#​8280) | d351c5f
Pedro Bonamin | fix(core): cannot find namespace 'vi' (#​8282) | 3a3cc58
Jordan Lawrence | chore: playwright test wrapper creates router context (#​8258) | a1a80a8
RitaDias | test(e2e): add checks for properties in reference tests (#​8279) | 21aba08
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.22.0 (#​8295) | 847f30e
renovate[bot] | chore(deps): update dev-non-major (#​8267) | c094eb3
Per-Kristian Nordnes | fix(core/form/inputs): fix issue with tabbing to popover toolbar buttons in PT-input (#​5057) | 6c61c9c
renovate[bot] | chore(deps): update github artifact actions to v4 (major) (#​8298) | a7f5230
Jordan Lawrence | feat: Updated Navbar link for Tasks tool (#​8257) | 498b05e
Espen Hovlandsdal | fix(deps): upgrade vite to v6 | 532eb63
Espen Hovlandsdal | chore: temporary override to make vitest use vite 6 | 995eeba
Christian Grøngaard | fix(types): make ObjectSchemaType['__experimental_search'] optional (#​8289) | 7f5c037
Jordan Lawrence | chore: explicitly setting all navbar dropdowns and menu popovers as having default tone (#​8301) | c0d26c0
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8305) | 8d3ac75
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.22.1 (#​8308) | 3a49a11
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.24.4 (#​8307) | ee29383
Bjørge Næss | feat(preview): add experimental support for observing full documents (#​7397) | 56bcd0a
Jordan Lawrence | fix: patching a readOnly document is blocked (#​8292) | 49cc66f
Jordan Lawrence | fix: readOnly pane overrides patch (#​8313) | ad3fd48
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.25.0 (#​8315) | d4175f9
Cody Olsen | refactor: migrate @sanity/presentation codebase (#​8312) | 680930c
renovate[bot] | fix(deps): update dependency @​sanity/mutate to ^0.12.1 (#​8239) | b53b164
renovate[bot] | fix(deps): update dependency @​sanity/preview-url-secret to ^2.1.0 (#​8316) | e8faa3a
Cody Olsen | fix(presentation): always show all documents in use (#​8320) | cbbebd5
Cody Olsen | fix(presentation): avoid duplicate key warning (#​8319) | 48f3e68
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8327) | 2e1f58e
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8328) | 698d609
renovate[bot] | chore(deps): update dev-non-major (#​8321) | 4e4dc8f
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.16 (#​8329) | 76609d2
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.22.0 (#​8252) | 5379e4f
renovate[bot] | fix(deps): update dependency @​portabletext/block-tools to ^1.1.0 (#​8285) | ba61226
Rostislav Melkumyan | feat(cli): remote template bootstrapper to support write token (#​8277) | b5e5e9d
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.3 (#​8330) | 148c1ec
renovate[bot] | chore(lockfile): update dependency framer-motion to v11.18.1 (#​8331) | b99d808
Bjørge Næss | feat(form): add support for disabling array input capabilities (#​7615) | 9ce399c
Simeon Griggs | fix: add defineField helper to alt field (#​8333) | fc456ea
Christian Grøngaard | test: fix PTE copy/paste test case (#​8344) | 044f24c
Bjørge Næss | feat(preview): add experimental support for live document id sets (#​7398) | d1dc5b5

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](https://redirect.github.com/sanity-io/sanity/


Configuration

📅 Schedule: Branch creation - "* * 1 */3 *" (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 as a code owner January 23, 2025 14:29
Copy link

vercel bot commented Jan 23, 2025

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

Name Status Preview Comments Updated (UTC)
nextjs-blog-cms-sanity-v3 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 23, 2025 2:37pm

Copy link

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@sanity/[email protected] 🔁 npm/@sanity/[email protected] Transitive: environment, network +29 8.07 MB
npm/@sanity/[email protected] 🔁 npm/@sanity/[email protected] None 0 1.45 MB sanity-io
npm/@sanity/[email protected] 🔁 npm/@sanity/[email protected] Transitive: environment +72 21.1 MB ash
npm/@sanity/[email protected] 🔁 npm/@sanity/[email protected] None +28 20.2 MB sanity-io
npm/@types/[email protected] 🔁 npm/@types/[email protected] None +2 1.69 MB types
npm/@vercel/[email protected] 🔁 npm/@vercel/[email protected] None +23 16.9 MB vercel-release-bot
npm/[email protected] 🔁 npm/[email protected] Transitive: environment, eval, filesystem, shell +203 25.4 MB timer, timneutkens, vercel-release-bot
npm/[email protected] 🔁 npm/[email protected] None 0 11.8 kB ash
npm/[email protected] 🔁 npm/[email protected] Transitive: network +56 23.1 MB adoprog, armandocerna, ash, ...66 more
npm/[email protected] 🔁 npm/[email protected] None +23 1.2 GB rauchg, timneutkens, vercel-release-bot
npm/[email protected] 🔁 npm/[email protected] None +3 405 kB ai
npm/[email protected] 🔁 npm/[email protected] Transitive: environment +12 439 kB matzkoh
npm/[email protected] 🔁 npm/[email protected] None 0 2.7 MB thecrypticace
npm/[email protected] 🔁 npm/[email protected] None 0 7.83 MB prettier-bot
npm/[email protected] 🔁 npm/[email protected] Transitive: environment +51 21.4 MB sanity-io
npm/[email protected] 🔁 npm/[email protected] Transitive: environment, eval, filesystem, network, shell, unsafe +965 803 MB ash
npm/[email protected] 🔁 npm/[email protected] Transitive: filesystem +16 3.73 MB probablyup
npm/[email protected] 🔁 npm/[email protected] Transitive: environment +2 306 kB vercel-release-bot
npm/[email protected] 🔁 npm/[email protected] Transitive: network, shell, unsafe +97 15 MB adamwathan, malfaitrobin, reinink
npm/[email protected] 🔁 npm/[email protected] None 0 22.7 MB typescript-bot

View full report↗︎

Copy link

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSourceCI
Possible typosquat attack npm/[email protected] ⚠︎

View full report↗︎

Next steps

What is a typosquat?

Package name is similar to other popular packages and may not be the package you want.

Use care when consuming similarly named packages and ensure that you did not intend to consume a different package. Malicious packages often publish using similar names as existing popular packages.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/[email protected] or ignore all packages with @SocketSecurity ignore-all

@stipsan stipsan merged commit 60439df into main Jan 23, 2025
5 checks passed
@stipsan stipsan deleted the renovate/non-major branch January 23, 2025 15:27
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jan 24, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant