Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: langchain-ai/langchainjs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.3.0
Choose a base ref
...
head repository: langchain-ai/langchainjs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.3.1
Choose a head ref

Commits on Sep 13, 2024

  1. chore(build): Update lock (#6770)

    jacoblee93 authored Sep 13, 2024

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    thoughtpolice Austin Seipp
    Copy the full SHA
    a2e23b6 View commit details
  2. chore(cohere): Release 0.3.0 (#6771)

    jacoblee93 authored Sep 13, 2024
    Copy the full SHA
    72f5142 View commit details
  3. Copy the full SHA
    fceaad3 View commit details

Commits on Sep 14, 2024

  1. Copy the full SHA
    5a7b1c0 View commit details
  2. Copy the full SHA
    7fefac6 View commit details
  3. Copy the full SHA
    8e9ac50 View commit details
  4. Copy the full SHA
    fd0c2ee View commit details
  5. Copy the full SHA
    f761f9a View commit details
  6. Copy the full SHA
    b61666d View commit details
  7. Copy the full SHA
    1128e8e View commit details
  8. Copy the full SHA
    4febe8d View commit details
  9. Copy the full SHA
    8cb2e7f View commit details
  10. Copy the full SHA
    9cf60c3 View commit details
  11. Copy the full SHA
    32ce664 View commit details
  12. Copy the full SHA
    1a7e362 View commit details
  13. Copy the full SHA
    df05fcb View commit details
  14. Copy the full SHA
    33f2b14 View commit details
  15. Copy the full SHA
    98a713e View commit details

Commits on Sep 15, 2024

  1. Copy the full SHA
    1f30bc8 View commit details
  2. Copy the full SHA
    7443104 View commit details
  3. Release 0.3.1

    jacoblee93 committed Sep 15, 2024
    Copy the full SHA
    e5ea90d View commit details
  4. Copy the full SHA
    197f0ee View commit details
Showing with 117 additions and 1,035 deletions.
  1. +6 βˆ’6 environment_tests/scripts/docker-ci-entrypoint.sh
  2. +2 βˆ’2 langchain-core/package.json
  3. +10 βˆ’10 langchain/package.json
  4. +1 βˆ’1 libs/langchain-aws/package.json
  5. +1 βˆ’1 libs/langchain-azure-cosmosdb/package.json
  6. +1 βˆ’1 libs/langchain-azure-dynamic-sessions/package.json
  7. +2 βˆ’2 libs/langchain-baidu-qianfan/package.json
  8. +0 βˆ’4 libs/langchain-cloudflare/.gitignore
  9. +1 βˆ’2 libs/langchain-cloudflare/langchain.config.js
  10. +3 βˆ’23 libs/langchain-cloudflare/package.json
  11. +0 βˆ’212 libs/langchain-cloudflare/src/langgraph/checkpointers.ts
  12. +1 βˆ’1 libs/langchain-cohere/package.json
  13. +0 βˆ’4 libs/langchain-community/.gitignore
  14. +1 βˆ’3 libs/langchain-community/langchain.config.js
  15. +2 βˆ’20 libs/langchain-community/package.json
  16. +0 βˆ’104 libs/langchain-community/src/langgraph/checkpointers/tests/checkpointer.int.test.ts
  17. +0 βˆ’164 libs/langchain-community/src/langgraph/checkpointers/vercel_kv.ts
  18. +0 βˆ’1 libs/langchain-community/src/load/import_constants.ts
  19. +1 βˆ’1 libs/langchain-exa/package.json
  20. +1 βˆ’1 libs/langchain-google-common/package.json
  21. +2 βˆ’2 libs/langchain-google-gauth/package.json
  22. +1 βˆ’1 libs/langchain-google-genai/package.json
  23. +3 βˆ’3 libs/langchain-google-vertexai-web/package.json
  24. +3 βˆ’3 libs/langchain-google-vertexai/package.json
  25. +2 βˆ’2 libs/langchain-google-webauth/package.json
  26. +2 βˆ’2 libs/langchain-groq/package.json
  27. +1 βˆ’1 libs/langchain-mixedbread-ai/package.json
  28. +1 βˆ’1 libs/langchain-mongodb/package.json
  29. +1 βˆ’1 libs/langchain-nomic/package.json
  30. +1 βˆ’1 libs/langchain-ollama/package.json
  31. +1 βˆ’1 libs/langchain-pinecone/package.json
  32. +1 βˆ’1 libs/langchain-qdrant/package.json
  33. +1 βˆ’1 libs/langchain-redis/package.json
  34. +1 βˆ’1 libs/langchain-weaviate/package.json
  35. +1 βˆ’1 libs/langchain-yandex/package.json
  36. +0 βˆ’1 package.json
  37. +62 βˆ’449 yarn.lock
12 changes: 6 additions & 6 deletions environment_tests/scripts/docker-ci-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -17,12 +17,12 @@ mkdir -p ./libs/langchain-community/
mkdir -p ./libs/langchain-cohere/
mkdir -p ./libs/langchain/

cp -r ../langchain-core ./libs/
cp -r ../langchain-openai ./libs/
cp -r ../langchain-anthropic ./libs/
cp -r ../langchain-community ./libs/
cp -r ../langchain-cohere ./libs/
cp -r ../langchain ./libs/
cp -r ../langchain-core/!(node_modules) ./libs/langchain-core
cp -r ../langchain-openai/!(node_modules) ./libs/langchain-openai
cp -r ../langchain-anthropic/!(node_modules) ./libs/langchain-anthropic
cp -r ../langchain-community/!(node_modules) ./libs/langchain-community
cp -r ../langchain-cohere/!(node_modules) ./libs/langchain-cohere
cp -r ../langchain/!(node_modules) ./libs/langchain

# copy cache
mkdir -p ./.yarn
4 changes: 2 additions & 2 deletions langchain-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/core",
"version": "0.3.0",
"version": "0.3.1",
"description": "Core LangChain.js abstractions and schemas",
"type": "module",
"engines": {
@@ -37,7 +37,7 @@
"camelcase": "6",
"decamelize": "1.2.0",
"js-tiktoken": "^1.0.12",
"langsmith": "^0.1.43",
"langsmith": "^0.1.56-rc.1",
"mustache": "^4.2.0",
"p-queue": "^6.6.2",
"p-retry": "4",
20 changes: 10 additions & 10 deletions langchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "langchain",
"version": "0.3.0",
"version": "0.3.1",
"description": "Typescript bindings for langchain",
"type": "module",
"engines": {
@@ -411,15 +411,15 @@
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@jest/globals": "^29.5.0",
"@langchain/anthropic": "^0.2.8",
"@langchain/aws": "^0.0.5",
"@langchain/cohere": "^0.2.1",
"@langchain/anthropic": "*",
"@langchain/aws": "*",
"@langchain/cohere": "*",
"@langchain/core": "workspace:*",
"@langchain/google-genai": "^0.0.26",
"@langchain/google-vertexai": "~0.0",
"@langchain/groq": "^0.0.15",
"@langchain/mistralai": "^0.0.26",
"@langchain/ollama": "^0.0.2",
"@langchain/google-genai": "*",
"@langchain/google-vertexai": "*",
"@langchain/groq": "*",
"@langchain/mistralai": "*",
"@langchain/ollama": "*",
"@langchain/scripts": ">=0.1.0 <0.2.0",
"@swc/core": "^1.3.90",
"@swc/jest": "^0.2.29",
@@ -524,7 +524,7 @@
"js-tiktoken": "^1.0.12",
"js-yaml": "^4.1.0",
"jsonpointer": "^5.0.1",
"langsmith": "~0.1.40",
"langsmith": "^0.1.56-rc.1",
"openapi-types": "^12.1.3",
"p-retry": "4",
"uuid": "^10.0.0",
2 changes: 1 addition & 1 deletion libs/langchain-aws/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/aws",
"version": "0.0.10",
"version": "0.1.0",
"description": "LangChain AWS integration",
"type": "module",
"engines": {
2 changes: 1 addition & 1 deletion libs/langchain-azure-cosmosdb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/azure-cosmosdb",
"version": "0.1.0",
"version": "0.2.0",
"description": "Azure CosmosDB integration for LangChain.js",
"type": "module",
"engines": {
2 changes: 1 addition & 1 deletion libs/langchain-azure-dynamic-sessions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/azure-dynamic-sessions",
"version": "0.1.0",
"version": "0.2.0",
"description": "Sample integration for LangChain.js",
"type": "module",
"engines": {
4 changes: 2 additions & 2 deletions libs/langchain-baidu-qianfan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/baidu-qianfan",
"version": "0.0.4",
"version": "0.1.0",
"description": "Baidu Qianfan integration for LangChain.js",
"type": "module",
"engines": {
@@ -32,7 +32,7 @@
"license": "MIT",
"dependencies": {
"@baiducloud/qianfan": "^0.1.6",
"@langchain/openai": "~0.1.0",
"@langchain/openai": "~0.3.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.5"
},
4 changes: 0 additions & 4 deletions libs/langchain-cloudflare/.gitignore
Original file line number Diff line number Diff line change
@@ -2,10 +2,6 @@ index.cjs
index.js
index.d.ts
index.d.cts
langgraph/checkpointers.cjs
langgraph/checkpointers.js
langgraph/checkpointers.d.ts
langgraph/checkpointers.d.cts
node_modules
dist
.yarn
3 changes: 1 addition & 2 deletions libs/langchain-cloudflare/langchain.config.js
Original file line number Diff line number Diff line change
@@ -13,8 +13,7 @@ function abs(relativePath) {
export const config = {
internals: [/node\:/, /@langchain\/core\//, /@langchain\/langgraph\/web/],
entrypoints: {
index: "index",
"langgraph/checkpointers": "langgraph/checkpointers",
index: "index"
},
tsConfigPath: resolve("./tsconfig.json"),
cjsSource: "./dist-cjs",
26 changes: 3 additions & 23 deletions libs/langchain-cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/cloudflare",
"version": "0.0.7",
"version": "0.1.0",
"description": "Cloudflare integration for LangChain.js",
"type": "module",
"engines": {
@@ -42,7 +42,6 @@
"@cloudflare/workers-types": "^4.20240909.0",
"@jest/globals": "^29.5.0",
"@langchain/core": "workspace:*",
"@langchain/langgraph": "~0.0.31",
"@langchain/scripts": ">=0.1.0 <0.2.0",
"@langchain/standard-tests": "0.0.0",
"@swc/core": "^1.3.90",
@@ -68,13 +67,7 @@
"typescript": "<5.2.0"
},
"peerDependencies": {
"@langchain/core": ">=0.2.21 <0.4.0",
"@langchain/langgraph": "*"
},
"peerDependenciesMeta": {
"@langchain/langgraph": {
"optional": true
}
"@langchain/core": ">=0.2.21 <0.4.0"
},
"publishConfig": {
"access": "public"
@@ -89,26 +82,13 @@
"import": "./index.js",
"require": "./index.cjs"
},
"./langgraph/checkpointers": {
"types": {
"import": "./langgraph/checkpointers.d.ts",
"require": "./langgraph/checkpointers.d.cts",
"default": "./langgraph/checkpointers.d.ts"
},
"import": "./langgraph/checkpointers.js",
"require": "./langgraph/checkpointers.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"index.cjs",
"index.js",
"index.d.ts",
"index.d.cts",
"langgraph/checkpointers.cjs",
"langgraph/checkpointers.js",
"langgraph/checkpointers.d.ts",
"langgraph/checkpointers.d.cts"
"index.d.cts"
]
}
Loading