Skip to content

Commit 842fcb4

Browse files
author
Greg Guthe
committed
Update for v3.3.0 release
1 parent 1334134 commit 842fcb4

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGES

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Bleach changes
22
==============
33

4+
Version 3.3.0 (February 1st, 2021)
5+
----------------------------------
6+
7+
**Backwards incompatible changes**
8+
9+
* clean escapes HTML comments even when strip_comments=False
10+
11+
**Security fixes**
12+
13+
* Fix bug 1621692 / GHSA-m6xf-fq7q-8743. See the advisory for details.
14+
15+
**Features**
16+
17+
None
18+
19+
**Bug fixes**
20+
21+
None
22+
423
Version 3.2.3 (January 26th, 2021)
524
----------------------------------
625

SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ currently being supported with security updates.
77

88
| Version | Supported |
99
| ------- | ------------------ |
10-
| 3.2.x | :white_check_mark: |
11-
| < 3.1 | :x: |
10+
| 3.3.x | :white_check_mark: |
11+
| < 3.2 | :x: |
1212

1313
## Reporting a Vulnerability
1414

bleach/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919

2020
# yyyymmdd
21-
__releasedate__ = "20210126"
21+
__releasedate__ = "20210201"
2222
# x.y.z or x.y.z.dev0 -- semver
23-
__version__ = "3.2.3"
23+
__version__ = "3.3.0"
2424
VERSION = packaging.version.Version(__version__)
2525

2626

tests_website/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="UTF-8">
5-
<title>Python Bleach 3.2.3</title>
5+
<title>Python Bleach 3.3.0</title>
66
<style>
77
textarea, iframe {
88
width: 95%;
@@ -20,7 +20,7 @@
2020
</style>
2121
</head>
2222
<body>
23-
<h2>Python Bleach 3.2.3</h2>
23+
<h2>Python Bleach 3.3.0</h2>
2424
<p>
2525
<a href="http://badge.fury.io/py/bleach"><img style="max-width:100%;" alt="pypi version" src="https://badge.fury.io/py/bleach.svg"></a>
2626
<a href="https://github.com/mozilla/bleach/actions?query=workflow%3ATest"><img style="max-width:100%;" alt="Build Status" src="https://github.com/mozilla/bleach/workflows/Test/badge.svg"></a>

0 commit comments

Comments
 (0)