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 all non-major dependencies (go) #24

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-coveooss[bot]
Copy link

@renovate-coveooss renovate-coveooss bot commented Oct 29, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/coveooss/go-sentry/v2 v2.3.1 -> v2.42.42 age adoption passing confidence
github.com/hashicorp/terraform-plugin-docs v0.14.1 -> v0.20.1 age adoption passing confidence
github.com/hashicorp/terraform-plugin-log v0.8.0 -> v0.9.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-sdk/v2 v2.25.0 -> v2.35.0 age adoption passing confidence
github.com/jianyuan/go-sentry/v2 v2.2.0 -> v2.8.4 age adoption passing confidence
golang.org/x/oauth2 v0.5.0 -> v0.24.0 age adoption passing confidence
golang.org/x/sync v0.1.0 -> v0.10.0 age adoption passing confidence

Release Notes

coveooss/go-sentry (github.com/coveooss/go-sentry/v2)

v2.42.42: Internal Fix/Hack release

Compare Source

For people passing by, this is simply for golang to pick up the new code and should not be considered a serious release.

hashicorp/terraform-plugin-docs (github.com/hashicorp/terraform-plugin-docs)

v0.20.1

Compare Source

BUG FIXES:

  • validate: Fixed a bug that caused false positive validation errors for resource types that have the same name as the provider. (#​419)
  • generate: Fixed a bug that caused all generated resource documentation to have the same content when the provider has a resource type with the same name as the provider. (#​419)
  • generate: Fixed a bug that would return an error when a static file exists in both templates and docs, which will now be ignored. (#​421)

v0.20.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​400)

FEATURES:

  • generate: Add support for ephemeral resources (#​415)
  • migrate: Add support for ephemeral resources (#​415)
  • validate: Add support for ephemeral resources (#​415)

BUG FIXES:

  • validate: File extension check now runs on index.* files instead of just index.md files. (#​413)
  • validate: File extension check now specifies the correct valid extensions in the error message. (#​413)
  • validate: Front matter check now runs with the correct options on legacy index files. (#​413)

v0.19.4

Compare Source

NOTES:

  • validate: The number of files check has been removed to match the latest Terraform Registry ingress logic (#​381)

BUG FIXES:

  • generate: Prevented incorrect attribute paths with nested attributes that contain multiple attributes (#​380)

v0.19.3

Compare Source

BUG FIXES:

  • validate: Fixed issue with provider name not defaulting to directory (#​376)

v0.19.2

Compare Source

BUG FIXES:

  • migrate: Ensured idempotency of template files when command is ran multiple times (#​364)
  • generate: Prevented automatic id attribute behaviors under blocks (#​365)

v0.19.1

Compare Source

BUG FIXES:

  • generate: fixed a bug where attribute titles were not being generated for nested object attributes (#​357)
  • generate: fixed a bug where the plainmarkdown function did not output plain URLs (#​361)

v0.19.0

Compare Source

BREAKING CHANGES:

  • generate: the plainmarkdown function now removes all markdown elements/formatting to render the output as plain text (#​332)
  • schemamd: The schemamd package has moved to internal/schemamd and can no longer be imported (#​354)
  • functionmd: The functionmd package has moved to internal/functionmd and can no longer be imported (#​354)

FEATURES:

  • validate: Added support for Provider-defined Function documentation to all checks (#​341)
  • validate: Added InvalidDirectoriesCheck which checks for valid provider documentation folder structure (#​341)
  • validate: Added MixedDirectoriesCheck which throws an error if both legacy documentation and registry documentation are found (#​341)
  • validate: Added NumberOfFilesCheck which checks the number of provider documentation files against the registry limit (#​341)
  • validate: Added FileSizeCheck which checks the provider documentation file size against the registry limit (#​341)
  • validate: Added FileExtensionCheck which checks for valid provider documentation file extensions (#​341)
  • validate: Added FrontMatterCheck which checks the YAML frontmatter of provider documentation for missing required fields or invalid fields (#​341)
  • validate: Added FileMismatchCheck which checks the names/number of provider documentation files against the provider schema (#​341)

ENHANCEMENTS:

  • migrate: Added --provider-name flag to override the default provider name when any file names that contain provider name prefixes are removed during migration (#​349)

BUG FIXES:

  • migrate: use relative paths (from provider directory) instead of absolute paths for migrated code templates (#​330)
  • migrate: fixed a bug where documentation files with provider name prefixes were migrated to templates directory as-is, causing generate to create duplicate templates (#​349)
  • generate: fixed a bug where incorrect attribute titles were being generated for certain nested schemas (#​350)

v0.18.0

Compare Source

FEATURES:

  • generate: Add support for Provider-defined Function documentation (#​328)
  • migrate: Add support for Provider-defined Function documentation (#​328)

ENHANCEMENTS:

  • validate: Add functions to list of allowed template and rendered website subdirectories (#​328)

v0.17.0

Compare Source

BREAKING CHANGES:

  • generate: templates using printf with either codefile or tffile to render code examples in markdown will need to switch to using those functions directly.
    For example, switch the following template code:
    {{printf "{{codefile \"shell\" %q}}" .ImportFile}}
    to
    {{codefile "shell" .ImportFile}} (#​300)

FEATURES:

  • migrate: Added new migrate subcommand that migrates existing provider docs using the rendered website source directories (website/docs/ or /docs/) to a terraform-plugin-docs-supported templates directory. (#​314)

ENHANCEMENTS:

  • generate: Add provider-schema flag to pass in a file path to a provider schema JSON file, allowing the command to skip building the provider and calling Terraform CLI (#​299)

BUG FIXES:

  • generate: fix no such file or directory error when running generate with no existing rendered website directory. (#​296)
  • generate: fix incorrect rendering of example and import files for providers with no docs templates or with generic fallback templates. (#​300)

v0.16.0

Compare Source

ENHANCEMENTS:

  • generate: Prevent files and subdirectories in the rendered website directory that are not directly managed by tfplugindocs from being deleted during generation (#​267)
  • validate: Add cdktf to list of allowed rendered website subdirectories (#​267)

v0.15.0

Compare Source

BREAKING CHANGES:

  • generate: The legacy-sidebar flag has been removed without replacement. It implemented no logic and is not necessary with Terraform Registry based documentation (#​258)

NOTES:

  • This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​231)

ENHANCEMENTS:

  • generate: Added provider-dir flag, which enables the command to be run from any directory (#​259)
hashicorp/terraform-plugin-log (github.com/hashicorp/terraform-plugin-log)

v0.9.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​137)

ENHANCEMENTS:

  • tfsdklog: Improved logging performance 20x when logs would be skipped due to logging level (#​149)
hashicorp/terraform-plugin-sdk (github.com/hashicorp/terraform-plugin-sdk/v2)

v2.35.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​1373)
  • helper/schema: While this Go module will not receive support for ephemeral resource types, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#​1390)

v2.34.0

Compare Source

NOTES:

  • all: The v2.33.0 release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#​1318)
  • This release contains support for deferred actions, which is an experimental feature only available in prerelease builds of Terraform 1.9 and later. This functionality is subject to change and is not protected by version compatibility guarantees. (#​1335)

FEATURES:

  • helper/schema: Added (Provider).ConfigureProvider function for configuring providers that support additional features, such as deferred actions. (#​1335)
  • helper/schema: Added (Resource).ResourceBehavior to allow additional control over deferred action behavior during plan modification. (#​1335)

v2.33.0

Compare Source

NOTES:

  • helper/schema: While this Go module will not receive support for provider defined functions, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future (#​1316)

v2.32.0

Compare Source

NOTES:

  • helper/schema: While this Go module will not receive support for moving resource state across resource types, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#​1307)

v2.31.0

Compare Source

NOTES:

  • helper/schema: While this Go module will not receive support for provider-defined functions, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#​1288)

v2.30.0

Compare Source

NOTES:

  • meta: The SDKVersion variable, SDKPrerelease variable, and SDKVersionString() function have been deprecated. Use the Go standard library runtime/debug package build information instead. (#​1257)

BUG FIXES:

  • meta: Fixed version in SDKVersion variable and SDKVersionString() function (#​1257)
  • helper/schema: Ensured (ResourceData).GetRawConfig() data is populated for Provider.ConfigureFunc and Provider.ConfigureContextFunc (#​1270)
  • helper/schema: Ensured (ResourceData).GetOkExists() second result is true when configuration contains zero-value data in Provider.ConfigureFunc and Provider.ConfigureContextFunc (#​1270)

v2.29.0

Compare Source

NOTES:

FEATURES:

  • helper/schema: Upgrade to protocol version 5.4, which can significantly reduce memory usage with Terraform 1.6 and later when a configuration includes multiple instances of the same provider (#​1234)

ENHANCEMENTS:

  • helper/validation: Added AllDiag and AnyDiag, which are SchemaValidateDiagFunc variants of All and Any (#​1155)
  • helper/validation: Added quoting in StringInSlice error diagnostic output to prevent confusion with values that contain spaces (#​464)

v2.28.0

Compare Source

NOTES:

  • helper/schema: The Resource type EnableApplyLegacyTypeSystemErrors and EnablePlanLegacyTypeSystemErrors fields can be enabled to more easily discover resource data consistency errors which Terraform would normally demote to warning logs. Before enabling the flag in a production release for a resource, the resource should be exhaustively acceptance tested as there may be unrecoverable error situations for practitioners. It is recommended to first enable and test in environments where it is easy to clean up resources, potentially outside of Terraform. (#​1227)

ENHANCEMENTS:

  • helper/schema: Added Resource type EnableLegacyTypeSystemApplyErrors field, which will prevent Terraform from demoting data consistency errors to warning logs during ApplyResourceChange (Create, Update, and Delete) operations with the resource (#​1227)
  • helper/schema: Added Resource type EnableLegacyTypeSystemPlanErrors field, which can be used to prevent Terraform from demoting data consistency errors to warning logs during PlanResourceChange operations with the resource (#​1227)

v2.27.0

Compare Source

NOTES:

  • helper/schema: Consumers directly referencing the Resource type Schema field should switch to the SchemaMap method to ensure new SchemaFunc field data is properly retrieved (#​1217)

ENHANCEMENTS:

  • all: Improved SDK logging performance when messages would be skipped due to configured logging level (#​1202)
  • helper/schema: Added Resource type SchemaFunc field and SchemaMap method, which can reduce resident memory usage with large schemas (#​1217)

v2.26.1

Compare Source

BUG FIXES:

  • helper/resource: Prevented build errors with type aliasing added in v2.26.0 (#​1176)

v2.26.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​1163)
  • helper/resource: Deprecated PrefixedUniqueId() and UniqueId(). Use the helper/id package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#​1167)
  • helper/resource: Deprecated RetryContext(), StateChangeConf, and associated *Error types. Use the helper/retry package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#​1167)

ENHANCEMENTS:

  • helper/id: New helper/id package added. resource.PrefixedUniqueId() and resource.UniqueId() are deprecated, helper/id should be used instead. helper/resource now contains aliases to the migrated code (#​1167)
  • helper/retry: New helper/retry package added. resource.RetryContext(), resource.StateChangeConf, and associated *Error types are deprecated, helper/retry should be used instead. `helper/resource now contains aliases to the migrated code (#​1167)
jianyuan/go-sentry (github.com/jianyuan/go-sentry/v2)

v2.8.4

Compare Source

  • fix: OrganizationRepository.ExternalSlug uses json.RawMessage

Full Changelog: jianyuan/go-sentry@v2.8.3...v2.8.4

v2.8.3

Compare Source

fix: UpdateProjectParams make FingerprintingRules and GroupingEnhancements nil-able to allow empty strings.

Full Changelog: jianyuan/go-sentry@v2.8.2...v2.8.3

v2.8.2

Compare Source

feat: add integration_id to list organization repositories params

Full Changelog: jianyuan/go-sentry@v2.8.1...v2.8.2

v2.8.1

Compare Source

What's Changed

New Contributors

Full Changelog: jianyuan/go-sentry@v2.8.0...v2.8.1

v2.8.0

Compare Source

What's Changed

  • fix(deps): update module github.com/stretchr/testify to v1.9.0 by @​renovate in https://github.com/jianyuan/go-sentry/pull/91
  • ref: OrganizationIntegration.ConfigData is now a json.RawMessage
  • ref: IntegrationConfigData is now a map[string]json.RawMessage
  • feat: new organization projects service
  • feat: new get single project key method
  • feat: spike protection methods now accept projects and project slug as parameters.

Full Changelog: jianyuan/go-sentry@v2.7.0...v2.8.0

v2.7.0

Compare Source

Full Changelog: jianyuan/go-sentry@v2.6.2...v2.7.0

v2.6.2

What's Changed

New Contributors

Full Changelog: jianyuan/go-sentry@v2.5.0...v2.6.2

v2.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: jianyuan/go-sentry@v2.4.0...v2.5.0

v2.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: jianyuan/go-sentry@v2.3.0...v2.4.0

v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: jianyuan/go-sentry@v2.2.0...v2.3.0


Configuration

📅 Schedule: Branch creation - "before 4:00am on Tuesday" in timezone America/Toronto, 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

@renovate-coveooss
Copy link
Author

renovate-coveooss bot commented Oct 29, 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):

  • 28 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.19 -> 1.23.4
github.com/hashicorp/go-retryablehttp v0.7.2 -> v0.7.7
github.com/Masterminds/semver/v3 v3.1.1 -> v3.2.0
github.com/Masterminds/sprig/v3 v3.2.2 -> v3.2.3
github.com/fatih/color v1.13.0 -> v1.16.0
github.com/golang/protobuf v1.5.2 -> v1.5.4
github.com/google/go-cmp v0.5.9 -> v0.6.0
github.com/google/uuid v1.3.0 -> v1.6.0
github.com/hashicorp/go-hclog v1.4.0 -> v1.6.3
github.com/hashicorp/go-plugin v1.4.8 -> v1.6.2
github.com/hashicorp/go-version v1.6.0 -> v1.7.0
github.com/hashicorp/hc-install v0.5.0 -> v0.9.0
github.com/hashicorp/hcl/v2 v2.16.1 -> v2.22.0
github.com/hashicorp/terraform-exec v0.18.1 -> v0.21.0
github.com/hashicorp/terraform-json v0.15.0 -> v0.23.0
github.com/hashicorp/terraform-plugin-go v0.14.3 -> v0.25.0
github.com/hashicorp/terraform-registry-address v0.1.0 -> v0.2.3
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 -> v0.1.1
github.com/huandu/xstrings v1.3.2 -> v1.3.3
github.com/imdario/mergo v0.3.13 -> v0.3.15
github.com/mattn/go-isatty v0.0.16 -> v0.0.20
github.com/zclconf/go-cty v1.13.0 -> v1.15.0
golang.org/x/crypto v0.6.0 -> v0.28.0
golang.org/x/mod v0.7.0 -> v0.21.0
golang.org/x/net v0.7.0 -> v0.28.0
golang.org/x/sys v0.5.0 -> v0.26.0
golang.org/x/text v0.7.0 -> v0.20.0
google.golang.org/grpc v1.51.0 -> v1.67.1
google.golang.org/protobuf v1.28.1 -> v1.35.1

@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch-go branch 5 times, most recently from 376ddf2 to b197f55 Compare November 8, 2024 18:36
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch-go branch from b197f55 to 7cfeb9b Compare November 13, 2024 17:36
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch-go branch 2 times, most recently from 64267f4 to 6abf016 Compare December 3, 2024 14:36
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch-go branch from 6abf016 to f5978af Compare December 4, 2024 14:07
@renovate-coveooss renovate-coveooss bot changed the title chore(deps): update all non-major dependencies (go) fix(deps): update all non-major dependencies (go) Dec 16, 2024
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.

0 participants