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
245 stars 15 forks source link

Bump the minor group in /docs with 26 updates #311

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the minor group in /docs with 26 updates:

Package From To
astro 4.13.0 4.13.1
@expressive-code/core 0.35.4 0.35.6
@expressive-code/plugin-frames 0.35.4 0.35.6
@expressive-code/plugin-shiki 0.35.4 0.35.6
@expressive-code/plugin-text-markers 0.35.4 0.35.6
@rollup/rollup-android-arm-eabi 4.19.2 4.20.0
@rollup/rollup-android-arm64 4.19.2 4.20.0
@rollup/rollup-darwin-arm64 4.19.2 4.20.0
@rollup/rollup-darwin-x64 4.19.2 4.20.0
@rollup/rollup-linux-arm-gnueabihf 4.19.2 4.20.0
@rollup/rollup-linux-arm-musleabihf 4.19.2 4.20.0
@rollup/rollup-linux-arm64-gnu 4.19.2 4.20.0
@rollup/rollup-linux-arm64-musl 4.19.2 4.20.0
@rollup/rollup-linux-powerpc64le-gnu 4.19.2 4.20.0
@rollup/rollup-linux-riscv64-gnu 4.19.2 4.20.0
@rollup/rollup-linux-s390x-gnu 4.19.2 4.20.0
@rollup/rollup-linux-x64-gnu 4.19.2 4.20.0
@rollup/rollup-linux-x64-musl 4.19.2 4.20.0
@rollup/rollup-win32-arm64-msvc 4.19.2 4.20.0
@rollup/rollup-win32-ia32-msvc 4.19.2 4.20.0
@rollup/rollup-win32-x64-msvc 4.19.2 4.20.0
astro-expressive-code 0.35.4 0.35.6
caniuse-lite 1.0.30001646 1.0.30001649
expressive-code 0.35.4 0.35.6
rehype-expressive-code 0.35.4 0.35.6
rollup 4.19.2 4.20.0

Updates astro from 4.13.0 to 4.13.1

Release notes

Sourced from astro's releases.

astro@4.13.1

Patch Changes

  • #11584 a65ffe3 Thanks @​bholmesdev! - Removes async local storage dependency from Astro Actions. This allows Actions to run in Cloudflare and Stackblitz without opt-in flags or other configuration.

    This also introduces a new convention for calling actions from server code. Instead of calling actions directly, you must wrap function calls with the new Astro.callAction() utility.

    callAction() is meant to trigger an action from server code. getActionResult() usage with form submissions remains unchanged.

    ---
    import { actions } from 'astro:actions';
    

    const result = await Astro.callAction(actions.searchPosts, { searchTerm: Astro.url.searchParams.get('search'), });

    { result.data && { /* render the results */ } }

    Migration

    If you call actions directly from server code, update function calls to use the Astro.callAction() wrapper for pages and context.callAction() for endpoints:

    ---
    import { actions } from 'astro:actions';
    
    • const result = await actions.searchPosts({ searchTerm: 'test' });
    • const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' });

    If you deploy with Cloudflare and added the nodejs_compat or nodejs_als flags for Actions, we recommend removing these:

    compatibility_flags = [
    - "nodejs_compat",
    - "nodejs_als"
    ]
    

    You can also remove node:async_hooks from the vite.ssr.external option in your astro.config file:

... (truncated)

Changelog

Sourced from astro's changelog.

4.13.1

Patch Changes

  • #11584 a65ffe3 Thanks @​bholmesdev! - Removes async local storage dependency from Astro Actions. This allows Actions to run in Cloudflare and Stackblitz without opt-in flags or other configuration.

    This also introduces a new convention for calling actions from server code. Instead of calling actions directly, you must wrap function calls with the new Astro.callAction() utility.

    callAction() is meant to trigger an action from server code. getActionResult() usage with form submissions remains unchanged.

    ---
    import { actions } from 'astro:actions';
    

    const result = await Astro.callAction(actions.searchPosts, { searchTerm: Astro.url.searchParams.get('search'), });

    { result.data && { /* render the results */ } }

    Migration

    If you call actions directly from server code, update function calls to use the Astro.callAction() wrapper for pages and context.callAction() for endpoints:

    ---
    import { actions } from 'astro:actions';
    
    • const result = await actions.searchPosts({ searchTerm: 'test' });
    • const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' });

    If you deploy with Cloudflare and added the nodejs_compat or nodejs_als flags for Actions, we recommend removing these:

    compatibility_flags = [
    - "nodejs_compat",
    - "nodejs_als"
    ]
    

    You can also remove node:async_hooks from the vite.ssr.external option in your astro.config file:

... (truncated)

Commits


Updates @expressive-code/core from 0.35.4 to 0.35.6

Release notes

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

@​expressive-code/core@​0.35.6

No release notes provided.

@​expressive-code/core@​0.35.5

No release notes provided.

Changelog

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

0.35.6

0.35.5

Commits


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

Release notes

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

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

Patch Changes

  • ffab5a5: Hides the copy code button in case JavaScript is disabled. Thank you @​imkunet!
    • @​expressive-code/core@​0.35.6

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

Patch Changes

  • @​expressive-code/core@​0.35.5
Changelog

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

0.35.6

Patch Changes

  • ffab5a5: Hides the copy code button in case JavaScript is disabled. Thank you @​imkunet!
    • @​expressive-code/core@​0.35.6

0.35.5

Patch Changes

  • @​expressive-code/core@​0.35.5
Commits


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

Release notes

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

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

Patch Changes

  • @​expressive-code/core@​0.35.6

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

Patch Changes

  • @​expressive-code/core@​0.35.5
Changelog

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

0.35.6

Patch Changes

  • @​expressive-code/core@​0.35.6

0.35.5

Patch Changes

  • @​expressive-code/core@​0.35.5
Commits


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

Release notes

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

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

Patch Changes

  • @​expressive-code/core@​0.35.6

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

Patch Changes

  • @​expressive-code/core@​0.35.5
Changelog

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

0.35.6

Patch Changes

  • @​expressive-code/core@​0.35.6

0.35.5

Patch Changes

  • @​expressive-code/core@​0.35.5
Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Commits


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

Release notes

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

v4.20.0

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests

Changelog

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

4.20.0

2024-08-03

Features

  • Allow plugins to specify the original file name when emitting assets (#5596)

Pull Requests