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(web): update devdependencies #75

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 29, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.24.7 -> 7.24.9 age adoption passing confidence
@next/env (source) 14.2.4 -> 14.2.5 age adoption passing confidence
@pandacss/dev (source) 0.41.0 -> 0.42.0 age adoption passing confidence
@pandacss/preset-panda (source) 0.41.0 -> 0.42.0 age adoption passing confidence
@playwright/test (source) 1.45.0 -> 1.45.1 age adoption passing confidence
@storybook/addon-a11y (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/addon-actions (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/addon-essentials (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/addon-interactions (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/addon-links (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/addon-viewport (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/blocks (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/nextjs (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/react (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/test (source) 8.1.11 -> 8.2.3 age adoption passing confidence
@storybook/test-runner 0.19.0 -> 0.19.1 age adoption passing confidence
lefthook 1.6.18 -> 1.7.2 age adoption passing confidence
playwright (source) 1.45.0 -> 1.45.1 age adoption passing confidence
postcss (source) 8.4.38 -> 8.4.39 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
storybook (source) 8.1.11 -> 8.2.3 age adoption passing confidence
typescript (source) 5.5.2 -> 5.5.3 age adoption passing confidence
webpack 5.92.1 -> 5.93.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.24.9

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal

v7.24.8

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
vercel/next.js (@​next/env)

v14.2.5

Compare Source

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

Core Changes
  • avoid merging global css in a way that leaks into other chunk groups (#​67373)
  • Fix server action edge redirect with middleware rewrite (#​67148)
  • fix(next): reject protocol-relative URLs in image optimization (#​65752)
  • fix(next-swc): correct path interop to filepath for wasm (#​65633)
  • Use addDependency to track metadata route file changes (#​66714)
  • Fix noindex is missing on static not-found page (#​67135)
  • perf: improve retrieving versionInfo on Turbo HMR (#​67309)
  • fix(next/image): handle invalid url (#​67465)
  • fix(next): initial prefetch cache not set properly with different search params (#​65977)
  • fix: Backport class properties fix (#​67377)
  • Upgrade acorn (#​67592)
Misc
  • Log stdio for pull-turbo-cache script (#​66759)
  • Ensure turbo is setup when building in docker (#​66804)
Credits

Huge thanks to @​devjiwonchoi, @​ijjk, @​emmerich, @​huozhi, @​kdy1, @​kwonoj, @​styfle, and @​sokra for helping!

chakra-ui/panda (@​pandacss/dev)

v0.42.0

Compare Source

Patch Changes
chakra-ui/panda (@​pandacss/preset-panda)

v0.42.0

Compare Source

Minor Changes
  • e157dd1: - Ensure classnames are unique across utilities to prevent potential clash
    • Add support for 4xl border radius token
Patch Changes
microsoft/playwright (@​playwright/test)

v1.45.1

Compare Source

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

v8.2.3

Compare Source

v8.2.2

Compare Source

v8.2.1

Compare Source

v8.2.0

Compare Source

Hold onto your hats! Storybook 8.2 has dropped, packed with a treasure trove of new features and bug fixes:

  • 🪝 New test hook beforeAll
  • 🕹️ Enhanced play function
  • 📦 Portable stories that let you use your stories in other testing tools
  • 🎁 Consolidated dependency to bring you better performance in a smaller package
  • ✨ Brand new onboarding experience to get you up to speed quicker
  • 💯 Hundreds more improvements
List of all updates
storybookjs/test-runner (@​storybook/test-runner)

v0.19.1

Compare Source

🐛 Bug Fix
Authors: 2
evilmartians/lefthook (lefthook)

v1.7.2

Compare Source

v1.7.1

Compare Source

v1.7.0

Compare Source

v1.6.22

Compare Source

Changelog

v1.6.21

Compare Source

Changelog

v1.6.19

Compare Source

Changelog

postcss/postcss (postcss)

v8.4.39

Compare Source

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

webpack/webpack (webpack)

v5.93.0

Compare Source


Configuration

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

🚦 Automerge: Enabled.

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. View repository job log here.

@renovate renovate bot added the 📦️ build ビルドシステムや依存関係の変更 label Jun 29, 2024
Copy link

vercel bot commented Jun 29, 2024

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

Name Status Preview Comments Updated (UTC)
simple-resas-app-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 15, 2024 5:31pm

@renovate renovate bot force-pushed the renovate/devdependencies branch from 68ea940 to 60a67d3 Compare July 1, 2024 19:28
@renovate renovate bot changed the title chore(web): update dependency postcss to v8.4.39 chore(web): update devdependencies Jul 1, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch from 60a67d3 to aef894a Compare July 2, 2024 22:46
@renovate renovate bot force-pushed the renovate/devdependencies branch from aef894a to abee7c5 Compare July 8, 2024 12:03
@renovate renovate bot force-pushed the renovate/devdependencies branch from abee7c5 to 3bb6233 Compare July 8, 2024 15:42
@renovate renovate bot force-pushed the renovate/devdependencies branch from 3bb6233 to 476e6bf Compare July 8, 2024 20:08
@renovate renovate bot force-pushed the renovate/devdependencies branch from 476e6bf to ea9dadc Compare July 10, 2024 09:42
@renovate renovate bot force-pushed the renovate/devdependencies branch from ea9dadc to deda346 Compare July 10, 2024 13:10
@renovate renovate bot force-pushed the renovate/devdependencies branch from deda346 to 7761447 Compare July 10, 2024 16:49
@renovate renovate bot force-pushed the renovate/devdependencies branch from 7761447 to 70e6d49 Compare July 11, 2024 10:32
@renovate renovate bot force-pushed the renovate/devdependencies branch from 70e6d49 to 33d9374 Compare July 11, 2024 15:43
@renovate renovate bot force-pushed the renovate/devdependencies branch from 33d9374 to 4c8dae4 Compare July 11, 2024 19:55
@renovate renovate bot force-pushed the renovate/devdependencies branch from 4c8dae4 to 818b860 Compare July 11, 2024 23:11
@renovate renovate bot force-pushed the renovate/devdependencies branch from 818b860 to eaef4f6 Compare July 12, 2024 00:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📦️ build ビルドシステムや依存関係の変更
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants