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.0.0
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: v2.1.1
Choose a head ref
  • 17 commits
  • 28 files changed
  • 9 contributors

Commits on Apr 14, 2021

  1. setup.py: fix build with gcc 4.8

    Fix the following build failure on gcc 4.8 which is raised since version
    2.0.0 and
    9084152:
    
    vendor/hiredis/read.c: In function 'redisReaderFree':
    vendor/hiredis/read.c:646:9: error: 'for' loop initial declarations are only allowed in C99 mode
             for (int i = 0; i < r->tasks; i++) {
             ^
    vendor/hiredis/read.c:646:9: note: use option -std=c99 or -std=gnu99 to compile your code
    
    This build failure is raised because hiredis source code is built
    without C99:
    redis/hiredis@13a35bd
    
    Fixes:
     - http://autobuild.buildroot.org/results/04cbcddf6d83ebad8c98400754f9445375e9e489
    
    Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
    ffontaine authored and ifduyue committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    d4d701a View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2021

  1. Add support for Python 3.10

    Closes #116
    Akarys42 authored Oct 17, 2021
    Configuration menu
    Copy the full SHA
    c03ee32 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2021

  1. Merge pull request #117 from Akarys42/python310

    Add support for Python 3.10
    michael-grunder authored Dec 1, 2021
    Configuration menu
    Copy the full SHA
    587f215 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2021

  1. setup.py: Replace imp module with importlib

    This fixes the following warning:
    
    setup.py:7: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
    
    Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
    swegener authored and ifduyue committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    1881d00 View commit details
    Browse the repository at this point in the history
  2. setup.cfg: description-file -> description_file

    This fixes the following warning:
    
    setuptools/dist.py:697: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
    
    Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
    swegener authored and ifduyue committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    dd15f01 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2022

  1. Allow to specify value returned by gets when not enough data is ava…

    …ilable
    
    RESP3 has native boolean types, to be able to differentiate between
    insufficient data in buffer and actual False value add option to
    specify custom sentinel returned by gets when not enough data is
    available.
    
    CamelCase is used to conform to other arguments naming.
    
    Closes: #114
    Maksim Novikov authored and ifduyue committed Feb 15, 2022
    Configuration menu
    Copy the full SHA
    0b1ac03 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. Configuration menu
    Copy the full SHA
    bdee395 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8f25b5 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2022

  1. Supporting hiredis 1.1.0 (#135)

    Closes #134
    chayim authored Nov 30, 2022
    Configuration menu
    Copy the full SHA
    8833c43 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b042bd9 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

  1. Modernizing: Restoring CI, Moving to pytest (#136)

    closes #120
    closes #122
    closes #124
    closes #129
    closes #130
    closes #121
    closes #118
    chayim authored Dec 12, 2022
    Configuration menu
    Copy the full SHA
    861539c View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2022

  1. version 2.1.0 (#137)

    chayim authored Dec 14, 2022
    Configuration menu
    Copy the full SHA
    bdf3900 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. Update CHANGELOG.md for 2.1.0 (#142)

    Fixes #141
    tobixx authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    c0baeb3 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. Configuration menu
    Copy the full SHA
    c13c43f View commit details
    Browse the repository at this point in the history
  2. Version 2.1.1 (#143)

    chayim authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    303e3de View commit details
    Browse the repository at this point in the history
  3. Fix url in Issue tracker (#140)

    shadchin authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    17cf975 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8890a2d View commit details
    Browse the repository at this point in the history
Loading