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: redis/rueidis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.38
Choose a base ref
...
head repository: redis/rueidis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.39
Choose a head ref
  • 9 commits
  • 16 files changed
  • 6 contributors

Commits on Jun 1, 2024

  1. Add Tests for rueidis compat (#551)

    * minor tests for command.go under rueidis.compat
    
    * minor test cases for command.go, removed redundant code
    
    * Minor test for command.go under rueidis compat to increase coverage
    
    * minor test for command.go under rueidiscompat
    
    * Remove redundant testing function
    
    * Fix conflict, add String() test case
    
    * Fix conflict
    
    * remove comment
    cyuankuo authored Jun 1, 2024
    Copy the full SHA
    37fc75f View commit details

Commits on Jun 5, 2024

  1. feat: Panic -> Error migration (#555)

    * feat: message.go remove panics and return default error value with error str
    
    * feat: address comments and update tests
    
    * feat: address comments
    
    ---------
    
    Co-authored-by: Anuragkillswitch <70265851+Anuragkillswitch@users.noreply.github.com>
    SoulPancake and SoulPancake authored Jun 5, 2024
    Copy the full SHA
    6af9676 View commit details

Commits on Jun 8, 2024

  1. docs: update rueidislock/README.md and add a benchmark result to it

    Signed-off-by: Rueian <rueiancsie@gmail.com>
    rueian committed Jun 8, 2024
    Copy the full SHA
    0124d4a View commit details

Commits on Jun 12, 2024

  1. feat: support hash field expiration commands

    j178 committed Jun 12, 2024
    Copy the full SHA
    e60912a View commit details
  2. fix: FIELDS argument should be enum

    j178 committed Jun 12, 2024
    Copy the full SHA
    b57fab9 View commit details
  3. Updated build.yml

    JayChavan-23 committed Jun 12, 2024
    Copy the full SHA
    4529a51 View commit details
  4. Merge pull request #561 from j178/hash-field-expiration

    feat: support hash field expiration commands
    rueian authored Jun 12, 2024
    Copy the full SHA
    4ec259e View commit details
  5. Merge pull request #563 from JayChavan-23/main

    Updated build.yml
    rueian authored Jun 12, 2024
    Copy the full SHA
    0a50f7a View commit details

Commits on Jun 15, 2024

  1. feat: bump v1.0.39

    Signed-off-by: Rueian <rueiancsie@gmail.com>
    rueian committed Jun 15, 2024
    Copy the full SHA
    6831b30 View commit details
Showing with 1,642 additions and 297 deletions.
  1. +2 −1 .github/workflows/build.yml
  2. +366 −0 hack/cmds/commands.json
  3. +679 −0 internal/cmds/gen_hash.go
  4. +25 −0 internal/cmds/gen_hash_test.go
  5. +23 −23 message.go
  6. +339 −255 message_test.go
  7. +1 −1 mock/go.mod
  8. +1 −1 om/go.mod
  9. +1 −1 pipe.go
  10. +1 −1 rueidisaside/go.mod
  11. +120 −0 rueidiscompat/command_test.go
  12. +1 −1 rueidiscompat/go.mod
  13. +2 −2 rueidishook/go.mod
  14. +79 −9 rueidislock/README.md
  15. +1 −1 rueidisotel/go.mod
  16. +1 −1 rueidisprob/go.mod
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -20,14 +20,15 @@ jobs:
fail-fast: false
matrix:
module: ${{fromJson(needs.prepare-matrix.outputs.matrix)}}
go-version: ['1.21.0', '1.22.0']
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.0'
go-version: ${{ matrix.go-version }}

- name: Test Module
run: |
Loading