fix(deps): update all non-major dependencies (go) #24
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.3.1
->v2.42.42
v0.14.1
->v0.20.1
v0.8.0
->v0.9.0
v2.25.0
->v2.35.0
v2.2.0
->v2.8.4
v0.5.0
->v0.24.0
v0.1.0
->v0.10.0
Release Notes
coveooss/go-sentry (github.com/coveooss/go-sentry/v2)
v2.42.42
: Internal Fix/Hack releaseCompare 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:
templates
anddocs
, which will now be ignored. (#421)v0.20.0
Compare Source
NOTES:
FEATURES:
BUG FIXES:
index.*
files instead of justindex.md
files. (#413)v0.19.4
Compare Source
NOTES:
BUG FIXES:
v0.19.3
Compare Source
BUG FIXES:
v0.19.2
Compare Source
BUG FIXES:
id
attribute behaviors under blocks (#365)v0.19.1
Compare Source
BUG FIXES:
plainmarkdown
function did not output plain URLs (#361)v0.19.0
Compare Source
BREAKING CHANGES:
plainmarkdown
function now removes all markdown elements/formatting to render the output as plain text (#332)schemamd
package has moved tointernal/schemamd
and can no longer be imported (#354)functionmd
package has moved tointernal/functionmd
and can no longer be imported (#354)FEATURES:
InvalidDirectoriesCheck
which checks for valid provider documentation folder structure (#341)MixedDirectoriesCheck
which throws an error if both legacy documentation and registry documentation are found (#341)NumberOfFilesCheck
which checks the number of provider documentation files against the registry limit (#341)FileSizeCheck
which checks the provider documentation file size against the registry limit (#341)FileExtensionCheck
which checks for valid provider documentation file extensions (#341)FrontMatterCheck
which checks the YAML frontmatter of provider documentation for missing required fields or invalid fields (#341)FileMismatchCheck
which checks the names/number of provider documentation files against the provider schema (#341)ENHANCEMENTS:
--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:
generate
to create duplicate templates (#349)v0.18.0
Compare Source
FEATURES:
ENHANCEMENTS:
functions
to list of allowed template and rendered website subdirectories (#328)v0.17.0
Compare Source
BREAKING CHANGES:
printf
with eithercodefile
ortffile
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
subcommand that migrates existing provider docs using the rendered website source directories (website/docs/
or/docs/
) to aterraform-plugin-docs
-supported templates directory. (#314)ENHANCEMENTS:
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:
no such file or directory
error when runninggenerate
with no existing rendered website directory. (#296)v0.16.0
Compare Source
ENHANCEMENTS:
tfplugindocs
from being deleted during generation (#267)cdktf
to list of allowed rendered website subdirectories (#267)v0.15.0
Compare Source
BREAKING CHANGES:
legacy-sidebar
flag has been removed without replacement. It implemented no logic and is not necessary with Terraform Registry based documentation (#258)NOTES:
ENHANCEMENTS:
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:
ENHANCEMENTS:
hashicorp/terraform-plugin-sdk (github.com/hashicorp/terraform-plugin-sdk/v2)
v2.35.0
Compare Source
NOTES:
terraform-plugin-framework
orterraform-plugin-mux
in the future. (#1390)v2.34.0
Compare Source
NOTES:
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)FEATURES:
(Provider).ConfigureProvider
function for configuring providers that support additional features, such as deferred actions. (#1335)(Resource).ResourceBehavior
to allow additional control over deferred action behavior during plan modification. (#1335)v2.33.0
Compare Source
NOTES:
v2.32.0
Compare Source
NOTES:
v2.31.0
Compare Source
NOTES:
v2.30.0
Compare Source
NOTES:
SDKVersion
variable,SDKPrerelease
variable, andSDKVersionString()
function have been deprecated. Use the Go standard libraryruntime/debug
package build information instead. (#1257)BUG FIXES:
SDKVersion
variable andSDKVersionString()
function (#1257)(ResourceData).GetRawConfig()
data is populated forProvider.ConfigureFunc
andProvider.ConfigureContextFunc
(#1270)(ResourceData).GetOkExists()
second result istrue
when configuration contains zero-value data inProvider.ConfigureFunc
andProvider.ConfigureContextFunc
(#1270)v2.29.0
Compare Source
NOTES:
FEATURES:
ENHANCEMENTS:
AllDiag
andAnyDiag
, which areSchemaValidateDiagFunc
variants ofAll
andAny
(#1155)StringInSlice
error diagnostic output to prevent confusion with values that contain spaces (#464)v2.28.0
Compare Source
NOTES:
Resource
typeEnableApplyLegacyTypeSystemErrors
andEnablePlanLegacyTypeSystemErrors
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:
Resource
typeEnableLegacyTypeSystemApplyErrors
field, which will prevent Terraform from demoting data consistency errors to warning logs duringApplyResourceChange
(Create
,Update
, andDelete
) operations with the resource (#1227)Resource
typeEnableLegacyTypeSystemPlanErrors
field, which can be used to prevent Terraform from demoting data consistency errors to warning logs duringPlanResourceChange
operations with the resource (#1227)v2.27.0
Compare Source
NOTES:
Resource
typeSchema
field should switch to theSchemaMap
method to ensure newSchemaFunc
field data is properly retrieved (#1217)ENHANCEMENTS:
Resource
typeSchemaFunc
field andSchemaMap
method, which can reduce resident memory usage with large schemas (#1217)v2.26.1
Compare Source
BUG FIXES:
v2.26.0
Compare Source
NOTES:
PrefixedUniqueId()
andUniqueId()
. Use thehelper/id
package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#1167)RetryContext()
,StateChangeConf
, and associated*Error
types. Use thehelper/retry
package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#1167)ENHANCEMENTS:
helper/id
package added.resource.PrefixedUniqueId()
andresource.UniqueId()
are deprecated,helper/id
should be used instead.helper/resource
now contains aliases to the migrated code (#1167)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
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
OrganizationIntegration.ConfigData
is now ajson.RawMessage
IntegrationConfigData
is now amap[string]json.RawMessage
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.
This PR has been generated by Renovate Bot.