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

v1.1.5 #1144

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open

v1.1.5 #1144

wants to merge 25 commits into from

Commits on Feb 7, 2022

  1. v1.1.3

    eddroid authored and dm-2 committed Feb 7, 2022
    Configuration menu
    Copy the full SHA
    d8ccc11 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0a87c7a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd919de View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    62ac897 View commit details
    Browse the repository at this point in the history
  5. v1.1.4

    dm-2 committed Feb 7, 2022
    Configuration menu
    Copy the full SHA
    7c9c1f0 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2022

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

Commits on Jul 7, 2022

  1. Configuration menu
    Copy the full SHA
    9b27d91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    869ed92 View commit details
    Browse the repository at this point in the history
  3. Add binaries for arm64 architectures

    jecepeda authored and dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    63c171d View commit details
    Browse the repository at this point in the history
  4. Add golangci-lint CI action, fix gosimple, govet + unused lin…

    …t errors (#1127)
    
    * Add `golangci-lint`, fix `gosimple`, `govet` and `unused` linter complaints
    
    * Go 1.16
    
    * Update copyright dates
    timvaillancourt authored and dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    8dd1571 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6598b34 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e0d31ba View commit details
    Browse the repository at this point in the history
  7. Run CodeQL analysis on PRs

    dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    fcda553 View commit details
    Browse the repository at this point in the history
  8. compound pk tests (#387)

    * compound pk tests
    
    * more details in failure diff
    
    * more elaborate test; the pk-ts one consistently fails
    
    * Fix merge conflict
    
    Co-authored-by: Shlomi Noach <[email protected]>
    Co-authored-by: Tim Vaillancourt <[email protected]>
    Co-authored-by: Tim Vaillancourt <[email protected]>
    4 people authored and dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    9e0808a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    68b4085 View commit details
    Browse the repository at this point in the history
  10. Use switch statements for readability, simplify `.NewGoMySQLReader(…

    …)` (#1135)
    
    * Use `switch` statements for readability
    
    * Simplify initBinlogReader()
    timvaillancourt authored and dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    b4566de View commit details
    Browse the repository at this point in the history
  11. Add context/timeout to HTTP throttle check (#1131)

    * Add context/timeout to HTTP throttle check
    
    * Dont run `.GetThrottleHTTPInterval()` on every loop
    
    * Update help message
    
    * Var rename
    
    * 2022
    
    * Add timeout flag
    
    * Add unix/tcp server commands, use ParseInt() for string->int64
    
    * Var rename
    
    * Re-check http timeout on every loop iteration
    
    * Remove stale comment
    
    * Make throttle interval idempotent
    
    * var rename
    
    * Usage grammar
    
    * Make http timeout idempotent too
    
    * Parse time.Duration once
    
    * Move timeout to NewThrottler
    
    * Help update
    
    * Set User-Agent header
    
    * Re-add newline
    
    Co-authored-by: dm-2 <[email protected]>
    timvaillancourt and dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    614b379 View commit details
    Browse the repository at this point in the history
  12. Cancel any row count queries before attempting to cut over (#846)

    * Cancel any row count queries before attempting to cut over
    
    Closes #830. Switches from using `QueryRow` to `QueryRowContext`, and
    stores a context.CancelFunc in the migration context, which is called to
    halt any running row count query before beginning the cut over.
    
    * Make it threadsafe
    
    * Kill the count query on the database side as well
    
    * Explicitly grab a connection to run the count, store its connection id
    * When the query context is canceled, run a `KILL QUERY ?` on that connection id
    
    * Rewrite these to use the threadsafe functions, stop exporting the cancel func
    
    * Update logger
    
    * Update logger
    
    Co-authored-by: Tim Vaillancourt <[email protected]>
    Co-authored-by: Tim Vaillancourt <[email protected]>
    Co-authored-by: dm-2 <[email protected]>
    4 people committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    3e72f1b View commit details
    Browse the repository at this point in the history
  13. v1.1.5

    dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    0adb697 View commit details
    Browse the repository at this point in the history
  14. Check RowsAffected when applying DML events to get more accurate stat…

    …istics (#844)
    
    * Check RowsAffected when applying DML events to get more accurate statistics
    
    Addresses #600.
    
    When applying a DML event, check the RowsAffected on the `Result`
    struct. Since all DML event queries are point queries, this will only
    ever be 0 or 1. The applier then takes this value and multiplies by
    the `rowsDelta` of the event, resulting in a properly-signed, accurate
    row delta to use in the statistics.
    
    If an error occurs here, log it, but do not surface this as an
    actual error .. simply assume the DML affected a row and move on. It
    will be inaccurate, but this is already the case.
    
    * Fix import
    
    * update wording to warning log message
    
    Co-authored-by: Tim Vaillancourt <[email protected]>
    2 people authored and dm-2 committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    f29e63b View commit details
    Browse the repository at this point in the history
  15. vendor github.com/openark/golib

    dm-2 committed Jul 7, 2022
    1 Configuration menu
    Copy the full SHA
    f2c2033 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

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

Commits on Oct 5, 2023

  1. Focal build

    rashiq committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    8cdd30a View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. Configuration menu
    Copy the full SHA
    bd46b5a View commit details
    Browse the repository at this point in the history
  2. Fix focal build

    The base image is `buster` instead of previously assumed `stretch`
    rashiq committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    49c1e33 View commit details
    Browse the repository at this point in the history