deps: bump the dependencies-minor group across 1 directory with 7 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(3 months ago)
(3 months ago)
dependencies javascript
Bumps the dependencies-minor group with 7 updates in the / directory:
| Package | From | To |
|---|---|---|
| @hookform/resolvers | 5.1.1 |
5.2.0 |
| lucide-react | 0.515.0 |
0.532.0 |
| next | 15.3.3 |
15.4.4 |
| react | 19.1.0 |
19.1.1 |
| react-dom | 19.1.0 |
19.1.1 |
| react-hook-form | 7.58.0 |
7.61.1 |
| @playwright/test | 1.53.0 |
1.54.1 |
Updates @hookform/resolvers from 5.1.1 to 5.2.0
Commits
f040039feat(ajv): add ajv-formats for ajvResolver (#797)- See full diff in compare view
Updates lucide-react from 0.515.0 to 0.532.0
Release notes
Sourced from lucide-react's releases.
Version 0.532.0
What's Changed
- feat(icons): added
handbagicon by@jamiemlawin lucide-icons/lucide#3298- fix(icons): changed
wrenchicon by@karsa-mistmerein lucide-icons/lucide#3459Full Changelog: https://github.com/lucide-icons/lucide/compare/0.531.0...0.532.0
Version 0.531.0
What's Changed
- fix(icons): changed
user-staricon by@karsa-mistmerein lucide-icons/lucide#3464- feat(icons): added
clipboard-clockicon by@beanduongin lucide-icons/lucide#3427New Contributors
@beanduongmade their first contribution in lucide-icons/lucide#3427Full Changelog: https://github.com/lucide-icons/lucide/compare/0.530.0...0.531.0
Version 0.530.0
What's Changed
- feat(icons): added
user-staricon by@MArtytraM99in lucide-icons/lucide#3331New Contributors
@MArtytraM99made their first contribution in lucide-icons/lucide#3331Full Changelog: https://github.com/lucide-icons/lucide/compare/0.529.0...0.530.0
Version 0.529.0
What's Changed
- fix(icons): changed
shovelicon by@karsa-mistmerein lucide-icons/lucide#3458- fix(icons): changed
castleicon by@karsa-mistmerein lucide-icons/lucide#2972- fix(icons): Rename
location-edittomap-pin-pencilby@ericfennisin lucide-icons/lucide#3462- feat(icons): added
map-minusicon by@MarianoFranzesein lucide-icons/lucide#3259New Contributors
@MarianoFranzesemade their first contribution in lucide-icons/lucide#3259Full Changelog: https://github.com/lucide-icons/lucide/compare/0.528.0...0.529.0
Version 0.528.0
What's Changed
- fix(icons): changed
lassoicon by@jguddasin lucide-icons/lucide#3454- fix(icons): changed
gemicon by@karsa-mistmerein lucide-icons/lucide#3442- fix(icons): Refine
refresh-ccw-dotto match otherrefresh-icons by@jamiemlawin lucide-icons/lucide#3437- fix(icons): changed
croissanticon by@karsa-mistmerein lucide-icons/lucide#3428- fix(icons): changed
sprouticon by@jamiemlawin lucide-icons/lucide#3430- fix(icons): arcified playback icons by
@karsa-mistmerein lucide-icons/lucide#3425- fix(icons): changed
sparklesicon by@karsa-mistmerein lucide-icons/lucide#3426- fix(icons): arcify
arrow-big-icons by@jamiemlawin lucide-icons/lucide#3356- feat(icons): added
hat-glassesicon by@karsa-mistmerein lucide-icons/lucide#3431
... (truncated)
Commits
3e644fdchore(scripts): Refactor scripts to typescript (#3316)- See full diff in compare view
Updates next from 15.3.3 to 15.4.4
Release notes
Sourced from next's releases.
v15.4.4
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- Fix dynamicParams false layout case in dev (#82026)
- Turbopack: fix scope hoisting variable renaming bug (#81640)
- Upgrade to swc v33 (#81750)
- Revert "[metadata] use https protocol for schema urls" (#81934)
Credits
Huge thanks to
@bgw@mischnic@huozhi@lukesandbergand@ijjkfor helping!v15.4.3
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- Turbopack: fix dist dir on Windows (#81758)
Credits
Huge thanks to
@mischnicfor helping!v15.4.2
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- pages router metadata bugs with React 19 (#81733)
- [metadata] replace for initial body icon case (#81688)
- Ensure custom NextServer config is honored (#81681)
Credits
Huge thanks to
@huozhi,@ijjk, and@ztannerfor helping!v15.4.2-canary.19
Core Changes
- Turbopack: write tasks doesn't need to be session dependent, as effects will restore: #78727
... (truncated)
Commits
fe5db65v15.4.44a90ff7[backport] Fix dynamicParams false layout case in dev (#82026)9bf932cTurbopack: fix scope hoisting variable renaming bug (#81640)6d0ffccUpgrade to swc v33 (#81750)e545417Turbopack: Use workaround for rustc miscompilation bug on macos intel7d76cb8Revert "[metadata] use https protocol for schema urls" (#81934)f980400v15.4.3a5b73c3Backport: Turbopack: fix dist dir on Windows (#81758) (#81925)1617b26v15.4.28f64c82fix: pages router metadata bugs with React 19 (#81733)- Additional commits viewable in compare view
Updates react from 19.1.0 to 19.1.1
Commits
87e33caSet release versions to 19.1.15a1eb6ffix: rename bottom stack frame (#33680)- See full diff in compare view
Updates react-dom from 19.1.0 to 19.1.1
Commits
87e33caSet release versions to 19.1.1b793948Bump next prerelease version numbers (#32782)- See full diff in compare view
Updates react-hook-form from 7.58.0 to 7.61.1
Release notes
Sourced from react-hook-form's releases.
Version 7.61.1
Revert "⌨️ fix: watch return type based on defaultValue (#12896)"
Version 7.61.0
🧮 feat: compute prop for useWatch subscription (#12503)
- subscribe to the entire form but only return updated value with certain condition
type FormValue = { test: string; }const watchedValue = useWatch({
control: methods.control,
compute: (data: FormValue) => {
if (data.test?.length) {
return data.test;
}return '';},
});
- subscribe to a specific form value state
type FormValue = { test: string; }const watchedValue = useWatch({
control: methods.control,
name: 'test',
compute: (data: string) => {
return data.length > 3 ? data : '';
},
});
👨🔧 trigger watch callbacks in response to value changes only (#12945) 🙏 track name with setValue subscription callbacks (#12946) ⌨️ fix: watch return type based on defaultValue (#12896) 🐞 fix #12959 subscribe with latest defaultValues #12961 🐞 fix: handle explicit "multipart/form-data" encType in Form Component (#12948) 🐞 fix(build): Remove React wildcard import to resolve ESM build issues (#12942) 🦭 chore: improve exclude patterns (#12935) 🐿️ chore: remove unused omit function (#12958)
Big thanks to
@joshkelfor helping with some of the subscription bugs! and also@kamja44,@mrazauskas,@codepunkt,@afontcuand@rururux
... (truncated)
Commits
13465d97.61.14a7f371Revert "⌨️ fix: watch return type based on defaultValue (#12896)"343ac037.61.03f4d24c🐞 fix #12959 subscribe with latest defaultValues #12961e295dc7🐿️ chore: remove unused omit function (#12958)7372556🧪 test: add unit tests for unsetEmptyArray, isWeb, and getValidationModes (#1...6de4297👨🔧 trigger watch callbacks in response to value changes only (#12945)ce7e216🙏 track name withsetValuesubscription callbacks (#12946)7ddbed4🐞 fix: handle explicit "multipart/form-data" encType in Form Component (#12948)82b742a🐞 fix(build): Remove React wildcard import to resolve ESM build issues (#12942)- Additional commits viewable in compare view
Updates @playwright/test from 1.53.0 to 1.54.1
Release notes
Sourced from @playwright/test's releases.
v1.54.1
Highlights
microsoft/playwright#36650 - [Regression]: 1.54.0 breaks downloading browsers when an HTTP(S) proxy is used
Browser Versions
- Chromium 139.0.7258.5
- Mozilla Firefox 140.0.2
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 140
- Microsoft Edge 140
v1.54.0
Highlights
New cookie property
partitionKeyin browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.New option
noSnippetsto disable code snippets in the html report.import { defineConfig } from '@playwright/test';export default defineConfig({ reporter: [['html', { noSnippets: true }]] });
New property
locationin test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation liketest.skiportest.fixmewas added.Command Line
New option
--user-data-dirin multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.npx playwright codegen --user-data-dir=./user-dataOption
-gvhas been removed from thenpx playwright testcommand. Use--grep-invertinstead.
npx playwright opendoes not open the test recorder anymore. Usenpx playwright codegeninstead.Miscellaneous
- Support for Node.js 16 has been removed.
- Support for Node.js 18 has been deprecated, and will be removed in the future.
Browser Versions
- Chromium 139.0.7258.5
- Mozilla Firefox 140.0.2
- WebKit 26.0
This version was also tested against the following stable channels:
... (truncated)
Commits
97b6b88chore: mark 1.54.1 (#36655)0071756cherry-pick(#36654): Revert "fix: get rid of url.parse in network code" (#36654)3da07a7cherry-pick(#36625): chore: render overlay on top of modal dom contentb01d0d1chore: mark v1.54.0 (#36626)12834b0cherry-pick(#36624): chore: update v1.54 release notes82ce736test: remove stale fixme/skips in capabilities spec (#36617)fab3043chore: v1.54 release notes (#36620)ba32a24chore: push action in context to the recorder app (#36611)090e5aachore: update WebKit version to 26.0 (#36619)2edbe25chore: update browser_patches to 9638cca873674fdb6c97a524be0d3ae4874f805a (#3...- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
2
+204
-208
Package Dependencies
Technical Details
| ID: | 4275676 |
| UUID: | 2702478449 |
| Node ID: | PR_kwDOO-Ifbc6hFIxx |
| Host: | GitHub |
| Repository: | aqsa326/npx-netlify-clone-https-github.com-aqsa326-example-nextjs-moonlight |
| Merge State: | Unknown |