Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: IBM/platform-services-go-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.19.3
Choose a base ref
...
head repository: IBM/platform-services-go-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.19.4
Choose a head ref
  • 6 commits
  • 8 files changed
  • 4 contributors

Commits on Aug 13, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2a4adb9 View commit details
  2. Copy the full SHA
    05fbd78 View commit details
  3. Copy the full SHA
    d0d581d View commit details

Commits on Aug 18, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c96c45f View commit details
  2. Copy the full SHA
    9a49c04 View commit details
  3. chore(release): 0.19.4 release notes [skip ci]

    ## [0.19.4](v0.19.3...v0.19.4) (2021-08-18)
    
    ### Bug Fixes
    
    * bump go core version to 5.6.3 ([#145](#145)) ([c96c45f](c96c45f))
    semantic-release-bot committed Aug 18, 2021
    Copy the full SHA
    0f6d7ca View commit details
Showing with 22 additions and 13 deletions.
  1. +1 −1 .bumpversion.cfg
  2. +2 −1 .travis.yml
  3. +7 −0 CHANGELOG.md
  4. +5 −2 Makefile
  5. +3 −3 README.md
  6. +1 −1 common/version.go
  7. +1 −1 go.mod
  8. +2 −4 go.sum
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.19.3
current_version = 0.19.4
commit = True
message = Update version {current_version} -> {new_version} [skip ci]

3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -19,8 +19,9 @@ before_install:
- npm install -g npm@6.x

install:
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.39.0
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.41.1
- curl -s https://codecov.io/bash > $HOME/codecov-bash.sh && chmod +x $HOME/codecov-bash.sh
- curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.8.1

script:
- make travis-ci
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.19.4](https://github.com/IBM/platform-services-go-sdk/compare/v0.19.3...v0.19.4) (2021-08-18)


### Bug Fixes

* bump go core version to 5.6.3 ([#145](https://github.com/IBM/platform-services-go-sdk/issues/145)) ([c96c45f](https://github.com/IBM/platform-services-go-sdk/commit/c96c45f144549f3a1861871ec225d79e2b33f293))

## [0.19.3](https://github.com/IBM/platform-services-go-sdk/compare/v0.19.2...v0.19.3) (2021-08-03)


7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@

COVERAGE = -coverprofile=coverage.txt -covermode=atomic

all: test lint tidy
travis-ci: test-cov lint tidy
all: tidy test lint
travis-ci: test-cov lint scan-gosec tidy

test:
go test `go list ./...`
@@ -20,5 +20,8 @@ test-int-cov:
lint:
golangci-lint run

scan-gosec:
gosec ./...

tidy:
go mod tidy
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
[![CLA assistant](https://cla-assistant.io/readme/badge/IBM/platform-services-go-sdk)](https://cla-assistant.io/IBM/platform-services-go-sdk)


# IBM Cloud Platform Services Go SDK Version 0.19.3
# IBM Cloud Platform Services Go SDK Version 0.19.4

Go client library to interact with various
[IBM Cloud Platform Service APIs](https://cloud.ibm.com/docs?tab=api-docs&category=platform_services).
@@ -46,7 +46,7 @@ The IBM Cloud Platform Services Go SDK allows developers to programmatically int

Service Name | Package name
--- | ---
[Activity Tracker](https://test.cloud.ibm.com/apidocs/atracker?code=go) | atrackerv1
[Activity Tracker](https://cloud.ibm.com/apidocs/atracker?code=go) | atrackerv1
[Case Management](https://cloud.ibm.com/apidocs/case-management?code=go) | casemanagementv1
[Catalog Management](https://cloud.ibm.com/apidocs/resource-catalog/private-catalog?code=go) | catalogmanagementv1
[Configuration Governance](https://cloud.ibm.com/apidocs/security-compliance/config?code=go) | configurationgovernancev1
@@ -78,7 +78,7 @@ Service Name | Package name
* Go version 1.14 or above.

## Installation
The current version of this SDK: 0.19.3
The current version of this SDK: 0.19.4

### Go modules
If your application uses Go modules for dependency management (recommended), just add an import for each service
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
@@ -17,4 +17,4 @@
package common

// Version of the SDK
const Version = "0.19.3"
const Version = "0.19.4"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ module github.com/IBM/platform-services-go-sdk
go 1.14

require (
github.com/IBM/go-sdk-core/v5 v5.5.1
github.com/IBM/go-sdk-core/v5 v5.6.3
github.com/go-openapi/strfmt v0.20.1
github.com/google/uuid v1.2.0
github.com/onsi/ginkgo v1.14.2
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/IBM/go-sdk-core/v5 v5.5.1 h1:Hb4xB1BL8L6uCnskIqSCxF9wLfOmj4+sVzM5vFtuhs4=
github.com/IBM/go-sdk-core/v5 v5.5.1/go.mod h1:Sn+z+qTDREQvCr+UFa22TqqfXNxx3o723y8GsfLV8e0=
github.com/IBM/go-sdk-core/v5 v5.6.3 h1:xj44tzfBnjGJXKthMeaIn9wcYH+z4dXTuhntsBp+NdQ=
github.com/IBM/go-sdk-core/v5 v5.6.3/go.mod h1:tt/B9rxLkRtglE7pvqLuYikgCXaZFL3btdruJaoUeek=
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef h1:46PFijGLmAjMPwCCCo7Jf0W6f9slllCkkv7vyc1yOSg=
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw=
github.com/aws/aws-sdk-go v1.34.28/go.mod h1:H7NKnBqNVzoTJpGfLrQkkD+ytBA93eiDYi/+8rV9s48=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/form3tech-oss/jwt-go v3.2.2+incompatible h1:TcekIExNqud5crz4xD2pavyTgWiPvpYe4Xau31I0PRk=
github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=