From 45ef6646b6508ae3bf94a667ad18bbc358aa1f2f Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 17:35:46 +0000 Subject: [PATCH 1/2] chore(main): release 0.1.0 --- CHANGELOG.md | 28 +++++++++++++++++++ .../version.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 825c32f..dd0084f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,29 @@ # Changelog + +## 0.1.0 (2024-02-22) + + +### Features + +* Add `MySQLChatMessageHistory` class ([#13](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/13)) ([b107a43](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/b107a430f0f257d2e91d3c47933b395c63ce7d6b)) +* Add document saver class and support save/load/delete user journey ([#16](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/16)) ([49f6018](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/49f6018f92a140340fae9139f22e7c6244c22fac)) +* Add MySQLEngine and Loader load functionality ([#9](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/9)) ([6c8af85](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/6c8af85a2676ca06e41edfdd67cc497eca9b7107)) +* Add user_agent to client ([#25](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/25)) ([b4aa7ec](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/b4aa7eca70831e8724856e9409cf0702b2511dcb)) +* Initialize repo ([abbd351](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/abbd351a5f2d34996e7c3f2c41165468fced6969)) +* Support basic user/password auth with `MySQLEngine` ([#17](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/17)) ([d462a3c](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/d462a3cdfc27d7a4b6810334af69a8e2058146ab)) +* Support saving with customized content column and saving/loading with non-default metadata JSON column. ([#19](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/19)) ([b489a43](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/b489a43aeaa0331aca61261c764aaf80fcae6d9c)) + + +### Bug Fixes + +* Backtick `table_name` to allow all characters for MySQLChatMessageHistory ([#15](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/15)) ([d1ce730](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/d1ce7309eeafff20e29f4bef62a04822a2fd11b8)) + + +### Documentation + +* Add chat message history docs ([#21](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/21)) ([5aecbd0](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/5aecbd0af8707f0669048e3a1ac1f388a1290bc7)) +* Add docloader codelab ([#18](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/18)) ([6c82c4e](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/6c82c4e02ba4a4d344848c8d45b1bc19d7c19080)) +* Add MySQLChatMessageHistory to readme ([#33](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/33)) ([17c5714](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/17c571433cea7f740ae249d4ceb7c35b308fb112)) +* Remove vectorstore template doc ([#29](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/29)) ([32b965e](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/32b965e0e6d02cf2aa787bc1f94281a6a65ea669)) + +## Changelog diff --git a/src/langchain_google_cloud_sql_mysql/version.py b/src/langchain_google_cloud_sql_mysql/version.py index 31c05dd..c1c8212 100644 --- a/src/langchain_google_cloud_sql_mysql/version.py +++ b/src/langchain_google_cloud_sql_mysql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.1" +__version__ = "0.1.0" From 0a8059e4c5980a72722738cd839b34f51d0b7fac Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Mon, 26 Feb 2024 08:34:30 -0800 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd0084f..94625e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,15 +8,6 @@ * Add `MySQLChatMessageHistory` class ([#13](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/13)) ([b107a43](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/b107a430f0f257d2e91d3c47933b395c63ce7d6b)) * Add document saver class and support save/load/delete user journey ([#16](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/16)) ([49f6018](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/49f6018f92a140340fae9139f22e7c6244c22fac)) * Add MySQLEngine and Loader load functionality ([#9](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/9)) ([6c8af85](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/6c8af85a2676ca06e41edfdd67cc497eca9b7107)) -* Add user_agent to client ([#25](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/25)) ([b4aa7ec](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/b4aa7eca70831e8724856e9409cf0702b2511dcb)) -* Initialize repo ([abbd351](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/abbd351a5f2d34996e7c3f2c41165468fced6969)) -* Support basic user/password auth with `MySQLEngine` ([#17](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/17)) ([d462a3c](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/d462a3cdfc27d7a4b6810334af69a8e2058146ab)) -* Support saving with customized content column and saving/loading with non-default metadata JSON column. ([#19](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/19)) ([b489a43](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/b489a43aeaa0331aca61261c764aaf80fcae6d9c)) - - -### Bug Fixes - -* Backtick `table_name` to allow all characters for MySQLChatMessageHistory ([#15](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/15)) ([d1ce730](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/d1ce7309eeafff20e29f4bef62a04822a2fd11b8)) ### Documentation @@ -24,6 +15,3 @@ * Add chat message history docs ([#21](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/21)) ([5aecbd0](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/5aecbd0af8707f0669048e3a1ac1f388a1290bc7)) * Add docloader codelab ([#18](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/18)) ([6c82c4e](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/6c82c4e02ba4a4d344848c8d45b1bc19d7c19080)) * Add MySQLChatMessageHistory to readme ([#33](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/33)) ([17c5714](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/17c571433cea7f740ae249d4ceb7c35b308fb112)) -* Remove vectorstore template doc ([#29](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues/29)) ([32b965e](https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/commit/32b965e0e6d02cf2aa787bc1f94281a6a65ea669)) - -## Changelog