-
Notifications
You must be signed in to change notification settings - Fork 72
chore: remove --pre
from installation instructions (MERGE ON V1 RELEASE)
#780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Removes pre-release installation flags and references now that stable v1 packages are assumed available. Updates all installation snippets to point to stable packages and removes a dedicated pre-release installation section.
- Remove --pre / --prerelease=allow flags from Python install commands.
- Remove @next tags from npm/pnpm/yarn/bun commands.
- Delete the pre-release installation instruction block from versioning docs.
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
src/oss/versioning.mdx | Removes pre-release install instructions section. |
src/oss/langgraph/workflows-agents.mdx | Updates JS install commands to stable package names. |
src/oss/langgraph/overview.mdx | Replaces pre-release flags/tags with stable install commands. |
src/oss/langgraph/install.mdx | Updates both Python and JS install instructions to stable versions. |
src/oss/langchain/quickstart.mdx | Switches quickstart install commands from pre-release to stable. |
src/oss/langchain/overview.mdx | Updates core LangChain install instructions to stable packages. |
src/oss/langchain/install.mdx | Updates base and integration install instructions to stable packages. |
Preview ID generated: preview-mdrxyr-1759869178-bf1fa24 |
e6c6da3
to
27287b3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
- **Alpha** (e.g., 1.0.0a1): Early preview, significant changes expected | ||
- **Beta** (e.g., 1.0.0b1): Feature-complete, minor changes possible | ||
- **Release Candidate** (e.g., 1.0.0rc1): Final testing before stable release | ||
|
Copilot
AI
Oct 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The previously present 'To install pre-release versions' section (with pip/npm examples) was removed entirely, leaving the alpha/beta/RC descriptions without actionable guidance. Recommend restoring a concise note (e.g., 'Use pip install --pre ' / 'npm install @next') or linking to a central section so users can still test upcoming releases.
### How to install pre-release versions | |
To test alpha, beta, or release candidate versions, use the following commands: | |
```bash | |
# Python (pip) | |
pip install --pre langchain | |
pip install --pre langgraph | |
# Node.js (npm) | |
npm install langchain@next @langchain/core@next | |
npm install @langchain/langgraph@next |
Copilot uses AI. Check for mistakes.
Preview ID generated: preview-mdrxyr-1759871580-90d5471 |
No description provided.