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: gomodule/redigo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.8.9
Choose a base ref
...
head repository: gomodule/redigo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.9.2
Choose a head ref
  • 11 commits
  • 12 files changed
  • 4 contributors

Commits on May 11, 2023

  1. fix: test goroutine leaks (#643)

    Ensure that goroutines started by tests are cleaned up on termination.
    
    Also:
    * make TestLatencyHistories compatible with -count=X.
    * Update to the supported versions of go 1.19 and 1.20.
    * Update golangci-lint to v1.15.2
    
    Fixes #641
    stevenh authored May 11, 2023
    Configuration menu
    Copy the full SHA
    78e255f View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2023

  1. chore: update testify (#653)

    Update testify to eliminate security issue in dependent package
    gopkg.in/yaml.v3.
    
    Fixes #652
    stevenh authored Aug 20, 2023
    Configuration menu
    Copy the full SHA
    a60882b View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. core: update github actions and fix tests (#657)

    Update GitHub actions to use the latest versions and add go mod
    tidy check.
    
    This bumps go version for tests to 1.20 and 1.21 the currently
    supported versions.
    
    Update checks to validate against Redis 7.2 and 7.0, removing 5.0 and
    4.0 which may still work but haven't been updated since 2020.
    
    Fix pubsub test instability due to unsubscribe notifications ordering
    not being guaranteed.
    
    Fix latency tests on Redis 7 due to DEBUG being disabled by default.
    stevenh authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    9129745 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2024

  1. chore: run test server with enable-debug-command (#654)

    Run the Redis test server with --enable-debug-command local on Redis >= 7.0
    which disables MODULE and DEBUG commands by default for better security.
    
    Without this, some unit tests fail on later Redis versions.
    elboulangero authored Feb 3, 2024
    Configuration menu
    Copy the full SHA
    8b1c13e View commit details
    Browse the repository at this point in the history
  2. chore: remove debug check (#659)

    Remove debug check now we run the test server with debug enabled if
    needed.
    stevenh authored Feb 3, 2024
    Configuration menu
    Copy the full SHA
    9f0d2e9 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. feat: add TestOnBorrowContext (#660)

    Add TestOnBorrowContext to the Pool struct for checking the
    health of the idle connection with a given context.
    vasayxtx authored Feb 20, 2024
    Configuration menu
    Copy the full SHA
    1d393b3 View commit details
    Browse the repository at this point in the history
  2. ci: add goreleaser, update action and go versions (#662)

    Add goreleaser to automate the generation of release notes and bump
    the versions of github actions golang go the latest versions.
    stevenh authored Feb 20, 2024
    Configuration menu
    Copy the full SHA
    1bfd3c1 View commit details
    Browse the repository at this point in the history
  3. ci: remove deprecated goreleaser option (#663)

    Remove deprecated goreleaser option --rm-dist and use --clean instead
    to prevent deprecation warning.
    stevenh authored Feb 20, 2024
    Configuration menu
    Copy the full SHA
    cfabb1f View commit details
    Browse the repository at this point in the history
  4. chore: retract v1.8.10 (#664)

    Retract v1.8.10 which was tagged incorrectly for a feature release and
    only available for a few minutes. v1.9.0 is identical.
    stevenh authored Feb 20, 2024
    Configuration menu
    Copy the full SHA
    162ed02 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2024

  1. fix: bump go version to 1.17 (#666)

    Due to our test dependency requiring 1.17 minimum and the 1.16 being
    well out of support, currently only 1.21 and 1.22 are support releases,
    bump our required go version to 1.16.
    
    Fixes #665
    stevenh authored Feb 25, 2024
    Configuration menu
    Copy the full SHA
    e05a63b View commit details
    Browse the repository at this point in the history
  2. ci: fix go caching (#667)

    Move checkout before go-setup so caching works.
    stevenh authored Feb 25, 2024
    Configuration menu
    Copy the full SHA
    4c535aa View commit details
    Browse the repository at this point in the history
Loading