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

Merged
merged 2 commits into from
Jan 28, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 27, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@atproto/api (source) 0.13.29 -> 0.13.31 age adoption passing confidence
@aws-sdk/client-s3 (source) 3.731.1 -> 3.735.0 age adoption passing confidence
@aws-sdk/s3-request-presigner (source) 3.731.1 -> 3.735.0 age adoption passing confidence
@iconify-json/tabler 1.2.14 -> 1.2.15 age adoption passing confidence
@playwright/test (source) 1.49.1 -> 1.50.0 age adoption passing confidence
@sanity/vision (source) 3.70.0 -> 3.71.2 age adoption passing confidence
@unocss/nuxt (source) 65.4.2 -> 65.4.3 age adoption passing confidence
@unocss/postcss (source) 65.4.2 -> 65.4.3 age adoption passing confidence
@unocss/reset (source) 65.4.2 -> 65.4.3 age adoption passing confidence
h3 1.13.1 -> 1.14.0 age adoption passing confidence
lint-staged 15.4.1 -> 15.4.3 age adoption passing confidence
nuxt-og-image (source) 4.1.1 -> 4.1.2 age adoption passing confidence
playwright-core (source) 1.49.1 -> 1.50.0 age adoption passing confidence
rollup (source) 4.31.0 -> 4.32.0 age adoption passing confidence
sanity (source) 3.70.0 -> 3.71.2 age adoption passing confidence
unocss (source) 65.4.2 -> 65.4.3 age adoption passing confidence

Release Notes

bluesky-social/atproto (@​atproto/api)

v0.13.31

Compare Source

Patch Changes

v0.13.30

Compare Source

Patch Changes
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.735.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.734.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.733.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.732.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

3.731.1 (2025-01-18)

Note: Version bump only for package @​aws-sdk/client-s3

aws/aws-sdk-js-v3 (@​aws-sdk/s3-request-presigner)

v3.735.0

Compare Source

Note: Version bump only for package @​aws-sdk/s3-request-presigner

v3.734.0

Compare Source

Note: Version bump only for package @​aws-sdk/s3-request-presigner

v3.733.0

Compare Source

Note: Version bump only for package @​aws-sdk/s3-request-presigner

v3.732.0

Compare Source

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.731.1 (2025-01-18)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

microsoft/playwright (@​playwright/test)

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132
sanity-io/sanity (@​sanity/vision)

v3.71.2

Compare Source

🐛 Notable bugfixes

  • Fixes a regression causing the perspective switcher in the Presentation tool to reload the iframe and lose connection with loaders, causing the perspective to fail switching. It now actually switches the perspective. ❤

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(presentation): perspective switching regression (#​8383) | 9caf5d8

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

unocss/unocss (@​unocss/nuxt)

v65.4.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
unjs/h3 (h3)

v1.14.0

Compare Source

compare changes

🚀 Enhancements
  • session: Allow using with crossws hooks (#​960)
❤️ Contributors
lint-staged/lint-staged (lint-staged)

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.
nuxt-modules/og-image (nuxt-og-image)

v4.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
rollup/rollup (rollup)

v4.32.0

Compare Source

2025-01-24

Features
  • Add watch.onInvalidate option to trigger actions immediately when a file is changed (#​5799)
Bug Fixes
  • Fix incorrect urls in CLI warnings (#​5809)
Pull Requests

Configuration

📅 Schedule: Branch creation - "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 was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Jan 27, 2025

Deploy Preview for roe-cms ready!

Name Link
🔨 Latest commit 394d555
🔍 Latest deploy log https://app.netlify.com/sites/roe-cms/deploys/6796eda30283d70008d710b0
😎 Deploy Preview https://deploy-preview-1533--roe-cms.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

cloudflare-workers-and-pages bot commented Jan 27, 2025

Deploying danielroe with  Cloudflare Pages  Cloudflare Pages

Latest commit: 394d555
Status: ✅  Deploy successful!
Preview URL: https://589c8be2.danielroe.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.danielroe.pages.dev

View logs

Copy link
Contributor Author

renovate bot commented Jan 27, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@danielroe danielroe merged commit e6197b2 into main Jan 28, 2025
11 checks passed
@danielroe danielroe deleted the renovate/all-minor-patch branch January 28, 2025 16:58
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.

1 participant