Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.9.6 #250

Merged
merged 9 commits into from
Jan 24, 2022
Merged

Release v0.9.6 #250

merged 9 commits into from
Jan 24, 2022

Commits on Jan 4, 2022

  1. Merge pull request #245 from prkumar/stable

    Merge stable into master
    prkumar committed Jan 4, 2022
    Configuration menu
    Copy the full SHA
    cca6f78 View commit details
    Browse the repository at this point in the history
  2. Bump minimum version of six to 1.13.0

    `six.moves.collections_abc` was added in six 1.13.0: https://github.com/benjaminp/six/blob/master/CHANGES
    
    #246
    prkumar committed Jan 4, 2022
    Configuration menu
    Copy the full SHA
    439f200 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2022

  1. Add RetryBackoff to support custom @Retry backoff strategies

    Adds a new base class, `uplink.retry.RetryBackoff`, which can be extended to implement custom backoff strategies. Subclasses can override three methods:
    
    - `get_timeout_after_response(request, response)`: Returns the number of seconds to wait before retrying the request, or ``None`` to indicate that the given response should be returned.
    - `get_timeout_after_exception(request, exc_type, exc_val, exc_tb)`: Returns the number of seconds to wait before retrying the request, or ``None`` to indicate that the given exception should be raised.
    - `handle_after_final_retry()`: Handles any clean-up necessary following the final retry attempt.
    
    An instance of a `RetryBackoff` subclass can be provided through the `backoff` argument of the `@retry` decorator.
    
    #238
    prkumar committed Jan 6, 2022
    Configuration menu
    Copy the full SHA
    7eebaf1 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2022

  1. Update CHANGELOG.rst

    prkumar committed Jan 8, 2022
    Configuration menu
    Copy the full SHA
    17a6283 View commit details
    Browse the repository at this point in the history
  2. Fix @returns.json support for casting response using provided type (#…

    …229)
    
    Fix ``@returns.json`` to cast JSON response (or field referenced by the ``key`` argument) using the ``type`` argument when the given type is callable. This restores behavior that was inadvertently changed in v0.9.3.
    
    Example:
    
    ```python
      @uplink.returns.from_json(key=("data", 0, "size"), type=int)
      @uplink.get("/users/{user}/repos")
      def get_first_repo_size(self, user):
          pass
    ```
    
    ```python
    assert github.get_first_repo_size("prkumar") == 300
    ```
    
    #215
    prkumar committed Jan 8, 2022
    Configuration menu
    Copy the full SHA
    3472806 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2022

  1. Update CHANGELOG.rst

    prkumar committed Jan 9, 2022
    Configuration menu
    Copy the full SHA
    025ee28 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.rst

    prkumar committed Jan 9, 2022
    Configuration menu
    Copy the full SHA
    5158457 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2022

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

Commits on Jan 24, 2022

  1. Fix broken link in README.md

    mrkeuz authored and prkumar committed Jan 24, 2022
    Configuration menu
    Copy the full SHA
    55989ac View commit details
    Browse the repository at this point in the history