chore: bump cloud.google.com/go/cloudsqlconn from 1.13.0 to 1.16.0#49
chore: bump cloud.google.com/go/cloudsqlconn from 1.13.0 to 1.16.0#49dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
Bumps [cloud.google.com/go/cloudsqlconn](https://github.com/googlecloudplatform/cloud-sql-go-connector) from 1.13.0 to 1.16.0. - [Release notes](https://github.com/googlecloudplatform/cloud-sql-go-connector/releases) - [Changelog](https://github.com/GoogleCloudPlatform/cloud-sql-go-connector/blob/main/CHANGELOG.md) - [Commits](GoogleCloudPlatform/cloud-sql-go-connector@v1.13.0...v1.16.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/cloudsqlconn dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Reviewer's Guide by SourceryThis PR bumps the Sequence diagram for TLS hostname validationsequenceDiagram
participant Client
participant CloudSQLConnector
participant CloudSQLInstance
Client->>CloudSQLConnector: Dial(instance with DNS name)
CloudSQLConnector->>CloudSQLConnector: Use standard TLS hostname validation
CloudSQLConnector->>CloudSQLInstance: Establish TLS connection
CloudSQLInstance-->>CloudSQLConnector: TLS connection established
CloudSQLConnector-->>Client: Connection to CloudSQLInstance
Sequence diagram for domain name validationsequenceDiagram
participant Client
participant CloudSQLConnector
participant DNS Server
Client->>CloudSQLConnector: Dial(instance name)
CloudSQLConnector->>DNS Server: Resolve domain name
DNS Server-->>CloudSQLConnector: IP Address
CloudSQLConnector->>CloudSQLConnector: Validate domain name
alt Validation fails
CloudSQLConnector-->>Client: Error
else Validation succeeds
CloudSQLConnector-->>Client: Connection to CloudSQLInstance
end
Updated class diagram for cloudsqlconn featuresclassDiagram
class cloudsqlconn {
<<package>>
}
note for cloudsqlconn "This package provides connectivity to Cloud SQL instances."
class cloudsqlconn.Connector {
+Dial(ctx context.Context, instance string, opts ...Option) (net.Conn, error)
}
note for cloudsqlconn.Connector "Connector type manages the lifecycle of Cloud SQL connections."
class Option {
<<interface>>
}
note for Option "Option configures the Connector."
class WithDomainNameValidation {
+New(enable bool) Option
}
note for WithDomainNameValidation "Option to enable or disable domain name validation."
class WithTLSHostnameValidation {
+New(enable bool) Option
}
note for WithTLSHostnameValidation "Option to enable or disable TLS hostname validation."
cloudsqlconn -- Connector : Uses
Connector -- Option : Configured by
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Superseded by #56. |
Bumps cloud.google.com/go/cloudsqlconn from 1.13.0 to 1.16.0.
Release notes
Sourced from cloud.google.com/go/cloudsqlconn's releases.
... (truncated)
Changelog
Sourced from cloud.google.com/go/cloudsqlconn's changelog.
... (truncated)
Commits
b91df10chore(main): release 1.16.0 (#952)0083851deps: Update module google.golang.org/api to v0.226.0 (#953)d733a16feat: Use standard TLS hostname validation for instances with DNS names (#954)26dcf57test: add Customer CAS and Custom SAN e2e tests (#958)6873ba9deps: Update dependencies for github (#945)9302408deps: Update Non-major dependency updates (#944)986152ffeat: add domain name validation (#925)7d4af47chore: audit csql test instances (#948)0d10a8echore: update typo in lazy.go (#949)cc63f69chore: panic on error in test (#947)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by Sourcery
Update cloud.google.com/go/cloudsqlconn dependency from version 1.13.0 to 1.16.0
New Features:
Chores: