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 32 updates #307

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the minor group in /docs with 32 updates:

Package From To
astro 4.12.3 4.13.0
@astrojs/check 0.8.3 0.9.1
@astrojs/compiler 2.10.0 2.10.1
@astrojs/language-server 2.12.8 2.13.1
@babel/parser 7.25.0 7.25.3
@babel/traverse 7.25.2 7.25.3
@expressive-code/core 0.35.3 0.35.4
@expressive-code/plugin-frames 0.35.3 0.35.4
@expressive-code/plugin-shiki 0.35.3 0.35.4
@expressive-code/plugin-text-markers 0.35.3 0.35.4
@rollup/rollup-android-arm-eabi 4.19.1 4.19.2
@rollup/rollup-android-arm64 4.19.1 4.19.2
@rollup/rollup-darwin-arm64 4.19.1 4.19.2
@rollup/rollup-darwin-x64 4.19.1 4.19.2
@rollup/rollup-linux-arm-gnueabihf 4.19.1 4.19.2
@rollup/rollup-linux-arm-musleabihf 4.19.1 4.19.2
@rollup/rollup-linux-arm64-gnu 4.19.1 4.19.2
@rollup/rollup-linux-arm64-musl 4.19.1 4.19.2
@rollup/rollup-linux-powerpc64le-gnu 4.19.1 4.19.2
@rollup/rollup-linux-riscv64-gnu 4.19.1 4.19.2
@rollup/rollup-linux-s390x-gnu 4.19.1 4.19.2
@rollup/rollup-linux-x64-gnu 4.19.1 4.19.2
@rollup/rollup-linux-x64-musl 4.19.1 4.19.2
@rollup/rollup-win32-arm64-msvc 4.19.1 4.19.2
@rollup/rollup-win32-ia32-msvc 4.19.1 4.19.2
@rollup/rollup-win32-x64-msvc 4.19.1 4.19.2
astro-expressive-code 0.35.3 0.35.4
caniuse-lite 1.0.30001645 1.0.30001646
expressive-code 0.35.3 0.35.4
rehype-expressive-code 0.35.3 0.35.4
rollup 4.19.1 4.19.2
vscode-languageserver-textdocument 1.0.11 1.0.12

Updates astro from 4.12.3 to 4.13.0

Release notes

Sourced from astro's releases.

astro@4.13.0

Minor Changes

  • #11507 a62345f Thanks @​ematipico! - Adds color-coding to the console output during the build to highlight slow pages.

    Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.

  • #11379 e5e2d3e Thanks @​alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.

    If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.

    This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:

    {
      "$schema": "../../../.astro/collections/authors.schema.json",
      "name": "Armand",
      "skills": ["Astro", "Starlight"]
    }
    

    Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:

    {
      "json.schemas": [
        {
          "fileMatch": ["/src/content/authors/**"],
          "url": "./.astro/collections/authors.schema.json"
        }
      ]
    }
    

    If you were previously using this feature, please remove the experimental flag from your Astro config:

    import { defineConfig } from 'astro'
    

    export default defineConfig({

    • experimental: {
    • contentCollectionJsonSchema: true
    • } })

If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so.

Please see the content collections guide for more about this feature.

... (truncated)

Changelog

Sourced from astro's changelog.

4.13.0

Minor Changes

  • #11507 a62345f Thanks @​ematipico! - Adds color-coding to the console output during the build to highlight slow pages.

    Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.

  • #11379 e5e2d3e Thanks @​alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.

    If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.

    This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:

    {
      "$schema": "../../../.astro/collections/authors.schema.json",
      "name": "Armand",
      "skills": ["Astro", "Starlight"]
    }
    

    Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:

    {
      "json.schemas": [
        {
          "fileMatch": ["/src/content/authors/**"],
          "url": "./.astro/collections/authors.schema.json"
        }
      ]
    }
    

    If you were previously using this feature, please remove the experimental flag from your Astro config:

    import { defineConfig } from 'astro'
    

    export default defineConfig({

    • experimental: {
    • contentCollectionJsonSchema: true
    • } })

If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so.

Please see the content collections guide for more about this feature.

... (truncated)

Commits


Updates @astrojs/check from 0.8.3 to 0.9.1

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

@​astrojs/check@​0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0
Changelog

Sourced from @​astrojs/check's changelog.

0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0
Commits


Updates @astrojs/compiler from 2.10.0 to 2.10.1

Release notes

Sourced from @​astrojs/compiler's releases.

@​astrojs/compiler@​2.10.1

Patch Changes

  • 21b7b95: Revert the transformation of top-level returns into throws in TSX as it was buggy in numerous situations
  • af471f5: Fixes positions for extracted tags being wrong when using IncludeStyles and IncludeScripts set to false
Commits


Updates @astrojs/language-server from 2.12.8 to 2.13.1

Release notes

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

@​astrojs/language-server@​2.13.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases

@​astrojs/language-server@​2.13.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • 3a60f00: Fixes code lens on Astro.glob not working as expected
Changelog

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

2.13.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases

2.13.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • 3a60f00: Fixes code lens on Astro.glob not working as expected
Commits


Updates @babel/parser from 7.25.0 to 7.25.3

Release notes

Sourced from @​babel/parser's releases.

v7.25.3 (2024-07-31)

:bug: Bug Fix

  • babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-traverse

:house: Internal

Committers: 2

v7.25.2 (2024-07-30)

:bug: Bug Fix

Committers: 2

v7.25.1 (2024-07-28)

:bug: Bug Fix

  • babel-plugin-transform-function-name
  • babel-plugin-transform-react-constant-elements
    • #16582 fix plugin-transform-react-constant-elements transform JSXFrament but not add JSXExpressionContainer (@​keiseiTi)
  • babel-traverse

:house: Internal

Committers: 4

Changelog

Sourced from @​babel/parser's changelog.

v7.25.3 (2024-07-31)

:bug: Bug Fix

  • babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-traverse

:house: Internal

v7.25.2 (2024-07-30)

:bug: Bug Fix

v7.25.1 (2024-07-28)

:bug: Bug Fix

  • babel-plugin-transform-function-name
  • babel-plugin-transform-react-constant-elements
    • #16582 fix plugin-transform-react-constant-elements transform JSXFrament but not add JSXExpressionContainer (@​keiseiTi)
  • babel-traverse

:house: Internal

Commits


Updates @babel/traverse from 7.25.2 to 7.25.3

Release notes

Sourced from @​babel/traverse's releases.

v7.25.3 (2024-07-31)

:bug: Bug Fix

  • babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-traverse

:house: Internal

Committers: 2

Changelog

Sourced from @​babel/traverse's changelog.

v7.25.3 (2024-07-31)

:bug: Bug Fix

  • babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-traverse

:house: Internal

Commits


Updates @expressive-code/core from 0.35.3 to 0.35.4

Release notes

Sourced from @​expressive-code/core's releases.

@​expressive-code/core@​0.35.4

Patch Changes

  • 876d24c: Improves performance of client script managing tabindex on code samples. Thanks @​delucis!
Changelog

Sourced from @​expressive-code/core's changelog.

0.35.4

Patch Changes

  • 876d24c: Improves performance of client script managing tabindex on code samples. Thanks @​delucis!
Commits


Updates @expressive-code/plugin-frames from 0.35.3 to 0.35.4

Release notes

Sourced from @​expressive-code/plugin-frames's releases.

@​expressive-code/plugin-frames@​0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Changelog

Sourced from @​expressive-code/plugin-frames's changelog.

0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Commits


Updates @expressive-code/plugin-shiki from 0.35.3 to 0.35.4

Release notes

Sourced from @​expressive-code/plugin-shiki's releases.

@​expressive-code/plugin-shiki@​0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Changelog

Sourced from @​expressive-code/plugin-shiki's changelog.

0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Commits


Updates @expressive-code/plugin-text-markers from 0.35.3 to 0.35.4

Release notes

Sourced from @​expressive-code/plugin-text-markers's releases.

@​expressive-code/plugin-text-markers@​0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Changelog

Sourced from @​expressive-code/plugin-text-markers's changelog.

0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Commits


Updates @rollup/rollup-android-arm-eabi from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-android-arm-eabi's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-android-arm-eabi's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-android-arm64 from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-android-arm64's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-android-arm64's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-darwin-arm64 from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-darwin-arm64's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

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

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-darwin-x64 from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-darwin-x64's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

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

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-arm-gnueabihf from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-arm-gnueabihf's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-arm-gnueabihf's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-arm-musleabihf from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-arm-musleabihf's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-arm-musleabihf's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-arm64-gnu from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-arm64-gnu's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-arm64-gnu's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-arm64-musl from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-arm64-musl's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-arm64-musl's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-powerpc64le-gnu from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-powerpc64le-gnu's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-powerpc64le-gnu's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-riscv64-gnu from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-riscv64-gnu's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-riscv64-gnu's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-s390x-gnu from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-s390x-gnu's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-s390x-gnu's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-x64-gnu from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-x64-gnu's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-x64-gnu's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-linux-x64-musl from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-linux-x64-musl's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Changelog

Sourced from @​rollup/rollup-linux-x64-musl's changelog.

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

Commits


Updates @rollup/rollup-win32-arm64-msvc from 4.19.1 to 4.19.2

Release notes

Sourced from @​rollup/rollup-win32-arm64-msvc's releases.

v4.19.2

4.19.2

2024-08-01

Bug Fixes

  • Avoid "cannot get value of null" error when using optional chaining with namespaces (#5597)

Pull Requests

... _Description has been truncated_