ibm_vpc 0.7.0 → 0.9.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: 0401ebffb88998b2eb2934e3d8a9bf0a4f9548e9c3dfaf4156791561ec5107dd
4
- data.tar.gz: 58b1ca8773883628d7f70b8f6c95883ec3f2deed457388043a25f3d4e600a957
3
+ metadata.gz: 1b070451a498fd6b829656df7fe2c853a028ebd734436ce48a32356817387ee9
4
+ data.tar.gz: '08ff3d4a59cee10feadcac64ec4f2226d1d9319ba4ff5a40ea9dd95cd3c09fd2'
5
5
  SHA512:
6
- metadata.gz: ad4c2ef6698638457347647e8112d85d67009e6a0e44481106dfd51bc85fb5c22fc48d0c9f0a9fad7fab72a054fbdf3344d5d8d0c44c664a60f04540a7616be9
7
- data.tar.gz: a72a8eeb9fd06b6ba1a30c5cfa11c9fcfb08694b51cedb58bd162e13b78b3608bb5baf172539c081f367ae2925b78c16ba0b701c0e5ae271f52420a9d612d75f
6
+ metadata.gz: ef261c21a7efaf7717871f98bb28f87ed1b91db931086ba2ccfeba203345840503ccdf54666752fea939b9c7dc271cc3a7ffa4b391bc54921a8584a92be879a5
7
+ data.tar.gz: ec2f201336f20853652e12d13759e7e0b4767c9ba83ba8ec1265cae737be2aaf8dc3bc5a46d530ed12bda87d82b39daa9c1ed69a5b4fdcfcaf169ebfe616b5d9
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.7.0
2
+ current_version = 0.9.0
3
3
  commit = True
4
4
  message = Update version {current_version} -> {new_version}
5
5
 
@@ -0,0 +1,71 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ tags: ['*']
7
+ pull_request:
8
+ branches: [master]
9
+
10
+ jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ environment: ci
14
+ strategy:
15
+ matrix:
16
+ ruby-version:
17
+ - '2.7'
18
+ - '3.0'
19
+ - '3.1'
20
+ - '3.2'
21
+ - '3.3'
22
+
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ with:
26
+ fetch-depth: 0
27
+
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: ${{ matrix.ruby-version }}
32
+ bundler-cache: true
33
+
34
+ - name: Set up Python
35
+ uses: actions/setup-python@v5
36
+ with:
37
+ python-version: '3.x'
38
+
39
+ - name: Set up Node.js
40
+ uses: actions/setup-node@v4
41
+ with:
42
+ node-version: 'lts/*'
43
+
44
+ - name: Install dependencies
45
+ run: |
46
+ python -m pip install --upgrade pip
47
+ pip install bumpversion
48
+ npm install -g semantic-release @semantic-release/exec @semantic-release/git @semantic-release/github @semantic-release/commit-analyzer
49
+ bundle install
50
+
51
+ - name: Run tests
52
+ run: bundle exec rake
53
+
54
+ - name: Install release dependencies
55
+ if: github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7'
56
+ run: |
57
+ npm install -g semantic-release @semantic-release/changelog @semantic-release/exec @semantic-release/git @semantic-release/github
58
+
59
+ - name: Semantic Release and Publish
60
+ if: github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7'
61
+ env:
62
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
64
+ GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
65
+ run: |
66
+ npx semantic-release
67
+ # If semantic-release was successful, publish to RubyGems
68
+ if [ $? -eq 0 ]; then
69
+ gem build *.gemspec
70
+ gem push *.gem
71
+ fi
data/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ # [0.9.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.8.0...0.9.0) (2025-05-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * **release:** Update SDK to support VPC API version 2025-05-13 ([6402260](https://github.com/IBM/vpc-ruby-sdk/commit/6402260070a47a22c99e598e130506e59180dfda))
7
+
8
+ # [0.8.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.7.0...0.8.0) (2025-01-31)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **build:** update travis ([2ccb79a](https://github.com/IBM/vpc-ruby-sdk/commit/2ccb79af909ede6eeeb3d99fbfd6abc6a599f90b))
14
+ * **build:** update travis ([02df594](https://github.com/IBM/vpc-ruby-sdk/commit/02df59401b2f6808f7bb95be097a41c47ae0e2b7))
15
+ * **build:** update travis gem bundler version ([720ad65](https://github.com/IBM/vpc-ruby-sdk/commit/720ad6587a69ef21bd2a88001677ecbd4b1b1105))
16
+ * **build:** update travis nvm ([dade8fd](https://github.com/IBM/vpc-ruby-sdk/commit/dade8fda88d6b91a42c1370b5ce25aa6c0f19720))
17
+ * **build:** update travis.yml remove deprecated ruby version ([4886347](https://github.com/IBM/vpc-ruby-sdk/commit/48863474edb3dce6767520deb79788ad9a36cac7))
18
+
19
+
20
+ ### Features
21
+
22
+ * **release:** fixed github workflow ([5c76c27](https://github.com/IBM/vpc-ruby-sdk/commit/5c76c27085a03705eb309177035ff530ec6c8086))
23
+ * **release:** fixed github workflow ([f97a261](https://github.com/IBM/vpc-ruby-sdk/commit/f97a2614f21acfc188464a39e2a150687bdbf12d))
24
+ * **release:** fixed github workflow ([889f380](https://github.com/IBM/vpc-ruby-sdk/commit/889f380c2dd594fb34c0f0a0223a364afdb1ee07))
25
+ * **release:** fixed github workflow ([a83e6b0](https://github.com/IBM/vpc-ruby-sdk/commit/a83e6b07100c81b5ccc40214f5171a17d521d535))
26
+ * **release:** Update SDK to support VPC API version 2024-08-20 ([#28](https://github.com/IBM/vpc-ruby-sdk/issues/28)) ([d97d0df](https://github.com/IBM/vpc-ruby-sdk/commit/d97d0df05735adf6d96276eddf906b5ba1c71e1a))
27
+
1
28
  # [0.7.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.6.1...0.7.0) (2023-12-29)
2
29
 
3
30
 
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
- [![Build Status](https://travis.ibm.com/ibmcloud/vpc-ruby-sdk.svg?token=swhipuowmWLkVNjPbrfs&branch=master)](https://travis.ibm.com/ibmcloud/vpc-ruby-sdk)
1
+ [![Build](https://img.shields.io/github/actions/workflow/status/IBM/vpc-ruby-sdk/ci.yml?branch=master&label=Build)](https://github.com/IBM/vpc-ruby-sdk/actions/workflows/ci.yml)
2
2
  [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
3
3
  [![Gem Version](https://badge.fury.io/rb/ibm_vpc.svg)](https://badge.fury.io/rb/ibm_vpc)
4
+
4
5
  # IBM Cloud VPC Ruby SDK
5
6
 
6
7
  Ruby client library to interact with various [IBM Cloud VPC APIs](https://cloud.ibm.com/apidocs?category=compute).
data/ibm_vpc.gemspec CHANGED
@@ -28,10 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
29
  spec.require_paths = ["lib"]
30
30
 
31
- spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
32
- spec.add_runtime_dependency "http", "~> 5.1.1"
33
- spec.add_runtime_dependency "ibm_cloud_sdk_core", "~> 1.2.0"
34
- spec.add_runtime_dependency "jwt", "~> 2.2.1"
31
+ spec.add_runtime_dependency "ibm_cloud_sdk_core", "~> 1.3.0"
35
32
 
36
33
  spec.add_development_dependency "bundler", "~> 2.1"
37
34
  spec.add_development_dependency "dotenv", "~> 2.4"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IbmVpc
4
- VERSION = "0.7.0"
4
+ VERSION = "0.9.0"
5
5
  end