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 linters #354

Merged
merged 1 commit into from
Sep 13, 2024
Merged

chore(deps): update linters #354

merged 1 commit into from
Sep 13, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-react ^7.35.2 -> ^7.36.1 age adoption passing confidence
sanity (source) ^3.57.1 -> ^3.57.3 age adoption passing confidence
semantic-release ^24.1.0 -> ^24.1.1 age adoption passing confidence
vitest (source) ^2.0.5 -> ^2.1.0 age adoption passing confidence

Release Notes

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.36.1

Compare Source

Fixed

v7.36.0

Compare Source

Added
Fixed
  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#​3629 @​HenryBrown0)
  • JSX pragma: fail gracefully (#​3632 @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#​3799 @​ljharb)
Changed
sanity-io/sanity (sanity)

v3.57.3

Compare Source

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.

✨ Highlights
Auto-updates enabled by default

Newly initialized studios now have auto-updates enabled by default.

This feature keeps your deployed studio up to date with the latest versions of Sanity while maintaining full control over your code and customizations, ensuring the same great developer experience you’re accustomed to.

With auto-updates enabled, you'll only need to rebuild and redeploy when making your own changes, as new features and improvements from Sanity are delivered automatically.

Learn more at https://www.sanity.io/docs/auto-updating-studios

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
RitaDias | docs(sanity): remove @beta tags from migrate (#​7490) | aba8072
renovate[bot] | fix(deps): Update dev-non-major (#​7488) | fd37976
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.9 (#​7492) | e4afd03
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.16.5 (#​7493) | f9d354f
Carolina Gonzalez | chore: add help text for auto-updates in the studio (#​7461) | 8b0eeff
Carolina Gonzalez | feat(cli): use auto-updates flag in init (#​7401) | 17c02f9

v3.57.2

Compare Source

✨ Highlights

Improved developer tooling for Next.js and Sanity

  • When sanity init is run inside a Next.js project, an appropriate CORS origin is added to the project
  • When sanity init is run inside a Next.js project, environment variables are written to an .env.local file

🐛 Notable bugfixes

  • Fixes flickering issue when navigating within presentation introduced in v3.57.0

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] | chore(deps): update dependency @​sanity/pkg-utils to v6.11.0 (#​7441) | ef7fff8
RitaDias | feat(sanity): add telemetry when creating a draft (#​7459) | e6b0614
Jordan Lawrence | refactor(core): minor type usage improvement and using task plugin name (#​7453) | 23086e2
Ryan Bonial | fix(core): Fix Title in "Untitled was published" toast (#​7473) | f44786c
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.21.3 (#​7373) | 2002add
renovate[bot] | chore(deps): update dependency @​sanity/tsdoc to v1.0.101 (#​7382) | 3a18971
Jordan Lawrence | chore(core, structure): validation on references (#​7431) | 112df24
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.8.9 (#​7436) | 048068e
renovate[bot] | chore(deps): update pnpm to v9.9.0 (#​7480) | f1e2a55
renovate[bot] | fix(deps): Update dev-non-major (#​7477) | dce41fb
renovate[bot] | chore(deps): update dependency turbo to ^2.1.1 (#​7478) | 5ef2990
renovate[bot] | chore(deps): update peter-evans/create-pull-request action to v7 (#​7481) | b241a3d
renovate[bot] | chore(deps): update linters (#​7479) | d05a8ec
Cody Olsen | chore: fix tsc build errors in latest @types/react (#​7482) | e2a30fe
renovate[bot] | fix(deps): update dependency @​sanity/mutate to ^0.10.0 (#​7451) | ea3a79a
Simeon Griggs | fix(cli) use Next.js specific defaults for new projects (#​7465) | de03c57
Jordan Lawrence | Revert "chore: support for sticky params in URL and intent ops (#​7429)" (#​7489) | 5cb335b

semantic-release/semantic-release (semantic-release)

v24.1.1

Compare Source

vitest-dev/vitest (vitest)

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (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

Copy link

vercel bot commented Sep 13, 2024

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

Name Status Preview Comments Updated (UTC)
tsdoc ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 13, 2024 10:56am

Copy link

socket-security bot commented Sep 13, 2024

@stipsan stipsan merged commit 30bfb44 into main Sep 13, 2024
11 checks passed
@stipsan stipsan deleted the renovate/dev branch September 13, 2024 10: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