summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-07dont use or opemasterhaturatu
2024-08-21* Changes to make tests work whether tests are run under soupsieve 2.6Leonard Richardson
or an earlier version. Based on a patch by Stefano Rivera. * Removed the strip_cdata argument to lxml's HTMLParser constructor, which never did anything and is deprecated as of lxml 5.3.0. Patch by Stefano Rivera. [bug=2076897]
2024-02-12Applied patch from Marc Müller to add a stacklevel to a warning that was ↵Leonard Richardson
missing it.
2024-01-17Prepare for 4.12.3 release.Leonard Richardson
2024-01-17Added the correct stacklevel to instances of the XMLParsedAsHTMLWarning.Leonard Richardson
[bug=2034451]
2024-01-16Add chardet, cchardet, and charset-normalizer to the optional dependencies ↵Leonard Richardson
in pyproject. [bug=2019018]
2024-01-16Add tox.ini to sdist as per [bug=2016190]Leonard Richardson
2024-01-16Added Python 3.12 to the tox environments, and reduce the minimum tox ↵Leonard Richardson
version as per [bug=2016190]
2024-01-16Mention the new Chinese translation.Leonard Richardson
2024-01-16Restored link to Spanish documentation inside Chinese documentation.Leonard Richardson
2024-01-16Merge remote-tracking branch 'phoenixsite/master'Leonard Richardson
2024-01-16Correct issues with a docstring. [bug=2016190]Leonard Richardson
2024-01-15Added Chinese translation for version 4.12.0 (DeronW)Carlos Romero
2024-01-13Fixed typo.Leonard Richardson
2024-01-13Added to CHANGELOG celebrating the Spanish documentation translation.Leonard Richardson
2024-01-13Added links to the Spanish documentation alongside other languages.Leonard Richardson
2024-01-13Updated the name of the html5lib Debian package. [bug=2049267]Leonard Richardson
2024-01-13Bringing in Carlos Romero's Spanish translation of the documentation.Leonard Richardson
2024-01-13Fixed some cross-reference syntax errors.Leonard Richardson
2024-01-13Made some long-awaited edits, mainly removing information about ↵Leonard Richardson
no-longer-supported versions of Python.
2024-01-09Added Spanish translation of the docCarlos Romero
2023-12-03Corrected a typo in a test that was causing test failures when run againstLeonard Richardson
libxml2 2.12.1. [bug=2045481]
2023-11-25some doc suggestions from a first-time userLeonard Richardson
Signed-off-by: Chris Papademetrious <chrispitude@gmail.com>
2023-08-27Corrected the syntax of the license definition in pyproject.toml. PatchLeonard Richardson
by Louis Maddox. [bug=2032848]
2023-06-04Fixed a case found by Mengyuhan where html.parser giving up onLeonard Richardson
markup would result in an AssertionError instead of a ParserRejectedMarkup exception.
2023-05-12Remove a fuzz case that was caused by bad fuzzer code.Leonard Richardson
2023-05-12Added more clusterfuzz cases and a copy of the new oss-fuzz code for parsing ↵Leonard Richardson
and running them.
2023-04-17Fixed a regression such that if you set .hidden on a tag, the tagLeonard Richardson
becomes invisible but its contents are still visible. User manipulation of .hidden is not a documented or supported feature, so don't do this, but it's not too difficult to keep the old behavior working.
2023-04-09Backported a bug fix that knocks a full second off the test run time.Leonard Richardson
2023-04-07Update release instructions for 4.12.2.Leonard Richardson
2023-04-07Fixed an unhandled exception in BeautifulSoup.decode_contentsLeonard Richardson
and methods that call it. [bug=2015545]
2023-04-05Prepare for 4.12.1 release.Leonard Richardson
2023-04-05The demonstrate_parser_differences.py script was still written inLeonard Richardson
Python 2. I've converted it to Python 3, but since no one noticed this problem, it's a sign that no one uses this script and it's not serving its purpose. I may rework or remove it in a later version.
2023-04-05Add the pyproject.toml file.Leonard Richardson
2023-04-05Remove setup.py, completing the migration to hatch. Add a .gitignore file ↵Leonard Richardson
based on the soupsieve .gitignore file.
2023-04-05Move the Python 2 notice to the last version to support Python 2, and add a ↵Leonard Richardson
similar notice for 3.6
2023-04-05Rename the test case markup files with a .testcase extension so the manifest ↵Leonard Richardson
can be made more strict about what it includes.
2023-03-31Now that 1471755 has been fixed, we can un-skip a number of the clusterfuzz ↵Leonard Richardson
test cases.
2023-03-30Added to README.Leonard Richardson
2023-03-30Simplified the toxfile a bit.Leonard Richardson
2023-03-30Added tox environments for building the docs and running tests with no ↵Leonard Richardson
dependencies installed.
2023-03-30Added a tox.ini that runs the unit tests against different versions of Python.Leonard Richardson
2023-03-28Reworded changelog.Leonard Richardson
2023-03-27Make it possible to pickle a deeply nested BeautifulSoup object.Leonard Richardson
2023-03-27Slightly optimized a slow test.Leonard Richardson
2023-03-27Updated __copy__ docstrings.Leonard Richardson
2023-03-26Implement a proper BeautifulSoup.deepcopy rather than parsing the document ↵Leonard Richardson
again.
2023-03-24Make __copy__ call __deepcopy__ instead of the other way around.Leonard Richardson
2023-03-24Implement nonrecursive versions of copy and deepcopy using the new ↵Leonard Richardson
_event_strem generator.
2023-03-24Merge branch 'remove-recursion-on-output'Leonard Richardson