chore(deps): bump the production-dependencies group with 6 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(6 months ago)
(5 months ago)
(5 months ago)
dependencies javascript
Bumps the production-dependencies group with 6 updates:
| Package | From | To |
|---|---|---|
| @floating-ui/dom | 1.7.0 |
1.7.1 |
| preact | 10.26.7 |
10.26.8 |
| workerpool | 9.2.0 |
9.3.2 |
| yargs | 17.7.2 |
18.0.0 |
| @types/node | 22.15.21 |
22.15.29 |
| esbuild | 0.25.4 |
0.25.5 |
Updates @floating-ui/dom from 1.7.0 to 1.7.1
Release notes
Sourced from @floating-ui/dom's releases.
@floating-ui/dom@1.7.1Patch Changes
- Update dependencies:
@floating-ui/core@1.7.1
Changelog
Sourced from @floating-ui/dom's changelog.
1.7.1
Patch Changes
- Update dependencies:
@floating-ui/core@1.7.1
Commits
999bb86chore: version packages (#3336)37eb937fix(flip): check all placements for main axis overflow with `crossAxis: 'alig...- See full diff in compare view
Updates preact from 10.26.7 to 10.26.8
Release notes
Sourced from preact's releases.
10.26.8
Fixes
- Fix defaultProps applying on null values (#4775, thanks
@JoviDeCroock)
Commits
b9d66a510.26.8 (#4778)c4dc71eFix nullish default props (#4775)- See full diff in compare view
Updates workerpool from 9.2.0 to 9.3.2
Changelog
Sourced from workerpool's changelog.
2025-05-29, version 9.3.2
- Fix: #505 npm package missing
/src/generated/files.2025-05-29, version 9.3.1
- Fix: #505 npm package missing
/src/generated/files.2025-05-28, version 9.3.0
- Feat: support for events and std streams to parents from an abort handler (#478). Thanks
@joshLong145.- feat: improve compatibility with standard Promise type (#504). Thanks
@joshkel.
Commits
- See full diff in compare view
Updates yargs from 17.7.2 to 18.0.0
Changelog
Sourced from yargs's changelog.
18.0.0 (2025-05-26)
⚠ BREAKING CHANGES
- command names are not derived from modules passed to
command.- singleton usage of yargs yargs.foo, yargs().argv, has been removed.
- minimum node.js versions now
^20.19.0 || ^22.12.0 || >=23.- yargs is now ESM first
Features
- commandDir now works with ESM files (#2461) (27eec18)
- locale: adds hebrew translation (#2357) (4266485)
- yargs is now ESM first (d90af45)
- zsh: Add default completion as fallback (#2331) (e02c91b)
Bug Fixes
- addDirectory do not support absolute command dir (#2465) (3a40a78)
- allows ESM modules commands to be extensible using visit option (#2468) (200e1aa)
- browser: fix shims so that yargs continues working in browser context (#2457) (4ae5f57)
- build: address problems with typescript compilation (#2445) (8d72fb3)
- coerce should play well with parser configuration (#2308) (8343c66)
- deps: update dependency yargs-parser to v22 (#2470) (639130d)
- exit after async handler done (#2313) (e326cde)
- handle spaces in bash completion (#2452) (83b7788)
- parser-configuration should work well with generated completion script (#2332) (888db19)
- propagate Dictionary including undefined in value type (#2393) (2b2f7f5)
- zsh: completion no longer requires double tab when using autoloaded (0dd8fe4)
Code Refactoring
- command names are not derived from modules passed to
command. (d90af45)- singleton usage of yargs yargs.foo, yargs().argv, has been removed. (d90af45)
Build System
- minimum node.js versions now
^20.19.0 || ^22.12.0 || >=23. (d90af45)
Commits
0bc7255chore(main): release 18.0.0 (#2325)639130dfix(deps): update dependency yargs-parser to v22 (#2470)200e1aafix: allows ESM modules commands to be extensible using visit option (#2468)888db19fix: parser-configuration should work well with generated completion script (...3a40a78fix: addDirectory do not support absolute command dir (#2465)90e9ecadocs: remove to old slack channel (#2466)0dd8fe4fix(zsh): completion no longer requires double tab when using autoloaded27eec18feat: commandDir now works with ESM files (#2461)f9c72a7docs: update examples to run from examples folder (#2463)e02c91bfeat(zsh): Add default completion as fallback (#2331)- Additional commits viewable in compare view
Updates @types/node from 22.15.21 to 22.15.29
Commits
- See full diff in compare view
Updates esbuild from 0.25.4 to 0.25.5
Release notes
Sourced from esbuild's releases.
v0.25.5
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?modifier. These labels includedfunction,import,infer,new,readonly, andtypeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]Add CSS prefixes for the
stretchsizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }. That CSS is now transformed into this depending on what the--target=setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }
Changelog
Sourced from esbuild's changelog.
0.25.5
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?modifier. These labels includedfunction,import,infer,new,readonly, andtypeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]Add CSS prefixes for the
stretchsizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }. That CSS is now transformed into this depending on what the--target=setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }
Commits
ea453bfpublish 0.25.5 to npm223ddc6fix #4187: browserpackage.jsonregressionb2c8251fix #4192: typescript tuple label parser edge case28cf2f3fix #4184: css prefixes forstretchbee1b09fix comment indents9ddfe5frunmake update-compat-tablec339f34fix a misplaced comment- 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
Pull Request Statistics
1
2
+223
-231
Package Dependencies
Technical Details
| ID: | 1370909 |
| UUID: | 2560154049 |
| Node ID: | PR_kwDOOq_nHc6YmNnB |
| Host: | GitHub |
| Repository: | learn-compsci/programming-in-C |
| Mergeable: | Yes |
| Merge State: | Clean |
| Rebaseable: | Yes |