mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-09 13:47:13 +02:00
v6.10.0
1523 Commits
Author | SHA1 | Message | Date | |
---|---|---|---|---|
|
20a80142d3
|
feat: normalize urls in feature links (#9911) | ||
|
b2471633b4
|
refactor: move release plan stores to OSS (#9747) | ||
|
bba85dc9b0
|
chore: fix coverage tests (#9674)
Coverage has been failing for a while: https://github.com/Unleash/unleash/actions/workflows/build_coverage.yaml It looks related to minimatch version: ``` TypeError: /home/runner/work/unleash/unleash/src/lib/util/isDefined.ts: minimatch is not a function ``` Removing `"minimatch": "^10.0.0",` resolution seems to fix it, but it will likely introduce a security vulnerability error Works on my machine results: ```shell Test Suites: 345 passed, 345 total Tests: 3 skipped, 3119 passed, 3122 total Snapshots: 110 passed, 110 total Time: 218.532 s ``` |
||
|
1bef63ff10
|
chore: upgrade date-fns in package.json (#9673)
This is the latest minor release available |
||
|
096e466148
|
chore: bump slack dependency (#9664) | ||
|
be41869568
|
fix(deps): update dependency @slack/web-api to v7.9.1 (#9661)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@slack/web-api](https://tools.slack.dev/node-slack-sdk/web-api) ([source](https://redirect.github.com/slackapi/node-slack-sdk)) | [`7.9.0` -> `7.9.1`](https://renovatebot.com/diffs/npm/@slack%2fweb-api/7.9.0/7.9.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>slackapi/node-slack-sdk (@​slack/web-api)</summary> ### [`v7.9.1`](https://redirect.github.com/slackapi/node-slack-sdk/releases/tag/%40slack/web-api%407.9.1) [Compare Source](https://redirect.github.com/slackapi/node-slack-sdk/compare/@slack/web-api@7.9.0...@slack/web-api@7.9.1) #### What's Changed This release fixes a bug where setting [`allowAbsoluteUrls`](https://tools.slack.dev/node-slack-sdk/reference/web-api/interfaces/WebClientOptions/#allowabsoluteurls) to **false** caused the [`filesUploadV2`](https://tools.slack.dev/node-slack-sdk/web-api/#upload-a-file) method to error when uploading files. Files can now be uploaded with `allowAbsoluteUrls` set to **false**. ##### Bug fixes 🐛 - fix(web-api): complete file upload v2 calls if absolute urls are not allowed in [https://github.com/slackapi/node-slack-sdk/pull/2196](https://redirect.github.com/slackapi/node-slack-sdk/pull/2196) - Thanks [@​zimeg](https://redirect.github.com/zimeg)! ##### Maintenance 🧰 - test(web-api): use channel_id instead of channels with files upload v2 in [https://github.com/slackapi/node-slack-sdk/pull/2197](https://redirect.github.com/slackapi/node-slack-sdk/pull/2197) - Thanks [@​zimeg](https://redirect.github.com/zimeg)! **Full Changelog**: https://github.com/slackapi/node-slack-sdk/compare/[@​slack/web-api](https://redirect.github.com/slack/web-api)[@​7](https://redirect.github.com/7).9.0...[@​slack/web-api](https://redirect.github.com/slack/web-api)[@​7](https://redirect.github.com/7).9.1 **Milestone**: https://github.com/slackapi/node-slack-sdk/milestone/142 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
ea6edc66c1
|
fix(deps): update dependency @slack/web-api to v7.9.0 (#9601)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@slack/web-api](https://tools.slack.dev/node-slack-sdk/web-api) ([source](https://redirect.github.com/slackapi/node-slack-sdk)) | [`7.8.0` -> `7.9.0`](https://renovatebot.com/diffs/npm/@slack%2fweb-api/7.8.0/7.9.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>slackapi/node-slack-sdk (@​slack/web-api)</summary> ### [`v7.9.0`](https://redirect.github.com/slackapi/node-slack-sdk/releases/tag/%40slack/web-api%407.9.0) [Compare Source](https://redirect.github.com/slackapi/node-slack-sdk/compare/@slack/web-api@7.8.0...@slack/web-api@7.9.0) #### What's Changed This release adds the [`allowAbsoluteUrls`](https://tools.slack.dev/node-slack-sdk/reference/web-api/interfaces/WebClientOptions#allowabsoluteurls) option to the `WebClient` constructor. For code using [dynamic method names](https://tools.slack.dev/node-slack-sdk/web-api#call-a-method) with `.apiCall`, this will toggle if requests should be sent to absolute URLs provided: ```js const { WebClient } = require('@​slack/web-api'); const web = new WebClient(token, { allowAbsoluteUrls: false, // Default: true }); const _response = await web.apiCall('https://example.com', { /* ... */ }); ``` $ node index.js [DEBUG] web-api:WebClient:0 http request url: https://slack.com/api/https://example.com ... [WARN] web-api:WebClient:0 http request failed An HTTP protocol error occurred: statusCode = 404 The default `allowAbsoluteUrls` value is `true` to avoid a breaking change with this update, but we suggest deciding if this option should be applied to scripts and adjacent code. ##### Enhancements 🎉 - feat(web-api): add configs to toggle absolute url usage in dynamic api calls in [https://github.com/slackapi/node-slack-sdk/pull/2176](https://redirect.github.com/slackapi/node-slack-sdk/pull/2176) - Thanks [@​zimeg](https://redirect.github.com/zimeg)! ##### Maintenance 🧰 - fix(web-api): bump axios to 1.8.3 to address CVE-2025-27152 in [https://github.com/slackapi/node-slack-sdk/pull/2172](https://redirect.github.com/slackapi/node-slack-sdk/pull/2172) - Thanks [@​zimeg](https://redirect.github.com/zimeg)! **Full Changelog**: https://github.com/slackapi/node-slack-sdk/compare/[@​slack/web-api](https://redirect.github.com/slack/web-api)[@​7](https://redirect.github.com/7).8.0...[@​slack/web-api](https://redirect.github.com/slack/web-api)[@​7](https://redirect.github.com/7).9.0 **Milestone**: https://github.com/slackapi/node-slack-sdk/milestone/131 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
590a7cc16b
|
chore(deps): update dependency concurrently to v9 (#9600) | ||
|
c8cf202c2a
|
chore(deps): update dependency wait-on to v8 (#9456) | ||
|
ac96797932
|
chore(deps): update dependency superagent to v10.2.0 (#9574)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [superagent](https://redirect.github.com/ladjs/superagent) | [`10.1.1` -> `10.2.0`](https://renovatebot.com/diffs/npm/superagent/10.1.1/10.2.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>ladjs/superagent (superagent)</summary> ### [`v10.2.0`](https://redirect.github.com/ladjs/superagent/releases/tag/v10.2.0) [Compare Source](https://redirect.github.com/ladjs/superagent/compare/v10.1.1...v10.2.0) - Merge pull request [#​1829](https://redirect.github.com/ladjs/superagent/issues/1829) from perrin4869/fix/http2/ipv6-addresses [`02cad6a`](https://redirect.github.com/ladjs/superagent/commit/02cad6a) - fix(https2): ipv6 addresses url [`e29fd25`](https://redirect.github.com/ladjs/superagent/commit/e29fd25) - Merge pull request [#​1805](https://redirect.github.com/ladjs/superagent/issues/1805) from perrin4869/fix/ipv6-addresses [`150eb6c`](https://redirect.github.com/ladjs/superagent/commit/150eb6c) - fix? [`07954a1`](https://redirect.github.com/ladjs/superagent/commit/07954a1) - attempt support ipv6 [`d688596`](https://redirect.github.com/ladjs/superagent/commit/d688596) - attempt support ipv6 [`a2f11f8`](https://redirect.github.com/ladjs/superagent/commit/a2f11f8) - re-add test [`10a2e40`](https://redirect.github.com/ladjs/superagent/commit/10a2e40) - remove regression test [`15e9de6`](https://redirect.github.com/ladjs/superagent/commit/15e9de6) - fix: ipv6 addresses parsing [`ec50f5a`](https://redirect.github.com/ladjs/superagent/commit/ec50f5a) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
efcf04487d
|
chore: make it build with strict null checks set to true (#9554)
As part of preparation for ESM and node/TSC updates, this PR will make Unleash build with strictNullChecks set to true, since that's what's in our tsconfig file. Hence, this PR also removes the `--strictNullChecks false` flag in our compile tasks in package.json. TL;DR - Clean up your code rather than turning off compiler security features :) |
||
|
d082e5eb25
|
chore(deps): update dependency @types/node to v20.17.24 (#9570)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.17.22` -> `20.17.24`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.22/20.17.24) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
7a9ef77ec4
|
chore(deps): update dependency @swc/core to v1.11.8 (#9569)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.11.5` -> `1.11.8`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.11.5/1.11.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.11.8`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1118---2025-03-07) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.11.7...v1.11.8) ##### Bug Fixes - **(es/fast-lexer)** Fix lexing of numeric literals ([#​10153](https://redirect.github.com/swc-project/swc/issues/10153)) ([65d23fe]( |
||
|
6dc4118892
|
chore(deps): update dependency @babel/core to v7.26.10 (#9568)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@babel/core](https://babel.dev/docs/en/next/babel-core) ([source](https://redirect.github.com/babel/babel/tree/HEAD/packages/babel-core)) | [`7.26.9` -> `7.26.10`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.26.9/7.26.10) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>babel/babel (@​babel/core)</summary> ### [`v7.26.10`](https://redirect.github.com/babel/babel/blob/HEAD/CHANGELOG.md#v72610-2025-03-11) [Compare Source](https://redirect.github.com/babel/babel/compare/v7.26.9...v7.26.10) ##### 👓 Spec Compliance - `babel-parser` - [#​17159](https://redirect.github.com/babel/babel/pull/17159) Disallow decorator in array pattern ([@​JLHwung](https://redirect.github.com/JLHwung)) ##### 🐛 Bug Fix - `babel-parser`, `babel-template` - [#​17164](https://redirect.github.com/babel/babel/pull/17164) Fix: always initialize ExportDeclaration attributes ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-core` - [#​17142](https://redirect.github.com/babel/babel/pull/17142) fix: "Map maximum size exceeded" in deepClone ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-parser`, `babel-plugin-transform-typescript` - [#​17154](https://redirect.github.com/babel/babel/pull/17154) Update typescript parser tests ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-traverse` - [#​17151](https://redirect.github.com/babel/babel/pull/17151) fix: Should not evaluate vars in child scope ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-generator` - [#​17153](https://redirect.github.com/babel/babel/pull/17153) fix: Correctly generate `abstract override` ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-parser` - [#​17107](https://redirect.github.com/babel/babel/pull/17107) Fix source type detection when parsing TypeScript ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-helpers`, `babel-runtime`, `babel-runtime-corejs2`, `babel-runtime-corejs3` - [#​17173](https://redirect.github.com/babel/babel/pull/17173) Fix processing of replacement pattern with named capture groups ([@​mmmsssttt404](https://redirect.github.com/\[mmmsssttt404]\(https://github.com/mmmsssttt404\))) ##### 💅 Polish - `babel-standalone` - [#​17158](https://redirect.github.com/babel/babel/pull/17158) Avoid warnings when re-bundling [@​babel/standalone](https://redirect.github.com/babel/standalone) with webpack ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) ##### 🏠 Internal - `babel-parser` - [#​17160](https://redirect.github.com/babel/babel/pull/17160) Left-value parsing cleanup ([@​JLHwung](https://redirect.github.com/JLHwung)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
75bb482c08
|
chore(deps): bump @babel/runtime from 7.21.0 to 7.26.10 (#9551) | ||
|
37aeb62d66
|
chore(deps): update dependency minimatch to v10 (#9476) | ||
|
19b9c5037c
|
fix(deps): update dependency pg to v8.14.0 (#9516)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pg](https://redirect.github.com/brianc/node-postgres) ([source](https://redirect.github.com/brianc/node-postgres/tree/HEAD/packages/pg)) | [`8.13.3` -> `8.14.0`](https://renovatebot.com/diffs/npm/pg/8.13.3/8.14.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>brianc/node-postgres (pg)</summary> ### [`v8.14.0`](https://redirect.github.com/brianc/node-postgres/blob/HEAD/CHANGELOG.md#pg8140) [Compare Source](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.3...f7c92e487c6a9c9600585f9de14cb17e7a65e76e) - Add support from SCRAM-SAH-256-PLUS i.e. [channel binding](https://redirect.github.com/brianc/node-postgres/pull/3356). </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTQuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5NC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
d0597bc054
|
fix(deps): update dependency helmet to v8 (#9491) | ||
|
143c8a3074
|
chore(deps): update dependency superagent to v10 (#9482) | ||
|
16d14bf93c
|
chore(deps): update dependency @types/node to v20.17.22 (#9472)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.17.19` -> `20.17.22`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.19/20.17.22) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
4557063d6a
|
chore(deps): update dependency @swc/core to v1.11.5 (#9470)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.11.1` -> `1.11.5`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.11.1/1.11.5) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.11.5`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1115---2025-02-28) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.11.4...v1.11.5) ##### Bug Fixes - **(es/lints)** Capture errors and emit from the original thread ([#​10119](https://redirect.github.com/swc-project/swc/issues/10119)) ([2304cd8]( |
||
|
f3dfb1d3f1
|
chore(deps): drop fetch-mock as it's not being used | ||
|
6db68abb19
|
chore(deps): update dependency @cyclonedx/yarn-plugin-cyclonedx to v2 (#9262) | ||
|
d198f0c696
|
chore(deps): bump axios from 1.7.5 to 1.8.2 (#9465) | ||
|
8799bc169b
|
fix(deps): update dependency compression to v1.8.0 (#9437)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [compression](https://redirect.github.com/expressjs/compression) | [`1.7.5` -> `1.8.0`](https://renovatebot.com/diffs/npm/compression/1.7.5/1.8.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>expressjs/compression (compression)</summary> ### [`v1.8.0`](https://redirect.github.com/expressjs/compression/blob/HEAD/HISTORY.md#180--2025-02-10) [Compare Source](https://redirect.github.com/expressjs/compression/compare/1.7.5...1.8.0) \================== - Use `res.headersSent` when available - Replace `_implicitHeader` with `writeHead` property - add brotli support for versions of node that support it - Add the enforceEncoding option for requests without `Accept-Encoding` header </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
ae0fc86e99
|
chore(deps): update dependency @swc/core to v1.11.1 (#9425)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.18` -> `1.11.1`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.18/1.11.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.11.1`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1111---2025-02-25) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.18...v1.11.1) ##### Bug Fixes - **(error-reporters)** Store diagnostics in `TransformOutput` ([#​10027](https://redirect.github.com/swc-project/swc/issues/10027)) ([52caf23]( |
||
|
e29eb51f3c
|
chore: consumption model flag (#9379) | ||
|
4515925ac2
|
fix(deps): update dependency pg to v8.13.3 (#9375)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pg](https://redirect.github.com/brianc/node-postgres) ([source](https://redirect.github.com/brianc/node-postgres/tree/HEAD/packages/pg)) | [`8.13.1` -> `8.13.3`](https://renovatebot.com/diffs/npm/pg/8.13.1/8.13.3) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>brianc/node-postgres (pg)</summary> ### [`v8.13.3`](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.2...pg@8.13.3) [Compare Source](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.2...pg@8.13.3) ### [`v8.13.2`](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.1...pg@8.13.2) [Compare Source](https://redirect.github.com/brianc/node-postgres/compare/pg@8.13.1...pg@8.13.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
6589c45c76
|
chore(deps): update dependency @swc/core to v1.10.18 (#9373)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.17` -> `1.10.18`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.17/1.10.18) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.18`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11018---2025-02-19) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.17...v1.10.18) ##### Bug Fixes - **(hstr)** Prevent memory leak for global stores ([#​10047](https://redirect.github.com/swc-project/swc/issues/10047)) ([4718bc0]( |
||
|
71ca0e413e
|
chore: node sdk version upgrade to support deltas (#9356) | ||
|
353207d48d
|
chore(deps): update dependency @swc/core to v1.10.17 (#9355)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.16` -> `1.10.17`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.16/1.10.17) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.17`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11017---2025-02-18) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.16...v1.10.17) ##### Bug Fixes - **(deps)** Update cargo (patch) ([#​10021](https://redirect.github.com/swc-project/swc/issues/10021)) ([ffb7734]( |
||
|
0079356fb7
|
chore(deps): update dependency @types/node to v20.17.19 (#9347)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.17.16` -> `20.17.19`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.16/20.17.19) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
f0302bbbf4
|
chore(deps): update dependency @babel/core to v7.26.9 (#9346)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@babel/core](https://babel.dev/docs/en/next/babel-core) ([source](https://redirect.github.com/babel/babel/tree/HEAD/packages/babel-core)) | [`7.26.8` -> `7.26.9`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.26.8/7.26.9) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>babel/babel (@​babel/core)</summary> ### [`v7.26.9`](https://redirect.github.com/babel/babel/blob/HEAD/CHANGELOG.md#v7269-2025-02-14) [Compare Source](https://redirect.github.com/babel/babel/compare/v7.26.8...v7.26.9) ##### 🐛 Bug Fix - `babel-types` - [#​17103](https://redirect.github.com/babel/babel/pull/17103) fix: Definition for `TSPropertySignature.kind` ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-generator`, `babel-types` - [#​17062](https://redirect.github.com/babel/babel/pull/17062) Print TypeScript optional/definite in ClassPrivateProperty ([@​jamiebuilds-signal](https://redirect.github.com/jamiebuilds-signal)) ##### 🏠 Internal - `babel-types` - [#​17130](https://redirect.github.com/babel/babel/pull/17130) Use `.ts` files with explicit reexports to solve name conflicts ([@​nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo)) - `babel-core` - [#​17127](https://redirect.github.com/babel/babel/pull/17127) Do not depend on `@types/gensync` in Babel 7 ([@​nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
cdb5c83e17
|
chore(deps): update dependency @swc/core to v1.10.16 (#9344)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.15` -> `1.10.16`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.15/1.10.16) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.16`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11016---2025-02-13) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.15...v1.10.16) ##### Bug Fixes - **(es/minifier)** Check assign target before merge assign cond ([#​10020](https://redirect.github.com/swc-project/swc/issues/10020)) ([6dab49a]( |
||
|
0c1340dc2c
|
chore(deps): update dependency @swc/core to v1.10.15 (#9333)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.12` -> `1.10.15`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.12/1.10.15) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.15`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11015---2025-02-08) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.14...v1.10.15) ##### Bug Fixes - **(es/fixer)** Wrap object tagged templates ([#​9991](https://redirect.github.com/swc-project/swc/issues/9991)) ([963c3a5]( |
||
|
8040a8f947
|
chore(deps): update dependency @babel/core to v7.26.8 (#9332)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@babel/core](https://babel.dev/docs/en/next/babel-core) ([source](https://redirect.github.com/babel/babel/tree/HEAD/packages/babel-core)) | [`7.26.7` -> `7.26.8`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.26.7/7.26.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>babel/babel (@​babel/core)</summary> ### [`v7.26.8`](https://redirect.github.com/babel/babel/releases/tag/v7.26.8) [Compare Source](https://redirect.github.com/babel/babel/compare/v7.26.7...v7.26.8) #### v7.26.8 (2025-02-08) ##### 🏠 Internal - `babel-preset-env` - [#​17097](https://redirect.github.com/babel/babel/pull/17097) Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
8d998c82d8
|
chore: bump unleash client version to beta 6.5 (#9305) | ||
|
6af2da4a37
|
fix(deps): update dependency nodemailer to v6.10.0 (#9260)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [nodemailer](https://nodemailer.com/) ([source](https://redirect.github.com/nodemailer/nodemailer)) | [`6.9.16` -> `6.10.0`](https://renovatebot.com/diffs/npm/nodemailer/6.9.16/6.10.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>nodemailer/nodemailer (nodemailer)</summary> ### [`v6.10.0`](https://redirect.github.com/nodemailer/nodemailer/blob/HEAD/CHANGELOG.md#6100-2025-01-23) [Compare Source](https://redirect.github.com/nodemailer/nodemailer/compare/v6.9.16...v6.10.0) ##### Features - **services:** add Seznam email service configuration ([#​1695](https://redirect.github.com/nodemailer/nodemailer/issues/1695)) ([d1ae0a8]( |
||
|
639fb40c48
|
chore(deps): update dependency @swc/core to v1.10.12 (#9236)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.11` -> `1.10.12`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.11/1.10.12) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.12`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11012---2025-01-29) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.11...v1.10.12) ##### Bug Fixes - **(es/parser)** Remove wrong check about `const` without init ([#​9970](https://redirect.github.com/swc-project/swc/issues/9970)) ([1b57261]( |
||
|
4d22d87a9c
|
chore(deps): update dependency semver to v7.7.0 (#9234)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [semver](https://redirect.github.com/npm/node-semver) | [`7.6.3` -> `7.7.0`](https://renovatebot.com/diffs/npm/semver/7.6.3/7.7.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>npm/node-semver (semver)</summary> ### [`v7.7.0`](https://redirect.github.com/npm/node-semver/blob/HEAD/CHANGELOG.md#770-2025-01-29) [Compare Source](https://redirect.github.com/npm/node-semver/compare/v7.6.3...v7.7.0) ##### Features - [`0864b3c`]( |
||
|
419d189ddc
|
chore(deps): update dependency lint-staged to v15.4.3 (#9216)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [lint-staged](https://redirect.github.com/lint-staged/lint-staged) | [`15.2.11` -> `15.4.3`](https://renovatebot.com/diffs/npm/lint-staged/15.2.11/15.4.3) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>lint-staged/lint-staged (lint-staged)</summary> ### [`v15.4.3`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#1543) [Compare Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.4.2...v15.4.3) ##### Patch Changes - [#​1512](https://redirect.github.com/lint-staged/lint-staged/pull/1512) [`cbfed1d`]( |
||
|
cc09b038d8
|
chore(deps): update dependency @cyclonedx/yarn-plugin-cyclonedx to v1.1.0 (#9214)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@cyclonedx/yarn-plugin-cyclonedx](https://redirect.github.com/CycloneDX/cyclonedx-node-yarn) | [`1.0.2` -> `1.1.0`](https://renovatebot.com/diffs/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.0.2/1.1.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>CycloneDX/cyclonedx-node-yarn (@​cyclonedx/yarn-plugin-cyclonedx)</summary> ### [`v1.1.0`](https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/blob/HEAD/HISTORY.md#110---2025-01-14) [Compare Source](https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/compare/v1.0.2...v1.1.0) - Added - Capability to gather license text evidences ([#​33] via [#​193])\ This feature can be controlled via CLI switch `--gather-license-texts`.\ This feature is experimental. This feature is disabled per default. - Dependencies - Upgraded runtime-dependency `@cyclonedx/cyclonedx-library@6.13.1`, was `@6.11.0` (via [#​206], [#​237])\ This was done to incorporate non-breaking upstream changes and fixes. - Upgraded runtime-dependency `normalize-package-data@6.0.2`, was `@6.0.1` (via [#​141])\ This was done to incorporate non-breaking upstream changes and fixes. - Removed unused runtime dependency `packageurl-js` (via [#​220]) - Build - Use *TypeScript* `v5.7.3` now, was `v5.5.3` (via [#​160], [#​178], [#​233], [#​212], [#​244]) - Use *[@​yarnpkg/builder](https://redirect.github.com/yarnpkg/builder)* `v4.2.0` now, was `v4.1.1` (via [#​164], [#​172]) [#​33]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/issues/33 [#​141]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/141 [#​160]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/160 [#​164]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/164 [#​172]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/172 [#​178]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/178 [#​193]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/193 [#​206]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/206 [#​212]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/212 [#​220]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/220 [#​233]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/233 [#​237]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/237 [#​244]: https://redirect.github.com/CycloneDX/cyclonedx-node-yarn/pull/244 \[#]: </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
f6c7b466a5
|
fix(deps): update dependency unleash-client to v6.4.2 (#9213)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [unleash-client](https://redirect.github.com/Unleash/unleash-client-node) | [`6.4.0` -> `6.4.2`](https://renovatebot.com/diffs/npm/unleash-client/6.4.0/6.4.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>Unleash/unleash-client-node (unleash-client)</summary> ### [`v6.4.2`](https://redirect.github.com/Unleash/unleash-client-node/releases/tag/v6.4.2) [Compare Source](https://redirect.github.com/Unleash/unleash-client-node/compare/v6.4.1...v6.4.2) #### What's Changed - test: make regexes less strict for unleash version by [@​thomasheartman](https://redirect.github.com/thomasheartman) in [https://github.com/Unleash/unleash-client-node/pull/698](https://redirect.github.com/Unleash/unleash-client-node/pull/698) - fix: use existing convention for sdk name by [@​kwasniew](https://redirect.github.com/kwasniew) in [https://github.com/Unleash/unleash-client-node/pull/699](https://redirect.github.com/Unleash/unleash-client-node/pull/699) **Full Changelog**: https://github.com/Unleash/unleash-client-node/compare/v6.4.1...v6.4.2 ### [`v6.4.1`](https://redirect.github.com/Unleash/unleash-client-node/releases/tag/v6.4.1) [Compare Source](https://redirect.github.com/Unleash/unleash-client-node/compare/v6.4.0...v6.4.1) #### What's Changed - fix: cross platform uuid by [@​kwasniew](https://redirect.github.com/kwasniew) in [https://github.com/Unleash/unleash-client-node/pull/696](https://redirect.github.com/Unleash/unleash-client-node/pull/696) - Meta: update release action to v2 by [@​thomasheartman](https://redirect.github.com/thomasheartman) in [https://github.com/Unleash/unleash-client-node/pull/697](https://redirect.github.com/Unleash/unleash-client-node/pull/697) **Full Changelog**: https://github.com/Unleash/unleash-client-node/compare/v6.4.0...v6.4.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
e5e7e2fdd3
|
chore(deps): update node.js to v20.18.2 (#9199)
This PR contains the following updates: | Package | Type | Update | Change | Pending | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---|---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | | patch | `20.18.1` -> `20.18.2` | | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [node](https://redirect.github.com/nodejs/node) | final | patch | `20.18.1-alpine` -> `20.18.2-alpine` | | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [node](https://redirect.github.com/nodejs/node) | stage | patch | `20.18.1-alpine` -> `20.18.2-alpine` | | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`20.17.14` -> `20.17.16`](https://renovatebot.com/diffs/npm/@types%2fnode/20.17.14/20.17.16) | `20.17.17` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v20.18.2`](https://redirect.github.com/nodejs/node/compare/v20.18.1...v20.18.2) [Compare Source](https://redirect.github.com/nodejs/node/compare/v20.18.1...v20.18.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
b238ddb2fe
|
chore(deps): update dependency @swc/core to v1.10.11 (#9198)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.9` -> `1.10.11`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.9/1.10.11) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.11`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#11011---2025-01-27) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.9...v1.10.11) ##### Bug Fixes - **(es)** Restore JSON config & Adjust feature renaming ([#​9967](https://redirect.github.com/swc-project/swc/issues/9967)) ([72e5455]( |
||
|
bf71d397a9
|
chore(deps): update dependency @babel/core to v7.26.7 (#9184)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@babel/core](https://babel.dev/docs/en/next/babel-core) ([source](https://redirect.github.com/babel/babel/tree/HEAD/packages/babel-core)) | [`7.26.0` -> `7.26.7`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.26.0/7.26.7) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>babel/babel (@​babel/core)</summary> ### [`v7.26.7`](https://redirect.github.com/babel/babel/blob/HEAD/CHANGELOG.md#v7267-2025-01-24) [Compare Source](https://redirect.github.com/babel/babel/compare/v7.26.0...v7.26.7) ##### 🐛 Bug Fix - `babel-helpers`, `babel-preset-env`, `babel-runtime-corejs3` - [#​17086](https://redirect.github.com/babel/babel/pull/17086) Make "object without properties" helpers ES6-compatible ([@​tquetano-netflix](https://redirect.github.com/tquetano-netflix)) - `babel-plugin-transform-typeof-symbol` - [#​17085](https://redirect.github.com/babel/babel/pull/17085) fix: Correctly handle `typeof` in arrow functions ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) - `babel-parser` - [#​17079](https://redirect.github.com/babel/babel/pull/17079) Respect `ranges` option in estree method value ([@​JLHwung](https://redirect.github.com/JLHwung)) - `babel-core` - [#​17052](https://redirect.github.com/babel/babel/pull/17052) Do not try to parse .ts configs as JSON if natively supported ([@​nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo)) - `babel-plugin-transform-typescript` - [#​17050](https://redirect.github.com/babel/babel/pull/17050) fix: correctly resolve references to non-constant enum members ([@​branchseer](https://redirect.github.com/branchseer)) - `babel-plugin-transform-typescript`, `babel-traverse`, `babel-types` - [#​17025](https://redirect.github.com/babel/babel/pull/17025) fix: Remove type-only `import x = y.z` ([@​liuxingbaoyu](https://redirect.github.com/liuxingbaoyu)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
2c6cb849ca
|
chore(deps): update dependency @types/pg to v8.11.11 (#9177)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/pg](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pg) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg)) | [`8.11.10` -> `8.11.11`](https://renovatebot.com/diffs/npm/@types%2fpg/8.11.10/8.11.11) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
473e1aee58
|
chore(deps): update dependency @swc/core to v1.10.9 (#9173)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.8` -> `1.10.9`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.8/1.10.9) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.9`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1109---2025-01-21) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.8...v1.10.9) ##### Bug Fixes - **(es/minifier)** Set param type to unknown ([#​9905](https://redirect.github.com/swc-project/swc/issues/9905)) ([09b3b37]( |
||
|
ddf8a02c1e
|
chore(deps): update dependency @types/type-is to v1.6.7 (#9159)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/type-is](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/type-is) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/type-is)) | [`1.6.6` -> `1.6.7`](https://renovatebot.com/diffs/npm/@types%2ftype-is/1.6.6/1.6.7) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined). 🚦 **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> |
||
|
b39adc1d54
|
chore(deps): update dependency @swc/core to v1.10.8 (#9153)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@swc/core](https://swc.rs) ([source](https://redirect.github.com/swc-project/swc)) | [`1.10.7` -> `1.10.8`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.10.7/1.10.8) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.10.8`](https://redirect.github.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1108---2025-01-19) [Compare Source](https://redirect.github.com/swc-project/swc/compare/v1.10.7...v1.10.8) ##### Bug Fixes - **(es/decorators)** Fix init order of `2022-03` impl ([#​9760](https://redirect.github.com/swc-project/swc/issues/9760)) ([751a310]( |