Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 30, 2025

Bumps langchain-text-splitters from 0.3.11 to 1.0.0.

Release notes

Sourced from langchain-text-splitters's releases.

langchain-text-splitters==1.0.0

Changes since langchain-text-splitters==0.3.11

release(text-splitters): 1.0.0 (#33565) style: more work for refs (#33508) docs: update package READMEs (#33488) chore(text-splitters): remove arg types from docstrings (#33406) style: .. code-block:: admonition translations (#33400) style: address Sphinx double-backtick snippet syntax (#33389) style: remove more Optional syntax (#33371) style: monorepo pass for refs (#33359) chore: enrich pyproject.toml files with links to new references, others (#33343) chore: clean up pyproject.toml files, use core a7 (#33334) chore(text-splitters): cleanup ruff config (#33247) chore(infra): pdm -> hatchling (#33289) docs: v1 docs updates (#33173) release(text-splitters): 1.0.0a1 (#33214) refactor(text-splitters): drop python 3.9 (#33212) release: v1.0.0 (#32567) docs: more standardization (#33124) chore: bump ruff version to 0.13 (#33043) test(text-splitters): capture beta warnings (#33113) test(text-splitters): resolve pytest marker warning (#33112) chore: update pyproject.toml files, remove codespell (#33028) chore: bump mypy version to 1.18 (#32914) fix(text-splitters): add validation to prevent infinite loop and prevent empty token splitter (#32205) revert: "chore: remove ruff target-version" (#32895) chore: remove ruff target-version (#32880) chore(docs): update package READMEs (#32869) chore(text-splitters): enable ruff docstring-code-format (#32854) chore(text-splitters): select ALL rules with exclusions (#32325)

langchain-text-splitters==1.0.0a1

Initial release

release(text-splitters): 1.0.0a1 (#33214) refactor(text-splitters): drop python 3.9 (#33212) release: v1.0.0 (#32567) docs: more standardization (#33124) chore: bump ruff version to 0.13 (#33043) test(text-splitters): capture beta warnings (#33113) test(text-splitters): resolve pytest marker warning (#33112) chore: update pyproject.toml files, remove codespell (#33028) chore: bump mypy version to 1.18 (#32914) fix(text-splitters): add validation to prevent infinite loop and prevent empty token splitter (#32205) revert: "chore: remove ruff target-version" (#32895) chore: remove ruff target-version (#32880) chore(docs): update package READMEs (#32869) chore(text-splitters): enable ruff docstring-code-format (#32854) chore(text-splitters): select ALL rules with exclusions (#32325)

... (truncated)

Commits

Dependabot compatibility score

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [langchain-text-splitters](https://github.com/langchain-ai/langchain) from 0.3.11 to 1.0.0.
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-text-splitters==0.3.11...langchain-text-splitters==1.0.0)

---
updated-dependencies:
- dependency-name: langchain-text-splitters
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added backend Related to the flask backend and general Python stuff dependencies Pull requests that update a dependency file labels Nov 30, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 30, 2025 19:07
@dependabot dependabot bot added backend Related to the flask backend and general Python stuff dependencies Pull requests that update a dependency file labels Nov 30, 2025
@github-actions
Copy link
Contributor

The modification in the backend-agent/pyproject.toml involves changing a version constraint for one of the dependencies. This adjustment suggests an increased flexibility regarding future updates for the specified package, allowing for more recent versions to be utilized, while ensuring compatibility and stability with the existing system.

Walkthrough

  • Refactor: Updated the langchain-text-splitters dependency version from <0.4.0 to <1.1.0. This change allows for compatibility with newer versions, enhancing maintainability and potentially benefiting from latest improvements and bug fixes in future versions.

Model: gpt-4o-2024-08-06 | Prompt Tokens: 339 | Completion Tokens: 120

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's a collaborative code review powered by AI assistance. These insights offer suggestions and patterns to consider, though your expertise and judgment remain essential. Use whatever recommendations align with your goals and project needs. You're in control of all decisions—AI simply provides additional perspective to support your development process.


Always critique what AI says. Do not let AI replace YOUR I.
Model: claude-sonnet-4-20250514 | Prompt Tokens: 893 | Completion Tokens: 266

'langchain-community>=0.3.0,<0.4.0',
'langchain-core>=0.3.0,<0.4.0',
'langchain-text-splitters>=0.3.0,<0.4.0',
'langchain-text-splitters>=0.3.0,<1.1.0',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version range change for 'langchain-text-splitters' appears inconsistent with other langchain dependencies. While other langchain packages are constrained to <0.4.0, this package allows versions up to <1.1.0. This could lead to dependency conflicts and compatibility issues.

Consider keeping the version constraint consistent with other langchain packages:

'langchain-text-splitters>=0.3.0,<0.4.0',

If a newer version is specifically required, ensure thorough testing with the mixed version ranges and document the reasoning for this deviation.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2025

Dependabot can't resolve your Python dependency files. Because of this, Dependabot cannot update this pull request.

@marcorosa
Copy link
Member

[DO NOT MERGE] - langchain v1 is not yet compatible with sap-ai-sdk-gen

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2025

Dependabot can't resolve your Python dependency files. Because of this, Dependabot cannot update this pull request.

4 similar comments
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2025

Dependabot can't resolve your Python dependency files. Because of this, Dependabot cannot update this pull request.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2025

Dependabot can't resolve your Python dependency files. Because of this, Dependabot cannot update this pull request.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2025

Dependabot can't resolve your Python dependency files. Because of this, Dependabot cannot update this pull request.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 15, 2025

Dependabot can't resolve your Python dependency files. Because of this, Dependabot cannot update this pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backend Related to the flask backend and general Python stuff dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants