1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00
Commit Graph

13155 Commits

Author SHA1 Message Date
Github Actions Bot
c2d6cd3f1f docs: Update CHANGELOG.md 2025-02-11 13:46:27 +00:00
Thomas Heartman
abb0450a6a
fix: Use the right theme even if the payload is a variant. (#9292)
Also, use extra css selectors to increase specificity so that this
takes precedence over the MUI themes.

I don't like that we need to do this weird selector thing, but hey, it
is what it is.
2025-02-11 13:28:36 +00:00
Tymoteusz Czech
cac38b0cee
fix: font size flag change to boolean (#9290)
## About the changes
Fix for `uiGlobalFontSize` flag being returned as an object, which is truthy.
2025-02-11 13:24:18 +01:00
Gastón Fournier
5e9698fe63
chore: Create test db from template (#9265)
## About the changes
Based on the first hypothesis from
https://github.com/Unleash/unleash/pull/9264, I decided to find an
alternative way of initializing the DB, mainly trying to run migrations
only once and removing that from the actual test run.

I found in [Postgres template
databases](https://www.postgresql.org/docs/current/manage-ag-templatedbs.html)
an interesting option in combination with jest global initializer.

### Changes on how we use DBs for testing

Previously, we were relying on a single DB with multiple schemas to
isolate tests, but each schema was empty and required migrations or
custom DB initialization scripts.

With this method, we don't need to use different schema names
(apparently there's no templating for schemas), and we can use new
databases. We can also eliminate custom initialization code.

### Legacy tests

This method also highlighted some wrong assumptions in existing tests.
One example is the existence of `default` environment, that because of
being deprecated is no longer available, but because tests are creating
the expected db state manually, they were not updated to match the
existing db state.

To keep tests running green, I've added a configuration to use the
`legacy` test setup (24 tests). By migrating these, we'll speed up
tests, but the code of these tests has to be modified, so I leave this
for another PR.

## Downsides
1. The template db initialization happens at the beginning of any test,
so local development may suffer from slower unit tests. As a workaround
we could define an environment variable to disable the db migration
2. Proliferation of test dbs. In ephemeral environments, this is not a
problem, but for local development we should clean up from time to time.
There's the possibility of cleaning up test dbs using the db name as a
pattern:
2ed2e1c274/scripts/jest-setup.ts (L13-L18)
but I didn't want to add this code yet. Opinions?

## Benefits
1. It allows us migrate only once and still get the benefits of having a
well known state for tests.
3. It removes some of the custom setup for tests (which in some cases
ends up testing something not realistic)
4. It removes the need of testing migrations:
https://github.com/Unleash/unleash/blob/main/src/test/e2e/migrator.e2e.test.ts
as migrations are run at the start
5. Forces us to keep old tests up to date when we modify our database
2025-02-11 13:01:43 +01:00
Github Actions Bot
a8ea174ead 6.7.0 2025-02-11 10:56:32 +00:00
Github Actions Bot
5e38a23cf9 docs: Update CHANGELOG.md 2025-02-11 10:56:22 +00:00
Gastón Fournier
e587b2c892
chore: remove concurrency block (#9286)
This is to unblock the release
![Screenshot from 2025-02-11
11-20-56](https://github.com/user-attachments/assets/99122eaa-850b-4d7b-bd67-ae3604edd24f)
2025-02-11 10:52:27 +00:00
Gastón Fournier
4a2450050e
chore: Retry release 6.7 (#9287)
Undo release commits
2025-02-11 11:51:37 +01:00
Thomas Heartman
63dbd40a2e
chore: add button styles to dark mode too (#9285)
This adds the same button stylings to the dark theme as we did to the
light theme in #9275.
2025-02-11 11:17:05 +01:00
Thomas Heartman
43a5d59225
fix: add legacy button styles (#9283)
Adds the button styles that were removed from `app.css` into the
legacy theme file. These change very slightly when the flag is on, and
because the hardcoded `app.css` styles have been removed, we'll use
the legacy file as fallback.
2025-02-11 09:32:26 +00:00
Github Actions Bot
abae81234a 6.7.0 2025-02-11 08:54:00 +00:00
Github Actions Bot
04faf6766d docs: Update CHANGELOG.md 2025-02-11 08:53:49 +00:00
Thomas Heartman
65bec89d3c
chore(1-3356): make mui buttons respect font size changes (#9275)
Makes the MUI buttons use `body1.fontSize` for their own font size.

Turns out we had a hardcoded `16px` in the `app.css` file, which made it
hard to override. This change removes mui button styling in `app.css`
and puts it into the `theme.ts` file instead.

Also updates the border radius to match the one we use in the theme
(from 3px to 4px). It's a subtle change:

before:

![image](https://github.com/user-attachments/assets/a6f94250-9b4b-43e0-aa65-280f3fa007bb)


after:

![image](https://github.com/user-attachments/assets/3ef205c8-8119-4bf1-9541-39371b26dda9)
2025-02-11 08:33:27 +00:00
Thomas Heartman
fd1ad5ac5b
fix: some accessibility issues (#9282)
Fixes a small number of accessibility issues that Firefox was
complaining about (and some that I noticed myself):

1. In `CommandBar.tsx`, use a `Label` element instead of aria-label. We
can hide it with the `ScreenReaderOnly` component.
2. Add an `aria-label` to the icon button in the sidebar. (side note:
should we do any fancy detection on whether it's cmd + b or ctrl+b
there? I think we do that in the command bar)
3. Update the playground guidance popper;
  i. Add an aria-label to the icon button
ii. Make the popper a `Popover` instead. This fixes a few issues: It
wasn't possible to focus or close just using the keyboard before.
Because it didn't steal focus, it also meant that it'd cover other parts
of the page. Now it traps focus so you can navigate to the close button,
and escape will also close it for you.
iii. Remove aria-describedby. Using aria-describedby on the button would
mean that the **button** is described by its content, which seems wrong.
aria-describedby should also only be used for plain strings. Complex
markups isn't supported. For that aria-details is the right way to go.
But because the popover is only rendered when it's open, the details or
describedby link will point to nothing most of the time.
iv. In doing this, there is a slight change in the popover shadow (I
couldn't find onef of our shadows that did the same thing as before),
but it matches other popovers we have, such as on the data usage tab.

Before:

![image](https://github.com/user-attachments/assets/8c2a3471-949f-4c01-b467-cde06c8980b5)

After:

![image](https://github.com/user-attachments/assets/980114c6-6552-4e75-8a6c-281b97a8af03)
2025-02-11 09:16:20 +01:00
Tymoteusz Czech
23e8040cd9
refactor: theme - font size (#9273) 2025-02-11 09:07:27 +01:00
renovate[bot]
a0164e4c88
chore(deps): update dependency @tanstack/react-virtual to v3.12.0 (#9279)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@tanstack/react-virtual](https://tanstack.com/virtual)
([source](https://redirect.github.com/TanStack/virtual/tree/HEAD/packages/react-virtual))
| [`3.11.3` ->
`3.12.0`](https://renovatebot.com/diffs/npm/@tanstack%2freact-virtual/3.11.3/3.12.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@tanstack%2freact-virtual/3.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tanstack%2freact-virtual/3.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tanstack%2freact-virtual/3.11.3/3.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tanstack%2freact-virtual/3.11.3/3.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>TanStack/virtual (@&#8203;tanstack/react-virtual)</summary>

###
[`v3.12.0`](https://redirect.github.com/TanStack/virtual/releases/tag/v3.12.0)

[Compare
Source](https://redirect.github.com/TanStack/virtual/compare/v3.11.3...v3.12.0)

Version 3.12.0 - 2/3/25, 4:02 AM

#### Changes

##### Feat

- virtual-core: add getVirtualIndexesAPI
([`a1cb9ce`](https://redirect.github.com/TanStack/virtual/commit/a1cb9ce))
by Kevin Van Cott

##### Other

-
([`a485978`](https://redirect.github.com/TanStack/virtual/commit/a485978))
by Kevin Van Cott

#### Packages

-
[@&#8203;tanstack/virtual-core](https://redirect.github.com/tanstack/virtual-core)[@&#8203;3](https://redirect.github.com/3).12.0
-
[@&#8203;tanstack/lit-virtual](https://redirect.github.com/tanstack/lit-virtual)[@&#8203;3](https://redirect.github.com/3).12.0
-
[@&#8203;tanstack/react-virtual](https://redirect.github.com/tanstack/react-virtual)[@&#8203;3](https://redirect.github.com/3).12.0
-
[@&#8203;tanstack/solid-virtual](https://redirect.github.com/tanstack/solid-virtual)[@&#8203;3](https://redirect.github.com/3).12.0
-
[@&#8203;tanstack/svelte-virtual](https://redirect.github.com/tanstack/svelte-virtual)[@&#8203;3](https://redirect.github.com/3).12.0
-
[@&#8203;tanstack/vue-virtual](https://redirect.github.com/tanstack/vue-virtual)[@&#8203;3](https://redirect.github.com/3).12.0
-
[@&#8203;tanstack/angular-virtual](https://redirect.github.com/tanstack/angular-virtual)[@&#8203;3](https://redirect.github.com/3).12.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-10 18:10:28 +00:00
renovate[bot]
99a27d51a9
chore(deps): update dependency @codemirror/state to v6.5.2 (#9278)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@codemirror/state](https://redirect.github.com/codemirror/state) |
[`6.5.1` ->
`6.5.2`](https://renovatebot.com/diffs/npm/@codemirror%2fstate/6.5.1/6.5.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@codemirror%2fstate/6.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@codemirror%2fstate/6.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@codemirror%2fstate/6.5.1/6.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@codemirror%2fstate/6.5.1/6.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>codemirror/state (@&#8203;codemirror/state)</summary>

###
[`v6.5.2`](https://redirect.github.com/codemirror/state/blob/HEAD/CHANGELOG.md#652-2025-02-03)

[Compare
Source](https://redirect.github.com/codemirror/state/compare/6.5.1...6.5.2)

##### Bug fixes

Fix a bug where reconfiguring a field with a new `init` value didn't
update the value of the field.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-10 18:10:05 +00:00
Melinda Fekete
5c4060d6ae
RBAC page docs fixes (#9276) 2025-02-10 16:54:18 +01:00
Melinda Fekete
1ffcfe826f
Update license policy doc (#9274) 2025-02-10 16:53:27 +01:00
Thomas Heartman
c3cef5be18
fix: don't check license in OSS (#9277)
The license check API call was giving me 404s in the console of the
OSS version of Unleash.

This changes the `useLicense` hook to use `useEnterpriseSWR` instead
of `useSWR` to avoid making the API call in the OSS version. This is
consistent with the `useLicenseCheck` hook in the same file.
2025-02-10 15:16:34 +01:00
Thomas Heartman
c4fa86b1aa
chore: make playground code editor height dynamic (#9271)
The playground code editor had a fixed height of `150px`. This works
well with the current font size, but if we're changing it, we'll end
up with too much height compared to the font size.

So instead, let's calculate the font size based on the current font
size.

Before this change (if you shrink font size):

![image](https://github.com/user-attachments/assets/cd6a5cc7-c5dc-421e-a34b-456cb1c318c7)

After this change:
 

![image](https://github.com/user-attachments/assets/b38cbc3d-7687-485f-8c36-244636b56f46)


It still looks the same with the old font size:

![image](https://github.com/user-attachments/assets/54cb69b3-4039-4422-9034-594aebc5a523)


Furthermore, this change uses `minHeight` instead of `height`, so that
if you have more JSON data, then you won't be stuck scrolling through 6
and 6 lines.

Before with lots of json:

![image](https://github.com/user-attachments/assets/8234fcd6-342c-44e7-a900-9893905c6191)


After with lots of json:

![image](https://github.com/user-attachments/assets/d77ee654-dfa5-4932-b0ed-0e6a39ca0b96)


And yes, the button doesn't respect the font size, but that's a
different task.
2025-02-10 12:36:16 +00:00
Nuno Góis
3bc72c84e0
chore: make truncator a span (#9272)
https://linear.app/unleash/issue/2-3255/make-truncator-a-span-instead-of-a-box

Makes the Truncator a `span` instead of a `Box`.

This should make it more flexible and help us avoid DOM nesting errors.
2025-02-10 12:29:58 +00:00
Simon Hornby
bf9fdd4f8d
feat: allow SCIM user deletion (#9190)
Co-authored-by: Gastón Fournier <gaston@getunleash.io>
2025-02-10 14:17:46 +02:00
Thomas Heartman
cdeb515488
chore: removes extra border on collapse for the event timeline (#9270)
Fixes a small visual glitch where the event timeline panel (which
usually doesn't have a bottom border on the summary) would get a
bottom border during the collapsing animation.

This happens because to make the border act as we want, we switch
between using the summary's bottom border and the content's top
border, and I'd only updated one of the borders to respect the new
design.
2025-02-10 10:52:32 +01:00
Thomas Heartman
2b668bc5c8
fix: open/close animation on personal dashboard is choppy (#9253)
Extracts each panel into its own component for the personal dashboard.
This lets us use separate states for each panel, which in turn lets each
panel change its open / close state without causing the other panels to
re-render.

When you have a lot of flags and/or projects, the list to render becomes
very long, which causes performance problems, especially when you need
to rerender both flags and projects and the timeline whenever one of
them changes.

The problems were especially noticeable in Firefox for me. Even with
this, the event timeline is a little choppy. I suspect that's because of
it might take a long time to paint? But we can look into that later.

Also updates the dashboard state hook to let you only pass in the
flags/projects you want. We could extract this into three different
hooks that all use the same localhost key, but I'm not sure whether
that's better or worse 🤷🏼
2025-02-10 10:40:26 +01:00
Mateusz Kwasniewski
ccd8de6e74
docs: remove notifications docs (#9258) 2025-02-10 10:25:49 +01:00
Jaanus Sellin
fb68692247
feat: add delta api streaming flag (#9269)
Lets add separate flag for delta streaming.
2025-02-10 11:22:16 +02:00
Ivar Conradi Østhus
ac1d8b9b70
fix: change log-level to info for filterExistingFlagNames 2025-02-09 22:50:04 +01:00
Ivar Conradi Østhus
d1b9ca00a0
fix: Killwitch to block usage-metrics from non-exiting flag-names (#9266)
Adds a killswitch called "filterExistingFlagNames". When enabled it will
filter out reported SDK metrics and remove all reported metrics for
names that does not match an exiting feature flag in Unleash.

This have proven critical in the rare case of an SDK that start sending
random flag-names back to unleash, and thus filling up the database. At
some point the database will start slowing down due to the noisy data.

In order to not resolve the flagNames all the time we have added a small
cache (10s) for feature flag names. This gives a small delay (10s) from
flag is created until we start allow metrics for the flag when
kill-switch is enabled. We should probably listen to the event-stream
and use that invalidate the cache when a flag is created.
2025-02-09 22:45:44 +01:00
Gastón Fournier
6413a666eb
chore: tests are timing out (#9264)
## About the changes
I figured that many of our tests are timing out and we can solve this by
increasing test timeout.

This is a signal that either our tests became slower or that our query
performance got worse. On the first point it might be due to having more
migrations than before and requiring more time. The second point is
harder to validate but something to keep an eye on
2025-02-09 19:34:49 +01:00
renovate[bot]
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) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/nodemailer/6.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/nodemailer/6.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/nodemailer/6.9.16/6.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/nodemailer/6.9.16/6.10.0?slim=true)](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
([#&#8203;1695](https://redirect.github.com/nodemailer/nodemailer/issues/1695))
([d1ae0a8](d1ae0a8688))

##### Bug Fixes

- **proxy:** Set error and timeout errors for proxied sockets
([aa0c99c](aa0c99c8f2))

</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>
2025-02-07 18:43:05 +00:00
renovate[bot]
6ab6f40c97
fix(deps): update docusaurus monorepo to v3.7.0 (#9261)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@docusaurus/core](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fcore/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fcore/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fcore/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fcore/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fcore/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@docusaurus/module-type-aliases](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fmodule-type-aliases/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fmodule-type-aliases/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fmodule-type-aliases/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fmodule-type-aliases/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fmodule-type-aliases/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@docusaurus/plugin-client-redirects](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-client-redirects))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fplugin-client-redirects/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fplugin-client-redirects/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fplugin-client-redirects/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fplugin-client-redirects/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fplugin-client-redirects/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@docusaurus/plugin-google-analytics](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-plugin-google-analytics))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fplugin-google-analytics/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fplugin-google-analytics/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fplugin-google-analytics/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fplugin-google-analytics/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fplugin-google-analytics/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@docusaurus/preset-classic](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fpreset-classic/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fpreset-classic/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fpreset-classic/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fpreset-classic/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fpreset-classic/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@docusaurus/remark-plugin-npm2yarn](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-remark-plugin-npm2yarn))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fremark-plugin-npm2yarn/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2fremark-plugin-npm2yarn/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2fremark-plugin-npm2yarn/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2fremark-plugin-npm2yarn/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2fremark-plugin-npm2yarn/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [@docusaurus/types](https://redirect.github.com/facebook/docusaurus)
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types))
| [`3.6.3` ->
`3.7.0`](https://renovatebot.com/diffs/npm/@docusaurus%2ftypes/3.6.3/3.7.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@docusaurus%2ftypes/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@docusaurus%2ftypes/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@docusaurus%2ftypes/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@docusaurus%2ftypes/3.6.3/3.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>facebook/docusaurus (@&#8203;docusaurus/core)</summary>

###
[`v3.7.0`](https://redirect.github.com/facebook/docusaurus/blob/HEAD/CHANGELOG.md#370-2025-01-03)

[Compare
Source](https://redirect.github.com/facebook/docusaurus/compare/v3.6.3...v3.7.0)

##### 🚀 New Feature

-   `docusaurus-faster`, `docusaurus`
-
[#&#8203;10800](https://redirect.github.com/facebook/docusaurus/pull/10800)
feat(core): Turn Rspack incremental on by default (again)
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus-plugin-content-blog`, `docusaurus-theme-classic`
-
[#&#8203;10768](https://redirect.github.com/facebook/docusaurus/pull/10768)
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram
([@&#8203;GingerGeek](https://redirect.github.com/GingerGeek))
- `create-docusaurus`, `docusaurus-mdx-loader`,
`docusaurus-module-type-aliases`, `docusaurus-plugin-client-redirects`,
`docusaurus-plugin-content-blog`, `docusaurus-plugin-content-docs`,
`docusaurus-plugin-content-pages`, `docusaurus-plugin-debug`,
`docusaurus-plugin-google-analytics`, `docusaurus-plugin-google-gtag`,
`docusaurus-plugin-google-tag-manager`, `docusaurus-plugin-ideal-image`,
`docusaurus-plugin-pwa`, `docusaurus-plugin-rsdoctor`,
`docusaurus-plugin-sitemap`, `docusaurus-plugin-svgr`,
`docusaurus-plugin-vercel-analytics`, `docusaurus-preset-classic`,
`docusaurus-theme-classic`, `docusaurus-theme-common`,
`docusaurus-theme-live-codeblock`, `docusaurus-theme-mermaid`,
`docusaurus-theme-search-algolia`, `docusaurus-types`, `docusaurus`
-
[#&#8203;10763](https://redirect.github.com/facebook/docusaurus/pull/10763)
feat: Add React 19 support to Docusaurus v3
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus-plugin-content-blog`
-
[#&#8203;10729](https://redirect.github.com/facebook/docusaurus/pull/10729)
feat(blog): Add `frontMatter.sidebar_label`
([@&#8203;slorber](https://redirect.github.com/slorber))
- `docusaurus-module-type-aliases`, `docusaurus-plugin-svgr`,
`docusaurus-preset-classic`, `docusaurus-types`, `docusaurus-utils`,
`docusaurus`
-
[#&#8203;10677](https://redirect.github.com/facebook/docusaurus/pull/10677)
feat(svgr): create new Docusaurus SVGR plugin
([@&#8203;slorber](https://redirect.github.com/slorber))

##### 🐛 Bug Fix

-   `docusaurus-remark-plugin-npm2yarn`
-
[#&#8203;10803](https://redirect.github.com/facebook/docusaurus/pull/10803)
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun
([@&#8203;Lehoczky](https://redirect.github.com/Lehoczky))
-   `docusaurus-theme-classic`, `docusaurus-theme-common`
-
[#&#8203;10796](https://redirect.github.com/facebook/docusaurus/pull/10796)
fix(theme): Footer Column/Link should merge provided className
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus-bundler`, `docusaurus-theme-common`
-
[#&#8203;10786](https://redirect.github.com/facebook/docusaurus/pull/10786)
fix(core): fix React hydration errors, change html minifier settings
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus-theme-common`
-
[#&#8203;10782](https://redirect.github.com/facebook/docusaurus/pull/10782)
fix(theme-common): code block magic comments should support SQL block
comments
([@&#8203;WillBlack403](https://redirect.github.com/WillBlack403))
-   `docusaurus-theme-translations`
-
[#&#8203;10783](https://redirect.github.com/facebook/docusaurus/pull/10783)
fix(theme-translations): Add missing Dutch (nl) theme translations
([@&#8203;janaukema](https://redirect.github.com/janaukema))
-
[#&#8203;10760](https://redirect.github.com/facebook/docusaurus/pull/10760)
fix(theme-translation): add missing Korean (ko) theme translations
([@&#8203;effozen](https://redirect.github.com/effozen))
-   `docusaurus-plugin-content-docs`
-
[#&#8203;10754](https://redirect.github.com/facebook/docusaurus/pull/10754)
fix(docs): fix sidebar item visibility bug for category index
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus`
-
[#&#8203;10727](https://redirect.github.com/facebook/docusaurus/pull/10727)
fix(core): fix codegen routesChunkName possible hash collision
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus-mdx-loader`
-
[#&#8203;10723](https://redirect.github.com/facebook/docusaurus/pull/10723)
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem
([@&#8203;slorber](https://redirect.github.com/slorber))

##### 📝 Documentation

-
[#&#8203;10740](https://redirect.github.com/facebook/docusaurus/pull/10740)
docs: Link initialization docs together
([@&#8203;waldyrious](https://redirect.github.com/waldyrious))

##### 🤖 Dependencies

-
[#&#8203;10771](https://redirect.github.com/facebook/docusaurus/pull/10771)
chore(deps): bump nanoid from 3.3.7 to 3.3.8
([@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
-
[#&#8203;10721](https://redirect.github.com/facebook/docusaurus/pull/10721)
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
([@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot))

##### 🔧 Maintenance

-   Other
-
[#&#8203;10770](https://redirect.github.com/facebook/docusaurus/pull/10770)
chore: Devcontainer upgrade to Ubuntu Noble & Node 22
([@&#8203;GingerGeek](https://redirect.github.com/GingerGeek))
-   `docusaurus-theme-search-algolia`
-
[#&#8203;10801](https://redirect.github.com/facebook/docusaurus/pull/10801)
refactor(algolia): simplify SearchBar component
([@&#8203;slorber](https://redirect.github.com/slorber))
-
[#&#8203;10672](https://redirect.github.com/facebook/docusaurus/pull/10672)
chore(algolia): upgrade algoliasearch to v5
([@&#8203;millotp](https://redirect.github.com/millotp))
-   `docusaurus`
-
[#&#8203;10798](https://redirect.github.com/facebook/docusaurus/pull/10798)
refactor(core): Use Intl native API to get locale direction, remove
rtl-detect depend…
([@&#8203;slorber](https://redirect.github.com/slorber))
-
[#&#8203;10747](https://redirect.github.com/facebook/docusaurus/pull/10747)
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
([@&#8203;slorber](https://redirect.github.com/slorber))
- `create-docusaurus`, `docusaurus-mdx-loader`,
`docusaurus-module-type-aliases`, `docusaurus-plugin-content-blog`,
`docusaurus-plugin-content-docs`, `docusaurus-plugin-content-pages`,
`docusaurus-plugin-debug`, `docusaurus-plugin-ideal-image`,
`docusaurus-plugin-pwa`, `docusaurus-theme-classic`,
`docusaurus-theme-common`, `docusaurus-theme-live-codeblock`,
`docusaurus-theme-mermaid`, `docusaurus-theme-search-algolia`,
`docusaurus-types`, `docusaurus`
-
[#&#8203;10746](https://redirect.github.com/facebook/docusaurus/pull/10746)
refactor: prepare types for React 19
([@&#8203;slorber](https://redirect.github.com/slorber))
-   `docusaurus-theme-common`
-
[#&#8203;10728](https://redirect.github.com/facebook/docusaurus/pull/10728)
refactor(theme-common): change storageUtils useSyncExternalCode
getSnapshot workaround
([@&#8203;slorber](https://redirect.github.com/slorber))

##### Committers: 14

- Alvin Bryan
([@&#8203;alvinometric](https://redirect.github.com/alvinometric))
- Hichem Fantar
([@&#8203;hichemfantar](https://redirect.github.com/hichemfantar))
- Ivan Cheban
([@&#8203;ivancheban](https://redirect.github.com/ivancheban))
- Jake Boone
([@&#8203;jakeboone02](https://redirect.github.com/jakeboone02))
- Jan Aukema
([@&#8203;janaukema](https://redirect.github.com/janaukema))
- Lehoczky Zoltán
([@&#8203;Lehoczky](https://redirect.github.com/Lehoczky))
- Lin Huang
([@&#8203;codimiracle](https://redirect.github.com/codimiracle))
- Pierre Millot ([@&#8203;millotp](https://redirect.github.com/millotp))
- Sébastien Lorber
([@&#8203;slorber](https://redirect.github.com/slorber))
- Taylor Reece
([@&#8203;taylorreece](https://redirect.github.com/taylorreece))
- Waldir Pimenta
([@&#8203;waldyrious](https://redirect.github.com/waldyrious))
- William Black
([@&#8203;WillBlack403](https://redirect.github.com/WillBlack403))
- Zed Spencer-Milnes
([@&#8203;GingerGeek](https://redirect.github.com/GingerGeek))
-   Zen ([@&#8203;effozen](https://redirect.github.com/effozen))

</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>
2025-02-07 18:42:31 +00:00
Nuno Góis
c07fb589a7
chore: add release management to new in unleash (#9257)
https://linear.app/unleash/issue/2-3244/add-release-management-to-new-in-unleash

Adds release management to "New in Unleash".


![image](https://github.com/user-attachments/assets/5bbfc502-f730-4cd4-bf5e-747f1fe9e773)
2025-02-07 14:33:25 +00:00
Nuno Góis
13ac0567c5
chore: make the milestone status a button (#9255)
https://linear.app/unleash/issue/2-3251/make-the-milestone-status-action-link-and-icon-a-proper-button-that

Makes the milestone status a button while trying to keep most of the
original design intact.


![image](https://github.com/user-attachments/assets/677cb9df-8ae2-4244-8d07-6cd2bd1da5fe)
2025-02-07 14:03:59 +00:00
Thomas Heartman
c02c5a4d47
fix(1-3296): don't navigate through the list on tab (#9259)
Prevents tab from navigating you through the list of results. Instead
makes it so that the tab key always takes you to the next item in the
same hierarchy.

As a bonus: also automatically closes the menu when you navigate
away (the previous implementation has a bug where it wouldn't if you
shift-tab).

The behavior of not letting you navigate the list with tab is
consistent with native HTML select elements as well as MUI select
elements. You typically navigate them with the arrow keys.
2025-02-07 14:58:05 +01:00
Fredrik Strand Oseberg
af516537bd
fix: return if empty array (#9254)
Fixes an issue where segment-updated event would be added to cache even
though there were no correlated events. Tests needs to be added in
Enterprise.
2025-02-07 14:39:43 +01:00
Tymoteusz Czech
aa5c70f70e
fix: project roles - include change request config in project update (#9256)
Change request settings as a subset of "update project" role.
2025-02-07 13:42:48 +01:00
Thomas Heartman
4f30ce7155
chore(1-3349): no border for event timeline / dropdowns to the right (#9252)
Removes the border between the accordion summary and its contents for
the event timeline, and moves dropdown selectors to the right to avoid
overcrowding on the left.


![image](https://github.com/user-attachments/assets/b0df4c11-8e61-46f8-b844-349a709bd4e9)
2025-02-07 11:11:54 +01:00
Thomas Heartman
f9bd9d2d03
Adds a more visible focus indicator to the filter chips (#9251)
When the filter chip is focused, adds a 1px solid outline in the theme's
primary color. This makes it easier to tell when the chip has focused.

Additionally, adds a slight refactor in how we call the event log result
component. I'm pretty sure I've seen react docs say that you should
always use the component calling instead of a regular function call, so
this does that.

Before (the first chip has focus; can you tell?):

![image](https://github.com/user-attachments/assets/8fb4382c-9a38-4d77-acc2-35ae9fed1180)

After:

![image](https://github.com/user-attachments/assets/7f6969c3-059f-4c0f-bbfc-9a295adf4070)


Optionally, we could do something similar to on hover (first one has
focus again), but it's kinda subtle and .. I don't think it's a theme
color we have defined:

![image](https://github.com/user-attachments/assets/3fc10d34-858f-4007-9a80-06c4df2fc756)
2025-02-07 10:22:08 +01:00
Jaanus Sellin
43e418e40a
feat: emit delta updated event (#9250)
Start emitting delta updated event and make delta cache service
singleton.
2025-02-07 10:52:11 +02:00
Gastón Fournier
4786bdca21
chore: ability to run FE tests manually (#9249) 2025-02-07 09:27:00 +01:00
renovate[bot]
9d453e6881
chore(deps): update yarn to v4.6.0 (#9248)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [yarn](https://redirect.github.com/yarnpkg/berry)
([source](https://redirect.github.com/yarnpkg/berry/tree/HEAD/packages/yarnpkg-cli))
| [`4.5.3` ->
`4.6.0`](https://renovatebot.com/diffs/npm/yarn/4.5.3/4.6.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/@yarnpkg%2fcli/4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@yarnpkg%2fcli/4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@yarnpkg%2fcli/4.5.3/4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@yarnpkg%2fcli/4.5.3/4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>yarnpkg/berry (yarn)</summary>

###
[`v4.6.0`](2fe7d635e8...1871484db8)

[Compare
Source](2fe7d635e8...1871484db8)

</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>
2025-02-06 18:49:16 +00:00
renovate[bot]
6602e664a1
chore(deps): update testing-library monorepo (#9247)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@testing-library/react](https://redirect.github.com/testing-library/react-testing-library)
| [`16.1.0` ->
`16.2.0`](https://renovatebot.com/diffs/npm/@testing-library%2freact/16.1.0/16.2.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@testing-library%2freact/16.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@testing-library%2freact/16.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@testing-library%2freact/16.1.0/16.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@testing-library%2freact/16.1.0/16.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@testing-library/user-event](https://redirect.github.com/testing-library/user-event)
| [`14.5.2` ->
`14.6.1`](https://renovatebot.com/diffs/npm/@testing-library%2fuser-event/14.5.2/14.6.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@testing-library%2fuser-event/14.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@testing-library%2fuser-event/14.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@testing-library%2fuser-event/14.5.2/14.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@testing-library%2fuser-event/14.5.2/14.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>testing-library/react-testing-library
(@&#8203;testing-library/react)</summary>

###
[`v16.2.0`](https://redirect.github.com/testing-library/react-testing-library/releases/tag/v16.2.0)

[Compare
Source](https://redirect.github.com/testing-library/react-testing-library/compare/v16.1.0...v16.2.0)

##### Features

- Add support for React error handlers
([#&#8203;1354](https://redirect.github.com/testing-library/react-testing-library/issues/1354))
([9618c51](9618c51337))

</details>

<details>
<summary>testing-library/user-event
(@&#8203;testing-library/user-event)</summary>

###
[`v14.6.1`](https://redirect.github.com/testing-library/user-event/releases/tag/v14.6.1)

[Compare
Source](https://redirect.github.com/testing-library/user-event/compare/v14.6.0...v14.6.1)

##### Bug Fixes

- correct description for `delay` option
([#&#8203;1175](https://redirect.github.com/testing-library/user-event/issues/1175))
([2edf14d](2edf14d2e7))
- **keyboard:** add `ContextMenu` to `defaultKeyMap`
([#&#8203;1079](https://redirect.github.com/testing-library/user-event/issues/1079))
([3e471d1](3e471d1feb))
- **keyboard:** add brackets to `defaultKeyMap`
([#&#8203;1226](https://redirect.github.com/testing-library/user-event/issues/1226))
([543ecb0](543ecb0ea9))
- **keyboard:** walk through radio group per arrow keys
([#&#8203;1049](https://redirect.github.com/testing-library/user-event/issues/1049))
([bf8111c](bf8111ca9f))
- **pointer:** dispatch mouse events if `pointerdown` is
`defaultPrevented`
([#&#8203;1121](https://redirect.github.com/testing-library/user-event/issues/1121))
([f681f7b](f681f7bbfe))
- **pointer:** set `button` and `buttons` properties on `PointerEvent`
([#&#8203;1219](https://redirect.github.com/testing-library/user-event/issues/1219))
([6614f72](6614f7282c))
- **pointer:** use `1` as default value for `PointerEvent.width` and
`PointerEvent.height`
([#&#8203;1224](https://redirect.github.com/testing-library/user-event/issues/1224))
([f0468d0](f0468d04d7))
- prevent `click` event loop on form-associated custom element
([#&#8203;1238](https://redirect.github.com/testing-library/user-event/issues/1238))
([465fc7e](465fc7eb49))
- prevent `click` event on non-focusable control
([#&#8203;1130](https://redirect.github.com/testing-library/user-event/issues/1130))
([e429094](e429094865))
- **upload:** apply `accept` filter more leniently
([#&#8203;1064](https://redirect.github.com/testing-library/user-event/issues/1064))
([a344ad4](a344ad4dfe))

###
[`v14.6.0`](https://redirect.github.com/testing-library/user-event/releases/tag/v14.6.0)

[Compare
Source](https://redirect.github.com/testing-library/user-event/compare/v14.5.2...v14.6.0)

##### Features

- dispatch `FocusEvent` in hidden documents
([#&#8203;1252](https://redirect.github.com/testing-library/user-event/issues/1252))
([1ed8b15](1ed8b1557b))

##### Bug Fixes

- **clipboard:** await `DataTransferItem.getAsString()` callback
([#&#8203;1251](https://redirect.github.com/testing-library/user-event/issues/1251))
([7b11b0e](7b11b0e88a))
- **event:** assign pointer coords to MouseEvent
([#&#8203;1039](https://redirect.github.com/testing-library/user-event/issues/1039))
([8528972](8528972577))
- **pointer:** check `PointerCoords.x` in `isDifferentPointerPosition`
([#&#8203;1216](https://redirect.github.com/testing-library/user-event/issues/1216))
([75edef5](75edef5c06))
- **pointer:** check all fields of `PointerCoords` in
`isDifferentPointerPosition()`
([#&#8203;1229](https://redirect.github.com/testing-library/user-event/issues/1229))
([5f3d28f](5f3d28fe3a))

</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.

👻 **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 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>
2025-02-06 18:46:58 +00:00
Tymoteusz Czech
4e36d2285e
chore: remove sortProjectRoles flag (#9226) 2025-02-06 19:40:10 +01:00
Nnenna Ndukwe
ae366916f3
docs: organize/update custom project permissions to reflect Unleash Admin UI (#9246)
<!-- Thanks for creating a PR! To make it easier for reviewers and
everyone else to understand what your changes relate to, please add some
relevant content to the headings below. Feel free to ignore or delete
sections that you don't think are relevant. Thank you! ❤️ -->

## About the changes
<!-- Describe the changes introduced. What are they and why are they
being introduced? Feel free to also add screenshots or steps to view the
changes if they're visual. -->

Updating custom project permissions to reflect permissions in the
Unleash Admin UI.
Slack context:
https://unleash-internal.slack.com/archives/C05LUNBS0SZ/p1738260018703969

<img width="847" alt="Screenshot 2025-02-06 at 10 33 04 AM"
src="https://github.com/user-attachments/assets/98c70467-0471-4e08-b079-d13a358a99b9"
/>
<img width="873" alt="Screenshot 2025-02-06 at 10 33 13 AM"
src="https://github.com/user-attachments/assets/5d02b977-f518-4ac0-ace8-b83083415bfb"
/>


<!-- Does it close an issue? Multiple? -->
Closes #

https://linear.app/unleash/issue/MAR-994/document-api-token-and-change-request-permissions

<!-- (For internal contributors): Does it relate to an issue on public
roadmap? -->
<!--
Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item:
#
-->

### Important files
<!-- PRs can contain a lot of changes, but not all changes are equally
important. Where should a reviewer start looking to get an overview of
the changes? Are any files particularly important? -->


## Discussion points
<!-- Anything about the PR you'd like to discuss before it gets merged?
Got any questions or doubts? -->

---------

Co-authored-by: Melinda Fekete <melinda.fekete@getunleash.io>
2025-02-06 12:50:09 -05:00
Nuno Góis
21fb9a3118
chore: release management plausible events (#9230)
https://linear.app/unleash/issue/2-2834/plausible

Adds the following Plausible events to the Release management feature:
 - Add plan
 - Start milestone
 - Remove plan
 - Create template
 - Edit template
 - Delete template
2025-02-06 16:09:15 +00:00
Melinda Fekete
de03de152b
Fix image zoom bug, remove Figure component (#9242) 2025-02-06 16:52:04 +01:00
David Leek
e689e2e3d2
feat: implement dialogs for changerequest milestone handling and removing release plans (#9240) 2025-02-06 16:45:24 +01:00
Thomas Heartman
61f8236711
chore: changes the panel title to "Event timeline" (#9245)
Keeps it consistent with the previous title for this component and
with what it's known as in the docs.
2025-02-06 15:30:27 +01:00
Tymoteusz Czech
377e68476f
fix: identyfication headers typo (#9244) 2025-02-06 14:24:49 +00:00