ibm_vpc 0.5.0 → 0.6.1

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: c0b5d558ceb736357ad6f161113cc593d0235fda1a7109d8443744cd0eec6236
4
- data.tar.gz: dc639cfda9c25a7e92f6f2ec5ab2c68aba06c2f3bc850ab1a0ce404bcb380122
3
+ metadata.gz: f874f0fd334146a432bae8e6ecbceaa3373d31db7a40d22b007f59470a901824
4
+ data.tar.gz: 89c89414cdc36cc6621a177e33d187ae54dc474bac3b22ada3e9b5ff1e6549a4
5
5
  SHA512:
6
- metadata.gz: 8fd49f028dc225a7746a5287db57ba035fd822e262ef278152c8207911a14ebfafffbef7cd768db50e97bbb3f8a1dd4e5692ef2c10baea84cec5b223c799881b
7
- data.tar.gz: 73b4e8aaaa93ade30b960640db798667361edee287bf89ac94bb2c89e2d43214c87ee5297b5d7c97648077b96f9e8df83c20ff5e302abc30c3fc31ace06e49cf
6
+ metadata.gz: e6f75a46ddf14f7ffd10b90accafee62bf356527b2c4fda1443f3beddc484bdc3eb9285d3b032018cc261b36458a8a7524e8ad3c2eff8ee69327b87769ead75d
7
+ data.tar.gz: 9da99a26ad7451bbe8d5960a5f4ce4672a01bf4c236fb88aafcc809531a4b0dec9687b9dd1a7038a44f0b819b5abfe1949f4bfc3975d7e1068b4ae7281e033a3
data/.bumpversion.cfg CHANGED
@@ -1,9 +1,8 @@
1
1
  [bumpversion]
2
- current_version = 0.5.0
2
+ current_version = 0.6.1
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
@@ -12,3 +12,6 @@
12
12
 
13
13
  # rspec failure tracking
14
14
  .rspec_status
15
+
16
+ *.env
17
+ .env
data/.travis.yml CHANGED
@@ -1,10 +1,13 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  sudo: required
4
+ dist: focal
4
5
 
5
6
  rvm:
6
- - 2.5.1
7
7
  - 2.6.1
8
+ - 2.7
9
+ - 3.0
10
+ - 3.1
8
11
 
9
12
  notifications:
10
13
  email: false
@@ -41,11 +44,11 @@ deploy:
41
44
  skip_cleanup: true
42
45
  on:
43
46
  branch: master
44
- rvm: 2.5.1
47
+ rvm: 2.6.1
45
48
 
46
49
  - provider: rubygems
47
50
  api_key: $RUBYGEMS_API_KEY
48
51
  gem: ibm_vpc
49
52
  on:
50
- rvm: '2.5.1'
53
+ rvm: '2.6.1'
51
54
  branch: master
data/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## [0.6.1](https://github.com/IBM/vpc-ruby-sdk/compare/0.6.0...0.6.1) (2023-10-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **release:** Some known HTTP::ConnectionError issues resolved in http 5.1.x ([6334318](https://github.com/IBM/vpc-ruby-sdk/commit/6334318726ac52a6602b83b602926153d6aa949f)), closes [/github.com/httprb/http/blob/main/CHANGES.md#500-2021-05-12](https://github.com//github.com/httprb/http/blob/main/CHANGES.md/issues/500-2021-05-12)
7
+
8
+ # [0.6.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.5.0...0.6.0) (2023-03-14)
9
+
10
+
11
+ ### Features
12
+
13
+ * **release:** Update SDK to support VPC API generated on 2022-07-20 ([1dd3a8a](https://github.com/IBM/vpc-ruby-sdk/commit/1dd3a8ad8cf83e85013aec86bc574e77bcd2ee55))
14
+ * **release:** Update SDK to support VPC API generated on 2022-07-20 ([b8b154e](https://github.com/IBM/vpc-ruby-sdk/commit/b8b154e031bf15a79452da9fb9fe8381c7d0c08a))
15
+ * **release:** Update SDK to support VPC API generated on 2022-07-20 ([7e2c594](https://github.com/IBM/vpc-ruby-sdk/commit/7e2c5949783931c5dbcec71ba3141dfcf6d0e9f3))
16
+ * **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))
17
+
1
18
  # [0.5.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.4.0...0.5.0) (2022-08-28)
2
19
 
3
20
 
data/Gemfile CHANGED
@@ -5,5 +5,5 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in ibm_vpc.gemspec
6
6
  gemspec
7
7
 
8
- gem "rake", "~> 12.0"
8
+ gem "rake", "~> 13.0"
9
9
  gem "rspec", "~> 3.0"
data/Makefile ADDED
@@ -0,0 +1,10 @@
1
+ # This makefile is used to make it easier to run the tests.
2
+
3
+ test-unit:
4
+ bundle exec rake test:unit
5
+
6
+ test-example:
7
+ bundle exec rake test:examples
8
+
9
+ test-int:
10
+ bundle exec rake test:integration
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: "2022-03-29" # Will default to the latest version if not specified
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/ibm_vpc.gemspec CHANGED
@@ -29,8 +29,8 @@ Gem::Specification.new do |spec|
29
29
  spec.require_paths = ["lib"]
30
30
 
31
31
  spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
32
- spec.add_runtime_dependency "http", "~> 4.4.1"
33
- spec.add_runtime_dependency "ibm_cloud_sdk_core", "~> 1.1.3"
32
+ spec.add_runtime_dependency "http", "~> 5.1.1"
33
+ spec.add_runtime_dependency "ibm_cloud_sdk_core", "~> 1.2.0"
34
34
  spec.add_runtime_dependency "jwt", "~> 2.2.1"
35
35
 
36
36
  spec.add_development_dependency "bundler", "~> 2.1"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IbmVpc
4
- VERSION = "0.5.0"
4
+ VERSION = "0.6.1"
5
5
  end