gitlab_query_language 0.23.0-x86_64-darwin → 0.24.0-x86_64-darwin

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: ce2d093a3be161080ce95bd7413cb4be8e9e38034108dd5d974ba91e20f33635
4
- data.tar.gz: 2348dc4322efbd777def67f5646614f2e5b9e190360b63cb9474286bba13b909
3
+ metadata.gz: 2522fb1ee7b24991ebf9ce9fc9fea4309bf97e1f0e375a20bd47fd9879b73fc8
4
+ data.tar.gz: e071a930fe925e1995a0f8596267af38b123c8b6c66ac625c44a9c29a6ba8f0d
5
5
  SHA512:
6
- metadata.gz: eb0c547a3edf3743d9ae13fca46df9effd69591b1c0290361343a537c48961d708b44adcd28356a16ba6b03421d905b4c0a5b97347d1c9dd1269a37f48cc757a
7
- data.tar.gz: ff8f4ebada73dab3327d9a43958f4c2b58aef4cbec7a52e6f1e47ce7730598c93413075b673b16c689d4f0fec854752326f98102179178c399950c769d2487b2
6
+ metadata.gz: b8dbd3a42de04199b6d5ac4a85f2b7df2d830541f387edd38851555d3427aa80bbbf3c4f0936668087e99b5e88c906599cd4a326ea803a1d3440ad8c756ca2f1
7
+ data.tar.gz: f35c46b34791d4c1ee0103de816af9326ff4dc15d2e4d9288d24abc14dcfaf19de4b0975e9cdb103a413291a212639d76732c5418fd0215551a7910ecdd48192
data/Cargo.lock CHANGED
@@ -233,7 +233,7 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
233
233
 
234
234
  [[package]]
235
235
  name = "glql"
236
- version = "0.23.0"
236
+ version = "0.24.0"
237
237
  dependencies = [
238
238
  "chrono",
239
239
  "graphql-parser",
data/README.md CHANGED
@@ -36,7 +36,7 @@ puts result
36
36
 
37
37
  {"fields" => [{"key" => "title", "label" => "Title", "name" => "title"}],
38
38
  "output" =>
39
- "query GLQL($before: String, $after: String, $limit: Int) {\n group(fullPath: \"gitlab-org\") {\n issues(authorUsername: \"johnhope\", weight: \"1\", not: {labelName: \"backend\"}, before: $before, after: $after, first: $limit, includeSubgroups: true) {\n nodes {\n id\n iid\n title\n webUrl\n reference\n state\n title\n }\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n }\n count\n }\n }\n}\n",
39
+ "query GLQL($before: String, $after: String, $limit: Int) {\n group(fullPath: \"gitlab-org\") {\n workItems(authorUsername: \"johnhope\", weight: \"1\", not: {labelName: \"backend\"}, before: $before, after: $after, first: $limit, includeDescendants: true) {\n nodes {\n id\n iid\n title\n webUrl\n reference\n state\n title\n }\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n }\n count\n }\n }\n}\n",
40
40
  "success" => true,
41
41
  "variables" =>
42
42
  {"after" => {"type" => "String", "value" => nil},
@@ -118,7 +118,7 @@ irb(main):001> Glql.compile('type = Issue', {group: 'gitlab-org', username: 'joh
118
118
  =>
119
119
  {"fields" => [{"key" => "id", "label" => "ID", "name" => "id"}],
120
120
  "output" =>
121
- "query GLQL($before: String, $after: String, $limit: Int) {\n group(fullPath: \"gitlab-org\") {\n issues(types: ISSUE, before: $before, after: $after, first: $limit, includeSubgroups: true) {\n nodes {\n id\n iid\n title\n webUrl\n reference\n state\n id\n }\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n }\n count\n }\n }\n}\n",
121
+ "query GLQL($before: String, $after: String, $limit: Int) {\n group(fullPath: \"gitlab-org\") {\n workItems(types: ISSUE, before: $before, after: $after, first: $limit, includeDescendants: true) {\n nodes {\n id\n iid\n title\n webUrl\n reference\n state\n id\n }\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n }\n count\n }\n }\n}\n",
122
122
  "success" => true,
123
123
  "variables" =>
124
124
  {"after" => {"type" => "String", "value" => nil}, "before" => {"type" => "String", "value" => nil}, "limit" => {"type" => "Int", "value" => nil}}}
@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
10
10
 
11
11
  [dependencies]
12
12
  magnus = { version = "0.6.2" }
13
- glql = { git = "https://gitlab.com/gitlab-org/glql.git", tag = "v0.23.0" }
13
+ glql = { git = "https://gitlab.com/gitlab-org/glql.git", tag = "v0.24.0" }
@@ -4,5 +4,5 @@
4
4
  # This version is kept in sync with the root Cargo.toml version.
5
5
  # A version bump will trigger a gem release.
6
6
  module Glql
7
- VERSION = "0.23.0"
7
+ VERSION = "0.24.0"
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab_query_language
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.0
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Himanshu Kapoor
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2026-03-06 00:00:00.000000000 Z
12
+ date: 2026-03-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rb_sys