Christopher Kolstad 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d397819fd3 
							
						 
					 
					
						
						
							
							feat: Make SAML dialog aware that it might be configured via env ( #7606 )  
						
						... 
						
						
						
						Same as the OIDC changes we merged yesterday, this makes the frontend
ready for disabling SAML configuration page, if the SAML_ environment
variables are set.
---------
Co-authored-by: Nuno Góis <github@nunogois.com> 
						
					 
					
						2024-07-17 10:57:34 +00:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							949a5f0109 
							
						 
					 
					
						
						
							
							fix: Update OpenAPI error converter to handle query param errors too ( #7609 )  
						
						... 
						
						
						
						This PR updates the OpenAPI error converter to also work for errors with
query parameters.
We previously only sent the body of the request along with the error,
which meant that query parameter errors would show up incorrectly.
For instance given a query param with the date format and the invalid
value `01-2020-01`, you'd previously get the message:
> The `from` value must match format "date". You sent undefined
With this change, you'll get this instead:
> The `from` value must match format "date". You sent "01-2020-01". 
The important changes here are two things:
- passing both request body and query params
- the 3 lines in `fromOpenApiValidationError` that check where we should
get the value you sent from.
The rest of it is primarily updating tests to send the right arguments
and some slight rewording to more accurately reflect that this can be
either request body or query params. 
						
					 
					
						2024-07-17 12:47:32 +02:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6e4e58aee8 
							
						 
					 
					
						
						
							
							fix: insights sticky header ( #7607 )  
						
						... 
						
						
						
						Insights header should show below banners in insights v2 
						
					 
					
						2024-07-17 10:02:55 +00:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							39f6cbd66c 
							
						 
					 
					
						
						
							
							feat: insights filters ( #7608 )  
						
						
						
					 
					
						2024-07-17 11:30:58 +02:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							13d02685d8 
							
						 
					 
					
						
						
							
							chore: db migration for integration events ( #7604 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-2435/create-migration-for-a-new-integration-events-table 
Adds a DB migration that creates the `integration_events` table:
 - `id`: Auto-incrementing primary key;
- `integration_id`: The id of the respective integration (i.e.
integration configuration);
 - `created_at`: Date of insertion;
- `state`: Integration event state, as text. Can be anything we'd like,
but I'm thinking this will be something like:
   - Success ✅ 
   - Failed ❌ 
   - SuccessWithErrors ⚠️ 
- `state_details`: Expands on the previous column with more details, as
text. Examples:
   - OK. Status code: 200
   - Status code: 429 - Rate limit reached
   - No access token provided
 - `event`: The whole event object, stored as a JSON blob;
- `details`: JSON blob with details about the integration execution.
Will depend on the integration itself, but for example:
   - Webhook: Request body
- Slack App: Message text and an array with all the channels we're
posting to
I think this gives us enough flexibility to cover all present and
(possibly) future integrations, but I'd like to hear your thoughts.
I'm also really torn on what to call this table:
- `integration_events`: Consistent with the feature name. Addons are now
called integrations, so this would be consistent with the new thing;
 - `addon_events`: Consistent with the existing `addons` table. 
					
						2024-07-17 10:02:04 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4fb5469cb5 
							
						 
					 
					
						
						
							
							chore: add integrationEvents feature flag ( #7602 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-2434/add-a-new-integrationevents-feature-flag 
Adds a new `integrationEvents` feature flag. 
					
						2024-07-17 08:25:47 +01:00 
						 
				 
			
				
					
						
							
							
								Nnenna Ndukwe 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							92a9b403e8 
							
						 
					 
					
						
						
							
							Fixing rust rebase ( #7605 )  
						
						... 
						
						
						
						<!-- 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. -->
<!-- Does it close an issue? Multiple? -->
Closes #
<!-- (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: Alvin Bryan <hello@alvin.codes> 
						
					 
					
						2024-07-16 13:23:24 -04:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d2ef9e27ed 
							
						 
					 
					
						
						
							
							refactor: insights actions container relaxed width ( #7603 )  
						
						
						
					 
					
						2024-07-16 17:27:11 +02:00 
						 
				 
			
				
					
						
							
							
								Nnenna Ndukwe 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7909f563d6 
							
						 
					 
					
						
						
							
							iOS examples ( #7599 )  
						
						... 
						
						
						
						<!-- 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. -->
<!-- Does it close an issue? Multiple? -->
Closes #
<!-- (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? --> 
						
					 
					
						2024-07-16 09:18:37 -04:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cfd20703b2 
							
						 
					 
					
						
						
							
							fix: toast error doesn't tell you what the error is ( #7601 )  
						
						... 
						
						
						
						This change improves the toast error message for auth settings by
preferring the message from the error's details list if it exists. If
it doesn't it'll still fall back to the original error message.
Before:

After:
 
						
					 
					
						2024-07-16 15:10:44 +02:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							248f879553 
							
						 
					 
					
						
						
							
							chore: remove share insights button ( #7600 )  
						
						
						
					 
					
						2024-07-16 15:10:34 +02:00 
						 
				 
			
				
					
						
							
							
								Alvin Bryan 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e33e538263 
							
						 
					 
					
						
						
							
							Rust tutorial ( #7564 )  
						
						... 
						
						
						
						I'm no Rustacean, so feel free to change things 😄 
---------
Co-authored-by: Simon Hornby <simon@getunleash.io>
Co-authored-by: Thomas Heartman <thomas@getunleash.io> 
						
					 
					
						2024-07-16 09:03:43 -04:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7b2532ea4f 
							
						 
					 
					
						
						
							
							New insights layout - feature flag ( #7598 )  
						
						... 
						
						
						
						Preparing insights component for refactoring and enhancements. 
						
					 
					
						2024-07-16 12:24:30 +00:00 
						 
				 
			
				
					
						
							
							
								Christopher Kolstad 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7ed1d770a8 
							
						 
					 
					
						
						
							
							feat: make frontend aware that OIDC can be configured through env ( #7597 )  
						
						... 
						
						
						
						Co-authored-by: Nuno Góis <github@nunogois.com> 
						
					 
					
						2024-07-16 13:53:30 +02:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e43109a2cb 
							
						 
					 
					
						
						
							
							fix: prevent long names from breaking form layouts ( #7591 )  
						
						... 
						
						
						
						This PR fixes a couple instances where long resource names would break
form and input layouts.
I've added comments to the various files to explain what they're doing
and why.
## Discussion point:
I've now set the width of project selector to be as narrow as it can
with wrapped text. In the main interfaces, it's much better, but on the
page where you can move a flag, it is quite narrow. However, I still
think it's better (no chance of it being wider than the whole screen).
We might want to find another way, but regardless, it'll only show up
with real edge cases.
## Fixes (screenies)
### API token creation form
**Files**:
- `frontend/src/component/common/FormTemplate/FormTemplate.styles.ts`
- `frontend/src/component/common/FormTemplate/FormTemplate.tsx`
Before:

After:

### New feature flag form
**Files**:
- `frontend/src/component/common/GeneralSelect/GeneralSelect.tsx`
Before:

After:

### Project select popover
**Files**
- `frontend/src/component/common/GeneralSelect/GeneralSelect.tsx`
-
`frontend/src/component/feature/FeatureView/FeatureSettings/FeatureSettingsProject/FeatureProjectSelect/FeatureProjectSelect.tsx`
Before:

After:

But also:
 
						
					 
					
						2024-07-16 10:47:46 +02:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7d88b901a3 
							
						 
					 
					
						
						
							
							feat: remove first item selection ( #7596 )  
						
						
						
					 
					
						2024-07-16 11:27:37 +03:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0a4ef3b49f 
							
						 
					 
					
						
						
							
							feat: select first item after query ( #7592 )  
						
						... 
						
						
						
						Now after search is done, the first item will be selected 
						
					 
					
						2024-07-16 09:28:34 +03:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7ed717379c 
							
						 
					 
					
						
						
							
							chore(deps): update dependency orval to v6.31.0 ( #7594 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [orval](https://togithub.com/anymaniax/orval ) | [`6.30.2` ->
`6.31.0`](https://renovatebot.com/diffs/npm/orval/6.30.2/6.31.0 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>anymaniax/orval (orval)</summary>
###
[`v6.31.0`](https://togithub.com/anymaniax/orval/releases/tag/v6.31.0 ):
Release 6.31.0
[Compare
Source](https://togithub.com/anymaniax/orval/compare/v6.30.2...v6.31.0 )
##### Bug Fixes
- applies fileExtension to schemas generated files
([#​1473](https://togithub.com/anymaniax/orval/issues/1473 ))
([68fd4fb](68fd4fbbb7https://togithub.com/anymaniax/orval/issues/1450 ))
([759ef48](759ef48399https://togithub.com/anymaniax/orval/issues/1445 ))
([f350fad](f350fadf9chttps://togithub.com/anymaniax/orval/issues/1456 ))
([f580f5d](f580f5db7fhttps://togithub.com/anymaniax/orval/issues/1455 )
- **msw:** correctly generate ref'd examples
([#​1459](https://togithub.com/anymaniax/orval/issues/1459 ))
([f296491](f296491112https://togithub.com/anymaniax/orval/issues/1466 ))
([950b547](950b5477c2https://togithub.com/anymaniax/orval/issues/1475 ))
([e1711e5](e1711e56cfhttps://togithub.com/anymaniax/orval/issues/1443 ))
([257a21f](257a21fde0https://togithub.com/anymaniax/orval/issues/1470 ))
([9404af4](9404af441fhttps://togithub.com/anymaniax/orval/issues/1457 ))
([95a2932](95a2932270📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-15 19:10:43 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fd74884433 
							
						 
					 
					
						
						
							
							chore(deps): update dependency node to v20.15.1 ( #7593 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change | Pending | Age | Adoption | Passing
| Confidence |
|---|---|---|---|---|---|---|---|---|
| [node](https://nodejs.org )
([source](https://togithub.com/nodejs/node )) | | patch | `20.15.0` ->
`20.15.1` | |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [node](https://togithub.com/nodejs/node ) | final | minor |
`20.14.0-alpine` -> `20.15.0-alpine` | `20.15.1` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
| [node](https://togithub.com/nodejs/node ) | stage | minor |
`20.14.0-alpine` -> `20.15.0-alpine` | `20.15.1` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| devDependencies | patch | [`20.14.8` ->
`20.14.10`](https://renovatebot.com/diffs/npm/@types%2fnode/20.14.8/20.14.10 )
| |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>nodejs/node (node)</summary>
###
[`v20.15.1`](https://togithub.com/nodejs/node/compare/v20.15.0...v20.15.1 )
[Compare
Source](https://togithub.com/nodejs/node/compare/v20.15.0...v20.15.1 )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-15 17:10:13 +00:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							aaf66022af 
							
						 
					 
					
						
						
							
							feat: show all results in the same time ( #7590 )  
						
						... 
						
						
						
						Previously, when the result box was loading, it returned projects and
menu items first. After the feature search response came back, it also
showed the features, but this made the component jump around too much.
Now, everything is shown when the feature result comes back, reducing
the jumping around. 
						
					 
					
						2024-07-15 16:37:11 +03:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d32990ec4c 
							
						 
					 
					
						
						
							
							fix: make loader not exlpode to 100vh in unnecessary locations ( #7589 )  
						
						... 
						
						
						
						This change fixes an issue with the loader where it would explode its
parent component to 100vh even when that was not called for.
To do so, I've added the a new `type` prop to the component, to
distinguish between `fullscreen` and `inline` usage. The `fullscreen`
type sets the height to 100vh, while the `inline` type sets it to
100%.
Now, this doesn't directly make the loader fullscreen (it just makes
sure it's at least as tall as the screen), so maybe the prop name is
misleading. I'd be happy to change it (or to even extract this into
two separate components) if that's preferable. Other potential prop
names could be `height`, which is very direct, or `usage`, which I
think better describes what we do. Like with `type`, I'd like to
communicate the intended behavior more that the actual implementation,
so I'm leaning towards either `type` or `usage`.
## Screenies
I've gone through all the usages of the loader, and checked how each one
works. Here they are:
### Loader in environment variants
I wasn't able to trigger this manually, but it's apparently there
Old (ignore the banner placement; that's firefox's screenshot tool
acting up)

New:

### Project setting forms
Old:

New:

### Rollout strategy
Old:

New (no discernible change):

### Advanced playground
Old:

New:

### Loading screen / initial redirect
Old:

New (no new component props):

New (with new props):
 
						
					 
					
						2024-07-15 14:41:45 +02:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d5cfacd6ba 
							
						 
					 
					
						
						
							
							docs: add a footnote about how archived flags don't count towards the flag limit ( #7587 )  
						
						... 
						
						
						
						This change adds a footnote to the resource limits doc, explaining
that archived flags don't count towards the flag limit. 
						
					 
					
						2024-07-15 11:03:30 +02:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5459c8da77 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @swc/core to v1.6.13 ( #7586 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@swc/core](https://swc.rs )
([source](https://togithub.com/swc-project/swc )) | [`1.6.7` ->
`1.6.13`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.6.7/1.6.13 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>swc-project/swc (@​swc/core)</summary>
###
[`v1.6.13`](https://togithub.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1613---2024-07-06 )
[Compare
Source](https://togithub.com/swc-project/swc/compare/v1.6.12...v1.6.13 )
##### Bug Fixes
- **(es/parser)** Revert
[#​9141](https://togithub.com/swc-project/swc/issues/9141 )
([#​9171](https://togithub.com/swc-project/swc/issues/9171 ))
([8b66d5e](8b66d5e89bhttps://togithub.com/swc-project/swc/issues/9170 ))
([d86ca2d](d86ca2d49ehttps://togithub.com/swc-project/swc/issues/9166 ))
([ee8dc28](ee8dc28d4dhttps://togithub.com/swc-project/swc/issues/9167 ))
([98af589](98af5890dahttps://togithub.com/swc-project/swc/issues/9164 ))
([f90574d](f90574d045https://togithub.com/swc-project/swc/blob/HEAD/CHANGELOG.md#1612---2024-07-06 )
[Compare
Source](https://togithub.com/swc-project/swc/compare/v1.6.7...v1.6.12 )
##### Bug Fixes
- **(ci)** Restore disabled CI checks
([#​9002](https://togithub.com/swc-project/swc/issues/9002 ))
([cdfd4c8](cdfd4c85e4https://togithub.com/swc-project/swc/issues/9145 ))
([8a3ae44](8a3ae44370https://togithub.com/swc-project/swc/issues/9134 ))
([e94e5e7](e94e5e70c3https://togithub.com/swc-project/swc/issues/9146 ))
([1a739b7](1a739b7928https://togithub.com/swc-project/swc/issues/9135 ))
([45f671d](45f671d8d8https://togithub.com/swc-project/swc/issues/9136 ))
([42b4caf](42b4caf573https://togithub.com/swc-project/swc/issues/9159 ))
([2bc51b8](2bc51b8ab2https://togithub.com/swc-project/swc/issues/9163 ))
([c5acafe](c5acafe386https://togithub.com/swc-project/swc/issues/9138 ))
([a08bb46](a08bb46ebdhttps://togithub.com/swc-project/swc/issues/9150 ))
([3638e97](3638e97c80https://togithub.com/swc-project/swc/issues/9143 ))
([b129343](b129343c94https://togithub.com/swc-project/swc/issues/9152 ))
([9fca4ab](9fca4ab555https://togithub.com/swc-project/swc/issues/9153 ))
([732d748](732d748d4ehttps://togithub.com/swc-project/swc/issues/9154 ))
([05c7210](05c721030ahttps://togithub.com/swc-project/swc/issues/9133 ))
([648830a](648830a9a9https://togithub.com/swc-project/swc/issues/9139 ))
([307b6f2](307b6f27a6https://togithub.com/swc-project/swc/issues/9141 ))
([9d9fe66](9d9fe6625b📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-15 00:30:32 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							463ec4a41a 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @types/node to v20.14.10 ( #7585 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`20.14.9` ->
`20.14.10`](https://renovatebot.com/diffs/npm/@types%2fnode/20.14.9/20.14.10 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-12 21:25:42 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							eb052f42eb 
							
						 
					 
					
						
						
							
							chore(deps): update dependency cypress to v13.13.0 ( #7584 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [cypress](https://cypress.io )
([source](https://togithub.com/cypress-io/cypress )) | [`13.12.0` ->
`13.13.0`](https://renovatebot.com/diffs/npm/cypress/13.12.0/13.13.0 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>cypress-io/cypress (cypress)</summary>
###
[`v13.13.0`](https://togithub.com/cypress-io/cypress/releases/tag/v13.13.0 )
[Compare
Source](https://togithub.com/cypress-io/cypress/compare/v13.12.0...v13.13.0 )
Changelog: https://docs.cypress.io/guides/references/changelog#13-13-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 becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-12 18:11:06 +00:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3ade609956 
							
						 
					 
					
						
						
							
							feat: user seats component ( #7583 )  
						
						
						
					 
					
						2024-07-12 15:39:37 +02:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9d7eec5951 
							
						 
					 
					
						
						
							
							fix: update cache, even when the total is 0 ( #7582 )  
						
						... 
						
						
						
						This PR fixes a bug where we wouldn't update the `useFeatureSearch`
hook's cached `total` value if the new total was `0`. The reason this
failed is that we would only update it if `data?.total`. Because `0` is
a falsy value, the check would fail. 
						
					 
					
						2024-07-12 14:47:50 +02:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e7627becec 
							
						 
					 
					
						
						
							
							feat: API Tokens limit - UI ( #7561 )  
						
						... 
						
						
						
						When approaching limit or limit reached for the number of API tokens, we
show a corresponding message. 
						
					 
					
						2024-07-12 14:44:46 +02:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f1b375876f 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @uiw/react-codemirror to v4.23.0 ( #7579 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror )
([source](https://togithub.com/uiwjs/react-codemirror )) | [`4.22.2` ->
`4.23.0`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.22.2/4.23.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>uiwjs/react-codemirror (@​uiw/react-codemirror)</summary>
###
[`v4.23.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.23.0 )
[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.22.2...v4.23.0 )
[](https://jaywcjlove.github.io/#/sponsor )
[](https://uiwjs.github.io/npm-unpkg/#/pkg/@​uiw/react-codemirror@4.23.0/file/README.md )
Documentation v4.23.0:
https://raw.githack.com/uiwjs/react-codemirror/05626c6/index.html \
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.22.2...v4.23.0 
```shell
npm i @​uiw/react-codemirror@4.23.0
```
- 💢  ci: Update FUNDING.yml
[`e94e34c`](https://togithub.com/uiwjs/react-codemirror/commit/e94e34c )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 💄  chore: add tea.yaml
[`9e32101`](https://togithub.com/uiwjs/react-codemirror/commit/9e32101 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🌍  website: fix theme editor issue.
[#​669](https://togithub.com/uiwjs/react-codemirror/issues/669 )
[`ad0d999`](https://togithub.com/uiwjs/react-codemirror/commit/ad0d999 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🌟  feat: exports themes style.
[#​670](https://togithub.com/uiwjs/react-codemirror/issues/670 )
[`f09f7be`](https://togithub.com/uiwjs/react-codemirror/commit/f09f7be )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-12 01:35:02 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0fa873d666 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.23.0 ( #7578 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light )
([source](https://togithub.com/uiwjs/react-codemirror )) | [`4.22.2` ->
`4.23.0`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.22.2/4.23.0 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>uiwjs/react-codemirror
(@​uiw/codemirror-theme-duotone)</summary>
###
[`v4.23.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.23.0 )
[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.22.2...v4.23.0 )
[](https://jaywcjlove.github.io/#/sponsor )
[](https://uiwjs.github.io/npm-unpkg/#/pkg/@​uiw/react-codemirror@4.23.0/file/README.md )
Documentation v4.23.0:
https://raw.githack.com/uiwjs/react-codemirror/05626c6/index.html \
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.22.2...v4.23.0 
```shell
npm i @​uiw/react-codemirror@4.23.0
```
- 💢  ci: Update FUNDING.yml
[`e94e34c`](https://togithub.com/uiwjs/react-codemirror/commit/e94e34c )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 💄  chore: add tea.yaml
[`9e32101`](https://togithub.com/uiwjs/react-codemirror/commit/9e32101 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🌍  website: fix theme editor issue.
[#​669](https://togithub.com/uiwjs/react-codemirror/issues/669 )
[`ad0d999`](https://togithub.com/uiwjs/react-codemirror/commit/ad0d999 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🌟  feat: exports themes style.
[#​670](https://togithub.com/uiwjs/react-codemirror/issues/670 )
[`f09f7be`](https://togithub.com/uiwjs/react-codemirror/commit/f09f7be )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-11 21:45:10 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a8e8f89b4f 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @tanstack/react-table to v8.19.2 ( #7577 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@tanstack/react-table](https://tanstack.com/table )
([source](https://togithub.com/TanStack/table/tree/HEAD/packages/react-table ))
| [`8.17.3` ->
`8.19.2`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table/8.17.3/8.19.2 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>TanStack/table (@​tanstack/react-table)</summary>
###
[`v8.19.2`](https://togithub.com/TanStack/table/releases/tag/v8.19.2 )
[Compare
Source](https://togithub.com/TanStack/table/compare/v8.19.1...v8.19.2 )
Version 8.19.2 - 6/30/24, 3:27 PM
#### Changes
##### Fix
- table-core: getTopRows and getBottomRows ref stability - fixes
[#​5624](https://togithub.com/TanStack/table/issues/5624 )
([#​5637](https://togithub.com/TanStack/table/issues/5637 ))
([`ace8a46`](https://togithub.com/TanStack/table/commit/ace8a46 )) by
Kevin Van Cott
##### Chore
- upgrade packages except for angular and typescript
([#​5635](https://togithub.com/TanStack/table/issues/5635 ))
([`e585a2e`](https://togithub.com/TanStack/table/commit/e585a2e )) by
Kevin Van Cott
##### Ci
- Optimise Nx workflow
([#​5636](https://togithub.com/TanStack/table/issues/5636 ))
([`18d581e`](https://togithub.com/TanStack/table/commit/18d581e )) by
Lachlan Collins
##### Docs
- lit: Add example for virtualized rows
([#​5599](https://togithub.com/TanStack/table/issues/5599 ))
([`8e1baac`](https://togithub.com/TanStack/table/commit/8e1baac )) by
[@​kadoshms](https://togithub.com/kadoshms )
#### Packages
-
[@​tanstack/table-core](https://togithub.com/tanstack/table-core )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/lit-table](https://togithub.com/tanstack/lit-table )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/react-table](https://togithub.com/tanstack/react-table )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/solid-table](https://togithub.com/tanstack/solid-table )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/vue-table](https://togithub.com/tanstack/vue-table )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/react-table-devtools](https://togithub.com/tanstack/react-table-devtools )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/angular-table](https://togithub.com/tanstack/angular-table )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/qwik-table](https://togithub.com/tanstack/qwik-table )[@​8](https://togithub.com/8 ).19.2
-
[@​tanstack/svelte-table](https://togithub.com/tanstack/svelte-table )[@​8](https://togithub.com/8 ).19.2
###
[`v8.19.1`](https://togithub.com/TanStack/table/releases/tag/v8.19.1 )
[Compare
Source](https://togithub.com/TanStack/table/compare/v8.17.3...v8.19.1 )
Version 8.19.1 - 6/29/24, 11:34 PM
#### Changes
##### Fix
- angular-table: View is not updated anymore when flexRenderDirective is
instantiated the first time with an empty value
([#​5626](https://togithub.com/TanStack/table/issues/5626 ))
([`bfa96d8`](https://togithub.com/TanStack/table/commit/bfa96d8 )) by
[@​riccardoperra](https://togithub.com/riccardoperra )
##### Ci
- Update TanStack Config to v0.8
([#​5627](https://togithub.com/TanStack/table/issues/5627 ))
([`c09d214`](https://togithub.com/TanStack/table/commit/c09d214 )) by
Lachlan Collins
- Update Nx
([#​5606](https://togithub.com/TanStack/table/issues/5606 ))
([`41f3e4e`](https://togithub.com/TanStack/table/commit/41f3e4e )) by
Lachlan Collins
##### Docs
- vue: vue subcomponents example
([#​5631](https://togithub.com/TanStack/table/issues/5631 ))
([`78b9012`](https://togithub.com/TanStack/table/commit/78b9012 )) by
Radu Suciu
- examples: Fix Qwik examples
([#​5633](https://togithub.com/TanStack/table/issues/5633 ))
([`6a4f224`](https://togithub.com/TanStack/table/commit/6a4f224 )) by
Lachlan Collins
- examples: Add example using TanStack Query and Router
([#​5625](https://togithub.com/TanStack/table/issues/5625 ))
([`80e45cc`](https://togithub.com/TanStack/table/commit/80e45cc )) by
Leonardo Montini
- table fix editable example link
([#​5628](https://togithub.com/TanStack/table/issues/5628 ))
([`bbe4ba3`](https://togithub.com/TanStack/table/commit/bbe4ba3 )) by
[@​fxamauri](https://togithub.com/fxamauri )
- Remove duplicate words
([#​5629](https://togithub.com/TanStack/table/issues/5629 ))
([`c0e6122`](https://togithub.com/TanStack/table/commit/c0e6122 )) by
Samuel Candela
- fix Header link in Header Group API
([#​5608](https://togithub.com/TanStack/table/issues/5608 ))
([`5edd993`](https://togithub.com/TanStack/table/commit/5edd993 )) by
Lucas Vargas
- pagination: rephrase autoResetPageIndex behaviour
([#​5601](https://togithub.com/TanStack/table/issues/5601 ))
([`22e1ac4`](https://togithub.com/TanStack/table/commit/22e1ac4 )) by
Leonardo Montini
- react-table: add dependency because columnSizeVars does not change
([#​5597](https://togithub.com/TanStack/table/issues/5597 ))
([`f7e69bc`](https://togithub.com/TanStack/table/commit/f7e69bc )) by
YoonMinSang
- angular-table: Adding documentation for custom component support.
([#​5590](https://togithub.com/TanStack/table/issues/5590 ))
([`d6839d6`](https://togithub.com/TanStack/table/commit/d6839d6 )) by
mamerto-g
##### Tests
- Move tests folders
([#​5634](https://togithub.com/TanStack/table/issues/5634 ))
([`f159b04`](https://togithub.com/TanStack/table/commit/f159b04 )) by
Lachlan Collins
#### Packages
-
[@​tanstack/table-core](https://togithub.com/tanstack/table-core )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/angular-table](https://togithub.com/tanstack/angular-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/qwik-table](https://togithub.com/tanstack/qwik-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/lit-table](https://togithub.com/tanstack/lit-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/react-table](https://togithub.com/tanstack/react-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/solid-table](https://togithub.com/tanstack/solid-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/svelte-table](https://togithub.com/tanstack/svelte-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/vue-table](https://togithub.com/tanstack/vue-table )[@​8](https://togithub.com/8 ).19.1
-
[@​tanstack/react-table-devtools](https://togithub.com/tanstack/react-table-devtools )[@​8](https://togithub.com/8 ).19.1
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-11 19:24:10 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d9794d5554 
							
						 
					 
					
						
						
							
							chore(deps): update dependency vite to v5.3.3 ( #7576 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://vitejs.dev )
([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite )) |
[`5.3.1` -> `5.3.3`](https://renovatebot.com/diffs/npm/vite/5.3.1/5.3.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v5.3.3`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small533-2024-07-03-small )
[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.3.2...v5.3.3 )
- fix: lazily evaluate \__vite\_\_mapDeps files
([#​17602](https://togithub.com/vitejs/vite/issues/17602 ))
([dafff4a](https://togithub.com/vitejs/vite/commit/dafff4a )), closes
[#​17602](https://togithub.com/vitejs/vite/issues/17602 )
- fix(deps): update all non-major dependencies
([#​17590](https://togithub.com/vitejs/vite/issues/17590 ))
([012490c](https://togithub.com/vitejs/vite/commit/012490c )), closes
[#​17590](https://togithub.com/vitejs/vite/issues/17590 )
- fix(lib): remove pure CSS dynamic import
([#​17601](https://togithub.com/vitejs/vite/issues/17601 ))
([055f1c1](https://togithub.com/vitejs/vite/commit/055f1c1 )), closes
[#​17601](https://togithub.com/vitejs/vite/issues/17601 )
- fix(proxy): replace changeOrigin changes in 5.3.0 with new
rewriteWsOrigin option
([#​17563](https://togithub.com/vitejs/vite/issues/17563 ))
([14c3d49](https://togithub.com/vitejs/vite/commit/14c3d49 )), closes
[#​17563](https://togithub.com/vitejs/vite/issues/17563 )
###
[`v5.3.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small532-2024-06-27-small )
[Compare
Source](https://togithub.com/vitejs/vite/compare/v5.3.1...v5.3.2 )
- fix(client): uniform variable `location`
([#​17528](https://togithub.com/vitejs/vite/issues/17528 ))
([a8e2f6f](https://togithub.com/vitejs/vite/commit/a8e2f6f )), closes
[#​17528](https://togithub.com/vitejs/vite/issues/17528 )
- fix(deps): update all non-major dependencies
([#​17494](https://togithub.com/vitejs/vite/issues/17494 ))
([bf123f2](https://togithub.com/vitejs/vite/commit/bf123f2 )), closes
[#​17494](https://togithub.com/vitejs/vite/issues/17494 )
- fix(typescript): correctly expand ${configDir} in tsconfig.json
([#​17576](https://togithub.com/vitejs/vite/issues/17576 ))
([24c799b](https://togithub.com/vitejs/vite/commit/24c799b )), closes
[#​17576](https://togithub.com/vitejs/vite/issues/17576 )
- chore: fix some comments
([#​17495](https://togithub.com/vitejs/vite/issues/17495 ))
([ec16a5e](https://togithub.com/vitejs/vite/commit/ec16a5e )), closes
[#​17495](https://togithub.com/vitejs/vite/issues/17495 )
- chore(deps): update all non-major dependencies
([#​17553](https://togithub.com/vitejs/vite/issues/17553 ))
([a33a97f](https://togithub.com/vitejs/vite/commit/a33a97f )), closes
[#​17553](https://togithub.com/vitejs/vite/issues/17553 )
- chore(deps): update dependency eslint to v9
([#​16661](https://togithub.com/vitejs/vite/issues/16661 ))
([6c10662](https://togithub.com/vitejs/vite/commit/6c10662 )), closes
[#​16661](https://togithub.com/vitejs/vite/issues/16661 )
- chore(deps): update es-module-lexer to 1.5.4
([#​17555](https://togithub.com/vitejs/vite/issues/17555 ))
([2d6672f](https://togithub.com/vitejs/vite/commit/2d6672f )), closes
[#​17555](https://togithub.com/vitejs/vite/issues/17555 )
- refactor(optimizer): use early continues
([#​17551](https://togithub.com/vitejs/vite/issues/17551 ))
([7c06ef0](https://togithub.com/vitejs/vite/commit/7c06ef0 )), closes
[#​17551](https://togithub.com/vitejs/vite/issues/17551 )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-11 17:13:05 +00:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f0b49db06a 
							
						 
					 
					
						
						
							
							docs: document resource limits ( #7567 )  
						
						... 
						
						
						
						This PR adds the first version of the resource limit documentation. It
also corrects the link in the `Limit` component.
In addition to the new limits from the soft limits project, I've also
added the limits from the signals project.
## Discussion points
I've set the Pro resource limits to projects and envs to the same value
as on the [plans & pricing](https://www.getunleash.io/pricing ) page
instead of the actual hard soft limit. I think that makes messaging
easier and more consistent.
However, this does present us with a bit of a problem. Because we've
been pretty consistent at saying "no, you can't have more projects" for
Pro. But we're saying it's easy to change (when in actuality the limit
isn't enforced 💁🏼  )
## Screenie
It looks a little bit like this (but check the files or preview for the
actual text content)
 
						
					 
					
						2024-07-11 14:10:49 +02:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d440d3230a 
							
						 
					 
					
						
						
							
							feat: show orphaned API tokens ( #7569 )  
						
						... 
						
						
						
						Add a visual indication that a token was scoped to projects that have
been deleted. 
						
					 
					
						2024-07-11 14:06:22 +02:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b9c3d101ba 
							
						 
					 
					
						
						
							
							feat: statistics for orphaned tokens ( #7568 )  
						
						... 
						
						
						
						Added metrics for orphaned tokens and modified `createTokenRowReducer` to exclude tokens in v1 format. 
						
					 
					
						2024-07-11 11:39:38 +02:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d7adee3f64 
							
						 
					 
					
						
						
							
							chore: fix project name overflow ( #7575 )  
						
						... 
						
						
						
						Fix overflow in long project names. Show ellipsis where it overflows.


 
						
					 
					
						2024-07-11 10:00:38 +02:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7b7c78fe5d 
							
						 
					 
					
						
						
							
							chore(deps): update dependency react-router to v6.24.1 ( #7574 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-router](https://togithub.com/remix-run/react-router )
([source](https://togithub.com/remix-run/react-router/tree/HEAD/packages/react-router ))
| [`6.24.0` ->
`6.24.1`](https://renovatebot.com/diffs/npm/react-router/6.24.0/6.24.1 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>remix-run/react-router (react-router)</summary>
###
[`v6.24.1`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#6241 )
[Compare
Source](https://togithub.com/remix-run/react-router/compare/react-router@6.24.0...react-router@6.24.1 )
##### Patch Changes
- When using `future.v7_relativeSplatPath`, properly resolve relative
paths in splat routes that are children of pathless routes
([#​11633](https://togithub.com/remix-run/react-router/pull/11633 ))
-   Updated dependencies:
    -   `@remix-run/router@1.17.1`
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-11 01:58:53 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							58a9d3d84a 
							
						 
					 
					
						
						
							
							chore(deps): update dependency qs to v6.12.2 ( #7573 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [qs](https://togithub.com/ljharb/qs ) | [`6.12.1` ->
`6.12.2`](https://renovatebot.com/diffs/npm/qs/6.12.1/6.12.2 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>ljharb/qs (qs)</summary>
###
[`v6.12.2`](https://togithub.com/ljharb/qs/blob/HEAD/CHANGELOG.md#6122 )
[Compare
Source](https://togithub.com/ljharb/qs/compare/v6.12.1...v6.12.2 )
- \[Fix] `parse`: parse encoded square brackets
([#​506](https://togithub.com/ljharb/qs/issues/506 ))
-   \[readme] add CII best practices badge
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-10 21:24:20 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0138acdbf8 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @swc/core to v1.6.7 ( #7571 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@swc/core](https://swc.rs )
([source](https://togithub.com/swc-project/swc )) | [`1.6.6` ->
`1.6.7`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.6.6/1.6.7 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>swc-project/swc (@​swc/core)</summary>
###
[`v1.6.7`](https://togithub.com/swc-project/swc/blob/HEAD/CHANGELOG.md#167---2024-07-03 )
[Compare
Source](https://togithub.com/swc-project/swc/compare/v1.6.6...v1.6.7 )
##### Bug Fixes
- **(es/compat)** Do not reuse span
([#​9117](https://togithub.com/swc-project/swc/issues/9117 ))
([6520052](6520052432026ff7ef0chttps://togithub.com/swc-project/swc/issues/9124 ))
([6b3c0da](6b3c0da755https://togithub.com/swc-project/swc/issues/8750 ))
([570c47a](570c47a9achttps://togithub.com/swc-project/swc/issues/9023 ))
([18d6277](18d6277e4chttps://togithub.com/swc-project/swc/issues/9118 ))
([72021de](72021def15https://togithub.com/swc-project/swc/issues/9127 ))
([dfee5f8](dfee5f838bhttps://togithub.com/swc-project/swc/issues/9128 ))
([c6d6db3](c6d6db3661https://togithub.com/swc-project/swc/issues/9119 ))
([07c3054](07c3054847https://togithub.com/swc-project/swc/issues/9125 ))
([f409bc0](f409bc09d5📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-10 18:12:26 +00:00 
						 
				 
			
				
					
						
							
							
								Christopher Kolstad 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8bee33fa48 
							
						 
					 
					
						
						
							
							task: added flag to remove unsafe inline style src header ( #7566 )  
						
						... 
						
						
						
						Our CSP reports that unsafe-inline is not recommended for styleSrc. This
PR adds a flag for making it possible to remove this element of our CSP
headers. It should allow us to see what (if anything) breaks hard. 
						
					 
					
						2024-07-10 14:36:28 +02:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3fe110f155 
							
						 
					 
					
						
						
							
							feat: exclude archived features in max reporting ( #7559 )  
						
						
						
					 
					
						2024-07-10 09:11:22 +02:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d9ae0f3f59 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @swc/core to v1.6.6 ( #7565 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@swc/core](https://swc.rs )
([source](https://togithub.com/swc-project/swc )) | [`1.6.5` ->
`1.6.6`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.6.5/1.6.6 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>swc-project/swc (@​swc/core)</summary>
###
[`v1.6.6`](https://togithub.com/swc-project/swc/blob/HEAD/CHANGELOG.md#166---2024-06-29 )
[Compare
Source](https://togithub.com/swc-project/swc/compare/v1.6.5...v1.6.6 )
##### Bug Fixes
- **(es/lexer)** Fix lexing of `\r\n` in JSX
([#​9112](https://togithub.com/swc-project/swc/issues/9112 ))
([2a0ebec](2a0ebec0f5https://togithub.com/swc-project/swc/issues/9100 ))
([719b7c5](719b7c54f6https://togithub.com/swc-project/swc/issues/9102 ))
([2a490ad](2a490ad0b2https://togithub.com/swc-project/swc/issues/9105 ))
([c0602c8](c0602c81dbhttps://togithub.com/swc-project/swc/issues/9104 ))
([8ef30cc](8ef30cc08c📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-10 00:27:46 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							321f3cdfb5 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @cyclonedx/yarn-plugin-cyclonedx to v1.0.1 ( #7563 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@cyclonedx/yarn-plugin-cyclonedx](https://togithub.com/CycloneDX/cyclonedx-node-yarn )
| [`1.0.0` ->
`1.0.1`](https://renovatebot.com/diffs/npm/@cyclonedx%2fyarn-plugin-cyclonedx/1.0.0/1.0.1 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>CycloneDX/cyclonedx-node-yarn
(@​cyclonedx/yarn-plugin-cyclonedx)</summary>
###
[`v1.0.1`](https://togithub.com/CycloneDX/cyclonedx-node-yarn/blob/HEAD/HISTORY.md#101----2024-06-27 )
[Compare
Source](https://togithub.com/CycloneDX/cyclonedx-node-yarn/compare/v1.0.0...v1.0.1 )
-   Fixed
- Writing output-files on Windows systems ([#​145] via
[#​146])
[#​145]:
https://togithub.com/CycloneDX/cyclonedx-node-yarn/issues/145 
[#​146]:
https://togithub.com/CycloneDX/cyclonedx-node-yarn/pull/146 
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-09 22:13:53 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							063d9e81d1 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @biomejs/biome to v1.8.3 ( #7562 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@biomejs/biome](https://biomejs.dev )
([source](https://togithub.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome ))
| [`1.8.2` ->
`1.8.3`](https://renovatebot.com/diffs/npm/@biomejs%2fbiome/1.8.2/1.8.3 )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>biomejs/biome (@​biomejs/biome)</summary>
###
[`v1.8.3`](https://togithub.com/biomejs/biome/blob/HEAD/CHANGELOG.md#v183-2022-06-27 )
[Compare
Source](54b4c9a390...c28d5978c1https://togithub.com/biomejs/biome/issues/3104 ) by
suppressing node warnings when using `biome migrate`. Contributed by
[@​SuperchupuDev](https://togithub.com/SuperchupuDev )
- Force colors to be off when using the GitHub reporter to properly
create annotations in GitHub actions
([#​3148](https://togithub.com/biomejs/biome/issues/3148 )).
Contributed by [@​Sec-ant](https://togithub.com/Sec-ant )
##### Parser
##### Bug fixes
- Implement [CSS unicode
range](https://togithub.com/biomejs/biome/pull/3251 ). Contributed by
[@​denbezrukov](https://togithub.com/denbezrukov )
##### Formatter
##### Bug fixes
- Fix [#​3184](https://togithub.com/biomejs/biome/issues/3184 ) CSS
formatter converts custom identifiers to lowercase. Contributed by
[@​denbezrukov](https://togithub.com/denbezrukov )
- Fix [#​3256](https://togithub.com/biomejs/biome/issues/3256 )
constant crashes when editing css files
[#​3256](https://togithub.com/biomejs/biome/issues/3256 ).
Contributed by [@​denbezrukov](https://togithub.com/denbezrukov )
##### Linter
##### New features
- Add `nursery/useDeprecatedReason` rule. Contributed by
[@​vohoanglong0107](https://togithub.com/vohoanglong0107 ).
- Add
[nursery/noExportedImports](https://biomejs.dev/linter/rules/no-exported-imports/ ).
Contributed by [@​Conaclos](https://togithub.com/Conaclos )
##### Bug fixes
- `useConsistentArrayType` and `useShorthandArrayType` now ignore
`Array` in the `extends` and `implements` clauses. Fix
[#​3247](https://togithub.com/biomejs/biome/issues/3247 ).
Contributed by [@​Conaclos](https://togithub.com/Conaclos )
- Fixes [#​3066](https://togithub.com/biomejs/biome/issues/3066 )
by taking into account the dependencies declared in the `package.json`.
Contributed by [@​ematipico](https://togithub.com/ematipico )
- The code action of the `useArrowFunction` rule now preserves a
trailing comma when there is only a single type parameter in the arrow
function and JSX is enabled. Fixes
[#​3292](https://togithub.com/biomejs/biome/issues/3292 ).
Contributed by [@​Sec-ant](https://togithub.com/Sec-ant )
##### Enhancements
- Enhance tailwind sorting lint rule
[#​1274](https://togithub.com/biomejs/biome/issues/1274 ) with
variant support.
Every preconfigured variant is assigned a `weight` that concurs on
establishing the output sorting order.
Since nesting variants on the same utility class is possible, the
resulting `weight` is the Bitwise XOR of all the variants weight for
that class.
Dynamic variants (e.g. `has-[.custom-class]`, `group-[:checked]`) are
also supported and they take the `weight` of their base variant name the
custom value attached (e.g. `has-[.custom-class]` takes `has` weight).
Arbitrary variants (e.g. `[&nth-child(2)]`) don't have a weight assigned
and they are placed after every known variant.
Classes with the same amount of arbitrary variants follow
lexicographical order. The class that has the highest number of nested
arbitrary variants is placed last.
Screen variants (e.g. `sm:`, `max-md:`, `min-lg:`) are not supported
yet.
    Contributed by [@​lutaok](https://togithub.com/lutaok )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦  **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-09 18:25:17 +00:00 
						 
				 
			
				
					
						
							
							
								Christopher Kolstad 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f65afff6c1 
							
						 
					 
					
						
						
							
							feat: Disallow repeating last 5 passwords. ( #7552 )  
						
						... 
						
						
						
						We'll store hashes for the last 5 passwords, fetch them all for the user
wanting to change their password, and make sure the password does not
verify against any of the 5 stored hashes.
Includes some password-related UI/UX improvements and refactors. Also
some fixes related to reset password rate limiting (instead of an
unhandled exception), and token expiration on error.
---------
Co-authored-by: Nuno Góis <github@nunogois.com> 
						
					 
					
						2024-07-09 16:18:35 +02:00 
						 
				 
			
				
					
						
							
							
								Christopher Kolstad 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ef3ef877b3 
							
						 
					 
					
						
						
							
							chore: bump biome to 1.8.3 ( #7540 )  
						
						... 
						
						
						
						Small bump here, no extra changes needed 
						
					 
					
						2024-07-09 16:01:22 +02:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							407de36c1b 
							
						 
					 
					
						
						
							
							chore(deps): update docker/build-push-action action to v6 ( #7508 )  
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[docker/build-push-action](https://togithub.com/docker/build-push-action )
| action | major | `v5` -> `v6` |
---
### Release Notes
<details>
<summary>docker/build-push-action (docker/build-push-action)</summary>
###
[`v6`](https://togithub.com/docker/build-push-action/compare/v5...v6 )
[Compare
Source](https://togithub.com/docker/build-push-action/compare/v5...v6 )
</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**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-07-09 16:01:05 +02:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e2c6d468e4 
							
						 
					 
					
						
						
							
							Chore: use createApiTokenService instead of newing it up ( #7560 )  
						
						... 
						
						
						
						PR #7519  introduced the pattern of using `createApiTokenService` instead
of newing it up. This usage was introduced in a concurrent PR (#7503 ),
so we're just cleaning up and making the usage consistent. 
						
					 
					
						2024-07-09 14:11:56 +02:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2e5d81cb89 
							
						 
					 
					
						
						
							
							chore: delete project api tokens when last mapped project is removed ( #7503 )  
						
						... 
						
						
						
						Deletes API tokens bound to specific projects when the last project they're mapped to is deleted.
---------
Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com>
Co-authored-by: Thomas Heartman <thomas@getunleash.io> 
						
					 
					
						2024-07-09 13:49:26 +02:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f6c05eb877 
							
						 
					 
					
						
						
							
							API tokens - virtualized table ( #7531 )  
						
						... 
						
						
						
						API tokens table in both main list and project API tokens list can now
support more items - it doesn't slow the browser down if there is >500
items. 
						
					 
					
						2024-07-09 13:22:55 +02:00