ibm_vpc 0.9.0 → 0.11.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 +4 -4
- data/.bumpversion.cfg +1 -1
- data/.github/workflows/ci.yml +2 -4
- data/CHANGELOG.md +14 -0
- data/Gemfile +2 -0
- data/Rakefile +4 -4
- data/lib/ibm_vpc/version.rb +1 -1
- data/lib/ibm_vpc/vpc_v1.rb +9955 -8702
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd6be7ad018cd1db28cc6734533a2e4ba5ca21bbc0f9b0d9d2707d2de6773e40
|
|
4
|
+
data.tar.gz: d878d8aba1cfa74398cacdc47fb835eab7bd10f002bdfd236d289662fbbc8d5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9a8e9dedae5cee96b13ff24bd9a7551c3777d0d70854b8473f23fc7b413d6c9e4021a344be35d04d19ae00cd9f71c0a81f267737c39e95f70b552694dbe2615
|
|
7
|
+
data.tar.gz: a064c1433104630169d337b3fce651eb40bd3840f228b83e51b62a64fbb78b27121447047494817f2a8220879641d93384180fc198edb07189762cd10f288ffb
|
data/.bumpversion.cfg
CHANGED
data/.github/workflows/ci.yml
CHANGED
|
@@ -45,7 +45,6 @@ jobs:
|
|
|
45
45
|
run: |
|
|
46
46
|
python -m pip install --upgrade pip
|
|
47
47
|
pip install bumpversion
|
|
48
|
-
npm install -g semantic-release @semantic-release/exec @semantic-release/git @semantic-release/github @semantic-release/commit-analyzer
|
|
49
48
|
bundle install
|
|
50
49
|
|
|
51
50
|
- name: Run tests
|
|
@@ -54,7 +53,7 @@ jobs:
|
|
|
54
53
|
- name: Install release dependencies
|
|
55
54
|
if: github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7'
|
|
56
55
|
run: |
|
|
57
|
-
npm install -g semantic-release @semantic-release/changelog @semantic-release/exec @semantic-release/git @semantic-release/github
|
|
56
|
+
npm install -g semantic-release @semantic-release/changelog @semantic-release/exec @semantic-release/git @semantic-release/github @semantic-release/commit-analyzer
|
|
58
57
|
|
|
59
58
|
- name: Semantic Release and Publish
|
|
60
59
|
if: github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7'
|
|
@@ -64,8 +63,7 @@ jobs:
|
|
|
64
63
|
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
|
65
64
|
run: |
|
|
66
65
|
npx semantic-release
|
|
67
|
-
# If semantic-release was successful, publish to RubyGems
|
|
68
66
|
if [ $? -eq 0 ]; then
|
|
69
67
|
gem build *.gemspec
|
|
70
68
|
gem push *.gem
|
|
71
|
-
fi
|
|
69
|
+
fi
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [0.11.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.10.0...0.11.0) (2026-04-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **release:** Update SDK to support VPC API version 2026-03-24 ([#38](https://github.com/IBM/vpc-ruby-sdk/issues/38)) ([9fba223](https://github.com/IBM/vpc-ruby-sdk/commit/9fba2237fc02626e1595f5543a70438f0f083e9d))
|
|
7
|
+
|
|
8
|
+
# [0.10.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.9.0...0.10.0) (2025-07-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **release:** Update SDK to support VPC API version 2025-07-15 ([#36](https://github.com/IBM/vpc-ruby-sdk/issues/36)) ([413c3ad](https://github.com/IBM/vpc-ruby-sdk/commit/413c3ad3a55715ced2ca4d7738b38a1a83adceab))
|
|
14
|
+
|
|
1
15
|
# [0.9.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.8.0...0.9.0) (2025-05-27)
|
|
2
16
|
|
|
3
17
|
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ namespace :test do
|
|
|
15
15
|
t.libs << "test"
|
|
16
16
|
t.test_files = FileList["test/unit/*.rb"]
|
|
17
17
|
t.verbose = true
|
|
18
|
-
t.warning =
|
|
18
|
+
t.warning = false
|
|
19
19
|
t.deps = [:rubocop]
|
|
20
20
|
end
|
|
21
21
|
|
|
@@ -25,7 +25,7 @@ namespace :test do
|
|
|
25
25
|
t.libs << "test"
|
|
26
26
|
t.test_files = FileList["test/integration/*.rb"]
|
|
27
27
|
t.verbose = true
|
|
28
|
-
t.warning =
|
|
28
|
+
t.warning = false
|
|
29
29
|
t.deps = %i[dotenv rubocop]
|
|
30
30
|
end
|
|
31
31
|
|
|
@@ -35,7 +35,7 @@ namespace :test do
|
|
|
35
35
|
t.libs << "test"
|
|
36
36
|
t.test_files = FileList["test/examples/*.rb"]
|
|
37
37
|
t.verbose = true
|
|
38
|
-
t.warning =
|
|
38
|
+
t.warning = false
|
|
39
39
|
t.deps = %i[dotenv rubocop]
|
|
40
40
|
end
|
|
41
41
|
end
|
|
@@ -48,7 +48,7 @@ end
|
|
|
48
48
|
|
|
49
49
|
desc "Run tests and generate a code coverage report"
|
|
50
50
|
task :coverage do
|
|
51
|
-
ENV["COVERAGE"] = "true" if ENV["
|
|
51
|
+
ENV["COVERAGE"] = "true" if ENV["GITHUB_ACTIONS"] || ENV["CI"].nil?
|
|
52
52
|
Rake::Task["test"].execute
|
|
53
53
|
end
|
|
54
54
|
|
data/lib/ibm_vpc/version.rb
CHANGED