vectra-client 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -2
- data/docs/_layouts/home.html +1 -1
- data/docs/examples/index.md +1 -0
- data/lib/generators/vectra/install_generator.rb +0 -2
- data/lib/vectra/client.rb +5 -1
- data/lib/vectra/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9c879174191ddf2a62fec228f33ac01a0d2d72a71eb32b6f2297ca9559f565e5
|
|
4
|
+
data.tar.gz: 515b00fdace3d3846b5332eeaee7356eecc757f97128311d617bdc58f4fc00fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b66483f5bd1914a004aed825f0973fc60efca233e7bdd61570fbb1d724a50edca75f8de82fa011a54aceff075cc7064dd88dd4759fe54642e474b98f456ae17
|
|
7
|
+
data.tar.gz: 8dfb4113c628e034a342f94224eabe5b9df25cb321abf9b4987bd1fee7a452e27decbbc03c11521ca2609c52b7e666b7885de666f0bc53e761030f0985f3bd6c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [v1.0.
|
|
3
|
+
## [v1.0.3](https://github.com/stokry/vectra/tree/v1.0.3) (2026-01-13)
|
|
4
4
|
|
|
5
5
|
### Fixed
|
|
6
|
-
- Fix
|
|
6
|
+
- Fix HealthCheck module inclusion timing issue
|
|
7
|
+
- Fix Rails generator dependencies loading
|
|
8
|
+
- Simplify pgvector migration generation in install generator
|
|
9
|
+
|
|
10
|
+
[Full Changelog](https://github.com/stokry/vectra/compare/v1.0.2...v1.0.3)
|
|
11
|
+
|
|
12
|
+
## [v1.0.2](https://github.com/stokry/vectra/tree/v1.0.2) (2026-01-13)
|
|
13
|
+
|
|
14
|
+
[Full Changelog](https://github.com/stokry/vectra/compare/v1.0.1...v1.0.2)
|
|
15
|
+
|
|
16
|
+
## [v1.0.1](https://github.com/stokry/vectra/tree/v1.0.1) (2026-01-13)
|
|
7
17
|
|
|
8
18
|
[Full Changelog](https://github.com/stokry/vectra/compare/v1.0.0...v1.0.1)
|
|
9
19
|
|
data/docs/_layouts/home.html
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<!-- Hero Section -->
|
|
55
55
|
<section class="tma-hero">
|
|
56
56
|
<div class="tma-hero__container">
|
|
57
|
-
<span class="tma-hero__badge">v1.0.
|
|
57
|
+
<span class="tma-hero__badge">v1.0.1 — Hybrid Search & Rails Generator</span>
|
|
58
58
|
<h1 class="tma-hero__title">
|
|
59
59
|
Vector Databases,<br>
|
|
60
60
|
<span class="tma-hero__title-gradient">Unified for Ruby.</span>
|
data/docs/examples/index.md
CHANGED
data/lib/vectra/client.rb
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# Ensure HealthCheck is loaded before Client
|
|
4
|
+
require_relative "health_check" unless defined?(Vectra::HealthCheck)
|
|
5
|
+
require_relative "configuration" unless defined?(Vectra::Configuration)
|
|
6
|
+
|
|
3
7
|
module Vectra
|
|
4
8
|
# Unified client for vector database operations
|
|
5
9
|
#
|
|
@@ -25,7 +29,7 @@ module Vectra
|
|
|
25
29
|
# )
|
|
26
30
|
#
|
|
27
31
|
class Client
|
|
28
|
-
include HealthCheck
|
|
32
|
+
include Vectra::HealthCheck
|
|
29
33
|
|
|
30
34
|
attr_reader :config, :provider
|
|
31
35
|
|
data/lib/vectra/version.rb
CHANGED