Skip to content

Commit

Permalink
start expanding on the detail for each changelog item
Browse files Browse the repository at this point in the history
  • Loading branch information
cakemanny committed Mar 27, 2019
1 parent 9d972f2 commit 63179ba
Showing 1 changed file with 48 additions and 23 deletions.
71 changes: 48 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,58 @@
Version 19.03
Version 19.3
-------------
19.03.1
- Fixes:
- [#1529](https://github.com/huge-success/sanic/pull/1529) Update project PyPI credentials
19.03.0
19.3.1
- Changes:
- [#1502](https://github.com/huge-success/sanic/pull/1502) Remove current_time prefetch
- [#1499](https://github.com/huge-success/sanic/pull/1499) Add Route Resolution Benchmarking to Unit Test
- [#1497](https://github.com/huge-success/sanic/pull/1497) Recognizes non-ASCII filenames in RFC 2231, and suport filename length is zero for multipart/form-data.
- [#1489](https://github.com/huge-success/sanic/pull/1489) Added "databases" (documentation)
- [#1487](https://github.com/huge-success/sanic/pull/1487) Remove deleted repo from extensions list
- [#1484](https://github.com/huge-success/sanic/pull/1484) Enforce Datetime Type for Expires on Set-Cookie
- [#1483](https://github.com/huge-success/sanic/pull/1483) Add sanic-zipkin to extensions list
- [#1482](https://github.com/huge-success/sanic/pull/1482) Add stream support for bp.add_route()
- [#1481](https://github.com/huge-success/sanic/pull/1481) Allow negative int/number in path
- [#1502](https://github.com/huge-success/sanic/pull/1502)
Sanic was prefetching `time.time()` and updating it once per second to
avoid excessive `time.time()` calls. The implementation was observed to
cause memory leaks in some cases. The benefit of the prefetch appeared
to negligible, so this has been removed.

- [#1499](https://github.com/huge-success/sanic/pull/1499)
Added a set of test cases that test and benchmark route resolution

- [#1497](https://github.com/huge-success/sanic/pull/1497)
Add support for zero-length and RFC 5987 encoded filename for
multipart/form-data requests.

- [#1489](https://github.com/huge-success/sanic/pull/1489)
Added "databases" to the list of extension in the documentation.

- [#1487](https://github.com/huge-success/sanic/pull/1487)
Remove deleted repo, Sanic-OAuth from the extensions list in the
documentation.

- [#1484](https://github.com/huge-success/sanic/pull/1484)
The type of `expires` attribute of `sanic.cookies.Cookie` is now
enforced to be of type `datetime`.

- [#1483](https://github.com/huge-success/sanic/pull/1483)
Add sanic-zipkin to extensions list in the documentation.

- [#1482](https://github.com/huge-success/sanic/pull/1482)
Add support for the `stream` parameter of `sanic.Sanic.add_route()`
available to `sanic.Blueprint.add_route()`.

- [#1481](https://github.com/huge-success/sanic/pull/1481)
Accept negative values for route parameters with type `int` or `number`.

- [#1478](https://github.com/huge-success/sanic/pull/1478) Upgrade setuptools version and use native docutils in doc build
- [#1472](https://github.com/huge-success/sanic/pull/1472) Remove unwanted None check for repr in Request class
- [#1470](https://github.com/huge-success/sanic/pull/1470) make Sanic.create_server return an asyncio.Server

- Fixes:
- [#1516](https://github.com/huge-success/sanic/pull/#1516) Fix typo at the exception documentation
- [#1515](https://github.com/huge-success/sanic/pull/#1515) fix linter issue causing travis build failures (fix #1514)
- [#1510](https://github.com/huge-success/sanic/pull/#1510) fix typo in Asyncio example
- [#1501](https://github.com/huge-success/sanic/pull/#1501) Fix the auto_reloader to work when the executable was launched with a module
- [#1490](https://github.com/huge-success/sanic/pull/#1490) Fix python version in doc build
- [#1486](https://github.com/huge-success/sanic/pull/#1486) did you mean specific? (documentation typo)
- [#1477](https://github.com/huge-success/sanic/pull/#1477) Fix grammar in README.md
- [#1476](https://github.com/huge-success/sanic/pull/#1476) add Request.not_grouped_args, deprecation warning Request.raw_args deprecation idea discussion
- [#1464](https://github.com/huge-success/sanic/pull/#1464) Upgrade pytest, and fix caplog unit tests
- [#1529](https://github.com/huge-success/sanic/pull/1529) Update project PyPI credentials
- [#1516](https://github.com/huge-success/sanic/pull/1516) Fix typo at the exception documentation
- [#1515](https://github.com/huge-success/sanic/pull/1515) fix linter issue causing travis build failures (fix #1514)
- [#1510](https://github.com/huge-success/sanic/pull/1510) fix typo in Asyncio example
- [#1501](https://github.com/huge-success/sanic/pull/1501) Fix the auto_reloader to work when the executable was launched with a module
- [#1490](https://github.com/huge-success/sanic/pull/1490) Fix python version in doc build
- [#1486](https://github.com/huge-success/sanic/pull/1486) did you mean specific? (documentation typo)
- [#1477](https://github.com/huge-success/sanic/pull/1477) Fix grammar in README.md
- [#1476](https://github.com/huge-success/sanic/pull/1476) add Request.not_grouped_args, deprecation warning Request.raw_args deprecation idea discussion
- [#1464](https://github.com/huge-success/sanic/pull/1464) Upgrade pytest, and fix caplog unit tests

Note: 19.3.0 was skipped for packagement purposes and not released on PyPI

Version 18.12
-------------
Expand Down

0 comments on commit 63179ba

Please sign in to comment.