chore(deps): bump the dev-deps group across 1 directory with 21 updates
Bumps the dev-deps group with 21 updates in the / directory:
| Package | From | To |
|---|---|---|
| @next/bundle-analyzer | 15.0.0 |
15.0.3 |
| @playwright/test | 1.48.1 |
1.49.0 |
| @sentry/node | 8.37.1 |
8.40.0 |
| @swc/cli | 0.4.0 |
0.5.1 |
| @swc/jest | 0.2.36 |
0.2.37 |
| @types/jest | 29.5.12 |
29.5.14 |
| @types/minimist | 1.2.2 |
1.2.5 |
| @types/node | 22.5.4 |
22.9.1 |
| husky | 9.0.11 |
9.1.7 |
| lint-staged | 15.2.7 |
15.2.10 |
| next | 15.0.0 |
15.0.3 |
| playwright | 1.48.1 |
1.49.0 |
| playwright-core | 1.48.1 |
1.49.0 |
| sharp | 0.32.6 |
0.33.5 |
| sort-package-json | 2.10.1 |
2.11.0 |
| turbo | 2.2.3 |
2.3.1 |
| mongodb | 6.10.0 |
6.11.0 |
| @types/to-snake-case | 1.0.0 |
1.0.2 |
| esbuild | 0.23.1 |
0.24.0 |
| vue | 3.5.12 |
3.5.13 |
| @next/eslint-plugin-next | 15.0.0 |
15.0.3 |
Updates @next/bundle-analyzer from 15.0.0 to 15.0.3
Release notes
Sourced from @next/bundle-analyzer's releases.
v15.0.3
Core Changes
- Read page name from work store in server module map proxy: #71669
- codemod: should not transform when param is not used: #71664
- [dynamicIO] complete refactor to prerender: #71687
- fix: metadata image route normalize path posix for windows: #71673
- next-codemod(upgrade): optional catch when missing dev script: #71598
- Avoid server action function indirection in Turbopack: #71628
- fix: exclude
basePathinfindSourceMapURL: #71719- fix: stack frame text color in dark mode: #71656
- Fix: revert the bad node binary handling: #71723
- next-codemod: add empty
pnpm-workspace.yamlto test fixtures to bypass PNPM workspace checks: #71726- warn on sync access if dynamicIO is not enabled: #71696
- Update React from
69d4b800-20241021to45804af1-20241021: #71718- next-upgrade: do not add
--turbopackflag when--turboexists innext dev: #71730- feat: stitch errors with react owner stack: #70393
- [dynamicIO] update data access error and documentation: #71738
- Test cached form action with revalidate: #71591
- Upgrade React from
45804af1-20241021to28668d39-20241023: #71745- Fix race condition when setting client reference manifests: #71741
- Fix fetch with no-store inside of use cache: #71754
- Remove the bottom collapse button in dev overlay: #71658
- [dynamicIO] unify cache filling and lazy-module warming: #71749
- Don't filter out source location frames through RSC: #71752
- fix undefined default export error msg: #71762
- Upgrade React from
28668d39-20241023to1631855f-20241023: #71769- Enable owner stack in experimental build: #71716
- feat: add experiment for sharpjs cpu flags: #71733
- fix: handle server component replay error in error overlay: #71772
- Don't error asking for prebuilt bundles: #71778
- Replace
turbopack://[project]/...sourcemap uris withfile://...in development: #71489- misc: update source map paths for bundled Next.js runtime: #71779
- [dynamicIO] refine error message and docs: #71781
- next-upgrade: change
--turboto--turbopackif applicable: #71737- Show all diff when uncollapse: #71792
- Sourcemap errors in terminal by default : #71444
- Fully enable custom error callbacks for app router: #71794
- Simplify Server Action Webpack plugin: #71721
- ensure DIO development segment errors are cleared after correcting: #71811
- Include sourceframe in errors logged in the terminal during development: #71803
- [dynamicIO] update prerender cache scoping and cache warming for validation: #71822
- only force stack frame color in tty: #71860
- Add test for fetch with auth in use cache: #71768
- Fix race with hot-reloader-client clearing overlay errors: #71771
- Fix dynamic tracking in dev: #71867
- Revert "Sourcemap errors in terminal by default (#71444)": #71868
- Fix fetch caching inside of
"use cache": #71793- Trace upload: only send traces for current session: #71838
- Reland "Sourcemap errors in terminal by default": #71877
... (truncated)
Commits
Updates @playwright/test from 1.48.1 to 1.49.0
Release notes
Sourced from @playwright/test's releases.
v1.49.0
Aria snapshots
New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.
await page.goto('https://playwright.dev'); await expect(page.locator('body')).toMatchAriaSnapshot(` - banner: - heading /Playwright enables reliable/ [level=1] - link "Get started" - link "Star microsoft/playwright on GitHub" - main: - img "Browsers (Chromium, Firefox, WebKit)" - heading "Any browser • Any platform • One API" `);You can generate this assertion with Test Generator and update the expected snapshot with
--update-snapshotscommand line flag.Learn more in the aria snapshots guide.
Test runner
- New option testConfig.tsconfig allows to specify a single
tsconfigto be used for all tests.- New method test.fail.only() to focus on a failing test.
- Options testConfig.globalSetup and testConfig.globalTeardown now support multiple setups/teardowns.
- New value
'on-first-failure'for testOptions.screenshot.- Added "previous" and "next" buttons to the HTML report to quickly switch between test cases.
- New properties testInfoError.cause and testError.cause mirroring
Error.cause.Breaking: channels
chrome,msedgeand similar switch to new headlessThis change affects you if you're using one of the following channels in your
playwright.config.ts:
chrome,chrome-dev,chrome-beta, orchrome-canarymsedge,msedge-dev,msedge-beta, ormsedge-canaryWhat do I need to do?
After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.
Other breaking changes
- There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
- Package
@playwright/experimental-ct-vue2will no longer be updated.- Package
@playwright/experimental-ct-solidwill no longer be updated.Try new Chromium headless
You can opt into the new headless mode by using
'chromium'channel. As official Chrome documentation puts it:New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.
... (truncated)
Commits
a70a96achore: mark v1.49.0 (#33649)53f51a8cherry-pick(#33638): chore: clear highlight when performing action2a00ca8cherry-pick(#33635): chore: add cm placeholder text0e64340cherry-pick(#33632): chore: highlight edited locator while recordingcb0f456cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...698823acherry-pick(#33627): fix(codegen): document.documentElement is null on early ...c0fa804cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...7a32228cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)0e31acecherry-pick(#33575): fix(canvas snapshots): position mismatch in headless modeb2a39ffcherry-pick(#33604): docs: update docs about headless shell- Additional commits viewable in compare view
Updates @sentry/node from 8.37.1 to 8.40.0
Release notes
Sourced from @sentry/node's releases.
8.40.0
Important Changes
feat(angular): Support Angular 19 (#14398)
The
@sentry/angularSDK can now be used with Angular 19. If you're upgrading to the new Angular version, you might want to migrate from the now deprecatedAPP_INITIALIZERtoken toprovideAppInitializer. In this case, change the SentryTraceServiceinitialization inapp.config.ts:// Angular 18 export const appConfig: ApplicationConfig = { providers: [ // other providers { provide: TraceService, deps: [Router], }, { provide: APP_INITIALIZER, useFactory: () => () => {}, deps: [TraceService], multi: true, }, ], };// Angular 19 export const appConfig: ApplicationConfig = { providers: [ // other providers { provide: TraceService, deps: [Router], }, provideAppInitializer(() => { inject(TraceService); }), ], };
feat(core): Deprecate
debugIntegrationandsessionTimingIntegration(#14363)The
debugIntegrationwas deprecated and will be removed in the next major version of the SDK. To log outgoing events, use Hook Options (beforeSend,beforeSendTransaction, ...).The
sessionTimingIntegrationwas deprecated and will be removed in the next major version of the SDK. To capture session durations alongside events, use Context (Sentry.setContext()).feat(nestjs): Deprecate
@WithSentryin favor of@SentryExceptionCaptured(#14323)
... (truncated)
Changelog
Sourced from @sentry/node's changelog.
8.40.0
Important Changes
feat(angular): Support Angular 19 (#14398)
The
@sentry/angularSDK can now be used with Angular 19. If you're upgrading to the new Angular version, you might want to migrate from the now deprecatedAPP_INITIALIZERtoken toprovideAppInitializer. In this case, change the SentryTraceServiceinitialization inapp.config.ts:// Angular 18 export const appConfig: ApplicationConfig = { providers: [ // other providers { provide: TraceService, deps: [Router], }, { provide: APP_INITIALIZER, useFactory: () => () => {}, deps: [TraceService], multi: true, }, ], };// Angular 19 export const appConfig: ApplicationConfig = { providers: [ // other providers { provide: TraceService, deps: [Router], }, provideAppInitializer(() => { inject(TraceService); }), ], };
feat(core): Deprecate
debugIntegrationandsessionTimingIntegration(#14363)The
debugIntegrationwas deprecated and will be removed in the next major version of the SDK. To log outgoing events, use Hook Options (beforeSend,beforeSendTransaction, ...).The
sessionTimingIntegrationwas deprecated and will be removed in the next major version of the SDK. To capture session durations alongside events, use Context (Sentry.setContext()).
... (truncated)
Commits
7ff467crelease: 8.40.087a90a3Merge pull request #14425 from getsentry/prepare-release/8.40.05841854meta(changelog): Update changelog for 8.40.0d140ae6Merge remote-tracking branch 'origin/master' into prepare-release/8.40.090f958fci: Skip optional E2E tests on release branches (#14424)6535500feat(replay): Clear event buffer when full and in buffer mode (#14078)85daf90fix(feedback): Fix non-wrapping form title (#14355)ec701fdMerge pull request #14412 from getsentry/develop138417btest(feedback): Fixes lazy loaded feedback bundles (#14410)c1ccdf3Merge pull request #14408 from getsentry/prepare-release/8.40.0- Additional commits viewable in compare view
Updates @swc/cli from 0.4.0 to 0.5.1
Commits
- See full diff in compare view
Updates @swc/jest from 0.2.36 to 0.2.37
Commits
- See full diff in compare view
Updates @types/jest from 29.5.12 to 29.5.14
Commits
- See full diff in compare view
Updates @types/minimist from 1.2.2 to 1.2.5
Commits
- See full diff in compare view
Updates @types/node from 22.5.4 to 22.9.1
Commits
- See full diff in compare view
Updates husky from 9.0.11 to 9.1.7
Release notes
Sourced from husky's releases.
v9.1.7
What's Changed
- fix: add husky label to deprecated warning by
@smackfuin typicode/husky#1538New Contributors
@smackfumade their first contribution in typicode/husky#1538Full Changelog: https://github.com/typicode/husky/compare/v9.1.6...v9.1.7
v9.1.6
What's Changed
- Fix issue where example pre-commit file is generated incorrectly by
@dexmleein typicode/husky#1519New Contributors
@OlegKipchatovmade their first contribution in typicode/husky#1495@Byron2016made their first contribution in typicode/husky#1499@dexmleemade their first contribution in typicode/husky#1519Full Changelog: https://github.com/typicode/husky/compare/v9.1.5...v9.1.6
v9.1.5
What's Changed
- fixes #1494, support
pre-merge-commithook by@RainMeoCatin typicode/husky#1497New Contributors
@RainMeoCatmade their first contribution in typicode/husky#1497Full Changelog: https://github.com/typicode/husky/compare/v9.1.4...v9.1.5
v9.1.4
- Improve deprecation notice
v9.1.3
- fix: better handle space in
PATHv9.1.2
Show a message instead of automatically removing deprecated code.
This only concerns projects that still have the following code in their hooks:
- #!/usr/bin/env sh # <- This is deprecated, remove it - . "$(dirname -- "$0")/_/husky.sh" # <- This is deprecated, remove itRest of your hook code
Hooks with these lines will fail in
v10.0.0v9.1.1
... (truncated)
Commits
799e84b9.1.730f2049fix: add husky label to deprecated warning (#1538)a2d942a9.1.6b4465edfix: add parens around the null coalescing operator to fix issues when npm_co...3b3e7f1docs(spanish): improve spanish translation (#1504)dcf3aeddosc: repair support Spanish sponsors links (#1500)c3afd5fdocs: support Spanish documentation (#1499)c5f4f48docs: support Russian documentation (#1495)2fee8d29.1.5397e7f0fixes #1494 support pre-merge-commit hook- Additional commits viewable in compare view
Updates lint-staged from 15.2.7 to 15.2.10
Release notes
Sourced from lint-staged's releases.
v15.2.10
Patch Changes
v15.2.9
Patch Changes
- #1463
b69ce2dThanks@iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warningMaxListenersExceededWarning: Possible EventEmitter memory leak detected.v15.2.8
Patch Changes
f0480f0Thanks@iiroj! - In the previous version the nativegit rev-parse --show-toplevelcommand was taken into use for resolving the current git repo root. This version switched the--show-toplevelflag with--show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.jschild_process. The new flag returns a path relative to the working directory, avoiding the issue.The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.
Changelog
Sourced from lint-staged's changelog.
15.2.10
Patch Changes
15.2.9
Patch Changes
- #1463
b69ce2dThanks@iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warningMaxListenersExceededWarning: Possible EventEmitter memory leak detected.15.2.8
Patch Changes
f0480f0Thanks@iiroj! - In the previous version the nativegit rev-parse --show-toplevelcommand was taken into use for resolving the current git repo root. This version switched the--show-toplevelflag with--show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.jschild_process. The new flag returns a path relative to the working directory, avoiding the issue.The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.
Commits
163112fchore(changeset): release829575cMerge pull request #1471 from lint-staged/updates893ca84refactor: remove unused parameter defaulta661f46build(deps): migrate to ESLint 9e3f283bbuild(deps): update minor dependencies35483b9docs: add some more concrete command examples to the README0ce5e14chore(changeset): release (#1465)b69ce2dfix: set max event listeners to the number of tasks (#1463)52f6eefchore(changeset): release (#1462)8d8fe23build: update repository url in package.json- Additional commits viewable in compare view
Updates next from 15.0.0 to 15.0.3
Release notes
Sourced from next's releases.
v15.0.3
Core Changes
- Read page name from work store in server module map proxy: #71669
- codemod: should not transform when param is not used: #71664
- [dynamicIO] complete refactor to prerender: #71687
- fix: metadata image route normalize path posix for windows: #71673
- next-codemod(upgrade): optional catch when missing dev script: #71598
- Avoid server action function indirection in Turbopack: #71628
- fix: exclude
basePathinfindSourceMapURL: #71719- fix: stack frame text color in dark mode: #71656
- Fix: revert the bad node binary handling: #71723
- next-codemod: add empty
pnpm-workspace.yamlto test fixtures to bypass PNPM workspace checks: #71726- warn on sync access if dynamicIO is not enabled: #71696
- Update React from
69d4b800-20241021to45804af1-20241021: #71718- next-upgrade: do not add
--turbopackflag when--turboexists innext dev: #71730- feat: stitch errors with react owner stack: #70393
- [dynamicIO] update data access error and documentation: #71738
- Test cached form action with revalidate: #71591
- Upgrade React from
45804af1-20241021to28668d39-20241023: #71745- Fix race condition when setting client reference manifests: #71741
- Fix fetch with no-store inside of use cache: #71754
- Remove the bottom collapse button in dev overlay: #71658
- [dynamicIO] unify cache filling and lazy-module warming: #71749
- Don't filter out source location frames through RSC: #71752
- fix undefined default export error msg: #71762
- Upgrade React from
28668d39-20241023to1631855f-20241023: #71769- Enable owner stack in experimental build: #71716
- feat: add experiment for sharpjs cpu flags: #71733
- fix: handle server component replay error in error overlay: #71772
- Don't error asking for prebuilt bundles: #71778
- Replace
turbopack://[project]/...sourcemap uris withfile://...in development: #71489- misc: update source map paths for bundled Next.js runtime: #71779
- [dynamicIO] refine error message and docs: #71781
- next-upgrade: change
--turboto--turbopackif applicable: #71737- Show all diff when uncollapse: #71792
- Sourcemap errors in terminal by default : #71444
- Fully enable custom error callbacks for app router: #71794
- Simplify Server Action Webpack plugin: #71721
- ensure DIO development segment errors are cleared after correcting: #71811
- Include sourceframe in errors logged in the terminal during development: #71803
- [dynamicIO] update prerender cache scoping and cache warming for validation: #71822
- only force stack frame color in tty: #71860
- Add test for fetch with auth in use cache: #71768
- Fix race with hot-reloader-client clearing overlay errors: #71771
- Fix dynamic tracking in dev: #71867
- Revert "Sourcemap errors in terminal by default (#71444)": #71868
- Fix fetch caching inside of
"use cache": #71793- Trace upload: only send traces for current session: #71838
- Reland "Sourcemap errors in terminal by default": #71877
... (truncated)
Commits
7dc7be2v15.0.374b4d2dv15.0.3-canary.9be40adbAdd missing closing\</AppOnly>(#72453)224447cGetting Started Docs: Improve "Project Structure" page (#72399)5f0adadchore(turbopack): Update dashmap from 5.x to 6.x (#72433)f668af2[ppr] Fixed deployment tests (#72428)856521bdocs(parallel-routes): update 11-parallel-routes.mdx example for modal closin...9d31638docs(route-handlers): add TS/JSswitchertoRoute Resolutionsection in `...200fdc1[Turbopack] remove unneeded type annotation (#72390)74a19b7docs: unify the header deps by removing # (#72391)- Additional commits viewable in compare view
Updates playwright from 1.48.1 to 1.49.0
Release notes
Sourced from playwright's releases.
v1.49.0
Aria snapshots
New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.
await page.goto('https://playwright.dev'); await expect(page.locator('body')).toMatchAriaSnapshot(` - banner: - heading /Playwright enables reliable/ [level=1] - link "Get started" - link "Star microsoft/playwright on GitHub" - main: - img "Browsers (Chromium, Firefox, WebKit)" - heading "Any browser • Any platform • One API" `);You can generate this assertion with Test Generator and update the expected snapshot with
--update-snapshotscommand line flag.Learn more in the aria snapshots guide.
Test runner
- New option testConfig.tsconfig allows to specify a single
tsconfigto be used for all tests.- New method test.fail.only() to focus on a failing test.
- Options testConfig.globalSetup and testConfig.globalTeardown now support multiple setups/teardowns.
- New value
'on-first-failure'for testOptions.screenshot.- Added "previous" and "next" buttons to the HTML report to quickly switch between test cases.
- New properties testInfoError.cause and testError.cause mirroring
Error.cause.Breaking: channels
chrome,msedgeand similar switch to new headlessThis change affects you if you're using one of the following channels in your
playwright.config.ts:
chrome,chrome-dev,chrome-beta, orchrome-canarymsedge,msedge-dev,msedge-beta, ormsedge-canaryWhat do I need to do?
After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.
Other breaking changes
- There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
- Package
@playwright/experimental-ct-vue2will no longer be updated.- Package
@playwright/experimental-ct-solidwill no longer be updated.Try new Chromium headless
You can opt into the new headless mode by using
'chromium'channel. As official Chrome documentation puts it:New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.
... (truncated)
Commits
a70a96achore: mark v1.49.0 (#33649)53f51a8cherry-pick(#33638): chore: clear highlight when performing action2a00ca8cherry-pick(#33635): chore: add cm placeholder text0e64340cherry-pick(#33632): chore: highlight edited locator while recordingcb0f456cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...698823acherry-pick(#33627): fix(codegen): document.documentElement is null on early ...c0fa804cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...7a32228cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)0e31acecherry-pick(#33575): fix(canvas snapshots): position mismatch in headless modeb2a39ffcherry-pick(#33604): docs: update docs about headless shell- Additional commits viewable in compare view
Updates playwright-core from 1.48.1 to 1.49.0
Release notes
Sourced from playwright-core's releases.
v1.49.0
Aria snapshots
New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.
await page.goto('https://playwright.dev'); await expect(page.locator('body')).toMatchAriaSnapshot(` - banner: - heading /Playwright enables reliable/ [level=1] - link "Get started" - link "Star microsoft/playwright on GitHub" - main: - img "Browsers (Chromium, Firefox, WebKit)" - heading "Any browser • Any platform • One API" `);You can generate this assertion with Test Generator and update the expected snapshot with
--update-snapshotscommand line flag.Learn more in the aria snapshots guide.
Test runner
- New option testConfig.tsconfig allows to specify a single
tsconfigto be used for all tests.- New method test.fail.only() to focus on a failing test.
- Options testConfig.globalSetup and testConfig.globalTeardown now support multiple setups/teardowns.
- New value
'on-first-failure'for testOptions.screenshot.- Added "previous" and "next" buttons to the HTML report to quickly switch between test cases.
- New properties testInfoError.cause and testError.cause mirroring
Error.cause.Breaking: channels
chrome,msedgeand similar switch to new headlessThis change affects you if you're using one of the following channels in your
playwright.config.ts:
chrome,chrome-dev,chrome-beta, orchrome-canarymsedge,msedge-dev,msedge-beta, ormsedge-canaryWhat do I need to do?
After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.
Other breaking changes
- There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
- Package
@playwright/experimental-ct-vue2will no longer be updated.- Package
@playwright/experimental-ct-solidwill no longer be updated.Try new Chromium headless
You can opt into the new headless mode by using
'chromium'channel. As official Chrome documentation puts it:New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.
... (truncated)
Commits
a70a96achore: mark v1.49.0 (#33649)53f51a8cherry-pick(#33638): chore: clear highlight when performing action2a00ca8cherry-pick(#33635): chore: add cm placeholder text0e64340cherry-pick(#33632): chore: highlight edited locator while recordingcb0f456cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...698823acherry-pick(#33627): fix(codegen): document.documentElement is null on early ...c0fa804cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...7a32228cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)0e31acecherry-pick(#33575): fix(canvas snapshots): position mismatch in headless modeb2a39ffcherry-pick(#33604): docs: update docs about headless shell- Additional commits viewable in compare view
Updates sharp from 0.32.6 to 0.33.5
Changelog
Sourced from sharp's changelog.
v0.33.5 - 16th August 2024
Upgrade to libvips v8.15.3 for upstream bug fixes.
Add
pageHeightandpagesto response of mult...Description has been truncated
I actually find that manual-input is suppose to be set to true, but it doesn't work at all, always clears out the value when using only-time
Hi,
manual input has now started to work again, but with other problems.
The issue can still be reproduced on the example page and on version 4.2.5:
- https://primevue.org/datepicker/
Examples:
I select a date via the picker (e.g. "01/01/2025").
Then I click into the text field to change the day to the 15th.
If I place the cursor before the day and type directly, the result is "01/1501/2025", and it resets back to "01/01/2025".
If I place the cursor in the middle or at the end of the date, similar issues occur.
If I now select the "01" and replace it with "15", I get "01/051/2025", which again resets to "01/01/2025".
Similarly if dateFormat is "yy-mm-dd" or "yy-dd-mm" a 0 automatically inserted on the last segment when any number is typed and then places the cursor in the middle of the two digits.
Examples: Typing 2020-10-1 results in 2020-10-01 Typing 2020-10-12 results in 2020-10-021
Still waiting this to be merged!
Hello @cagataycivici Any due date for this ? thanks
This is really annoying problem :( some workaround for it ? Manual input is really important and basic functionality and it is difficult to explain users it just does not work. Thanx very much !
I’m also hoping for a fix to this feature soon. Best regards!
I’m also hoping for a fix to this feature soon. Best regards!
I found simple workaround (hope that only temporary one) when I change format from dd.mm.yy to d.m.yy (dont force two digits days / months) it works okish.
How to show empty string instead of null, in case of datepicker is range and value is [null, "2025-05-25"]? To prevent such behavior:
would be great to have a formatInputValue prop for such situation
Hello @tugcekucukoglu, Any due date for this fix? It has been 1 year and its still pending, thanks
I’m also hoping for a fix to this feature soon. Best regards!
I found simple workaround (hope that only temporary one) when I change format from dd.mm.yy to d.m.yy (dont force two digits days / months) it works okish.
man its work as expected Thank you so much