8000 Comparing v2.3.2...v3.2.0 · redis/hiredis-py · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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/hiredis-py
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.3.2
Choose a base ref
...
head repository: redis/hiredis-py
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.0
Choose a head ref
  • 18 commits
  • 17 files changed
  • 8 contributors

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    ba18089 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    64e3394 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Removing Python 3.7 trove (#181)

    Removing support for Python 3.7.
    
    Take the opportunity to better support Python 3.12 by adding
    setuptools to dev_requirements.
    chayim authored Jul 3, 2024
    Configuration menu
    Copy the full SHA
    cc23970 View commit details
    Browse the repository at this point in the history
  2. Bump black from 22.3.0 to 24.3.0 (#185)

    Bumps [black](https://github.com/psf/black) from 22.3.0 to 24.3.0.
    - [Release notes](https://github.com/psf/black/releases)
    - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
    - [Commits](psf/black@22.3.0...24.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: black
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 3, 2024
    Configuration menu
    Copy the full SHA
    e70af5b View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. pack: Replace sdsalloc.h with alloc.h (#159)

    Fixes #158.
    
    * src/pack.c: Replace sdsalloc.h with alloc.h.
    (pack_command): Replace s_malloc with hi_malloc.
    Apteryks authored Jul 11, 2024
    Configuration menu
    Copy the full SHA
    f4dd081 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Fix building the wheel for windows (#190)

    The CI job that builds the wheel for Windows fails. Try to fix it.
    Also upgrade versions for GH actions, and use ubuntu-latest
    instead of a specific version.
    gerzse authored Jul 12, 2024
    Configuration menu
    Copy the full SHA
    4c970a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    01fa2fd View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. Fix a typo in the README file (#192)

    Fix a typo in the README file
    ArtemIsmagilov authored Jul 15, 2024
    Configuration menu
    Copy the full SHA
    7792dd2 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. Version 2.4.0 (#193)

    gerzse authored Jul 19, 2024
    Configuration menu
    Copy the full SHA
    a94bb44 View commit details
    Browse the repository at this point in the history
  2. Return Redis sets as Python lists (#189)

    In some (rare) cases, the sets from a Redis response contain nested
    types that are not hashable in Python, for example maps. To handle these
    cases uniformly, always return Python lists for Redis sets. The elements
    will still be unique, relying on the correctness of data arriving from
    the server.
    
    This is a breaking change, although in reality it might not have a big 
    impact. Therefore the major version gets bumped to 3.
    gerzse authored Jul 19, 2024
    Configuration menu
    Copy the full SHA
    c1eefbd View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2024

  1. Update Python 3.13 compatibility (#199)

    Fixes #186
    
    Updates CI to build cp313 wheels.
    
    ---
    
    For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/redis/hiredis-py/issues/186?shareId=XXXX-XXXX-XXXX-XXXX).
    DeD1rk authored Nov 18, 2024
    Configuration menu
    Copy the full SHA
    4113c71 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

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

Commits on May 9, 2025

  1. Fix memory leak in RESP3 map parsing (#204)

    * Fix memory leak in RESP3 map parsing
    
    Fix #175
    
    * Add memray deps installation
    
    * Install deps only on ubuntu
    
    * Disable memray installation on Windows
    
    * Another attempt
    
    * Fix memray on old macOS versions
    
    * Disable memray for PyPy
    
    * Exclude FreeBSD
    
    * Revert
    
    * Another attempt for freebsd fix
    
    * Another attempt for freebsd fix
    uglide authored May 9, 2025
    Configuration menu
    Copy the full SHA
    7e77f22 View commit details
    Browse the repository at this point in the history
  2. Bump version to 3.2.0-dev (#207)

    * Bump version to 3.1.1
    
    * Oops, it should be 3.2.0-dev instead
    uglide authored May 9, 2025
    Configuration menu
    Copy the full SHA
    ac31d58 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8608965 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    58fe960 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2025

  1. Introduce new type for RESP3 PUSH notifications (#208)

    * Introduce new type for RESP3 PUSH notifications
    
    Allow clients to distinguish between RESP3 arrays
    and PUSH types by introducing PushNotification
    type which subclasses list.
    
    Fix #128
    
    * Use simpler solution to preallocate PushNotification list
    
    * Another attempt to make PushNotificationType compatible with PyPy
    uglide authored May 22, 2025
    Configuration menu
    Copy the full SHA
    d554827 View commit details
    Browse the repository at this point in the history
  2. Version 3.2.0

    uglide authored May 22, 2025
    Configuration menu
    Copy the full SHA
    f715de2 View commit details
    Browse the repository at this point in the history
Loading
0