From 2b72953064597d3bd2ae7004c9c8f7e910d0f818 Mon Sep 17 00:00:00 2001 From: inhun <39795046+inhun@users.noreply.github.com> Date: Fri, 7 Nov 2025 21:39:06 +0900 Subject: [PATCH] docs: add license files for checkpoint-sqlite and checkpoint-postgres (#6392) In this PR: - Add missing LICENSE files for checkpoint-sqlite and checkpoint-postgres libraries. Both libraries specify the MIT License in their pyproject.toml files, but the actual LICENSE files were missing. This update adds the corresponding LICENSE files to ensure proper license documentation and compliance. --- libs/checkpoint-postgres/LICENSE | 21 +++++++++++++++++++++ libs/checkpoint-sqlite/LICENSE | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 libs/checkpoint-postgres/LICENSE create mode 100644 libs/checkpoint-sqlite/LICENSE diff --git a/libs/checkpoint-postgres/LICENSE b/libs/checkpoint-postgres/LICENSE new file mode 100644 index 000000000..fc0602fee --- /dev/null +++ b/libs/checkpoint-postgres/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 LangChain, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/libs/checkpoint-sqlite/LICENSE b/libs/checkpoint-sqlite/LICENSE new file mode 100644 index 000000000..fc0602fee --- /dev/null +++ b/libs/checkpoint-sqlite/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 LangChain, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.