gitlab_query_language 0.23.0-aarch64-linux-gnu → 0.24.0-aarch64-linux-gnu

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: 7ff9f6e4bded0d9f53f34ea79dc70bf099282cf58f0e40a8db4f92de773aeaec
4
- data.tar.gz: c1d19c0c7df8ff1253a45b20e1088b5bade8141c69ea412eee6384dcad69e996
3
+ metadata.gz: 83b5ea6ca1f322d5321a9e52b2fc2909f071227cda272f21cfc499eb09760260
4
+ data.tar.gz: 2f615d7f4e9e68a816468161ba4f55051c747ff2e77a0ff637cbdf48abf5459f
5
5
  SHA512:
6
- metadata.gz: e2e10c5b4cfceb53168c758325f9de41fe870eff5c4f0cc2cb093e63381577f5f60384f53495b42d028d32626f7c26181861922b212baaa6b3003b970247f7cf
7
- data.tar.gz: 77c7003e9f4dabbb120634118cd8c7ef775f64995cc0510e9889b26b3e4b061d6bb5bffa237a223d5cab782cd437ff4aec06fab0643b773dc037e74040d8e8f9
6
+ metadata.gz: 7e1fdb64511eee71b31fd788a73fb999d98d6d077fa1c9e183ea76c84f8a077c6a189caaae0d32f7e24af6b0d494f8b2f3f0f673de8e34a62af32ee12e614500
7
+ data.tar.gz: 38b4f70959fe649f2dded04f3f4cf9e0b3c1df56cfbfde8a1ff3f12391c8df6f6206280d877a66d8bb0f14e7c4620ed74a304ef06ae98b6da30f30b2e000268c
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: aarch64-linux-gnu
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