Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GoogleCloudPlatform/cloud-sql-python-connector
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.0
Choose a base ref
...
head repository: GoogleCloudPlatform/cloud-sql-python-connector
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.15.0
Choose a head ref
  • 13 commits
  • 25 files changed
  • 3 contributors

Commits on Nov 26, 2024

  1. Configuration menu
    Copy the full SHA
    9ca72db View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

  1. Configuration menu
    Copy the full SHA
    f99661e View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2024

  1. Configuration menu
    Copy the full SHA
    5c9a73e View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. Configuration menu
    Copy the full SHA
    1dd2804 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    968b6b2 View commit details
    Browse the repository at this point in the history
  3. feat: improve aiohttp client error messages (#1201)

    By default, aiohttp on bad requests will discard response body and
    output generic error message in response, Bad Request, Forbidden, etc.
    
    The Cloud SQL Admin APIs response body contains more detailed error messages.
    We need to raise these to the end user for them to be able to resolve common config
    issues on their own.
    
    This PR implements a more robust solution, copying the actual Cloud SQL Admin API
    response body's error message to the end user.
    jackwotherspoon authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    11f9fe9 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2024

  1. feat: add support for DNS names with Connector (#1204)

    The Connector may be configured to use a DNS name to look up the instance
    name instead of configuring the connector with the instance connection name directly.
    
    Add a DNS TXT record for the Cloud SQL instance to a private DNS server
    or a private Google Cloud DNS Zone used by your application. For example:
    
    Record type: TXT
    Name: prod-db.mycompany.example.com – This is the domain name used by the application
    Value: my-project:my-region:my-instance – This is the instance connection name
    
    Configure the Connector to use a DNS name via setting resolver=DnsResolver
    jackwotherspoon authored Dec 4, 2024
    Configuration menu
    Copy the full SHA
    1a8f274 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2024

  1. Configuration menu
    Copy the full SHA
    720d1ad View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2024

  1. Configuration menu
    Copy the full SHA
    5af7582 View commit details
    Browse the repository at this point in the history
  2. refactor: add ConnectionName to ConnectionInfo class (#1212)

    Adding ConnectionName to ConnectionInfo class
    
    Benefits:
    - Cleaner interface, passing connection name around instead of individual args (project, region, instance)
    - Consistent debug logs (give access to ConnectionName throughout)
    - Allows us to tell if ConnectionInfo is using DNS (if ConnectionName.domain_name is set)
    jackwotherspoon authored Dec 9, 2024
    Configuration menu
    Copy the full SHA
    7231c57 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2024

  1. Configuration menu
    Copy the full SHA
    10b94fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2b8fe6 View commit details
    Browse the repository at this point in the history
  3. chore(main): release 1.15.0 (#1208)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Dec 10, 2024
    Configuration menu
    Copy the full SHA
    fe43047 View commit details
    Browse the repository at this point in the history
Loading