summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2019-08-21 19:06:09 -0400
committerLeonard Richardson <leonardr@segfault.org>2019-08-21 19:06:09 -0400
commit694a432f6ed1a62de742c7dfda0ed39ca4f2bb63 (patch)
tree57a73c5a8ec210a09046ab77c6687b300590ab8b /CHANGELOG
parentdb31fa66e82d097c2378734950bd3066acdae397 (diff)
When instantiating a BeautifulSoup object, it's now possible to
provide replacement classes to be instantiated for every tag ('tag_class') or string ('string_class') encountered during parsing, rather than using the default Tag and NavigableString objects.
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 767b74b..cff70be 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -12,6 +12,11 @@
* Copying a Tag preserves information that was originally obtained from
the TreeBuilder used to build the original Tag. [bug=1838903]
+* When instantiating a BeautifulSoup object, it's now possible to
+ provide replacement classes to be instantiated for every tag ('tag_class')
+ or string ('string_class') encountered during parsing, rather than
+ using the default Tag and NavigableString objects.
+
= 4.8.0 (20190720, "One Small Soup")
This release focuses on making it easier to customize Beautiful Soup's