Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Oct 10, 2025

This PR contains the following updates:

Package Change Age Confidence
langchain-chroma (source, changelog) ==0.2.5 -> ==0.2.6 age confidence
langchain-core (source, changelog) ==0.3.74 -> ==0.3.79 age confidence
langchain-google-alloydb-pg (changelog) ==0.12.0 -> ==0.13.0 age confidence
langchain-milvus (changelog) ==0.2.1 -> ==0.3.0 age confidence
langchain-pinecone (changelog) ==0.2.3 -> ==0.2.13 age confidence
langchain-qdrant (source, changelog) ==0.2.0 -> ==0.2.1 age confidence
langchain-weaviate ==0.0.5 -> ==0.0.6 age confidence
pymilvus ==2.6.0 -> ==2.6.3 age confidence
pytest (changelog) ==8.4.1 -> ==8.4.2 age confidence
weaviate-client ==4.16.7 -> ==4.18.0 age confidence

Release Notes

googleapis/langchain-google-alloydb-pg-python (langchain-google-alloydb-pg)

v0.13.0

Compare Source

⚠ BREAKING CHANGES
  • Refactor AlloyDBVectorStore and AlloyDBEngine to depend on PGVectorstore and PGEngine respectively (#​434)
Documentation
milvus-io/pymilvus (pymilvus)

v2.6.3: PyMilvus v2.6.3 Release Notes

Compare Source

Highlights

1. Support for Array of Structs

PyMilvus now supports array of structs data types, allowing you to store and query complex nested data structures.

from pymilvus import MilvusClient, DataType

client = MilvusClient(uri="http://localhost:19530")

schema = client.create_schema(auto_id=False)
schema.add_field(field_name="id", datatype=DataType.INT64, is_primary=True)
schema.add_field(field_name="vector", datatype=DataType.FLOAT_VECTOR, dim=128)

struct_schema = MilvusClient.create_struct_field_schema()
struct_schema.add_field(field_name="name", datatype=DataType.VARCHAR, max_length=100)
struct_schema.add_field(field_name="age", datatype=DataType.INT64)
struct_schema.add_field(field_name="text", datatype=DataType.VARCHAR, max_length=65535)
struct_schema.add_field(field_name="emb", datatype=DataType.FLOAT_VECTOR, dim=128)
schema.add_field(
    field_name="user_info",
    datatype=DataType.ARRAY,
    element_type=DataType.STRUCT,
    struct_schema=struct_schema,
    max_capacity=1000,
)

client.create_collection(collection_name="users", schema=schema)

data = {
    "id": 1,
    "user_info": [
        {"name": "Alice", "age": 30, "text": "this is alice", "emb": [0.1] * 128},
        {"name": "Bob", "age": 20, "text": "this is bob", "emb": [0.2] * 128},
    ]
    "vector": [0.1] * 128
}

client.insert(collection_name="users", data=[data])

📖 Documentation Array of Structs, Compatible with Milvus 2.6.4+

2. Geometry Data Type Support

Query and search with geographic data using the new Geometry data type.

from pymilvus import MilvusClient, DataType

client = MilvusClient(uri="http://localhost:19530")

schema = MilvusClient.create_schema()
schema.add_field(field_name="id", datatype=DataType.INT64, is_primary=True)
schema.add_field(field_name="location", datatype=DataType.GEOMETRY, nullable=True)
schema.add_field(field_name="vector", datatype=DataType.FLOAT_VECTOR, dim=128)

client.create_collection(collection_name="geo_coll", schema=schema)

data = [
    {"id": 1, "location": "POINT(116.404 39.915)", "vector": [0.1] * 128},
    {"id": 2, "location": "POINT(-73.935 40.730)", "vector": [0.2] * 128}
]
client.insert(collection_name="locations", data=data)

results = client.query(
    collection_name="locations",
    filter=f'st_dwithin(location, "POINT(116.4 39.9)", 1000.0)',
    output_fields=["id", "location"]
)

📖 Documentation Geometry field, Compatible with Milvus 2.6.4+

3. Insert Primary Key with Auto ID Enabled

You can now insert custom primary keys even when auto_id is enabled, providing more flexibility in data management.

from pymilvus import MilvusClient, DataType

client = MilvusClient(uri="http://localhost:19530")

schema = MilvusClient.create_schema(auto_id=True)
schema.add_field(field_name="id", datatype=DataType.INT64, is_primary=True, auto_id=True)
schema.add_field(field_name="vector", datatype=DataType.FLOAT_VECTOR, dim=128)

client.create_collection(collection_name="my_collection", schema=schema, properties={"allow_insert_auto_id": "true"})

data = [
    {"id": 100, "vector": [0.1] * 128},
    {"id": 200, "vector": [0.2] * 128}
]
client.insert(collection_name="my_collection", data=data)

📖 Documentation Insert when AutoID is true, Compatible with Milvus 2.6.3+

4. L0 Compaction Support

Trigger L0 compaction manually to optimize storage and query performance.

from pymilvus import MilvusClient

client = MilvusClient(uri="http://localhost:19530")

client.compact(collection_name="my_collection", is_l0=True)

📖 Documentation Compact L0 segments, Compatible with Milvus 2.6.3+

5. ⚠️ Breaking Change: JSON Serialization for Strings

String values are now treated as JSON-serialized bytes. This is incompatible with previous versions.

Before (2.6.2 and earlier):

client.insert(collection_name="my_collection", data=[{"id": 1, "json_field": "a"}])

Now (2.6.3+):

import json

client.insert(collection_name="my_collection", data=[{"id": 1, "json_field": json.dumps("a")}])

Complete Change Log

Features
  • Struct Support: SDK implementation for struct data type with field-level mmap configuration (#​3026, #​3037)
  • Geo Data Type: Support for geographic data in insert, query, and search operations (#​3043)
  • L0 Compaction: Force L0 compact support (#​3011)
  • Function Scorer Ranker: Support using function scorer as ranker (#​3010)
  • Replicate Configuration: UpdateReplicateConfiguration API support (#​3003)
Enhancements
  • Async Client Improvements: Added retry mechanism and schema cache for AsyncMilvusClient (#​3023)
  • Allow user to insert primary key when auto_id is enabled (#​3007)
  • Update get_cost_from_status implementation (#​3000)
  • Enhanced remote storage usage result info (#​3014)
  • Remove annoying logs in MilvusClient (#​3016)
  • Raise error when ranker has unknown type (#​3021)
  • Support insert serialized JSON (#​3031)
  • Cherry pick multiple PRs from master branch (#​3048)
Bug Fixes
  • Fix hybrid_search to support EmbeddingList in request data (#​3028)
Documentation
  • Add apiKey note for bulk_import (#​2997)

Contributors

Special thanks to all contributors who made this release possible:
@​SpadeA-Tang, @​XuanYang-cn, @​aoiasd, @​bigsheeper, @​chasingegg, @​lentitude2tk, @​MrPresent-Han, @​sunby, @​xiaocai2333, @​zhuwenxing


For more information, visit the PyMilvus GitHub repository.
Full Changelog: milvus-io/pymilvus@v2.6.2...v2.6.3

v2.6.2: PyMilvus v2.6.2 Release Notes

Compare Source

What's Changed

Full Changelog: milvus-io/pymilvus@v2.6.1...v2.6.2

v2.6.1: PyMilvus v2.6.1 Release Notes

Compare Source

What's Changed

Full Changelog: milvus-io/pymilvus@v2.6.0...v2.6.1

pytest-dev/pytest (pytest)

v8.4.2

Compare Source

pytest 8.4.2 (2025-09-03)

Bug fixes

  • #​13478: Fixed a crash when using console_output_style{.interpreted-text role="confval"} with times and a module is skipped.

  • #​13530: Fixed a crash when using pytest.approx{.interpreted-text role="func"} and decimal.Decimal{.interpreted-text role="class"} instances with the decimal.FloatOperation{.interpreted-text role="class"} trap set.

  • #​13549: No longer evaluate type annotations in Python 3.14 when inspecting function signatures.

    This prevents crashes during module collection when modules do not explicitly use from __future__ import annotations and import types for annotations within a if TYPE_CHECKING: block.

  • #​13559: Added missing [int]{.title-ref} and [float]{.title-ref} variants to the [Literal]{.title-ref} type annotation of the [type]{.title-ref} parameter in pytest.Parser.addini{.interpreted-text role="meth"}.

  • #​13563: pytest.approx{.interpreted-text role="func"} now only imports numpy if NumPy is already in sys.modules. This fixes unconditional import behavior introduced in [8.4.0]{.title-ref}.

Improved documentation

  • #​13577: Clarify that pytest_generate_tests is discovered in test modules/classes; other hooks must be in conftest.py or plugins.

Contributor-facing changes

  • #​13480: Self-testing: fixed a few test failures when run with -Wdefault or a similar override.
  • #​13547: Self-testing: corrected expected message for test_doctest_unexpected_exception in Python 3.14.
  • #​13684: Make pytest's own testsuite insensitive to the presence of the CI environment variable -- by ogrisel{.interpreted-text role="user"}.
weaviate/weaviate-python-client (weaviate-client)

v4.18.0

Compare Source

v4.17.0

Compare Source

What's Changed
New Contributors

Full Changelog: weaviate/weaviate-python-client@v4.16.9...v4.17.0

v4.16.10

Compare Source

What's Changed

Full Changelog: weaviate/weaviate-python-client@v4.16.9...v4.16.10

v4.16.9

Compare Source

What's Changed

Full Changelog: weaviate/weaviate-python-client@v4.16.8...v4.16.9

v4.16.8

Compare Source

What's Changed

Full Changelog: weaviate/weaviate-python-client@v4.16.7...v4.16.8


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested review from a team as code owners October 10, 2025 07:33
@product-auto-label product-auto-label bot added api: alloydb Issues related to the googleapis/langchain-google-alloydb-pg-python API. samples Issues that are directly related to samples. labels Oct 10, 2025
@dpebot
Copy link
Collaborator

dpebot commented Oct 10, 2025

/gcbrun

@renovate-bot renovate-bot force-pushed the renovate/samples-migrations branch from 46489db to 1e570e1 Compare October 24, 2025 10:54
@dpebot
Copy link
Collaborator

dpebot commented Oct 24, 2025

/gcbrun

@renovate-bot renovate-bot force-pushed the renovate/samples-migrations branch from 1e570e1 to a0ded17 Compare October 31, 2025 12:10
@dpebot
Copy link
Collaborator

dpebot commented Oct 31, 2025

/gcbrun

@renovate-bot renovate-bot force-pushed the renovate/samples-migrations branch from a0ded17 to ad7ac37 Compare November 2, 2025 20:57
@dpebot
Copy link
Collaborator

dpebot commented Nov 2, 2025

/gcbrun

anubhav756
anubhav756 previously approved these changes Nov 3, 2025
@anubhav756
Copy link
Contributor

@dishaprakash Do we have a preference for dep versions?

@dpebot
Copy link
Collaborator

dpebot commented Nov 4, 2025

/gcbrun

@dishaprakash dishaprakash added the priority: p2 Moderately-important priority. Fix may not be included in next release. label Nov 5, 2025
@renovate-bot renovate-bot force-pushed the renovate/samples-migrations branch from 62b5148 to 2c0f23e Compare November 11, 2025 03:10
@dpebot
Copy link
Collaborator

dpebot commented Nov 11, 2025

/gcbrun

@anubhav756
Copy link
Contributor

/gbrun

@renovate-bot renovate-bot force-pushed the renovate/samples-migrations branch from 2c0f23e to d654afa Compare November 14, 2025 06:30
@dpebot
Copy link
Collaborator

dpebot commented Nov 14, 2025

/gcbrun

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

api: alloydb Issues related to the googleapis/langchain-google-alloydb-pg-python API. priority: p2 Moderately-important priority. Fix may not be included in next release. samples Issues that are directly related to samples.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants