-
Notifications
You must be signed in to change notification settings - Fork 36
Comparing changes
Open a pull request
base repository: coveo/ui-kit
base: @coveo/atomic-react@3.2.17
head repository: coveo/ui-kit
compare: @coveo/atomic-react@3.2.18
- 18 commits
- 165 files changed
- 12 contributors
Commits on Feb 5, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 1c8d484 - Browse repository at this point
Copy the full SHA 1c8d484View commit details
Commits on Feb 6, 2025
-
docs(headless,headless-react): support OneTrust preferences in typedo…
…c sites (#4942) https://coveord.atlassian.net/browse/KIT-3946 I realized that the settings pannel in Typedoc sites relies on cookies. This means that technically, we need to support the privacy preferences set on docs.coveo.com. You can test my fix by opening this page: https://docs.coveo.com/en/headless/latest/reference/functions/Case_Assist.buildCaseAssistEngine.html After allowing or disallowing cookies from https://docs.coveo.com/en/0 (`Cookie preferences` modal accessible through upper right corner (...) button). Typedoc also uses a very large number of cookies for navigation purposes. I'll look into this with legal, but I think we'll be able to consider them strictly necessary, so we won't have to clear them as Typedoc populates them. Basically, if we erased the navigation cookies, Typedoc would never remember the navigation tree you opened prior to opening a new page.
Configuration menu - View commit details
-
Copy full SHA for c353e4d - Browse repository at this point
Copy the full SHA c353e4dView commit details -
feat(atomic): add button function for lit components (#4857)
Add Lit equivalent to `<Button>` functional element. Also replaced `button.tsx` to `stencil-button.tsx` which is responsible for all the file changes ## Usage ### With Stencil ```tsx return ( <Button style="primary" text={i18n.t('load-more-results')} part="load-more-results-button" class="my-2 p-3 font-bold" onClick={() => onClick()} ></Button> ); ``` ### With Lit ```ts return button({ props: { style: 'primary', text: i18n.t('load-more-results'), part: 'load-more-results-button', class: 'my-2 p-3 font-bold', onClick: () => onClick(), }, }); ``` ## Question Lit does not natively support spreading attributes as we do in .tsx files, which can lead to code repetition. To address this, we could use [lit-helpers](https://open-wc.org/docs/development/lit-helpers/#spread-directives) to avoid duplicating attributes, properties, and events while maintaining consistency in our patterns. WDYT
Configuration menu - View commit details
-
Copy full SHA for b64e226 - Browse repository at this point
Copy the full SHA b64e226View commit details
Commits on Feb 7, 2025
-
docs(headless-react): pagination typedoc reference (#4949)
https://coveord.atlassian.net/browse/KIT-3950 I noticed that we weren't documenting PaginationOptions. https://docs.coveo.com/en/headless-react/latest/reference/interfaces/SSR_Commerce.index.PaginationProps.html#options This PR fixes it: <img width="1541" alt="Screenshot 2025-02-06 at 4 14 03 PM" src="https://github.com/user-attachments/assets/c71ca770-c275-41d1-adeb-5ad43be3b308" /> <img width="1492" alt="Screenshot 2025-02-06 at 4 14 15 PM" src="https://github.com/user-attachments/assets/6c7c200b-252a-41b1-a7bf-76ba36bb9bf2" />
Configuration menu - View commit details
-
Copy full SHA for c9cae30 - Browse repository at this point
Copy the full SHA c9cae30View commit details -
chore: change codeowners for IPX (#4951)
Change code owners since the SVCINT team does not exist anymore https://coveord.atlassian.net/browse/SVCC-4716
Configuration menu - View commit details
-
Copy full SHA for c24fb59 - Browse repository at this point
Copy the full SHA c24fb59View commit details -
fix(atomic): search-box announces new suggestions even when count sta…
…ys the same (#4950) https://coveord.atlassian.net/browse/KIT-3893 The voice reader won't announce if it's value stays the same. This PR makes it so it's value always changes on every input change thus always rereading the amount of suggestions.
Configuration menu - View commit details
-
Copy full SHA for ff21fd0 - Browse repository at this point
Copy the full SHA ff21fd0View commit details
Commits on Feb 10, 2025
-
fix(headless commerce): handle action dispatched by renew access toke…
…n middleware in commerce configuration slice (#4947) https://coveord.atlassian.net/browse/KIT-3949 This is most likely what's causing issues in projects migrating from v2 to v3 that have a renewAccessToken function.
Configuration menu - View commit details
-
Copy full SHA for e1e1f71 - Browse repository at this point
Copy the full SHA e1e1f71View commit details -
fix(answerConfigurationId): remove internal tag (#4922)
https://coveord.atlassian.net/browse/SVCC-4631 As we are releasing the KnowledgeHub and the Answer manager. It is now legitimate to show this property on the Quantic an Atomic Generate Answer components.
Configuration menu - View commit details
-
Copy full SHA for c8dd23b - Browse repository at this point
Copy the full SHA c8dd23bView commit details -
test(quantic): Add tests for feedback modal edge cases in quanticSmar…
…tSnippet e2e tests (#4939) [SFINT-5933](https://coveord.atlassian.net/jira/software/c/projects/SFINT/boards/440/backlog?assignee=62e7739dec6b328032f09736&selectedIssue=SFINT-5933) ## IN THIS PR: - Added the following 2 edge cases tests in the smart snippet E2E tests in playwright: 1- when trying to open the feedback modal after executing a query that gave a new answer, should open the feedback modal 2- when trying to open the feedback modal after executing the same query, should not allow to open the feedback modal I check the presence of the explain why button which opens the feedback modal, this was the check in the Cypress ones. ## TESTS: <img width="797" alt="image" src="https://github.com/user-attachments/assets/ba10167c-c1e6-4f0d-a8f2-b292bd82c113" /> [SFINT-5933]: https://coveord.atlassian.net/browse/SFINT-5933?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
Configuration menu - View commit details
-
Copy full SHA for 08648b4 - Browse repository at this point
Copy the full SHA 08648b4View commit details -
docs(headless-react): more facet docs (#4952)
https://coveord.atlassian.net/browse/DOC-16501 We were missing documentation for location facets and for facet attributes coming from CoreCommerceFacets. E.g.,  vs  and 
Configuration menu - View commit details
-
Copy full SHA for fa6a88d - Browse repository at this point
Copy the full SHA fa6a88dView commit details
Commits on Feb 11, 2025
-
test(quantic): SFINT-5832 Sort E2E tests migrate from Cypress to Play…
…wright (#4777) https://coveord.atlassian.net/browse/SFINT-5832 **IN THIS PR:** - Added Playwright E2E tests for the quantic-sort component **UNIT TESTS:** - No need, as UTs already there **E2E PLAYWRIGHT TESTS:** - Playwright for Sort component --------- Co-authored-by: mmitiche <mmitiche@coveo.com> Co-authored-by: Etienne Rocheleau <erocheleau@coveo.com> Co-authored-by: Simon Milord <simon.milord@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9c846ba - Browse repository at this point
Copy the full SHA 9c846baView commit details -
feat(atomic): add heading function for lit components (#4861)
* Added `heading` function to replace the `<Heading>` functional component. * Renamed `hidden.tsx` function component to `stencil-hidden.tsx` (to be consistent) ## Usage ### with Stencil ```.tsx <Heading level={level} class="truncate"> {label} </Heading> ``` ### with Lit ```ts html`${heading( {level, class: "truncate"}, label )}` ``` ## Notes Using [`unsafeStatic`](https://lit.dev/docs/templates/expressions/#non-literal-statics) since we need to interpolate non-literal statics. https://coveord.atlassian.net/browse/KIT-3833 --------- Co-authored-by: Frederic Beaudoin <fbeaudoin@coveo.com>
Configuration menu - View commit details
-
Copy full SHA for 33fae2f - Browse repository at this point
Copy the full SHA 33fae2fView commit details -
chore(atomic): move
CommerceBindings
type to .ts file (#4937)Just moving type from a .tsx to a .ts file https://coveord.atlassian.net/browse/KIT-3941 --------- Co-authored-by: GitHub Actions Bot <>
Configuration menu - View commit details
-
Copy full SHA for 808f891 - Browse repository at this point
Copy the full SHA 808f891View commit details -
chore(deps): update angular to v18.2.14 j:kit-282 (#4955)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@angular-devkit/build-angular](https://redirect.github.com/angular/angular-cli) | [`18.2.12` -> `18.2.14`](https://renovatebot.com/diffs/npm/@angular-devkit%2fbuild-angular/18.2.12/18.2.14) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@angular/build](https://redirect.github.com/angular/angular-cli) | [`18.2.12` -> `18.2.14`](https://renovatebot.com/diffs/npm/@angular%2fbuild/18.2.12/18.2.14) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [@angular/cli](https://redirect.github.com/angular/angular-cli) | [`18.2.12` -> `18.2.14`](https://renovatebot.com/diffs/npm/@angular%2fcli/18.2.12/18.2.14) | [](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>angular/angular-cli (@​angular-devkit/build-angular)</summary> ### [`v18.2.14`](https://redirect.github.com/angular/angular-cli/blob/HEAD/CHANGELOG.md#18214-2025-01-29) [Compare Source](https://redirect.github.com/angular/angular-cli/compare/18.2.13...18.2.14) ##### [@​angular-devkit/build-angular](https://redirect.github.com/angular-devkit/build-angular) | Commit | Type | Description | | --------------------------------------------------------------------------------------------------- | ---- | ------------------------------- | | [9d34d28ec](https://redirect.github.com/angular/angular-cli/commit/9d34d28ec2965e1b9753556b2721d25ab05c655b) | fix | remove unused `vite` dependency | <!-- CHANGELOG SPLIT MARKER --> ### [`v18.2.13`](https://redirect.github.com/angular/angular-cli/blob/HEAD/CHANGELOG.md#18213-2025-01-29) [Compare Source](https://redirect.github.com/angular/angular-cli/compare/18.2.12...18.2.13) ##### [@​angular/cli](https://redirect.github.com/angular/cli) | Commit | Type | Description | | --------------------------------------------------------------------------------------------------- | ---- | --------------------------------------------------------------------- | | [deeaf1883](https://redirect.github.com/angular/angular-cli/commit/deeaf18836efddfa1ee56a25e44944ba444d35ac) | fix | correctly select package versions in descending order during `ng add` | ##### [@​angular/build](https://redirect.github.com/angular/build) | Commit | Type | Description | | --------------------------------------------------------------------------------------------------- | ---- | ----------------------------- | | [fdddf2c08](https://redirect.github.com/angular/angular-cli/commit/fdddf2c0844081667a09f2ffe0b16f77384959b2) | fix | update vite to version 5.4.14 | <!-- CHANGELOG SPLIT MARKER --> </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto. 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 25887aa - Browse repository at this point
Copy the full SHA 25887aaView commit details -
chore(deps): update vite to v2.1.9 j:kit-282 (#4956)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@vitest/browser](https://redirect.github.com/vitest-dev/vitest/tree/main/packages/browser#readme) ([source](https://redirect.github.com/vitest-dev/vitest/tree/HEAD/packages/browser)) | [`2.1.8` -> `2.1.9`](https://renovatebot.com/diffs/npm/@vitest%2fbrowser/2.1.8/2.1.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/) | | [vitest](https://redirect.github.com/vitest-dev/vitest) ([source](https://redirect.github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)) | [`2.1.8` -> `2.1.9`](https://renovatebot.com/diffs/npm/vitest/2.1.8/2.1.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>vitest-dev/vitest (@​vitest/browser)</summary> ### [`v2.1.9`](https://redirect.github.com/vitest-dev/vitest/releases/tag/v2.1.9) [Compare Source](https://redirect.github.com/vitest-dev/vitest/compare/v2.1.8...v2.1.9) This release includes security patches for: - [Browser mode serves arbitrary files | CVE-2025-24963](https://redirect.github.com/vitest-dev/vitest/security/advisories/GHSA-8gvc-j273-4wm5) - [Remote Code Execution when accessing a malicious website while Vitest API server is listening | CVE-2025-24964](https://redirect.github.com/vitest-dev/vitest/security/advisories/GHSA-9crc-q9x8-hgqq) ##### 🐞 Bug Fixes - backport [https://github.com/vitest-dev/vitest/issues/7317](https://redirect.github.com/vitest-dev/vitest/issues/7317) to v2 - by [@​hi-ogawa](https://redirect.github.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/pull/7318](https://redirect.github.com/vitest-dev/vitest/pull/7318) - (backport [#​7340](https://redirect.github.com/vitest-dev/vitest/issues/7340) to v2) restrict served files from `/__screenshot-error` - by [@​hi-ogawa](https://redirect.github.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/pull/7343](https://redirect.github.com/vitest-dev/vitest/pull/7343) ##### [View changes on GitHub](https://redirect.github.com/vitest-dev/vitest/compare/v2.1.8...v2.1.9) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto. 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ab2acbd - Browse repository at this point
Copy the full SHA ab2acbdView commit details -
chore(deps): update dependency ora to v8 j:kit-282 (#4958)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [ora](https://redirect.github.com/sindresorhus/ora) | [`5.3.0` -> `8.2.0`](https://renovatebot.com/diffs/npm/ora/5.3.0/8.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>sindresorhus/ora (ora)</summary> ### [`v8.2.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.2.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v8.1.1...v8.2.0) - Add support for `boolean` value for `color` option ([#​244](https://redirect.github.com/sindresorhus/ora/issues/244)) [`fe951e5`](https://redirect.github.com/sindresorhus/ora/commit/fe951e5) *** ### [`v8.1.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.1.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v8.1.0...v8.1.1) - Fix animation speed when update methods are called very often [`818ca34`](https://redirect.github.com/sindresorhus/ora/commit/818ca34) - Fix handling of symbol being empty string in `stopAndPersist()` ([#​243](https://redirect.github.com/sindresorhus/ora/issues/243)) [`5117dfb`](https://redirect.github.com/sindresorhus/ora/commit/5117dfb) ### [`v8.1.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.1.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v8.0.1...v8.1.0) - Update dependencies [`fb0fced`](https://redirect.github.com/sindresorhus/ora/commit/fb0fced) ### [`v8.0.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.0.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v8.0.0...v8.0.1) - Fix the process not exiting [`89a1f31`](https://redirect.github.com/sindresorhus/ora/commit/89a1f31) ### [`v8.0.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v8.0.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v7.0.1...v8.0.0) ##### Breaking - Require Node.js 18 [`675590f`](https://redirect.github.com/sindresorhus/ora/commit/675590f) ##### Improvements - Update dependencies [`675590f`](https://redirect.github.com/sindresorhus/ora/commit/675590f) ### [`v7.0.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v7.0.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v7.0.0...v7.0.1) - Fix missing dependency ([#​228](https://redirect.github.com/sindresorhus/ora/issues/228)) [`1dc1ece`](https://redirect.github.com/sindresorhus/ora/commit/1dc1ece) ### [`v7.0.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v7.0.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.3.1...v7.0.0) ##### Breaking - Require Node.js 16 [`0e96acd`](https://redirect.github.com/sindresorhus/ora/commit/0e96acd) ### [`v6.3.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.3.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.3.0...v6.3.1) - Fix Node.js 12 compatibility [`4b1c2be`](https://redirect.github.com/sindresorhus/ora/commit/4b1c2be) ### [`v6.3.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.3.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.2.0...v6.3.0) - Add [`suffixText`](https://redirect.github.com/sindresorhus/ora#suffixtext) option ([#​223](https://redirect.github.com/sindresorhus/ora/issues/223)) [`2378eaf`](https://redirect.github.com/sindresorhus/ora/commit/2378eaf) ### [`v6.2.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.2.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.1.2...v6.2.0) - Add `spinners` export to be able to access all available spinners ([#​222](https://redirect.github.com/sindresorhus/ora/issues/222)) [`f2ac111`](https://redirect.github.com/sindresorhus/ora/commit/f2ac111) ### [`v6.1.2`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.1.2) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.1.1...v6.1.2) - Revert "Fix preserving stdin's pause state ([#​210](https://redirect.github.com/sindresorhus/ora/issues/210))" [`f4e03ea`](https://redirect.github.com/sindresorhus/ora/commit/f4e03ea) - Reason: [https://github.com/sindresorhus/ora/issues/211](https://redirect.github.com/sindresorhus/ora/issues/211) ### [`v6.1.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.1.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.1.0...v6.1.1) - Fix preserving stdin's pause state ([#​210](https://redirect.github.com/sindresorhus/ora/issues/210)) [`77ccc1e`](https://redirect.github.com/sindresorhus/ora/commit/77ccc1e) ### [`v6.1.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.1.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.0.1...v6.1.0) - Expose the spinner `interval` as a getter [`447812b`](https://redirect.github.com/sindresorhus/ora/commit/447812b) - Internal refactoring. If you use any undocumented properties, this may break for you. ### [`v6.0.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.0.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v6.0.0...v6.0.1) - Upgrade dependencies [`26ba606`](https://redirect.github.com/sindresorhus/ora/commit/26ba606) ### [`v6.0.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v6.0.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v5.4.1...v6.0.0) ##### Breaking - Require Node.js 12.20 [`ede1a54`](https://redirect.github.com/sindresorhus/ora/commit/ede1a54) - This package is now pure ESM. Please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c). - `ora.promise` is now a named import called `oraPromise` ([#​181](https://redirect.github.com/sindresorhus/ora/issues/181)) [`9c01990`](https://redirect.github.com/sindresorhus/ora/commit/9c01990) - `import {oraPromise} from 'ora';` - `oraPromise` now returns the given promise instead of `this` ([#​181](https://redirect.github.com/sindresorhus/ora/issues/181)) [`9c01990`](https://redirect.github.com/sindresorhus/ora/commit/9c01990) - This lets you await it directly, which is more useful than chaining. ##### Improvements - Improve performance of the `.clear()` method ([#​182](https://redirect.github.com/sindresorhus/ora/issues/182)) [`d51c971`](https://redirect.github.com/sindresorhus/ora/commit/d51c971) ### [`v5.4.1`](https://redirect.github.com/sindresorhus/ora/releases/tag/v5.4.1) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v5.4.0...v5.4.1) - Fix: Don't allow `default` as a spinner ([#​175](https://redirect.github.com/sindresorhus/ora/issues/175)) [`659f839`](https://redirect.github.com/sindresorhus/ora/commit/659f839) ### [`v5.4.0`](https://redirect.github.com/sindresorhus/ora/releases/tag/v5.4.0) [Compare Source](https://redirect.github.com/sindresorhus/ora/compare/v5.3.0...v5.4.0) - Improve detection for terminals supporting Unicode [`c884e0d`](https://redirect.github.com/sindresorhus/ora/commit/c884e0d) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto. 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4281b68 - Browse repository at this point
Copy the full SHA 4281b68View commit details -
fix(deps): update all dependencies j:kit-282 (#4957)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@commitlint/config-conventional](https://commitlint.js.org/) ([source](https://redirect.github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional)) | [`19.6.0` -> `19.7.1`](https://renovatebot.com/diffs/npm/@commitlint%2fconfig-conventional/19.6.0/19.7.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/) | | [@commitlint/lint](https://commitlint.js.org/) ([source](https://redirect.github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/lint)) | [`19.6.0` -> `19.7.1`](https://renovatebot.com/diffs/npm/@commitlint%2flint/19.6.0/19.7.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/) | | [@coveo/relay-event-types](https://redirect.github.com/coveo/analytics_schema) | [`13.1.0` -> `13.1.3`](https://renovatebot.com/diffs/npm/@coveo%2frelay-event-types/13.1.0/13.1.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/) | | [@microsoft/api-extractor](https://api-extractor.com) ([source](https://redirect.github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor)) | [`7.49.1` -> `7.49.2`](https://renovatebot.com/diffs/npm/@microsoft%2fapi-extractor/7.49.1/7.49.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/) | | [@microsoft/api-extractor-model](https://api-extractor.com) ([source](https://redirect.github.com/microsoft/rushstack/tree/HEAD/libraries/api-extractor-model)) | [`7.30.2` -> `7.30.3`](https://renovatebot.com/diffs/npm/@microsoft%2fapi-extractor-model/7.30.2/7.30.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/) | | [@octokit/graphql](https://redirect.github.com/octokit/graphql.js) | [`8.1.2` -> `8.2.0`](https://renovatebot.com/diffs/npm/@octokit%2fgraphql/8.1.2/8.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/) | | [@playwright/test](https://playwright.dev) ([source](https://redirect.github.com/microsoft/playwright)) | [`1.50.0` -> `1.50.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.50.0/1.50.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/) | | [@salesforce-ux/design-system](https://lightningdesignsystem.com) ([source](https://redirect.github.com/salesforce-ux/design-system)) | [`2.25.6` -> `2.26.1`](https://renovatebot.com/diffs/npm/@salesforce-ux%2fdesign-system/2.25.6/2.26.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/) | | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`22.12.0` -> `22.13.1`](https://renovatebot.com/diffs/npm/@types%2fnode/22.12.0/22.13.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/) | | [cypress-axe](https://redirect.github.com/component-driven/cypress-axe) | [`1.5.0` -> `1.6.0`](https://renovatebot.com/diffs/npm/cypress-axe/1.5.0/1.6.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/) | | [dompurify](https://redirect.github.com/cure53/DOMPurify) | [`3.2.3` -> `3.2.4`](https://renovatebot.com/diffs/npm/dompurify/3.2.3/3.2.4) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [npm](https://docs.npmjs.com/) ([source](https://redirect.github.com/npm/cli)) | [`11.0.0` -> `11.1.0`](https://renovatebot.com/diffs/npm/npm/11.0.0/11.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/) | | [playwright](https://playwright.dev) ([source](https://redirect.github.com/microsoft/playwright)) | [`1.50.0` -> `1.50.1`](https://renovatebot.com/diffs/npm/playwright/1.50.0/1.50.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/) | | prettier-plugin-apex | [`2.2.2` -> `2.2.3`](https://renovatebot.com/diffs/npm/prettier-plugin-apex/2.2.2/2.2.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/) | | [rollup](https://rollupjs.org/) ([source](https://redirect.github.com/rollup/rollup)) | [`4.31.0` -> `4.34.2`](https://renovatebot.com/diffs/npm/rollup/4.32.1/4.34.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/) | | [semver](https://redirect.github.com/npm/node-semver) | [`7.6.3` -> `7.7.1`](https://renovatebot.com/diffs/npm/semver/7.6.3/7.7.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/) | | [zone.js](https://redirect.github.com/angular/angular) ([source](https://redirect.github.com/angular/angular/tree/HEAD/packages/zone.js), [changelog](https://redirect.github.com/angular/angular/blob/master/packages/zone.js/CHANGELOG.md)) | [`0.14.10` -> `0.15.0`](https://renovatebot.com/diffs/npm/zone.js/0.14.10/0.15.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>conventional-changelog/commitlint (@​commitlint/config-conventional)</summary> ### [`v19.7.1`](https://redirect.github.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/config-conventional/CHANGELOG.md#1971-2025-02-02) [Compare Source](https://redirect.github.com/conventional-changelog/commitlint/compare/v19.6.0...v19.7.1) **Note:** Version bump only for package [@​commitlint/config-conventional](https://redirect.github.com/commitlint/config-conventional) </details> <details> <summary>conventional-changelog/commitlint (@​commitlint/lint)</summary> ### [`v19.7.1`](https://redirect.github.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/lint/CHANGELOG.md#1971-2025-02-02) [Compare Source](https://redirect.github.com/conventional-changelog/commitlint/compare/v19.6.0...v19.7.1) **Note:** Version bump only for package [@​commitlint/lint](https://redirect.github.com/commitlint/lint) </details> <details> <summary>coveo/analytics_schema (@​coveo/relay-event-types)</summary> ### [`v13.1.3`](https://redirect.github.com/coveo/analytics_schema/compare/f85559f18412b0d23358a3e6a27416c0ddf0beaa...eb45df83d2ed9a2ee163936be958548a8b96b57c) [Compare Source](https://redirect.github.com/coveo/analytics_schema/compare/f85559f18412b0d23358a3e6a27416c0ddf0beaa...eb45df83d2ed9a2ee163936be958548a8b96b57c) ### [`v13.1.2`](https://redirect.github.com/coveo/analytics_schema/compare/917f50bb27a930c7cadff20b26b12c52890074b9...f85559f18412b0d23358a3e6a27416c0ddf0beaa) [Compare Source](https://redirect.github.com/coveo/analytics_schema/compare/917f50bb27a930c7cadff20b26b12c52890074b9...f85559f18412b0d23358a3e6a27416c0ddf0beaa) ### [`v13.1.1`](https://redirect.github.com/coveo/analytics_schema/compare/ff4907218ff9cc387ea6d32939076002cc65f14f...917f50bb27a930c7cadff20b26b12c52890074b9) [Compare Source](https://redirect.github.com/coveo/analytics_schema/compare/ff4907218ff9cc387ea6d32939076002cc65f14f...917f50bb27a930c7cadff20b26b12c52890074b9) </details> <details> <summary>microsoft/rushstack (@​microsoft/api-extractor)</summary> ### [`v7.49.2`](https://redirect.github.com/microsoft/rushstack/blob/HEAD/apps/api-extractor/CHANGELOG.md#7492) [Compare Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.49.1...@microsoft/api-extractor_v7.49.2) Thu, 30 Jan 2025 01:11:42 GMT *Version update only* </details> <details> <summary>microsoft/rushstack (@​microsoft/api-extractor-model)</summary> ### [`v7.30.3`](https://redirect.github.com/microsoft/rushstack/blob/HEAD/libraries/api-extractor-model/CHANGELOG.md#7303) [Compare Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor-model_v7.30.2...@microsoft/api-extractor-model_v7.30.3) Thu, 30 Jan 2025 01:11:42 GMT *Version update only* </details> <details> <summary>octokit/graphql.js (@​octokit/graphql)</summary> ### [`v8.2.0`](https://redirect.github.com/octokit/graphql.js/releases/tag/v8.2.0) [Compare Source](https://redirect.github.com/octokit/graphql.js/compare/v8.1.2...v8.2.0) ##### Features - allow users to specify `operationName` in multi-operation queries ([#​629](https://redirect.github.com/octokit/graphql.js/issues/629)) ([9a1787e](https://redirect.github.com/octokit/graphql.js/commit/9a1787e98d9b3c26ce266109ca298fac4b8e0d6f)) </details> <details> <summary>microsoft/playwright (@​playwright/test)</summary> ### [`v1.50.1`](https://redirect.github.com/microsoft/playwright/releases/tag/v1.50.1) [Compare Source](https://redirect.github.com/microsoft/playwright/compare/v1.50.0...v1.50.1) ##### Highlights [https://github.com/microsoft/playwright/issues/34483](https://redirect.github.com/microsoft/playwright/issues/34483) - \[Feature]: single aria snapshot for different engines/browsers[https://github.com/microsoft/playwright/issues/34497](https://redirect.github.com/microsoft/playwright/issues/34497)7 - \[Bug]: Firefox not handling keepalive: true fetch request[https://github.com/microsoft/playwright/issues/34504](https://redirect.github.com/microsoft/playwright/issues/34504)04 - \[Bug]: update snapshots not creating good dif[https://github.com/microsoft/playwright/issues/34507](https://redirect.github.com/microsoft/playwright/issues/34507)507 - \[Bug]: snapshotPathTemplate doesnt work when multiple proje[https://github.com/microsoft/playwright/issues/34462](https://redirect.github.com/microsoft/playwright/issues/34462)4462 - \[Bug]: updateSnapshots "changed" throws an error ##### Browser Versions - Chromium 133.0.6943.16 - Mozilla Firefox 134.0 - WebKit 18.2 This version was also tested against the following stable channels: - Google Chrome 132 - Microsoft Edge 132 </details> <details> <summary>salesforce-ux/design-system (@​salesforce-ux/design-system)</summary> ### [`v2.26.1`](https://redirect.github.com/salesforce-ux/design-system/compare/v2.26.0...81d32d8586e4a2697fcd1d2139c01e96e4323117) [Compare Source](https://redirect.github.com/salesforce-ux/design-system/compare/v2.26.0...81d32d8586e4a2697fcd1d2139c01e96e4323117) ### [`v2.26.0`](https://redirect.github.com/salesforce-ux/design-system/blob/HEAD/RELEASENOTES.md#Release-2260---January-16-2025) [Compare Source](https://redirect.github.com/salesforce-ux/design-system/compare/v2.25.6...v2.26.0) - Update icons to `v10.11.1` - Renamed summary_usage to usage_summary - Renamed summary_liable to usage_billing_period_item - Renamed usage_rateable_summary to usage_ratable_summary - Update icons to `v10.11.0` - Standard Set: - Added ad_event_action - Added ad_event_cause - Added ad_event_effect - Added ad_event_factor - Added ad_event_info - Added ad_event_outcome - Added ad_event_party - Added adverse_event - Added billing - Added calculated_dimension - Added calculated_measure - Added disease_defintion_criteria - Added disese_investigation - Added disease_outbreak - Added edit_form - Added enrollee_status - Added eval_result - Added event_ext - Added life_sciences - Added map_line_item - Added medication_administration - Added member_period - Updated metric - Added patient_service - Added procedure_output_resolution - Added program_detail - Added program_site - Added program_status - Added prospect - Added replace - Added reset_password - Added send_log - Added study - Added study_candidate - Added study_related - Added sub_metric - Added summary_liable - Added summary_usage - Added table - Added transaction_usage_entitlement - Added usage_entitlement_account - Added usage_entitlement_bucket - Added usage_entitlement_entry - Added usage_ratable_summary - Utility Set: - Added agent_astro - Added applied_amount - Added billing - Added border_all - Added border_bottom - Added border_left - Added border_right - Added border_top - Added co_ins_infusion - Added co_insurance - Added copay - Added copay_infusion - Added coverage_type - Added deductible - Added deductible_met - Added deny_access_field - Added deny_access_object - Added deny_access_row - Added donut_chart - Added emoji_above_average.svg - Added emoji_average.svg - Added emoji_bad.svg - Added emoji_below_average.svg - Added emoji_excellent.svg - Added emoji_good.svg - Added emoji_outstanding.svg - Added emoji_very_bad.svg - Added emoji_very_good.svg - Added emoji_worst.svg - Added expense - Added expense_report - Added field_currency_calc - Added field_date_calc - Added field_date_time_calc - Added field_dimension_calc - Added field_measure_calc - Added list_email - Added lt_max - Added lt_remaining - Added mask_field - Added messaging_conversation - Added oop_annual - Added oop_applied - Added oop_max - Added oop_total - Added partner_fund_request - Added paused_call - Added people_score - Added policy - Added pre_auth - Added pro_network - Added regenerate - Added response_date - Added sales_channel - Added status_code - Added suggested_for_you - Updated textbox - Updated the deprecated hooks. This process was to update the deprecated component level hooks to latest ones. - We have added the latest hooks at the front and kept all the previously existed ones as fallback value to support backward compatibility - The components updated are - accordion, alert, avatar, breadcrumbs, buttons, card, input, modals, pills, tabs, textarea, toast, tooltips. </details> <details> <summary>component-driven/cypress-axe (cypress-axe)</summary> ### [`v1.6.0`](https://redirect.github.com/component-driven/cypress-axe/releases/tag/v1.6.0) [Compare Source](https://redirect.github.com/component-driven/cypress-axe/compare/v1.5.0...v1.6.0) ##### Features - add Cypress 14 as a peer dependency ([#​180](https://redirect.github.com/component-driven/cypress-axe/issues/180)) ([f47688d](https://redirect.github.com/component-driven/cypress-axe/commit/f47688d11525f248b3fab0765463d4ba8a7a900f)) </details> <details> <summary>cure53/DOMPurify (dompurify)</summary> ### [`v3.2.4`](https://redirect.github.com/cure53/DOMPurify/releases/tag/3.2.4): DOMPurify 3.2.4 [Compare Source](https://redirect.github.com/cure53/DOMPurify/compare/3.2.3...3.2.4) - Fixed a conditional and config dependent mXSS-style [bypass](https://nsysean.github.io/posts/dompurify-323-bypass/) reported by [@​nsysean](https://redirect.github.com/nsysean) - Added a new feature to allow specific hook removal, thanks [@​davecardwell](https://redirect.github.com/davecardwell) - Added *purify.js* and *purify.min.js* to exports, thanks [@​Aetherinox](https://redirect.github.com/Aetherinox) - Added better logic in case no window object is president, thanks [@​yehuya](https://redirect.github.com/yehuya) - Updated some dependencies called out by dependabot - Updated license files etc to show the correct year </details> <details> <summary>npm/cli (npm)</summary> ### [`v11.1.0`](https://redirect.github.com/npm/cli/blob/HEAD/CHANGELOG.md#1110-2025-01-29) [Compare Source](https://redirect.github.com/npm/cli/compare/v11.0.0...v11.1.0) ##### Features - [`7f6c997`](https://redirect.github.com/npm/cli/commit/7f6c9973dc9a4dfebd76e52e060a9d8496b8bd98) [#​8009](https://redirect.github.com/npm/cli/pull/8009) add dry-run to deprecate/undeprecate commands ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`1764a37`](https://redirect.github.com/npm/cli/commit/1764a37f1913b6a0811a85d89e029fc1dc79da54) [#​8009](https://redirect.github.com/npm/cli/pull/8009) add npm undeprecate command ([@​wraithgar](https://redirect.github.com/wraithgar)) ##### Bug Fixes - [`31455b2`](https://redirect.github.com/npm/cli/commit/31455b2e177b721292f3382726e3f5f3f2963b1d) [#​8054](https://redirect.github.com/npm/cli/pull/8054) publish: honor force for no dist tag and registry version check ([#​8054](https://redirect.github.com/npm/cli/issues/8054)) ([@​reggi](https://redirect.github.com/reggi)) - [`dc31c1b`](https://redirect.github.com/npm/cli/commit/dc31c1bdc6658ab69554adcf2988ee99a615c409) [#​8038](https://redirect.github.com/npm/cli/pull/8038) remove max-len linting bypasses ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`8a911ff`](https://redirect.github.com/npm/cli/commit/8a911ff895967678aa786595db3418fc28e6966a) [#​8038](https://redirect.github.com/npm/cli/pull/8038) publish: disregard deprecated versions when calculating highest version ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`7f72944`](https://redirect.github.com/npm/cli/commit/7f72944e43f009cf4d55ff4fe24c459e07f588fd) [#​8038](https://redirect.github.com/npm/cli/pull/8038) publish: accept publishConfig.tag to override highes semver check ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`ab9ddc0`](https://redirect.github.com/npm/cli/commit/ab9ddc0413374fbf4879da535f82e03bc4e62cf3) [#​7992](https://redirect.github.com/npm/cli/pull/7992) sbom: deduplicate sbom dependencies ([#​7992](https://redirect.github.com/npm/cli/issues/7992)) ([@​bdehamer](https://redirect.github.com/bdehamer)) - [`f7da341`](https://redirect.github.com/npm/cli/commit/f7da341322c2f860156e8144b208583596504479) [#​7980](https://redirect.github.com/npm/cli/pull/7980) search: properly display multiple search terms ([#​7980](https://redirect.github.com/npm/cli/issues/7980)) ([@​wraithgar](https://redirect.github.com/wraithgar)) ##### Documentation - [`3644e79`](https://redirect.github.com/npm/cli/commit/3644e79a73e511bc54d857bc2026b071fe18a6fe) [#​8055](https://redirect.github.com/npm/cli/pull/8055) update readme for Node.js versions, remove badges ([#​8055](https://redirect.github.com/npm/cli/issues/8055)) ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`f1af61f`](https://redirect.github.com/npm/cli/commit/f1af61f917e58a0a45d2b15d1e5600988b2c824f) [#​8041](https://redirect.github.com/npm/cli/pull/8041) fix typos in "package-json" ([#​8041](https://redirect.github.com/npm/cli/issues/8041)) ([@​maxkoryukov](https://redirect.github.com/maxkoryukov)) - [`e90c6fe`](https://redirect.github.com/npm/cli/commit/e90c6feeacdf9ad010d4d73b65d7dd7d3b86efe2) [#​8051](https://redirect.github.com/npm/cli/pull/8051) depth flag default value ([#​8051](https://redirect.github.com/npm/cli/issues/8051)) ([@​milaninfy](https://redirect.github.com/milaninfy)) - [`866b5ee`](https://redirect.github.com/npm/cli/commit/866b5ee3ae5ed508ecbe832d01f5ebd6b00f6789) [#​8030](https://redirect.github.com/npm/cli/pull/8030) safer documentation urls, repos, packages ([#​8030](https://redirect.github.com/npm/cli/issues/8030)) ([@​reggi](https://redirect.github.com/reggi)) ##### Dependencies - [`7ddfbad`](https://redirect.github.com/npm/cli/commit/7ddfbadd1d51d07e68afbe1b91a36106d98c7bea) [#​8053](https://redirect.github.com/npm/cli/pull/8053) `@npmcli/package-json@6.1.1` - [`9473a86`](https://redirect.github.com/npm/cli/commit/9473a8638257297c420136009de567c131d2f299) [#​8053](https://redirect.github.com/npm/cli/pull/8053) `spdx-license-ids@3.0.21` - [`a65e5ce`](https://redirect.github.com/npm/cli/commit/a65e5ceb15c4aad6bde1ffdbee7da6f685caf81e) [#​8053](https://redirect.github.com/npm/cli/pull/8053) `@sigstore/protobuf-specs@0.3.3` - [`215ebe4`](https://redirect.github.com/npm/cli/commit/215ebe4d8f6c7f30d4b6a68fa11a3372c132929e) [#​8053](https://redirect.github.com/npm/cli/pull/8053) `chalk@5.4.1` ##### Chores - [`61f00e3`](https://redirect.github.com/npm/cli/commit/61f00e3c23211d37c7980ebd6d1cf8d1dac49f18) [#​8069](https://redirect.github.com/npm/cli/pull/8069) splits out smoke-tests from publish-dryrun tests ([#​8069](https://redirect.github.com/npm/cli/issues/8069)) ([@​reggi](https://redirect.github.com/reggi)) - [`6d0f46e`](https://redirect.github.com/npm/cli/commit/6d0f46e67e9673e8a2dc6edb92144a73f853950c) [#​8058](https://redirect.github.com/npm/cli/pull/8058) stop publish smoke from check git clean ([#​8058](https://redirect.github.com/npm/cli/issues/8058)) ([@​reggi](https://redirect.github.com/reggi)) - [`9281ebf`](https://redirect.github.com/npm/cli/commit/9281ebf8e428d40450ad75ba61bc6f040b3bf896) [#​8057](https://redirect.github.com/npm/cli/pull/8057) fix smoke tests prerelease needs separate string args ([#​8057](https://redirect.github.com/npm/cli/issues/8057)) ([@​reggi](https://redirect.github.com/reggi)) - [`aa202e9`](https://redirect.github.com/npm/cli/commit/aa202e9dac2f927bedcaaed4db0eef7b3415fc68) [#​8056](https://redirect.github.com/npm/cli/pull/8056) smoke tests using a preid ([#​8056](https://redirect.github.com/npm/cli/issues/8056)) ([@​reggi](https://redirect.github.com/reggi)) - [`18e0449`](https://redirect.github.com/npm/cli/commit/18e0449ae41703a7980cee73bae69521db6fa53e) [#​8053](https://redirect.github.com/npm/cli/pull/8053) dev dependency updates ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`859a71c`](https://redirect.github.com/npm/cli/commit/859a71c59ea5f91f21a8410db46585a2fc0a8126) [#​8052](https://redirect.github.com/npm/cli/pull/8052) update node versions for release integration tests ([#​8052](https://redirect.github.com/npm/cli/issues/8052)) ([@​wraithgar](https://redirect.github.com/wraithgar)) - [`7e7961d`](https://redirect.github.com/npm/cli/commit/7e7961d8936e277f3dbc8e44f9e7b07daaeb36ca) [#​8038](https://redirect.github.com/npm/cli/pull/8038) bump [@​npmcli/eslint-config](https://redirect.github.com/npmcli/eslint-config) to 5.1.0 ([@​wraithgar](https://redirect.github.com/wraithgar)) - [workspace](https://redirect.github.com/npm/cli/releases/tag/config-v10.0.1): `@npmcli/config@10.0.1` </details> <details> <summary>rollup/rollup (rollup)</summary> ### [`v4.34.2`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4342) [Compare Source](https://redirect.github.com/rollup/rollup/compare/v4.34.1...v4.34.2) *2025-02-04* ##### Bug Fixes - Fix an issue where not all usages of a function were properly detected ([#​5827](https://redirect.github.com/rollup/rollup/issues/5827)) ##### Pull Requests - [#​5827](https://redirect.github.com/rollup/rollup/pull/5827): Ensure that functions provided to a constructor are properly deoptimized ([@​lukastaegert](https://redirect.github.com/lukastaegert)) ### [`v4.34.1`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4341) [Compare Source](https://redirect.github.com/rollup/rollup/compare/v4.34.0...v4.34.1) *2025-02-03* ##### Bug Fixes - Ensure throwing objects includes the entire object ([#​5825](https://redirect.github.com/rollup/rollup/issues/5825)) ##### Pull Requests - [#​5825](https://redirect.github.com/rollup/rollup/pull/5825): Ensure that all properties of throw statements are included ([@​lukastaegert](https://redirect.github.com/lukastaegert)) ### [`v4.34.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4340) [Compare Source](https://redirect.github.com/rollup/rollup/compare/v4.33.0...v4.34.0) *2025-02-01* ##### Features - Tree-shake unused properties in object literals (re-implements [#​5420](https://redirect.github.com/rollup/rollup/issues/5420)) ([#​5737](https://redirect.github.com/rollup/rollup/issues/5737)) ##### Pull Requests - [#​5737](https://redirect.github.com/rollup/rollup/pull/5737): Reapply object tree-shaking ([@​lukastaegert](https://redirect.github.com/lukastaegert), [@​TrickyPi](https://redirect.github.com/TrickyPi)) ### [`v4.33.0`](https://redirect.github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4330) [Compare Source](https://redirect.github.com/rollup/rollup/compare/v4.32.1...v4.33.0) *2025-02-01* ##### Features - Correctly detect literal value of more negated expressions ([#​5812](https://redirect.github.com/rollup/rollup/issues/5812)) ##### Bug Fixes - Use the correct with/assert attribute key in dynamic imports ([#​5818](https://redirect.github.com/rollup/rollup/issues/5818)) - Fix an issue where logical expressions were considered to have the wrong value ([#​5819](https://redirect.github.com/rollup/rollup/issues/5819)) ##### Pull Requests - [#​5812](https://redirect.github.com/rollup/rollup/pull/5812): feat: optimize the literal value of unary expressions ([@​TrickyPi](https://redirect.github.com/TrickyPi)) - [#​5816](https://redirect.github.com/rollup/rollup/pull/5816): fix(deps): update swc monorepo (major) ([@​renovate](https://redirect.github.com/renovate)\[bot], [@​lukastaegert](https://redirect.github.com/lukastaegert)) - [#​5817](https://redirect.github.com/rollup/rollup/pull/5817): fix(deps): lock file maintenance minor/patch updates ([@​renovate](https://redirect.github.com/renovate)\[bot], [@​lukastaegert](https://redirect.github.com/lukastaegert)) - [#​5818](https://redirect.github.com/rollup/rollup/pull/5818): support for changing the attributes key for dynamic imports ([@​TrickyPi](https://redirect.github.com/TrickyPi)) - [#​5819](https://redirect.github.com/rollup/rollup/pull/5819): Return UnknownValue if getLiteralValueAtPath is called recursively within logical expressions ([@​TrickyPi](https://redirect.github.com/TrickyPi)) - [#​5820](https://redirect.github.com/rollup/rollup/pull/5820): return null ([@​kingma-sbw](https://redirect.github.com/kingma-sbw)) </details> <details> <summary>npm/node-semver (semver)</summary> ### [`v7.7.1`](https://redirect.github.com/npm/node-semver/blob/HEAD/CHANGELOG.md#771-2025-02-03) [Compare Source](https://redirect.github.com/npm/node-semver/compare/v7.7.0...v7.7.1) ##### Bug Fixes - [`af761c0`](https://redirect.github.com/npm/node-semver/commit/af761c05bd53eef83b5e20f8b09360b0e70557dc) [#​764](https://redirect.github.com/npm/node-semver/pull/764) inc: fully capture prerelease identifier ([#​764](https://redirect.github.com/npm/node-semver/issues/764)) ([@​wraithgar](https://redirect.github.com/wraithgar)) ### [`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`](https://redirect.github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883) [#​753](https://redirect.github.com/npm/node-semver/pull/753) add "release" inc type ([#​753](https://redirect.github.com/npm/node-semver/issues/753)) ([@​mbtools](https://redirect.github.com/mbtools)) ##### Bug Fixes - [`d588e37`](https://redirect.github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1) [#​755](https://redirect.github.com/npm/node-semver/pull/755) diff: fix prerelease to stable version diff logic ([#​755](https://redirect.github.com/npm/node-semver/issues/755)) ([@​eminberkayd](https://redirect.github.com/eminberkayd), berkay.daglar) - [`8a34bde`](https://redirect.github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78) [#​754](https://redirect.github.com/npm/node-semver/pull/754) add identifier validation to `inc()` ([#​754](https://redirect.github.com/npm/node-semver/issues/754)) ([@​mbtools](https://redirect.github.com/mbtools)) ##### Documentation - [`67e5478`](https://redirect.github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834) [#​756](https://redirect.github.com/npm/node-semver/pull/756) readme: added missing period for consistency ([#​756](https://redirect.github.com/npm/node-semver/issues/756)) ([@​shaymolcho](https://redirect.github.com/shaymolcho)) - [`868d4bb`](https://redirect.github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2) [#​749](https://redirect.github.com/npm/node-semver/pull/749) clarify comment about obsolete prefixes ([#​749](https://redirect.github.com/npm/node-semver/issues/749)) ([@​mbtools](https://redirect.github.com/mbtools), [@​ljharb](https://redirect.github.com/ljharb)) ##### Chores - [`145c554`](https://redirect.github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d) [#​741](https://redirect.github.com/npm/node-semver/pull/741) bump [@​npmcli/eslint-config](https://redirect.github.com/npmcli/eslint-config) from 4.0.5 to 5.0.0 ([@​dependabot](https://redirect.github.com/dependabot)\[bot]) - [`753e02b`](https://redirect.github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b) [#​747](https://redirect.github.com/npm/node-semver/pull/747) bump [@​npmcli/template-oss](https://redirect.github.com/npmcli/template-oss) from 4.23.3 to 4.23.4 ([#​747](https://redirect.github.com/npm/node-semver/issues/747)) ([@​dependabot](https://redirect.github.com/dependabot)\[bot], [@​npm-cli-bot](https://redirect.github.com/npm-cli-bot)) - [`0b812d5`](https://redirect.github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437) [#​744](https://redirect.github.com/npm/node-semver/pull/744) postinstall for dependabot template-oss PR ([@​hashtagchris](https://redirect.github.com/hashtagchris)) </details> <details> <summary>angular/angular (zone.js)</summary> ### [`v0.15.0`](https://redirect.github.com/angular/angular/blob/HEAD/packages/zone.js/CHANGELOG.md#0150-2024-08-15) [Compare Source](https://redirect.github.com/angular/angular/compare/zone.js-0.14.10...zone.js-0.15.0) ##### Bug Fixes - **zone.js:** Add support for addition jest functions. ([#​57280](https://redirect.github.com/angular/angular/issues/57280)) ([e1240c6](https://redirect.github.com/angular/angular/commit/e1240c6f5d9a3d68ccef7ffbf0a0646ad1164cd8)), closes [#​57277](https://redirect.github.com/angular/angular/issues/57277) - **zone.js:** Update the default behavior of fakeAsync to flush after the test ([#​57240](https://redirect.github.com/angular/angular/issues/57240)) ([70e8b40](https://redirect.github.com/angular/angular/commit/70e8b40750e894bc1439713cd508d8bd9fafb7a4)) ##### BREAKING CHANGES - **zone.js:** `fakeAsync` will now flush pending timers at the end of the given function by default. To opt-out of this, you can use `{flush: false}` in options parameter of `fakeAsync` #### [0.14.10](https://redirect.github.com/angular/angular/compare/zone.js-0.14.8...zone.js-0.14.10) (2024-08-05) ##### Features - **zone.js:** Add 'flush' parameter option to fakeAsync to flush after the test ([#​57137](https://redirect.github.com/angular/angular/issues/57137)) ([99d679d](https://redirect.github.com/angular/angular/commit/99d679d6061d731a04930824e92f247bb94f21e7)) #### [0.14.8](https://redirect.github.com/angular/angular/compare/zone.js-0.14.7...zone.js-0.14.8) (2024-07-17) ##### Bug Fixes - **zone.js:** allow enabling default `beforeunload` handling ([#​55875](https://redirect.github.com/angular/angular/issues/55875)) ([b8d5882](https://redirect.github.com/angular/angular/commit/b8d5882127a6e9944d30a7e0c87c2e2c59b352e6)), closes [#​47579](https://redirect.github.com/angular/angular/issues/47579) - **zone.js:** support `Timeout.refresh` in Node.js ([#​56852](https://redirect.github.com/angular/angular/issues/56852)) ([982f1b1](https://redirect.github.com/angular/angular/commit/982f1b125147e4292716f9524bef75423b70c71c)), closes [#​56586](https://redirect.github.com/angular/angular/issues/56586) #### [0.14.7](https://redirect.github.com/angular/angular/compare/zone.js-0.14.6...zone.js-0.14.7) (2024-06-06) ##### Bug Fixes - **zone.js:** do not mutate event listener options (may be readonly) ([#​55796](https://redirect.github.com/angular/angular/issues/55796)) ([85c1719](https://redirect.github.com/angular/angular/commit/85c171920ae2b1861896fa6c2d5d7dc8f030a445)), closes [#​54142](https://redirect.github.com/angular/angular/issues/54142) - **zone.js:** store remove abort listener on the scheduled task ([#​56160](https://redirect.github.com/angular/angular/issues/56160)) ([4a3800a](https://redirect.github.com/angular/angular/commit/4a3800a6a0ae9d667dd961c6e4029c01c6819988)), closes [#​56148](https://redirect.github.com/angular/angular/issues/56148) #### [0.14.6](https://redirect.github.com/angular/angular/compare/zone.js-0.14.4...zone.js-0.14.6) (2024-05-16) ##### Bug Fixes - **zone.js:** add missing APIs to Node.js `fs` patch ([#​54396](https://redirect.github.com/angular/angular/issues/54396)) ([9e07b62](https://redirect.github.com/angular/angular/commit/9e07b621ead050d27d36cde0549b01ac3f1e9e73)) - **zone.js:** correctly bundle `zone-patch-rxjs` ([#​55826](https://redirect.github.com/angular/angular/issues/55826)) ([20a530a](https://redirect.github.com/angular/angular/commit/20a530acb6ca6efe73cb97c64e9d23a0f5d912c8)), closes [#​55825](https://redirect.github.com/angular/angular/issues/55825) - **zone.js:** remove `abort` listener on a signal when actual event is removed ([#​55339](https://redirect.github.com/angular/angular/issues/55339)) ([a9460d0](https://redirect.github.com/angular/angular/commit/a9460d08a0e95dcd8fcd0ea7eca8470af921bfe2)), closes [#​54739](https://redirect.github.com/angular/angular/issues/54739) #### [0.14.5](https://redirect.github.com/angular/angular/compare/zone.js-0.14.4...zone.js-0.14.5) (2024-04-30) ##### Bug Fixes - **zone.js:** Add 'declare' to each interface to prevent renaming ([#​54966](https://redirect.github.com/angular/angular/issues/54966)) ([b3d045b](https://redirect.github.com/angular/angular/commit/b3d045b9a4383d97ea3c5d770d9413ffed35d760)) - **zone.js:** make sure fakeasync use the same id pool with native ([#​54600](https://redirect.github.com/angular/angular/issues/54600)) ([ddbf6bb](https://redirect.github.com/angular/angular/commit/ddbf6bb038d101daf5280abbd2a0efaa0b7fd3a0)), closes [#​54323](https://redirect.github.com/angular/angular/issues/54323) - **zone.js:** should not clear onhandler when remove capture listener ([#​54602](https://redirect.github.com/angular/angular/issues/54602)) ([e44b077](https://redirect.github.com/angular/angular/commit/e44b077cbd4fc1ac16b3edd0fea758842ce6e29f)), closes [#​54581](https://redirect.github.com/angular/angular/issues/54581) #### [0.14.4](https://redirect.github.com/angular/angular/compare/zone.js-0.14.3...zone.js-0.14.4) (2024-02-13) ##### Bug Fixes - **zone.js:** add `__Zone_ignore_on_properties` to `ZoneGlobalConfigurations` ([#​50737](https://redirect.github.com/angular/angular/issues/50737)) ([f87f058](https://redirect.github.com/angular/angular/commit/f87f058a69443d9427530c979b39e3630190a7fd)) - **zone.js:** patch `fs.realpath.native` as macrotask ([#​54208](https://redirect.github.com/angular/angular/issues/54208)) ([19fae76](https://redirect.github.com/angular/angular/commit/19fae76bada7146e8993fb672b8d321fb08967f2)), closes [#​45546](https://redirect.github.com/angular/angular/issues/45546) - **zone.js:** patch `Response` methods returned by `fetch` ([#​50653](https://redirect.github.com/angular/angular/issues/50653)) ([260d3ed](https://redirect.github.com/angular/angular/commit/260d3ed0d91648d3ba75d7d9896f38195093c7e4)), closes [#​50327](https://redirect.github.com/angular/angular/issues/50327) - **zone.js:** patch form-associated custom element callbacks ([#​50686](https://redirect.github.com/angular/angular/issues/50686)) ([1c990cd](https://redirect.github.com/angular/angular/commit/1c990cdb2962fa879762d5e26f87f547a00e1795)) #### [0.14.3](https://redirect.github.com/angular/angular/compare/zone.js-0.14.2...zone.js-0.14.3) (2023-12-19) ##### Bug Fixes - **zone.js:** handle fetch with AbortSignal ([#​49595](https://redirect.github.com/angular/angular/issues/49595)) ([b06b24b](https://redirect.github.com/angular/angular/commit/b06b24b5049c07fbc18c76fd2a10e49fc93870be)) - **zone.js:** Promise.resolve(subPromise) should return subPromise ([#​53423](https://redirect.github.com/angular/angular/issues/53423)) ([08b0c87](https://redirect.github.com/angular/angular/commit/08b0c87a948007e086a2c5a5c17ccca5fd7a24c4)), closes [/promisesaplus.com/#point-51](https://redirect.github.com//promisesaplus.com//issues/point-51) - **zone.js:** support addEventListener with signal option. ([#​49595](https://redirect.github.com/angular/angular/issues/49595)) ([d4973ff](https://redirect.github.com/angular/angular/commit/d4973ff9b074f4db918f71163e79b7d112c309f5)), closes [#​49591](https://redirect.github.com/angular/angular/issues/49591) ##### Features - **zone.js:** implement Promise.withResolvers() ([#​53514](https://redirect.github.com/angular/angular/issues/53514)) ([7a28f50](https://redirect.github.com/angular/angular/commit/7a28f50711535fcc285c7ee9021e8e7dc34a655d)) #### [0.14.2](https://redirect.github.com/angular/angular/compare/zone.js-0.14.1...zone.js-0.14.2) (2023-11-03) ##### Bug Fixes - **zone.js:** disable wrapping unhandled promise error by default ([6d7eb35](https://redirect.github.com/angular/angular/commit/6d7eb3548c5fc3aedb4a52ff2010141343748e90)) #### [14.0.1](https://redirect.github.com/angular/angular/compare/zone.js-0.14.0...zone.js-14.0.1) (2023-10-25) ##### Bug Fixes - **zone.js:** use `globalThis` instead of `global` and `window` ([#​52367](https://redirect.github.com/angular/angular/issues/52367)) ([def719e](https://redirect.github.com/angular/angular/commit/def719e2cac50bbf1cda4a2c4bf96de2d4ba4bfd)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4:00am on Tuesday" in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto. 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate-coveo[bot] <115253437+renovate-coveo[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8302720 - Browse repository at this point
Copy the full SHA 8302720View commit details
Commits on Feb 12, 2025
-
[Version Bump][skip ci]: ui-kit publish
@coveo/headless@3.15.1 @coveo/atomic@3.19.0 @coveo/headless-react@2.4.6 @coveo/atomic-react@3.2.18 @coveo/atomic-angular@3.3.8 @coveo/atomic-hosted-page@1.1.1 @coveo/quantic@3.14.1 **/CHANGELOG.md **/package.json CHANGELOG.md package.json package-lock.json
Configuration menu - View commit details
-
Copy full SHA for 15308ec - Browse repository at this point
Copy the full SHA 15308ecView commit details
There are no files selected for viewing