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

Bump Minor version for Golang module #1343

Conversation

updateclibot[bot]
Copy link
Contributor

@updateclibot updateclibot bot commented May 25, 2023

Update Golang module github.com/stretchr/testify

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/stretchr/testify Golang module version

go.mod updated Module path "github.com/stretchr/testify" version from "v1.8.3" to "v1.8.4"

v1.8.4
Changelog retrieved from:
	https://github.com/stretchr/testify/releases/tag/v1.8.4

Update Golang module github.com/BurntSushi/toml

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/BurntSushi/toml Golang module version

go.mod updated Module path "github.com/BurntSushi/toml" version from "v1.2.1" to "v1.3.0"

v1.3.0
Changelog retrieved from:
	https://github.com/BurntSushi/toml/releases/tag/v1.3.0
New features:

- Support upcoming TOML 1.1

  While it looks like TOML 1.1 is mostly stable and I don't expect any further major changes, there are *NO* compatibility guarantees as it is *NOT* yet released and *anything can still change*.

  To use it, set the `BURNTSUSHI_TOML_110` environment variable to any value, which can be done either with `os.SetEnv()` or by the user running a program.

  A full list is changes is available in the [TOML ChangeLog]; the two most notable ones are that newlines and trailing commas are now allowed in inline tables, and Unicode in bare keys can now be used – this is now a valid document:

      lëttërs = {
        ä = "a with diaeresis",
        è = "e with accent grave",
      }

  [TOML ChangeLog]: https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

- Allow MarshalTOML and MarshalText to be used on the document type itself, instead of only fields (#383).

Bufixes:

- `\` escapes at the end of line weren't processed correctly in multiline strings (#372).

- Read over UTF-8 BOM (#381).

- `omitempty` struct tag did not work for pointer values (#371).

- Fix encoding anonymous structs on 32bit systems (#374).

Update Golang module golang.org/x/oauth2

Run Go mod tidy

ran shell command "go mod tidy"

Update golang.org/x/oauth2 Golang module version

go.mod updated Module path "golang.org/x/oauth2" version from "v0.7.0" to "v0.8.0"

Update Golang module github.com/moby/buildkit

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/moby/buildkit Golang module version

go.mod updated Module path "github.com/moby/buildkit" version from "v0.10.6" to "v0.11.6"

v0.11.6
Changelog retrieved from:
	https://github.com/moby/buildkit/releases/tag/v0.11.6
https://hub.docker.com/r/moby/buildkit

Notable changes:
- Revert previous signal handling fix to make sure no process leaks happen. The signaling issue will be fixed in the next feature release. https://github.com/moby/buildkit/pull/3757
- Update runc to v1.1.5 for security https://github.com/moby/buildkit/pull/3763
- Update containerd to v1.6.20 . Brings in fix for not writing local user/group names in differ. #3736
- Fix possible "duplicate output 0" error on parallel builds #3774
- Fix token management for servers that don't return proper `IssuedAt` value #3779
- Fix SBOM and provenance processing for certain nil-result cases #3805

Update Golang module github.com/google/go-containerregistry

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/google/go-containerregistry Golang module version

go.mod updated Module path "github.com/google/go-containerregistry" version from "v0.13.0" to "v0.15.2"

v0.15.2
Changelog retrieved from:
	https://github.com/google/go-containerregistry/releases/tag/v0.15.2
## What's Changed
* Make 403 non-fatal for manifest existence checks by @jonjohnsonjr in https://github.com/google/go-containerregistry/pull/1691
* Do not reuse pushers for pullers by @jonjohnsonjr in https://github.com/google/go-containerregistry/pull/1701


**Full Changelog**: https://github.com/google/go-containerregistry/compare/v0.15.1...v0.15.2

Update Golang module github.com/go-git/go-git/v5

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/go-git/go-git/v5 Golang module version

go.mod updated Module path "github.com/go-git/go-git/v5" version from "v5.6.1" to "v5.7.0"

v5.7.0
Changelog retrieved from:
	https://github.com/go-git/go-git/releases/tag/v5.7.0
## What's Changed

* *: Add support for initializing SHA256 repositories by @pjbgf in https://github.com/go-git/go-git/pull/707
* git: add mirror clone option by @aymanbagabas in https://github.com/go-git/go-git/pull/735
* git: Add support to ls-remote with peeled references. Fixes #749 by @pjbgf in https://github.com/go-git/go-git/pull/750
* git: fix cloning with branch name by @AriehSchneier in https://github.com/go-git/go-git/pull/755
* git: Worktree, add check to see if file already checked in. Fixes #718 by @cbbm142 in https://github.com/go-git/go-git/pull/719 
* git: Worktree, git grep bare repositories by @aymanbagabas in https://github.com/go-git/go-git/pull/728
* git: Add Depth to SubmoduleUpdateOptions by @matejrisek in https://github.com/go-git/go-git/pull/754
* git: Testing, Fix tests not cleaning temp folders by @AriehSchneier in https://github.com/go-git/go-git/pull/769
* git: remote, add support for a configurable timeout. by @andrewpollock in https://github.com/go-git/go-git/pull/753
* git: Allow Initial Branch to be configurable by @techknowlogick in https://github.com/go-git/go-git/pull/764
* storage: filesystem/dotgit, Improve load packed-refs by @fcharlie in https://github.com/go-git/go-git/pull/743
* storage: filesystem, Populate index before use. Fixes #148 by @AriehSchneier in https://github.com/go-git/go-git/pull/722
* plumbing: resolve non-external delta references by @ZauberNerd in https://github.com/go-git/go-git/pull/485
* plumbing/transport: fix regression in scp-like match by @jotadrilo in https://github.com/go-git/go-git/pull/715
* plumbing/transport: Add support for custom proxy settings by @aryan9600 in https://github.com/go-git/go-git/pull/744
* *: small fixes across the codebase by @pjbgf in https://github.com/go-git/go-git/pull/770
* *: bump github.com/cloudflare/circl from 1.1.0 to 1.3.3 by @dependabot in https://github.com/go-git/go-git/pull/776
* *: bump dependencies by @pjbgf in https://github.com/go-git/go-git/pull/748
* *: bump Go version to 1.18 on go.mod by @pjbgf in https://github.com/go-git/go-git/pull/774
* *: add Codeql workflow and bump dependencies by @pjbgf in https://github.com/go-git/go-git/pull/775
* ci: fix upstream git build for master branch by @pjbgf in https://github.com/go-git/go-git/pull/739

## New Contributors
* @ZauberNerd made their first contribution in https://github.com/go-git/go-git/pull/485
* @jotadrilo made their first contribution in https://github.com/go-git/go-git/pull/715
* @fcharlie made their first contribution in https://github.com/go-git/go-git/pull/743
* @AriehSchneier made their first contribution in https://github.com/go-git/go-git/pull/755
* @cbbm142 made their first contribution in https://github.com/go-git/go-git/pull/719
* @aryan9600 made their first contribution in https://github.com/go-git/go-git/pull/744
* @matejrisek made their first contribution in https://github.com/go-git/go-git/pull/754
* @andrewpollock made their first contribution in https://github.com/go-git/go-git/pull/753
* @techknowlogick made their first contribution in https://github.com/go-git/go-git/pull/764

**Full Changelog**: https://github.com/go-git/go-git/compare/v5.6.1...v5.7.0

Update Golang module github.com/beevik/etree

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/beevik/etree Golang module version

go.mod updated Module path "github.com/beevik/etree" version from "v1.1.4" to "v1.2.0"

v1.2.0
Changelog retrieved from:
	https://github.com/beevik/etree/releases/tag/v1.2.0
**New Features**

* Add the ability to write XML fragments using Token WriteTo functions.
* Add the ability to re-indent an XML element as though it were the root of the document.
* Add a ReadSettings option to preserve CDATA blocks when reading an XML document.

Update Golang module helm.sh/helm/v3

Run Go mod tidy

ran shell command "go mod tidy"

Update helm.sh/helm/v3 Golang module version

go.mod updated Module path "helm.sh/helm/v3" version from "v3.11.3" to "v3.12.0"

Update Golang module github.com/aws/aws-sdk-go

Run Go mod tidy

ran shell command "go mod tidy"

Update github.com/aws/aws-sdk-go Golang module version

go.mod updated Module path "github.com/aws/aws-sdk-go" version from "v1.44.272" to "v1.44.273"

v1.44.271
Changelog retrieved from:
	https://github.com/aws/aws-sdk-go/releases/tag/v1.44.271
Release v1.44.271 (2023-05-26)
===

### Service Client Updates
* `service/connect`: Updates service API
* `service/iotwireless`: Updates service API and documentation
* `service/sagemaker`: Updates service API
  * Added ml.p4d and ml.inf1 as supported instance type families for SageMaker Notebook Instances.

v1.44.272
Changelog retrieved from:
	https://github.com/aws/aws-sdk-go/releases/tag/v1.44.272
Release v1.44.272 (2023-05-30)
===

### Service Client Updates
* `service/chime-sdk-voice`: Updates service API and documentation
* `service/glue`: Updates service API and documentation
  * Added Runtime parameter to allow selection of Ray Runtime
* `service/groundstation`: Updates service documentation
* `service/iotfleetwise`: Updates service API and documentation
* `service/location`: Updates service API and documentation
* `service/memorydb`: Updates service API
* `service/personalize`: Updates service API and documentation
* `service/polly`: Updates service API
  * Amazon Polly adds 2 new voices - Sofie (da-DK) and Niamh (en-IE)
* `service/securityhub`: Updates service API, documentation, and examples
* `service/securitylake`: Updates service API, documentation, and paginators
* `service/wafv2`: Updates service API and documentation

v1.44.273
Changelog retrieved from:
	https://github.com/aws/aws-sdk-go/releases/tag/v1.44.273
Release v1.44.273 (2023-05-31)
===

### Service Client Updates
* `service/config`: Updates service API and documentation
* `service/frauddetector`: Updates service API and documentation
* `service/healthlake`: Updates service API and documentation
* `service/m2`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release adds support for changing the engine for Oracle using the ModifyDbInstance API
* `service/servicecatalog`: Updates service documentation
  * Documentation updates for ServiceCatalog.
* `service/workspaces-web`: Updates service API, documentation, and paginators


Updatecli logo

Created automatically by Updatecli

Options:

Most of Updatecli configuration is done via its manifest(s).

  • If you close this pull request, Updatecli will automatically reopen it, the next time it runs.
  • If you close this pull request and delete the base branch, Updatecli will automatically recreate it, erasing all previous commits made.

Feel free to report any issues at github.com/updatecli/updatecli.
If you find this tool useful, do not hesitate to star our GitHub repository as a sign of appreciation, and/or to tell us directly on our chat!

Unknown author added 2 commits May 25, 2023 20:27
... 11.3" to "v3.12.0"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
@updateclibot updateclibot bot added the dependencies Pull requests that update a dependency file label May 25, 2023
Unknown author and others added 23 commits May 25, 2023 20:28
... stry" version from "v0.13.0" to "v0.15.2"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
... "v0.7.0" to "v0.8.0"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
... on from "v5.6.1" to "v5.7.0"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
... from "v0.10.6" to "v0.11.6"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
... rom "v1.1.4" to "v1.2.0"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
...  from "v1.44.270" to "v1.44.271"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
... on from "v1.8.3" to "v1.8.4"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
... n from "v1.2.1" to "v1.3.0"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
...  from "v1.44.271" to "v1.44.272"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
...  from "v1.44.272" to "v1.44.273"

Made with ❤️️ by updatecli
Made with ❤️️ by updatecli
Signed-off-by: Olblak <me@olblak.com>
@olblak olblak enabled auto-merge (squash) June 1, 2023 14:27
@olblak olblak merged commit 828d9ed into main Jun 1, 2023
9 checks passed
@olblak olblak deleted the updatecli_69df2c0bba3e4c09346178ffef3904ebdf55645e2247465397918ab7754a0b38 branch June 1, 2023 14:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant