chore(deps): bump the production-dependencies group with 26 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(4 months ago)
(4 months ago)
(4 months ago)
by eldon-chung
dependencies javascript
Bumps the production-dependencies group with 26 updates:
Package | From | To |
---|---|---|
@clack/prompts | 0.9.0 |
0.10.1 |
@floating-ui/dom | 1.6.12 |
1.7.0 |
flexsearch | 0.7.43 |
0.8.167 |
globby | 14.0.2 |
14.1.0 |
hast-util-to-html | 9.0.4 |
9.0.5 |
hast-util-to-jsx-runtime | 2.3.2 |
2.3.6 |
katex | 0.16.19 |
0.16.22 |
lightningcss | 1.28.2 |
1.30.1 |
mdast-util-find-and-replace | 3.0.1 |
3.0.2 |
pixi.js | 8.6.6 |
8.9.2 |
preact | 10.25.4 |
10.26.6 |
preact-render-to-string | 6.5.12 |
6.5.13 |
pretty-bytes | 6.1.1 |
7.0.0 |
rehype-citation | 2.2.2 |
2.3.1 |
rehype-mathjax | 6.0.0 |
7.1.0 |
rehype-pretty-code | 0.14.0 |
0.14.1 |
remark-gfm | 4.0.0 |
4.0.1 |
remark-rehype | 11.1.1 |
11.1.2 |
shiki | 1.24.4 |
3.4.2 |
ws | 8.18.0 |
8.18.2 |
@types/ws | 8.5.13 |
8.18.1 |
@types/node | 22.10.2 |
22.15.18 |
esbuild | 0.24.2 |
0.25.4 |
prettier | 3.4.2 |
3.5.3 |
tsx | 4.19.2 |
4.19.4 |
typescript | 5.7.2 |
5.8.3 |
Updates @clack/prompts
from 0.9.0 to 0.10.1
Release notes
Sourced from @clack/prompts
's releases.
@clack/prompts
@0
.10.1Patch Changes
- 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
- 30aa7ed: Adds a new
selectableGroups
boolean to the group multi-select prompt. UsingselectableGroups: false
will disable the ability to select a top-level group, but still allow every child to be selected individually.- Updated dependencies [30aa7ed]
- Updated dependencies [5dfce8a]
- Updated dependencies [f574297]
@clack/core
@0
.4.2
@clack/prompts
@0
.10.0Minor Changes
613179d: Adds a new
indicator
option tospinner
, which supports the original"dots"
loading animation or a new"timer"
loading animation.import * as p from "@clack/prompts";
const spin = p.spinner({ indicator: "timer" }); spin.start("Loading"); await sleep(3000); spin.stop("Loaded");
a38b2bc: Adds
stream
API which provides the same methods aslog
, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.import * as p from "@clack/prompts";
await p.stream.step( (async function* () { yield* generateLLMResponse(question); })() );
@clack/prompts
@0
.9.1Patch Changes
- 8093f3c: Adds
Error
support to thevalidate
function- 98925e3: Exports the
Option
type and improves JSDocannotations- 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in
stripVTControlCharacters
utility.- Updated dependencies [8093f3c]
- Updated dependencies [e5ba09a]
- Updated dependencies [8cba8e3]
@clack/core
@0
.4.1
Changelog
Sourced from @clack/prompts
's changelog.
0.10.1
Patch Changes
- 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
- 30aa7ed: Adds a new
selectableGroups
boolean to the group multi-select prompt. UsingselectableGroups: false
will disable the ability to select a top-level group, but still allow every child to be selected individually.- Updated dependencies [30aa7ed]
- Updated dependencies [5dfce8a]
- Updated dependencies [f574297]
@clack/core
@0
.4.20.10.0
Minor Changes
613179d: Adds a new
indicator
option tospinner
, which supports the original"dots"
loading animation or a new"timer"
loading animation.import * as p from "@clack/prompts";
const spin = p.spinner({ indicator: "timer" }); spin.start("Loading"); await sleep(3000); spin.stop("Loaded");
a38b2bc: Adds
stream
API which provides the same methods aslog
, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.import * as p from "@clack/prompts";
await p.stream.step( (async function* () { yield* generateLLMResponse(question); })() );
0.9.1
Patch Changes
- 8093f3c: Adds
Error
support to thevalidate
function- 98925e3: Exports the
Option
type and improves JSDocannotations- 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in
stripVTControlCharacters
utility.- Updated dependencies [8093f3c]
- Updated dependencies [e5ba09a]
- Updated dependencies [8cba8e3]
@clack/core
@0
.4.1
Commits
5de191f
[ci] release (#262)5dfce8a
fix: use placeholder as value when input is empty (#263)11a5dc1
fix: add hints for selected options in multiselect prompts & tests (#279)30aa7ed
feat: addselectableGroups
option to group multi-select (#255)3c200dd
docs(prompts): fix logs image display (#243)5529c89
chore: update repository url (#239)d6d9ce7
[ci] formatfe1ee54
[ci] release (#232)613179d
feat: timer indicator forspinner
(#230)251518b
[ci] format- Additional commits viewable in compare view
Updates @floating-ui/dom
from 1.6.12 to 1.7.0
Release notes
Sourced from @floating-ui/dom
's releases.
@floating-ui/dom
@1
.7.0Minor Changes
- feat(flip): add
"alignment"
string value forcrossAxis
option. This value determines if cross axis overflow checking is restricted to thealignment
of the placement only. This preventsfallbackPlacements
/fallbackAxisSideDirection
from too eagerly changing to the perpendicular side (thereby preferringshift()
if overflow is detected along the cross axis, even ifshift()
is placed afterflip()
in the middleware array).Patch Changes
- fix: correct position when document scrollbar is on left side with fixed strategy
- Update dependencies:
@floating-ui/core@1.7.0
@floating-ui/dom
@1
.6.13Patch Changes
- fix(autoUpdate): work around
IntersectionObserver
issue that sometimes fails to detect movement of reference element- Update dependencies:
@floating-ui/utils@0.2.9
Changelog
Sourced from @floating-ui/dom
's changelog.
1.7.0
Minor Changes
- feat(flip): add
"alignment"
string value forcrossAxis
option. This value determines if cross axis overflow checking is restricted to thealignment
of the placement only. This preventsfallbackPlacements
/fallbackAxisSideDirection
from too eagerly changing to the perpendicular side (thereby preferringshift()
if overflow is detected along the cross axis, even ifshift()
is placed afterflip()
in the middleware array).Patch Changes
- fix: correct position when document scrollbar is on left side with fixed strategy
- Update dependencies:
@floating-ui/core@1.7.0
1.6.13
Patch Changes
- fix(autoUpdate): work around
IntersectionObserver
issue that sometimes fails to detect movement of reference element- Update dependencies:
@floating-ui/utils@0.2.9
Commits
fdcb0a9
chore: version packages (#3310)1150bcf
chore: make dom depend on core for minorsc81f259
feat(flip):"alignment"
string value forcrossAxis
option (#3308)6b43484
fix: correct position when document scrollbar is on left side with fixed stra...86b3154
test: run React tests in Vitest browser mode (#3258)7a80174
chore: lint unused varsc09c59d
chore: update Playwright (#3214)b0dfb58
chore: version packages (#3187)87504f9
style(dom): apply prettier config (#3189)1fa2c50
chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (#3177)- Additional commits viewable in compare view
Updates flexsearch
from 0.7.43 to 0.8.167
Release notes
Sourced from flexsearch's releases.
v0.8.1
- Resolver Support for Documents
- Asynchronous Runtime Balancer, new option
priority
- Export/Import Worker Indexes + Document Worker, new extern config options
export
andimport
- Improved interoperability of the different build packages, including source folder
- Support custom
filter
function for encoder (stop-word filter)v0.8.0
- Persistent indexes support for:
IndexedDB
(Browser),Redis
,SQLite
,Postgres
,MongoDB
,Clickhouse
- Enhanced language customization via the new
Encoder
class- Result Highlighting
- Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
- Enhanced support for larger indexes or larger result sets
- Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
- Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
- Greatly enhanced performance of the whole text encoding pipeline
- Improved indexing of numeric content (Triplets)
- Intermediate result sets and
Resolver
- Basic Resolver:
and
,or
,xor
,not
,limit
,offset
,boost
,resolve
- Improved charset collection
- New charset preset
soundex
which further reduces memory consumption by also increasing "fuzziness"- Performance gain when polling tasks to the index by using "Event-Loop-Caches"
- Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
- Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
- Extended support for multiple tags (DocumentIndex)
- Custom Fields ("Virtual Fields")
- Custom Filter
- Custom Score Function
- Added French language preset (stop-word filter, stemmer)
- Enhanced Worker Support
- Export / Import index in chunks
- Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
- Full covering index.d.ts type definitions
- Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)
Changelog
Sourced from flexsearch's changelog.
Changelog
Current Version
- Improved Stemmer Handling
- Improved Result Highlighting
- Use multi-language charset normalization as the default
Encoder
- Simplified charset support for multi-language content
- Charset renamed
LatinExact
=>Exact
,LatinDefault
=>Default
andLatinSimple
=>Normalize
, these are universal charset presets for any languages- Charset
ArabicDefault
andCyrillicDefault
was removed, they are fully covered by the default universal charset presets- Charset
Charset.CjkDefault
was renamed toCharset.CJK
v0.8.1
- Resolver Support for Documents
- Asynchronous Runtime Balancer, new option
priority
- Export/Import Worker Indexes + Document Worker, new extern config options
export
andimport
- Improved interoperability of the different build packages, including source folder
- Support custom
filter
function for encoder (stop-word filter)v0.8.0
- Persistent indexes support for:
IndexedDB
(Browser),Redis
,SQLite
,Postgres
,MongoDB
,Clickhouse
- Enhanced language customization via the new
Encoder
class- Result Highlighting
- Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
- Enhanced support for larger indexes or larger result sets
- Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
- Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
- Greatly enhanced performance of the whole text encoding pipeline
- Improved indexing of numeric content (Triplets)
- Intermediate result sets and
Resolver
- Basic Resolver:
and
,or
,xor
,not
,limit
,offset
,boost
,resolve
- Improved charset collection
- New charset preset
soundex
which further reduces memory consumption by also increasing "fuzziness"- Performance gain when polling tasks to the index by using "Event-Loop-Caches"
- Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
- Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
- Extended support for multiple tags (DocumentIndex)
- Custom Fields ("Virtual Fields")
- Custom Filter
- Custom Score Function
- Added French language preset (stop-word filter, stemmer)
- Enhanced Worker Support
- Export / Import index in chunks
- Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
- Full covering index.d.ts type definitions
- Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)
v0.7.0
... (truncated)
Commits
- See full diff in compare view
Updates globby
from 14.0.2 to 14.1.0
Release notes
Sourced from globby's releases.
v14.1.0
- Export
isIgnoredByIgnoreFiles
andisIgnoredByIgnoreFilesSync
functions (#269) cba8941
https://github.com/sindresorhus/globby/compare/v14.0.2...v14.1.0
Commits
60d7de5
14.1.086822f2
Meta tweakscba8941
ExportisIgnoredByIgnoreFiles
andisIgnoredByIgnoreFilesSync
functions (#...- See full diff in compare view
Updates hast-util-to-html
from 9.0.4 to 9.0.5
Release notes
Sourced from hast-util-to-html's releases.
9.0.5
- 329625e Update
property-information
Full Changelog: https://github.com/syntax-tree/hast-util-to-html/compare/9.0.4...9.0.5
Commits
Updates hast-util-to-jsx-runtime
from 2.3.2 to 2.3.6
Release notes
Sourced from hast-util-to-jsx-runtime's releases.
2.3.6
- 90fde6c Refactor to externalize some code by
@remcohaszing
in syntax-tree/hast-util-to-jsx-runtime#11Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.5...2.3.6
2.3.5
- d25e00a Remove no longer working type hack
Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.4...2.3.5
2.3.4
Types
- bf5ccaa Fix type error if
JSX
is not definedFull Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.3...2.3.4
2.3.3
- da03821 Update
property-information
Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.2...2.3.3
Commits
b0920cd
2.3.690fde6c
Refactor to externalize some code09c32dc
2.3.5d25e00a
Remove no longer working type hack5271dd5
2.3.4bf5ccaa
Fix type error ifJSX
is not defined4a0148e
2.3.31c5bb11
Refactor docs644db29
Update React in dev-dependenciesda03821
Updateproperty-information
- Additional commits viewable in compare view
Updates katex
from 0.16.19 to 0.16.22
Release notes
Sourced from katex's releases.
v0.16.22
0.16.22 (2025-04-09)
Bug Fixes
v0.16.21
0.16.21 (2025-01-17)
Bug Fixes
- escape \htmlData attribute name (57914ad)
- See security advisory https://github.com/KaTeX/KaTeX/security/advisories/GHSA-cg87-wmx4-v546
v0.16.20
0.16.20 (2025-01-12)
Bug Fixes
Changelog
Sourced from katex's changelog.
0.16.22 (2025-04-09)
Bug Fixes
0.16.21 (2025-01-17)
Bug Fixes
- escape \htmlData attribute name (57914ad)
0.16.20 (2025-01-12)
Bug Fixes
Commits
613c3da
chore(release): 0.16.22 [ci skip]1f43c84
fix: \relax in base or exponent of super/subscript (#4045)2fe1941
chore: spelling fixes (#4035)aada26a
chore(deps): update dependency postcss-preset-env to v7.8.3 [skip netlify] (#...3376056
chore(deps): update dependency caniuse-lite to v1.0.30001695 [skip netlify] (...bc4a947
chore: bump GitHub actions to their latest versions (#4026)923f2aa
chore(release): 0.16.21 [ci skip]57914ad
fix: escape \htmlData attribute nameff28995
Merge commit from fork28a0bf5
chore(release): 0.16.20 [ci skip]- Additional commits viewable in compare view
Updates lightningcss
from 1.28.2 to 1.30.1
Release notes
Sourced from lightningcss's releases.
v1.30.1
Fixed crash on process exit when lightningcss was loaded inside a Node.js worker thread on Linux
v1.30.0
Features
- Update relative color parsing to latest spec: colors now support numbers in addition to percentages, and calcs in colors are now always numbers. Note that this was technically a breaking change in the spec. You may need to update code using relative color calculations on percentages to use numbers instead. See the PR for details. – #465
- Update nesting implementation for new spec: It is now possible to nest selectors with pseudo elements, and declarations and nested rules can be interleaved. See https://web.dev/blog/css-nesting-cssnesteddeclarations for more details. – https://github.com/parcel-bundler/lightningcss/commit/6c465c123deb549dfb45fd3558f25dca0dbde0d6
- Skip generating unnecessary
@supports
rules when already nested in a@supports
rule – #878, d398c1b86439dfd243a6c2ba627a8e7981118a44- Improve error recovery for media queries – #954
- Add support for ::picker, ::picker-icon and ::checkmark – #957
- Add build support for Android – #932
Fixes
- Fix error message for invalid composes selectors – parcel-bundler/lightningcss#948
- Update browserslist – parcel-bundler/lightningcss#961
- Fix linear-gradient direction conversion for legacy vendor-prefixed values – #936
- Prevent new lines in license comments from breaking source maps – #971
- Do not inline layers before imports – 33ea2c149e2c94f6e45a86d6d666d092729c9523
- Statically link Visual Studio redistributables on Windows builds – e5c4139be325c03704072c948be38f8b1f990071
- update browser compat data – 17bdc80ff5282c410daf65d135ef6cac79200e55
v1.29.3
- Support for
::details-content
and::target-text
selectors –@philipp-spiess
in parcel-bundler/lightningcss#930- Update
:placeholder-shown
selector name across browsers –@Marukome0743
in parcel-bundler/lightningcss#929- Support
/* cssmodules-pure-no-check */
comments –@jantimon
in parcel-bundler/lightningcss#898- Update browser compatibility data – c03a7e7f7cfe7a8d487f9402e3194a1d732f9a04
v1.29.2
- Update detect-libc for better compatibility by
@nicksrandall
in parcel-bundler/lightningcss#923- Fix broken minification for non-opaque oklab colors by
@lfesp
in parcel-bundler/lightningcss#901- Bump browserslist-rs 0.17.0 by
@chenjiahan
in parcel-bundler/lightningcss#912- Add wasm compilation cfg for
Browsers::load_browserslist
by@CPunisher
in parcel-bundler/lightningcss#895- Fix parsing style container queries without a value – 22846530a008baf7a0985e9b87d90c6ae5c4047b
v1.29.0
Added
- Implement view transitions level 2, including the
@view-transition
rule,view-transition-class
andview-transition-group
properties, and class selector features of the view transition pseudo elements. This enables CSS module scoping and better minification when using these features. – #885- Support parsing the
@font-feature-values
rule – #840- Add a feature flag to explicitly enable or disable transpiling the
light-dark()
function – https://github.com/parcel-bundler/lightningcss/commit/304389600fb655c5b1af55f1946518e9b755b860Fixed
- Compile media query range syntax with boolean logic instead of fractional pixels. Fixes issues with rounding certain values. – https://github.com/parcel-bundler/lightningcss/commit/7f290350ed0cc53b1267d6810417f0611135eeee
- Fix parsing the
list-style
shorthand property – https://github.com/parcel-bundler/lightningcss/commit/97891d85f1ea3a9912a0996daa532e72d0c86046- Fix hashing of
:nth-child(an + b of X)
selectors in CSS modules – https://github.com/parcel-bundler/lightningcss/commit/ed9e659ea0d298a836a7cbe1c4f77c69531ee5c8- Update napi-rs to fix issue with
\0
characters in filenames – https://github.com/parcel-bundler/lightningcss/commit/43707c31547b66c3c611cda393ce7fe5d07090d0- Fix CustomAtRule.loc TypeScript type – #876
... (truncated)
Commits
f2dc67c
v1.30.1d302a6b
Add linker option to prevent segfault in Node worker threads474c67c
v1.30.017bdc80
update browser compat datae5c4139
Statically link Visual Studio redistributables on Windows builds33ea2c1
Do not inline layers before imports4ebcb45
Update relative color parsing to latest spec (#465)0f064ab
Prevent new lines written bywrite_str
from breaking source maps (#971)16fdfd5
fix: remove grid feature (#972)496f4f6
Add build support for Android (#932)- Additional commits viewable in compare view
Updates mdast-util-find-and-replace
from 3.0.1 to 3.0.2
Release notes
Sourced from mdast-util-find-and-replace's releases.
3.0.2
Types
- f67eee4 Refactor to use
@import
s- 8ac2d6b Add declaration maps
Full Changelog: https://github.com/syntax-tree/mdast-util-find-and-replace/compare/3.0.1...3.0.2
Commits
Updates pixi.js
from 8.6.6 to 8.9.2
Release notes
Sourced from pixi.js's releases.
v8.9.2
💾 Download
Development Build:
Production Build:
Documentation:
Changed
https://github.com/pixijs/pixi.js/compare/8.9.1...v8.9.2
🐛 Fixed
- fix: render layer detachment when destroying. by
@GoodBoyDigital
in pixijs/pixijs#11384- fix: documentation regarding anchor values in spritesheet by
@SanjoSolutions
in pixijs/pixijs#11363- fix: gradient issue with non 0,0 shapes in graphics by
@GoodBoyDigital
in pixijs/pixijs#11383New Contributors
@SanjoSolutions
made their first contribution in pixijs/pixijs#11363v8.9.1
💾 Download
Development Build:
Production Build:
Documentation:
Changed
https://github.com/pixijs/pixi.js/compare/v8.9.0...v8.9.1
🐛 Fixed
- fix: bad aliased imports by
@bigtimebuddy
in pixijs/pixijs#11355- fix: reset premultiply alpha state on resetState call and update WebGL settings by
@GoodBoyDigital
in pixijs/pixijs#11342- fix: state culling was flipped when rendering to a texture by
@GoodBoyDigital
in pixijs/pixijs#11356v8.9.0
💾 Download
... (truncated)
Commits
2c0f2e5
v8.9.26b5a573
fix: gradient issue with non 0,0 shapes in graphics (#11383)03c5763
Fixes documentation regarding anchor values in spritesheet (#11363)9e81903
fix: render layer detachment when destroying. (#11384)9d177e2
v8.9.12efd98f
fix(GlTextureSystem): reset premultiply alpha state on resetState call and up...50f1d65
fix: state culling was flipped when rendering to a texture (#11356)15c9e7b
fix: bad aliased imports (#11355)58321a2
v8.9.0bd0e692
fix: Restore gl extensions state on context restore (#11299)- Additional commits viewable in compare view
Updates preact
from 10.25.4 to 10.26.6
Release notes
Sourced from preact's releases.
10.26.6
Fixes
- Ensure useId works in portals (#4752, thanks
@JoviDeCroock
)Types
- Change
HTMLMediaElement.controlsList
type to string (DOMTokenList) (#4744, thanks@piotr-cz
)Maintenance
- Switch testing from karma to vitest (#4687, thanks
@JoviDeCroock
)- Dedupe preact in vitest setup (#4702, thanks
@sheremet-va
)10.26.5
Types
- Return 'AllHTMLAttributes' to manually including all attrs (#4728, thanks
@rschristian
)- Correct
hydrateRoot
return type (#4735, thanks@plesiecki
)- Update CommandEventHandler type to use EventHandler (#4740, thanks
@robertknight
)Fixes
- Avoid cloning reused nodes (#4733, thanks
@JoviDeCroock
)- Bring back strict-equality bailout for children even w/ context updates (#4724, thanks
@rschristian
)- Effect in memoed boundary should be re-executed when the lazy boundary resolves (#4711, thanks
@CaptainWang98
)Maintenance
- Add case for context w/ strictly-equal children (#4725, thanks
@rschristian
)- Golf down unnecessary strict equality checks (#4723, thanks
@rschristian
)10.26.4
Fixes
- Address context fragments issue (#4717, thanks
@JoviDeCroock
)10.26.3
Fixes
- Keyed nullish placeholders cause re-mounts (#4700, thanks
@JoviDeCroock
)Types
- Add command invoker types (#4692, thanks
@lukewarlow
)- Flesh out HTMLMediaElement types (#4705, thanks
@rschristian
)- Add
onBeforeToggle
event handler type (#4694, thanks@lukewarlow
)- Add dialog
closedby
types (#4693, thanks@lukewarlow
)- Add
fetchPriority
toimg
(#4713, thanks@JoviDeCroock
)- Refactor
AllHTMLAttributes
interface (#4706, thanks@rschristian
)
... (truncated)
Commits
e92fdf8
10.26.6 (#4755)8e05a6f
Ensure useId works in portals (#4752)8aac5fa
Merge pull request #4753 from preactjs/bump-vitest0e1893c
Vitest switch (#4687)94db9b4
Try some stuffa2dcfc6
Enable linte7cfb64
bump viteste6a4080
Bump some stuff87eed69
Expandf8ddf37
Skip more files- Additional commits viewable in compare view
Updates preact-render-to-string
from 6.5.12 to 6.5.13
Release notes
Sourced from preact-render-to-string's releases.
v6.5.13
Patch Changes
#408
8e8e8ac
Thanks@f0x52
! - Ensure that the_parent
is kept around across multiple suspensions and avoid circular references. In doing so ouruseId
hook should always output unique ids during renderingToString.#409
2afaf31
Thanks@f0x52
! - Ensure the renderToStream types of/stream
and/stream-node
accept a generic for the props of the passed in VNode#405
0a698f6
Thanks@f0x52
! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream
Changelog
Sourced from preact-render-to-string's changelog.
6.5.13
Patch Changes
- #408
8e8e8ac
Thanks@f0x52
! - Ensure that the_parent
is kept around across multiple suspensions and avoid circular references. In doing so ouruseId
hook should always output unique ids during renderingToString.
Commits
b2050f4
Version Packages (#410)0a698f6
renderToPipeableStream: expose errors through onError, no longer emit un-catc...c819f51
Ensure use id works (#411)8e8e8ac
Use suspense boundary vnode as parent for subtree re-render (#408)2afaf31
Use generic type for vnode props in renderToReadableStream/renderToPipeableSt...- See full diff in compare view
Updates pretty-bytes
from 6.1.1 to 7.0.0
Release notes
Sourced from pretty-bytes's releases.
v7.0.0
Breaking
- Require Node.js 20 13d3727
Improvements
- Add support for
BigInt
(#85) 386b35a
https://github.com/sindresorhus/pretty-bytes/compare/v6.1.1...v7.0.0
Pull Request Statistics
1
2
+587
-1169
Package Dependencies
mdast-util-find-and-replace
npm
3.0.1 → 3.0.2
Patch
Technical Details
ID: | 353376 |
UUID: | 2523873991 |
Node ID: | PR_kwDOOq_nHc6Wb0LH |
Host: | GitHub |
Repository: | notes-for-computer-science/programming-in-C |
Merge State: | Unknown |