Update dependency cheerio to v1.1.2 #17
Open
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.0.0-rc.5->1.1.2Release Notes
cheeriojs/cheerio (cheerio)
v1.1.2Compare Source
What's Changed
Full Changelog: cheeriojs/cheerio@v1.1.1...v1.1.2
v1.1.1Compare Source
91a2b3dv1.1.0Compare Source
What's Changed
.propon document nodes by @fb55 in #4320browsertopackage.jsonroot by @UNIDY2002 in #4033Doc Improvements
.htmlwith.propfor outerHTML by @fb55 in #4321New Contributors
Full Changelog: cheeriojs/cheerio@v1.0.0...v1.1.0
v1.0.0Compare Source
Cheerio 1.0 is here! 🎉
Announcement Blog Post
Breaking Changes
The minimum NodeJS version is now 18.17 or higher #3959
Import paths were simplified. For example, use
cheerio/sliminstead ofcheerio/lib/slim. #3970The deprecated default Cheerio instance and static methods were removed. #3974
Before, it was possible to write code like this:
Make sure to always load documents first:
Node types previously re-exported by Cheerio must now be imported directly
from (
domhandler)(https://github.com/fb55/domhandler). #3969htmlparser2 options now reside exclusively under the
xmlkey (#2916):New Features
Fixes
cheerio/utilsby @blixt in #2601data, and simplify by @fb55 in #2818closestbe able to start from text nodes by @Qualtagh in #2811Other
Full Changelog: cheeriojs/cheerio@v1.0.0-rc.12...v1.0.0
v1.0.0-rc.12Compare Source
Bugfix release. Fixed issues:
propundefined handling with jQuery by @fb55 in #2557cheerio/lib/utilsby @blixt in #2601New Contributors
Full Changelog: cheeriojs/cheerio@v1.0.0-rc.11...v1.0.0-rc.12
v1.0.0-rc.11Compare Source
cheerio@1.0.0-rc.11is hopefully the last RC before the 1.0.0 release of Cheerio. There are two APIs that will be added for the next major release: Anexractmethod (#2523) and NodeJS specific loader methods (#2051). These are still in flux and I'd appreciate feedback on the proposals.A big thank you to everyone that contributed to this release! This includes code contributors, as well as the amazing financial support on GitHub Sponsors!
Under the hood, a lot of work for this release went into updating parse5, cheerio's default HTML parser. Have a look at parse5's release notes to see what has changed there.
Breaking
scriptandstylecontents are added again in.text()#2509.text()to.prop('innerText')Features
cheerio-select#2511pseudosoption..prop()method:textContentandinnerTextprops #2214baseURIoption, which will lead tohrefandsrcprops to be resolved as URLs. #2510slimexport, which will always use htmlparser2 #1960Fixes
textturn passed values to strings #2047undefinedin the return type ofgetby @glen-84 in #2392undefinedreturn value #2505Refactor
domutilsmodule directly #1928isHTML#1935load#1951closest#2057Development Experience
Docs
New Contributors
Full Changelog: cheeriojs/cheerio@v1.0.0-rc.10...v1.0.0-rc.11
v1.0.0-rc.10Compare Source
Fixes:
.html(node)now moves passed nodes (#1923, fixes #940)258b26bb393e4a8f55dd8filterwork on all collections (#1870, fixes #1867)fb8d31e5cd2b9cDocumentation:
880fd2ce0c7cbbrequire5dfbd35Refactors:
traversing(#1909)58e090aistotraversing, optimize (#1908)1c6fa3edomEach(#1892)feda230loadexport a function (#1869)c370f4ev1.0.0-rc.9Compare Source
Port to TypeScript
Cheerio has been ported entirely to TypeScript (in #1816)! This eliminates a lot of edge-cases within Cheerio and will allow you to use Cheerio with confidence. This release also features a new documentation website based on TypeDoc, allowing you to quickly navigate all available methods: https://cheerio.js.org
Breaking change: If you were using the function exported by Cheerio directly instead of first
load()ing a document, you will now have to update therequireto use thedefaultexport.Please note that this way of using Cheerio is deprecated and might be removed in a future version. Please consider updating your code to:
Note: Cheerio uses template literal types to determine return types. These are available starting with TypeScript 4.1, so you might have to bump your TypeScript version.
For TypeScript types, Cheerio now implements the
ArrayLike<T>interface. That means that Cheerio instances can contain objects of arbitrary types, but not all methods can be called on them.The TypeScript compiler will figure out what structures you are operating on:
$('<div>'), it will product aCheerio<Node>type.Nodeis the base class for DOM elements and includes eg. comment and text nodes.$('.foo'), it will produce aCheerio<Element>, as onlyElements can be part of the result set.Elementis the class representing tags.$('...').map()to map to arbitrary values, and will get a compiler error when trying to call method that are not supported.$('.foo').map((i, el) => $(el).text()).attr('test')will no longer be possible, as.attris not allowed to be called on aCheerio<string>.This release does not contain other changes to functionality. Feedback is greatly appreciated; if you encounter a problem, please file an issue!
v1.0.0-rc.8Compare Source
Second botched release. Please use
v1.0.0-rc.9instead.v1.0.0-rc.7Compare Source
Published without a
libdirectory — please ignore.v1.0.0-rc.6Compare Source
Breaking:
prevAll,prevUntilandparentsUntil. The new order matches jQuery.This release contains three breaking changes inherited from dependencies.
type: 'tag'.New features:
.unwrap(#1651 by @5saviahv)2037d83.wrapAll(#1590 by @5saviahv)cd4a4d9prop('innerHTML')(#1578 by @fb55)c58258fscriptingEnabledparse5 option (#1707 by @5saviahv)7eb4cc4scriptingEnabledtofalse, it is now possible to parse the contents of<noscript>tags.Types:
.loadtype (#1584 by @f0x52)6a90bda.get(#1759 by @karlhorky)d706976.wrapAll(#1740 by @5saviahv)b360762for ofloops (#1704 by @mcpiroman)8fef5aa897b37fAttrFunctionarguments (#1669 by @maxma241)5f2e9c3Bug fixes:
undefinedas value in.attr()(#1757 by @5saviahv)98186e8{prev,next}Until(#1728 by @fb55)f2615d2bf899d5a9d6a43findfunction (#1680 by @5saviahv)9b28b49.addmodifying previous selections (#1656 by @5saviahv)9f9b49343592d6.findsiblings (#1583 by @fb55)1062a6creplaceWithreplacing element with itself (#1581 by @fb55)88ae636attrhandling ofundefinedas value (#1582 by @fb55)3b35ae4load(#1580 by @fb55)0855be6.prop(#1579 by @fb55)db3fce7b3010d70bbad23bf04330Documentation updates:
a336301290aa9ff5d6ac32ae9b14c6679ae8273e4cafter,before,slicearguments, improve handling (#1721 by @5saviahv)732d539d7c3817bdd601815e39cff3e1a4cpackage.json(#1609 by @XhmikosR)ad3e30b5b8dd60Refactors:
e8f5e98quickExpr(#1716 by @fb55)4aa3d39208bce1wrapAll, add some tests (#1640 by @5saviahv)b6d3840bfa114e63e461669ae30821de2c5eqeqeqeslint rule except for null (#1638 by @XhmikosR)52f37a1block-scoped-vareslint rule (#1631 by @XhmikosR)b072df8no-unused-expressionseslunt rule (#1630 by @XhmikosR)fc2c7d5--ignore-path(#1612 by @XhmikosR)17f0d082fb25aa36c4c77bb6cb38075cc5db93931a18c0038a3f6846CI:
b9453ea8ace785703ec16actions-gh-pages(#1626 by @fb55)9ee60cc05a4757versioning-strategy: increasefor dependabot, format71d2aafTest changes:
9743030ca7cd9bfafae511a861186f35a39.maptest was actually calling.each(#1711 by @Pustur)456fbe5.toBeUndefined()(#1659 by @XhmikosR)5aa427248596841ebe05ad60bac9990e963Commit Range:
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.