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

Initial Update #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Initial Update #1

wants to merge 4 commits into from

Conversation

pyup-bot
Copy link

This is my first visit to this fine repo so I have bundled all updates in a single pull request to make things easier for you to merge.

Close this pull request and delete the branch if you want me to start with single pull requests right away

Here's the executive summary:

Updates

Here's a list of all the updates bundled in this pull request. I've added some links to make it easier for you to find all the information you need.

python-dateutil 2.5.3 » 2.5.3 PyPI | Changelog | Docs
simplejson 3.9.0 » 3.9.0 PyPI | Changelog | Repo
nose 1.3.7 » 1.3.7 PyPI | Docs
requests 2.11.1 » 2.11.1 PyPI | Changelog | Homepage

Changelogs

python-dateutil -> 2.5.3

2.5.2


  • Updated zoneinfo to 2016c
  • Fixed parser bug where yearfirst and dayfirst parameters were not being
    respected when no separator was present. (gh issue 81 and 217, pr 229)

2.5.1


  • Updated zoneinfo to 2016b
  • Changed MANIFEST.in to explicitly include test suite in source distributions,
    with help from koobs (gh issue 193, pr 194, 201, 221)
  • Explicitly set all line-endings to LF, except for the NEWS file, on a
    per-repository basis (gh pr 218)
  • Fixed an issue with improper caching behavior in rruleset objects (gh issue
    104, pr 207)
  • Changed to an explicit error when rrulestr strings contain a missing BYDAY
    (gh issue 162, pr 211)
  • tzfile now correctly handles files containing leapcnt (although the leapcnt
    information is not actually used). Contributed by hjoukl (gh issue 146, pr
    147)
  • Fixed recursive import issue with tz module (gh pr 204)
  • Added compatibility between tzwin objects and datetime.time objects (gh issue
    216, gh pr 219)
  • Refactored monolithic test suite by module (gh issue 61, pr 200 and 206)
  • Improved test coverage in the relativedelta module (gh pr 215)
  • Adjusted documentation to reflect possibly counter-intuitive properties of
    RFC-5545-compliant rrules, and other documentation improvements in the rrule
    module (gh issue 105, gh issue 149 - pointer to the solution by phep,
    pr 213).

2.5.0


  • Updated zoneinfo to 2016a
  • zoneinfo_metadata file version increased to 2.0 - the updated updatezinfo.py
    script will work with older zoneinfo_metadata.json files, but new metadata
    files will not work with older updatezinfo.py versions. Additionally, we have
    started hosting our own mirror of the Olson databases on a github pages
    site (https://dateutil.github.io/tzdata/) (gh pr 183)
  • dateutil zoneinfo tarballs now contain the full zoneinfo_metadata file used
    to generate them. (gh issue 27, gh pr 85)
  • relativedelta can now be safely subclassed without derived objects reverting
    to base relativedelta objects as a result of arithmetic operations.
    (lp:1010199, gh issue 44, pr 49)
  • relativedelta 'weeks' parameter can now be set and retrieved as a property of
    relativedelta instances. (lp: 727525, gh issue 45, pr 49)
  • relativedelta now explicitly supports fractional relative weeks, days, hours,
    minutes and seconds. Fractional values in absolute parameters (year, day, etc)
    are now deprecated. (gh issue 40, pr 190)
  • relativedelta objects previously did not use microseconds to determine of two
    relativedelta objects were equal. This oversight has been corrected.
    Contributed by elprans (gh pr 113)
  • rrule now has an xafter() method for retrieving multiple recurrences after a
    specified date. (gh pr 38)
  • str(rrule) now returns an RFC2445-compliant rrule string, contributed by
    schinckel and armicron (lp:1406305, gh issue 47, prs 50, 62 and 160)
  • rrule performance under certain conditions has been significantly improved
    thanks to a patch contributed by dekoza, based on an article by Brian Beck
    (exogen) (gh pr 136)
  • The use of both the 'until' and 'count' parameters is now deprecated as
    inconsistent with RFC2445 (gh pr 62, 185)
  • Parsing an empty string will now raise a ValueError, rather than returning the
    datetime passed to the 'default' parameter. (gh issue 78, pr 187)
  • tzwinlocal objects now have a meaningful repr() and str() implementation
    (gh issue 148, prs 184 and 186)
  • Added equality logic for tzwin and tzwinlocal objects. (gh issue 151,
    pr 180, 184)
  • Added some flexibility in subclassing timelex, and switched the default
    behavior over to using string methods rather than comparing against a fixed
    list. (gh pr 122, 139)
  • An issue causing tzstr() to crash on Python 2.x was fixed. (lp: 1331576,
    gh issue 51, pr 55)
  • An issue with string encoding causing exceptions under certain circumstances
    when tzname() is called was fixed. (gh issue 60, 74, pr 75)
  • Parser issue where calling parse() on dates with no day specified when the
    day of the month in the default datetime (which is "today" if unspecified) is
    greater than the number of days in the parsed month was fixed (this issue
    tended to crop up between the 29th and 31st of the month, for obvious reasons)
    (canonical gh issue 25, pr 30, 191)
  • Fixed parser issue causing fuzzy_with_tokens to raise an unexpected exception
    in certain circumstances. Contributed by MichaelAquilina (gh pr 91)
  • Fixed parser issue where years > 100 AD were incorrectly parsed. Contributed
    by Bachmann1234 (gh pr 130)
  • Fixed parser issue where commas were not a valid separator between seconds
    and microseconds, preventing parsing of ISO 8601 dates. Contributed by
    ryanss (gh issue 28, pr 106)
  • Fixed issue with tzwin encoding in locales with non-Latin alphabets
    (gh issue 92, pr 98)
  • Fixed an issue where tzwin was not being properly imported on Windows.
    Contributed by labrys. (gh pr 134)
  • Fixed a problem causing issues importing zoneinfo in certain circumstances.
    Issue and solution contributed by alexxv (gh issue 97, pr 99)
  • Fixed an issue where dateutil timezones were not compatible with basic time
    objects. One of many, many timezone related issues contributed and tested by
    labrys. (gh issue 132, pr 181)
  • Fixed issue where tzwinlocal had an invalid utcoffset. (gh issue 135,
    pr 141, 142)
  • Fixed issue with tzwin and tzwinlocal where DST transitions were incorrectly
    parsed from the registry. (gh issue 143, pr 178)
  • updatezinfo.py no longer suppresses certain OSErrors. Contributed by bjamesv
    (gh pr 164)
  • An issue that arose when timezone locale changes during runtime has been
    fixed by carlosxl and mjschultz (gh issue 100, prs 107, 109)
  • Python 3.5 was added to the supported platforms in the metadata (tacaswell
    gh pr 159) and the test suites (moreati gh pr 117).
  • An issue with tox failing without unittest2 installed in Python 2.6 was fixed
    by moreati (gh pr 115)
  • Several deprecated functions were replaced in the tests by moreati
    (gh pr 116)
  • Improved the logic in Travis and Appveyor to alleviate issues where builds
    were failing due to connection issues when downloading the IANA timezone
    files. In addition to adding our own mirror for the files (gh pr 183), the
    download is now retried a number of times (with a delay) (gh pr 177)
  • Many failing doctests were fixed by moreati. (gh pr 120)
  • Many fixes to the documentation (gh pr 103, gh pr 87 from radarhere,
    gh pr 154 from gpoesia, gh pr 156 from awsum, gh pr 168 from ja8zyjits)
  • Added a code coverage tool to the CI to help improve the library. (gh pr 182)
  • We now have a mailing list - dateutilpython.org, graciously hosted by
    Python.org.

2.4.2


  • Updated zoneinfo to 2015b.
  • Fixed issue with parsing of tzstr on Python 2.7.x; tzstr will now be decoded
    if not a unicode type. gh 51 (lp:1331576), gh pr 55.
  • Fix a parser issue where AM and PM tokens were showing up in fuzzy date
    stamps, triggering inappropriate errors. gh 56 (lp: 1428895), gh pr 63.
  • Missing function "setcachesize" removed from zoneinfo all list by ryanss,
    fixing an issue with wildcard imports of dateutil.zoneinfo. (gh pr 66).
  • (PyPi only) Fix an issue with source distributions not including the test
    suite.

2.4.1


  • Added explicit check for valid hours if AM/PM is specified in parser.
    (gh pr 22, issue 21)
  • Fix bug in rrule introduced in 2.4.0 where byweekday parameter was not
    handled properly. (gh pr 35, issue 34)
  • Fix error where parser allowed some invalid dates, overwriting existing hours
    with the last 2-digit number in the string. (gh pr 32, issue 31)
  • Fix and add test for Python 2.x compatibility with boolean checking of
    relativedelta objects. Implemented by nimasmi (gh pr 43) and Cédric Krier
    (lp: 1035038)
  • Replaced parse() calls with explicit datetime objects in unit tests unrelated
    to parser. (gh pr 36)
  • Changed private _byxxx from sets to sorted tuples and fixed one currently
    unreachable bug in _construct_byset. (gh pr 54)
  • Additional documentation for parser (gh pr 29, 33, 41) and rrule.
  • Formatting fixes to documentation of rrule and README.rst.
  • Updated zoneinfo to 2015a.

2.4.0


  • Fix an issue with relativedelta and freezegun (lp:1374022)
  • Fix tzinfo in windows for timezones without dst (lp:1010050, gh 2)
  • Ignore missing timezones in windows like in POSIX
  • Fix minimal version requirement for six (gh 6)
  • Many rrule changes and fixes by pganssle (gh pull requests 13 14 17),
    including defusing some infinite loops (gh 4)

2.3


  • Cleanup directory structure, moved test.py to dateutil/tests/test.py
  • Changed many aspects of dealing with the zone info file. Instead of a cache,
    all the zones are loaded to memory, but symbolic links are loaded only once,
    so not much memory is used.
  • The package is now zip-safe, and universal-wheelable, thanks to changes in
    the handling of the zoneinfo file.
  • Fixed tzwin silently not imported on windows python2
  • New maintainer, together with new hosting: GitHub, Travis, Read-The-Docs

2.2


  • Updated zoneinfo to 2013h
  • fuzzy_with_tokens parse addon from Christopher Corley
  • Bug with LANG=C fixed by Mike Gilbert

2.1


  • New maintainer
  • Dateutil now works on Python 2.6, 2.7 and 3.2 from same codebase (with six)
  • 704047: Ismael Carnales' patch for a new time format
  • Small bug fixes, thanks for reporters!

2.0


  • Ported to Python 3, by Brian Jones. If you need dateutil for Python 2.X,
    please continue using the 1.X series.
  • There's no such thing as a "PSF License". This source code is now
    made available under the Simplified BSD license. See LICENSE for
    details.

1.5


  • As reported by Mathieu Bridon, rrules were matching the bysecond rules
    incorrectly against byminute in some circumstances when the SECONDLY
    frequency was in use, due to a copy & paste bug. The problem has been
    unittested and corrected.
  • Adam Ryan reported a problem in the relativedelta implementation which
    affected the yearday parameter in the month of January specifically.
    This has been unittested and fixed.
  • Updated timezone information.

1.4.1


  • Updated timezone information.

1.4


  • Fixed another parser precision problem on conversion of decimal seconds
    to microseconds, as reported by Erik Brown. Now these issues are gone
    for real since it's not using floating point arithmetic anymore.
  • Fixed case where tzrange.utcoffset and tzrange.dst() might fail due
    to a date being used where a datetime was expected (reported and fixed
    by Lennart Regebro).
  • Prevent tzstr from introducing daylight timings in strings that didn't
    specify them (reported by Lennart Regebro).
  • Calls like gettz("GMT+3") and gettz("UTC-2") will now return the
    expected values, instead of the TZ variable behavior.
  • Fixed DST signal handling in zoneinfo files. Reported by
    Nicholas F. Fabry and John-Mark Gurney.

1.3


  • Fixed precision problem on conversion of decimal seconds to
    microseconds, as reported by Skip Montanaro.
  • Fixed bug in constructor of parser, and converted parser classes to
    new-style classes. Original report and patch by Michael Elsdörfer.
  • Initialize tzid and comps in tz.py, to prevent the code from ever
    raising a NameError (even with broken files). Johan Dahlin suggested
    the fix after a pyflakes run.
  • Version is now published in dateutil.version, as requested
    by Darren Dale.
  • All code is compatible with new-style division.

1.2


  • Now tzfile will round timezones to full-minutes if necessary,
    since Python's datetime doesn't support sub-minute offsets.
    Thanks to Ilpo Nyyssönen for reporting the issue.
  • Removed bare string exceptions, as reported and fixed by
    Wilfredo Sánchez Vega.
  • Fix bug in leap count parsing (reported and fixed by Eugene Oden).

1.1


  • Fixed rrule byyearday handling. Abramo Bagnara pointed out that
    RFC2445 allows negative numbers.
  • Fixed --prefix handling in setup.py (by Sidnei da Silva).
  • Now tz.gettz() returns a tzlocal instance when not given any
    arguments and no other timezone information is found.
  • Updating timezone information to version 2005q.

1.0


  • Fixed parsing of XXhXXm formatted time after day/month/year
    has been parsed.
  • Added patch by Jeffrey Harris optimizing rrule.contains.

0.9


  • Fixed pickling of timezone types, as reported by
    Andreas Köhler.
  • Implemented internal timezone information with binary
    timezone files [1]. datautil.tz.gettz() function will now
    try to use the system timezone files, and fallback to
    the internal versions. It's also possible to ask for
    the internal versions directly by using
    dateutil.zoneinfo.gettz().
  • New tzwin timezone type, allowing access to Windows
    internal timezones (contributed by Jeffrey Harris).
  • Fixed parsing of unicode date strings.
  • Accept parserinfo instances as the parser constructor
    parameter, besides parserinfo (sub)classes.
  • Changed weekday to spell the not-set n value as None
    instead of 0.
  • Fixed other reported bugs.

[1] http://www.twinsun.com/tz/tz-link.htm

0.5


  • Removed FREQ_ prefix from rrule frequency constants
    WARNING: this breaks compatibility with previous versions.
  • Fixed rrule.between() for cases where "after" is achieved
    before even starting, as reported by Andreas Köhler.
  • Fixed two digit zero-year parsing (such as 31-Dec-00), as
    reported by Jim Abramson, and included test case for this.
  • Sort exdate and rdate before iterating over them, so that
    it's not necessary to sort them before adding to the rruleset,
    as reported by Nicholas Piper.

simplejson -> 3.9.0

3.9.0

3.8.2

3.8.1

3.8.0

  • New iterable_as_array encoder option to perform lazy serialization of
    any iterable objects, without having to convert to tuple or list.

3.7.3

3.7.2

  • Do not cache Decimal class in encoder, only reference the decimal module.
    This may make reload work in more common scenarios.

3.7.1

3.7.0

3.6.5

3.6.4

3.6.3

3.6.2

3.6.1

3.6.0

3.5.3

3.5.2

3.5.1

  • Consistently reject int_as_string_bitcount settings that are not
    positive integers

3.5.0

3.4.1

  • Fixed tests to run on Python 3.4

3.4.0

3.3.3

3.3.2

3.3.1

3.3.0

3.2.0

3.1.3

  • Updated documentation to discourage subclassing whenever possible.
    default, object_hook, and object_pairs_hook provide almost all of
    the functionality of subclassing.

3.1.2

3.1.1

3.1.0

3.0.9

3.0.8

3.0.7

  • NOTE: this release only changes the license.
  • simplejson is now dual-licensed software, MIT or AFL v2.1. It is
    also made explicit that this code is also licensed to the PSF under
    a Contributor Agreement.

3.0.6

3.0.5

3.0.4

3.0.3

3.0.2

  • THIS VERSION HAS BEEN REMOVED
  • Missed a changeset to _speedups.c in the 3.0.1 branch cut

3.0.1

  • THIS VERSION HAS BEEN REMOVED
  • Add accumulator optimization to encoder, equivalent to the usage of
    _Py_Accu in the Python 3.3 json library. Only relevant if encoding
    very large JSON documents.

3.0.0

  • Python 3.3 is now supported, thanks to Vinay Sajip
    Python 3.x support available simplejson/simplejson#8
  • sort_keys/item_sort_key now sort on the stringified verison of the
    key, rather than the original object. This ensures that the sort
    only compares string types and makes the behavior consistent between
    Python 2.x and Python 3.x.
  • Like other number types, Decimal instances used as keys are now
    coerced to strings when use_decimal is True.

2.6.2

2.6.1

2.6.0

2.5.2

2.5.1

2.5.0

  • New item_sort_key option for encoder to allow fine grained control of sorted
    output

2.4.0

2.3.3

2.3.2

  • Fix crashing regression in speedups introduced in 2.3.1

2.3.1

2.3.0

2.2.1

2.2.0

2.1.6

2.1.5

  • Built sdist tarball with setuptools_git installed. Argh.

2.1.4

2.1.3

2.1.2

2.1.1

2.1.0

2.0.9

  • Adds cyclic GC to the Encoder and Scanner speedups, which could've
    caused uncollectible cycles in some cases when using custom parser
    or encoder functions

2.0.8

  • Documentation fixes
  • Fixes encoding True and False as keys
  • Fixes checking for True and False by identity for several parameters

2.0.7

  • Documentation fixes
  • C extension now always returns unicode strings when the input string is
    unicode, even for empty strings

2.0.6

  • Windows build fixes

2.0.5

  • Fixes a segfault in the C extension when using check_circular=False and
    encoding an invalid document

2.0.4

  • Fixes a parsing error in the C extension when the JSON document is (only)
    a floating point number. It would consume one too few characters in that
    case, and claim the document invalid.

2.0.3

  • Fixes reference leaks in the encoding speedups (sorry about that!)
  • Fixes doctest suite for Python 2.6
  • More optimizations for the decoder

2.0.2

  • Fixes MSVC2003 build regression
  • Fixes Python 2.4 compatibility in _speedups.c

2.0.1

  • Fixes long encoding regression introduced in 2.0.0
  • Fixes MinGW build regression introduced in 2.0.0

2.0.0

  • optimized Python encoding path
  • optimized Python decoding path
  • optimized C encoding path
  • optimized C decoding path
  • switched to sphinx docs (nearly the same as the json module in python 2.6)

1.9.3

  • Decoding is significantly faster (for our internal benchmarks)
  • Pretty-printing tool changed from simplejson to simplejson.tool for better
    Python 2.6 comaptibility
  • Misc. bug fixes

1.9

  • Rewrote test suite with unittest and doctest (no more nosetest dependency)
  • Better PEP 7 and PEP 8 source compliance
  • Removed simplejson.jsonfilter demo module
  • simplejson.jsonfilter is no longer included

1.8.1

  • Optional C extension for accelerating the decoding of JSON strings
  • Command line interface for pretty-printing JSON (via python -msimplejson)
  • Decoding of integers and floats is now extensible (e.g. to use Decimal) via
    parse_int, parse_float options.
  • Subversion and issue tracker moved to google code:
    http://code.google.com/p/simplejson/
  • "/" is no longer escaped, so if you're embedding JSON directly in HTML
    you'll want to use .replace("/", "/") to prevent a close-tag attack.

1.7

  • Improves encoding performance with an optional C extension to speed up
    str/unicode encoding (by 10-150x or so), which yields an overall speed
    boost of 2x+ (JSON is string-heavy).
  • Support for encoding unicode code points outside the BMP to UTF-16
    surrogate code pairs (specified by the Strings section of RFC 4627).

1.6

  • Improved str support for encoding. Previous versions of simplejson
    integrated strings directly into the output stream, this version ensures
    they're of a particular encoding (default is UTF-8) so that the output
    stream is valid.

1.5

  • Better Python 2.5 compatibility
  • Better Windows compatibility
  • indent encoding parameter for pretty printing
  • separators encoding parameter for generating optimally compact JSON

1.3

  • The optional object_hook function is called upon decoding of any JSON
    object literal, and its return value is used instead of the dict that
    would normally be used. This can be used to efficiently implement
    features such as JSON-RPC class hinting, or other custom decodings of
    JSON. See the documentation for more information.

1.1

  • Renamed from simple_json to simplejson to comply with PEP 8 module naming
    guidelines
  • Full set of documentation
  • More tests
  • The encoder and decoder have been extended to understand NaN, Infinity, and
    -Infinity (but this can be turned off via allow_nan=False for strict JSON
    compliance)
  • The decoder's scanner has been fixed so that it no longer accepts invalid
    JSON documents
  • The decoder now reports line and column information as well as character
    numbers for easier debugging
  • The encoder now has a circular reference checker, which can be optionally
    disabled with check_circular=False
  • dump, dumps, load, loads now accept an optional cls kwarg to use an
    alternate JSONEncoder or JSONDecoder class for convenience.
  • The read/write compatibility shim for json-py now have deprecation warnings

1.0

  • Initial release

requests -> 2.11.1

2.11.1

+++++++++++++++++++

Bugfixes

  • Fixed a bug when using iter_content with decode_unicode=True for
    streamed bodies would raise AttributeError. This bug was introduced in
    2.11.
  • Strip Content-Type and Transfer-Encoding headers from the header block when
    following a redirect that transforms the verb from POST/PUT to GET.

2.11.0

+++++++++++++++++++

Improvements

  • Added support for the ALL_PROXY environment variable.
  • Reject header values that contain leading whitespace or newline characters to
    reduce risk of header smuggling.

Bugfixes

  • Fixed occasional TypeError when attempting to decode a JSON response that
    occurred in an error case. Now correctly returns a ValueError.
  • Requests would incorrectly ignore a non-CIDR IP address in the NO_PROXY
    environment variables: Requests now treats it as a specific IP.
  • Fixed a bug when sending JSON data that could cause us to encounter obscure
    OpenSSL errors in certain network conditions (yes, really).
  • Added type checks to ensure that iter_content only accepts integers and
    None for chunk sizes.
  • Fixed issue where responses whose body had not been fully consumed would have
    the underlying connection closed but not returned to the connection pool,
    which could cause Requests to hang in situations where the HTTPAdapter
    had been configured to use a blocking connection pool.

Miscellaneous

  • Updated bundled urllib3 to 1.16.
  • Some previous releases accidentally accepted non-strings as acceptable header values. This release does not.

2.10.0

+++++++++++++++++++

New Features

  • SOCKS Proxy Support! (requires PySocks; $ pip install requests[socks])

Miscellaneous

  • Updated bundled urllib3 to 1.15.1.

2.9.2

++++++++++++++++++

Improvements

  • Change built-in CaseInsensitiveDict (used for headers) to use OrderedDict
    as its underlying datastore.

Bugfixes

  • Don't use redirect_cache if allow_redirects=False
  • When passed objects that throw exceptions from tell(), send them via
    chunked transfer encoding instead of failing.
  • Raise a ProxyError for proxy related connection issues.

2.9.1

++++++++++++++++++

Bugfixes

  • Resolve regression introduced in 2.9.0 that made it impossible to send binary
    strings as bodies in Python 3.
  • Fixed errors when calculating cookie expiration dates in certain locales.

Miscellaneous

  • Updated bundled urllib3 to 1.13.1.

2.9.0

++++++++++++++++++

Minor Improvements (Backwards compatible)

  • The verify keyword argument now supports being passed a path to a
    directory of CA certificates, not just a single-file bundle.
  • Warnings are now emitted when sending files opened in text mode.
  • Added the 511 Network Authentication Required status code to the status code
    registry.

Bugfixes

  • For file-like objects that are not seeked to the very beginning, we now
    send the content length for the number of bytes we will actually read, rather
    than the total size of the file, allowing partial file uploads.
  • When uploading file-like objects, if they are empty or have no obvious
    content length we set Transfer-Encoding: chunked rather than
    Content-Length: 0.
  • We correctly receive the response in buffered mode when uploading chunked
    bodies.
  • We now handle being passed a query string as a bytestring on Python 3, by
    decoding it as UTF-8.
  • Sessions are now closed in all cases (exceptional and not) when using the
    functional API rather than leaking and waiting for the garbage collector to
    clean them up.
  • Correctly handle digest auth headers with a malformed qop directive that
    contains no token, by treating it the same as if no qop directive was
    provided at all.
  • Minor performance improvements when removing specific cookies by name.

Miscellaneous

  • Updated urllib3 to 1.13.

2.8.1

++++++++++++++++++

Bugfixes

  • Update certificate bundle to match certifi 2015.9.6.2's weak certificate
    bundle.
  • Fix a bug in 2.8.0 where requests would raise ConnectTimeout instead of
    ConnectionError
  • When using the PreparedRequest flow, requests will now correctly respect the
    json parameter. Broken in 2.8.0.
  • When using the PreparedRequest flow, requests will now correctly handle a
    Unicode-string method name on Python 2. Broken in 2.8.0.

2.8.0

++++++++++++++++++

Minor Improvements (Backwards Compatible)

  • Requests now supports per-host proxies. This allows the proxies
    dictionary to have entries of the form
    {'<scheme>://<hostname>': '<proxy>'}. Host-specific proxies will be used
    in preference to the previously-supported scheme-specific ones, but the
    previous syntax will continue to work.
  • Response.raise_for_status now prints the URL that failed as part of the
    exception message.
  • requests.utils.get_netrc_auth now takes an raise_errors kwarg,
    defaulting to False. When True, errors parsing .netrc files cause
    exceptions to be thrown.
  • Change to bundled projects import logic to make it easier to unbundle
    requests downstream.
  • Changed the default User-Agent string to avoid leaking data on Linux: now
    contains only the requests version.

Bugfixes

  • The json parameter to post() and friends will now only be used if
    neither data nor files are present, consistent with the
    documentation.
  • We now ignore empty fields in the NO_PROXY environment variable.
  • Fixed problem where httplib.BadStatusLine would get raised if combining
    stream=True with contextlib.closing.
  • Prevented bugs where we would attempt to return the same connection back to
    the connection pool twice when sending a Chunked body.
  • Miscellaneous minor internal changes.
  • Digest Auth support is now thread safe.

Updates

  • Updated urllib3 to 1.12.

2.7.0

++++++++++++++++++

This is the first release that follows our new release process. For more, see
our documentation <http://docs.python-requests.org/en/latest/community/release-process/>_.

Bugfixes

  • Updated urllib3 to 1.10.4, resolving several bugs involving chunked transfer
    encoding and response framing.

2.6.2

++++++++++++++++++

Bugfixes

  • Fix regression where compressed data that was sent as chunked data was not
    properly decompressed. (2561)

2.6.1

++++++++++++++++++

Bugfixes

  • Remove VendorAlias import machinery introduced in v2.5.2.
  • Simplify the PreparedRequest.prepare API: We no longer require the user to
    pass an empty list to the hooks keyword argument. (c.f. 2552)
  • Resolve redirects now receives and forwards all of the original arguments to
    the adapter. (2503)
  • Handle UnicodeDecodeErrors when trying to deal with a unicode URL that
    cannot be encoded in ASCII. (2540)
  • Populate the parsed path of the URI field when performing Digest
    Authentication. (2426)
  • Copy a PreparedRequest's CookieJar more reliably when it is not an instance
    of RequestsCookieJar. (2527)

2.6.0

++++++++++++++++++

Bugfixes

  • CVE-2015-2296: Fix handling of cookies on redirect. Previously a cookie
    without a host value set would use the hostname for the redirected URL
    exposing requests users to session fixation attacks and potentially cookie
    stealing. This was disclosed privately by Matthew Daley of
    BugFuzz <https://bugfuzz.com>_. This affects all versions of requests from
    v2.1.0 to v2.5.3 (inclusive on both ends).
  • Fix error when requests is an install_requires dependency and python setup.py test is run. (2462)
  • Fix error when urllib3 is unbundled and requests continues to use the
    vendored import location.
  • Include fixes to urllib3's header handling.
  • Requests' handling of unvendored dependencies is now more restrictive.

Features and Improvements

  • Support bytearrays when passed as parameters in the files argument.
    (2468)
  • Avoid data duplication when creating a request with str, bytes, or
    bytearray input to the files argument.

2.5.3

++++++++++++++++++

Bugfixes

2.5.2

++++++++++++++++++

Features and Improvements

  • Add sha256 fingerprint support. (shazow/urllib3540_)
  • Improve the performance of headers. (shazow/urllib3544_)

Bugfixes

  • Copy pip's import machinery. When downstream redistributors remove
    requests.packages.urllib3 the import machinery will continue to let those
    same symbols work. Example usage in requests' documentation and 3rd-party
    libraries relying on the vendored copies of urllib3 will work without having
    to fallback to the system urllib3.
  • Attempt to quote parts of the URL on redirect if unquoting and then quoting
    fails. (2356)
  • Fix filename type check for multipart form-data uploads. (2411)
  • Properly handle the case where a server issuing digest authentication
    challenges provides both auth and auth-int qop-values. (2408)
  • Fix a socket leak. (shazow/urllib3549_)
  • Fix multiple Set-Cookie headers properly. (shazow/urllib3534_)
  • Disable the built-in hostname verification. (shazow/urllib3526_)
  • Fix the behaviour of decoding an exhausted stream. (shazow/urllib3535_)

Security

  • Pulled in an updated cacert.pem.
  • Drop RC4 from the default cipher list. (shazow/urllib3551_)

.. _shazow/urllib3551: urllib3/urllib3#551
.. _shazow/urllib3549: urllib3/urllib3#549
.. _shazow/urllib3544: urllib3/urllib3#544
.. _shazow/urllib3540: urllib3/urllib3#540
.. _shazow/urllib3535: urllib3/urllib3#535
.. _shazow/urllib3534: urllib3/urllib3#534
.. _shazow/urllib3526: urllib3/urllib3#526

2.5.1

++++++++++++++++++

Behavioural Changes

  • Only catch HTTPErrors in raise_for_status (2382)

Bugfixes

  • Handle LocationParseError from urllib3 (2344)
  • Handle file-like object filenames that are not strings (2379)
  • Unbreak HTTPDigestAuth handler. Allow new nonces to be negotiated (2389)

2.5.0

++++++++++++++++++

Improvements

  • Allow usage of urllib3's Retry object with HTTPAdapters (2216)
  • The iter_lines method on a response now accepts a delimiter with which
    to split the content (2295)

Behavioural Changes

  • Add deprecation warnings to functions in requests.utils that will be removed
    in 3.0 (2309)
  • Sessions used by the functional API are always closed (2326)
  • Restrict requests to HTTP/1.1 and HTTP/1.0 (stop accepting HTTP/0.9) (2323)

Bugfixes

  • Only parse the URL once (2353)
  • Allow Content-Length header to always be overridden (2332)
  • Properly handle files in HTTPDigestAuth (2333)
  • Cap redirect_cache size to prevent memory abuse (2299)
  • Fix HTTPDigestAuth handling of redirects after authenticating successfully
    (2253)
  • Fix crash with custom method parameter to Session.request (2317)
  • Fix how Link headers are parsed using the regular expression library (2271)

Documentation

  • Add more references for interlinking (2348)
  • Update CSS for theme (2290)
  • Update width of buttons and sidebar (2289)
  • Replace references of Gittip with Gratipay (2282)
  • Add link to changelog in sidebar (2273)

2.4.3

++++++++++++++++++

Bugfixes

  • Unicode URL improvements for Python 2.
  • Re-order JSON param for backwards compat.
  • Automatically defrag authentication schemes from host/pass URIs. (2249 <https://github.com/kennethreitz/requests/issues/2249>_)

2.4.2

++++++++++++++++++

Improvements

  • FINALLY! Add json parameter for uploads! (2258 <https://github.com/kennethreitz/requests/pull/2258>_)
  • Support for bytestring URLs on Python 3.x (2238 <https://github.com/kennethreitz/requests/pull/2238>_)

Bugfixes

  • Avoid getting stuck in a loop (2244 <https://github.com/kennethreitz/requests/pull/2244>_)
  • Multiple calls to iter* fail with unhelpful error. (2240 <https://github.com/kennethreitz/requests/issues/2240>, 2241 <https://github.com/kennethreitz/requests/issues/2241>)

Documentation

  • Correct redirection introduction (2245 <https://github.com/kennethreitz/requests/pull/2245/>_)
  • Added example of how to send multiple files in one request. (2227 <https://github.com/kennethreitz/requests/pull/2227/>_)
  • Clarify how to pass a custom set of CAs (2248 <https://github.com/kennethreitz/requests/pull/2248/>_)

2.4.1

++++++++++++++++++

  • Now has a "security" package extras set, $ pip install requests[security]
  • Requests will now use Certifi if it is available.
  • Capture and re-raise urllib3 ProtocolError
  • Bugfix for responses that attempt to redirect to themselves forever (wtf?).

2.4.0

++++++++++++++++++

Behavioral Changes

  • Connection: keep-alive header is now sent automatically.

Improvements

  • Support for connect timeouts! Timeout now accepts a tuple (connect, read) which is used to set individual connect and read timeouts.
  • Allow copying of PreparedRequests without headers/cookies.
  • Updated bundled urllib3 version.
  • Refactored settings loading from environment -- new Session.merge_environment_settings.
  • Handle socket errors in iter_content.

2.3.0

++++++++++++++++++

API Changes

  • New Response property is_redirect, which is true when the
    library could have processed this response as a redirection (whether
    or not it actually did).
  • The timeout parameter now affects requests with both stream=True and
    stream=False equally.
  • The change in v2.0.0 to mandate explicit proxy schemes has been reverted.
    Proxy schemes now default to http://.
  • The CaseInsensitiveDict used for HTTP headers now behaves like a normal
    dictionary when references as string or viewed in the interpreter.

Bugfixes

  • No longer expose Authorization or Proxy-Authorization headers on redirect.
    Fix CVE-2014-1829 and CVE-2014-1830 respectively.
  • Authorization is re-evaluated each redirect.
  • On redirect, pass url as native strings.
  • Fall-back to autodetected encoding for JSON when Unicode detection fails.
  • Headers set to None on the Session are now correctly not sent.
  • Correctly honor decode_unicode even if it wasn't used earlier in the same
    response.
  • Stop advertising compress as a supported Content-Encoding.
  • The Response.history parameter is now always a list.
  • Many, many urllib3 bugfixes.

2.2.1

++++++++++++++++++

Bugfixes

  • Fixes incorrect parsing of proxy credentials that contain a literal or encoded '' character.
  • Assorted urllib3 fixes.

2.2.0

++++++++++++++++++

API Changes

  • New exception: ContentDecodingError. Raised instead of urllib3
    DecodeError exceptions.

Bugfixes

  • Avoid many many exceptions from the buggy implementation of proxy_bypass on OS X in Python 2.6.
  • Avoid crashing when attempting to get authentication credentials from ~/.netrc when running as a user without a home directory.
  • Use the correct pool size for pools of connections to proxies.
  • Fix iteration of CookieJar objects.
  • Ensure that cookies are persisted over redirect.
  • Switch back to using chardet, since it has merged with charade.

2.1.0

++++++++++++++++++

  • Updated CA Bundle, of course.
  • Cookies set on individual Requests through a Session (e.g. via Session.get()) are no longer persisted to the Session.
  • Clean up connections when we hit problems during chunked upload, rather than leaking them.
  • Return connections to the pool when a chunked upload is successful, rather than leaking it.
  • Match the HTTPbis recommendation for HTTP 301 redirects.
  • Prevent hanging when using streaming uploads and Digest Auth when a 401 is received.
  • Values of headers set by Requests are now always the native string type.
  • Fix previously broken SNI support.
  • Fix accessing HTTP proxies using proxy authentication.
  • Unencode HTTP Basic usernames and passwords extracted from URLs.
  • Support for IP address ranges for no_proxy environment variable
  • Parse headers correctly when users override the default Host: header.
  • Avoid munging the URL in case of case-sensitive servers.
  • Looser URL handling for non-HTTP/HTTPS urls.
  • Accept unicode methods in Python 2.6 and 2.7.
  • More resilient cookie handling.
  • Make Response objects pickleable.
  • Actually added MD5-sess to Digest Auth instead of pretending to like last time.
  • Updated internal urllib3.
  • Fixed Lukasa's lack of taste.

2.0.1

++++++++++++++++++

  • Updated included CA Bundle with new mistrusts and automated process for the future
  • Added MD5-sess to Digest Auth
  • Accept per-file headers in multipart file POST messages.
  • Fixed: Don't send the full URL on CONNECT messages.
  • Fixed: Correctly lowercase a redirect scheme.
  • Fixed: Cookies not persisted when set via functional API.
  • Fixed: Translate urllib3 ProxyError into a requests ProxyError derived from ConnectionError.
  • Updated internal urllib3 and chardet.

2.0.0

++++++++++++++++++

API Changes:

  • Keys in the Headers dictionary are now native strings on all Python versions,
    i.e. bytestrings on Python 2, unicode on Python 3.
  • Proxy URLs now must have an explicit scheme. A MissingSchema exception
    will be raised if they don't.
  • Timeouts now apply to read time if Stream=False.
  • RequestException is now a subclass of IOError, not RuntimeError.
  • Added new method to PreparedRequest objects: PreparedRequest.copy().
  • Added new method to Session objects: Session.update_request(). This
    method updates a Request object with the data (e.g. cookies) stored on
    the Session.
  • Added new method to Session objects: Session.prepare_request(). This
    method updates and prepares a Request object, and returns the
    corresponding PreparedRequest object.
  • Added new method to HTTPAdapter objects: HTTPAdapter.proxy_headers().
    This should not be called directly, but improves the subclass interface.
  • httplib.IncompleteRead exceptions caused by incorrect chunked encoding
    will now raise a Requests ChunkedEncodingError instead.
  • Invalid percent-escape sequences now cause a Requests InvalidURL
    exception to be raised.
  • HTTP 208 no longer uses reason phrase "im_used". Correctly uses
    "already_reported".
  • HTTP 226 reason added ("im_used").

Bugfixes:

  • Vastly improved proxy support, including the CONNECT verb. Special thanks to
    the many contributors who worked towards this improvement.
  • Cookies are now properly managed when 401 authentication responses are
    received.
  • Chunked encoding fixes.
  • Support for mixed case schemes.
  • Better handling of streaming downloads.
  • Retrieve environment proxies from more locations.
  • Minor cookies fixes.
  • Improved redirect behaviour.
  • Improved streaming behaviour, particularly for compressed data.
  • Miscellaneous small Python 3 text encoding bugs.
  • .netrc no longer overrides explicit auth.
  • Cookies set by hooks are now correctly persisted on Sessions.
  • Fix problem with cookies that specify port numbers in their host field.
  • BytesIO can be used to perform streaming uploads.
  • More generous parsing of the no_proxy environment variable.
  • Non-string objects can be passed in data values alongside files.

1.2.3

++++++++++++++++++

  • Simple packaging fix

1.2.2

++++++++++++++++++

  • Simple packaging fix

1.2.1

++++++++++++++++++

  • 301 and 302 redirects now change the verb to GET for all verbs, not just
    POST, improving browser compatibility.
  • Python 3.3.2 compatibility
  • Always percent-encode location headers
  • Fix connection adapter matching to be most-specific first
  • new argument to the default connection adapter for passing a block argument
  • prevent a KeyError when there's no link headers

1.2.0

++++++++++++++++++

  • Fixed cookies on sessions and on requests
  • Significantly change how hooks are dispatched - hooks now receive all the
    arguments specified by the user when making a request so hooks can make a
    secondary request with the same parameters. This is especially necessary for
    authentication handler authors
  • certifi support was removed
  • Fixed bug where using OAuth 1 with body signature_type sent no data
  • Major proxy work thanks to Lukasa including parsing of proxy authentication
    from the proxy url
  • Fix DigestAuth handling too many 401s
  • Update vendored urllib3 to include SSL bug fixes
  • Allow keyword arguments to be passed to json.loads() via the
    Response.json() method
  • Don't send Content-Length header by default on GET or HEAD
    requests
  • Add elapsed attribute to Response objects to time how long a request
    took.
  • Fix RequestsCookieJar
  • Sessions and Adapters are now picklable, i.e., can be used with the
    multiprocessing library
  • Update charade to version 1.0.3

The change in how hooks are dispatched will likely cause a great deal of
issues.

1.1.0

++++++++++++++++++

  • CHUNKED REQUESTS
  • Support for iterable response bodies
  • Assume servers persist redirect params
  • Allow explicit content types to be specified for file data
  • Make merge_kwargs case-insensitive when looking up keys

1.0.3

++++++++++++++++++

  • Fix file upload encoding bug
  • Fix cookie behavior

1.0.2

++++++++++++++++++

  • Proxy fix for HTTPAdapter.

1.0.1

++++++++++++++++++

  • Cert verification exception bug.
  • Proxy fix for HTTPAdapter.

1.0.0

++++++++++++++++++

  • Massive Refactor and Simplification
  • Switch to Apache 2.0 license
  • Swappable Connection Adapters
  • Mountable Connection Adapters
  • Mutable ProcessedRequest chain
  • /s/prefetch/stream
  • Removal of all configuration
  • Standard library logging
  • Make Response.json() callable, not property.
  • Usage of new charade project, which provides python 2 and 3 simultaneous chardet.
  • Removal of all hooks except 'response'
  • Removal of all authentication helpers (OAuth, Kerberos)

This is not a backwards compatible change.

0.14.2

+++++++++++++++++++

  • Improved mime-compatible JSON handling
  • Proxy fixes
  • Path hack fixes
  • Case-Insensitive Content-Encoding headers
  • Support for CJK parameters in form posts

0.14.1

+++++++++++++++++++

  • Python 3.3 Compatibility
  • Simply default accept-encoding
  • Bugfixes

0.14.0

++++++++++++++++++++

  • No more iter_content errors if already downloaded.

0.13.9

+++++++++++++++++++

  • Fix for OAuth + POSTs
  • Remove exception eating from dispatch_hook
  • General bugfixes

0.13.8

+++++++++++++++++++

  • Incredible Link header support :)

0.13.7

+++++++++++++++++++

  • Support for (key, value) lists everywhere.
  • Digest Authentication improvements.
  • Ensure proxy exclusions work properly.
  • Clearer UnicodeError exceptions.
  • Automatic casting of URLs to strings (fURL and such)
  • Bugfixes.

0.13.6

+++++++++++++++++++

  • Long awaited fix for hanging connections!

0.13.5

+++++++++++++++++++

  • Packaging fix

0.13.4

+++++++++++++++++++

  • GSSAPI/Kerberos authentication!
  • App Engine 2.7 Fixes!
  • Fix leaking connections (from urllib3 update)
  • OAuthlib path hack fix
  • OAuthlib URL parameters fix.

0.13.3

+++++++++++++++++++

  • Use simplejson if available.
  • Do not hide SSLErrors behind Timeouts.
  • Fixed param handling with urls containing fragments.
  • Significantly improved information in User Agent.
  • client certificates are ignored when verify=False

0.13.2

+++++++++++++++++++

  • Zero dependencies (once again)!
  • New: Response.reason
  • Sign querystring parameters in OAuth 1.0
  • Client certificates no longer ignored when verify=False
  • Add openSUSE certificate support

0.13.1

+++++++++++++++++++

  • Allow passing a file or file-like object as data.
  • Allow hooks to return responses that indicate errors.
  • Fix Response.text and Response.json for body-less responses.

0.13.0

+++++++++++++++++++

  • Removal of Requests.async in favor of grequests <https://github.com/kennethreitz/grequests>_
  • Allow disabling of cookie persistence.
  • New implementation of safe_mode
  • cookies.get now supports default argument
  • Session cookies not saved when Session.request is called with return_response=False
  • Env: no_proxy support.
  • RequestsCookieJar improvements.
  • Various bug fixes.

0.12.1

+++++++++++++++++++

  • New Response.json property.
  • Ability to add string file uploads.
  • Fix out-of-range issue with iter_lines.
  • Fix iter_content default size.
  • Fix POST redirects containing files.

0.12.0

+++++++++++++++++++

  • EXPERIMENTAL OAUTH SUPPORT!
  • Proper CookieJar-backed cookies interface with awesome dict-like interface.
  • Speed fix for non-iterated content chunks.
  • Move pre_request to a more usable place.
  • New pre_send hook.
  • Lazily encode data, params, files.
  • Load system Certificate Bundle if certify isn't available.
  • Cleanups, fixes.

0.11.2

+++++++++++++++++++

  • Attempt to use the OS's certificate bundle if certifi isn't available.
  • Infinite digest auth redirect fix.
  • Multi-part file upload improvements.
  • Fix decoding of invalid %encodings in URLs.
  • If there is no content in a response don't throw an error the second time that content is attempted to be read.
  • Upload data on redirects.

0.11.1

+++++++++++++++++++

  • POST redirects now break RFC to do what browsers do: Follow up with a GET.
  • New strict_mode configuration to disable new redirect behavior.

0.11.0

+++++++++++++++++++

  • Private SSL Certificate support
  • Remove select.poll from Gevent monkeypatching
  • Remove redundant generator for chunked transfer encoding
  • Fix: Response.ok raises Timeout Exception in safe_mode

0.10.8

+++++++++++++++++++

  • Generate chunked ValueError fix
  • Proxy configuration by environment variables
  • Simplification of iter_lines.
  • New trust_env configuration for disabling system/environment hints.
  • Suppress cookie errors.

0.10.7

+++++++++++++++++++

  • encode_uri = False

0.10.6

+++++++++++++++++++

  • Allow '=' in cookies.

0.10.5

+++++++++++++++++++

  • Response body with 0 content-length fix.
  • New async.imap.
  • Don't fail on netrc.

0.10.4

+++++++++++++++++++

  • Honor netrc.

0.10.3

+++++++++++++++++++

  • HEAD requests don't follow redirects anymore.
  • raise_for_status() doesn't raise for 3xx anymore.
  • Make Session objects picklable.
  • ValueError for invalid schema URLs.

0.10.2

+++++++++++++++++++

  • Vastly improved URL quoting.
  • Additional allowed cookie key values.
  • Attempted fix for "Too many open files" Error
  • Replace unicode errors on first pass, no need for second pass.
  • Append '/' to bare-domain urls before query insertion.
  • Exceptions now inherit from RuntimeError.
  • Binary uploads + auth fix.
  • Bugfixes.

0.10.1

+++++++++++++++++++

  • PYTHON 3 SUPPORT!
  • Dropped 2.5 Support. (Backwards Incompatible)

0.10.0

+++++++++++++++++++

  • Response.content is now bytes-only. (Backwards Incompatible)
  • New Response.text is unicode-only.
  • If no Response.encoding is specified and chardet is available, Response.text will guess an encoding.
  • Default to ISO-8859-1 (Western) encoding for "text" subtypes.
  • Removal of decode_unicode. (Backwards Incompatible)
  • New multiple-hooks system.
  • New Response.register_hook for registering hooks within the pipeline.
  • Response.url is now Unicode.

0.9.3

++++++++++++++++++

  • SSL verify=False bugfix (apparent on windows machines).

0.9.2

++++++++++++++++++

  • Asynchronous async.send method.
  • Support for proper chunk streams with boundaries.
  • session argument for Session classes.
  • Print entire hook tracebacks, not just exception instance.
  • Fix response.iter_lines from pending next line.
  • Fix but in HTTP-digest auth w/ URI having query strings.
  • Fix in Event Hooks section.
  • Urllib3 update.

0.9.1

++++++++++++++++++

  • danger_mode for automatic Response.raise_for_status()
  • Response.iter_lines refactor

0.9.0

++++++++++++++++++

  • verify ssl is default.

0.8.9

++++++++++++++++++

  • Packaging fix.

0.8.8

++++++++++++++++++

  • SSL CERT VERIFICATION!
  • Release of Cerifi: Mozilla's cert list.
  • New 'verify' argument for SSL requests.
  • Urllib3 update.

0.8.7

++++++++++++++++++

  • iter_lines last-line truncation fix
  • Force safe_mode for async requests
  • Handle safe_mode exceptions more consistently
  • Fix iteration on null responses in safe_mode

0.8.6

++++++++++++++++++

  • Socket timeout fixes.
  • Proxy Authorization support.

0.8.5

++++++++++++++++++

  • Response.iter_lines!

0.8.4

++++++++++++++++++

  • Prefetch bugfix.
  • Added license to installed version.

0.8.3

++++++++++++++++++

  • Converted auth system to use simpler callable objects.
  • New session parameter to API methods.
  • Display full URL while logging.

0.8.2

++++++++++++++++++

  • New Unicode decoding system, based on over-ridable Response.encoding.
  • Proper URL slash-quote handling.
  • Cookies with [, ], and _ allowed.

0.8.1

++++++++++++++++++

  • URL Request path fix
  • Proxy fix.
  • Timeouts fix.

0.8.0

++++++++++++++++++

  • Keep-alive support!
  • Complete removal of Urllib2
  • Complete removal of Poster
  • Complete removal of CookieJars
  • New ConnectionError raising
  • Safe_mode for error catching
  • prefetch parameter for request methods
  • OPTION method
  • Async pool size throttling
  • File uploads send real names
  • Vendored in urllib3

0.7.6

++++++++++++++++++

  • Digest authentication bugfix (attach query data to path)

0.7.5

++++++++++++++++++

  • Response.content = None if there was an invalid response.
  • Redirection auth handling.

0.7.4

++++++++++++++++++

  • Session Hooks fix.

0.7.3

++++++++++++++++++

  • Digest Auth fix.

0.7.2

++++++++++++++++++

  • PATCH Fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant