openvoxserver-ca 3.0.0.pre.rc1 → 3.0.0

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: 5f7ca88962051030c69584bdb4d1bc9dd44fb0150c4127a00c4c137d9b19861c
4
- data.tar.gz: f3aa26bc2bc1cb2c47ea12d60a9d8f70dd9b59104d21452a68d713047c8b0a0e
3
+ metadata.gz: 11405667e7482bcb0b64a8411de1227b1908bc393b30a9f074438ddb034e6523
4
+ data.tar.gz: bdfc99a2a215f2fab282f8c818c6793526246eb81b67328ad9318c0e2d68c1c1
5
5
  SHA512:
6
- metadata.gz: d0fd9f89cf79fc0a6db2c9956e93b3cb6456d60ea16e22f78ef9feddf94fdc4c3469ee8bdd6a1ba8f10346273f60f04c11a771cd30802e723765ab2db98e11af
7
- data.tar.gz: 2f7f06591c9a3d541a4f2ed897a9994c27261c56f6e2da018be03c10254d2f3d606b391a0e4259809e5a3234075c014354d6a229202ef614d43fbd1201baca1c
6
+ metadata.gz: ed681e739f2ba95da27c6d374550b70158234655fec37b0d2fe0c8e9b8ab688811c3a84acabfb321bedaee1d77932b00066cd1db11de321225f8600835246f70
7
+ data.tar.gz: 44b0de471e6fa9095cf25cb23aaa7dad35b522b9eaac10e310ac78acf619a218c9fe295c0de03fb2b721ad470357fdaa745909678fe9c764a7f1bec320880986
@@ -17,16 +17,29 @@ env:
17
17
  CI: true
18
18
 
19
19
  jobs:
20
+ matrix:
21
+ runs-on: ubuntu-24.04
22
+ outputs:
23
+ ruby: ${{ steps.ruby.outputs.versions }}
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - name: Install Ruby 3.4
27
+ uses: ruby/setup-ruby@v1
28
+ with:
29
+ ruby-version: '3.4'
30
+ bundler-cache: true
31
+ #- name: Run RuboCop
32
+ # run: bundle exec rake rubocop
33
+ - id: ruby
34
+ uses: voxpupuli/ruby-version@v1
35
+
20
36
  linux_unit_tests:
37
+ needs: matrix
21
38
  name: Ruby version
22
39
  strategy:
23
40
  fail-fast: false
24
41
  matrix:
25
- ruby:
26
- - '2.7'
27
- - '3.0'
28
- - '3.2'
29
- - '3.3'
42
+ ruby: ${{ fromJSON(needs.matrix.outputs.ruby) }}
30
43
  runs-on: ubuntu-24.04
31
44
  steps:
32
45
  - name: Checkout current PR
@@ -43,3 +56,12 @@ jobs:
43
56
  bundle env
44
57
 
45
58
  - run: bundle exec rake spec_random
59
+
60
+ tests:
61
+ needs:
62
+ - matrix
63
+ - linux_unit_tests
64
+ runs-on: ubuntu-24.04
65
+ name: Test suite
66
+ steps:
67
+ - run: echo Test suite completed
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /vendor/
9
+ /.vendor/
9
10
  /tmp/
10
11
  openvoxserver-ca-*.gem
11
12
  Gemfile.lock
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.0.0](https://github.com/openvoxproject/openvoxserver-ca/tree/3.0.0) (2025-07-10)
6
+
7
+ [Full Changelog](https://github.com/openvoxproject/openvoxserver-ca/compare/3.0.0-rc1...3.0.0)
8
+
9
+ **Merged pull requests:**
10
+
11
+ - CI: Add dummy job we can depend on & Generate ruby matrix dynamically [\#9](https://github.com/OpenVoxProject/openvoxserver-ca/pull/9) ([bastelfreak](https://github.com/bastelfreak))
12
+
5
13
  ## [3.0.0-rc1](https://github.com/openvoxproject/openvoxserver-ca/tree/3.0.0-rc1) (2025-07-09)
6
14
 
7
15
  [Full Changelog](https://github.com/openvoxproject/openvoxserver-ca/compare/2.7.0...3.0.0-rc1)
@@ -1,5 +1,5 @@
1
1
  module Puppetserver
2
2
  module Ca
3
- VERSION = "3.0.0-rc1"
3
+ VERSION = "3.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openvoxserver-ca
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.pre.rc1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenVox Project