ibm_vpc 0.4.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bumpversion.cfg +1 -2
- data/.gitignore +3 -0
- data/.travis.yml +2 -1
- data/CHANGELOG.md +18 -0
- data/Makefile +10 -0
- data/README.md +1 -1
- data/Rakefile +10 -0
- data/lib/ibm_vpc/version.rb +1 -1
- data/lib/ibm_vpc/vpc_v1.rb +4224 -1573
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9663cd8b9292ddd503ab1fe82b10d240ba38078cee8ba23a562096202df6aa9c
|
4
|
+
data.tar.gz: c2996f634ca4c956f9f28d7dae0bbfdd0370222e4841986f279a9e26c5249803
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3e142a3bbc83c54cc36d569d3fdbf1c170d6166c530dc28ccf8b26f53a92d6b70b8d9cebbfe53c49b188d7b459bb0df398bd976de6959b3a427a06ccc472adc
|
7
|
+
data.tar.gz: df89bd7bad195f2e865fa0added321d0885332db8d862e6682cb5e280db8db89f938f6e28f2ecd1b65ed0e6bc04dd1883ebd358dac10ac92465226b6ee2db299
|
data/.bumpversion.cfg
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
[bumpversion]
|
2
|
-
current_version = 0.
|
2
|
+
current_version = 0.6.0
|
3
3
|
commit = True
|
4
4
|
message = Update version {current_version} -> {new_version}
|
5
5
|
|
6
6
|
[bumpversion:file:lib/ibm_vpc/version.rb]
|
7
7
|
search = VERSION = "{current_version}"
|
8
8
|
replace = VERSION = "{new_version}"
|
9
|
-
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
language: ruby
|
2
2
|
cache: bundler
|
3
3
|
sudo: required
|
4
|
+
dist: focal
|
4
5
|
|
5
6
|
rvm:
|
6
7
|
- 2.5.1
|
@@ -16,7 +17,7 @@ before_install:
|
|
16
17
|
- git fetch --tags
|
17
18
|
- sudo apt-get update
|
18
19
|
- sudo apt-get install python
|
19
|
-
- nvm install
|
20
|
+
- nvm install --lts
|
20
21
|
- nvm use node
|
21
22
|
- gem install bundler:2.1.4
|
22
23
|
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
# [0.6.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.5.0...0.6.0) (2023-03-14)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([1dd3a8a](https://github.com/IBM/vpc-ruby-sdk/commit/1dd3a8ad8cf83e85013aec86bc574e77bcd2ee55))
|
7
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([b8b154e](https://github.com/IBM/vpc-ruby-sdk/commit/b8b154e031bf15a79452da9fb9fe8381c7d0c08a))
|
8
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([7e2c594](https://github.com/IBM/vpc-ruby-sdk/commit/7e2c5949783931c5dbcec71ba3141dfcf6d0e9f3))
|
9
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([#22](https://github.com/IBM/vpc-ruby-sdk/issues/22)) ([6fc405d](https://github.com/IBM/vpc-ruby-sdk/commit/6fc405d3d82892df5e61b1cb597c7aaa2edb08b7))
|
10
|
+
|
11
|
+
# [0.5.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.4.0...0.5.0) (2022-08-28)
|
12
|
+
|
13
|
+
|
14
|
+
### Features
|
15
|
+
|
16
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-12 ([14e7aaf](https://github.com/IBM/vpc-ruby-sdk/commit/14e7aaf434eef6a99591d01b6b14948f580e9998))
|
17
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-12 ([#18](https://github.com/IBM/vpc-ruby-sdk/issues/18)) ([840d89b](https://github.com/IBM/vpc-ruby-sdk/commit/840d89ba4901725a0050c1fd605fb8242c1e87e2))
|
18
|
+
|
1
19
|
# [0.4.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.3.1...0.4.0) (2021-12-10)
|
2
20
|
|
3
21
|
|
data/Makefile
ADDED
data/README.md
CHANGED
@@ -91,7 +91,7 @@ Setting up and using the API client is simple, just pass in your authenticator o
|
|
91
91
|
|
92
92
|
# Pass the authenticator into the VpcV1 service
|
93
93
|
vpc_v1 = IbmVpc::VpcV1.new(
|
94
|
-
version: "
|
94
|
+
version: "2022-09-13" # Will default to the latest version if not specified
|
95
95
|
authenticator: authenticator
|
96
96
|
)
|
97
97
|
|
data/Rakefile
CHANGED
@@ -28,6 +28,16 @@ namespace :test do
|
|
28
28
|
t.warning = true
|
29
29
|
t.deps = %i[dotenv rubocop]
|
30
30
|
end
|
31
|
+
|
32
|
+
Rake::TestTask.new do |t|
|
33
|
+
t.name = "examples"
|
34
|
+
t.description = "Run example tests (put credentials in a .env file)"
|
35
|
+
t.libs << "test"
|
36
|
+
t.test_files = FileList["test/examples/*.rb"]
|
37
|
+
t.verbose = true
|
38
|
+
t.warning = true
|
39
|
+
t.deps = %i[dotenv rubocop]
|
40
|
+
end
|
31
41
|
end
|
32
42
|
|
33
43
|
desc "Run unit & integration tests"
|
data/lib/ibm_vpc/version.rb
CHANGED