Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.19.1
->1.20.1
6.0.1.5171
->6.1.0.5360
2.0.0
->2.1.0
8.9.0
->8.9.2
8.9.0
->8.9.2
1.13.17
->1.14.2
1.13.17
->1.14.2
1.15.0
->1.16.0
2025.03.00
->2025.04.01
1.10.1
->1.10.2
1.10.1
->1.10.2
1.10.1
->1.10.2
Release Notes
jhy/jsoup (org.jsoup:jsoup)
v1.20.1
Changes
<foo />
)to close HTML elements by default. Foreign content (SVG, MathML), and content parsed with the XML parser, still
supports self-closing tags. If you need specific HTML tags to support self-closing, you can register a custom tag via
the
TagSet
configured inParser.tagSet()
, usingTag#set(Tag.SelfClose)
. Standard void tags (such as<img>
,<br>
, etc.) continue to behave as usual and are not affected by thischange. #2300.
ChangeNotifyingArrayList
,Document.updateMetaCharsetElement()
,Document.updateMetaCharsetElement(boolean)
,HtmlTreeBuilder.isContentForTagData(String)
,Parser.isContentForTagData(String)
,Parser.setTreeBuilder(TreeBuilder)
,Tag.formatAsBlock()
,Tag.isFormListed()
,TokenQueue.addFirst(String)
,TokenQueue.chompTo(String)
,TokenQueue.chompToIgnoreCase(String)
,TokenQueue.consumeToIgnoreCase(String)
,TokenQueue.consumeWord()
,TokenQueue.matchesAny(String...)
Functional Improvements
Tags, and provide a cleaner path for ongoing improvements. The specific HTML produced by the pretty-printer may be
different from previous versions. #2286.
TagSet
tag collection.Their properties can impact both the parse and how content is
serialized (output as HTML or XML). #2285.
Element.cssSelector()
will prefer to return shorter selectors by using ancestor IDs when available and unique. E.g.#id > div > p
instead ofhtml > body > div > div > p
#2283.Elements.deselect(int index)
,Elements.deselect(Object o)
, andElements.deselectAll()
methods to removeelements from the
Elements
list without removing them from the underlying DOM. Also addedElements.asList()
methodto get a modifiable list of elements without affecting the DOM. (Individual Elements remain linked to the
DOM.) #2100.
Connection.requestBodyStream(InputStream stream)
. #1122.Attributes. Also, added
Tag#prefix()
,Tag#localName()
,Attribute#prefix()
,Attribute#localName()
, andAttribute#namespace()
to retrieve these. #2299.Element#cssSelector()
will emitappropriately escaped selectors, and the QueryParser supports those. Added
Selector.escapeCssIdentifier()
and `Selector.unescapeCssIdentifier(). #2297, #2305
Structure and Performance Improvements
QueryParser
into a clearer recursive descentparser. #2310.
div >> p
) will throw an explicit parseexception. #2311.
#2307.
HTML. #2304.
Parser
instances threadsafe, so that inadvertent use of the same instance across threads will not lead toerrors. For actual concurrency, use
Parser#newInstance()
perthread. #2314.
Bug Fixes
serializing. #1496.
encoded). #1743.
Document
to the W3C DOM inW3CDom
, elements with an attribute in an undeclared namespace nowget a declaration of
xmlns:prefix="undefined"
. This allows subsequent serialization to XML viaW3CDom.asString()
to succeed. #2087.
StreamParser
could emit the final elements of a document twice, due to howonNodeCompleted
was fired when closing out the stack. #2295.?
in<?xml version="1.0"?>
wouldincorrectly emit an error. #2298.
Element#cssSelector()
on an element with combining characters in the class or ID now produces the correct output. #1984.cashapp/molecule (app.cash.molecule:molecule-runtime)
v2.1.0
Compare Source
New:
SnapshotNotifier
enum to control whether Molecule automatically sends snapshot apply notifications.If you are using Molecule with another Compose-based library in a single application, you may want to disable our snapshot notification.
See the enum for details on when that is appropriate.
Additionally, the
app.cash.molecule.snapshotNotifier
system property can be set to one of the enum entry names to control the default process-wide.Changed:
RecompositionMode.Immediate
to send frames and cause recomposition to occur. This is observable, most notably, when aCoroutineDispatcher
is included, as now recompositions which occur after the first, synchronous one will occur on that dispatcher.Fixed:
mockk/mockk (io.mockk:mockk-android)
v1.14.2
Compare Source
What's Changed
Full Changelog: mockk/mockk@1.14.0...1.14.2
v1.14.0
Compare Source
What's Changed
New Contributors
Full Changelog: mockk/mockk@1.13.17...1.14.0
Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-test)
v1.10.2
Compare Source
kotlinx-coroutines-debug
JAR file including themodule-info.class
file twice, resulting in failures in various tooling (#4314). Thanks, @RyuNen344!Flow.stateIn
hanging when the scope is cancelled in advance or the flow is empty (#4322). Thanks, @francescotescari!.limitedParallelism
(#4330) and during flow collection (#4272).runBlocking
failing to run its coroutine to completion in some cases if its JVM thread got interrupted (#4399).Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.