Bump the production-dependencies group with 59 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 0
(17 days ago)
(16 days ago)
(16 days ago)
by dat-rohit
dependencies javascript
Bumps the production-dependencies group with 59 updates:
Package | From | To |
---|---|---|
@clack/prompts | 0.6.3 |
0.11.0 |
@floating-ui/dom | 1.4.3 |
1.7.4 |
@napi-rs/simple-git | 0.1.9 |
0.1.22 |
async-mutex | 0.4.0 |
0.5.0 |
chalk | 4.1.2 |
5.6.0 |
chokidar | 3.5.3 |
4.0.3 |
d3 | 7.8.5 |
7.9.0 |
@types/d3 | 7.4.0 |
7.4.3 |
esbuild-sass-plugin | 2.12.0 |
3.3.1 |
flexsearch | 0.7.21 |
0.8.205 |
globby | 13.2.1 |
14.1.0 |
hast-util-to-html | 8.0.4 |
9.0.5 |
hast-util-to-jsx-runtime | 1.2.0 |
2.3.6 |
hast-util-to-string | 2.0.0 |
3.0.1 |
lightningcss | 1.21.7 |
1.30.1 |
mdast-util-find-and-replace | 2.2.2 |
3.0.2 |
mdast-util-to-hast | 12.3.0 |
13.2.0 |
mdast-util-to-string | 3.2.0 |
4.0.0 |
plausible-tracker | 0.3.8 |
0.3.9 |
preact | 10.15.1 |
10.27.1 |
preact-render-to-string | 6.1.0 |
6.6.1 |
pretty-bytes | 6.1.0 |
7.0.1 |
rehype-autolink-headings | 6.1.1 |
7.1.0 |
rehype-katex | 6.0.3 |
7.0.1 |
rehype-mathjax | 4.0.3 |
7.1.0 |
rehype-pretty-code | 0.10.0 |
0.14.1 |
rehype-raw | 6.1.1 |
7.0.0 |
rehype-slug | 5.1.0 |
6.0.0 |
remark | 14.0.3 |
15.0.1 |
remark-breaks | 3.0.3 |
4.0.0 |
remark-frontmatter | 4.0.1 |
5.0.0 |
remark-gfm | 3.0.1 |
4.0.1 |
remark-math | 5.1.1 |
6.0.0 |
remark-parse | 10.0.2 |
11.0.0 |
remark-rehype | 10.1.0 |
11.1.2 |
remark-smartypants | 2.0.0 |
3.0.2 |
rimraf | 5.0.1 |
6.0.1 |
serve-handler | 6.1.5 |
6.1.6 |
to-vfile | 7.2.4 |
8.0.0 |
unified | 10.1.2 |
11.0.5 |
unist-util-visit | 4.1.2 |
5.0.0 |
vfile | 5.3.7 |
6.0.3 |
workerpool | 6.4.0 |
9.3.3 |
@types/workerpool | 6.4.0 |
9.0.0 |
ws | 8.18.0 |
8.18.3 |
@types/ws | 8.5.5 |
8.18.1 |
yargs | 17.7.2 |
18.0.0 |
@types/cli-spinner | 0.2.1 |
0.2.3 |
@types/flexsearch | 0.7.3 |
0.7.42 |
@types/hast | 2.3.5 |
3.0.4 |
@types/js-yaml | 4.0.5 |
4.0.9 |
@types/node | 20.3.3 |
24.3.0 |
@types/pretty-time | 1.1.2 |
1.1.5 |
@types/source-map-support | 0.5.6 |
0.5.10 |
@types/yargs | 17.0.24 |
17.0.33 |
esbuild | 0.19.2 |
0.25.9 |
prettier | 3.0.0 |
3.6.2 |
tsx | 3.12.7 |
4.20.5 |
typescript | 5.1.6 |
5.9.2 |
Updates @clack/prompts
from 0.6.3 to 0.11.0
Release notes
Sourced from @clack/prompts
's releases.
@clack/prompts
@0
.11.0Minor Changes
- 07ca32d: Reverted a change where placeholders were being set as values on return.
Patch Changes
- Updated dependencies [07ca32d]
@clack/core
@0
.5.0
@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
... (truncated)
Changelog
Sourced from @clack/prompts
's changelog.
0.11.0
Minor Changes
- 07ca32d: Reverted a change where placeholders were being set as values on return.
Patch Changes
- Updated dependencies [07ca32d]
@clack/core
@0
.5.00.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
... (truncated)
Commits
737f172
[ci] release (#325)07ca32d
fix: revert placeholder-on-return change (#324)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)- Additional commits viewable in compare view
Updates @floating-ui/dom
from 1.4.3 to 1.7.4
Release notes
Sourced from @floating-ui/dom
's releases.
@floating-ui/dom
@1
.7.4Patch Changes
- fix(getViewportRect): account for space left by
scrollbar-gutter: stable
@floating-ui/dom
@1
.7.3Patch Changes
- Update dependencies:
@floating-ui/core@1.7.3
@floating-ui/dom
@1
.7.2Patch Changes
- perf: reduce memory allocations
- Update dependencies:
@floating-ui/utils@0.2.10
,@floating-ui/core@1.7.2
@floating-ui/dom
@1
.7.1Patch Changes
- Update dependencies:
@floating-ui/core@1.7.1
@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
@floating-ui/dom
@1
.6.12Patch Changes
- fix: handle relative html offset clipping rect
- fix(getClippingRect): allow passing
DOMRect
as aboundary
@floating-ui/dom
@1
.6.11Patch Changes
- fix: handle html relative offset
- Update dependencies:
@floating-ui/utils@0.2.8
@floating-ui/dom
@1
.6.10
... (truncated)
Changelog
Sourced from @floating-ui/dom
's changelog.
1.7.4
Patch Changes
- fix(getViewportRect): account for space left by
scrollbar-gutter: stable
1.7.3
Patch Changes
- Update dependencies:
@floating-ui/core@1.7.3
1.7.2
Patch Changes
- perf: reduce memory allocations
- Update dependencies:
@floating-ui/utils@0.2.10
,@floating-ui/core@1.7.2
1.7.1
Patch Changes
- Update dependencies:
@floating-ui/core@1.7.1
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
1.6.12
Patch Changes
- fix: handle relative html offset clipping rect
- fix(getClippingRect): allow passing
DOMRect
as aboundary
... (truncated)
Commits
7c33a3d
chore: version packages (#3388)8b34295
fix(getViewportRect): account forscrollbar-gutter: stable
space (#3387)38f8b5a
chore: version packages (#3377)693c9cc
fix(flip): ensure perpendicular axis flips with crossAxis alignment (#3376)9497a55
chore: version packages (#3354)ac2af58
perf: reduce additional memory allocations999bb86
chore: version packages (#3336)37eb937
fix(flip): check all placements for main axis overflow with `crossAxis: 'alig...fdcb0a9
chore: version packages (#3310)1150bcf
chore: make dom depend on core for minors- Additional commits viewable in compare view
Updates @napi-rs/simple-git
from 0.1.9 to 0.1.22
Release notes
Sourced from @napi-rs/simple-git
's releases.
v0.1.22
What's Changed
- Replace unmaintained goto-bus-stop/setup-zig with mlugg/setup-zig action by
@Copilot
in Brooooooklyn/simple-git#96- chore(deps): update actions/download-artifact action to v5 by
@renovate
[bot] in Brooooooklyn/simple-git#97- chore: clippy fix and npm trusted publisher by
@Brooooooklyn
in Brooooooklyn/simple-git#99New Contributors
@Copilot
made their first contribution in Brooooooklyn/simple-git#96Full Changelog: https://github.com/Brooooooklyn/simple-git/compare/v0.1.21...v0.1.22
v0.1.21
What's Changed
- chore(deps): update cross-platform-actions/action action to v0.29.0 by
@renovate
[bot] in Brooooooklyn/simple-git#94- fix: link libz.a on Linux x64 gnu by
@Brooooooklyn
in Brooooooklyn/simple-git#95Full Changelog: https://github.com/Brooooooklyn/simple-git/compare/v0.1.20...v0.1.21
v0.1.20
What's Changed
- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#62- chore(deps): update yarn to v4.5.0 by
@renovate
[bot] in Brooooooklyn/simple-git#63- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#64- chore(deps): update yarn to v4.5.1 by
@renovate
[bot] in Brooooooklyn/simple-git#65- chore(deps): update dependency
@types/node
to v22 by@renovate
[bot] in Brooooooklyn/simple-git#66- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#67- chore(deps): update yarn to v4.5.2 by
@renovate
[bot] in Brooooooklyn/simple-git#68- chore(deps): update yarn to v4.5.3 by
@renovate
[bot] in Brooooooklyn/simple-git#69- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#70- chore(deps): update cross-platform-actions/action action to v0.26.0 by
@renovate
[bot] in Brooooooklyn/simple-git#72- chore(deps): update yarn to v4.6.0 by
@renovate
[bot] in Brooooooklyn/simple-git#73- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#74- fix(deps): update rust crate git2 to 0.20 by
@renovate
[bot] in Brooooooklyn/simple-git#75- chore(deps): update cross-platform-actions/action action to v0.27.0 by
@renovate
[bot] in Brooooooklyn/simple-git#77- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#78- chore(deps): update yarn to v4.7.0 by
@renovate
[bot] in Brooooooklyn/simple-git#79- chore(deps): update yarn to v4.8.0 by
@renovate
[bot] in Brooooooklyn/simple-git#80- chore(deps): update yarn to v4.8.1 by
@renovate
[bot] in Brooooooklyn/simple-git#81- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#82- chore(deps): update yarn to v4.9.0 by
@renovate
[bot] in Brooooooklyn/simple-git#83- chore(deps): update yarn to v4.9.1 by
@renovate
[bot] in Brooooooklyn/simple-git#84- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#85- chore(deps): update cross-platform-actions/action action to v0.28.0 by
@renovate
[bot] in Brooooooklyn/simple-git#86- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#87- chore(deps): update yarn to v4.9.2 by
@renovate
[bot] in Brooooooklyn/simple-git#88- chore(deps): lock file maintenance by
@renovate
[bot] in Brooooooklyn/simple-git#89- feat: upgrade to NAPI-RS 3.0 by
@Brooooooklyn
in Brooooooklyn/simple-git#93
... (truncated)
Commits
7d01607
0.1.225792944
chore: fix preversion script6cbeb6e
chore: clippy fix and npm trusted publisher (#99)a1dfc9b
chore(deps): update actions/download-artifact action to v5 (#97)919cd79
ci: replace unmaintained goto-bus-stop/setup-zig with mlugg/setup-zig action ...3b580ef
0.1.21a36a282
fix: link libz.a on Linux x64 gnu (#95)bb9e05e
chore(deps): update cross-platform-actions/action action to v0.29.0 (#94)dea17f8
0.1.20b66275d
feat: upgrade to NAPI-RS 3.0 (#93)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @napi-rs/simple-git
since your current version.
Updates async-mutex
from 0.4.0 to 0.5.0
Changelog
Sourced from async-mutex's changelog.
0.5.0 - 2024/03/11
- Support priority queueing for mutexes and semaphores. A huge "thank you" goes to
@dmurvihill
who added this feature.- Update dependencies.
0.4.1 - 2024/01/17
- Expand documentation and fix a few errors.
- Clear timeout after acquiring a lock in
withTimeout
.- Thanks to AkatQuas and aryzing for their contributions.
- Update dependencies.
Commits
ca071fc
Changelog, bump version.3b8ae6f
Bump dependencies.43e8858
Merge pull request #75 from dmurvihill/priority285229f
Remove redundant instructions4350d80
Reverse findIndex for queuing tasks in waitForUnlock()981554f
Fix test name2d13278
Reverse findIndex for queuing tasks in acquire()c546c3f
Merge branch 'master' into priority6a55acb
Add failing test for crowd-out condition6af938b
Merge pull request #76 from dmurvihill/fix-unhandled-rejection-in-tests- Additional commits viewable in compare view
Updates chalk
from 4.1.2 to 5.6.0
Release notes
Sourced from chalk's releases.
v5.6.0
- Make WezTerm terminal use true color a8f5bf7
https://github.com/chalk/chalk/compare/v5.5.0...v5.6.0
v5.5.0
- Make Ghostty terminal use true color (#653) 79ee2d3
https://github.com/chalk/chalk/compare/v5.4.1...v5.5.0
v5.4.1
- Fix
navigator
not definedReferenceError
(#642) 4ebb62dhttps://github.com/chalk/chalk/compare/v5.4.0...v5.4.1
v5.4.0
- Update
CIRCLECI
environments to return level 3 color support f838120https://github.com/chalk/chalk/compare/v5.3.0...v5.4.0
v5.3.0
- Add
sideEffects
field to package.json 5aafc0a- Add support for Gitea Actions (#603) 29b8569
https://github.com/chalk/chalk/compare/v5.2.0...v5.3.0
v5.2.0
- Improve Deno compatibility (#579) 7443e9f
- Detect true-color support for GitHub Actions (#579) 7443e9f
- Detect true-color support for Kitty terminal (#579) 7443e9f
- Fix test for Azure DevOps environment (#579) 7443e9f
https://github.com/chalk/chalk/compare/v5.1.2...v5.2.0
v5.1.2
- Fix exported styles names (#569) a34bcf6
https://github.com/chalk/chalk/compare/v5.1.1...v5.1.2
v5.1.1
- Improved the names of exports introduced in 5.1.0 (#567) 6e0df05
- We of course preserved the old names.
https://github.com/chalk/chalk/compare/v5.1.0...v5.1.1
v5.1.0
... (truncated)
Commits
5c91505
5.6.0a8f5bf7
Make WezTerm terminal use true color67db246
5.5.079ee2d3
Make Ghostty terminal use true color (#653)5dbc1e2
5.4.14ebb62d
Fixnavigator
not definedReferenceError
(#642)fc809b6
Readme tweak83acfcf
5.4.0f838120
UpdateCIRCLECI
environments to return level 3 color support4a10354
Add FAQ to readme- Additional commits viewable in compare view
Updates chokidar
from 3.5.3 to 4.0.3
Release notes
Sourced from chokidar's releases.
4.0.3
What's Changed
- Fix typescript type of emitted args by
@43081j
in paulmillr/chokidar#1397Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.2...4.0.3
4.0.2
What's Changed
- Fix test "should detect safe-edit" on FreeBSD by
@tagattie
in paulmillr/chokidar#1375- Remove references to .map files by
@bluwy
in paulmillr/chokidar#1383- feat: strongly type event emitter methods by
@43081j
in paulmillr/chokidar#1381New Contributors
@bxt
made their first contribution in paulmillr/chokidar#1365@tagattie
made their first contribution in paulmillr/chokidar#1375@bluwy
made their first contribution in paulmillr/chokidar#1383Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.1...4.0.2
4.0.1
- Various fixes and improvements of typescript types
New Contributors
@benmccann
made their first contribution in paulmillr/chokidar#1349@talentlessguy
made their first contribution in paulmillr/chokidar#1356Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.0...4.0.1
4.0.0
- Remove glob support
- Remove bundled fsevents
- Decrease dependency count from 13 to 1
- Rewrite in typescript. Makes emitted types more precise
- The package became hybrid common.js / ESM
- Bump minimum node.js requirement to v14+
Special thanks to
@43081j
for improvements and help.Full Changelog: https://github.com/paulmillr/chokidar/compare/3.6.0...4.0.0
3.6.0
What's Changed
- fix readyCount logic by
@JLHwung
in paulmillr/chokidar#1288- handle MustScanSubDirs by
@MarcCelani-at
in paulmillr/chokidar#1197- update fs.FSWatcher types to satisfy nodejs versions >= 16; fixes #1299 by
@ben-polinsky
in paulmillr/chokidar#1300New Contributors
@Mutahhar
made their first contribution in paulmillr/chokidar#1226@zqianem
made their first contribution in paulmillr/chokidar#1242@JLHwung
made their first contribution in paulmillr/chokidar#1288
... (truncated)
Commits
1182965
Release 4.0.3.9470932
Merge pull request #1397 from paulmillr/unlink-types322e851
fix: separate error emit from regular events3fa04b5
fix: strongly typeunlink
events69c115a
Release 4.0.2.50cf698
Ignore map5e6daaa
Merge pull request #1381 from paulmillr/event-typese9cd7f6
Merge pull request #1383 from bluwy/map-ref6981c5d
Remove references to .map files7958696
feat: strongly type event emitter methods- Additional commits viewable in compare view
Updates d3
from 7.8.5 to 7.9.0
Release notes
Sourced from d3's releases.
v7.9.0
- Add d3.schemeObservable10. d3/d3-scale-chromatic#51
- Change d3.geoCircle precision to 2 degrees. d3/d3-geo#281
- Set projection.clipAngle precision to 2 degrees. d3/d3-geo#282
Commits
1f8dd3b
7.9.0a8afcf8
d3-geo 3.1.1b79e7da
fix vitepress colors, again1461bfb
update actions, again6d6fb02
documentation for schemeObservable10 (#3804)a353aa5
Documentation for d3-geo#281 (#3803)9f9d468
fix: jsx compatible camelCase syntax in svg (#3816)cb875ee
Remove defunct newsletter signup link from footer (#3808)33b372d
Revert "Remove mastodon link, change twitter to x (#3801)"4d3e273
Remove mastodon link, change twitter to x (#3801)- Additional commits viewable in compare view
Updates @types/d3
from 7.4.0 to 7.4.3
Commits
- See full diff in compare view
Updates esbuild-sass-plugin
from 2.12.0 to 3.3.1
Release notes
Sourced from esbuild-sass-plugin's releases.
v3.3.1
What's Changed
- feat: Add support namedExports by
@dungjk
in glromeo/esbuild-sass-plugin#179New Contributors
@dungjk
made their first contribution in glromeo/esbuild-sass-plugin#179Full Changelog: https://github.com/glromeo/esbuild-sass-plugin/compare/v3.3.0...v3.3.1
v3.3.0
What's Changed
- accept esbuild 0.21 by
@Valgrifer
in glromeo/esbuild-sass-plugin#177New Contributors
@Valgrifer
made their first contribution in glromeo/esbuild-sass-plugin#177Full Changelog: https://github.com/glromeo/esbuild-sass-plugin/compare/v3.2.0...v3.3.0
local-css
Added support for type: 'local-css' #173 thanks to
@kohlmannj
There's always a catch
type
now can be a function that takes care of rendering the style module #171- sass-embedded is now optional (installed as peer dependency) #168
Pedal to the metal!!!
Bye bye dart-sass...welcome sass-embedded, the speed increase is palpable!
A big thank you to the sass maintainers for this work ...and to Nathan for pushing for this change
Sources!
src folder maybe needed in published package #155
v2.16.0
I just updated esbuild and sass to the latest and greatest...
F as in faster!
Thank you
@mattlewis92
for the speed boost caching fs stats!Good call
... (truncated)
Commits
f0e58c9
Update package.json0151ef4
Merge pull request #179 from dungjk/feature/named_exports6dba8bd
style: update coding style to align with source code conventions6abbf37
feat: Add support namedExportse6519ee
Update package.json947f1ef
Merge pull request #177 from Valgrifer/patch-13856b4e
accept esbuild 0.21de2948c
Create tea.yaml12bf67f
Update package.json02fc7fb
Merge pull request #173 from kohlmannj/local-css- Additional commits viewable in compare view
Updates flexsearch
from 0.7.21 to 0.8.205
Release notes
Sourced from flexsearch's releases.
v0.8.2
- Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
- Resolver Async Processing Workflow (including Queuing)
- Extended Resolver Support: Worker, Persistent, Cache
- Extended Result Highlighting: Boundaries, Ellipsis, Alignment
- Improved TypeScript Typings
- 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 and LatinSimple => Normalize, these are universal charset presets for any languages
- Charset ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets
- Charset Charset.CjkDefault was renamed to Charset.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.31
... (truncated)
Changelog
Sourced from flexsearch's changelog.
Changelog
Current Version
- Calling
index.clear()
on a persistent Index does not stack to the task queue by default (which executes on commit), instead it will execute immediately and return a Promise- Added new tokenizer
tolerant
, inherits fromstrict
but also matches simple typos like missing letters and swapped letters- Improved Redis Cleanup
- Resolver: Support Result Highlighting
v0.8.2
- Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
- Resolver Async Processing Workflow (including Queuing)
- Extended Resolver Support: Worker, Persistent, Cache
- Extended Result Highlighting: Boundaries, Ellipsis, Alignment
- Improved TypeScript Typings
- 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)
... (truncated)
Commits
- See full diff in compare view
Updates globby
from 13.2.1 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
v14.0.2
- Fix types f600250
https://github.com/sindresorhus/globby/compare/v14.0.1...v14.0.2
v14.0.1
- Fix
expandDirectories.extension
option (#263) af5d139- Fix read permission error on ignore files search (#259) 3a28601
https://github.com/sindresorhus/globby/compare/v14.0.0...v14.0.1
v14.0.0
Breaking
- Require Node.js 18 2c06ae5
Improvements
- Add
convertPathToPattern()
method 3bd00a6https://github.com/sindresorhus/globby/compare/v13.2.2...v14.0.0
v13.2.2
- Update dependencies (
Pull Request Statistics
Commits:
1Files Changed:
2Additions:
+4314Deletions:
-2509
Package Dependencies
mdast-util-find-and-replace
npm
2.2.2 → 3.0.2
Major
Technical Details
ID: | 5868201 |
UUID: | 2777517600 |
Node ID: | PR_kwDOPkxIu86ljY4g |
Host: | GitHub |
Repository: | dat-rohit/dat-rohit.github.io |
Merge State: | Unknown |