deps: bump the dependencies-minor group across 1 directory with 5 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(4 months ago)
(4 months ago)
(4 months ago)
dependencies javascript
Bumps the dependencies-minor group with 5 updates in the / directory:
| Package | From | To |
|---|---|---|
| @hookform/resolvers | 5.1.1 |
5.2.0 |
| lucide-react | 0.515.0 |
0.526.0 |
| next | 15.3.3 |
15.4.4 |
| 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.526.0
Release notes
Sourced from lucide-react's releases.
Version 0.526.0
What's Changed
- ci(icons): Add ChatGPT tags suggestions on icon PRs by
@ericfennisin lucide-icons/lucide#3372- docs(site): small changes for DynamicIcon by
@Itruliain lucide-icons/lucide#3355- fix(icons): changed
circle-parking-officon by@jguddasin lucide-icons/lucide#3343- feat(icons): added Turkish lira icons by
@jamiemlawin lucide-icons/lucide#2873- fix(icons): changed
brainicon by@jamiemlawin lucide-icons/lucide#3381- fix(icons): changed
cableicon by@jguddasin lucide-icons/lucide#3374- fix(icons): changed
podcasticon by@jguddasin lucide-icons/lucide#3385- fix(icons): changed
trashicon by@karsa-mistmerein lucide-icons/lucide#3394- fix(icons): changed
pen-lineandpencil-lineicon by@jguddasin lucide-icons/lucide#2663- fix(icons): fixed
banicon by@karsa-mistmerein lucide-icons/lucide#3434- fix(icons): changed
magneticon by@karsa-mistmerein lucide-icons/lucide#3435- feat(icons): added
wifi-syncicon by@luisdloperain lucide-icons/lucide#3132New Contributors
@Itruliamade their first contribution in lucide-icons/lucide#3355Full Changelog: https://github.com/lucide-icons/lucide/compare/0.525.0...0.526.0
Version 0.525.0
What's Changed
- fix(icons): Changed
megaphoneicon by@jamiemlawin lucide-icons/lucide#2448- fix(icons): arcified
shrubicon by@jguddasin lucide-icons/lucide#2292- fix(icons): changed
sun-moonicon by@zishankadriin lucide-icons/lucide#3328- fix(icons): changed
flagicon by@jamiemlawin lucide-icons/lucide#3370- feat(icons): added
tool-caseicon by@AlexNaskidain lucide-icons/lucide#3333New Contributors
@zishankadrimade their first contribution in lucide-icons/lucide#3328@AlexNaskidamade their first contribution in lucide-icons/lucide#3333Full Changelog: https://github.com/lucide-icons/lucide/compare/0.524.0...0.525.0
Version 0.524.0
What's Changed
- docs(packages/lucide-static): update docs for better clarity by
@karsa-mistmerein lucide-icons/lucide#3225- fix(icons): changed
desserticon by@jguddasin lucide-icons/lucide#3362- fix(icons): changed
ligatureicon by@jamiemlawin lucide-icons/lucide#3369- fix(icons): Updates to clock-related icons by
@jamiemlawin lucide-icons/lucide#2538- feat(icons): added
vector-squareicon by@chessurismein lucide-icons/lucide#2531Full Changelog: https://github.com/lucide-icons/lucide/compare/0.523.0...0.524.0
Version 0.523.0
What's Changed
- feat(icons): added
bottle-wineicon by@jguddasin lucide-icons/lucide#3265
... (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.18
Core Changes
... (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-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
+193
-197
Package Dependencies
Technical Details
| ID: | 4190734 |
| UUID: | 2698675795 |
| Node ID: | PR_kwDOO-Ifbc6g2oZT |
| Host: | GitHub |
| Repository: | aqsa326/npx-netlify-clone-https-github.com-aqsa326-example-nextjs-moonlight |
| Mergeable: | Yes |
| Merge State: | Clean |
| Rebaseable: | Yes |