forked from mozilla/bleach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
75 lines (49 loc) · 1.57 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Bleach Changes
==============
Version 1.2
-----------
- Bleach will no longer consider unacceptable protocols when linkifying.
- linkify() now takes a tokenizer argument that allows it to skip
sanitization.
- delinkify() is gone.
- Removed exception handling from _render. clean() and linkify() may now
throw
Version 1.1.3
-------------
- Fix parsing bare URLs when parse_email=True.
Version 1.1.2
-------------
- Fix hang in style attribute sanitizer. (#61)
- Allow '/' in style attribute values.
Version 1.1.1
-------------
- Fix tokenizer for html5lib 0.9.5.
Version 1.1.0
-------------
- linkify() now understands port numbers. (#38)
- Documented character encoding behavior. (#41)
- Add an optional target argument to linkify().
- Add delinkify() method. (#45)
- Support subdomain whitelist for delinkify(). (#47, #48)
Version 1.0.4
-------------
- Switch to SemVer git tags.
- Make linkify() smarter about trailing punctuation. (#30)
- Pass exc_info to logger during rendering issues.
- Add wildcard key for attributes. (#19)
- Make linkify() use the HTMLSanitizer tokenizer. (#36)
- Fix URLs wrapped in parentheses. (#23)
- Make linkify() UTF-8 safe. (#33)
Version 1.0.3
-------------
- linkify() works with 3rd level domains. (#24)
- clean() supports vendor prefixes in style values. (#31, #32)
- Fix linkify() email escaping.
Version 1.0.2
-------------
- linkify() supports email addresses.
- clean() supports callables in attributes filter.
Version 1.0.1
-------------
- linkify() doesn't drop trailing slashes. (#21)
- linkify() won't linkify 'libgl.so.1'. (#22)