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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/graphsql/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a69af6d7f58b9a71a39a4e760de0505dddad7311298f71bb9447d4635718eb5
|
|
4
|
+
data.tar.gz: 4edaf48b75cdb861eb37203c889fd2bea8bc2c945e8283ccfc6b2a514ff334c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/graphsql/version.rb
CHANGED
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.
|
|
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:
|
|
111
|
-
|
|
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
|
|
154
|
+
summary: Turn a GraphQL query's field selection into a right-sized ActiveRecord query.
|
|
153
155
|
test_files: []
|