LangChain releases
The LangChain ecosystem is composed of different component packages (e.g., @langchain/core
, langchain
, @langchain/community
, @langchain/langgraph
, partner packages etc.)
Versioningβ
langchain
and @langchain/core
β
langchain
and @langchain/core
follow semantic versioning in the format of 0.Y.Z. The packages are under rapid development, and so are currently versioning the packages with a major version of 0.
Minor version increases will occur for:
- Breaking changes for any public interfaces marked as
beta
.
Patch version increases will occur for:
- Bug fixes
- New features
- Any changes to private interfaces
- Any changes to
beta
features
When upgrading between minor versions, users should review the list of breaking changes and deprecations.
From time to time, we will version packages as release candidates. These are versions that are intended to be released as stable versions, but we want to get feedback from the community before doing so.
Release candidates will be versioned as 0.Y.Z-rc.N. For example, 0.2.0-rc.1
. If no issues are found, the release candidate will be released as a stable version with the same version number.
\If issues are found, we will release a new release candidate with an incremented N
value (e.g., 0.2.0-rc.2
).
Other packages in the langchain ecosystemβ
Other packages in the ecosystem (including user packages) can follow a different versioning scheme, but are generally expected to pin to specific minor versions of langchain
and @langchain/core
.
Release cadenceβ
We expect to space out minor releases (e.g., from 0.2.0 to 0.3.0) of langchain
and @langchain/core
by at least 2-3 months, as such releases may contain breaking changes.
Patch versions are released frequently as they contain bug fixes and new features.
API stabilityβ
The development of LLM applications is a rapidly evolving field, and we are constantly learning from our users and the community. As such, we expect that the APIs in langchain
and @langchain/core
will continue to evolve to better serve the needs of our users.
Even though both langchain
and @langchain/core
are currently in a pre-1.0 state, we are committed to maintaining API stability in these packages.
- Breaking changes to the public API will result in a minor version bump (the second digit)
- Any bug fixes or new features will result in a patch version bump (the third digit)
We will generally try to avoid making unnecessary changes, and will provide a deprecation policy for features that are being removed.
Stability of other packagesβ
The stability of other packages in the LangChain ecosystem may vary:
@langchain/community
is a community maintained package that contains 3rd party integrations. While we do our best to review and test changes in@langchain/community
,@langchain/community
is expected to experience more breaking changes thanlangchain
and@langchain/core
as it contains many community contributions.- Partner packages may follow different stability and versioning policies, and users should refer to the documentation of those packages for more information; however, in general these packages are expected to be stable.
What is a "API stability"?β
API stability means:
- All the public APIs (everything in this documentation) will not be moved or renamed without providing backwards-compatible aliases.
- If new features are added to these APIs β which is quite possible β they will not break or change the meaning of existing methods. In other words, "stable" does not (necessarily) mean "complete."
- If, for some reason, an API declared stable must be removed or replaced, it will be declared deprecated but will remain in the API for at least two minor releases. Warnings will be issued when the deprecated method is called.
APIs marked as internalβ
Certain APIs are explicitly marked as βinternalβ in a couple of ways:
- Some documentation refers to internals and mentions them as such. If the documentation says that something is internal, it may change.
- Functions, methods, and other objects prefixed by a leading underscore (
_
). If any method starts with a single_
, itβs an internal API.- Exception: Certain methods are prefixed with
_
, but do not contain an implementation. These methods are meant to be overridden by sub-classes that provide the implementation. Such methods are generally part of the Public API of LangChain.
- Exception: Certain methods are prefixed with
Deprecation policyβ
We will generally avoid deprecating features until a better alternative is available.
When a feature is deprecated, it will continue to work in the current and next minor version of langchain
and @langchain/core
. After that, the feature will be removed.
Since we're expecting to space out minor releases by at least 2-3 months, this means that a feature can be removed within 2-6 months of being deprecated.
In some situations, we may allow the feature to remain in the code base for longer periods of time, if it's not causing issues in the packages, to reduce the burden on users.