Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
META-INF.CHANGES Maven / Gradle / Ivy
Go to download
jsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.
jsoup changelog
*** Release 1.13.1 [PENDING]
* Improvement: added Element#closest(selector), which walks up the tree to find the nearest element matching the
selector.
* Improvement: memory optimizations, reducing the retained size of a Document by ~ 39%, and allocations by ~ 9%:
1. Attributes holder in Elements is only created if the element has attributes
2. Only track the baseUri in an element when it is set via DOM to a new value for a given tree
3. After parsing, do not retain the input character reader (and associated buffers) in the Document#parser
* Improvement: substantial parse speed improvements vs 1.12.x (bringing back to par with previous releases).
* Improvement: when pretty-printing, comments in inline tags are not pushed to a newline
* Improvement: added Attributes#hasDeclaredValueForKey(key) and Attribute#hasDeclaredValueForKeyIgnoreCase(), to check
if an attribute is set but has no value. Useful in place of the deprecated and removed BooleanAttribute class and
instanceof test.
* Improvement: removed old methods and classes that were marked deprecated in previous releases.
* Improvement: added Element#select(Evaluator) and Element#selectFirst(Evaluator), to allow re-use of a parsed CSS
selector if using the same evaluator many times.
* Improvement: added Elements#forms(), Elements#textNodes(), Elements#dataNodes(), and Elements#comments(), as a
convenient way to get access to these node types directly from an element selection.
* Improvement: preserve whitespace before html and head tag, if pretty-printing is off.
* Bugfix: in a tag, a second would not automatically close an earlier open
* Bugfix: in CharacterReader when parsing an input stream, could throw a Mark Invalid exception if the reader was
marked, a bufferUp occurred, and then the reader was rewound.
* Bugfix: empty tags and form tags did not have their attributes normalized (lower-cased by default)
* Bugfix: when preserve case was set to on, the HTML pretty-print formatter didn't indent capitalized tags correctly.
* Bugfix: ensure that script and style contents are parsed into DataNodes, not TextNodes, when in case-sensitive
parse mode.
**** Release 1.12.2 [2020-Feb-08]
* Improvement: the :has() selector now supports relative selectors. For example, the query
"div:has(> a)" will select all "div" elements that have at least one direct child "a" element.
* Improvement: added Element chaining methods for various overridden methods on Node.
* Improvement: ensure HTTP keepalives work when fetching content via body() and bodyAsBytes().
* Improvement: set the default max body size in Jsoup.Connection to 2MB (up from 1MB) so fewer people get trimmed
content if they have not set it, but still in sensible bounds. Also updated the default user-agent to improve
default compatibility.
* Improvement: dramatic speed improvement when bulk inserting child nodes into an element (wrapping contents).
* Improvement: added Element#childrenSize() as a convenience to get the size of an element's element children.
* Improvement: in W3CDom.asString, allow the output mode to be specified as HTML or as XML. It will default to
checking the content, and automatically selecting.
* Improvement: added a Document#documentType() method, to get a doc's doctype.
* Improvement: To DocumentType, added #name(), #publicID(), and #systemId() methods to fetch those fields.
* Improvement: in W3CDom conversions from jsoup documents, retain the DocumentType, and be able to serialize it.
* Bugfix: on pages fetch by Jsoup.Connection, a "Mark Invalid" exception might be incorrectly thrown, or the page may
miss some data. This occurred on larger pages when the file transfer was chunked, and an invalid HTML entity
happened to cross a chunk boundary.
* Bugfix: if duplicate attributes in an element exist, retain the first vs the last attribute with the same name. Case
aware (HTML case-insensitive names, XML are case-sensitive).
* Bugfix: don't submit input type=button form elements.
* Bugfix: handle error position reporting correctly and don't blow up in some edge cases.
* Bugfix: handle the ^= (starts with) selector correctly when the prefix starts with a space.
* Bugfix: don't strip out zero-width-joiners (or zero-width-non-joiners) when normalizing text. That breaks combined
emoji (and other text semantics). 🤦♂️
* Bugfix: Evaluator.TagEndsWith (namespaced elements) and Tag disagreed in case-sensitivity. Now correctly matches
case-insensitively.
* Bugfix: Don't throw an exception if a selector ends in a space, just trim it.
* Bugfix: HTML parser adds redundant text when parsing self-closing textarea.
* Bugfix: Don't add spurious whitespace or newlines to HTML or text for inline tags.
* Bugfix: TextNode.outerHtml() wouldn't normalize correctly without a parent.
* Bugfix: Removed binary input detection as it was causing too many false positives.
* Bugfix: when cloning a TextNode, if .attributes() was hit before the clone() method, the text value would only be a
shallow clone.
* Various code hygiene updates.
**** Release 1.12.1 [2019-May-12]
* Change: removed deprecated method to disable TLS cert checking Connection.validateTLSCertificates().
* Change: some internal methods have been rearranged; if you extended any of the Jsoup internals you may need to make
updates.
* Improvement: documents now remember their parser, so when later manipulating them, the correct HTML or XML tree
builder is reused, as are the parser settings like case preservation.
* Improvement: Jsoup now detects the character set of the input if specified in an XML Declaration, when using the
HTML parser. Previously that only happened when the XML parser was specified.
* Improvement: if the document's input character set does not support encoding, flip it to one that does.
* Improvement: if a start tag is missing a > and a new tag is seen with a <, treat that as a new tag. (This differs
from the HTML5 spec, which would make at attribute with a name beginning with <, but in practice this impacts too
many pages.
* Improvement: performance tweaks when parsing start tags, data, tables.
* Improvement: added Element.nextElementSiblings() and Element.previousElementSiblings()
* Improvement: treat center tags as block tags.
* Improvement: allow forms to be submitted with Content-Type=multipart/form-data without requiring a file upload;
automatically set the mime boundary.
* Improvement: Jsoup will now detect if an input file or URL is binary, and will refuse to attempt to parse it, with
an IO exception. This prevents runaway processing time and wasted effort creating meaningless parsed DOM trees.
* Bugfix: when using the tag case preserving parsing settings, certain HTML tree building rules where not followed
for upper case tags.
* Bugfix: when converting a Jsoup document to a W3C DOM, if an element is namespaced but not in a defined namespace,
set it to the global namespace.
* Bugfix: attributes created with the Attribute constructor with just spaces for names would incorrectly pass
validation.
* Bugfix: some pseudo XML Declarations were incorrectly handled when using the XML Parser, leading to an IOOB
exception when parsing.
* Bugfix: when parsing URL parameter names in an attribute that is not correctly HTML encoded, and near the end of the
current buffer, those parameters may be incorrectly dropped. (Improved CharacterReader mark/reset support.)
* Bugfix: boolean attribute values would be returned as null, vs an empty string, when accessed via the
Attribute#getValue() method.
* Bugix: orphan Attribute objects (i.e. created outside of a parse or an Element) would throw an NPE on
Attribute#setValue(val)
* Bugfix: Element.shallowClone() was not making a clone of its attributes.
* Bugfix: fixed an ArrayIndexOutOfBoundsException in HttpConnection.looksLikeUtf8 when testing small strings in
specific ranges.
* Updated jetty-server (which is used for integration tests) to latest 9.2 series (9.2.28).
*** Release 1.11.3 [2018-Apr-15]
* Improvement: CDATA sections are now treated as whitespace preserving (regardless of the containing element), and are
round-tripped into output HTML.
* Improvement: added support for Deflate encoding.
* Improvement: when parsing tags, skip the first newline if present.
* Improvement: support nested quotes for attribute selection queries.
* Improvement: character references from Windows-1252 that are not valid Unicode are mapped to the appropriate
Unicode replacement.
* Improvement: accept a custom SSL socket factory in Jsoup.Connection.
* Bugfix: "Mark has been invalidated" exception was thrown when parsing some URLs on Android <= 6.
* Bugfix: The Element.text() for One
Two was "OneTwo", not "One Two".
* Bugfix: boolean attributes with empty string values were not collapsing in HTML output.
* Bugfix: when using the XML Parser set to lowercase normalize tags, uppercase closing tags were not correctly
handled.
* Bugfix: when parsing from a URL, an end tag could be read incorrectly if it started on a buffer boundary.
* Bugfix: when parsing from a URL, if the remote server failed to complete its write (i.e. it writes less than the
Content Length header promised on a gzipped stream), the parse method would incorrectly throw an unchecked
exception. It now throws the declared IOException.
* Bugfix: leaf nodes (such as text nodes) where throwing an unsupported operation exception on childNodes(), instead
of just returning an empty list.
* Bugfix: documents with a leading UTF-8 BOM did not have that BOM consumed, so it acted as a zero width no-break
space, which could impact the parse tree.
* Bugfix: when parsing an invalid XML declaration, the parse would fail.
*** Release 1.11.2 [2017-Nov-19]
* Improvement: added a new pseudo selector :matchText, which allows text nodes to match as if they were elements.
This enables finding text that is only marked by a "br" tag, for example.
* Change: marked Connection.validateTLSCertificates() as deprecated.
* Improvement: normalize invisible characters (like soft-hyphens) in Element.text().
* Improvement: added Element.wholeText(), to easily get the un-normalized text value of an element and its children.
* Bugfix: in a deep DOM stack, a StackOverFlow exception could occur when generating implied end tags.
* Bugfix: when parsing attribute values that happened to cross a buffer boundary, a character was dropped.
* Bugfix: fixed an issue that prevented using infinite timeouts in Jsoup.Connection.
* Bugfix: whitespace preserving tags were not honoured when nested deeper than two levels deep.
* Bugfix: an unterminated comment token at the end of the HTML input would cause an out of bounds exception.
* Bugfix: an NPE in the Cleaner which would occur if an attribute value was missing.
* Bugfix: when serializing the same document in a multiple threads, on Android, with a character set that is not ascii
or UTF-8, an encoding exception could occur.
* Bugfix: removing a form value from the DOM would not remove it from FormData.
* Bugfix: in the W3CDom transformer, siblings were incorrectly inheriting namespaces defined on previous siblings.
*** Release 1.11.1 [2017-Nov-06]
* Updated language level to Java 7 from Java 5. To maintain Android support (of minversion 8), try-with-resources are
not used.
* When loading content from a URL or a file, the content is now parsed as it streams in from the network or disk,
rather than being fully buffered before parsing. This substantially reduces memory consumption & large garbage
objects when loading large files. Note that this change means that a response, once parsed, may not be parsed
again from the same response object unless you call response.bufferUp() first, which will buffer the full response
into memory.
* Added Connection.Response.bodyStream(), a method to get the response body as an input stream. This is useful for
saving a large response straight to a file, without buffering fully into memory first.
* Performance improvements in text and HTML generation (through less GC).
* Reduced memory consumption of text, scripts, and comments in the DOM by 40%, by refactoring the node
hierarchy to not track childnodes or attributes by default for lead nodes. For the average document, that's about a
30% memory reduction.
* Reduced memory consumption of Elements by refactoring their Attributes to be a simple pair of arrays, vs a
LinkedHashSet.
* Added support for Element.selectFirst(query), to efficiently find the first matching element.
* Added Element.appendTo(parent) to simplify slinging elements about.
* Added support for multiple headers with the same name in Jsoup.Connect
* Added Element.shallowClone() and Node.shallowClone(), to allow cloning nodes without getting all their children.
* Updated Element.text() and the :contains(text) selector to consider character as spaces.
* Updated Jsoup.connect().timeout() to implement a total connect + combined read timeout. Previously it specified
connect and buffer read times only, so to implement a combined total timeout, you had to have another thread send
an interupt.
* Improved performance of Node.addChildren (was quadratic)
* Added missing support for template tags in tables
* In Jsoup.connect file uploads, added the ability to set the uploaded files' mimetype.
* Improved Node traversal, including less object creation, and partial and filtering traversor support.
* Bugfix: if a document was was redecoded after character set detection, the HTML parser was not reset correctly,
which could lead to an incorrect DOM.
* Bugfix: attributes with the same name but different case would be incorrectly treated as different attributes.
* Bugfix: self-closing tags for known empty elements were incorrectly treated as errors.
* Bugfix: fixed an issue where a self-closing title, noframes, or style tag would cause the rest of the page to be
incorrectly parsed as data or text.
* Bugfix: fixed an issue with unknown mixed-case tags
* Bugfix: fixed an issue where the entity resources were left open after startup, causing a warning.
* Bugfix: fixed an issue where Element.getElementsByIndexLessThan(index) would incorrectly provide the root element
* Improved parse time for pages with exceptionally deeply nested tags.
* Improvement / workaround: modified the Entities implementation to load its data from a .class vs from a jar resource.
Faster, and safer on Android.
*** Release 1.10.3 [2017-Jun-11]
* Added Elements.eachText() and Elements.eachAttr(name), which return a list of Element's text or attribute values,
respectively. This makes it simpler to for example get a list of each URL on a page:
List urls = doc.select("a").eachAttr("abs:href"");
* Improved selector validation for :contains(...) with unbalanced quotes.
* Improved the speed of index based CSS selectors and other methods that use elementSiblingIndex, by a factor of 34x.
* Added Node.clearAttributes(), to simplify removing of all attributes of a Node / Element.
* Bugfix: if an attribute name started or ended with a control character, the parse would fail with a validation
exception.
* Bugfix: Element.hasClass() and the ".classname" selector would not find the class attribute case-insensitively.
* Bugfix: In Jsoup.Connection, if a redirect contained a query string with %xx escapes, they would be double escaped
before the redirect was followed, leading to fetching an incorrect location.
* Bugfix: In Jsoup.Connection, if a request body was set and the connection was redirected, the body would incorrectly
still be sent.
* Bugfix: In DataUtil when detecting the character set from meta data, and there are two Content-Types defined, use
the one that defines a character set.
* Bugfix: when parsing unknown tags in case-sensitive HTML mode, end tags would not close scope correctly.
* In Jsoup.Connection, ensure there is no Content-Type set when being redirected to a GET.
* Bugfix: in certain locales (Turkey specifically), lowercasing and case insensitivity could fail for specific items.
* Bugfix: after an element was cloned, changes to its child list where not notifying the element correctly.
*** Release 1.10.2 [2017-Jan-02]
* Improved startup time, particularly on Android, by reducing garbage generation and CPU execution time when loading
the HTML entity files. About 1.72x faster in this area.
* Added Element.is(query) to check if an element matches this CSS query.
* Added new methods to Elements: next(query), nextAll(query), prev(query), prevAll(query) to select next and previous
element siblings from a current selection, with optional selectors.
* Added Node.root() to get the topmost ancestor of a Node.
* Added the new selector :containsData(), to find elements that hold data, like script and style tags.
* Changed Jsoup.isValid(bodyHtml) to validate that the input contains only body HTML that is safe according to the
whitelist, and does not include HTML errors. And in the Jsoup.Cleaner.isValid(Document) method, make sure the doc
only includes body HTML.
* In Whitelists, validate that a removed protocol exists before removing said protocol.
* Allow the Jsoup.Connect thread to be interrupted when reading the input stream; helps when reading from a long stream
of data that doesn't read timeout.
* Jsoup.Connect now uses a desktop user agent by default. Many developers were getting caught by not specifying the
user agent, and sending the default 'Java'. That causes many servers to return different content than what they would
to a desktop browser, and what the developer was expecting.
* Increased the default connect/read timeout in Jsoup.Connect to 30 seconds.
* Jsoup.Connect now detects if a header value is actually in UTF-8 vs the HTTP spec of ISO-8859, and converts
the header value appropriately. This improves compatibility with servers that are configured incorrectly.
* Bugfix: in Jsoup.Connect, URLs containing non-URL-safe characters were not encoded to URL safe correctly.
* Bugfix: a "SYSTEM" flag in doctype tags would be incorrectly removed.
* Bugfix: removing attributes from an Element with removeAttr() would cause a ConcurrentModificationException.
* Bugfix: the contents of Comment nodes were not returned by Element.data()
* Bugfix: if source checked out on Windows with git autocrlf=true, Entities.load would fail because of the \r char.
*** Release 1.10.1 [2016-Oct-23]
* New feature: added the option to preserve case for tags and/or attributes, with ParseSettings. By default, the HTML
parser will continue to normalize tag names and attribute names to lower case, and the XML parser will now preserve
case, according to the relevant spec. The CSS selectors for tags and attributes remain case insensitive, per the CSS
spec.
* Improved support for extended HTML entities, including supplemental characters and multiple character references.
Also reduced memory consumption of the entity tables.
* Added support for *|E wildcard namespace selectors.
* Added support for setting multiple connection headers at once with Connection.headers(Map)
* Added support for setting/overriding the response character set in Connection.Response, for cases where the charset
is not defined by the server, or is defined incorrectly.
* Improved performance of class selectors by reducing memory allocation and garbase collection.
* Improved performance of HTML output by reducing the creation of temporary attribute list iterators.
* Fixed an issue when converting to the W3CDom XML, where valid (but ugly) HTML attribute names containing characters
like '"' could not be converted into valid XML attribute names. These attribute names are now normalized if possible,
or not added to the XML DOM.
* Fixed an OOB exception when loading an empty-body URL and parsing with the XML parser.
* Fixed an issue where attribute names starting with a slash would be parsed incorrectly.
* Don't reuse charset encoders from OutputSettings, to make threadsafe.
* Fixed an issue in connections with a requestBody where a custom content-type header could be ignored.
*** Release 1.9.2 [2016-May-17]
* Fixed an issue where tag names that contained non-ascii characters but started with an ascii character
would cause the parser to get stuck in an infinite loop.
* In XML documents, detect the charset from the XML prolog -
* Fixed an issue where created XML documents would have an incorrect prolog.
* Fixed an issue where you could not use an attribute selector to find values containing unbalanced braces or
parentheses.
* Fixed an issue where namespaced tags (like ) would cause Element.cssSelector() to fail.
*** Release 1.9.1 [2016-Apr-16]
* Added support for HTTP and SOCKS request proxies, specifiable per connection.
* Added support for sending plain HTTP request bodies in POST and PUT requests, with Connection.requestBody(String).
* Added support in Jsoup.Connect for HEAD, OPTIONS, TRACE.
* Added support for HTTP 307 Temporary Redirect (replays posts, if applicable).
* Performance improvements when parsing HTML, particularly for Android Dalvik.
* Added support for writing HTML into Appendable objects (like OutputStreamWriter), to enable stream serialization.
* Added support for XML namespaces when converting jsoup documents to W3C documents.
* Added support for UTF-16 and UTF-32 character set detection from byte-order-marks (BOM).
* Added support for tags with non-ascii (unicode) letters.
* Added Connection.data(key) to retrieve a data KeyVal by its key. Useful to update form data before submission.
* Fixed an issue in the Parent selector where it would not match against the root element it was applied to.
* Fix an issue where elements.select(query) would not return every matching element if they had the same content.
* Added not-null validators to Element.appendText() and Element.prependText()
* Fixed an issue when moving moving nodes using Element.insert(index, children) where the sibling index would be set
incorrectly, leading to the original loads being lost.
* Reverted Node.equals() and Node.hashCode() back to identity (object) comparisons, as deep content inspection
had negative performance impacts and hashkey stability problems. Functionality replaced with Node.hasSameContent().
* In Jsoup.Connect, if the same header key is seen multiple times, combine their values with a comma per the HTTP RFC,
instead of keeping just one value. Also fixes an issue where header values could be out of order.
*** Release 1.8.3 [2015-Aug-02]
* Added support for custom boolean attributes.
* When fetching XML URLs, automatically switch to the XML parser instead of the HTML parser.
* Performance improvement on parsing larger HTML pages. On Android KitKat, around 1.7x times faster. On Android
Lollipop, ~ 1.3x faster. Improvements largely from re-ordering the HtmlTreeBuilder methods based on analysis of
various websites; also from further memory reduction for nodes with no children, and other tweaks.
* Fixed an issue in Element.getElementSiblingIndex (and related methods) where sibling elements with the same content
would incorrectly have the same sibling index.
* Fixed an issue where unexpected elements in a badly nested table could be moved to the wrong location in the
document.
* Fixed an issue where a table nested within a TH cell would parse to an incorrect tree.
* When serializing a document using the XHTML encoding entities, if the character set did not support chars
(such as Shift_JIS), the character would be skipped. For visibility, will now always output &xa0; when using XHTML
encoding entities (as is not defined), regardless of the output character set.
* Fixed an issue when resolving URLs, if the absolute URL had no path, the relative URL was not normalized correctly.
Also fixed an issue where connections that were redirected to a relative URL did not have the same normalization
rules as a URL read from Nodes.absUrl(String).
* When serialising XML, ensure that '<' characters in attributes are escaped, per spec. Not required in HTML.
*** Release 1.8.2 [2015-Apr-13]
* Performance improvements for parsing HTML on Android, of 1.5x to 1.9x, with larger parses getting a bigger
speed increase. For non-Android JREs, around 1.1x to 1.2x.
* Dramatic performance improvement in HTML serialization on Android (KitKat and later), of 115x. Improvement by working
around a character set encoding speed regression in Android.
* Performance improvement for the class name selector on Android (.class) of 2.5x to 14x. Around 1.2x
on non-Android JREs.
* File upload support. Added the ability to specify input streams for POST data, which will upload content in
MIME multipart/form-data encoding.
* Add a meta-charset element to documents when setting the character set, so that the document's charset is
unambiguous.
* Added ability to disable TLS (SSL) certificate validation. Helpful if you're hitting a host with a bad cert,
or your JDK doesn't support SNI.
* Added ability to further tweak the canned Cleaner Whitelists by removing existing settings.
* Added option in Cleaner Whitelist to allow linking to in-page anchors (#)
* Use a lowercase doctype tag for HTML5 documents.
* Add support for 201 Created with redirect, and other status codes. Treats any HTTP status code 2xx or 3xx as an OK
response, and follow redirects whenever there is a Location header.
* Added support for HTTP method verbs PUT, DELETE, and PATCH.
* Added support for overriding the default POST character of UTF-8
* W3C DOM support: added ability to convert from a jsoup document to a W3C document, with the W3Dom helper class.
* In the HtmlToPlainText example program, added the ability to filter using a CSS selector. Also clarified
the usage documentation.
* Fixed validation of cookie names in HttpConnection cookie methods.
* Fixed an issue where tags would be missed when preparing a form for submission if missing a selected
attribute.
* Fixed an issue where submitting a form would incorrectly include radio and checkbox values without the checked
attribute.
* Fixed an issue where Element.classNames() would return a set containing an empty class; and may have extraneous
whitespace.
* Fixed an issue where attributes selected by value were not correctly space normalized.
* In head+noscript elements, treat content as character data, instead of jumping out of head parsing.
* Fixed performance issue when parsing HTML with elements with many children that need re-parenting.
* Fixed an issue where a server returning an unsupport character set response would cause a runtime
UnsupportedCharsetException, instead of falling back to the default UTF-8 charset.
* Fixed an issue where Jsoup.Connection would throw an IO Exception when reading a page with zero content-length.
* Improved the equals() and hashcode() methods in Node, to consider all their child content, for DOM tree comparisons.
* Improved performance in Selector when searching multiple roots.
*** Release 1.8.1 [2014-Sep-27]
* Introduced the ability to chose between HTML and XML output, and made HTML the default. This means img tags are
output as , not . XML is the default when using the XmlTreeBuilder. Control this with the
Document.OutputSettings.syntax() method.
* Improved the performance of Element.text() by 3.2x
* Improved the performance of Element.html() by 1.7x
* Improved file read time by 2x, giving around a 10% speed improvement to file parses.
* Tightened the scope of what characters are escaped in attributes and textnodes, to align with the spec. Also, when
using the extended escape entities map, only escape a character if the current output charset does not support it.
This produces smaller, more legible HTML, with greater control over the output (by setting charset and escape mode).
* If pretty-print is disabled, don't trim outer whitespace in Element.html()
* In the HTML Cleaner, allow span tags in the basic whitelist, and span and div tags in the relaxed whitelist.
* Added Element.cssSelector(), which returns a unique CSS selector/path for an element.
* Fixed an issue where was parsed as
* Fixed an issue where a UTF-8 BOM character was not detected if the HTTP response did not specify a charset, and
the HTML body did, leading to the head contents incorrectly being parsed into the body. Changed the behavior so that
when the UTF-8 BOM is detected, it will take precedence for determining the charset to decode with.
* Relaxed doctype validation, allowing doctypes to not specify a name.
* Fixed an issue in parsing a base URI when loading a URL containing a http-equiv element.
* Fixed an issue for Java 1.5 / Android 2.2 compatibility, and verify it doesn't regress.
* Fixed an issue that would throw an NPE when trying to set invalid HTML into a title element.
* Added support for quoted attribute values in CSS Selectors
* Fixed support for nth-of-type selectors with unknown tags.
* Added support for 'application/*+xml' mimetypes.
* Fixed support for allowing script tags in cleaner whitelists.
* In FormElements, don't submit disabled inputs, and use 'on' as checkbox value default.
*** Release 1.7.3 [2013-Nov-10]
* Introduced FormElement, providing easy access to form controls and their data, and the ability to submit forms
with Jsoup.Connect.
* Reduced GC impact during HTML parsing, with 17% fewer objects created, and 3% faster parses.
* Reduced CSS selection time by 26% for common queries.
* Improved HTTP character set detection.
* Added Document.location, to get the URL the document was retrieved from. Helpful if connection was redirected.
* Fixed support for self-closing script tags.
* Fixed a crash when reading an unterminated CDATA section.
* Fixed an issue where elements added via the adoption agency algorithm did not preserve their attributes.
* Fixed an issue when cloning a document with extremely nested elements that could cause a stack-overflow.
* Fixed an issue when connecting or redirecting to a URL that contains a space.
* Added support for the HTTP/1.1 Temporary Redirect (307) status code.
*** Release 1.7.2 [2013-Jan-27]
* Added support for supplementary characters outside of the Basic Multilingual Plane.
* Added support for structural pseudo CSS selectors, including :first-child, :last-child, :nth-child, :nth-last-child,
:first-of-type, :last-of-type, :nth-of-type, :nth-last-of-type, :only-child, :only-of-type, :empty, and :root
* Added a maximum body response size to Jsoup.Connection, to prevent running out of memory when trying to read
extremely large documents. The default is 1MB.
* Refactored the Cleaner to traverse rather than recurse child nodes, to avoid the risk of overflowing the stack.
* Added Element.insertChildren(), to easily insert a list of child nodes at a specific index.
* Added Node.childNodesCopy(), to create an independent copy of a Node's children.
* When parsing in XML mode, preserve XML declarations ().
* Introduced Parser.parseXmlFragment(), to allow easy parsing of XML fragments.
* Allow Whitelist test methods to be extended
* Added Document.OutputSettings.outline mode, to aid HTML debugging by printing out in outline mode, similar to
browser HTML inspectors.
* When parsing, allow all tags to self-close. Tags that aren't expected to self-close will get an end tag.
* Fixed an issue when parsing