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

upstream merge #14

Merged
merged 35 commits into from
Jul 12, 2022
Merged

upstream merge #14

merged 35 commits into from
Jul 12, 2022

Commits on Nov 19, 2021

  1. Update Spanner to 1.27

    mccalltd committed Nov 19, 2021
    Configuration menu
    Copy the full SHA
    5798784 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2021

  1. Add WithConnection to Postgres similar to MySQL.

    Andreas Kluth committed Nov 29, 2021
    Configuration menu
    Copy the full SHA
    f621644 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2021

  1. refactor: use sort.Slice

    suzaku committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    fc7f720 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #663 from suzaku/refacotring

    refactor: use sort.Slice
    dhui authored Dec 7, 2021
    Configuration menu
    Copy the full SHA
    efbef2a View commit details
    Browse the repository at this point in the history
  3. clarify the package name (#660)

    * clarify the package name
    
    * Adding import and connection string sections
    
    * more clarification around the go usage
    khash authored Dec 7, 2021
    Configuration menu
    Copy the full SHA
    b69b032 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2d6f0e2 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2021

  1. Configuration menu
    Copy the full SHA
    4f82413 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    169d0fc View commit details
    Browse the repository at this point in the history
  3. Merge pull request #658 from mccalltd/update-spanner-to-1.27

    Update Google Cloud Spanner to 1.27
    dhui authored Dec 8, 2021
    Configuration menu
    Copy the full SHA
    ca2d3e0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #664 from suzaku/simplify

    len(k) is guaranteed to be greater than 1 in this case
    dhui authored Dec 8, 2021
    Configuration menu
    Copy the full SHA
    0c500eb View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. Upgrade containerd and image-spec for the vulnerabilities (#662)

    * upgrade containerd/containerd to 1.5.8 for vulnerability
    
    * upgrade opencontainers/image-spec to 1.0.2 for vulnerability
    
    * upgrade dktest to v0.3.8
    mopp authored Dec 9, 2021
    Configuration menu
    Copy the full SHA
    918e13a View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2021

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

Commits on Dec 18, 2021

  1. Use DELETE FROM instead of TRUNCATE for MySQL (#656)

    * Use DELETE FROM instead of TRUNCATE for MySQL
    
    * Set isolation level to SERIALIZABLE
    
    Co-authored-by: Martin Arrieta <mail@martinarrieta.me>
    antigremlin and martinarrieta authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    9f5ed82 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #669 from kylechadha/upgrade-spanner-lib

    fix(spanner): Upgrade spanner client to latest, which adds JSON_VALUE support
    dhui authored Dec 18, 2021
    Configuration menu
    Copy the full SHA
    576ba68 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2022

  1. bump go-sqlite3 to v1.14.10

    pankona committed Jan 12, 2022
    Configuration menu
    Copy the full SHA
    a46677e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed8a8b0 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #687 from bndw/master

    docs: Include iofs in migration sources
    dhui authored Jan 12, 2022
    Configuration menu
    Copy the full SHA
    bb269a7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c277388 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #686 from pankona/bump-sqlite3-to-1-14-10

    Bump go-sqlite3 to v1.14.10
    dhui authored Jan 12, 2022
    Configuration menu
    Copy the full SHA
    3e43c42 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2022

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

Commits on Feb 2, 2022

  1. fix: incorrect clickhouse dns example

    The current example for the Clickhouse DSN is incorrect and will result in the client trying to use the default username, database, and password regardless of what is set in the DSN. This change fixed the DNS example to be correct for the current versions of the clickhouse-go client.
    xkisu authored Feb 2, 2022
    Configuration menu
    Copy the full SHA
    81cbc9c View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2022

  1. Merge pull request #695 from xkisu/master

    Incorrect DSN example for Clickhouse
    dhui authored Feb 7, 2022
    Configuration menu
    Copy the full SHA
    6b95a85 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2022

  1. test: use T.TempDir to create temporary test directory

    The directory created by `T.TempDir` is automatically removed when the
    test and all its subtests complete.
    
    Reference: https://pkg.go.dev/testing#T.TempDir
    Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
    Juneezee committed Feb 9, 2022
    Configuration menu
    Copy the full SHA
    98d2f99 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    34c9878 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2022

  1. Merge pull request #700 from Juneezee/test/t.TempDir

    test: use `T.TempDir` to create temporary test directory
    dhui authored Feb 10, 2022
    Configuration menu
    Copy the full SHA
    0bc9734 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2022

  1. Expose configuring cassandra connect timeout through query string

    Exposes the cassandra client's ConnectTimeout parameter through
    the cassandra database query string.
    
    The Cassandra client has a fairly aggressive connect timeout of
    600ms, which can cause flakiness in certain network environments
    or in Cassandra-compatible clusters with a more complex process
    for establishing connections (i.e. ScyllaDB).
    
    The query timeout is already configurable and exposed, but does
    not impact the connect timeout in the gocql driver. This change
    allows for configurtion of both.
    taywrobel committed Feb 19, 2022
    Configuration menu
    Copy the full SHA
    6e499cb View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2022

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

Commits on Feb 22, 2022

  1. Merge pull request #708 from taywrobel/cassandra-connect-timeout

    Expose configuring cassandra connect timeout through query string
    dhui authored Feb 22, 2022
    Configuration menu
    Copy the full SHA
    e1d604b View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2022

  1. Merge pull request #659 from AndreasKl/add-with-connection-to-postgres

    Add WithConnection to Postgres similar to MySQL.
    dhui authored Feb 24, 2022
    Configuration menu
    Copy the full SHA
    57aead3 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2022

  1. Run SQL server tests on Azure SQL Edge

    Josh Holbrook committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    9d3babd View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2022

  1. Merge pull request #714 from eaze/josh/test-sqlserver-with-edge

    Run SQL server tests on Azure SQL Edge
    dhui authored Mar 17, 2022
    Configuration menu
    Copy the full SHA
    cc5f8b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    331a15d View commit details
    Browse the repository at this point in the history

Commits on May 7, 2022

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

Commits on May 13, 2022

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