Skip to content

Commit fb0cd34

Browse files
chore: 3.2.0 Release (#364)
The latest _rororo_ version allows to install library alongside latest version of `attrs` & `email-validator` and **require** latest `environ-config` version. On top of that `rororo==3.2.0` ensure that `web.HTTPRedirection` errors will not handled by error middleware and will result in proper redirects. Features: --------- - Ensure support of `environ-config@^23.2.0` (#360) Fixes: ------ - (**settings**) Ensure `setup_settings_from_environ` function works well (#361) - [#191] (**openapi**) Do not handle redirection errors (#362) Other: ------ - Monthly maintenance (Jan 2023) (#314) - Bump dev Python version to 3.11.2 (#326) - (**deps**) bump actions/checkout from 3.2.0 to 3.3.0 (#323) - (**deps-dev**) bump redis from 4.5.1 to 4.5.3 (#328) - (**deps-dev**) bump types-redis from 4.5.1.3 to 4.5.3.0 (#329) - (**deps**) bump requests from 2.28.2 to 2.31.0 (#353) - (**deps**) bump attrs from 22.2.0 to 23.1.0 (#349) - Bump dev Python version to 3.11.3 (#359) - (**deps**) bump actions/checkout from 3.3.0 to 3.5.2 (#352) - (**deps**) bump email-validator from 1.3.1 to 2.0.0.post2 (#346) - (**deps-dev**) bump mypy from 1.0.1 to 1.3.0 (#357) - (**deps-dev**) bump redis from 4.5.3 to 4.5.4 (#330) - (**deps-dev**) bump pytest from 7.2.1 to 7.3.1 (#347) - (**deps-dev**) bump pytest-asyncio from 0.20.3 to 0.21.0 (#336) - (**deps-dev**) bump types-pyyaml from 6.0.12.8 to 6.0.12.10 (#358) - (**deps-dev**) bump types-redis from 4.5.3.0 to 4.5.5.2 (#356) - (**deps-dev**) bump furo from 2022.12.7 to 2023.3.27 (#332) - (**deps-dev**) bump sphinx-copybutton from 0.5.1 to 0.5.2 (#344) - (**deps-dev**) bump sphinx-autodoc-typehints from 1.22 to 1.23.0 (#345) - [#159] (**openapi**) Cover oneOf schema from Verifiable Credential API with test (#363) Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
1 parent 43d0ed1 commit fb0cd34

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

CHANGELOG.rst

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
3.2.0 (2023-05-29)
2+
==================
3+
4+
The latest _rororo_ version allows to install library alongside latest version
5+
of ``attrs`` & ``email-validator`` and **require** latest ``environ-config``
6+
version. On top of that ``rororo==3.2.0`` ensure that ``web.HTTPRedirection``
7+
errors will not handled by error middleware and will result in proper redirects.
8+
9+
**Features:**
10+
11+
- Ensure support of ``environ-config@^23.2.0`` (#360)
12+
13+
**Fixes:**
14+
15+
- (**settings**) Ensure ``setup_settings_from_environ`` function works well (#361)
16+
- [#191] (**openapi**) Do not handle redirection errors (#362)
17+
18+
**Other:**
19+
20+
- Monthly maintenance (Jan 2023) (#314)
21+
- Bump dev Python version to 3.11.2 (#326)
22+
- (**deps**) bump actions/checkout from 3.2.0 to 3.3.0 (#323)
23+
- (**deps-dev**) bump redis from 4.5.1 to 4.5.3 (#328)
24+
- (**deps-dev**) bump types-redis from 4.5.1.3 to 4.5.3.0 (#329)
25+
- (**deps**) bump requests from 2.28.2 to 2.31.0 (#353)
26+
- (**deps**) bump attrs from 22.2.0 to 23.1.0 (#349)
27+
- Bump dev Python version to 3.11.3 (#359)
28+
- (**deps**) bump actions/checkout from 3.3.0 to 3.5.2 (#352)
29+
- (**deps**) bump email-validator from 1.3.1 to 2.0.0.post2 (#346)
30+
- (**deps-dev**) bump mypy from 1.0.1 to 1.3.0 (#357)
31+
- (**deps-dev**) bump redis from 4.5.3 to 4.5.4 (#330)
32+
- (**deps-dev**) bump pytest from 7.2.1 to 7.3.1 (#347)
33+
- (**deps-dev**) bump pytest-asyncio from 0.20.3 to 0.21.0 (#336)
34+
- (**deps-dev**) bump types-pyyaml from 6.0.12.8 to 6.0.12.10 (#358)
35+
- (**deps-dev**) bump types-redis from 4.5.3.0 to 4.5.5.2 (#356)
36+
- (**deps-dev**) bump furo from 2022.12.7 to 2023.3.27 (#332)
37+
- (**deps-dev**) bump sphinx-copybutton from 0.5.1 to 0.5.2 (#344)
38+
- (**deps-dev**) bump sphinx-autodoc-typehints from 1.22 to 1.23.0 (#345)
39+
- [#159] (**openapi**) Cover oneOf schema from Verifiable Credential API with test (#363)
40+
141
3.1.0 (2022-12-26)
242
==================
343

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ignore_missing_imports = true
8686

8787
[tool.poetry]
8888
name = "rororo"
89-
version = "3.1.0"
89+
version = "3.2.0"
9090
description = "aiohttp.web OpenAPI 3 schema first server applications."
9191
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
9292
license = "BSD-3-Clause"

src/rororo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343

4444
__author__ = "Igor Davydenko"
4545
__license__ = "BSD-3-Clause"
46-
__version__ = "3.1.0"
46+
__version__ = "3.2.0"

tests/rororo/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.3",
33
"info": {
44
"title": "rororo",
5-
"version": "3.1.0",
5+
"version": "3.2.0",
66
"contact": {
77
"name": "Igor Davydenko (developer)",
88
"url": "https://igordavydenko.com",

tests/rororo/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: "3.0.3"
22

33
info:
44
title: "rororo"
5-
version: "3.1.0"
5+
version: "3.2.0"
66
contact:
77
name: "Igor Davydenko (developer)"
88
url: "https://igordavydenko.com"

0 commit comments

Comments
 (0)