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

chore: bump the gomod group with 6 updates #175

Merged

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 13, 2023

Bumps the gomod group with 6 updates:

Package From To
github.com/aws/aws-sdk-go 1.44.314 1.45.8
github.com/chanzuckerberg/go-misc 1.10.4 1.10.6
github.com/go-errors/errors 1.4.2 1.5.0
github.com/go-git/go-git/v5 5.8.1 5.9.0
github.com/hashicorp/hcl/v2 2.17.0 2.18.0
github.com/jinzhu/copier 0.3.5 0.4.0

Updates github.com/aws/aws-sdk-go from 1.44.314 to 1.45.8

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.45.8 (2023-09-12)

Service Client Updates

  • service/ec2: Updates service API and documentation
    • This release adds support for restricting public sharing of AMIs through AMI Block Public Access
  • service/eventbridge: Updates service API and documentation
  • service/kendra: Updates service API and documentation
    • Amazon Kendra now supports confidence score buckets for retrieved passage results using the Retrieve API.

SDK Enhancements

  • service/glacier: Improve efficiency of tree hash algorithm
    • Refactor tree hashing to reduce allocations.

Release v1.45.7 (2023-09-11)

Service Client Updates

  • service/ecr: Updates service API, documentation, and examples
    • This release will have ValidationException be thrown from ECR LifecyclePolicy APIs in regions LifecyclePolicy is not supported, this includes existing Amazon Dedicated Cloud (ADC) regions. This release will also change Tag: TagValue and Tag: TagKey to required.
  • service/medialive: Updates service API and documentation
    • AWS Elemental Link now supports attaching a Link UHD device to a MediaConnect flow.
  • service/quicksight: Updates service API and documentation
    • This release launches new updates to QuickSight KPI visuals - support for sparklines, new templated layout and new targets for conditional formatting rules.

Release v1.45.6 (2023-09-08)

Service Client Updates

  • service/fsx: Updates service documentation
  • service/sagemaker: Updates service API and documentation
    • Autopilot APIs will now support holiday featurization for Timeseries models. The models will now hold holiday metadata and should be able to accommodate holiday effect during inference.
  • service/sso-admin: Updates service API, documentation, and paginators
  • service/workspaces: Updates service API and documentation
    • A new field "ErrorDetails" will be added to the output of "DescribeWorkspaceImages" API call. This field provides in-depth details about the error occurred during image import process. These details include the possible causes of the errors and troubleshooting information.

Release v1.45.5 (2023-09-07)

Service Client Updates

  • service/neptunedata: Updates service API
  • service/securityhub: Updates service documentation
  • service/simspaceweaver: Updates service API

Release v1.45.4 (2023-09-06)

Service Client Updates

  • service/appflow: Updates service API and documentation
  • service/ec2: Updates service API

... (truncated)

Commits

Updates github.com/chanzuckerberg/go-misc from 1.10.4 to 1.10.6

Commits

Updates github.com/go-errors/errors from 1.4.2 to 1.5.0

Commits

Updates github.com/go-git/go-git/v5 from 5.8.1 to 5.9.0

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.9.0

What's Changed

New Contributors

Full Changelog: go-git/go-git@v5.8.1...v5.9.0

Commits

Updates github.com/hashicorp/hcl/v2 from 2.17.0 to 2.18.0

Release notes

Sourced from github.com/hashicorp/hcl/v2's releases.

v2.18.0

Enhancements

  • HCL now uses the tables from Unicode 15 when performing string normalization and character segmentation. HCL was previously using the Unicode 13 tables.

    For calling applications where consistent Unicode support is important, consider also upgrading to Go 1.21 at the same time as adopting HCL v2.18.0 so that the standard library unicode tables (used for case folding, etc) will also be from Unicode 15.

v2.17.1

Enhancements

  • hclsyntax: When evaluating string templates that have a long known constant prefix, HCL will truncate the known prefix to avoid creating excessively-large refinements. String prefix refinements are intended primarily for relatively-short fixed prefixes, such as https:// at the start of a URL known to use that scheme. (#617)
  • ext/tryfunc: The "try" and "can" functions now handle unknown values slightly more precisely, and so can return known values in more situations when given expressions referring to unknown symbols. (#622)

Bugs Fixed

  • ext/typeexpr: Will no longer try to refine unknown values of unknown type when dealing with a user-specified type constraint containing the any keyword, avoiding an incorrect panic at runtime. (#625)
  • ext/typeexpr: Now correctly handles attempts to declare the same object type attribute multiple times by returning an error. Previously this could potentially panic by creating an incoherent internal state. (#624)
Changelog

Sourced from github.com/hashicorp/hcl/v2's changelog.

v2.18.0 (August 30, 2023)

Enhancements

  • HCL now uses the tables from Unicode 15 when performing string normalization and character segmentation. HCL was previously using the Unicode 13 tables.

    For calling applications where consistent Unicode support is important, consider also upgrading to Go 1.21 at the same time as adopting HCL v2.18.0 so that the standard library unicode tables (used for case folding, etc) will also be from Unicode 15.

v2.17.1 (August 30, 2023)

Enhancements

  • hclsyntax: When evaluating string templates that have a long known constant prefix, HCL will truncate the known prefix to avoid creating excessively-large refinements. String prefix refinements are intended primarily for relatively-short fixed prefixes, such as https:// at the start of a URL known to use that scheme. (#617)
  • ext/tryfunc: The "try" and "can" functions now handle unknown values slightly more precisely, and so can return known values in more situations when given expressions referring to unknown symbols. (#622)

Bugs Fixed

  • ext/typeexpr: Will no longer try to refine unknown values of unknown type when dealing with a user-specified type constraint containing the any keyword, avoiding an incorrect panic at runtime. (#625)
  • ext/typeexpr: Now correctly handles attempts to declare the same object type attribute multiple times by returning an error. Previously this could potentially panic by creating an incoherent internal state. (#624)
Commits
  • b82f55a v2.18.0 release
  • edfd5c9 Use Unicode 15 tables for unicode normalization and segmentation
  • fef0406 v2.17.1 release
  • 6b8265e Merge pull request #624 from hashicorp/terraform-33757
  • 3617411 hcldec: A test case for attributes set to cty.DynamicVal with refinements
  • ed6d4bf ext/typeexpr: Avoid refinements on dynamic values
  • 4259e4b Check for duplicate keys in objects when building types from expressions
  • a9f8d65 Merge pull request #622 from hashicorp/jbardin/can-try-unknowns
  • 6af2870 Allow can and try functions to handle more unknown
  • 527ec31 hclsyntax: Impose an upper limit on a refined prefix in TemplateExpr
  • See full diff in compare view

Updates github.com/jinzhu/copier from 0.3.5 to 0.4.0

Commits
  • 70b1d4e Merge pull request #190 from driventokill/feature/custom-field-names
  • 1835b1a ci: upgrade ci go version >=1.17
  • 5a54efd style: format copier_file_name_mapping_test.go
  • bacc10b fix: use CaseSensitive=true for legacy test cases
  • 7d39583 feat: Support custom file name mappings
  • 83982c7 Merge pull request #177 from jiang4869/master
  • f036a42 Merge pull request #178 from QianChenglong/master
  • 1885609 Merge pull request #180 from driventokill/issue/170
  • 780b83e fix: several issues while copy with custom converter
  • 61dc501 support case-insensitive copy
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gomod group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.44.314` | `1.45.8` |
| [github.com/chanzuckerberg/go-misc](https://github.com/chanzuckerberg/go-misc) | `1.10.4` | `1.10.6` |
| [github.com/go-errors/errors](https://github.com/go-errors/errors) | `1.4.2` | `1.5.0` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.8.1` | `5.9.0` |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) | `2.17.0` | `2.18.0` |
| [github.com/jinzhu/copier](https://github.com/jinzhu/copier) | `0.3.5` | `0.4.0` |


Updates `github.com/aws/aws-sdk-go` from 1.44.314 to 1.45.8
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.44.314...v1.45.8)

Updates `github.com/chanzuckerberg/go-misc` from 1.10.4 to 1.10.6
- [Release notes](https://github.com/chanzuckerberg/go-misc/releases)
- [Commits](chanzuckerberg/go-misc@v1.10.4...v1.10.6)

Updates `github.com/go-errors/errors` from 1.4.2 to 1.5.0
- [Release notes](https://github.com/go-errors/errors/releases)
- [Commits](go-errors/errors@v1.4.2...v1.5.0)

Updates `github.com/go-git/go-git/v5` from 5.8.1 to 5.9.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.8.1...v5.9.0)

Updates `github.com/hashicorp/hcl/v2` from 2.17.0 to 2.18.0
- [Release notes](https://github.com/hashicorp/hcl/releases)
- [Changelog](https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md)
- [Commits](hashicorp/hcl@v2.17.0...v2.18.0)

Updates `github.com/jinzhu/copier` from 0.3.5 to 0.4.0
- [Commits](jinzhu/copier@v0.3.5...v0.4.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/chanzuckerberg/go-misc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/go-errors/errors
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/hashicorp/hcl/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/jinzhu/copier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from vincenthsh as a code owner September 13, 2023 02:20
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 13, 2023

The following labels could not be found: bot/merge.

@vincenthsh
Copy link
Owner

need to bump golang from 1.19 to 1.21 to adopt go-errors v1.5
ref:
go-errors/errors#44

To enable dependabot auto merge, re-add checks
If a module was defined and referenced at the same time, fogg apply would fail
@vincenthsh vincenthsh merged commit 503db2f into feat-multi-module-components Sep 13, 2023
@vincenthsh vincenthsh deleted the dependabot/go_modules/gomod-8122933ae4 branch September 13, 2023 04:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant