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/jedis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.1.0
Choose a base ref
...
head repository: redis/jedis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.2.0
Choose a head ref
  • 8 commits
  • 70 files changed
  • 4 contributors

Commits on Aug 13, 2025

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

Commits on Aug 14, 2025

  1. Configuration menu
    Copy the full SHA
    854b24a View commit details
    Browse the repository at this point in the history
  2. docs: Improve Javadoc for HostAndPortMapper (#4112) (#4227)

    * docs: Improve Javadoc for HostAndPortMapper (#4112)
    
    * docs: Improve Javadoc for HostAndPortMapper (#4112)
    
    * docs: update HostAndPortMapper usage to use DefaultJedisClientConfig (#4112)
    
    * docs: update HostAndMapper advanced-usage.md
    
    * docs: add example use case
    
    * update wordlist
    
    ---------
    
    Co-authored-by: ggivo <[email protected]>
    JuneYub and ggivo authored Aug 14, 2025
    Configuration menu
    Copy the full SHA
    9312acc View commit details
    Browse the repository at this point in the history
  3. Bump org.junit:junit-bom from 5.13.3 to 5.13.4 (#4216)

    Bumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 5.13.3 to 5.13.4.
    - [Release notes](https://github.com/junit-team/junit-framework/releases)
    - [Commits](junit-team/junit-framework@r5.13.3...r5.13.4)
    
    ---
    updated-dependencies:
    - dependency-name: org.junit:junit-bom
      dependency-version: 5.13.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Ivo Gaydazhiev <[email protected]>
    dependabot[bot] and ggivo authored Aug 14, 2025
    Configuration menu
    Copy the full SHA
    f1a12f3 View commit details
    Browse the repository at this point in the history
  4. Fix JedisBroadcastException in functionLoadReplace for Redis Cluster (#…

    …4219)
    
    * Fix JedisBroadcastException in functionLoadReplace
    
    * Clean up PRIMARY_ONLY_COMMANDS initialization
    
    * Fix JedisBroadcastException in FUNCTION commands for cluster
    
    * Broadcast to primary nodes only
    
    PR #3306 introduces broadcasting of commands like FUNCTION DELETE, FUNCTION FLUSH, FUNCTION KILL, FUNCTION RESTORE ... to all nodes of the cluster. This leads to error when command is executed on non-writable (replica) node.
    
    This commit introduces a fix to broadcast the commands only to primary nodes from the cluster.
    
    * format
    
    ---------
    
    Co-authored-by: Ivo Gaydazhiev <[email protected]>
    Kguswo and ggivo authored Aug 14, 2025
    Configuration menu
    Copy the full SHA
    9187e24 View commit details
    Browse the repository at this point in the history
  5. Support Redis 8 vector sets #4169 (#4203)

    * Initial vector set commit
    
    Add support for
        - VRANDMEMBER
        - vlinks
        - vrem
        - vemb
        - vcard
        - vadd
        - vsim
        - vdim
    
    * Add UnifiedJedis vadd integration tests
    
    * Add support for reduce dim in vadd
    
    * Add support for vgetattr
    
    * Add support for vsetattr
    
    * Add support for vinfo
    
    * Add VDIM, VCARD integration test
    
    * Add VEMB integration test
    
    * Add VSETATTR/VGETATTR integration test
    
    * Add VLINKS integration test
    
    * Add VRANDMEMBER integration test
    
    * Add VREM integration test
    
    * Add VSIM integration test & refactor
    
    * cleanup
    
    * add missing RawVector
    
    * fix  failing tests
    
    * fix PooledExtendedVectorSetCommandsTest
    
    * mark vector-set api as Experimental
    
     - Add integration test for Jedis client
    
    * Fix tests
    
    * clean up
    
    * Address review comments
      - remove duplicated DOUBLE_LIST
      - reduce code duplication
    
    * fix tests after merge conflict is resolved
    
    * format new files
    
    * Add EPSILON parameter
    
    * fix errors in javadocs (java 8)
    
    * fix errors after rebase
    ggivo authored Aug 14, 2025
    Configuration menu
    Copy the full SHA
    affb536 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2025

  1. Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.1…

    …1.3 (#4246)
    
    Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.11.2 to 3.11.3.
    - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
    - [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.11.2...maven-javadoc-plugin-3.11.3)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
      dependency-version: 3.11.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 18, 2025
    Configuration menu
    Copy the full SHA
    1528e65 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2025

  1. [vector sets] Support for VSIM WITHATTRIBS (CAE-1421) (#4260)

    * [vector sets] Support for VSIM WITHATTRIBS
    
    * [vector sets] Add misisng file
        -
    
    * [vector sets] format
    
    * [vector sets] fix tests
    
        - mark tests for WITHATTRIBS with SINCE 8.2.0
        - Use JedisByteMap for binary methods
    
    * [vector sets] fix tests
    
        - mark tests for WITHATTRIBS with SINCE 8.2.0
    
    * [vector sets] address review comments
    
      - remove unused import
      - remove unused helper methods
    ggivo authored Aug 28, 2025
    Configuration menu
    Copy the full SHA
    6e0d430 View commit details
    Browse the repository at this point in the history
Loading