build(deps): bump the npm_and_yarn group across 1 directory with 8 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 2
(3 days ago)
(3 days ago)
dependencies javascript
Bumps the npm_and_yarn group with 8 updates in the / directory:
Package | From | To |
---|---|---|
solid-js | 1.8.17 |
1.9.9 |
undici | 5.28.4 |
5.29.0 |
vite | 6.0.11 |
6.3.6 |
cross-spawn | 7.0.3 |
7.0.6 |
form-data | 4.0.1 |
4.0.4 |
on-headers | 1.0.2 |
1.1.0 |
compression | 1.7.4 |
1.8.1 |
tmp | 0.2.3 |
0.2.5 |
Updates solid-js
from 1.8.17 to 1.9.9
Release notes
Sourced from solid-js's releases.
v1.9.0 - LGTM!
This release like the last is focusing on small quality of life improvements and adjustments that will help us move towards 2.0. So while not the most exciting release to everyone it provides some really important features and fixes to some developers.
And unlike many previous releases the vast majority of the work and features came from PRs from the community. So really all I can say is Looks Good to Me!
Better JSX Validation
While still incomplete across templates we've added JSDOM to the compiler to better detect invalid HTML at build time by comparing what we expect the template to be with what a browser would output. This now includes things that are nested we didn't detect before like putting
<a>
inside other<a>
tags which will lead to the browser "correcting" it in less than intuitive ways.Improved Exports
While each environment in
solid-js/web
has its own methods to be used in the compiler. We are now exporting the client methods from the server to prevent weird import errors. Now these methods will throw if used in this environment but shouldn't break your build.Additionally we have seen some issues in bundlers that incorrectly feed our ESM exports back through the browser field. While this is a known issue they all pointed issues at each other and with no intention of fixing it. We have removed the browser field in this release, meaning some legacy packages may have issues resolving browser if they don't support export conditions.
This is regretful but this blocked deployments on several platforms and since this was the only fix at our disposal after two years of attempting to push this issue to the bundlers to no avail, we've moved forward with it.
Custom Element improvements
We have a few improvements to our custom element support in this release. First off we now detect elements with the
is
attribute as custom elements which means all the special behavior is afforded to them.We've also improved our event handler delegating retargetting to better handle shadow DOM events. There were cases where we skipped over part of the tree.
Finally we've added the
bool:
attribute namespace to handle explicitly setting certain attributes according to boolean attribute rules. While this isn't necessary for built-in booleans currently we handle most attributes as properties and we lacked a specific override. But now we have it:<my-element bool:enable={isEnabled()}></my-element>
Support for handleEvent Syntax in Non-Delegated Events
A little known thing is that events actually also support objects instead of functions (See: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
We(thanks
@titoBouzout
) realized we can use this mechanism as a way to set advanced rules likepassive
orcapture
on this object as way to handle all current and future event attributes that browsers might add. This way we don't need specific mechanisms likeoncapture:
(which is now deprecated).Instead using
on:
you can set the event properties you wish.<> <div on:click={{ handleEvent(e) { console.log("clicked", e) }, once:true }/> <div on:wheel={{ handleEvent(e) { e.preventDefault() // only works on not passive events e.stopPropagation() </tr></table>
... (truncated)
Commits
0af2c2b
v1.9.962c5a98
fix: UpdateSuspenseList
to handle hydration context and add unit tests for...f59ee48
fix #2530 overtracking dynamicc07887c
fix #2524 closedby types, fix regression inlining style/classList225d86e
update lock71a66ea
v1.9.81912a76
formatting updates061cd62
update prettier09a9c1d
Export RendererOptions and Renderer types from solid-js/universal (#2522)e056eab
add support foris
inDynamic
, closes #2413 (#2514)- Additional commits viewable in compare view
Updates undici
from 5.28.4 to 5.29.0
Release notes
Sourced from undici's releases.
v5.29.0
What's Changed
- Fix tests in v5.x for Node 20 by
@mcollina
in nodejs/undici#4104- Removed clients with unrecoverable errors from the Pool nodejs/undici#4088
Full Changelog: https://github.com/nodejs/undici/compare/v5.28.5...v5.29.0
v5.28.5
⚠️ Security Release ⚠️
Fixes CVE CVE-2025-22150 https://github.com/nodejs/undici/security/advisories/GHSA-c76h-2ccp-4975 (embargoed until 22-01-2025).
Full Changelog: https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5
Commits
9528f68
Bumped v5.29.0f1d75a4
increase timeout for redirect test2d31ed6
remove fuzzing tests6b36d49
fix redirect test in Node v16648dd8f
more fix for the wpt runner on Windowsa0516ba
don't use internal header state for cookies (#3295)87ce4af
fix test/client for node 20c2c8fd5
fix: accept v20 SSL specific error for alpn selection in http/282200bd
[v6.x] fix wpts on windows (#4093)47546fa
test: fix windows wpt (#4050)- Additional commits viewable in compare view
Updates vite
from 6.0.11 to 6.3.6
Release notes
Sourced from vite's releases.
v6.3.6
Please refer to CHANGELOG.md for details.
v6.3.5
Please refer to CHANGELOG.md for details.
v6.3.4
Please refer to CHANGELOG.md for details.
v6.3.3
Please refer to CHANGELOG.md for details.
v6.3.2
Please refer to CHANGELOG.md for details.
create-vite@6.3.1
Please refer to CHANGELOG.md for details.
v6.3.1
Please refer to CHANGELOG.md for details.
create-vite@6.3.0
Please refer to CHANGELOG.md for details.
v6.3.0
Please refer to CHANGELOG.md for details.
v6.3.0-beta.2
Please refer to CHANGELOG.md for details.
v6.3.0-beta.1
Please refer to CHANGELOG.md for details.
v6.3.0-beta.0
Please refer to CHANGELOG.md for details.
v6.2.7
Please refer to CHANGELOG.md for details.
v6.2.6
Please refer to CHANGELOG.md for details.
v6.2.5
Please refer to CHANGELOG.md for details.
v6.2.4
Please refer to CHANGELOG.md for details.
v6.2.3
Please refer to CHANGELOG.md for details.
... (truncated)
Changelog
Sourced from vite's changelog.
6.3.6 (2025-09-08)
- fix: apply
fs.strict
check to HTML files (#20736) (0ab19ea), closes #20736- fix: upgrade sirv to 3.0.2 (#20735) (e11d240), closes #20735
- test: detect ts support via
process.features
(#20544) (7d99229), closes #205446.3.5 (2025-05-05)
6.3.4 (2025-04-30)
- fix: check static serve file inside sirv (#19965) (c22c43d), closes #19965
- fix(optimizer): return plain object when using
require
to import externals in optimized dependenci (efc5eab), closes #19940- refactor: remove duplicate plugin context type (#19935) (d6d01c2), closes #19935
6.3.3 (2025-04-24)
- fix: ignore malformed uris in tranform middleware (#19853) (e4d5201), closes #19853
- fix(assets): ensure ?no-inline is not included in the asset url in the production environment (#1949 (16a73c0), closes #19496
- fix(css): resolve relative imports in sass properly on Windows (#19920) (ffab442), closes #19920
- fix(deps): update all non-major dependencies (#19899) (a4b500e), closes #19899
- fix(ssr): fix execution order of re-export (#19841) (ed29dee), closes #19841
- fix(ssr): fix live binding of default export declaration and hoist exports getter (#19842) (80a91ff), closes #19842
- perf: skip sourcemap generation for renderChunk hook of import-analysis-build plugin (#19921) (55cfd04), closes #19921
- test(ssr): test
ssrTransform
re-export deps and test stacktrace with first line (#19629) (9399cda), closes #196296.3.2 (2025-04-18)
- fix: match default asserts case insensitive (#19852) (cbdab1d), closes #19852
- fix: open first url if host does not match any urls (#19886) (6abbdce), closes #19886
- fix(css): respect
css.lightningcss
option in css minification process (#19879) (b5055e0), closes #19879- fix(deps): update all non-major dependencies (#19698) (bab4cb9), closes #19698
- feat(css): improve lightningcss messages (#19880) (c713f79), closes #19880
6.3.1 (2025-04-17)
... (truncated)
Commits
3f337c5
release: v6.3.6e11d240
fix: upgrade sirv to 3.0.2 (#20735)0ab19ea
fix: applyfs.strict
check to HTML files (#20736)7d99229
test: detect ts support viaprocess.features
(#20544)84e4647
release: v6.3.5fd38d07
fix(ssr): handle uninitialized export access as undefined (#19959)b040d54
release: v6.3.4c22c43d
fix: check static serve file inside sirv (#19965)efc5eab
fix(optimizer): return plain object when usingrequire
to import externals ...d6d01c2
refactor: remove duplicate plugin context type (#19935)- Additional commits viewable in compare view
Updates cross-spawn
from 7.0.3 to 7.0.6
Changelog
Sourced from cross-spawn's changelog.
7.0.6 (2024-11-18)
Bug Fixes
- update cross-spawn version to 7.0.5 in package-lock.json (f700743)
7.0.5 (2024-11-07)
Bug Fixes
- fix escaping bug introduced by backtracking (640d391)
7.0.4 (2024-11-07)
Bug Fixes
Commits
77cd97f
chore(release): 7.0.66717de4
chore: upgrade standard-versionf700743
fix: update cross-spawn version to 7.0.5 in package-lock.json9a7e3b2
chore: fix build status badge0852683
chore(release): 7.0.5640d391
fix: fix escaping bug introduced by backtrackingbff0c87
chore: remove codecova7c6abc
chore: replace travis with github workflows9b9246e
chore(release): 7.0.45ff3a07
fix: disable regexp backtracking (#160)- Additional commits viewable in compare view
Updates form-data
from 4.0.1 to 4.0.4
Release notes
Sourced from form-data's releases.
v4.0.4
v4.0.4 - 2025-07-16
Commits
- [meta] add
auto-changelog
811f682
- [Tests] handle predict-v8-randomness failures in node < 17 and node > 23
1d11a76
- [Fix] Switch to using
crypto
random for boundary values3d17230
- [Tests] fix linting errors
5e34080
- [meta] actually ensure the readme backup isn’t published
316c82b
- [Dev Deps] update
@ljharb/eslint-config
58c25d7
- [meta] fix readme capitalization
2300ca1
v4.0.3
v4.0.3 - 2025-06-05
Fixed
- [Fix]
append
: avoid a crash on nullish values[#577](https://github.com/form-data/form-data/issues/577)
Commits
- [eslint] use a shared config
426ba9a
- [eslint] fix some spacing issues
2094191
- [Refactor] use
hasown
81ab41b
- [Fix] validate boundary type in
setBoundary()
method8d8e469
- [Tests] add tests to check the behavior of
getBoundary
with non-strings837b8a1
- [Dev Deps] remove unused deps
870e4e6
- [meta] remove local commit hooks
e6e83cc
- [Dev Deps] update
eslint
4066fd6
- [meta] fix scripts to use prepublishOnly
c4bbb13
v4.0.2
v4.0.2 - 2025-02-14
Merged
- [Fix] set
Symbol.toStringTag
when available[#573](https://github.com/form-data/form-data/issues/573)
- [Fix] set
Symbol.toStringTag
when available[#573](https://github.com/form-data/form-data/issues/573)
- fix (npmignore): ignore temporary build files
[#532](https://github.com/form-data/form-data/issues/532)
- fix (npmignore): ignore temporary build files
[#532](https://github.com/form-data/form-data/issues/532)
Fixed
- [Fix] set
Symbol.toStringTag
when available (#573)[#396](https://github.com/form-data/form-data/issues/396)
- [Fix] set
Symbol.toStringTag
when available (#573)[#396](https://github.com/form-data/form-data/issues/396)
- [Fix] set
Symbol.toStringTag
when available[#396](https://github.com/form-data/form-data/issues/396)
Commits
... (truncated)
Changelog
Sourced from form-data's changelog.
v4.0.4 - 2025-07-16
Commits
- [meta] add
auto-changelog
811f682
- [Tests] handle predict-v8-randomness failures in node < 17 and node > 23
1d11a76
- [Fix] Switch to using
crypto
random for boundary values3d17230
- [Tests] fix linting errors
5e34080
- [meta] actually ensure the readme backup isn’t published
316c82b
- [Dev Deps] update
@ljharb/eslint-config
58c25d7
- [meta] fix readme capitalization
2300ca1
v4.0.3 - 2025-06-05
Fixed
- [Fix]
append
: avoid a crash on nullish values[#577](https://github.com/form-data/form-data/issues/577)
Commits
- [eslint] use a shared config
426ba9a
- [eslint] fix some spacing issues
2094191
- [Refactor] use
hasown
81ab41b
- [Fix] validate boundary type in
setBoundary()
method8d8e469
- [Tests] add tests to check the behavior of
getBoundary
with non-strings837b8a1
- [Dev Deps] remove unused deps
870e4e6
- [meta] remove local commit hooks
e6e83cc
- [Dev Deps] update
eslint
4066fd6
- [meta] fix scripts to use prepublishOnly
c4bbb13
v4.0.2 - 2025-02-14
Merged
- [Fix] set
Symbol.toStringTag
when available[#573](https://github.com/form-data/form-data/issues/573)
- [Fix] set
Symbol.toStringTag
when available[#573](https://github.com/form-data/form-data/issues/573)
- fix (npmignore): ignore temporary build files
[#532](https://github.com/form-data/form-data/issues/532)
- fix (npmignore): ignore temporary build files
[#532](https://github.com/form-data/form-data/issues/532)
Fixed
- [Fix] set
Symbol.toStringTag
when available (#573)[#396](https://github.com/form-data/form-data/issues/396)
- [Fix] set
Symbol.toStringTag
when available (#573)[#396](https://github.com/form-data/form-data/issues/396)
- [Fix] set
Symbol.toStringTag
when available[#396](https://github.com/form-data/form-data/issues/396)
Commits
... (truncated)
Commits
41996f5
v4.0.4316c82b
[meta] actually ensure the readme backup isn’t published2300ca1
[meta] fix readme capitalization811f682
[meta] addauto-changelog
5e34080
[Tests] fix linting errors1d11a76
[Tests] handle predict-v8-randomness failures in node < 17 and node > 2358c25d7
[Dev Deps] update@ljharb/eslint-config
3d17230
[Fix] Switch to usingcrypto
random for boundary valuesd8d67dc
v4.0.3e6e83cc
[meta] remove local commit hooks- Additional commits viewable in compare view
Updates on-headers
from 1.0.2 to 1.1.0
Release notes
Sourced from on-headers's releases.
1.1.0
Important
What's Changed
- Migrate CI pipeline to GitHub actions by
@carpasse
in jshttp/on-headers#12- fix README.md badges by
@carpasse
in jshttp/on-headers#13- add OSSF scorecard action by
@carpasse
in jshttp/on-headers#14- fix: use
ubuntu-latest
as ci runner by@UlisesGascon
in jshttp/on-headers#19- ci: apply OSSF Scorecard security best practices by
@UlisesGascon
in jshttp/on-headers#20- 👷 add upstream change detection by
@ctcpip
in jshttp/on-headers#31- ✨ add script to update known hashes by
@ctcpip
in jshttp/on-headers#32- 💚 update CI - add newer node versions by
@ctcpip
in jshttp/on-headers#33New Contributors
@carpasse
made their first contribution in jshttp/on-headers#12@UlisesGascon
made their first contribution in jshttp/on-headers#19@ctcpip
made their first contribution in jshttp/on-headers#31Full Changelog: https://github.com/jshttp/on-headers/compare/v1.0.2...v1.1.0
Commits
4b017af
1.1.0b636f2d
♻️ refactor header array code3e2c2d4
✨ ignore falsy header keys, matching node behavior172eb41
✨ support duplicate headersc6e3849
🔒️ fix array handling6893518
💚 update CI - add newer node versions56a345d
✨ add script to update known hashes175ab21
👷 add upstream change detection (#31)ce0b2c8
ci: apply OSSF Scorecard security best practices (#20)1a38c54
fix: useubuntu-latest
as ci runner (#19)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for on-headers since your current version.
Updates compression
from 1.7.4 to 1.8.1
Release notes
Sourced from compression's releases.
v1.8.1
What's Changed
- fix(docs): update multiple links from http to https by
@Phillip9587
in expressjs/compression#222- ci: add dependabot for github actions by
@bjohansebas
in expressjs/compression#207- build(deps): bump github/codeql-action from 2.23.2 to 3.28.15 by
@dependabot
[bot] in expressjs/compression#228- build(deps): bump ossf/scorecard-action from 2.3.1 to 2.4.1 by
@dependabot
[bot] in expressjs/compression#229- build(deps-dev): bump eslint-plugin-import from 2.26.0 to 2.31.0 by
@dependabot
[bot] in expressjs/compression#230- build(deps-dev): bump supertest from 6.2.3 to 6.3.4 by
@dependabot
[bot] in expressjs/compression#231- [StepSecurity] ci: Harden GitHub Actions by
@step-security-bot
in expressjs/compression#235- build(deps): bump github/codeql-action from 3.28.15 to 3.29.2 by
@dependabot
[bot] in expressjs/compression#243- build(deps): bump actions/upload-artifact from 4.3.1 to 4.6.2 by
@dependabot
[bot] in expressjs/compression#239- build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 by
@dependabot
[bot] in expressjs/compression#240- build(deps): bump actions/checkout from 4.1.1 to 4.2.2 by
@dependabot
[bot] in expressjs/compression#241- build(deps-dev): bump eslint-plugin-import from 2.31.0 to 2.32.0 by
@dependabot
[bot] in expressjs/compression#244- deps: on-headers@1.1.0 by
@UlisesGascon
in expressjs/compression#246- Release: 1.8.1 by
@UlisesGascon
in expressjs/compression#247New Contributors
@dependabot
[bot] made their first contribution in expressjs/compression#228@step-security-bot
made their first contribution in expressjs/compression#235Full Changelog: https://github.com/expressjs/compression/compare/1.8.0...v1.8.1
v1.8.0
What's Changed
- Refactor chunkLength function for improved readability and consistency by
@Ayoub-Mabrouk
in expressjs/compression#203- Refactor toBuffer function to simplify buffer check logic by
@Ayoub-Mabrouk
in expressjs/compression#201- ci: add CodeQL (SAST) by
@bjohansebas
in expressjs/compression#204- Use headersSent instead of _header by
@maritz
in expressjs/compression#129- Bugfix/use write head instead of implicit header by
@Icehunter
in expressjs/compression#170- feat: add default option by
@bjohansebas
in expressjs/compression#191- ci: update ci workflow by
@bjohansebas
in expressjs/compression#206- feat: support for brotli by
@bjohansebas
in expressjs/compression#194- docs: improve readme by
@bjohansebas
in expressjs/compression#209- docs: keywords field by
@bjohansebas
in expressjs/compression#210- refactor: simplify encoding negotiation logic by
@bjohansebas
in expressjs/compression#213New Contributors
@Ayoub-Mabrouk
made their first contribution in expressjs/compression#203@maritz
made their first contribution in expressjs/compression#129@Icehunter
made their first contribution in expressjs/compression#170Full Changelog: https://github.com/expressjs/compression/compare/1.7.5...v1.8.0
1.7.5
What's Changed
- chore: add support for OSSF scorecard reporting by
@inigomarquinez
in expressjs/compression#186- ci: fix errors in ci github action for node 8 and 9 by
@inigomarquinez
in expressjs/compression#187- docs: fix spelling by
@dijonkitchen
in expressjs/compression#174- deps: bytes@3.1.2 by
@bjohansebas
in expressjs/compression#192
... (truncated)
Changelog
Sourced from compression's changelog.
1.8.1 / 2025-07-17
- deps: on-headers@~1.1.0
1.8.0 / 2025-02-10
- Use
res.headersSent
when available- Replace
_implicitHeader
withwriteHead
property- add brotli support for versions of node that support it
- Add the enforceEncoding option for requests without
Accept-Encoding
header1.7.5 / 2024-10-31
- deps: Replace accepts with negotiator@~0.6.4
- Add preference option
- deps: bytes@3.1.2
- Add petabyte (
pb
) support- Fix "thousandsSeparator" incorrecting formatting fractional part
- Fix return value for un-parsable strings
- deps: compressible@~2.0.18
- Mark
font/ttf
as compressible- Remove compressible from
multipart/mixed
- deps: mime-db@'>= 1.43.0 < 2'
- deps: safe-buffer@5.2.1
Commits
83a0c45
1.8.1ce62713
deps: on-headers@1.1.0 (#246)f4acb23
build(deps-dev): bump eslint-plugin-import from 2.31.0 to 2.32.0 (#244)6eaebe6
build(deps): bump actions/checkout from 4.1.1 to 4.2.2 (#241)37e0623
build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 (#240)bc436b2
build(deps): bump actions/upload-artifact from 4.3.1 to 4.6.2 (#239)2f9f572
build(deps): bump github/codeql-action from 3.28.15 to 3.29.2 (#243)5f13b14
[StepSecurity] ci: Harden GitHub Actions (#235)76e0945
build(deps-dev): bump supertest from 6.2.3 to 6.3.4 (#231)ae6ee80
build(deps-dev): bump eslint-plugin-import from 2.26.0 to 2.31.0 (#230)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for compression since your current version.
Updates tmp
from 0.2.3 to 0.2.5
Commits
3d2fe38
Bump up the versione162828
Merge pull request #309 from fflorent/fix-tmp-dir-with-dirb847d2f
Fix use of tmp.dir() withdir
option08fa3ab
Update version1cf4ec5
Merge commit from fork188b25e
Fix GHSA-52f5-9888-hmc673b9fe4
Add test case for GHSA-52f5-9888-hmc6b8e2f29
Remove broken tests2892a02
Remove outdated URLf592318
Reformat package.json- 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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will 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 version
will 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
You can disable automated security fix PRs for this repo from the Security Alerts page.
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Security Advisories
Use of Insufficiently Random Values in undici
on-headers is vulnerable to http response header manipulation
tmp allows arbitrary temporary file / directory write via symbolic link `dir` parameter
Technical Details
ID: | 7339594 |
UUID: | 3400093953 |
Node ID: | PR_kwDOMVY81c6nsXTX |
Host: | GitHub |
Repository: | hashim21223445/https-hashim21223445.github.io-hash-toolbox- |