tina4-ultipa 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db28f1b774ee4b89511ce92be09703eafcee240f8d365434b65b33aa7b68ac15
4
- data.tar.gz: 1a35099dd84422f8047c1f3cb5867c1083c6a454635a83019e7f5bc87b71059a
3
+ metadata.gz: 35c7cb7269b260568ddffe929ab9988fd3d4a53ae95aff2ea056af32a03d8227
4
+ data.tar.gz: 034e1430d41abef72a2e282a54b7848d74f093cd3f9965505a2fd7b2f402e526
5
5
  SHA512:
6
- metadata.gz: 57a742e80ccc65b03794cf907ac37dc3cd5d723fcb18a37c2e25cb1375d57a327a17ab949e54e6de73f612ed9de61c01a240b6bb1f55b9230998a9d39ae43f36
7
- data.tar.gz: 41b7a417fbe6a8eaceb481a26f7cc556cea14fba09025ff94419a31c36f3e62fe5544ef7d6d752d5142c6937851e9c2784090672139c39d2b58f46584f341190
6
+ metadata.gz: 3f095a77b541235326e4369af963f1f60b9db72101dca565a6b9472a3da3705b2ca7d2322b548c56677e8be1330535d592ce9f7de312e6cb678ee5561f45f55b
7
+ data.tar.gz: f8d9ff4fa5d79b6cb89a2166d5166ee156281cf96dc907ca5e2b031cae676b3f08e5315196d1d3d8c92ef5bdda3cb5561233a75f964768fc4a60e4f2744802cd
data/README.md CHANGED
@@ -35,7 +35,9 @@ database** (`ultipa-gqldb`). It is the Ultipa driver behind
35
35
  [Tina4](https://tina4.com)'s graph data layer — but has **no Tina4 dependency** and
36
36
  is perfectly usable on its own. Tina4's core stays zero-dependency; this driver is
37
37
  an *optional* gem loaded only for `ultipa://` connections, speaking gRPC directly
38
- (`grpc` + `google-protobuf`).
38
+ on top of the pure-Ruby [`http-2`](https://rubygems.org/gems/http-2) gem — with
39
+ **no `grpc` C extension and no `google-protobuf` runtime**. Zero native code,
40
+ zero transitive deps: `bundle install` pulls exactly one gem (`http-2`).
39
41
 
40
42
  > **Ultipa** is a high-performance graph database with a GQL (ISO/IEC 39075) query
41
43
  > surface. Learn more at **[ultipa.com](https://www.ultipa.com)** · docs at
@@ -46,9 +48,13 @@ an *optional* gem loaded only for `ultipa://` connections, speaking gRPC directl
46
48
  - **Complete value decoding.** Every gqldb `PropertyType` is decoded to a natural
47
49
  Ruby value — including the composites and temporals most thin clients skip
48
50
  (see [Type support](#type-support)).
49
- - **Real gRPC, vendored stubs.** Generated protobuf stubs ship inside the gem
50
- (`lib/tina4_ultipa/gen/`), so there is no reflection round-trip and no codegen
51
- step at install time.
51
+ - **Pure Ruby, zero C extensions.** No `grpc` gem, no `google-protobuf`, no
52
+ native compilation on `gem install`. HTTP/2 runs through the pure-Ruby
53
+ [`http-2`](https://rubygems.org/gems/http-2) gem
54
+ (`lib/tina4_ultipa/grpc.rb` layers gRPC framing on top), and the proto3
55
+ wire codec is hand-rolled in `lib/tina4_ultipa/pb.rb` for the 8 gqldb
56
+ messages we consume. Faster installs, no toolchain, and none of the
57
+ `google-protobuf` transitive-pin conflicts that bite in mixed dep graphs.
52
58
  - **Fails loud.** A bad statement raises; it never returns a falsy value you might
53
59
  miss. An unreachable host raises within your `connect_timeout`.
54
60
  - **Cross-language parity.** The same driver exists for
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tina4Ultipa
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tina4-ultipa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tina4 Stack