Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/gruntwork-io/go-commons to v0.17.1 - autoclosed #295

Merged
merged 1 commit into from
Jun 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 5, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/gruntwork-io/go-commons v0.8.2 -> v0.17.1 age adoption passing confidence

Release Notes

gruntwork-io/go-commons (github.com/gruntwork-io/go-commons)

v0.17.1

Compare Source

What's Changed

  • Added methods for converting maps to slices. #​94
  • Added methods for convenient getting environment variables. #​94

Full Changelog: gruntwork-io/go-commons@v0.17.0...v0.17.1

v0.17.0

Compare Source

What's Changed

Full Changelog: gruntwork-io/go-commons@v0.16.2...v0.17.0

Migration Guide

The application no longer needs to provide a mixpanel_token to the telemetry library

v0.16.2

Compare Source

What's Changed

Full Changelog: gruntwork-io/go-commons@v0.16.1...v0.16.2

v0.16.1

Compare Source

What's Changed

Full Changelog: gruntwork-io/go-commons@v0.16.0...v0.16.1

v0.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/go-commons@v0.15.0...v0.16.0

v0.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/go-commons@v0.14.0...v0.15.0

Migration Guide

Previously cli applications were created by calling entrypoint.NewApp(), then the application name and version were set after the fact for both the logging and the CLI description.
The new way to do this is a single call to entrypoint.NewApp(name, version)

Calling logging.GetLogger(name, version) will now return a logrus Entry instead of a logrus Logger. This entry has the name and version preset.

The behavior of the default logger is the same as in previous versions of go-commons.

A new JSON logger is available by calling logging.SetGLobalLogFormatter("json")

v0.14.0

Compare Source

Description

The minimum supported version of Go has been updated to 1.18.

Migration guide

go-commons no longer supports any go version under 1.18. If you need to use go-commons going forward, you will need to update to at least go version 1.18 in your project.

Related links

Full Changelog: gruntwork-io/go-commons@v0.13.5...v0.14.0

v0.13.5

Compare Source

What's Changed

Full Changelog: gruntwork-io/go-commons@v0.13.4...v0.13.5

v0.13.4

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/go-commons@v0.13.3...v0.13.4

v0.13.3

Compare Source

Description

  • Added a new function collections.KeyValueStringSliceAsMap which can be used to work with a slice of key=value pairs.

Related links

v0.13.2

Compare Source

Description

  • Fixed bug in github package where json unmarshalling was improperly implemented.

Related links

v0.13.1

Compare Source

Description

  • Introduced a new package github that will contain helper routines for interacting with GitHub. For the first release, this package exposes a new high level function for getting an installation token for a GitHub App so you can use it to auth to the API.

Related links

v0.13.0

Compare Source

Description

  • Updated underlying dependency versions to latest. As a part of this, the minimum supported version of go has been updated to 1.17.

Migration guide

go-commons no longer supports any go version under 1.17. If you need to use go-commons going forward, you will need to update to at least go version 1.17 in your project.

Related links

v0.12.5

Compare Source

Modules affected
  • collections
Description
  • Added KeyValueStringSlice and KeyValueStringSliceWithFormat functions to convert a map into a string slice using the default or specified format.
Related links

https://github.com/gruntwork-io/go-commons/pull/65

v0.12.4

Compare Source

Modules affected
  • url
Description
  • Added OpenURL function to provide a cross-platform means of opening an arbitrary URL in the user's browser from within a Golang program.
Related links

https://github.com/gruntwork-io/go-commons/pull/64

v0.12.3

Compare Source

Modules affected
  • git
Description
  • Added ConfigureCacheCredentialsHelper and StoreCacheCredentials functions to give CLI tools more control over the credential caching behavior of git, allowing you to have mixed credentials for accessing different repos.
Related links

https://github.com/gruntwork-io/go-commons/pull/61

v0.12.2

Compare Source

Modules affected
  • lock
Description
  • Added ScanLocks function to support functionality reporting on all currently held locks.

v0.12.1

Compare Source

Modules affected
  • lock
Description
  • Added the ability to provide an AWS Session directly to the lock functions to customize auth behavior of the SDK.
Related links

https://github.com/gruntwork-io/go-commons/pull/58

v0.12.0

Compare Source

Modules affected
  • git [BACKWARD INCOMPATIBLE]
Description
  • Updated all git functions to accept a logrus.Logger object. This allows you to customize the logging options of the function (including suppressing the log entries with io.Discard).
Migration guide

The functions in the git module has been updated to require a logrus.Logger object to be passed in to use as the logger for the git commands. You can pass in nil for the new arg to retain the old behavior.

Related links

https://github.com/gruntwork-io/go-commons/pull/57

v0.11.0

Compare Source

Modules affected
  • entrypoint [BACKWARD INCOMPATIBLE]
  • errors
Description
  • Updated dependency urfave/cli to v2 branch. All usage of urfave/cli needs to update to v2. Refer to the urfave/cli v1 to v2 migration guide for information on how to update downstream projects to this version.
Related links

https://github.com/gruntwork-io/go-commons/pull/33

v0.10.2

Compare Source

Modules affected
  • awscommons
Description
  • Added new function for retrieving all enabled regions in an account.
Related links

https://github.com/gruntwork-io/go-commons/pull/56

v0.10.1

Compare Source

Modules affected
  • git [NEW]
Description
  • Added new functions for interacting with the git CLI.
Related links

https://github.com/gruntwork-io/go-commons/pull/55

v0.10.0

Compare Source

Modules affected
  • shell [BACKWARD INCOMPATIBLE]
  • awscommons
Description
  • Add new function to upload string contents to S3 bucket.
  • Refactor shell functions to use a common underlying runtime interface.
  • New shell run command functions RunShellCommandAndGetOutputStruct and RunShellCommandAndGetOutputStructAndStreamOutput which will return a struct that captures stdout, stderr, and merged outputs so you can access all of those outputs.
  • Refactor implementation of streaming and capturing outputs. This implementation respects the ordering in stdout and stderr better. The previous implementation always preferred to read stdout over stderr, which resulted in delaying the streaming of stderr if both were simultaneously written to. The updated implementation will properly interleave the contents regardless of timing.

NOTE: This release introduces changes that modify the behavior of the captured and streamed outputs for the *StreamOutput shell functions. Specifically, the streamed logs are now more interleaved, and the output strings will include terminating newlines if the original stdout/stderr included a terminating newline before EOF.

Related links

https://github.com/gruntwork-io/go-commons/pull/51
https://github.com/gruntwork-io/go-commons/pull/52

v0.9.2

Compare Source

Modules affected
  • lock [NEW]
Description
  • Add new functionality to allow locking of resources when they're being used from multiple places simultaneously.
    We expect this to be useful especially when testing AWS resources/services which can only be enabled once for the whole AWS Account - such as SecurityHub, GuardDuty, or any others.
Related links

https://github.com/gruntwork-io/go-commons/pull/46
https://github.com/gruntwork-io/go-commons/pull/47

v0.9.1

Compare Source

Modules affected
  • awscommons [NEW]
Description
  • Add new functions to interact with the AWS API using the AWS SDK for Go V2.
Related links

https://github.com/gruntwork-io/go-commons/pull/43

v0.9.0

Compare Source

Modules affected
  • version [BACKWARD INCOMPATIBLE]
Description

This release renames the VERSION variable in the version package to Version to align with conventional Go style. The Version() func has also been renamed to GetVersion().

Related links

https://github.com/gruntwork-io/go-commons/pull/45


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label Jun 5, 2024
Copy link
Contributor Author

renovate bot commented Jun 5, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
github.com/go-errors/errors v1.0.2-0.20180813162953-d98b870cc4e0 -> v1.4.2

@Alan-pad Alan-pad merged commit fde7485 into main Jun 19, 2024
5 checks passed
@renovate renovate bot changed the title fix(deps): update module github.com/gruntwork-io/go-commons to v0.17.1 fix(deps): update module github.com/gruntwork-io/go-commons to v0.17.1 - autoclosed Jun 19, 2024
@renovate renovate bot deleted the renovate/git.luolix.top-gruntwork-io-go-commons-0.x branch June 19, 2024 06:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant