Skip to content

Commit

Permalink
Merge pull request #29 from IBM/saikumar1607-202304120558
Browse files Browse the repository at this point in the history
bump dependencies
  • Loading branch information
ibm-cloud-appconfiguration committed Apr 12, 2023
2 parents f6e9785 + d4545c5 commit f212098
Show file tree
Hide file tree
Showing 7 changed files with 155 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
repos:
- repo: git@github.ibm.com:Whitewater/whitewater-detect-secrets
# If you desire to use a specific version of whitewater-detect-secrets, you can replace `master` with other git revisions such as branch, tag or commit sha.
rev: 0.13.1+ibm.51.dss
rev: 0.13.1+ibm.57.dss
hooks:
- id: detect-secrets # pragma: whitelist secret
# Add options for detect-secrets-hook binary. You can run `detect-secrets-hook --help` to list out all possible options.
Expand Down
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "^.secrets.baseline$|go.sum|vendor|.cra/.cveignore",
"lines": null
},
"generated_at": "2022-09-16T07:36:07Z",
"generated_at": "2023-04-12T06:00:07Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down Expand Up @@ -61,7 +61,7 @@
}
],
"results": {},
"version": "0.13.1+ibm.51.dss",
"version": "0.13.1+ibm.58.dss",
"word_list": {
"file": null,
"hash": null
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IBM Cloud App Configuration Go server SDK 0.3.2
# IBM Cloud App Configuration Go server SDK 0.3.3

IBM Cloud App Configuration SDK is used to perform feature flag and property evaluation based on the configuration on
IBM Cloud App Configuration service.
Expand Down
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module examples
go 1.16

require (
github.com/IBM/appconfiguration-go-sdk v0.3.2
github.com/IBM/appconfiguration-go-sdk v0.3.3
github.com/gorilla/mux v1.7.2
github.com/joho/godotenv v1.4.0
)
19 changes: 10 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ module github.com/IBM/appconfiguration-go-sdk
go 1.16

require (
github.com/IBM/go-sdk-core/v5 v5.10.2
github.com/IBM/secrets-manager-go-sdk v1.0.45
github.com/google/uuid v1.2.0 // indirect
github.com/gorilla/websocket v1.4.2
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/IBM/go-sdk-core/v5 v5.13.1
github.com/IBM/secrets-manager-go-sdk v1.0.49
github.com/go-openapi/strfmt v0.21.7 // indirect
github.com/go-playground/validator/v10 v10.12.0 // indirect
github.com/gorilla/websocket v1.5.0
github.com/leodido/go-urn v1.2.3 // indirect
github.com/robfig/cron v1.2.0
github.com/sirupsen/logrus v1.7.0
github.com/sirupsen/logrus v1.9.0
github.com/spaolacci/murmur3 v1.1.0
github.com/stretchr/testify v1.8.0
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
github.com/stretchr/testify v1.8.2
go.mongodb.org/mongo-driver v1.11.4 // indirect
golang.org/x/crypto v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)

Expand Down
184 changes: 139 additions & 45 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/internal/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const DefaultEntityID = "$$null$$"
const DefaultUsageLimit = 10

// UserAgent specifies the user agent name
const UserAgent = "appconfiguration-go-sdk/0.3.2"
const UserAgent = "appconfiguration-go-sdk/0.3.3"

// ConfigurationFile : Name of file to which configurations will be written
const ConfigurationFile = "appconfiguration.json"
Expand Down

0 comments on commit f212098

Please sign in to comment.