gitlab_query_language 0.20.9-x86_64-darwin → 0.20.10-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: 5a11ba79619c5d23b472d5f2a4e3ec691cc4749b13e4446c54d7530a8a706fb9
4
- data.tar.gz: 96a2f727ae2219b9c0614f484d5942e380779a56d07eb92d330e10ca71882adc
3
+ metadata.gz: ce5c05c94598049eb12267f5f85cba0ddc0d1994166cbe9f11c2c5feb19cb6e0
4
+ data.tar.gz: de6463738346629003338341a3eb8cf65dc9020874ae2153e42be89611a36251
5
5
  SHA512:
6
- metadata.gz: 1c67f282e33a30e80a8659d0fcba784e543e7c967efa47986407885eea974e756d725bd751a00c0b6856568f3d48951c4bbfced3192b4d7eb7f85656823778ab
7
- data.tar.gz: 6cb45a71e778df1323423da1cd02e9439b4dbb3e1b82ce086e9a344fcf68cb70179a21ffcbecfd8042b49839c26301cd7f58393d9ec5421bdb7040df0dc32496
6
+ metadata.gz: 93e9e12105637834b551ddaac6baecac90495c9dbce270aa90963c42a2bd15ef749c3ef7f0033b5e25c333c70a6a0dd1f043db193a0ad497cdac03503e6cb047
7
+ data.tar.gz: cd21c62d1454a1e79dd561ffd1d14ed8ca605d338038ff368cc05fd1059e8e043d35135c9d2aa85883d3f6fc2ccc92d9ea3f4302006b757e66360b9159a80385
data/Cargo.lock CHANGED
@@ -233,8 +233,8 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
233
233
 
234
234
  [[package]]
235
235
  name = "glql"
236
- version = "0.20.9"
237
- source = "git+https://gitlab.com/gitlab-org/glql.git?branch=main#5f8b30a8f3490aa42d80b030870f73a629dff706"
236
+ version = "0.20.10"
237
+ source = "git+https://gitlab.com/gitlab-org/glql.git?tag=v0.20.10#f03237fcc8015d2a6215b6301af61e6feaceb0d9"
238
238
  dependencies = [
239
239
  "chrono",
240
240
  "graphql-parser",
data/README.md CHANGED
@@ -90,6 +90,25 @@ To install the gem onto your local machine:
90
90
  bundle exec rake install
91
91
  ```
92
92
 
93
+ ## Release Process
94
+
95
+ The gem is released automatically using GitLab's [gem-release component](https://gitlab.com/gitlab-org/components/gem-release). When a version bump is merged to the main branch:
96
+
97
+ 1. The component builds both the regular gem and pre-compiled native gems for multiple platforms (Linux, macOS, with different architectures)
98
+ 2. Runs smoke tests to verify the gem installs and functions correctly
99
+ 3. Creates a GitLab release with changelog notes
100
+ 4. Publishes all gem variants to RubyGems.org
101
+
102
+ The gem uses tag-based versioning to depend on specific GLQL core releases (e.g., `tag = "v0.21.0"` in `Cargo.toml`). This ensures explicit version coupling and reproducible builds. When a new GLQL version is released, the automated release script creates a merge request that:
103
+
104
+ - Updates the gem version in `glql_rb/lib/gitlab_query_language/version.rb`
105
+ - Updates the GLQL dependency tag in `glql_rb/ext/gitlab_query_language/Cargo.toml`
106
+ - Updates lock files (`Gemfile.lock`, `Cargo.lock`)
107
+
108
+ The release is triggered automatically when these changes are merged to main.
109
+
110
+ **Manual Testing:** To manually trigger the gem build jobs before merging (e.g., for testing), include the word "RELEASE" in the merge request title. This will run the build and smoke test jobs without publishing to RubyGems.
111
+
93
112
  ## Contributing
94
113
 
95
114
  Bug reports and pull requests are welcome at https://gitlab.com/gitlab-org/glql.
@@ -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", branch = "main" }
13
+ glql = { git = "https://gitlab.com/gitlab-org/glql.git", tag = "v0.20.10" }
@@ -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.20.9"
7
+ VERSION = "0.20.10"
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.20.9
4
+ version: 0.20.10
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: 2025-11-03 00:00:00.000000000 Z
12
+ date: 2025-11-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rb_sys