renovate[bot]
706a90ee4c
chore(deps): update dependency vitest to v1.6.1 [security]
2025-02-13 14:56:01 +00:00
Christopher Kolstad
8de801025f
task: make setting service handle conflict on insert ( #9160 )
...
Currently, in enterprise we're struggling with setting service and
transactionality; all our verfications says that the setting key is not
present, so setting-store happily tries to insert a new row with a new
PK. However, somehow at the same time, the key already exists. This
commit adds conflict handling to the insertNewRow.
2025-02-13 15:54:43 +01:00
Melinda Fekete
1036fb6012
Update js tutorial to fix bugs and writing style ( #9304 )
2025-02-13 15:14:51 +01:00
Jaanus Sellin
8d998c82d8
chore: bump unleash client version to beta 6.5 ( #9305 )
2025-02-13 10:42:54 +02:00
Gastón Fournier
cbbf255d9e
docs: include create db permission required for new tests ( #9301 )
2025-02-12 16:36:03 +01:00
Tymoteusz Czech
b5bd5ee3f2
refactor: MuiTab font sizes ( #9296 )
...
I didn't find where this style is taken into account, but I don't like
leaving `1rem` when everything else is scaled down to 15px
2025-02-12 15:13:22 +01:00
Thomas Heartman
243088fdca
fix: Add strategy and more strategies button are different heights ( #9300 )
...
Fixes the height discrepancy between add strategy and more strategies
buttons, both with and without the flag enabled.
The essence of the fix is to make the "more strategies" button's height
dynamic and grow to match the height of the other button.
Before (flag enabled):
![image](https://github.com/user-attachments/assets/4dda44b3-3add-40cd-93ed-48150e73ac35 )
After (flag enabled):
![image](https://github.com/user-attachments/assets/2788f141-fe64-4733-9202-f9f115396001 )
Before (flag disabled):
![image](https://github.com/user-attachments/assets/c3a9d396-cb30-4a61-9400-45458189d3f2 )
After (flag disabled):
![image](https://github.com/user-attachments/assets/0570ff85-401a-4e6f-93e7-d1619a4cd848 )
As a bonus: also enables the ui font redesign flag for server-dev.
If you're very sharp-eyed, you might notice a few things:
1. There's more padding on the new button. This was done in concert with
UX when we noticed there was more padding on other buttons. So as a
result, we set the button type to the default instead of "small".
1. The kebab button isn't perfectly square with the flag on. There's a
few issues here, but essentially: to use `aspect-ratio: 1`, you need
either a height or a width set. Because we want everything here to be
auto-generated (use the button's intrinsic height), I couldn't make it
work. In the end, I think this is close enough. If you have other ideas,
you're very welcome to try and fix it.
2025-02-12 13:54:06 +01:00
Nuno Góis
151db95c2d
feat: frontend API POST endpoint ( #9291 )
...
https://linear.app/unleash/issue/2-3260/implement-post-request-support-in-unleashs-frontend-api
Implements the POST endpoint in Unleash's frontend API.
2025-02-12 11:56:51 +00:00
Thomas Heartman
5c23a52119
fix: add some missing button labels on the project page ( #9299 )
...
Adds aria-labels to the env visibility toggle button and the "copy
env" button.
2025-02-12 09:39:03 +01:00
Thomas Heartman
f4e87389f1
fix: make the chip in the playground project selector small ( #9298 )
...
This makes it the same size as the env selector, fixing a slight
visual misalignment.
Doing a reference check, I can't find any other uses of this selector,
so I'm making the changes directly.
Before:
![image](https://github.com/user-attachments/assets/a9847dc7-8237-46bd-8d5b-7149a5682a59 )
After:
![image](https://github.com/user-attachments/assets/a78d71ed-3391-4f72-9c8f-64f926a821cf )
2025-02-12 09:38:49 +01:00
David Leek
5921f0ea09
chore: add migration that backfills scim user email hashes ( #9295 )
2025-02-12 09:05:36 +01:00
Melinda Fekete
17e93509e9
Upgrade docusaurus ( #9284 )
...
Upgrade docusaurus and fix mermaid bug
2025-02-11 17:37:14 +01:00
Tymoteusz Czech
b035299a18
fix: command bar spacing ( #9288 )
2025-02-11 16:17:24 +01:00
Mateusz Kwasniewski
54766fd4a0
feat: connection count usage ( #9294 )
2025-02-11 16:15:45 +01:00
Gastón Fournier
8045fbe13a
chore: use gitcliff changelog for release ( #9289 )
...
This is to reuse the gitcliff output for the release
2025-02-11 15:56:40 +01:00
Github Actions Bot
140290a94b
6.7.1
2025-02-11 13:46:38 +00:00
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 (@​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
-
[@​tanstack/virtual-core](https://redirect.github.com/tanstack/virtual-core )[@​3](https://redirect.github.com/3 ).12.0
-
[@​tanstack/lit-virtual](https://redirect.github.com/tanstack/lit-virtual )[@​3](https://redirect.github.com/3 ).12.0
-
[@​tanstack/react-virtual](https://redirect.github.com/tanstack/react-virtual )[@​3](https://redirect.github.com/3 ).12.0
-
[@​tanstack/solid-virtual](https://redirect.github.com/tanstack/solid-virtual )[@​3](https://redirect.github.com/3 ).12.0
-
[@​tanstack/svelte-virtual](https://redirect.github.com/tanstack/svelte-virtual )[@​3](https://redirect.github.com/3 ).12.0
-
[@​tanstack/vue-virtual](https://redirect.github.com/tanstack/vue-virtual )[@​3](https://redirect.github.com/3 ).12.0
-
[@​tanstack/angular-virtual](https://redirect.github.com/tanstack/angular-virtual )[@​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 (@​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
([#​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 (@​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`
-
[#​10800](https://redirect.github.com/facebook/docusaurus/pull/10800 )
feat(core): Turn Rspack incremental on by default (again)
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-plugin-content-blog`, `docusaurus-theme-classic`
-
[#​10768](https://redirect.github.com/facebook/docusaurus/pull/10768 )
feat(blog): Add author social icons for bluesky, mastodon, threads,
twitch, youtube, instagram
([@​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`
-
[#​10763](https://redirect.github.com/facebook/docusaurus/pull/10763 )
feat: Add React 19 support to Docusaurus v3
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-plugin-content-blog`
-
[#​10729](https://redirect.github.com/facebook/docusaurus/pull/10729 )
feat(blog): Add `frontMatter.sidebar_label`
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-module-type-aliases`, `docusaurus-plugin-svgr`,
`docusaurus-preset-classic`, `docusaurus-types`, `docusaurus-utils`,
`docusaurus`
-
[#​10677](https://redirect.github.com/facebook/docusaurus/pull/10677 )
feat(svgr): create new Docusaurus SVGR plugin
([@​slorber](https://redirect.github.com/slorber ))
##### 🐛 Bug Fix
- `docusaurus-remark-plugin-npm2yarn`
-
[#​10803](https://redirect.github.com/facebook/docusaurus/pull/10803 )
fix(npm-to-yarn): add missing npm-to-yarn converter for Bun
([@​Lehoczky](https://redirect.github.com/Lehoczky ))
- `docusaurus-theme-classic`, `docusaurus-theme-common`
-
[#​10796](https://redirect.github.com/facebook/docusaurus/pull/10796 )
fix(theme): Footer Column/Link should merge provided className
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-bundler`, `docusaurus-theme-common`
-
[#​10786](https://redirect.github.com/facebook/docusaurus/pull/10786 )
fix(core): fix React hydration errors, change html minifier settings
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-theme-common`
-
[#​10782](https://redirect.github.com/facebook/docusaurus/pull/10782 )
fix(theme-common): code block magic comments should support SQL block
comments
([@​WillBlack403](https://redirect.github.com/WillBlack403 ))
- `docusaurus-theme-translations`
-
[#​10783](https://redirect.github.com/facebook/docusaurus/pull/10783 )
fix(theme-translations): Add missing Dutch (nl) theme translations
([@​janaukema](https://redirect.github.com/janaukema ))
-
[#​10760](https://redirect.github.com/facebook/docusaurus/pull/10760 )
fix(theme-translation): add missing Korean (ko) theme translations
([@​effozen](https://redirect.github.com/effozen ))
- `docusaurus-plugin-content-docs`
-
[#​10754](https://redirect.github.com/facebook/docusaurus/pull/10754 )
fix(docs): fix sidebar item visibility bug for category index
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus`
-
[#​10727](https://redirect.github.com/facebook/docusaurus/pull/10727 )
fix(core): fix codegen routesChunkName possible hash collision
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-mdx-loader`
-
[#​10723](https://redirect.github.com/facebook/docusaurus/pull/10723 )
fix(mdx-loader): fix md image paths with spaces bug related to
transformImage encoding problem
([@​slorber](https://redirect.github.com/slorber ))
##### 📝 Documentation
-
[#​10740](https://redirect.github.com/facebook/docusaurus/pull/10740 )
docs: Link initialization docs together
([@​waldyrious](https://redirect.github.com/waldyrious ))
##### 🤖 Dependencies
-
[#​10771](https://redirect.github.com/facebook/docusaurus/pull/10771 )
chore(deps): bump nanoid from 3.3.7 to 3.3.8
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
-
[#​10721](https://redirect.github.com/facebook/docusaurus/pull/10721 )
chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
([@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot ))
##### 🔧 Maintenance
- Other
-
[#​10770](https://redirect.github.com/facebook/docusaurus/pull/10770 )
chore: Devcontainer upgrade to Ubuntu Noble & Node 22
([@​GingerGeek](https://redirect.github.com/GingerGeek ))
- `docusaurus-theme-search-algolia`
-
[#​10801](https://redirect.github.com/facebook/docusaurus/pull/10801 )
refactor(algolia): simplify SearchBar component
([@​slorber](https://redirect.github.com/slorber ))
-
[#​10672](https://redirect.github.com/facebook/docusaurus/pull/10672 )
chore(algolia): upgrade algoliasearch to v5
([@​millotp](https://redirect.github.com/millotp ))
- `docusaurus`
-
[#​10798](https://redirect.github.com/facebook/docusaurus/pull/10798 )
refactor(core): Use Intl native API to get locale direction, remove
rtl-detect depend…
([@​slorber](https://redirect.github.com/slorber ))
-
[#​10747](https://redirect.github.com/facebook/docusaurus/pull/10747 )
refactor(core): swizzle wrap should use ReactNode instead of JSX.Element
([@​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`
-
[#​10746](https://redirect.github.com/facebook/docusaurus/pull/10746 )
refactor: prepare types for React 19
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-theme-common`
-
[#​10728](https://redirect.github.com/facebook/docusaurus/pull/10728 )
refactor(theme-common): change storageUtils useSyncExternalCode
getSnapshot workaround
([@​slorber](https://redirect.github.com/slorber ))
##### Committers: 14
- Alvin Bryan
([@​alvinometric](https://redirect.github.com/alvinometric ))
- Hichem Fantar
([@​hichemfantar](https://redirect.github.com/hichemfantar ))
- Ivan Cheban
([@​ivancheban](https://redirect.github.com/ivancheban ))
- Jake Boone
([@​jakeboone02](https://redirect.github.com/jakeboone02 ))
- Jan Aukema
([@​janaukema](https://redirect.github.com/janaukema ))
- Lehoczky Zoltán
([@​Lehoczky](https://redirect.github.com/Lehoczky ))
- Lin Huang
([@​codimiracle](https://redirect.github.com/codimiracle ))
- Pierre Millot ([@​millotp](https://redirect.github.com/millotp ))
- Sébastien Lorber
([@​slorber](https://redirect.github.com/slorber ))
- Taylor Reece
([@​taylorreece](https://redirect.github.com/taylorreece ))
- Waldir Pimenta
([@​waldyrious](https://redirect.github.com/waldyrious ))
- William Black
([@​WillBlack403](https://redirect.github.com/WillBlack403 ))
- Zed Spencer-Milnes
([@​GingerGeek](https://redirect.github.com/GingerGeek ))
- Zen ([@​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