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.68.0
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.68.1
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on Aug 30, 2024

  1. fix(ATracker): re-gen service after es s2s API changes and hand edits…

    … for examples and IT (#352)
    
    Signed-off-by: Helen Xu <helenxu@ca.ibm.com>
    helenxu1221 authored Aug 30, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f7efa3d View commit details
  2. Copy the full SHA
    cfbcd86 View commit details
  3. chore(release): 0.68.1 release notes [skip ci]

    ## [0.68.1](v0.68.0...v0.68.1) (2024-08-30)
    
    ### Bug Fixes
    
    * **ATracker:** re-gen service after es s2s API changes and hand edits for examples and IT ([#352](#352)) ([f7efa3d](f7efa3d))
    semantic-release-bot committed Aug 30, 2024
    Copy the full SHA
    6fcc164 View commit details
Showing with 430 additions and 75 deletions.
  1. +1 −1 .bumpversion.toml
  2. +7 −0 CHANGELOG.md
  3. +2 −2 README.md
  4. +269 −37 atrackerv2/atracker_v2.go
  5. +0 −3 atrackerv2/atracker_v2_examples_test.go
  6. +15 −15 atrackerv2/atracker_v2_integration_test.go
  7. +135 −16 atrackerv2/atracker_v2_test.go
  8. +1 −1 common/version.go
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.68.0"
current_version = "0.68.1"
commit = true
message = "Update version {current_version} -> {new_version} [skip ci]"

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.68.1](https://github.com/IBM/platform-services-go-sdk/compare/v0.68.0...v0.68.1) (2024-08-30)


### Bug Fixes

* **ATracker:** re-gen service after es s2s API changes and hand edits for examples and IT ([#352](https://github.com/IBM/platform-services-go-sdk/issues/352)) ([f7efa3d](https://github.com/IBM/platform-services-go-sdk/commit/f7efa3df92b8436f8a06ab61e4f5f84fb56e4b4f))

# [0.68.0](https://github.com/IBM/platform-services-go-sdk/compare/v0.67.0...v0.68.0) (2024-08-29)


4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -7,7 +7,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.68.0
# IBM Cloud Platform Services Go SDK Version 0.68.1

Go client library to interact with various
[IBM Cloud Platform Service APIs](https://cloud.ibm.com/docs?tab=api-docs&category=platform_services).
@@ -88,7 +88,7 @@ Service Name | Package name
* Go version 1.20 or above.

## Installation
The current version of this SDK: 0.68.0
The current version of this SDK: 0.68.1

### Go modules
If your application uses Go modules for dependency management (recommended), just add an import for each service
Loading