[pull] main from TryGhost:main#1184
Merged
Merged
Conversation
ref https://linear.app/ghost/issue/PLA-48 Edits to `.github/renovate.json5` or `.github/workflows/renovate.yml` can't affect Ghost runtime or tests, but they currently match the `.github/**` entry in the `shared` path-filter and pull in the full Ghost CI matrix. That's wasted CI capacity every time we touch Renovate config.
towards https://linear.app/ghost/issue/NY-1286 This is a types-only change that should have no user impact.
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | @​tinybirdco/charts | [`0.2.4` → `0.3.0`](https://renovatebot.com/diffs/npm/@tinybirdco%2fcharts/0.2.4/0.3.0) |  |  | --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@xmldom/xmldom@<0.8.13](https://redirect.github.com/xmldom/xmldom) | [`^0.8.13` → `^0.9.0`](https://renovatebot.com/diffs/npm/@xmldom%2fxmldom@<0.8.13/0.8.13/0.9.10) |  |  | --- ### Release Notes <details> <summary>xmldom/xmldom (@​xmldom/xmldom@<0.8.13)</summary> ### [`v0.9.10`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#0910) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.9...0.9.10) ##### Fixed - Security: `XMLSerializer.serializeToString()` (and `Node.toString()`, `NodeList.toString()`) now accept a `requireWellFormed` option. When `{ requireWellFormed: true }` is passed, the serializer throws `InvalidStateError` for injection-prone node content, preventing XML injection via attacker-controlled node data. [`GHSA-j759-j44w-7fr8`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-j759-j44w-7fr8) [`GHSA-x6wf-f3px-wcqx`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-x6wf-f3px-wcqx) [`GHSA-f6ww-3ggp-fr8h`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-f6ww-3ggp-fr8h) - Comment: throws when `data` contains `--` anywhere, ends with `-`, or contains characters outside the XML `Char` production - ProcessingInstruction: throws when target contains `:` or matches `xml` (case-insensitive), or `data` contains characters outside the XML `Char` production or contains `?>` - DocumentType: throws when `publicId` fails `PubidLiteral`, `systemId` fails `SystemLiteral`, or `internalSubset` contains `]>` - Security: DOM traversal operations (`XMLSerializer.serializeToString()`, `Node.prototype.normalize()`, `Node.prototype.cloneNode(true)`, `Document.prototype.importNode(node, true)`, `node.textContent` getter, `getElementsByTagName()` / `getElementsByTagNameNS()` / `getElementsByClassName()` / `getElementById()`, `Node.prototype.isEqualNode()`) are now iterative. Previously, deeply nested DOM trees would exhaust the JavaScript call stack and throw an unrecoverable `RangeError`. [`GHSA-2v35-w6hq-6mfw`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-2v35-w6hq-6mfw) - `isEqualNode` now correctly returns `false` for CDATASection nodes with different `data` ##### Deprecated - The `splitCDATASections` serializer option is deprecated and will be removed in the next breaking release. The automatic splitting of `"]]>"` in `CDATASection` data was introduced as a workaround; use `requireWellFormed: true` or ensure `CDATASection` data does not contain `"]]>"` before serialization. ##### Chore - updated dependencies Thank you, [@​Jvr2022](https://redirect.github.com/Jvr2022), [@​praveen-kv](https://redirect.github.com/praveen-kv), [@​TharVid](https://redirect.github.com/TharVid), [@​decsecre583](https://redirect.github.com/decsecre583), [@​tlsbollei](https://redirect.github.com/tlsbollei), [@​KarimTantawey](https://redirect.github.com/KarimTantawey), for your contributions ### [`v0.9.9`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#099) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.8...0.9.9) ##### Added - implement `ParentNode.children` getter [`#960`](https://redirect.github.com/xmldom/xmldom/pull/960) / [`#410`](https://redirect.github.com/xmldom/xmldom/issues/410) ##### Fixed - Security: `createCDATASection` now throws `InvalidCharacterError` when `data` contains `"]]>"`, as required by the [WHATWG DOM spec](https://dom.spec.whatwg.org/#dom-document-createcdatasection). [`GHSA-wh4c-j3r5-mjhp`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-wh4c-j3r5-mjhp) - Security: `XMLSerializer` now splits CDATASection nodes whose data contains `"]]>"` into adjacent CDATA sections at serialization time, preventing XML injection via mutation methods (`appendData`, `replaceData`, `.data =`, `.textContent =`). [`GHSA-wh4c-j3r5-mjhp`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-wh4c-j3r5-mjhp) - correctly traverse ancestor chain in `Node.contains` [`#931`](https://redirect.github.com/xmldom/xmldom/pull/931) Code that passes a string containing `"]]>"` to `createCDATASection` and relied on the previously unsafe behavior will now receive `InvalidCharacterError`. Use a mutation method such as `appendData` if you intentionally need `"]]>"` in a CDATASection node's data. ##### Chore - updated dependencies Thank you, [@​stevenobiajulu](https://redirect.github.com/stevenobiajulu), [@​yoshi389111](https://redirect.github.com/yoshi389111), [@​thesmartshadow](https://redirect.github.com/thesmartshadow), for your contributions ### [`v0.9.8`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#098) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.7...0.9.8) ##### Fixed - fix: replace \u2029 as part of normalizeLineEndings [`#839`](https://redirect.github.com/xmldom/xmldom/pull/839) / [`#838`](https://redirect.github.com/xmldom/xmldom/issues/838) - perf: speed up line detection [`#847`](https://redirect.github.com/xmldom/xmldom/pull/847) / [`#838`](https://redirect.github.com/xmldom/xmldom/issues/838) ##### Chore - updated dependencies - drop jazzer and rxjs devDependencies [`#845`](https://redirect.github.com/xmldom/xmldom/pull/845) Thank you, [@​kboshold](https://redirect.github.com/kboshold), [@​Ponynjaa](https://redirect.github.com/Ponynjaa), for your contributions. ### [`v0.9.7`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#097) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.6...0.9.7) ##### Added - Implementation of `hasAttributes` [`#804`](https://redirect.github.com/xmldom/xmldom/pull/804) ##### Fixed - locator is now true even when other options are being used for the DOMParser [`#802`](https://redirect.github.com/xmldom/xmldom/issues/802) / [`#803`](https://redirect.github.com/xmldom/xmldom/pull/803) - allow case-insensitive DOCTYPE in HTML [`#817`](https://redirect.github.com/xmldom/xmldom/issues/817) / [`#819`](https://redirect.github.com/xmldom/xmldom/pull/819) ##### Performance - simplify `DOM.compareDocumentPosition` [`#805`](https://redirect.github.com/xmldom/xmldom/pull/805) ##### Chore - updated devDependencies Thank you, [@​zorkow](https://redirect.github.com/zorkow), [@​Ponynjaa](https://redirect.github.com/Ponynjaa), [@​WesselKroos](https://redirect.github.com/WesselKroos), for your contributions. ### [`v0.9.6`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#096) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.5...0.9.6) ##### Fixed - lower error level for unicode replacement character [`#790`](https://redirect.github.com/xmldom/xmldom/issues/790) / [`#794`](https://redirect.github.com/xmldom/xmldom/pull/794) / [`#797`](https://redirect.github.com/xmldom/xmldom/pull/797) ##### Chore - updated devDependencies - migrate renovate config [`#792`](https://redirect.github.com/xmldom/xmldom/pull/792) Thank you, [@​eglitise](https://redirect.github.com/eglitise), for your contributions. ### [`v0.9.5`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#095) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.4...0.9.5) ##### Fixed - fix: re-index childNodes on insertBefore [`#763`](https://redirect.github.com/xmldom/xmldom/issues/763) / [`#766`](https://redirect.github.com/xmldom/xmldom/pull/766) Thank you, [@​mureinik](https://redirect.github.com/mureinik), for your contributions. ### [`v0.9.4`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#094) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.3...0.9.4) ##### Fixed - restore performance for large amount of child nodes [`#748`](https://redirect.github.com/xmldom/xmldom/issues/748) / [`#760`](https://redirect.github.com/xmldom/xmldom/pull/760) - types: correct error handler level to `warning` ([#​759](https://redirect.github.com/xmldom/xmldom/issues/759)) [`#754`](https://redirect.github.com/xmldom/xmldom/issues/754) / [`#759`](https://redirect.github.com/xmldom/xmldom/pull/759) ##### Docs - test: verify BOM handling [`#758`](https://redirect.github.com/xmldom/xmldom/pull/758) Thank you, [@​luffynando](https://redirect.github.com/luffynando), [@​mattiasw](https://redirect.github.com/mattiasw), [@​JoinerDev](https://redirect.github.com/JoinerDev), for your contributions. ### [`v0.9.3`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#093) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.2...0.9.3) ##### Fixed - restore more `Node` and `ProcessingInstruction` types [`#725`](https://redirect.github.com/xmldom/xmldom/issues/725) / [`#726`](https://redirect.github.com/xmldom/xmldom/pull/726) - `getElements*` methods return `LiveNodeList<Element>` [`#731`](https://redirect.github.com/xmldom/xmldom/issues/731) / [`#734`](https://redirect.github.com/xmldom/xmldom/pull/734) - Add more missing `Node` props [`#728`](https://redirect.github.com/xmldom/xmldom/pull/728), triggered by unclosed [`#724`](https://redirect.github.com/xmldom/xmldom/pull/724) ##### Docs - Update supported runtimes in readme (NodeJS >= 14.6 and other [ES5 compatible runtimes](https://compat-table.github.io/compat-table/es5/)) ##### Chore - updates devDependencies Thank you, [@​Ponynjaa](https://redirect.github.com/Ponynjaa), [@​ayZagen](https://redirect.github.com/ayZagen), [@​sserdyuk](https://redirect.github.com/sserdyuk), [@​wydengyre](https://redirect.github.com/wydengyre), [@​mykola-mokhnach](https://redirect.github.com/mykola-mokhnach), [@​benkroeger](https://redirect.github.com/benkroeger), for your contributions. ### [`v0.9.2`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#092) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.1...0.9.2) ##### Feature - add `Element.getElementsByClassName` [`#722`](https://redirect.github.com/xmldom/xmldom/pull/722) ##### Fixed - add missing types for `Document.documentElement` and `Element.tagName` [`#721`](https://redirect.github.com/xmldom/xmldom/pull/721) [`#720`](https://redirect.github.com/xmldom/xmldom/issues/720) Thank you, [@​censujiang](https://redirect.github.com/censujiang), [@​Mathias-S](https://redirect.github.com/Mathias-S), for your contributions ### [`v0.9.1`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#0910) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.9.0...0.9.1) ##### Fixed - Security: `XMLSerializer.serializeToString()` (and `Node.toString()`, `NodeList.toString()`) now accept a `requireWellFormed` option. When `{ requireWellFormed: true }` is passed, the serializer throws `InvalidStateError` for injection-prone node content, preventing XML injection via attacker-controlled node data. [`GHSA-j759-j44w-7fr8`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-j759-j44w-7fr8) [`GHSA-x6wf-f3px-wcqx`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-x6wf-f3px-wcqx) [`GHSA-f6ww-3ggp-fr8h`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-f6ww-3ggp-fr8h) - Comment: throws when `data` contains `--` anywhere, ends with `-`, or contains characters outside the XML `Char` production - ProcessingInstruction: throws when target contains `:` or matches `xml` (case-insensitive), or `data` contains characters outside the XML `Char` production or contains `?>` - DocumentType: throws when `publicId` fails `PubidLiteral`, `systemId` fails `SystemLiteral`, or `internalSubset` contains `]>` - Security: DOM traversal operations (`XMLSerializer.serializeToString()`, `Node.prototype.normalize()`, `Node.prototype.cloneNode(true)`, `Document.prototype.importNode(node, true)`, `node.textContent` getter, `getElementsByTagName()` / `getElementsByTagNameNS()` / `getElementsByClassName()` / `getElementById()`, `Node.prototype.isEqualNode()`) are now iterative. Previously, deeply nested DOM trees would exhaust the JavaScript call stack and throw an unrecoverable `RangeError`. [`GHSA-2v35-w6hq-6mfw`](https://redirect.github.com/xmldom/xmldom/security/advisories/GHSA-2v35-w6hq-6mfw) - `isEqualNode` now correctly returns `false` for CDATASection nodes with different `data` ##### Deprecated - The `splitCDATASections` serializer option is deprecated and will be removed in the next breaking release. The automatic splitting of `"]]>"` in `CDATASection` data was introduced as a workaround; use `requireWellFormed: true` or ensure `CDATASection` data does not contain `"]]>"` before serialization. ##### Chore - updated dependencies Thank you, [@​Jvr2022](https://redirect.github.com/Jvr2022), [@​praveen-kv](https://redirect.github.com/praveen-kv), [@​TharVid](https://redirect.github.com/TharVid), [@​decsecre583](https://redirect.github.com/decsecre583), [@​tlsbollei](https://redirect.github.com/tlsbollei), [@​KarimTantawey](https://redirect.github.com/KarimTantawey), for your contributions ### [`v0.9.0`](https://redirect.github.com/xmldom/xmldom/blob/HEAD/CHANGELOG.md#090) [Compare Source](https://redirect.github.com/xmldom/xmldom/compare/0.8.13...0.9.0) - [Discussion](https://redirect.github.com/xmldom/xmldom/discussions/435) - [Summary on dev.to](https://dev.to/karfau/release-090-of-xmldomxmldom-4106) ##### Features - feat: expose all DOM level 2 element prototypes [`#637`](https://redirect.github.com/xmldom/xmldom/pull/637) / [`#40`](https://redirect.github.com/xmldom/xmldom/issues/40) - feat: add iterator function to NodeList and NamedNodeMap [`#634`](https://redirect.github.com/xmldom/xmldom/pull/634) / [`#633`](https://redirect.github.com/xmldom/xmldom/issues/633) ##### Fixed - parse empty/whitspace only doctype internal subset [`#692`](https://redirect.github.com/xmldom/xmldom/pull/692) - avoid prototype clash in namespace prefix [`#554`](https://redirect.github.com/xmldom/xmldom/pull/554) - report fatalError when doctype is inside elements [`#550`](https://redirect.github.com/xmldom/xmldom/pull/550) ##### Other - test: add fuzz target and regression tests [`#556`](https://redirect.github.com/xmldom/xmldom/pull/556) - chore: improve .gitignore and provide .envrc.template [`#697`](https://redirect.github.com/xmldom/xmldom/pull/697) - chore: Apply security best practices [`#546`](https://redirect.github.com/xmldom/xmldom/pull/546) - ci: check test coverage in PRs [`#524`](https://redirect.github.com/xmldom/xmldom/pull/524) - docs: add missing commas to readme [`#566`](https://redirect.github.com/xmldom/xmldom/pull/566) - docs: click to copy install command in readme [`#644`](https://redirect.github.com/xmldom/xmldom/pull/644) - docs: enhance jsdoc comments [`#511`](https://redirect.github.com/xmldom/xmldom/pull/511) Thank you, [@​kboshold](https://redirect.github.com/kboshold), [@​edi9999](https://redirect.github.com/edi9999), [@​apupier](https://redirect.github.com/apupier), [@​shunkica](https://redirect.github.com/shunkica), [@​homer0](https://redirect.github.com/homer0), [@​jhauga](https://redirect.github.com/jhauga), [@​UdayKharatmol](https://redirect.github.com/UdayKharatmol), for your contributions </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@xyflow/react](https://reactflow.dev) ([source](https://redirect.github.com/xyflow/xyflow/tree/HEAD/packages/react)) | [`12.8.6` → `12.10.2`](https://renovatebot.com/diffs/npm/@xyflow%2freact/12.8.6/12.10.2) |  |  | --- ### Release Notes <details> <summary>xyflow/xyflow (@​xyflow/react)</summary> ### [`v12.10.2`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#12102) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.10.1...@xyflow/react@12.10.2) ##### Patch Changes - [#​5735](https://redirect.github.com/xyflow/xyflow/pull/5735) [`a6c938fb2`](https://redirect.github.com/xyflow/xyflow/commit/a6c938fb2e5ed030512ef75d665ac80dc3a66bc6) Thanks [@​nvie](https://redirect.github.com/nvie)! - Allow `type` field to be missing in `BuiltInNode` (no `type` field is the same as `type: "default"`) - [#​5722](https://redirect.github.com/xyflow/xyflow/pull/5722) [`8c9b7e726`](https://redirect.github.com/xyflow/xyflow/commit/8c9b7e726e0bb79871c85017dace0f1ccf1b478c) Thanks [@​dfblhmm](https://redirect.github.com/dfblhmm)! - Add `snapGrid` to `screenToFlowPosition` options - [#​5723](https://redirect.github.com/xyflow/xyflow/pull/5723) [`82249517a`](https://redirect.github.com/xyflow/xyflow/commit/82249517a3338d7bd0d6d499abecfaa6bca8c339) Thanks [@​moklick](https://redirect.github.com/moklick)! - Pass options to useReactFlow/useSvelteFlow viewport helper functions correctly - [#​5733](https://redirect.github.com/xyflow/xyflow/pull/5733) [`64115cd08`](https://redirect.github.com/xyflow/xyflow/commit/64115cd086d2c04235f1cae80acb45455fd0de49) Thanks [@​AlaricBaraou](https://redirect.github.com/AlaricBaraou)! - Fix empty store during ReactFlow remount by reordering StoreUpdater before GraphView and using layout effects - [#​5727](https://redirect.github.com/xyflow/xyflow/pull/5727) [`dd54e86b9`](https://redirect.github.com/xyflow/xyflow/commit/dd54e86b91da29c1f58f646ad9a99f96f0c4a2e5) Thanks [@​solastley](https://redirect.github.com/solastley)! - Ensure visual nodes selection state is cleared when zero selected nodes remain in the flow - Updated dependencies \[[`4a278dbbf`](https://redirect.github.com/xyflow/xyflow/commit/4a278dbbf942b2bc964e4159347b70ae6617f3dc)]: - [@​xyflow/system](https://redirect.github.com/xyflow/system)@​0.0.76 ### [`v12.10.1`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#12101) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.10.0...@xyflow/react@12.10.1) ##### Patch Changes - [#​5704](https://redirect.github.com/xyflow/xyflow/pull/5704) [`c91d3d022`](https://redirect.github.com/xyflow/xyflow/commit/c91d3d022f4517f4403a898cd02ee891b7e1f2d2) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Keep `onConnectEnd` and `isValidConnection` up to date in an ongoing connection - [#​5687](https://redirect.github.com/xyflow/xyflow/pull/5687) [`2624479ad`](https://redirect.github.com/xyflow/xyflow/commit/2624479ad3d0b06fcb690242b2372ff2a7e16f54) Thanks [@​vkrol](https://redirect.github.com/vkrol)! - Optimize zooming performance when panOnScroll mode is enabled - [#​5682](https://redirect.github.com/xyflow/xyflow/pull/5682) [`7b6e46ce1`](https://redirect.github.com/xyflow/xyflow/commit/7b6e46ce17f49e759f614a8f933f7dc729635b48) Thanks [@​artemtam](https://redirect.github.com/artemtam)! - Prevent unnecessary updates when selectNodesOnDrag = false - [#​5703](https://redirect.github.com/xyflow/xyflow/pull/5703) [`ce6c869df`](https://redirect.github.com/xyflow/xyflow/commit/ce6c869df40b2b013484808c742ca508da4a591f) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Improve return type of useNodesData. Now you can narrow down the data type by checking the node type. - [#​5692](https://redirect.github.com/xyflow/xyflow/pull/5692) [`49646858f`](https://redirect.github.com/xyflow/xyflow/commit/49646858f951455921aedbb83725b4225dbdef9d) Thanks [@​moklick](https://redirect.github.com/moklick)! - Handle undefined node in mini map - [#​5684](https://redirect.github.com/xyflow/xyflow/pull/5684) [`382c654c3`](https://redirect.github.com/xyflow/xyflow/commit/382c654c315accca2005e39d477eed6649f12e40) Thanks [@​ysds](https://redirect.github.com/ysds)! - Consolidate drag handler effects in useDrag to fix programmatic selection issues - Updated dependencies \[[`ce6c869df`](https://redirect.github.com/xyflow/xyflow/commit/ce6c869df40b2b013484808c742ca508da4a591f)]: - [@​xyflow/system](https://redirect.github.com/xyflow/system)@​0.0.75 ### [`v12.10.0`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#12100) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.9.3...@xyflow/react@12.10.0) ##### Minor Changes - [#​5637](https://redirect.github.com/xyflow/xyflow/pull/5637) [`0c7261a6d`](https://redirect.github.com/xyflow/xyflow/commit/0c7261a6dc94f1aa58333a6aebcaca8ced9b5ad2) Thanks [@​moklick](https://redirect.github.com/moklick)! - Add `zIndexMode` to control how z-index is calculated for nodes and edges - [#​5484](https://redirect.github.com/xyflow/xyflow/pull/5484) [`a523919d6`](https://redirect.github.com/xyflow/xyflow/commit/a523919d6789995e9d0f3dd29b0b47fc3b8d8439) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Add `experimental_useOnNodesChangeMiddleware` hook ##### Patch Changes - [#​5629](https://redirect.github.com/xyflow/xyflow/pull/5629) [`9030fab2d`](https://redirect.github.com/xyflow/xyflow/commit/9030fab2df8285fdfb649bda6e1e885dfd228d45) Thanks [@​AlaricBaraou](https://redirect.github.com/AlaricBaraou)! - Prevent unnecessary re-render in `FlowRenderer` - [#​5592](https://redirect.github.com/xyflow/xyflow/pull/5592) [`38dbf41c4`](https://redirect.github.com/xyflow/xyflow/commit/38dbf41c464550cc803b946a4ad1f46982385a03) Thanks [@​svilen-ivanov-kubit](https://redirect.github.com/svilen-ivanov-kubit)! - Always create a new measured object in apply changes. - [#​5635](https://redirect.github.com/xyflow/xyflow/pull/5635) [`2d7fa40e2`](https://redirect.github.com/xyflow/xyflow/commit/2d7fa40e2684a0fcdd4eca7800ccf2c34338e549) Thanks [@​tornado-softwares](https://redirect.github.com/tornado-softwares)! - Update an ongoing connection when user moves node with keyboard. - Updated dependencies \[[`0c7261a6d`](https://redirect.github.com/xyflow/xyflow/commit/0c7261a6dc94f1aa58333a6aebcaca8ced9b5ad2), [`8598b6bc2`](https://redirect.github.com/xyflow/xyflow/commit/8598b6bc2a9d052b12d5215706382da0aa84827b), [`2d7fa40e2`](https://redirect.github.com/xyflow/xyflow/commit/2d7fa40e2684a0fcdd4eca7800ccf2c34338e549)]: - [@​xyflow/system](https://redirect.github.com/xyflow/system)@​0.0.74 ### [`v12.9.3`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#1293) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.9.2...@xyflow/react@12.9.3) ##### Patch Changes - [#​5621](https://redirect.github.com/xyflow/xyflow/pull/5621) [`c1304dba7`](https://redirect.github.com/xyflow/xyflow/commit/c1304dba7a20bb8d74c7aceb23cd80b56e4c0482) Thanks [@​moklick](https://redirect.github.com/moklick)! - Set `paneClickDistance` default value to `1`. - [#​5578](https://redirect.github.com/xyflow/xyflow/pull/5578) [`00bcb9f5f`](https://redirect.github.com/xyflow/xyflow/commit/00bcb9f5f45f49814b9ac19b3f55cfe069ee3773) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Pass current pointer position to connection - Updated dependencies \[[`00bcb9f5f`](https://redirect.github.com/xyflow/xyflow/commit/00bcb9f5f45f49814b9ac19b3f55cfe069ee3773)]: - [@​xyflow/system](https://redirect.github.com/xyflow/system)@​0.0.73 ### [`v12.9.2`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#1292) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.9.1...@xyflow/react@12.9.2) ##### Patch Changes - [#​5593](https://redirect.github.com/xyflow/xyflow/pull/5593) [`a8ee089d7`](https://redirect.github.com/xyflow/xyflow/commit/a8ee089d7689d9a58113690c8e90e1c1e109602a) Thanks [@​moklick](https://redirect.github.com/moklick)! - Reset selection box when user selects a node ### [`v12.9.1`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#1291) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.9.0...@xyflow/react@12.9.1) ##### Patch Changes - [#​5572](https://redirect.github.com/xyflow/xyflow/pull/5572) [`5ec0cac7f`](https://redirect.github.com/xyflow/xyflow/commit/5ec0cac7fad21109b74839969c0818f88ddc87d9) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Fix onPaneClick events being suppressed when selectionOnDrag=true - Updated dependencies \[[`5ec0cac7f`](https://redirect.github.com/xyflow/xyflow/commit/5ec0cac7fad21109b74839969c0818f88ddc87d9)]: - [@​xyflow/system](https://redirect.github.com/xyflow/system)@​0.0.72 ### [`v12.9.0`](https://redirect.github.com/xyflow/xyflow/blob/HEAD/packages/react/CHANGELOG.md#1290) [Compare Source](https://redirect.github.com/xyflow/xyflow/compare/@xyflow/react@12.8.6...@xyflow/react@12.9.0) ##### Minor Changes - [#​5544](https://redirect.github.com/xyflow/xyflow/pull/5544) [`c17b49f4c`](https://redirect.github.com/xyflow/xyflow/commit/c17b49f4c16167da3f791430163edd592159d27d) Thanks [@​0x0f0f0f](https://redirect.github.com/0x0f0f0f)! - Add `EdgeToolbar` component - [#​5550](https://redirect.github.com/xyflow/xyflow/pull/5550) [`6ffb9f790`](https://redirect.github.com/xyflow/xyflow/commit/6ffb9f7901c32f5b335aee2517f41bf87f274f32) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Prevent child nodes of different parents from overlapping - [#​5551](https://redirect.github.com/xyflow/xyflow/pull/5551) [`6bb64b3ed`](https://redirect.github.com/xyflow/xyflow/commit/6bb64b3ed60f26c9ea8bc01c8d62fb9bf74cd634) Thanks [@​moklick](https://redirect.github.com/moklick)! - Allow to start a selection above a node ##### Patch Changes - [#​5531](https://redirect.github.com/xyflow/xyflow/pull/5531) [`fe2a45ed2`](https://redirect.github.com/xyflow/xyflow/commit/fe2a45ed2aa0d96db8e1be0354038be7ce6f824d) Thanks [@​Sec-ant](https://redirect.github.com/Sec-ant)! - Add `type` property to `EdgeProps` to match `NodeProps` behavior - [#​5528](https://redirect.github.com/xyflow/xyflow/pull/5528) [`d50a963cd`](https://redirect.github.com/xyflow/xyflow/commit/d50a963cd0f00cd31236d760dcd7995218d80553) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Let `NodeResizer` props change during ongoing resize - [#​5530](https://redirect.github.com/xyflow/xyflow/pull/5530) [`3b9951e42`](https://redirect.github.com/xyflow/xyflow/commit/3b9951e42f2041276ac8957154598a7af41f81e9) Thanks [@​peterkogo](https://redirect.github.com/peterkogo)! - Improve performance of adding nodes & edges - [#​5547](https://redirect.github.com/xyflow/xyflow/pull/5547) [`1c8961207`](https://redirect.github.com/xyflow/xyflow/commit/1c8961207e8ac326098af18489465b36cdd2d831) Thanks [@​moklick](https://redirect.github.com/moklick)! - Always call `onMoveEnd` when `onMoveStart` was called - Updated dependencies \[[`c17b49f4c`](https://redirect.github.com/xyflow/xyflow/commit/c17b49f4c16167da3f791430163edd592159d27d), [`6ffb9f790`](https://redirect.github.com/xyflow/xyflow/commit/6ffb9f7901c32f5b335aee2517f41bf87f274f32), [`d50a963cd`](https://redirect.github.com/xyflow/xyflow/commit/d50a963cd0f00cd31236d760dcd7995218d80553), [`6bb64b3ed`](https://redirect.github.com/xyflow/xyflow/commit/6bb64b3ed60f26c9ea8bc01c8d62fb9bf74cd634), [`8a9ee2d83`](https://redirect.github.com/xyflow/xyflow/commit/8a9ee2d836776da42b867c6ba90d302fbbc79b37), [`1c8961207`](https://redirect.github.com/xyflow/xyflow/commit/1c8961207e8ac326098af18489465b36cdd2d831)]: - [@​xyflow/system](https://redirect.github.com/xyflow/system)@​0.0.71 </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [dotenv](https://redirect.github.com/motdotla/dotenv) | [`17.3.1` → `17.4.2`](https://renovatebot.com/diffs/npm/dotenv/17.3.1/17.4.2) |  |  | --- ### Release Notes <details> <summary>motdotla/dotenv (dotenv)</summary> ### [`v17.4.2`](https://redirect.github.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1742-2026-04-12) [Compare Source](https://redirect.github.com/motdotla/dotenv/compare/v17.4.1...v17.4.2) ##### Changed - Improved skill files - tightened up details ([#​1009](https://redirect.github.com/motdotla/dotenv/pull/1009)) ### [`v17.4.1`](https://redirect.github.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1741-2026-04-05) [Compare Source](https://redirect.github.com/motdotla/dotenv/compare/v17.4.0...v17.4.1) ##### Changed - Change text `injecting` to `injected` ([#​1005](https://redirect.github.com/motdotla/dotenv/pull/1005)) ### [`v17.4.0`](https://redirect.github.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#1740-2026-04-01) [Compare Source](https://redirect.github.com/motdotla/dotenv/compare/v17.3.1...v17.4.0) ##### Added - Add `skills/` folder with focused agent skills: `skills/dotenv/SKILL.md` (core usage) and `skills/dotenvx/SKILL.md` (encryption, multiple environments, variable expansion) for AI coding agent discovery via the skills.sh ecosystem (`npx skills add motdotla/dotenv`) ##### Changed - Tighten up logs: `◇ injecting env (14) from .env` ([#​1003](https://redirect.github.com/motdotla/dotenv/pull/1003)) </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [ember-svg-jar>cheerio](https://cheerio.js.org/) ([source](https://redirect.github.com/cheeriojs/cheerio)) | [`1.0.0-rc.12` → `1.2.0`](https://renovatebot.com/diffs/npm/ember-svg-jar>cheerio/1.0.0-rc.12/1.2.0) |  |  | --- ### Release Notes <details> <summary>cheeriojs/cheerio (ember-svg-jar>cheerio)</summary> ### [`v1.2.0`](https://redirect.github.com/cheeriojs/cheerio/releases/tag/v1.2.0) [Compare Source](https://redirect.github.com/cheeriojs/cheerio/compare/v1.1.2...v1.2.0) #### What's Changed - `.val()` now supports button values by [@​kaioduarte](https://redirect.github.com/kaioduarte) in [#​4175](https://redirect.github.com/cheeriojs/cheerio/pull/4175) - `.find()` now properly scopes `:scope` selectors by [@​T0nd0Tara](https://redirect.github.com/T0nd0Tara) in [#​4967](https://redirect.github.com/cheeriojs/cheerio/pull/4967) - The `isHtml` utility now runtime-validates input types by [@​Mallikarjun-0](https://redirect.github.com/Mallikarjun-0) in [#​4523](https://redirect.github.com/cheeriojs/cheerio/pull/4523) #### New Contributors - [@​noritaka1166](https://redirect.github.com/noritaka1166) made their first contribution in [#​4740](https://redirect.github.com/cheeriojs/cheerio/pull/4740) - [@​kaioduarte](https://redirect.github.com/kaioduarte) made their first contribution in [#​4175](https://redirect.github.com/cheeriojs/cheerio/pull/4175) - [@​Mallikarjun-0](https://redirect.github.com/Mallikarjun-0) made their first contribution in [#​4523](https://redirect.github.com/cheeriojs/cheerio/pull/4523) - [@​T0nd0Tara](https://redirect.github.com/T0nd0Tara) made their first contribution in [#​4967](https://redirect.github.com/cheeriojs/cheerio/pull/4967) **Full Changelog**: <cheeriojs/cheerio@v1.1.2...v1.2.0> ### [`v1.1.2`](https://redirect.github.com/cheeriojs/cheerio/releases/tag/v1.1.2) [Compare Source](https://redirect.github.com/cheeriojs/cheerio/compare/v1.1.1...v1.1.2) #### What's Changed - Fix fromURL baseURI issues by [@​fb55](https://redirect.github.com/fb55) in [#​4696](https://redirect.github.com/cheeriojs/cheerio/pull/4696) **Full Changelog**: <cheeriojs/cheerio@v1.1.1...v1.1.2> ### [`v1.1.1`](https://redirect.github.com/cheeriojs/cheerio/releases/tag/v1.1.1) [Compare Source](https://redirect.github.com/cheeriojs/cheerio/compare/v1.1.0...v1.1.1) - Fix Undici issues ([#​4689](https://redirect.github.com/cheeriojs/cheerio/issues/4689)) [`91a2b3d`](https://redirect.github.com/cheeriojs/cheerio/commit/91a2b3d7) *** ### [`v1.1.0`](https://redirect.github.com/cheeriojs/cheerio/releases/tag/v1.1.0) [Compare Source](https://redirect.github.com/cheeriojs/cheerio/compare/v1.0.0...v1.1.0) #### What's Changed - fix(attributes): support `.prop` on document nodes by [@​fb55](https://redirect.github.com/fb55) in [#​4320](https://redirect.github.com/cheeriojs/cheerio/pull/4320) - fix(types): fix ExtractedValue type by [@​ben-tilden](https://redirect.github.com/ben-tilden) in [#​4334](https://redirect.github.com/cheeriojs/cheerio/pull/4334) - Add a field `browser` to `package.json` root by [@​UNIDY2002](https://redirect.github.com/UNIDY2002) in [#​4033](https://redirect.github.com/cheeriojs/cheerio/pull/4033) - Upgraded dependencies #### Doc Improvements - docs(blog): fix loading documents url by [@​TonyRL](https://redirect.github.com/TonyRL) in [#​4002](https://redirect.github.com/cheeriojs/cheerio/pull/4002) - docs: fix function load() link by [@​ya-luotao](https://redirect.github.com/ya-luotao) in [#​4013](https://redirect.github.com/cheeriojs/cheerio/pull/4013) - docs: correct loadBuffer() name in example by [@​arichardsmith](https://redirect.github.com/arichardsmith) in [#​4270](https://redirect.github.com/cheeriojs/cheerio/pull/4270) - Update attr setter jsdoc by [@​thyming](https://redirect.github.com/thyming) in [#​4469](https://redirect.github.com/cheeriojs/cheerio/pull/4469) - docs: use code block for install, mention yarn and bun by [@​Electroid](https://redirect.github.com/Electroid) in [#​4454](https://redirect.github.com/cheeriojs/cheerio/pull/4454) - docs: Replace `.html` with `.prop` for outerHTML by [@​fb55](https://redirect.github.com/fb55) in [#​4321](https://redirect.github.com/cheeriojs/cheerio/pull/4321) #### New Contributors - [@​TonyRL](https://redirect.github.com/TonyRL) made their first contribution in [#​4002](https://redirect.github.com/cheeriojs/cheerio/pull/4002) - [@​ya-luotao](https://redirect.github.com/ya-luotao) made their first contribution in [#​4013](https://redirect.github.com/cheeriojs/cheerio/pull/4013) - [@​arichardsmith](https://redirect.github.com/arichardsmith) made their first contribution in [#​4270](https://redirect.github.com/cheeriojs/cheerio/pull/4270) - [@​UNIDY2002](https://redirect.github.com/UNIDY2002) made their first contribution in [#​4033](https://redirect.github.com/cheeriojs/cheerio/pull/4033) - [@​AzeemSup](https://redirect.github.com/AzeemSup) made their first contribution in [#​4189](https://redirect.github.com/cheeriojs/cheerio/pull/4189) - [@​ben-tilden](https://redirect.github.com/ben-tilden) made their first contribution in [#​4334](https://redirect.github.com/cheeriojs/cheerio/pull/4334) - [@​Electroid](https://redirect.github.com/Electroid) made their first contribution in [#​4454](https://redirect.github.com/cheeriojs/cheerio/pull/4454) - [@​thyming](https://redirect.github.com/thyming) made their first contribution in [#​4469](https://redirect.github.com/cheeriojs/cheerio/pull/4469) **Full Changelog**: <cheeriojs/cheerio@v1.0.0...v1.1.0> ### [`v1.0.0`](https://redirect.github.com/cheeriojs/cheerio/releases/tag/v1.0.0) [Compare Source](https://redirect.github.com/cheeriojs/cheerio/compare/v1.0.0-rc.12...v1.0.0) Cheerio 1.0 is here! 🎉 ### [Announcement Blog Post](https://cheerio.js.org/blog/2024-08-07-version-1/) #### Breaking Changes - The minimum NodeJS version is now 18.17 or higher [#​3959](https://redirect.github.com/cheeriojs/cheerio/pull/3959) - Import paths were simplified. For example, use `cheerio/slim` instead of `cheerio/lib/slim`. [#​3970](https://redirect.github.com/cheeriojs/cheerio/pull/3970) - The deprecated default Cheerio instance and static methods were removed. [#​3974](https://redirect.github.com/cheeriojs/cheerio/pull/3974) Before, it was possible to write code like this: ```ts import cheerio, { html } from 'cheerio'; html(cheerio('<test></test>')); // ~ '<test></test>' -- NO LONGER WORKS ``` Make sure to always load documents first: ```ts import * as cheerio from 'cheerio'; cheerio.load('<test></test>').html(); ``` - Node types previously re-exported by Cheerio must now be imported directly from (`domhandler`)(<https://github.com/fb55/domhandler>). [#​3969](https://redirect.github.com/cheeriojs/cheerio/pull/3969) - htmlparser2 options now reside exclusively under the `xml` key ([#​2916](https://redirect.github.com/cheeriojs/cheerio/pull/2916)): ```ts const $ = cheerio.load('<html>', { xml: { withStartIndices: true, }, }); ``` #### New Features - Add functions to load buffers, streams & URLs in NodeJS by [@​fb55](https://redirect.github.com/fb55) in [#​2857](https://redirect.github.com/cheeriojs/cheerio/pull/2857) - Add extract method by [@​fb55](https://redirect.github.com/fb55) in [#​2750](https://redirect.github.com/cheeriojs/cheerio/pull/2750) #### Fixes - Allow imports of `cheerio/utils` by [@​blixt](https://redirect.github.com/blixt) in [#​2601](https://redirect.github.com/cheeriojs/cheerio/pull/2601) - Allow empty string in `data`, and simplify by [@​fb55](https://redirect.github.com/fb55) in [#​2818](https://redirect.github.com/cheeriojs/cheerio/pull/2818) - Make `closest` be able to start from text nodes by [@​Qualtagh](https://redirect.github.com/Qualtagh) in [#​2811](https://redirect.github.com/cheeriojs/cheerio/pull/2811) - Fix potential github action smells by [@​ceddy4395](https://redirect.github.com/ceddy4395) in [#​3826](https://redirect.github.com/cheeriojs/cheerio/pull/3826) #### Other - Cheerio has [a new website](https://cheerio.js.org), featuring updated API docs and guides! [#​2950](https://redirect.github.com/cheeriojs/cheerio/pull/2950) **Full Changelog**: <cheeriojs/cheerio@v1.0.0-rc.12...v1.0.0> </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [esbuild](https://redirect.github.com/evanw/esbuild) | [`0.25.12` → `0.28.0`](https://renovatebot.com/diffs/npm/esbuild/0.25.12/0.28.0) |  |  | --- ### Release Notes <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.28.0`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0280) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.7...v0.28.0) - Add support for `with { type: 'text' }` imports ([#​4435](https://redirect.github.com/evanw/esbuild/issues/4435)) The [import text](https://redirect.github.com/tc39/proposal-import-text) proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by [Deno](https://docs.deno.com/examples/importing_text/) and [Bun](https://bun.com/docs/guides/runtime/import-html). So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing [`text` loader](https://esbuild.github.io/content-types/#text). Here's an example: ```js import string from './example.txt' with { type: 'text' } console.log(string) ``` - Add integrity checks to fallback download path ([#​4343](https://redirect.github.com/evanw/esbuild/issues/4343)) Installing esbuild via npm is somewhat complicated with several different edge cases (see [esbuild's documentation](https://esbuild.github.io/getting-started/#additional-npm-flags) for details). If the regular installation of esbuild's platform-specific package fails, esbuild's install script attempts to download the platform-specific package itself (first with the `npm` command, and then with a HTTP request to `registry.npmjs.org` as a last resort). This last resort path previously didn't have any integrity checks. With this release, esbuild will now verify that the hash of the downloaded binary matches the expected hash for the current release. This means the hashes for all of esbuild's platform-specific binary packages will now be embedded in the top-level `esbuild` package. Hopefully this should work without any problems. But just in case, this change is being done as a breaking change release. - Update the Go compiler from 1.25.7 to 1.26.1 This upgrade should not affect anything. However, there have been some significant internal changes to the Go compiler, so esbuild could potentially behave differently in certain edge cases: - It now uses the [new garbage collector](https://go.dev/doc/go1.26#new-garbage-collector) that comes with Go 1.26. - The Go compiler is now more aggressive with allocating memory on the stack. - The executable format that the Go linker uses has undergone several changes. - The WebAssembly build now unconditionally makes use of the sign extension and non-trapping floating-point to integer conversion instructions. You can read the [Go 1.26 release notes](https://go.dev/doc/go1.26) for more information. ### [`v0.27.7`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0277) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.5...v0.27.7) - Fix lowering of define semantics for TypeScript parameter properties ([#​4421](https://redirect.github.com/evanw/esbuild/issues/4421)) The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case: ```ts // Original code class Foo { constructor(public x = 1) {} y = 2 } // Old output (with --loader=ts --target=es2021) class Foo { constructor(x = 1) { this.x = x; __publicField(this, "y", 2); } x; } // New output (with --loader=ts --target=es2021) class Foo { constructor(x = 1) { __publicField(this, "x", x); __publicField(this, "y", 2); } } ``` ### [`v0.27.5`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0275) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.4...v0.27.5) - Fix for an async generator edge case ([#​4401](https://redirect.github.com/evanw/esbuild/issues/4401), [#​4417](https://redirect.github.com/evanw/esbuild/pull/4417)) Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code: ```js async function* inner() { yield 1; yield 2 } async function* outer() { yield* inner() } let gen = outer() for await (let x of [gen.next(), gen.next()]) console.log(x) ``` Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with `--supported:async-generator=false`). The transformation should be fixed starting with this release. This fix was contributed by [@​2767mr](https://redirect.github.com/2767mr). - Fix a regression when `metafile` is enabled ([#​4420](https://redirect.github.com/evanw/esbuild/issues/4420), [#​4418](https://redirect.github.com/evanw/esbuild/pull/4418)) This release fixes a regression introduced by the previous release. When `metafile: true` was enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors. - Use define semantics for TypeScript parameter properties ([#​4421](https://redirect.github.com/evanw/esbuild/issues/4421)) Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When `"useDefineForClassFields": true` is present in `tsconfig.json`, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release: ```ts // Original code class Foo { constructor(public x: number) {} } // Old output (with --loader=ts) class Foo { constructor(x) { this.x = x; } } // New output (with --loader=ts) class Foo { constructor(x) { this.x = x; } x; } ``` - Allow `es2025` as a target in `tsconfig.json` ([#​4432](https://redirect.github.com/evanw/esbuild/issues/4432)) TypeScript recently [added `es2025`](https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/#es2025-option-for-target-and-lib) as a compilation target, so esbuild now supports this in the `target` field of `tsconfig.json` files, such as in the following configuration file: ```json { "compilerOptions": { "target": "ES2025" } } ``` As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in [the documentation](https://esbuild.github.io/content-types/#tsconfig-json). ### [`v0.27.4`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0274) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.3...v0.27.4) - Fix a regression with CSS media queries ([#​4395](https://redirect.github.com/evanw/esbuild/issues/4395), [#​4405](https://redirect.github.com/evanw/esbuild/issues/4405), [#​4406](https://redirect.github.com/evanw/esbuild/issues/4406)) Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the `<media-type> and <media-condition-without-or>` grammar. Specifically, esbuild was failing to wrap an `or` clause with parentheses when inside `<media-condition-without-or>`. This release fixes the regression. Here is an example: ```css /* Original code */ @​media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red } } /* Old output (incorrect) */ @​media only screen and (min-width: 10px) or (min-height: 10px) { a { color: red; } } /* New output (correct) */ @​media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red; } } ``` - Fix an edge case with the `inject` feature ([#​4407](https://redirect.github.com/evanw/esbuild/issues/4407)) This release fixes an edge case where esbuild's `inject` feature could not be used with arbitrary module namespace names exported using an `export {} from` statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported. With the fix, the following `inject` file: ```js import jquery from 'jquery'; export { jquery as 'window.jQuery' }; ``` Can now always be rewritten as this without esbuild sometimes incorrectly generating an error: ```js export { default as 'window.jQuery' } from 'jquery'; ``` - Attempt to improve API handling of huge metafiles ([#​4329](https://redirect.github.com/evanw/esbuild/issues/4329), [#​4415](https://redirect.github.com/evanw/esbuild/issues/4415)) This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile. The primary issue is that V8 has an implementation-specific maximum string length, so using the `JSON.parse` API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using `JSON.parse` when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly. However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option). ### [`v0.27.3`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0273) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.2...v0.27.3) - Preserve URL fragments in data URLs ([#​4370](https://redirect.github.com/evanw/esbuild/issues/4370)) Consider the following HTML, CSS, and SVG: - `index.html`: ```html <!DOCTYPE html> <html> <head><link rel="stylesheet" href="icons.css"></head> <body><div class="triangle"></div></body> </html> ``` - `icons.css`: ```css .triangle { width: 10px; height: 10px; background: currentColor; clip-path: url(./triangle.svg#x); } ``` - `triangle.svg`: ```xml <svg xmlns="http://www.w3.org/2000/svg"> <defs> <clipPath id="x"> <path d="M0 0H10V10Z"/> </clipPath> </defs> </svg> ``` The CSS uses a URL fragment (the `#x`) to reference the `clipPath` element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the `dataurl` loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS: ```css /* icons.css */ .triangle { width: 10px; height: 10px; background: currentColor; clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x'); } ``` - Parse and print CSS `@scope` rules ([#​4322](https://redirect.github.com/evanw/esbuild/issues/4322)) This release includes dedicated support for parsing `@scope` rules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for [CSS modules](https://esbuild.github.io/content-types/#local-css). Minification of selectors inside `@scope` rules has also improved slightly. Here's an example: ```css /* Original code */ @​scope (:global(.foo)) to (:local(.bar)) { .bar { color: red; } } /* Old output (with --loader=local-css --minify) */ @​scope (:global(.foo)) to (:local(.bar)){.o{color:red}} /* New output (with --loader=local-css --minify) */ @​scope(.foo)to (.o){.o{color:red}} ``` - Fix a minification bug with lowering of `for await` ([#​4378](https://redirect.github.com/evanw/esbuild/pull/4378), [#​4385](https://redirect.github.com/evanw/esbuild/pull/4385)) This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated `catch` clause of lowered `for await` loops. The code that generated the loop previously failed to mark the internal variable references as used. - Update the Go compiler from v1.25.5 to v1.25.7 ([#​4383](https://redirect.github.com/evanw/esbuild/issues/4383), [#​4388](https://redirect.github.com/evanw/esbuild/pull/4388)) This PR was contributed by [@​MikeWillCook](https://redirect.github.com/MikeWillCook). ### [`v0.27.2`](https://redirect.github.com/evanw/esbuild/releases/tag/v0.27.2) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.1...v0.27.2) - Allow import path specifiers starting with `#/` ([#​4361](https://redirect.github.com/evanw/esbuild/pull/4361)) Previously the specification for `package.json` disallowed import path specifiers starting with `#/`, but this restriction [has recently been relaxed](https://redirect.github.com/nodejs/node/pull/60864) and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping `#/*` to `./src/*` (previously you had to use another character such as `#_*` instead, which was more confusing). There is some more context in [nodejs/node#49182](https://redirect.github.com/nodejs/node/issues/49182). This change was contributed by [@​hybrist](https://redirect.github.com/hybrist). - Automatically add the `-webkit-mask` prefix ([#​4357](https://redirect.github.com/evanw/esbuild/issues/4357), [#​4358](https://redirect.github.com/evanw/esbuild/issues/4358)) This release automatically adds the `-webkit-` vendor prefix for the [`mask`](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/mask) CSS shorthand property: ```css /* Original code */ main { mask: url(x.png) center/5rem no-repeat } /* Old output (with --target=chrome110) */ main { mask: url(x.png) center/5rem no-repeat; } /* New output (with --target=chrome110) */ main { -webkit-mask: url(x.png) center/5rem no-repeat; mask: url(x.png) center/5rem no-repeat; } ``` This change was contributed by [@​BPJEnnova](https://redirect.github.com/BPJEnnova). - Additional minification of `switch` statements ([#​4176](https://redirect.github.com/evanw/esbuild/issues/4176), [#​4359](https://redirect.github.com/evanw/esbuild/issues/4359)) This release contains additional minification patterns for reducing `switch` statements. Here is an example: ```js // Original code switch (x) { case 0: foo() break case 1: default: bar() } // Old output (with --minify) switch(x){case 0:foo();break;case 1:default:bar()} // New output (with --minify) x===0?foo():bar(); ``` - Forbid `using` declarations inside `switch` clauses ([#​4323](https://redirect.github.com/evanw/esbuild/issues/4323)) This is a rare change to remove something that was previously possible. The [Explicit Resource Management](https://redirect.github.com/tc39/proposal-explicit-resource-management) proposal introduced `using` declarations. These were previously allowed inside `case` and `default` clauses in `switch` statements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See [tc39/proposal-explicit-resource-management#215](https://redirect.github.com/tc39/proposal-explicit-resource-management/issues/215) and [rbuckton/ecma262#14](https://redirect.github.com/rbuckton/ecma262/pull/14) for details. Here is an example of code that is no longer allowed: ```js switch (mode) { case 'read': using readLock = db.read() return readAll(readLock) case 'write': using writeLock = db.write() return writeAll(writeLock) } ``` That code will now have to be modified to look like this instead (note the additional `{` and `}` block statements around each case body): ```js switch (mode) { case 'read': { using readLock = db.read() return readAll(readLock) } case 'write': { using writeLock = db.write() return writeAll(writeLock) } } ``` This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect). ### [`v0.27.1`](https://redirect.github.com/evanw/esbuild/releases/tag/v0.27.1) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.27.0...v0.27.1) - Fix bundler bug with `var` nested inside `if` ([#​4348](https://redirect.github.com/evanw/esbuild/issues/4348)) This release fixes a bug with the bundler that happens when importing an ES module using `require` (which causes it to be wrapped) and there's a top-level `var` inside an `if` statement without being wrapped in a `{ ... }` block (and a few other conditions). The bundling transform needed to hoist these `var` declarations outside of the lazy ES module wrapper for correctness. See the issue for details. - Fix minifier bug with `for` inside `try` inside label ([#​4351](https://redirect.github.com/evanw/esbuild/issues/4351)) This fixes an old regression from [version v0.21.4](https://redirect.github.com/evanw/esbuild/releases/v0.21.4). Some code was introduced to move the label inside the `try` statement to address a problem with transforming labeled `for await` loops to avoid the `await` (the transformation involves converting the `for await` loop into a `for` loop and wrapping it in a `try` statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to `for` loops that esbuild itself generates internally as part of the `for await` transform. Here is an example of some affected code: ```js // Original code d: { e: { try { while (1) { break d } } catch { break e; } } } // Old output (with --minify) a:try{e:for(;;)break a}catch{break e} // New output (with --minify) a:e:try{for(;;)break a}catch{break e} ``` - Inline IIFEs containing a single expression ([#​4354](https://redirect.github.com/evanw/esbuild/issues/4354)) Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single `return` statement. Now it should also work if the body contains a single expression statement instead: ```js // Original code const foo = () => { const cb = () => { console.log(x()) } return cb() } // Old output (with --minify) const foo=()=>(()=>{console.log(x())})(); // New output (with --minify) const foo=()=>{console.log(x())}; ``` - The minifier now strips empty `finally` clauses ([#​4353](https://redirect.github.com/evanw/esbuild/issues/4353)) This improvement means that `finally` clauses containing dead code can potentially cause the associated `try` statement to be removed from the output entirely in minified builds: ```js // Original code function foo(callback) { if (DEBUG) stack.push(callback.name); try { callback(); } finally { if (DEBUG) stack.pop(); } } // Old output (with --minify --define:DEBUG=false) function foo(a){try{a()}finally{}} // New output (with --minify --define:DEBUG=false) function foo(a){a()} ``` - Allow tree-shaking of the `Symbol` constructor With this release, calling `Symbol` is now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables: ```js // Original code const a = Symbol('foo') const b = Symbol(bar) // Old output (with --tree-shaking=true) const a = Symbol("foo"); const b = Symbol(bar); // New output (with --tree-shaking=true) const b = Symbol(bar); ``` ### [`v0.27.0`](https://redirect.github.com/evanw/esbuild/releases/tag/v0.27.0) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.26.0...v0.27.0) **This release deliberately contains backwards-incompatible changes.** To avoid automatically picking up releases like this, you should either be pinning the exact version of `esbuild` in your `package.json` file (recommended) or be using a version range syntax that only accepts patch upgrades such as `^0.26.0` or `~0.26.0`. See npm's documentation about [semver](https://docs.npmjs.com/cli/v6/using-npm/semver/) for more information. - Use `Uint8Array.fromBase64` if available ([#​4286](https://redirect.github.com/evanw/esbuild/issues/4286)) With this release, esbuild's `binary` loader will now use the new [`Uint8Array.fromBase64`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64) function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify `target` when using this feature with Node (for example `--target=node22`) unless you're using Node v25+. - Update the Go compiler from v1.23.12 to v1.25.4 ([#​4208](https://redirect.github.com/evanw/esbuild/issues/4208), [#​4311](https://redirect.github.com/evanw/esbuild/pull/4311)) This raises the operating system requirements for running esbuild: - Linux: now requires a kernel version of 3.2 or later - macOS: now requires macOS 12 (Monterey) or later ### [`v0.26.0`](https://redirect.github.com/evanw/esbuild/releases/tag/v0.26.0) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.12...v0.26.0) - Enable trusted publishing ([#​4281](https://redirect.github.com/evanw/esbuild/issues/4281)) GitHub and npm are recommending that maintainers for packages such as esbuild switch to [trusted publishing](https://docs.npmjs.com/trusted-publishers). With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory. Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing). </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@babel/eslint-parser](https://babel.dev/) ([source](https://redirect.github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser)) | [`7.28.4` → `7.28.6`](https://renovatebot.com/diffs/npm/@babel%2feslint-parser/7.28.4/7.28.6) |  |  | | [@babel/plugin-proposal-decorators](https://babel.dev/docs/en/next/babel-plugin-proposal-decorators) ([source](https://redirect.github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators)) | [`7.28.0` → `7.29.0`](https://renovatebot.com/diffs/npm/@babel%2fplugin-proposal-decorators/7.28.0/7.29.0) |  |  | --- ### Release Notes <details> <summary>babel/babel (@​babel/eslint-parser)</summary> ### [`v7.28.6`](https://redirect.github.com/babel/babel/releases/tag/v7.28.6) [Compare Source](https://redirect.github.com/babel/babel/compare/v7.28.5...v7.28.6) ##### v7.28.6 (2026-01-12) Thanks [@​kadhirash](https://redirect.github.com/kadhirash) and [@​kolvian](https://redirect.github.com/kolvian) for your first PRs! ##### 🐛 Bug Fix - `babel-cli`, `babel-code-frame`, `babel-core`, `babel-helper-check-duplicate-nodes`, `babel-helper-fixtures`, `babel-helper-plugin-utils`, `babel-node`, `babel-plugin-transform-flow-comments`, `babel-plugin-transform-modules-commonjs`, `babel-plugin-transform-property-mutators`, `babel-preset-env`, `babel-traverse`, `babel-types` - [#​17589](https://redirect.github.com/babel/babel/pull/17589) Improve Unicode handling in code-frame tokenizer ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-plugin-transform-regenerator` - [#​17556](https://redirect.github.com/babel/babel/pull/17556) fix: `transform-regenerator` correctly handles scope ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-plugin-transform-react-jsx` - [#​17538](https://redirect.github.com/babel/babel/pull/17538) fix: Keep jsx comments ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) ##### :nail\_care: Polish - `babel-core`, `babel-standalone` - [#​17606](https://redirect.github.com/babel/babel/pull/17606) Polish(standalone): improve message on invalid preset/plugin ([@​JLHwung](https://redirect.github.com/JLHwung)) ##### 🏠 Internal - `babel-plugin-bugfix-v8-static-class-fields-redefine-readonly`, `babel-plugin-proposal-decorators`, `babel-plugin-proposal-import-attributes-to-assertions`, `babel-plugin-proposal-import-wasm-source`, `babel-plugin-syntax-async-do-expressions`, `babel-plugin-syntax-decorators`, `babel-plugin-syntax-destructuring-private`, `babel-plugin-syntax-do-expressions`, `babel-plugin-syntax-explicit-resource-management`, `babel-plugin-syntax-export-default-from`, `babel-plugin-syntax-flow`, `babel-plugin-syntax-function-bind`, `babel-plugin-syntax-function-sent`, `babel-plugin-syntax-import-assertions`, `babel-plugin-syntax-import-attributes`, `babel-plugin-syntax-import-defer`, `babel-plugin-syntax-import-source`, `babel-plugin-syntax-jsx`, `babel-plugin-syntax-module-blocks`, `babel-plugin-syntax-optional-chaining-assign`, `babel-plugin-syntax-partial-application`, `babel-plugin-syntax-pipeline-operator`, `babel-plugin-syntax-throw-expressions`, `babel-plugin-syntax-typescript`, `babel-plugin-transform-async-generator-functions`, `babel-plugin-transform-async-to-generator`, `babel-plugin-transform-class-properties`, `babel-plugin-transform-class-static-block`, `babel-plugin-transform-dotall-regex`, `babel-plugin-transform-duplicate-named-capturing-groups-regex`, `babel-plugin-transform-explicit-resource-management`, `babel-plugin-transform-exponentiation-operator`, `babel-plugin-transform-json-strings`, `babel-plugin-transform-logical-assignment-operators`, `babel-plugin-transform-nullish-coalescing-operator`, `babel-plugin-transform-numeric-separator`, `babel-plugin-transform-object-rest-spread`, `babel-plugin-transform-optional-catch-binding`, `babel-plugin-transform-optional-chaining`, `babel-plugin-transform-private-methods`, `babel-plugin-transform-private-property-in-object`, `babel-plugin-transform-regexp-modifiers`, `babel-plugin-transform-unicode-property-regex`, `babel-plugin-transform-unicode-sets-regex` - [#​17580](https://redirect.github.com/babel/babel/pull/17580) Allow Babel 8 in compatible Babel 7 plugins ([@​nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo)) ##### :running\_woman: Performance - `babel-plugin-transform-react-jsx` - [#​17555](https://redirect.github.com/babel/babel/pull/17555) perf: Use lighter traversal for jsx `__source,__self` ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) ##### Committers: 7 - Babel Bot ([@​babel-bot](https://redirect.github.com/babel-bot)) - Eliot Pontarelli ([@​kolvian](https://redirect.github.com/kolvian)) - Huáng Jùnliàng ([@​JLHwung](https://redirect.github.com/JLHwung)) - Kadhirash Sivakumar ([@​kadhirash](https://redirect.github.com/kadhirash)) - Nicolò Ribaudo ([@​nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo)) - [@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu) - coderaiser ([@​coderaiser](https://redirect.github.com/coderaiser)) ### [`v7.28.5`](https://redirect.github.com/babel/babel/releases/tag/v7.28.5) [Compare Source](https://redirect.github.com/babel/babel/compare/v7.28.4...v7.28.5) #### v7.28.5 (2025-10-23) Thank you [@​CO0Ki3](https://redirect.github.com/CO0Ki3), [@​Olexandr88](https://redirect.github.com/Olexandr88), and [@​youthfulhps](https://redirect.github.com/youthfulhps) for your first PRs! ##### 👓 Spec Compliance - `babel-parser` - [#​17446](https://redirect.github.com/babel/babel/pull/17446) Allow `Runtime Errors for Function Call Assignment Targets` ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-helper-validator-identifier` - [#​17501](https://redirect.github.com/babel/babel/pull/17501) fix: update identifier to unicode 17 ([@​fisker](https://redirect.github.com/fisker)) ##### 🐛 Bug Fix - `babel-plugin-proposal-destructuring-private` - [#​17534](https://redirect.github.com/babel/babel/pull/17534) Allow mixing private destructuring and rest ([@​CO0Ki3](https://redirect.github.com/CO0Ki3)) - `babel-parser` - [#​17521](https://redirect.github.com/babel/babel/pull/17521) Improve `@babel/parser` error typing ([@​JLHwung](https://redirect.github.com/JLHwung)) - [#​17491](https://redirect.github.com/babel/babel/pull/17491) fix: improve ts-only declaration parsing ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-plugin-proposal-discard-binding`, `babel-plugin-transform-destructuring` - [#​17519](https://redirect.github.com/babel/babel/pull/17519) fix: `rest` correctly returns plain array ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-helper-create-class-features-plugin`, `babel-helper-member-expression-to-functions`, `babel-plugin-transform-block-scoping`, `babel-plugin-transform-optional-chaining`, `babel-traverse`, `babel-types` - [#​17503](https://redirect.github.com/babel/babel/pull/17503) Fix `JSXIdentifier` handling in `isReferencedIdentifier` ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-traverse` - [#​17504](https://redirect.github.com/babel/babel/pull/17504) fix: ensure scope.push register in anonymous fn ([@​JLHwung](https://redirect.github.com/JLHwung)) ##### 🏠 Internal - `babel-types` - [#​17494](https://redirect.github.com/babel/babel/pull/17494) Type checking babel-types scripts ([@​JLHwung](https://redirect.github.com/JLHwung)) ##### :running\_woman: Performance - `babel-core` - [#​17490](https://redirect.github.com/babel/babel/pull/17490) Faster finding of locations in `buildCodeFrameError` ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) ##### Committers: 8 - Babel Bot ([@​babel-bot](https://redirect.github.com/babel-bot)) - Byeongho Yoo ([@​youthfulhps](https://redirect.github.com/youthfulhps)) - Huáng Jùnliàng ([@​JLHwung](https://redirect.github.com/JLHwung)) - Hyeon Dokko ([@​CO0Ki3](https://redirect.github.com/CO0Ki3)) - Nicolò Ribaudo ([@​nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo)) - [@​Olexandr88](https://redirect.github.com/Olexandr88) - [@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu) - fisker Cheung ([@​fisker](https://redirect.github.com/fisker)) </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuOCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NS44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Update | Change | |---|---|---| | stripe/stripe-cli | digest | `c901c85` → `49adc22` | --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) - Automerge - Only on Sunday and Saturday (`* * * * 0,6`) - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`) - Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * * 1-5`) - Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * * 2-6`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTUuMTMiLCJ1cGRhdGVkSW5WZXIiOiI0My4xOTUuMTMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Co-authored-by: tryghost-renovate[bot] <269725441+tryghost-renovate[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )