SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for python38-aiohttp-3.8.1-97.4.i586.rpm :

* Fri Jul 29 2022 Torsten Gruner - enable multibuild for test
* Sun Mar 27 2022 Ben Greiner - Add ignore-pytest-deprecationwarning.patch
* gh#aio-libs/aiohttp#6663
* Sat Dec 11 2021 Ben Greiner - Update to version 3.8.1
* Bugfixes
* Fix the error in handling the return value of getaddrinfo. getaddrinfo will return an (int, bytes) tuple, if CPython could not handle the address family. It will cause a index out of range error in aiohttp. For example, if user compile CPython with --disable-ipv6 option but his system enable the ipv6. [#5901]
* Do not install \"examples\" as a top-level package. #6189
* Restored ability to connect IPv6-only host. #6195
* Remove Signal from __all__, replace aiohttp.Signal with aiosignal.Signal in docs #6201
* Made chunked encoding HTTP header check stricter. #6305
* Improved Documentation
* update quick starter demo codes. #6240
* Added an explanation of how tiny timeouts affect performance to the client reference document. #6274
* Add flake8-docstrings to flake8 configuration, enable subset of checks. #6276
* Added information on running complex applications with additional tasks/processes -- :user:`Dreamsorcerer`. #6278- Release 3.8.0 (2021-10-31)
* Features
* Added a GunicornWebWorker feature for extending the aiohttp server configuration by allowing the \'wsgi\' coroutine to return web.AppRunner object. #2988
* Switch from http-parser to llhttp #3561
* Use Brotli instead of brotlipy #3803
* Disable implicit switch-back to pure python mode. The build fails loudly if aiohttp cannot be compiled with C Accelerators. Use AIOHTTP_NO_EXTENSIONS=1 to explicitly disable C Extensions complication and switch to Pure-Python mode. Note that Pure-Python mode is significantly slower than compiled one. [#3828]
* Make access log use local time with timezone #3853
* Implemented readuntil in StreamResponse #4054
* FileResponse now supports ETag. #4594
* Add a request handler type alias aiohttp.typedefs.Handler. [#4686]
* AioHTTPTestCase is more async friendly now.
* For people who use unittest and are used to use :py:exc:`~unittest.TestCase` it will be easier to write new test cases like the sync version of the :py:exc:`~unittest.TestCase` class, without using the decorator AATTunittest_run_loop, just async def test_
*. The only difference is that for the people using python3.7 and below a new dependency is needed, it is asynctestcase. #4700
* Add validation of HTTP header keys and values to prevent header injection. #4818
* Add predicate to AbstractCookieJar.clear. Add AbstractCookieJar.clear_domain to clean all domain and subdomains cookies only. #4942
* Add keepalive_timeout parameter to web.run_app. #5094
* Tracing for client sent headers #5105
* Make type hints for http parser stricter #5267
* Add final declarations for constants. #5275
* Switch to external frozenlist and aiosignal libraries. #5293
* Don\'t send secure cookies by insecure transports.
* By default, the transport is secure if https or wss scheme is used. Use CookieJar(treat_as_secure_origin=\"http://127.0.0.1\") to override the default security checker. #5571
* Always create a new event loop in aiohttp.web.run_app(). This adds better compatibility with asyncio.run() or if trying to run multiple apps in sequence. #5572
* Add aiohttp.pytest_plugin.AiohttpClient for static typing of pytest plugin. #5585
* Added a socket_factory argument to BaseTestServer. #5844
* Add compression strategy parameter to enable_compression method. #5909
* Added support for Python 3.10 to Github Actions CI/CD workflows and fix the related deprecation warnings -- :user:`Hanaasagi`. [#5927]
* Switched chardet to charset-normalizer for guessing the HTTP payload body encoding -- :user:`Ousret`. #5930
* Added optional auto_decompress argument for HttpRequestParser [#5957]
* Added support for HTTPS proxies to the extent CPython\'s :py:mod:`asyncio` supports it -- by :user:`bmbouter`, :user:`jborean93` and :user:`webknjaz`. #5992
* Added base_url parameter to the initializer of :class:`~aiohttp.ClientSession`. #6013
* Add Trove classifier and create binary wheels for 3.10. -- :user:`hugovk`. #6079
* Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes — :user:`asvetlov`. [#6139]
* Started shipping platform-specific arm64 wheels for Apple Silicon — :user:`asvetlov`. #6139
* Bugfixes
* Modify _drain_helper() to handle concurrent await resp.write(...) or ws.send_json(...) calls without race-condition. #2934
* Started using MultiLoopChildWatcher when it\'s available under POSIX while setting up the test I/O loop. #3450
* Only encode content-disposition filename parameter using percent-encoding. Other parameters are encoded to quoted-string or RFC2231 extended parameter value. #4012
* Fixed HTTP client requests to honor no_proxy environment variables. #4431
* Fix supporting WebSockets proxies configured via environment variables. #4648
* Change return type on URLDispatcher to UrlMappingMatchInfo to improve type annotations. #4748
* Ensure a cleanup context is cleaned up even when an exception occurs during startup. #4799
* Added a new exception type for Unix socket client errors which provides a more useful error message. #4984
* Remove Transfer-Encoding and Content-Type headers for 204 in StreamResponse #5106
* Only depend on typing_extensions for Python <3.8 #5107
* Add ABNORMAL_CLOSURE and BAD_GATEWAY to WSCloseCode #5192
* Fix cookies disappearing from HTTPExceptions. #5233
* StaticResource prefixes no longer match URLs with a non-folder prefix. For example routes.static(\'/foo\', \'/foo\') no longer matches the URL /foobar. Previously, this would attempt to load the file /foo/ar. #5250
* Acquire the connection before running traces to prevent race condition. #5259
* Add missing slots to `_RequestContextManager and _WSRequestContextManager #5329
* Ensure sending a zero byte file does not throw an exception (round 2) #5380
* Set \"text/plain\" when data is an empty string in client requests. #5392
* Stop automatically releasing the ClientResponse object on calls to the ok property for the failed requests. #5403
* Include query parameters from params keyword argument in tracing URL. #5432
* Fix annotations #5466
* Fixed the multipart POST requests processing to always release file descriptors for the tempfile.Temporaryfile-created _io.BufferedRandom instances of files sent within multipart request bodies via HTTP POST requests -- by :user:`webknjaz`. [#5494]
* Fix 0 being incorrectly treated as an immediate timeout. #5527
* Fixes failing tests when an environment variable _proxy is set. #5554
* Replace deprecated app handler design in tests/autobahn/server.py with call to web.run_app; replace deprecated aiohttp.ws_connect calls in tests/autobahn/client.py with aiohttp.ClienSession.ws_connect. #5606
* Fixed test for HTTPUnauthorized that access the text argument. This is not used in any part of the code, so it\'s removed now. [#5657]
* Remove incorrect default from docs #5727
* Remove external test dependency to http://httpbin.org #5840
* Don\'t cancel current task when entering a cancelled timer. [#5853]
* Added params keyword argument to ClientSession.ws_connect. -- :user:`hoh`. #5868
* Uses :py:class:`~asyncio.ThreadedChildWatcher` under POSIX to allow setting up test loop in non-main thread. #5877
* Fix the error in handling the return value of getaddrinfo. getaddrinfo will return an (int, bytes) tuple, if CPython could not handle the address family. It will cause a index out of range error in aiohttp. For example, if user compile CPython with --disable-ipv6 option but his system enable the ipv6. [#5901]
* Removed the deprecated loop argument from the asyncio.sleep/gather calls #5905
* Return None from request.if_modified_since, request.if_unmodified_since, request.if_range and response.last_modified when corresponding http date headers are invalid. #5925
* Fix resetting SIGCHLD signals in Gunicorn aiohttp Worker to fix subprocesses that capture output having an incorrect returncode. #6130
* Raise 400: Content-Length can\'t be present with Transfer-Encoding if both Content-Length and Transfer-Encoding are sent by peer by both C and Python implementations #6182
* Improved Documentation
* Refactored OpenAPI/Swagger aiohttp addons, added aio-openapi [#5326]
* Fixed docs on request cookies type, so it matches what is actually used in the code (a read-only dictionary-like object). [#5725]
* Documented that the HTTP client Authorization header is removed on redirects to a different host or protocol. #5850- Drop patches
* backport_fix_for_setting_cookies.patch
* remove_deprecated_loop_argument.patch
* stdlib-typing_extensions.patch
* unbundle-http-parser.patch -- replaced by llhttp, nothing else than the bundled llhttp available.- Disable building the docs (no sphinxcontrib-towncrier)
* Wed Nov 24 2021 Steve Kowalik - Drop python39-failures.patch, no longer required.
* Wed Nov 17 2021 Steve Kowalik - Update python39-failures.patch to only fire with Python 3.9.7.
* Fri Sep 10 2021 Matej Cepl - Restore python39-failures.patch, which is actually still needed.
* Thu Sep 09 2021 Matej Cepl - Remove python39-failures.patch and replace it with actual fix of the issue in remove_deprecated_loop_argument.patch.- Add backport_fix_for_setting_cookies.patch for backport of fixes from 3.8 branch.
* Wed Sep 08 2021 Matej Cepl - Add python39-failures.patch to fix test problems with Python 3.9.7+ (gh#aio-libs/aiohttp#5991).
* Tue Jun 08 2021 Matej Cepl - Remove pytest-asyncio dependency which is actually harmful (gh#aio-libs/aiohttp#5787).
* Thu May 13 2021 Matej Cepl - Add stdlib-typing_extensions.patch to avoid necessity for BR python-typing_extensions (gh#aio-libs/aiohttp#5374).
* Sun Feb 28 2021 Michael Ströder - Update to 3.7.4 - no upstream changelog available
* Sun Dec 20 2020 John Vandenberg - Allow use with chardet v4
* Fri Dec 04 2020 Benjamin Greiner - Update to v3.7.3 Features
* Made exceptions pickleable. Also changed the repr of some exceptions. #4077 Bugfixes
* Raise a ClientResponseError instead of an AssertionError for a blank HTTP Reason Phrase. #3532
* Fix web_middlewares.normalize_path_middleware behavior for patch without slash. #3669
* Fix overshadowing of overlapped sub-applications prefixes. [#3701]
* Make BaseConnector.close() a coroutine and wait until the client closes all connections. Drop deprecated \"with Connector():\" syntax. #3736
* Reset the sock_read timeout each time data is received for a aiohttp.client response. #3808
* Fixed type annotation for add_view method of UrlDispatcher to accept any subclass of View #3880
* Fixed querying the address families from DNS that the current host supports. #5156
* Change return type of MultipartReader.__aiter__() and BodyPartReader.__aiter__() to AsyncIterator. #5163
* Provide x86 Windows wheels. #5230
* Improved Documentation
* Add documentation for aiohttp.web.FileResponse. #3958
* Removed deprecation warning in tracing example docs #3964
* Fixed wrong \"Usage\" docstring of aiohttp.client.request. #4603
* Add aiohttp-pydantic to third party libraries #5228 Misc
* #4102- Also clean header files in sitearch- Remove hidden .hash directory (remnant from build process)- Fix python 3.6 build
* For Leap
* For TW with python36 flavor gh#openSUSE/python-rpm-macros#66
* Always BuildRequire idna_ssl
* Skip a failing test on python 3.6
* Next upstream release will drop python 3.6
* Wed Oct 28 2020 John Vandenberg - Re-activate tests- Update to v3.7.2
* Fixed static files handling for loops without .sendfile() support- from v3.7.1
* Fixed a type error caused by the conditional import of Protocol
* Server doesn\'t send Content-Length for 1xx or 204
* Fix run_app typing
* Always require typing_extensions library
* Fix a variable-shadowing bug causing ThreadedResolver.resolve to return the resolved IP as the ``hostname`` in each record, which prevented validation of HTTPS connections
* Added annotations to all public attributes
* Fix flaky test_when_timeout_smaller_second
* Ensure sending a zero byte file does not throw an exception- from v3.7.0
* Response headers are now prepared prior to running ``on_response_prepare`` hooks, directly before headers are sent to the client
* Add a ``quote_cookie`` option to ``CookieJar``, a way to skip quotation wrapping of cookies containing special characters
* Call AccessLogger.log with the current exception available from sys.exc_info()
* web.UrlDispatcher.add_routes and web.Application.add_routes return a list of registered AbstractRoute instances. `AbstractRouteDef.register` (and all subclasses) return a list of registered resources registered resource
* Added properties of default ClientSession params to ClientSession class so it is available for introspection
* Don\'t cancel web handler on peer disconnection, raise `OSError` on reading/writing instead.
* Implement BaseRequest.get_extra_info() to access a protocol transports\' extra info.
* Added `ClientSession.timeout` property
* Allow use of SameSite in cookies
* Use loop.sendfile() instead of custom implementation if available
* Apply SO_REUSEADDR to test server\'s socket
* Use .raw_host instead of slower .host in client API
* Allow configuring the buffer size of input stream by passing ``read_bufsize`` argument
* Add method and url attributes to TraceRequestChunkSentParams and TraceResponseChunkReceivedParams.
* Add ClientResponse.ok property for checking status code under 400
* Don\'t ceil timeouts that are smaller than 5 seconds.
* TCPSite now listens by default on all interfaces instead of just IPv4 when `None` is passed in as the host
* Bump ``http_parser`` to 2.9.4
* Fix keepalive connections not being closed in time
* Fix failed websocket handshake leaving connection hanging.
* Fix tasks cancellation order on exit. The run_app task needs to be cancelled first for cleanup hooks to run with all tasks intact.
* Don\'t start heartbeat until _writer is set
* Fix handling of multipart file uploads without a content type
* Preserve view handler function attributes across middlewares
* Fix the string representation of ServerDisconnectedError
* Raising RuntimeError when trying to get encoding from not read body
* Remove warning messages from noop.
* Raise ClientPayloadError if FormData re-processed.
* Fix a warning about unfinished task in web_protocol.py
* Fixed \'deflate\' compression. According to RFC 2616 now.
* Fixed OverflowError on platforms with 32-bit time_t
* Fixed request.body_exists returns wrong value for methods without body
* Fix connecting to link-local IPv6 addresses.
* Fix a problem with connection waiters that are never awaited
* Always make sure transport is not closing before reuse a connection. Reuse a protocol based on keepalive in headers is unreliable. For example, uWSGI will not support keepalive even it serves a HTTP 1.1 request, except explicitly configure uWSGI with a ``--http-keepalive`` option. Servers designed like uWSGI could cause aiohttp intermittently raise a ConnectionResetException when the protocol poll runs out and some protocol is reused.
* Handle the last CRLF correctly even if it is received via separate TCP segment.
* Fix the register_resource function to validate route name before splitting it so that route name can include python keywords
* Fix resolver task is not awaited when connector is cancelled
* Fix Aiohttp doesn\'t return any error on invalid request methods
* Fix HEAD requests for static content.
* Fix incorrect size calculation for memoryview
* Add HTTPMove to _all__.
* Fixed the type annotations in the ``tracing`` module.
* Fix typing for multipart ``__aiter__``.
* Fix for race condition on connections in BaseConnector that leads to exceeding the connection limit.
* Add forced UTF-8 encoding for ``application/rdap+json`` responses.
* Fix inconsistency between Python and C http request parsers in parsing pct-encoded URL
* Fix connection closing issue in HEAD request.
* Fix type hint on BaseRunner.addresses (from ``List[str]`` to ``List[Any]``)- from v3.6.3
* Pin yarl to `<1.6.0` to avoid buggy behavior
* Tue Mar 10 2020 Tomáš Chvátal - Update to 3.6.2:
* more compatibility fixes with python 3.8- Disable tests as they explode in upstream git too and all other distributions also gave up on it
* Tue Mar 10 2020 Tomáš Chvátal - Do remove pytest configuration to not error out on deprecation warnings- Unbundle http parser headers:
* unbundle-http-parser.patch
* Tue Sep 24 2019 Tomáš Chvátal - Update to 3.6.1:
* Compatibility with Python 3.8. #4056
* correct some exception string format #4068
* Emit a warning when ssl.OP_NO_COMPRESSION is unavailable because the runtime is built against an outdated OpenSSL. #4052
* Update multidict requirement to >= 4.5 #4057- Drop merged patch aiohttp-3.6.0-fix-typeerror.patch
* Wed Sep 18 2019 Matthias Fehring - Add patch to fix type error with old multidict:
* aiohttp-3.6.0-fix-typeerror.patch- Require python-multidict 4.5 or newer
* Fri Sep 13 2019 Tomáš Chvátal - Update to 3.6.0:
* Add support for Named Pipes
* Removed Transfer-Encoding: chunked header
* Accept non-GET request for starting websocket handshake on server side- Drop merged patch pytest5.patch
* Thu Aug 22 2019 Tomáš Chvátal - Add patch to work well with pytest 5:
* pytest5.patch
* Tue Jun 04 2019 Ondřej Súkup - Fix Requires and BuildRequires
* Wed Feb 27 2019 Ondřej Súkup - update to 3.5.4- drop invalid-escapes-in-tests.patch and rename-request-fixture.patch
* big list of changes from 3.4.4 - https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst
* Tue Jan 15 2019 Alberto Planas Dominguez - Remove version dependency from Cython (boo#1121578).
 
ICM