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

Update minor and patch dependencies #259

Merged
merged 1 commit into from
Sep 14, 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
@next/bundle-analyzer (source) 14.2.8 -> 14.2.11 age adoption passing confidence
@next/env (source) 14.2.8 -> 14.2.11 age adoption passing confidence
@next/mdx (source) 14.2.8 -> 14.2.11 age adoption passing confidence
@storybook/addon-a11y (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/addon-essentials (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/addon-interactions (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/addon-links (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/blocks (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/nextjs (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/react (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@storybook/test (source) 8.2.9 -> 8.3.0 age adoption passing confidence
@types/node (source) 22.5.4 -> 22.5.5 age adoption passing confidence
@vitest/browser (source) 2.0.5 -> 2.1.1 age adoption passing confidence
@vitest/coverage-istanbul (source) 2.0.5 -> 2.1.1 age adoption passing confidence
@vitest/ui (source) 2.0.5 -> 2.1.1 age adoption passing confidence
chromatic (source) 11.7.1 -> 11.10.2 age adoption passing confidence
eslint-config-next (source) 14.2.8 -> 14.2.11 age adoption passing confidence
next (source) 14.2.8 -> 14.2.11 age adoption passing confidence
playwright (source) 1.47.0 -> 1.47.1 age adoption passing confidence
shiki (source) 1.16.2 -> 1.17.6 age adoption passing confidence
storybook (source) 8.2.9 -> 8.3.0 age adoption passing confidence
tailwindcss (source) 3.4.10 -> 3.4.11 age adoption passing confidence
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.1 age adoption passing confidence

Release Notes

vercel/next.js (@​next/bundle-analyzer)

v14.2.11

Compare Source

v14.2.10

Compare Source

v14.2.9

Compare Source

vercel/next.js (@​next/env)

v14.2.11

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
Credits

Huge thanks to @​huozhi, @​devjiwonchoi, and @​ijjk for helping!

v14.2.10

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
Credits

Huge thanks to @​huozhi and @​ijjk for helping!

v14.2.9

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Revert "Fix esm property def in flight loader (#​66990)" (#​69749)
  • Disable experimental.optimizeServer by default to fix failed server action (#​69788)
  • Fix middleware fallback: false case (#​69799)
  • Fix status code for /_not-found route (#​64058) (#​69808)
  • Fix metadata prop merging (#​69807)
  • create-next-app: fix font file corruption when using import alias (#​69806)
Credits

Huge thanks to @​huozhi, @​ztanner, @​ijjk, and @​lubieowoce for helping!

storybookjs/storybook (@​storybook/addon-a11y)

v8.3.0

Compare Source

Fresh out of the oven! Storybook 8.3 brings you:

  • ⚡️ First-class Vitest integration to run stories as component tests
  • 🔼 Next.js-Vite framework for Vitest compatibility and better DX
  • 🗜️ Further reduced bundle size for a smaller install footprint
  • 🌐 Experimental Story globals to standardize stories for themes, viewports, and locales
  • 💯 Hundreds more improvements
List of all updates
vitest-dev/vitest (@​vitest/browser)

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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.

Potential Breaking Change
  • workspace:
    • Correctly resolve workspace globs and file paths  -  by @​sheremet-va in https://github.com/vitest-dev/vitest/issues/6316 (afdcb)
    • This changes how the custom glob pattern in the workspace config is treated. Any file matching the glob is considered a Vitest config file. Any folder matching the glob pattern is treated as a workspace project and is subject to the regular config resolution (single vitest.config.ts or vite.config.ts inside the folder)
    • For example, projects/* will match anything inside the projects folder. If it's a folder, we try to find the config inside that folder (if there is none, it is still treated as a project with the default config). If it's a file, it will be treated as a Vitest config. projects/**/* previously would assume that you only wanted to have folders as projects, but now it will match every single file insideprojects.
    • This change doesn't affect non-glob usage.
   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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

vercel bot commented Sep 13, 2024

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

Name Status Preview Comments Updated (UTC)
k8o ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 14, 2024 1:57am

@renovate renovate bot force-pushed the renovate/minor-and-patch-dependencies branch from 202a753 to 74a77d9 Compare September 14, 2024 01:54
@k35o k35o merged commit 11715c4 into main Sep 14, 2024
6 checks passed
@k35o k35o deleted the renovate/minor-and-patch-dependencies branch September 14, 2024 03:23
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.

1 participant