1 days ago
opencv

OpenCV 4.13.0

OpenCV 4.13.0 has been released.

🛠️ Change log is here.

1 days ago
rustfs

1.0.0-alpha.78

What's Changed

New Contributors

Full Changelog: https://github.com/rustfs/rustfs/compare/1.0.0-alpha.77...1.0.0-alpha.78

2 days ago
milvus

client/v2.6.2

Release Notes - Milvus Go SDK v2.6.2

Summary

This release introduces QueryIterator support for efficient large result set iteration and adds Struct Array field type support in the Go SDK.

New Features

QueryIterator Support

Added QueryIterator for efficiently iterating over large query result sets using PK-based pagination (#46633).

  • Support for Int64 and VarChar primary key types for automatic pagination
  • Configurable options via QueryIteratorOption:
    • WithBatchSize(int) - Set batch size for each iteration (default: 1000)
    • WithIteratorLimit(int64) - Set overall limit of entries to iterate
    • WithFilter(string) - Set filter expression
    • WithOutputFields(...string) - Specify output fields
    • WithPartitions(...string) - Specify partition names
    • WithConsistencyLevel(ConsistencyLevel) - Set consistency level

Usage Example:

  opt := milvusclient.NewQueryIteratorOption("collection_name").
      WithBatchSize(500).
      WithFilter("age > 18").
      WithOutputFields("id", "name", "vector")

  iter, err := client.QueryIterator(ctx, opt)
  for {
      rs, err := iter.Next(ctx)
      if errors.Is(err, io.EOF) {
          break
      }
      // process rs...
  }

Enhancements

Struct Array Field Type Support (#45291)

Added support for Struct Array field type in Go SDK:

  • New columnStructArray type implementing the Column interface
  • Support for parsing StructArrayField from protobuf responses
  • Schema construction support for struct array fields via entity.FieldTypeArray

Test Infrastructure Improvements (#45113)

  • Refactored go_client test wrapper to use struct embedding pattern
  • Improved test structure and organization

Related PRs

  • #45113 - Refactor go_client test wrapper
  • #45291 - Support struct array field type
  • #46633 - Add QueryIterator support
6 days ago
rustfs

1.0.0-alpha.77

What's Changed

New Contributors

Full Changelog: https://github.com/rustfs/rustfs/compare/1.0.0-alpha.76...1.0.0-alpha.77

7 days ago
rocketmq

rocketmq-all-5.4.0

This version introduces two new features and a few minor fixes.

What's Changed

Full Changelog: https://github.com/apache/rocketmq/compare/rocketmq-all-5.3.4...rocketmq-all-5.4.0

8 days ago
fluent-bit

Fluent Bit 4.2.2

https://fluentbit.io/announcements/v4.2.2/

What's Changed

New Contributors

Full Changelog: https://github.com/fluent/fluent-bit/compare/v4.2.1...v4.2.2

8 days ago
orientdb

3.2.48

This patch release fix a few quite important but not frequent issues, one issue happen in distributed environments with RidBags tree transactions applied in inverted order on a specific node, this should just apply the transaction but it caused a full sync to happen, thanks to @ikysil that describe the issue in a really detailed way. One quite sized issues was a really slow parsing of deeply nested document in a SQL query, the parser would go trough a exponential parsing and cause failures, this was fixed by @lvca in our commonly shared parser structure.

Changes

Core

  • Corrected slow parsing of nested json (thanks @lvca), issue #10328
  • Improved logging of serialization errors issue #10614

Tools

  • Corrected load of logging properties for the console

Distributed

  • Corrected inverted order of apply of transactions with tree ridbags, as described by PR #10549

Artifacts

orientdb-community-3.2.48.tar.gz orientdb-community-3.2.48.zip

orientdb-tp3-3.2.48.tar.gz orientdb-tp3-3.2.48.zip

agent-3.2.48.jar