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 13 updates #329

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the minor group in /docs with 13 updates:

Package From To
astro 4.13.4 4.14.0
@astrojs/compiler 2.10.2 2.10.3
@astrojs/language-server 2.13.2 2.14.0
@shikijs/core 1.12.1 1.13.0
@types/unist 2.0.10 2.0.11
electron-to-chromium 1.5.7 1.5.8
estree-walker 3.0.3 2.0.2
request-light 0.7.0 0.5.8
shiki 1.12.1 1.13.0
vscode-jsonrpc 8.2.0 6.0.0
vscode-languageserver-protocol 3.17.5 3.16.0
vscode-languageserver-types 3.17.5 3.16.0
vscode-languageserver 9.0.1 7.0.0

Updates astro from 4.13.4 to 4.14.0

Release notes

Sourced from astro's releases.

astro@4.14.0

Minor Changes

  • #11657 a23c69d Thanks @​bluwy! - Deprecates the option for route-generating files to export a dynamic value for prerender. Only static values are now supported (e.g. export const prerender = true or = false). This allows for better treeshaking and bundling configuration in the future.

    Adds a new "astro:route:setup" hook to the Integrations API to allow you to dynamically set options for a route at build or request time through an integration, such as enabling on-demand server rendering.

    To migrate from a dynamic export to the new hook, update or remove any dynamic prerender exports from individual routing files:

    // src/pages/blog/[slug].astro
    - export const prerender = import.meta.env.PRERENDER
    

    Instead, create an integration with the "astro:route:setup" hook and update the route's prerender option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { loadEnv } from 'vite';
    

    export default defineConfig({ integrations: [setPrerender()], });

    function setPrerender() { const { PRERENDER } = loadEnv(process.env.NODE_ENV, process.cwd(), '');

    return { name: 'set-prerender', hooks: { 'astro:route:setup': ({ route }) => { if (route.component.endsWith('/blog/[slug].astro')) { route.prerender = PRERENDER; } }, }, }; }

  • #11360 a79a8b0 Thanks @​ascorbic! - Adds a new injectTypes() utility to the Integration API and refactors how type generation works

    Use injectTypes() in the astro:config:done hook to inject types into your user's project by adding a new a *.d.ts file.

    The filename property will be used to generate a file at /.astro/integrations/<normalized_integration_name>/<normalized_filename>.d.ts and must end with ".d.ts".

    The content property will create the body of the file, and must be valid TypeScript.

    Additionally, injectTypes() returns a URL to the normalized path so you can overwrite its content later on, or manipulate it in any way you want.

... (truncated)

Changelog

Sourced from astro's changelog.

4.14.0

Minor Changes

  • #11657 a23c69d Thanks @​bluwy! - Deprecates the option for route-generating files to export a dynamic value for prerender. Only static values are now supported (e.g. export const prerender = true or = false). This allows for better treeshaking and bundling configuration in the future.

    Adds a new "astro:route:setup" hook to the Integrations API to allow you to dynamically set options for a route at build or request time through an integration, such as enabling on-demand server rendering.

    To migrate from a dynamic export to the new hook, update or remove any dynamic prerender exports from individual routing files:

    // src/pages/blog/[slug].astro
    - export const prerender = import.meta.env.PRERENDER
    

    Instead, create an integration with the "astro:route:setup" hook and update the route's prerender option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { loadEnv } from 'vite';
    

    export default defineConfig({ integrations: [setPrerender()], });

    function setPrerender() { const { PRERENDER } = loadEnv(process.env.NODE_ENV, process.cwd(), '');

    return { name: 'set-prerender', hooks: { 'astro:route:setup': ({ route }) => { if (route.component.endsWith('/blog/[slug].astro')) { route.prerender = PRERENDER; } }, }, }; }

  • #11360 a79a8b0 Thanks @​ascorbic! - Adds a new injectTypes() utility to the Integration API and refactors how type generation works

    Use injectTypes() in the astro:config:done hook to inject types into your user's project by adding a new a *.d.ts file.

    The filename property will be used to generate a file at /.astro/integrations/<normalized_integration_name>/<normalized_filename>.d.ts and must end with ".d.ts".

    The content property will create the body of the file, and must be valid TypeScript.

... (truncated)

Commits


Updates @astrojs/compiler from 2.10.2 to 2.10.3

Release notes

Sourced from @​astrojs/compiler's releases.

@​astrojs/compiler@​2.10.3

Patch Changes

  • 5d0023d: Fixes sourcemapping for CRLF line endings wrongfully including the last character
  • f55a2af: Resolves an issue where the class:list directive was not correctly merging with the class attribute.
Commits
  • 71fb3ef [ci] release (#1042)
  • 5d0023d Fix line returns segments being one character too long on Windows (#1043)
  • f55a2af fix/class:list directive was not properly merging with the class attribute (#...
  • See full diff in compare view


Updates @astrojs/language-server from 2.13.2 to 2.14.0

Release notes

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

@​astrojs/language-server@​2.14.0

Minor Changes

  • d624646: Adds support for Content Collection Intellisense

Patch Changes

  • Updated dependencies [d624646]
    • @​astrojs/yaml2ts@​0.2.0

@​astrojs/language-server@​2.13.4

Patch Changes

  • e5732ff: Updates internal dependencies
Changelog

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

2.14.0

Minor Changes

  • d624646: Adds support for Content Collection Intellisense

Patch Changes

  • Updated dependencies [d624646]
    • @​astrojs/yaml2ts@​0.2.0

2.13.4

Patch Changes

  • e5732ff: Updates internal dependencies
Commits


Updates @shikijs/core from 1.12.1 to 1.13.0

Release notes

Sourced from @​shikijs/core's releases.

v1.13.0

   🚀 Features

    View changes on GitHub
Commits


Updates @types/unist from 2.0.10 to 2.0.11

Commits


Updates electron-to-chromium from 1.5.7 to 1.5.8

Commits


Updates estree-walker from 3.0.3 to 2.0.2

Changelog

Sourced from estree-walker's changelog.

3.0.3

  • Add dependencies on @types/estree (#34)
  • Internal refactoring (#34)

3.0.2

  • Add types to exports

3.0.1

  • Add package.json to exports

3.0.0

  • Remove CommonJS vestiges

2.0.2

  • Internal tidying up (change test runner, convert to JS)

2.0.1

  • Robustify this.remove(), pass current index to walker functions (#18)

2.0.0

  • Add an asyncWalk export (#20)
  • Internal rewrite

1.0.1

  • Relax node type to BaseNode (#17)

1.0.0

  • Don't cache child keys

0.9.0

  • Add this.remove() method

0.8.1

  • Fix pkg.files

0.8.0

  • Adopt estree types

... (truncated)

Commits


Updates request-light from 0.7.0 to 0.5.8

Commits


Updates shiki from 1.12.1 to 1.13.0

Release notes

Sourced from shiki's releases.

v1.13.0

   🚀 Features

    View changes on GitHub
Commits


Updates vscode-jsonrpc from 8.2.0 to 6.0.0

Commits
  • aaf339f Publisg jsonrpc@5.0.0
  • 3cf8f6e Publish jsonrpc@5.0.0-next.7
  • b6709ca Publish jsonrpc@5.0.0-next.5
  • 93ae2bf Add eslint ignore files
  • f78d892 Improve npm ignore rules
  • 1c8c19b Make tests consitent in terms of suite & test
  • 4c40cd3 Improve client test execution
  • 339401e Publish json-rpc@5.0.0-next.5
  • 3e9e7c4 Move to new compiler and node d.ts
  • 65014ef Update lock filescd
  • Additional commits viewable in compare view


Updates vscode-languageserver-protocol from 3.17.5 to 3.16.0

Commits
  • adda5a6 Remove proposed state from since tag
  • e75089c Publish protocol@3.16.0-next.13
  • fa2a4c4 Semantic tokens clarification
  • 6bc1bd9 Fixes #706: Can't disable full document semantic tokens request
  • 4408739 Fixes #704: Make FileOperationPattern more like document filters
  • 2c43702 Fix registration type overloads
  • ba8d804 Fixes #700: onLinkedEditingRange should not define never as error type
  • 53d1228 Move moniker feature out of proposed
  • 3690ab6 Publish protocol@3.16.0-next.12
  • 551a1d9 Fix typo
  • Additional commits viewable in compare view


Updates vscode-languageserver-types from 3.17.5 to 3.16.0

Commits
  • 894a6b5 Publish types@3.16.0
  • 3069b7b Remove another proposed state mentioning
  • adda5a6 Remove proposed state from since tag
  • 63aeb6e Publish types@3.16.0-next.7
  • 7b8c8a2 Fix WorkspaceChange dropping edits
  • 6cb0e30 Fixes #702: Convert Number.MAX_VALUE to uinteger.Max_VALUE when creating a po...
  • bc900f7 Published types@3.16.0-next.6
  • dd10bc1 Improve changeAnnotations comments
  • 70a5904 Return change annotation identifier from add operations.
  • b7bc713 Let workspace edit manage the change annotations
  • Additional commits viewable in compare view


Updates vscode-languageserver from 9.0.1 to 7.0.0

Commits
  • 22248ae Publish server@7.0.0
  • adda5a6 Remove proposed state from since tag
  • ddd7e0c Publish server@7.0.0-next.13
  • 2c43702 Fix registration type overloads
  • 53d1228 Move moniker feature out of proposed
  • 4aa5f16 Publish server@7.0.0-next.12
  • 542ad82 :lipstick:
  • 998933d Add {will,did}{Create,Rename,Delete}Files (#687)
  • f1bc8db Rename test name
  • 2aee441 Rename onTypeRename to linkedEditingRanges
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions