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 all non-major dependencies #26

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 28, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/styled (source) 11.11.0 -> 11.11.5 age adoption passing confidence
@mui/material (source) 5.15.14 -> 5.16.1 age adoption passing confidence
@mui/material-nextjs (source) 5.15.11 -> 5.16.1 age adoption passing confidence
@testing-library/react 14.2.2 -> 14.3.1 age adoption passing confidence
@types/node (source) 20.11.30 -> 20.14.10 age adoption passing confidence
@types/react (source) 18.2.69 -> 18.3.3 age adoption passing confidence
@types/react-dom (source) 18.2.22 -> 18.3.0 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.1 age adoption passing confidence
eslint-config-next (source) 14.1.4 -> 14.2.5 age adoption passing confidence
jsdom 24.0.0 -> 24.1.0 age adoption passing confidence
ky 1.2.3 -> 1.4.0 age adoption passing confidence
next (source) 14.1.4 -> 14.2.5 age adoption passing confidence
npm-run-all2 6.1.2 -> 6.2.2 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence
typescript (source) 5.4.3 -> 5.5.3 age adoption passing confidence
vitest (source) 1.4.0 -> 1.6.0 age adoption passing confidence
zod (source) 3.22.4 -> 3.23.8 age adoption passing confidence

Release Notes

emotion-js/emotion (@​emotion/styled)

v11.11.5

Compare Source

mui/material-ui (@​mui/material)

v5.16.1

Compare Source

A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:

  • ⚛️ All packages, including Material UI, are now compatible with React 18.3.1
@mui/material@5.16.1
@mui/joy@5.0.0-beta.48
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​oliviertassinari, @​omahs, @​ZeeshanTamboli

v5.16.0

Compare Source

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.16.0
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexey-kozlenkov, @​jxdp, @​oliviertassinari, @​siriwatknp

v5.15.21

Compare Source

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Compare Source

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20
@mui/utils@5.15.15
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

Compare Source

v5.15.18

Compare Source

May 14, 2024

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.15.18
Docs
Core

All contributors of this release in alphabetical order: @​arthurbalduini, @​oliviertassinari, @​samuelsycamore, @​TahaRhidouani, @​tarunrajput

v5.15.17

Compare Source

v5.15.16

Compare Source

v5.15.15

Compare Source

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15
@mui/system@5.15.15
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

testing-library/react-testing-library (@​testing-library/react)

v14.3.1

Compare Source

Bug Fixes

v14.3.0

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.1

Compare Source

Fix support for React Compiler with React 18

The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43

When using a custom runtimeModule, the plugin will not try to pre-optimize react/compiler-runtime dependency.

Reminder: Vite expect code outside of node_modules to be ESM, so you will need to update the gist with import React from 'react'.

v4.3.0

Compare Source

Fix support for React compiler

Don't set retainLines: true when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:

export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', {}]]
  if (command === 'serve') {
    babelPlugins.push(['@​babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
Support HMR for class components

This is a long overdue and should fix some issues people had with HMR when migrating from CRA.

vercel/next.js (eslint-config-next)

v14.2.5

Compare Source

v14.2.4

Compare Source

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

Core Changes
  • fix: ensure route handlers properly track dynamic access (#​66446)
  • fix NextRequest proxy in edge runtime (#​66551)
  • Fix next/dynamic with babel and src dir (#​65177)
  • Use vercel deployment url for metadataBase fallbacks (#​65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#​65235)
  • Fix loading navigation with metadata and prefetch (#​66447)
  • prevent duplicate RSC fetch when action redirects (#​66620)
  • ensure router cache updates reference the latest cache values (#​66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#​66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#​66674)
  • Use addDependency to track metadata route file changes (#​66714)
  • Add timeout/retry handling for fetch cache (#​66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#​66755)
Credits

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

v14.2.3

Compare Source

v14.2.2

Compare Source

v14.2.1

Compare Source

v14.2.0

Compare Source

jsdom/jsdom (jsdom)

v24.1.0

Compare Source

  • Added the getSetCookie() method to the Headers class. (ushiboy)
  • Fixed the creation and parsing of elements with names from Object.prototype, like "constructor" or "toString".
  • Updated rweb-cssom, which can now parse additional CSS constructs.
sindresorhus/ky (ky)

v1.4.0

Compare Source

v1.3.0

Compare Source

v1.2.4

Compare Source

vercel/next.js (next)

v14.2.5

Compare Source

v14.2.4

Compare Source

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

Core Changes
  • fix: ensure route handlers properly track dynamic access (#​66446)
  • fix NextRequest proxy in edge runtime (#​66551)
  • Fix next/dynamic with babel and src dir (#​65177)
  • Use vercel deployment url for metadataBase fallbacks (#​65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#​65235)
  • Fix loading navigation with metadata and prefetch (#​66447)
  • prevent duplicate RSC fetch when action redirects (#​66620)
  • ensure router cache updates reference the latest cache values (#​66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#​66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#​66674)
  • Use addDependency to track metadata route file changes (#​66714)
  • Add timeout/retry handling for fetch cache (#​66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#​66755)
Credits

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

v14.2.3

Compare Source

v14.2.2

Compare Source

v14.2.1

Compare Source

v14.2.0

Compare Source

bcomnes/npm-run-all2 (npm-run-all2)

v6.2.2

Compare Source

Commits
  • Revert "Compatibility: npm, yarn and pnpm run scripts" fc35f0d

v6.2.1

Compare Source

Merged
  • Compatibility: npm, yarn and pnpm run scripts #143
  • Use neostandard + add more static code analysis #142
  • Upgrade: Bump c8 from 9.1.0 to 10.0.0 #141
  • Upgrade: Bump p-queue from 7.4.1 to 8.0.1 #138

v6.2.0

Compare Source

Merged
  • Placeholder that unfolds into multiple tasks #134
  • 📝 add compatibility note for pnpm. #136
  • Upgrade: Bump codecov/codecov-action from 3 to 4 #131
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.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

facebook/react (react)

v18.3.1

Compare Source

v18.3.0

Compare Source

facebook/react (react-dom)

v18.3.1

Compare Source

v18.3.0

Compare Source

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

v5.5.2

Compare Source

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitest-dev/vitest (vitest)

v1.6.0

Compare Source

   🚀 Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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. View repository job log here.

Copy link

vercel bot commented Mar 28, 2024

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

Name Status Preview Comments Updated (UTC)
fact-prod-calc ❌ Failed (Inspect) Jul 16, 2024 2:26pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7fa8cc2 to ad49d62 Compare March 29, 2024 09:23
@renovate renovate bot changed the title Update dependency @types/react to v18.2.70 Update dependency @types/react to v18.2.71 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ad49d62 to 02a4085 Compare March 29, 2024 21:41
@renovate renovate bot changed the title Update dependency @types/react to v18.2.71 Update dependency @types/react to v18.2.72 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 02a4085 to 2fde68c Compare March 30, 2024 19:47
@renovate renovate bot changed the title Update dependency @types/react to v18.2.72 Update dependency @types/react to v18.2.73 Mar 30, 2024
@renovate renovate bot changed the title Update dependency @types/react to v18.2.73 Update all non-major dependencies Mar 31, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2fde68c to 6e7e34e Compare March 31, 2024 17:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6e7e34e to 254050d Compare April 1, 2024 19:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 254050d to ef8a902 Compare April 2, 2024 05:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef8a902 to 0e7448d Compare April 2, 2024 06:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e7448d to 362143c Compare April 5, 2024 17:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 362143c to 0ba8447 Compare April 5, 2024 23:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ba8447 to 1c14615 Compare April 6, 2024 21:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c14615 to 1b4cfa3 Compare April 7, 2024 00:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1b4cfa3 to efad2c4 Compare April 7, 2024 07:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 77dc732 to 965a0a2 Compare June 23, 2024 19:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 965a0a2 to 65285d5 Compare June 23, 2024 22:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 65285d5 to be85f85 Compare June 25, 2024 08:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from be85f85 to 82a2afb Compare June 28, 2024 23:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 82a2afb to c248531 Compare June 29, 2024 15:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c248531 to 1a057d1 Compare July 1, 2024 17:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a057d1 to 4649e1d Compare July 4, 2024 19:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4649e1d to 3b1912a Compare July 6, 2024 19:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3b1912a to d9abd96 Compare July 7, 2024 04:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d9abd96 to 3175cfa Compare July 8, 2024 14:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3175cfa to 161f498 Compare July 8, 2024 19:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 161f498 to 2350981 Compare July 13, 2024 15:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2350981 to ab1dda1 Compare July 14, 2024 16:12
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.

None yet

0 participants