Skip to content

Commit fae0635

Browse files
committed
Start 5.next book
1 parent bc8b87c commit fae0635

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

config/conf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
# built documents.
1111
#
1212
# The short X.Y version.
13-
version = '5.x'
13+
version = '5.next'
1414

1515
# The full version, including alpha/beta/rc tags.
16-
release = '5.x'
16+
release = '5.next'
1717

1818
# The search index version.
19-
search_version = '5'
19+
search_version = '5-next'
2020

2121
# The marketing diplay name for the book.
2222
version_name = 'Chiffon'
@@ -31,15 +31,15 @@
3131
{'name': '1.2', 'number': '1.2', 'title': '1.2 Book'},
3232
{'name': '1.1', 'number': '1.1', 'title': '1.1 Book'},
3333
]
34-
# 5.x is pre-release still.
35-
is_prerelease = False
34+
# 5.next is pre-release still.
35+
is_prerelease = True
3636

3737
# Languages available.
3838
languages = ['en', 'pt_BR', 'es', 'ja', 'fr']
3939

4040
# The GitHub branch name for this version of the docs
4141
# for edit links to point at.
42-
branch = '5.x'
42+
branch = '5.next'
4343

4444
# Add any paths that contain custom themes here, relative to this directory.
4545
html_theme_path = []

en/appendices.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ introduced in each version and the migration path between versions.
1212

1313
appendices/5-0-upgrade-guide
1414
appendices/5-0-migration-guide
15+
appendices/5-1-upgrade-guide
1516

1617
Backwards Compatibility Shimming
1718
================================
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
5.1 Upgrade Guide
2+
#################
3+
4+
The 5.1.0 release is a backwards compatible with 5.0. It adds new functionality
5+
and introduces new deprecations. Any functionality deprecated in 5.x will be
6+
removed in 6.0.0.
7+
8+
9+
New Features
10+
============
11+
12+
Http
13+
----
14+
15+
- ``SecurityHeadersMiddleware::setPermissionsPolicy()`` was added. This method
16+
adds the ability to define ``permissions-policy`` header values.

en/security/security-headers.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ headers to responses:
1111
* ``X-Download-Options``
1212
* ``X-Frame-Options``
1313
* ``Referrer-Policy``
14+
* ``Permissions-Policy``
1415

1516
This middleware is configured using a fluent interface before it is applied to
1617
your application's middleware stack::

0 commit comments

Comments
 (0)