benbrandt / text-splitter

Split text into semantic chunks, up to a desired chunk size. Supports calculating length by characters and tokens, and is callable from Rust and Python.
MIT License
270 stars 16 forks source link

Bump the minor group in /docs with 41 updates #332

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the minor group in /docs with 41 updates:

Package From To
@astrojs/starlight 0.25.5 0.26.1
sharp 0.33.4 0.33.5
@astrojs/check 0.9.2 0.9.3
@astrojs/language-server 2.14.0 2.14.1
@astrojs/yaml2ts 0.2.0 0.2.1
@img/sharp-darwin-arm64 0.33.4 0.33.5
@img/sharp-darwin-x64 0.33.4 0.33.5
@img/sharp-libvips-darwin-arm64 1.0.2 1.0.4
@img/sharp-libvips-darwin-x64 1.0.2 1.0.4
@img/sharp-libvips-linux-arm64 1.0.2 1.0.4
@img/sharp-libvips-linux-arm 1.0.2 1.0.5
@img/sharp-libvips-linux-s390x 1.0.2 1.0.4
@img/sharp-libvips-linux-x64 1.0.2 1.0.4
@img/sharp-libvips-linuxmusl-arm64 1.0.2 1.0.4
@img/sharp-libvips-linuxmusl-x64 1.0.2 1.0.4
@img/sharp-linux-arm64 0.33.4 0.33.5
@img/sharp-linux-arm 0.33.4 0.33.5
@img/sharp-linux-s390x 0.33.4 0.33.5
@img/sharp-linux-x64 0.33.4 0.33.5
@img/sharp-linuxmusl-arm64 0.33.4 0.33.5
@img/sharp-linuxmusl-x64 0.33.4 0.33.5
@img/sharp-wasm32 0.33.4 0.33.5
@img/sharp-win32-ia32 0.33.4 0.33.5
@img/sharp-win32-x64 0.33.4 0.33.5
@volar/kit 2.4.0-alpha.18 2.4.0
@volar/language-core 2.4.0-alpha.18 2.4.0
@volar/language-server 2.4.0-alpha.18 2.4.0
@volar/language-service 2.4.0-alpha.18 2.4.0
@volar/source-map 2.4.0-alpha.18 2.4.0
@volar/typescript 2.4.0-alpha.18 2.4.0
electron-to-chromium 1.5.9 1.5.11
mdast-util-gfm-autolink-literal 2.0.0 2.0.1
rollup 4.20.0 4.21.0
shiki 1.13.0 1.14.1
volar-service-css 0.0.59 0.0.61
volar-service-emmet 0.0.59 0.0.61
volar-service-html 0.0.59 0.0.61
volar-service-prettier 0.0.59 0.0.61
volar-service-typescript-twoslash-queries 0.0.59 0.0.61
volar-service-typescript 0.0.59 0.0.61
volar-service-yaml 0.0.59 0.0.61

Updates @astrojs/starlight from 0.25.5 to 0.26.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.26.1

Patch Changes

  • #2219 74d4716 Thanks @​HiDeoo! - Fixes a sidebar persistence issue when navigating between pages with different sidebar content.

@​astrojs/starlight@​0.26.0

Minor Changes

  • #1784 68f56a7 Thanks @​HiDeoo! - Adds <LinkButton> component for visually distinct and emphasized call to action links

  • #2150 9368494 Thanks @​delucis! - Adds state persistence across page navigations to the main site sidebar

  • #2087 caa84ea Thanks @​HiDeoo! - Adds persistence to synced <Tabs> so that a user's choices are reflected across page navigations.

  • #2051 ec3b579 Thanks @​HiDeoo! - Adds a guideline to the last step of the <Steps> component.

    If you want to preserve the previous behaviour and hide the guideline on final steps, you can add the following custom CSS to your site:

    /* Hide the guideline for the final step in <Steps> lists. */
    .sl-steps > li:last-of-type::after {
      background: transparent;
    }
    
  • #1784 68f56a7 Thanks @​HiDeoo! - Changes the hero component action button default variant from minimal to primary.

    ⚠️ BREAKING CHANGE: If you want to preserve the previous appearance, hero component action buttons previously declared without a variant will need to be updated to include the variant property with the value minimal.

    hero:
      actions:
        - text: View on GitHub
          link: https://github.com/astronaut/my-project
          icon: external
    +     variant: minimal
    
  • #2168 e044fee Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: Updates the <StarlightPage /> component sidebar prop to accept an array of SidebarItems like the main Starlight sidebar configuration in astro.config.mjs.

    This change simplifies the definition of sidebar items in the <StarlightPage /> component, allows for shared sidebar configuration between the global sidebar option and <StarlightPage /> component, and also enables the usage of autogenerated sidebar groups with the <StarlightPage /> component. If you are using the <StarlightPage /> component with a custom sidebar configuration, you will need to update the sidebar prop to an array of SidebarItem objects.

    For example, the following custom page with a custom sidebar configuration defines a “Resources” group with a “New” badge, a link to the “Showcase” page which is part of the docs content collection, and a link to the Starlight website:

    ---
    // src/pages/custom-page/example.astro
    ---
    

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.26.1

Patch Changes

  • #2219 74d4716 Thanks @​HiDeoo! - Fixes a sidebar persistence issue when navigating between pages with different sidebar content.

0.26.0

Minor Changes

  • #1784 68f56a7 Thanks @​HiDeoo! - Adds <LinkButton> component for visually distinct and emphasized call to action links

  • #2150 9368494 Thanks @​delucis! - Adds state persistence across page navigations to the main site sidebar

  • #2087 caa84ea Thanks @​HiDeoo! - Adds persistence to synced <Tabs> so that a user's choices are reflected across page navigations.

  • #2051 ec3b579 Thanks @​HiDeoo! - Adds a guideline to the last step of the <Steps> component.

    If you want to preserve the previous behaviour and hide the guideline on final steps, you can add the following custom CSS to your site:

    /* Hide the guideline for the final step in <Steps> lists. */
    .sl-steps > li:last-of-type::after {
      background: transparent;
    }
    
  • #1784 68f56a7 Thanks @​HiDeoo! - Changes the hero component action button default variant from minimal to primary.

    ⚠️ BREAKING CHANGE: If you want to preserve the previous appearance, hero component action buttons previously declared without a variant will need to be updated to include the variant property with the value minimal.

    hero:
      actions:
        - text: View on GitHub
          link: https://github.com/astronaut/my-project
          icon: external
    +     variant: minimal
    
  • #2168 e044fee Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: Updates the <StarlightPage /> component sidebar prop to accept an array of SidebarItems like the main Starlight sidebar configuration in astro.config.mjs.

    This change simplifies the definition of sidebar items in the <StarlightPage /> component, allows for shared sidebar configuration between the global sidebar option and <StarlightPage /> component, and also enables the usage of autogenerated sidebar groups with the <StarlightPage /> component. If you are using the <StarlightPage /> component with a custom sidebar configuration, you will need to update the sidebar prop to an array of SidebarItem objects.

    For example, the following custom page with a custom sidebar configuration defines a “Resources” group with a “New” badge, a link to the “Showcase” page which is part of the docs content collection, and a link to the Starlight website:

    ---
    // src/pages/custom-page/example.astro
    

... (truncated)

Commits


Updates sharp from 0.33.4 to 0.33.5

Changelog

Sourced from sharp's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits
  • fc32e0b Release v0.33.5
  • 0546e48 Docs: changelog entry for #4191
  • ab65b7a TypeScript: chromaSubsampling can be undefined (#4191)
  • 2474bd4 Prerelease v0.33.5-rc.1
  • ff2e689 Remove yarn v1 specifics from help text
  • 6327f13 CI: Add yarn v1 to packaging tests
  • f1e69a2 Prerelease v0.33.5-rc.0
  • 3c14dbb Minimise use of engines property to improve yarn v1 support
  • 82cebc3 Upgrade to libvips v8.15.3 for Linux ARMv6
  • ad36fa0 Ensure emnapiInit function is exported
  • Additional commits viewable in compare view


Updates @astrojs/check from 0.9.2 to 0.9.3

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.3

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/language-server@​2.14.1
Changelog

Sourced from @​astrojs/check's changelog.

0.9.3

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/language-server@​2.14.1
Commits


Updates @astrojs/language-server from 2.14.0 to 2.14.1

Release notes

Sourced from @​astrojs/language-server's releases.

@​astrojs/language-server@​2.14.1

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/yaml2ts@​0.2.1
Changelog

Sourced from @​astrojs/language-server's changelog.

2.14.1

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/yaml2ts@​0.2.1
Commits


Updates @astrojs/yaml2ts from 0.2.0 to 0.2.1

Updates @img/sharp-darwin-arm64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-darwin-arm64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-darwin-x64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-darwin-x64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-libvips-darwin-arm64 from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-libvips-darwin-x64 from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-libvips-linux-arm64 from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-libvips-linux-arm from 1.0.2 to 1.0.5

Commits


Updates @img/sharp-libvips-linux-s390x from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-libvips-linux-x64 from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-libvips-linuxmusl-arm64 from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-libvips-linuxmusl-x64 from 1.0.2 to 1.0.4

Commits


Updates @img/sharp-linux-arm64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-linux-arm64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-linux-arm from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-linux-arm's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits
  • fc32e0b Release v0.33.5
  • 2474bd4 Prerelease v0.33.5-rc.1
  • f1e69a2 Prerelease v0.33.5-rc.0
  • 3c14dbb Minimise use of engines property to improve yarn v1 support
  • 82cebc3 Upgrade to libvips v8.15.3 for Linux ARMv6
  • de42667 Upgrade to libvips v8.15.3
  • See full diff in compare view


Updates @img/sharp-linux-s390x from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-linux-s390x's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-linux-x64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-linux-x64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-linuxmusl-arm64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-linuxmusl-arm64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-linuxmusl-x64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-linuxmusl-x64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-wasm32 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-wasm32's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-win32-ia32 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-win32-ia32's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @img/sharp-win32-x64 from 0.33.4 to 0.33.5

Changelog

Sourced from @​img/sharp-win32-x64's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits


Updates @volar/kit from 2.4.0-alpha.18 to 2.4.0

Commits


Updates @volar/language-core from 2.4.0-alpha.18 to 2.4.0

Commits
  • 7e98885 v2.4.0
  • d14fb11 feat(language-service): add support for inline values
  • 947363d feat(language-service): add supp... _Description has been truncated_