graphsql 0.5.0 → 0.5.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -0
  3. data/lib/graphsql/version.rb +1 -1
  4. metadata +6 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bbfab985975b92c0a66baf041c9d7aba13301ba4ac7003e1b39deb01d397c09
4
- data.tar.gz: f01d88e8126cb071191ab3870a3575436b09e2f43c6e82339c3902ad7fcd3f91
3
+ metadata.gz: 7a69af6d7f58b9a71a39a4e760de0505dddad7311298f71bb9447d4635718eb5
4
+ data.tar.gz: 4edaf48b75cdb861eb37203c889fd2bea8bc2c945e8283ccfc6b2a514ff334c0
5
5
  SHA512:
6
- metadata.gz: ce07ab33b2abf0ca40d1b4bf66a3bb0cbd4a617332dd3654ec20bdecc258dde37765959499dbb63f9eb7749c736457a11501e601e91187607b7e86b04697698a
7
- data.tar.gz: 1028c250b79bd3049393b306881e653e8a2dafe3f8a2bcee2d08f0ce072b5470f1450f5a3b06331a376129bc0ea4d51528a39a9e4aa0dce3e6f6094de8660bce
6
+ metadata.gz: 15997387c5c563f5aab7ffee76305ebbb2730b129ccb0609e91b916983fc78f532ea16409b059f2673790c4f4e0467f2f46a1043da58a68297fa6062b0122c49
7
+ data.tar.gz: 1dfe67fcb6353a3a32ef3622e192c6cdff64c065f064298318b80ffa96fbf69fcdc9f175eb7ef58e9574a026d249aedf68e260609064d69d261accb8696caed3
data/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ MaqStaq monorepo (full commit history preserved) ahead of the first real
7
7
  release. See `ROADMAP.md` for the full writeup behind each fix below,
8
8
  including how it was confirmed and what was checked and ruled out.
9
9
 
10
+ ## [0.5.1] - 2026-07-31
11
+
12
+ ### Changed
13
+
14
+ - Friendlier gemspec `summary`/`description` — the old description read like
15
+ an internal code comment ("Selects mapped ActiveRecord columns and
16
+ preloads mapped associations from GraphQL lookaheads.").
17
+
18
+ ### Infrastructure
19
+
20
+ - Added `.gitlab-ci.yml` (test suite, `gem build` sanity check,
21
+ SAST/secret-detection) — nothing ran this gem's tests automatically since
22
+ it graduated out of the monorepo's own CI matrix.
23
+
10
24
  ## [0.5.0] - 2026-07-31
11
25
 
12
26
  ### Added
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GraphSQL
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphsql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dot Matrix
@@ -107,8 +107,10 @@ dependencies:
107
107
  - - ">="
108
108
  - !ruby/object:Gem::Version
109
109
  version: '6.1'
110
- description: Selects mapped ActiveRecord columns and preloads mapped associations
111
- from GraphQL lookaheads.
110
+ description: Map your GraphQL type's fields to ActiveRecord columns and associations,
111
+ and GraphSQL turns each query's actual field selection into a right-sized SELECT
112
+ and preload automatically — no more guessing which columns and associations a resolver
113
+ needs to load.
112
114
  email:
113
115
  - matrix9180@proton.me
114
116
  executables: []
@@ -149,5 +151,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
151
  requirements: []
150
152
  rubygems_version: 4.0.16
151
153
  specification_version: 4
152
- summary: GraphQL lookahead mapping for ActiveRecord relations.
154
+ summary: Turn a GraphQL query's field selection into a right-sized ActiveRecord query.
153
155
  test_files: []