laravel-docker
laravel-docker copied to clipboard
Bump the development-dependencies group across 1 directory with 6 updates
Bumps the development-dependencies group with 5 updates in the / directory:
| Package | From | To |
|---|---|---|
| @tailwindcss/vite | 4.1.4 |
4.1.10 |
| axios | 1.9.0 |
1.10.0 |
| concurrently | 9.1.2 |
9.2.0 |
| laravel-vite-plugin | 1.2.0 |
1.3.0 |
| vite | 6.3.4 |
6.3.5 |
Updates @tailwindcss/vite from 4.1.4 to 4.1.10
Release notes
Sourced from @tailwindcss/vite's releases.
v4.1.10
Fixed
- Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g.
w-[calc(100%-var(--offset))]) (#18289)v4.1.9
Fixed
- Correctly parse custom properties with strings containing semicolons (#18251)
- Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g.
/[0.16]→/16) (#18184)- Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
- Upgrade: Migrate negative arbitrary values to negative bare values (e.g.
mb-[-32rem]→-mb-128) (#18212)- Upgrade: Do not migrate
blurinwire:model.blur(#18216)- Don't add spaces around CSS dashed idents when formatting math expressions (#18220)
v4.1.8
Added
- Improve error messages when
@applyfails (#18059)Fixed
- Upgrade: Do not migrate declarations that look like candidates in
<style>blocks (#18057, 18068)- Upgrade: Don't error when looking for
tailwindcssin pnpm monorepos (#18065)- Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
- Upgrade: Migrate deprecated
order-nonetoorder-0(#18126)- Support Leptos
class:attributes when extracting classes (#18093)- Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
- Upgrade: Migrate
-mt-[0px]tomt-[0px]instead of the other way around (#18154)- Fix Haml pre-processing crash when there is no
\nat the end of the file (#18155)- Ignore
.pnpm-storefolders by default (can be overridden by@source …rules) (#18163)- Fix PostCSS crash when calling
toJSON()(#18083)v4.1.7
Added
- Upgrade: Migrate bare values to named values (#18000)
- Upgrade: Added cache to improve template migration performance (#18025)
Fixed
- Allow
_before numbers during candidate extraction (#17961)- Prevent duplicate suggestions when using
@themeand@utilitytogether (#17675)- Ensure that media queries within
::beforeand::afterpseudo selectors create valid CSS rules in production builds (#17979)- Ensure that the standalone CLI does not leave temporary files behind (#17981)
- Ensure
-rotate-*utilities properly negate arbitrary values (#18014)- Ignore custom variants using
:merge(…)selectors in legacy JS plugins (#18020)- Ensure classes containing
.are properly extracted from Clojure files (#18038)- Upgrade: Fix error when using
@import … source(…)(#17963)- Upgrade: Change casing of utilities with named values to kebab-case to match updated theme variables (#18017)
... (truncated)
Changelog
Sourced from @tailwindcss/vite's changelog.
[4.1.10] - 2025-06-11
Fixed
- Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g.
w-[calc(100%-var(--offset))]) (#18289)[4.1.9] - 2025-06-11
Fixed
- Correctly parse custom properties with strings containing semicolons (#18251)
- Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g.
/[0.16]→/16) (#18184)- Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
- Upgrade: Migrate negative arbitrary values to negative bare values (e.g.
mb-[-32rem]→-mb-128) (#18212)- Upgrade: Do not migrate
blurinwire:model.blur(#18216)- Don't add spaces around CSS dashed idents when formatting math expressions (#18220)
[4.1.8] - 2025-05-27
Added
- Improve error messages when
@applyfails (#18059)Fixed
- Upgrade: Do not migrate declarations that look like candidates in
<style>blocks (#18057, 18068)- Upgrade: Don't error when looking for
tailwindcssin pnpm monorepos (#18065)- Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
- Upgrade: Migrate deprecated
order-nonetoorder-0(#18126)- Support Leptos
class:attributes when extracting classes (#18093)- Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
- Upgrade: Migrate
-mt-[0px]tomt-[0px]instead of the other way around (#18154)- Fix Haml pre-processing crash when there is no
\nat the end of the file (#18155)- Ignore
.pnpm-storefolders by default (can be overridden by@source …rules) (#18163)- Fix PostCSS crash when calling
toJSON()(#18083)[4.1.7] - 2025-05-15
Added
- Upgrade: Migrate bare values to named values (#18000)
- Upgrade: Added cache to improve template migration performance (#18025)
Fixed
- Allow
_before numbers during candidate extraction (#17961)- Prevent duplicate suggestions when using
@themeand@utilitytogether (#17675)- Ensure that media queries within
::beforeand::afterpseudo selectors create valid CSS rules in production builds (#17979)- Ensure that the standalone CLI does not leave temporary files behind (#17981)
- Ensure
-rotate-*utilities properly negate arbitrary values (#18014)
... (truncated)
Commits
Updates axios from 1.9.0 to 1.10.0
Release notes
Sourced from axios's releases.
Release v1.10.0
Release notes:
Bug Fixes
- adapter: pass fetchOptions to fetch function (#6883) (0f50af8)
- form-data: convert boolean values to strings in FormData serialization (#6917) (5064b10)
- package: add module entry point for React Native; (#6933) (3d343b8)
Features
Contributors to this release
Changelog
Sourced from axios's changelog.
1.10.0 (2025-06-14)
Bug Fixes
- adapter: pass fetchOptions to fetch function (#6883) (0f50af8)
- form-data: convert boolean values to strings in FormData serialization (#6917) (5064b10)
- package: add module entry point for React Native; (#6933) (3d343b8)
Features
Contributors to this release
Commits
73a836dchore(release): v1.10.0 (#6943)3d343b8fix(package): add module entry point for React Native; (#6933)0f50af8fix(adapter): pass fetchOptions to fetch function (#6883)ee7799erefactor: remove unused import in test (#6922)eb0a2dbchore: fix typos in test (#6923)7d55139docs(readme): improve error descriptions; (#6920)f4fc6b8chore(sponsor): update sponsor block (#6921)5064b10fix(form-data): convert boolean values to strings in FormData serialization (...c7e0feaCI: add Node 24 (#6913)7ba895cchore(sponsor): update sponsor block (#6907)- Additional commits viewable in compare view
Updates concurrently from 9.1.2 to 9.2.0
Release notes
Sourced from concurrently's releases.
v9.2.0
What's Changed
- Bump esbuild from 0.23.1 to 0.25.0 in the npm_and_yarn group by
@dependabotin open-cli-tools/concurrently#528- fix: don't throw when there are no commands by
@gustavohenkein open-cli-tools/concurrently#532- docs: nicer quotes by
@IsaacLeeWebDevin open-cli-tools/concurrently#537- Add
--kill-timeoutby@gustavohenkein open-cli-tools/concurrently#540- docs: fix typo by
@ldeveberin open-cli-tools/concurrently#542- fix: correct typos in comments and documentation by
@noritaka1166in open-cli-tools/concurrently#544- refactor: use startsWith & simplify boolean expression by
@noritaka1166in open-cli-tools/concurrently#543- refactor: use optional chaining by
@noritaka1166in open-cli-tools/concurrently#545- Handle SIGPIPEs by
@gustavohenkein open-cli-tools/concurrently#547- refactor: fix map and reduce as return values are not used by
@noritaka1166in open-cli-tools/concurrently#546- docs: fix typos in docs by
@noritaka1166in open-cli-tools/concurrently#548- chore: update jest from v29 to v30 by
@noritaka1166in open-cli-tools/concurrently#549- chore: update
@types/jestfrom v29 to v30 by@noritaka1166in open-cli-tools/concurrently#550New Contributors
@IsaacLeeWebDevmade their first contribution in open-cli-tools/concurrently#537@ldevebermade their first contribution in open-cli-tools/concurrently#542@noritaka1166made their first contribution in open-cli-tools/concurrently#544Full Changelog: https://github.com/open-cli-tools/concurrently/compare/v9.1.2...v9.2.0
Commits
ef4bc2f9.2.02458453chore: update@types/jestfrom v29 to v30 (#550)0994b38chore: update jest from v29 to v30 (#549)b87c0bfdocs: fix typos (#548)d8e922fRefactor map and reduce as return values are not used (#546)97fdd54Handle SIGPIPEs (#547)b2cfc4fUse optional chaining (#545)5ed21afUse startsWith & simplify boolean expression (#543)041bcd9correct typos in comments and documentation (#544)d001333docs: fix typo (#542)- Additional commits viewable in compare view
Updates laravel-vite-plugin from 1.2.0 to 1.3.0
Release notes
Sourced from laravel-vite-plugin's releases.
v1.3.0
- Use rollup types from Vite by
@sapphi-redin laravel/vite-plugin#325
Changelog
Sourced from laravel-vite-plugin's changelog.
v1.3.0 - 2025-06-03
- Use rollup types from Vite by
@sapphi-redin laravel/vite-plugin#325
Commits
Updates tailwindcss from 4.1.4 to 4.1.10
Release notes
Sourced from tailwindcss's releases.
v4.1.10
Fixed
- Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g.
w-[calc(100%-var(--offset))]) (#18289)v4.1.9
Fixed
- Correctly parse custom properties with strings containing semicolons (#18251)
- Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g.
/[0.16]→/16) (#18184)- Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
- Upgrade: Migrate negative arbitrary values to negative bare values (e.g.
mb-[-32rem]→-mb-128) (#18212)- Upgrade: Do not migrate
blurinwire:model.blur(#18216)- Don't add spaces around CSS dashed idents when formatting math expressions (#18220)
v4.1.8
Added
- Improve error messages when
@applyfails (#18059)Fixed
- Upgrade: Do not migrate declarations that look like candidates in
<style>blocks (#18057, 18068)- Upgrade: Don't error when looking for
tailwindcssin pnpm monorepos (#18065)- Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
- Upgrade: Migrate deprecated
order-nonetoorder-0(#18126)- Support Leptos
class:attributes when extracting classes (#18093)- Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
- Upgrade: Migrate
-mt-[0px]tomt-[0px]instead of the other way around (#18154)- Fix Haml pre-processing crash when there is no
\nat the end of the file (#18155)- Ignore
.pnpm-storefolders by default (can be overridden by@source …rules) (#18163)- Fix PostCSS crash when calling
toJSON()(#18083)v4.1.7
Added
- Upgrade: Migrate bare values to named values (#18000)
- Upgrade: Added cache to improve template migration performance (#18025)
Fixed
- Allow
_before numbers during candidate extraction (#17961)- Prevent duplicate suggestions when using
@themeand@utilitytogether (#17675)- Ensure that media queries within
::beforeand::afterpseudo selectors create valid CSS rules in production builds (#17979)- Ensure that the standalone CLI does not leave temporary files behind (#17981)
- Ensure
-rotate-*utilities properly negate arbitrary values (#18014)- Ignore custom variants using
:merge(…)selectors in legacy JS plugins (#18020)- Ensure classes containing
.are properly extracted from Clojure files (#18038)- Upgrade: Fix error when using
@import … source(…)(#17963)- Upgrade: Change casing of utilities with named values to kebab-case to match updated theme variables (#18017)
... (truncated)
Changelog
Sourced from tailwindcss's changelog.
[4.1.10] - 2025-06-11
Fixed
- Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g.
w-[calc(100%-var(--offset))]) (#18289)[4.1.9] - 2025-06-11
Fixed
- Correctly parse custom properties with strings containing semicolons (#18251)
- Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g.
/[0.16]→/16) (#18184)- Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#18184)
- Upgrade: Migrate negative arbitrary values to negative bare values (e.g.
mb-[-32rem]→-mb-128) (#18212)- Upgrade: Do not migrate
blurinwire:model.blur(#18216)- Don't add spaces around CSS dashed idents when formatting math expressions (#18220)
[4.1.8] - 2025-05-27
Added
- Improve error messages when
@applyfails (#18059)Fixed
- Upgrade: Do not migrate declarations that look like candidates in
<style>blocks (#18057, 18068)- Upgrade: Don't error when looking for
tailwindcssin pnpm monorepos (#18065)- Upgrade: Don't error when updating dependencies in pnpm monorepos (#18065)
- Upgrade: Migrate deprecated
order-nonetoorder-0(#18126)- Support Leptos
class:attributes when extracting classes (#18093)- Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#18133)
- Upgrade: Migrate
-mt-[0px]tomt-[0px]instead of the other way around (#18154)- Fix Haml pre-processing crash when there is no
\nat the end of the file (#18155)- Ignore
.pnpm-storefolders by default (can be overridden by@source …rules) (#18163)- Fix PostCSS crash when calling
toJSON()(#18083)[4.1.7] - 2025-05-15
Added
- Upgrade: Migrate bare values to named values (#18000)
- Upgrade: Added cache to improve template migration performance (#18025)
Fixed
- Allow
_before numbers during candidate extraction (#17961)- Prevent duplicate suggestions when using
@themeand@utilitytogether (#17675)- Ensure that media queries within
::beforeand::afterpseudo selectors create valid CSS rules in production builds (#17979)- Ensure that the standalone CLI does not leave temporary files behind (#17981)
- Ensure
-rotate-*utilities properly negate arbitrary values (#18014)
... (truncated)
Commits
d06bbb8Prepare v4.1.10 (#18290)ddb0befFix missing space around-when using%regression (#18289)b88371aPrepare v4.1.9 (#18285)aa817fbfix: don't break CSS keywords when formatting math expressions (#18220)bea843cCSS Parser: Handle string with semi-colon in custom properties. (#18251)8bfbac5docs: fix typo in container.ts comment ("a the" -> "the") (#18223)193eb84Release v4.1.8 (#18164)4bfacb3Improve error messages when@applyfails (#18059)884f02cFix "Cannot read properties of undefined" crash on malformed arbitrary value ...9cb3899Upgrade deprecatedorder-nonetoorder-0(#18126)- Additional commits viewable in compare view
Updates vite from 6.3.4 to 6.3.5
Commits
84e4647release: v6.3.5fd38d07fix(ssr): handle uninitialized export access as undefined (#19959)- See full diff 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