Mert Şişmanoğlu 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							99f28dbccd 
							
						 
					 
					
						
						
							
							chore(renovate): Update renovate configuration json file ( #9016 )  
						
						... 
						
						
						
						## About the changes
The last Renovate configuration was done 10 months ago and Renovate
changed the configuration schema during this time. I made some schema
changes for you.
Added global 'dependencies' label to all Renovate PRs, which is also used for Dependabot.
### Changes list
- Add JSON schema | A JSON best practice for working with structured
datas.
- Migrate deprecated packageRules to new versions
- Rename `stabilityDays` to `minimumReleaseAge` | This is basically a
modern version of #2768 
  - Rename `matchPackagePatterns` to `matchPackageNames`
- Add 'dependencies' label to renovate PRs 
						
					 
					
						2025-01-14 09:57:50 +01:00 
						 
				 
			
				
					
						
							
							
								Thomas Heartman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6a7dcb9c46 
							
						 
					 
					
						
						
							
							fix(1-3247): remove explicit "in project" text from change request event text ( #9091 )  
						
						... 
						
						
						
						We got an event for a scheduled application success today that looked a
little something like this:
> Successfully applied the scheduled change request #1168  in the
production environment in project eg by gaston in project eg.
Notice that we're stating the project twice (once with a link (removed
here) and once without).
This PR removes the redundancy in CR events:
The project is already included in the `changeRequest` variable, which
is populated in `src/lib/addons/feature-event-formatter-md.ts` by
the `generateChangeRequestLink` function.
The (current) definition is:
```typescript
    generateChangeRequestLink(event: IEvent): string | undefined {
        const { preData, data, project, environment } = event;
        const changeRequestId =
            data?.changeRequestId || preData?.changeRequestId;
        if (project && changeRequestId) {
            const url = `${this.unleashUrl}/projects/${project}/change-requests/${changeRequestId}`;
            const text = `#${changeRequestId}`;
            const featureLink = this.generateFeatureLink(event);
            const featureText = featureLink
                ? ` for feature flag ${this.bold(featureLink)}`
                : '';
            const environmentText = environment
                ? ` in the ${this.bold(environment)} environment`
                : '';
            const projectLink = this.generateProjectLink(event);
            const projectText = project
                ? ` in project ${this.bold(projectLink)}`
                : '';
            if (this.linkStyle === LinkStyle.SLACK) {
                return `${this.bold(`<${url}|${text}>`)}${featureText}${environmentText}${projectText}`;
            } else {
                return `${this.bold(`[${text}](${url})`)}${featureText}${environmentText}${projectText}`;
            }
        }
    }
```
Which includes links, env, and project info already. 
						
					 
					
						2025-01-14 09:54:19 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1b4d1df84f 
							
						 
					 
					
						
						
							
							fix: force updated_at date to change ( #9092 )  
						
						
						
					 
					
						2025-01-13 15:51:29 +01:00 
						 
				 
			
				
					
						
							
							
								Gastón Fournier 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fea3d89fca 
							
						 
					 
					
						
						
							
							feat: Remove create admin token from API ( #9090 )  
						
						... 
						
						
						
						Admin tokens have been [deprecated in previous
versions](https://docs.getunleash.io/reference/api-tokens-and-client-keys#admin-tokens )
encouraging the usage of personal access tokens for better traceability
of changes within Unleash.
This removes the ability of creating them from the API 
						
					 
					
						2025-01-13 14:49:56 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ce73190241 
							
						 
					 
					
						
						
							
							feat: unique connection gauge metric ( #9089 )  
						
						
						
					 
					
						2025-01-13 14:06:09 +01:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							86bbe62abe 
							
						 
					 
					
						
						
							
							fix: remove archived features from delta ( #9088 )  
						
						... 
						
						
						
						Weird thing is that I could not reproduce it locally, but I have a
theory to fix our delta mismatch.
Revisions are added to the delta every second.
This means that in a single revision, you can disable an event, remove a
dependency, and archive it simultaneously. These actions are usually
performed together since archiving an event will inherently disable it,
remove its dependencies, and so on.
Currently, we observe these events happening within the same revision.
However, since we were checking `.updated` last, the event was always
removed from the `removedMap`.
Now, by checking `.removed` last, the archive action will properly
propagate to the revision. 
						
					 
					
						2025-01-13 14:36:34 +02:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3759b5a75d 
							
						 
					 
					
						
						
							
							chore: fix smaller broken UI things in release templates ( #9084 )  
						
						
						
					 
					
						2025-01-13 13:02:06 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b0b2836c67 
							
						 
					 
					
						
						
							
							test: fix timezone-related inconsistencies in tests ( #9083 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3132/fix-tests-to-make-them-timezone-agnostic 
Noticed our tests failed for me locally since I'm on a different
timezone (Lisbon time, GMT).
This fixes these timezone-related inconsistencies.
### Before


### After
 
					
						2025-01-13 11:35:30 +00:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e559718581 
							
						 
					 
					
						
						
							
							feat: unique connection counting ( #9074 )  
						
						
						
					 
					
						2025-01-13 11:56:57 +01:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							af1b6c8c37 
							
						 
					 
					
						
						
							
							migration: cors root role permission ( #9080 )  
						
						... 
						
						
						
						after https://github.com/Unleash/unleash/pull/8996  
						
					 
					
						2025-01-13 09:19:27 +01:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cc55d8dfa8 
							
						 
					 
					
						
						
							
							chore: improve create template fields for name+description ( #9075 )  
						
						
						
					 
					
						2025-01-10 14:39:17 +01:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fda2252957 
							
						 
					 
					
						
						
							
							fix: etag support RFC 9110 standard ( #9077 )  
						
						... 
						
						
						
						ETag must be in double quotes based on standard. Fixing it.
```
If-None-Match: "<etag_value>" 
						
					 
					
						2025-01-10 15:39:00 +02:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							67068afb13 
							
						 
					 
					
						
						
							
							chore: fix migration file ( #9079 )  
						
						
						
					 
					
						2025-01-10 13:41:07 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f47de55d67 
							
						 
					 
					
						
						
							
							chore: fix migration file ( #9078 )  
						
						
						
					 
					
						2025-01-10 13:36:34 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5a1f1a00ba 
							
						 
					 
					
						
						
							
							feat: migration for unique connections ( #9076 )  
						
						
						
					 
					
						2025-01-10 13:25:09 +01:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							91cebc5afc 
							
						 
					 
					
						
						
							
							fix: text overflow on project users access page ( #8853 )  
						
						... 
						
						
						
						Remove scrollbar in project settings - user roles 
						
					 
					
						2025-01-10 09:51:42 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							537ef42f7d 
							
						 
					 
					
						
						
							
							chore: mark SSO as an Enterprise only feature ( #9071 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3124/mark-sso-as-an-enterprise-only-feature 
For all intents and purposes, SSO seems to have always been an
Enterprise only feature. It just wasn't very clear previously.
See: https://github.com/Unleash/unleash/pull/9045/files#r1899635618 
 
					
						2025-01-09 13:07:28 +00:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0dbecd78a0 
							
						 
					 
					
						
						
							
							chore: featureToggleService use optionallyDisableFeature instead of duplicating logic ( #9073 )  
						
						
						
					 
					
						2025-01-09 11:29:00 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b0434c9a84 
							
						 
					 
					
						
						
							
							chore: remove unused newHostedAuthHandler flag ( #9070 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3106/clean-up-post-unified-auth-handler 
Cleans up this flag that we never ended up using anyways. 
					
						2025-01-09 09:13:18 +00:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							161fa131c7 
							
						 
					 
					
						
						
							
							chore: remove connection id from tracking ( #9072 )  
						
						
						
					 
					
						2025-01-09 09:46:04 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							135c1bd917 
							
						 
					 
					
						
						
							
							chore: remove oidcRedirect flag ( #9069 )  
						
						
						
					 
					
						2025-01-08 14:24:56 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cef10eee02 
							
						 
					 
					
						
						
							
							feat: Unique connection tracking ( #9067 )  
						
						
						
					 
					
						2025-01-08 13:36:40 +01:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							73515d78ce 
							
						 
					 
					
						
						
							
							chore: remove simplifyProjectOverview flag ( #9068 )  
						
						... 
						
						
						
						Remove the flag and delete unused components. 
						
					 
					
						2025-01-08 14:10:40 +02:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e7269473f3 
							
						 
					 
					
						
						
							
							chore: new hosted auth handler ( #9045 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3074/add-sign-in-with-google-to-our-hosted-instances-when-only-password-is 
https://linear.app/unleash/issue/2-3078/allow-viewer-access-from-auth-app-for-payg 
Adds support for a new unified hosted auth handler.
This new auth handler provides a Google sign in option in case you don't
have an SSO provider configured. It also provides a way for auth-app to
sign in with Unleash's read-only user for Pro and Enterprise PAYG
instances.
Check the PR comments for more details. 
					
						2025-01-08 10:02:35 +00:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							608a3986af 
							
						 
					 
					
						
						
							
							migration: read logs permission ( #9049 )  
						
						... 
						
						
						
						continuation of https://github.com/Unleash/unleash/pull/8996  
						
					 
					
						2025-01-08 10:52:41 +01:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							55f7de0d59 
							
						 
					 
					
						
						
							
							chore: improve the release plan template accordion looks ( #9065 )  
						
						
						
					 
					
						2025-01-08 10:25:07 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							893f7834ad 
							
						 
					 
					
						
						
							
							chore: upgrade node sdk with x-headers ( #9066 )  
						
						
						
					 
					
						2025-01-08 10:04:49 +01:00 
						 
				 
			
				
					
						
							
							
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							dc4a760172 
							
						 
					 
					
						
						
							
							feat: read logs and update cors maintenance root-role permissions ( #8996 )  
						
						... 
						
						
						
						Additional granular permissions related to instance-level access.
- CORS settings
- Reading logs (both instance logs and login history)
---------
Co-authored-by: Gastón Fournier <gaston@getunleash.io> 
						
					 
					
						2025-01-08 10:03:40 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cb77b106bd 
							
						 
					 
					
						
						
							
							chore: make grid group cards have a consistent height ( #9064 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3114/group-cards-should-have-a-consistent-height-in-their-grid 
Makes the group cards height consistent in the grid.
<img width="1034" alt="image"
src="https://github.com/user-attachments/assets/27c2dbd4-4a72-419b-bbad-39a4309e5c30 "
/> 
					
						2025-01-06 14:54:36 +00:00 
						 
				 
			
				
					
						
							
							
								Fredrik Strand Oseberg 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2363d99fe7 
							
						 
					 
					
						
						
							
							feat: add migration ( #8891 )  
						
						
						
					 
					
						2025-01-06 14:38:56 +01:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8bf1b783e9 
							
						 
					 
					
						
						
							
							fix: delta do not return archived as changed ( #9062 )  
						
						... 
						
						
						
						Our delta API was returning archived feature as updated. Now making sure
we do not put `archived-feature `event into `updated` event array.
Also stop returning removed as complex object. 
						
					 
					
						2025-01-06 14:48:30 +02:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							13fb7c4a63 
							
						 
					 
					
						
						
							
							feat: making context service transactional ( #9063 )  
						
						
						
					 
					
						2025-01-06 13:38:09 +01:00 
						 
				 
			
				
					
						
							
							
								gitar-bot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1c0431365e 
							
						 
					 
					
						
						
							
							[Gitar] Cleaning up stale flag: licensedUsers with value true ( #9061 )  
						
						... 
						
						
						
						[](https://gitar.ai )
This automated PR permanently enables the `licensedUsers` feature flag.
  
  ---
This automated PR was generated by [Gitar](https://gitar.ai ). View
[docs](https://gitar.ai/docs ).
---------
Co-authored-by: Gitar <noreply@gitar.ai> 
						
					 
					
						2025-01-06 10:44:13 +02:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c56200e030 
							
						 
					 
					
						
						
							
							feat: ability to delete single legal values ( #9058 )  
						
						... 
						
						
						
						Co-authored-by: Thomas Heartman <thomas@getunleash.io> 
						
					 
					
						2025-01-03 15:38:10 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							790d813455 
							
						 
					 
					
						
						
							
							fix: save context button spacing ( #9059 )  
						
						
						
					 
					
						2025-01-03 15:01:46 +01:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4f6e581dec 
							
						 
					 
					
						
						
							
							chore: reorder release plan template UI files ( #9057 )  
						
						
						
					 
					
						2025-01-03 14:38:27 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							20fda186b5 
							
						 
					 
					
						
						
							
							feat: ability to upsert single legal values ( #9056 )  
						
						
						
					 
					
						2025-01-03 14:18:36 +01:00 
						 
				 
			
				
					
						
							
							
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7893d3fbd3 
							
						 
					 
					
						
						
							
							feat: rework frontend validation for release plan templates ( #9055 )  
						
						
						
					 
					
						2025-01-03 13:19:15 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3c16616c36 
							
						 
					 
					
						
						
							
							chore: improve group projects tooltip behavior ( #9054 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3111/improve-group-card-projects-tooltip 
Slight improvement to the group card projects tooltip.
This handles very long project names a little bit better by allowing
them to break into new lines.
 
					
						2025-01-03 11:10:38 +00:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7eced2962f 
							
						 
					 
					
						
						
							
							chore: new user avatar tooltip ( #9050 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3109/improve-avatar-tooltip 
I noticed our current user avatar tooltip is a bit poor.
This PR tries to improve it a bit using only the data we already have
available, without any drastic changes.
### Before

### After

### Other examples after the changes




---------
Co-authored-by: Thomas Heartman <thomas@getunleash.io> 
					
						2025-01-03 10:26:02 +00:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4a52247bd9 
							
						 
					 
					
						
						
							
							chore: export context service factory ( #9053 )  
						
						
						
					 
					
						2025-01-03 10:41:34 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							eb0b7d5e4f 
							
						 
					 
					
						
						
							
							refactor: Context service feature oriented ( #9052 )  
						
						
						
					 
					
						2025-01-03 10:23:47 +01:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9003a7eb91 
							
						 
					 
					
						
						
							
							fix: remove archived from delta ( #9051 )  
						
						
						
					 
					
						2025-01-03 09:44:25 +02:00 
						 
				 
			
				
					
						
							
							
								Alvin Bryan 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							306f726991 
							
						 
					 
					
						
						
							
							JavaScript tutorial ( #8989 )  
						
						... 
						
						
						
						This is using the JavaScript browser SDK, not Node.js 😄 
PS: Corgis 🐶 
PPS: [Preview
Link](https://unleash-docs-git-alvin-js-tutorial-unleash-team.vercel.app/feature-flag-tutorials/javascript ) 
						
					 
					
						2025-01-02 16:35:44 +01:00 
						 
				 
			
				
					
						
							
							
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							67c1274a1b 
							
						 
					 
					
						
						
							
							chore: group cards redesign ( #9048 )  
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-3108/cards-design-groups 
Redesigns the group cards.
Like instructed in the task, I took inspiration from the project and
integration cards, along with the Figma sketch.
Also includes a new `Truncator` generic helper component.
### Before

### After

Hovering over the "X projects" label reveals the projects the group
belongs to. You can navigate to any project by clicking its badge.

Truncated titles and descriptions show a tooltip with the full text on
hover.

 
					
						2025-01-02 15:08:15 +00:00 
						 
				 
			
				
					
						
							
							
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							54d6bd5b86 
							
						 
					 
					
						
						
							
							feat: log warning if there is diff between client/features and delta api ( #9047 )  
						
						... 
						
						
						
						Log out the diff and warn if there is gap between old logic and new
delta. 
						
					 
					
						2025-01-02 12:59:33 +02:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e0b4e258dc 
							
						 
					 
					
						
						
							
							feat: grouping of project level roles in autocomplete ( #9046 )  
						
						
						
					 
					
						2024-12-31 10:44:48 +01:00 
						 
				 
			
				
					
						
							
							
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							18cd0e2cdb 
							
						 
					 
					
						
						
							
							fix: legal values styling in segments ( #9044 )  
						
						
						
					 
					
						2024-12-31 08:45:17 +01:00 
						 
				 
			
				
					
						
							
							
								Fredrik Strand Oseberg 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							71eb6b1511 
							
						 
					 
					
						
						
							
							feat: delta api  e2e test ( #9003 )  
						
						... 
						
						
						
						WIP PR for delta-api tests.
---------
Co-authored-by: sjaanus <sellinjaanus@gmail.com> 
						
					 
					
						2024-12-30 14:16:41 +02:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							563352909a 
							
						 
					 
					
						
						
							
							fix(deps): update docusaurus monorepo to v3.6.3 ( #8800 )  
						
						... 
						
						
						
						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.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2fcore/3.6.0/3.6.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/ )
|
|
[@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.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2fmodule-type-aliases/3.6.0/3.6.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/ )
|
|
[@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.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2fplugin-client-redirects/3.6.0/3.6.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/ )
|
|
[@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.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2fplugin-google-analytics/3.6.0/3.6.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/ )
|
|
[@docusaurus/preset-classic](https://redirect.github.com/facebook/docusaurus )
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-preset-classic ))
| [`3.6.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2fpreset-classic/3.6.0/3.6.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/ )
|
|
[@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.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2fremark-plugin-npm2yarn/3.6.0/3.6.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/ )
|
| [@docusaurus/types](https://redirect.github.com/facebook/docusaurus )
([source](https://redirect.github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types ))
| [`3.6.0` ->
`3.6.3`](https://renovatebot.com/diffs/npm/@docusaurus%2ftypes/3.6.0/3.6.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>facebook/docusaurus (@​docusaurus/core)</summary>
###
[`v3.6.3`](https://redirect.github.com/facebook/docusaurus/blob/HEAD/CHANGELOG.md#363-2024-11-22 )
[Compare
Source](https://redirect.github.com/facebook/docusaurus/compare/v3.6.2...v3.6.3 )
##### 🐛  Bug Fix
-   `docusaurus`
-
[#​10712](https://redirect.github.com/facebook/docusaurus/pull/10712 )
fix(core): disable Rspack incremental in dev
([@​slorber](https://redirect.github.com/slorber ))
##### Committers: 1
- Sébastien Lorber
([@​slorber](https://redirect.github.com/slorber ))
###
[`v3.6.2`](https://redirect.github.com/facebook/docusaurus/releases/tag/v3.6.2 ):
3.6.2
[Compare
Source](https://redirect.github.com/facebook/docusaurus/compare/v3.6.1...v3.6.2 )
#### 3.6.2 (2024-11-19)
##### 🐛  Bug Fix
-   `docusaurus-module-type-aliases`
-
[#​10693](https://redirect.github.com/facebook/docusaurus/pull/10693 )
fix(types): add missing ambiant TS declarations for .md / .mdx partials
([@​slorber](https://redirect.github.com/slorber ))
-   `docusaurus-theme-translations`
-
[#​10688](https://redirect.github.com/facebook/docusaurus/pull/10688 )
fix(theme-translation): add and update Japanese translations
([@​Ryoga-exe](https://redirect.github.com/Ryoga-exe ))
-   `docusaurus`
-
[#​10685](https://redirect.github.com/facebook/docusaurus/pull/10685 )
fix(cli): `docusaurus --help` should print plugin commands using
`extendCli()` ([@​slorber](https://redirect.github.com/slorber ))
-   `docusaurus-bundler`
-
[#​10680](https://redirect.github.com/facebook/docusaurus/pull/10680 )
fix(bundler): allow CSS nesting by default, restore postcss-preset-env
([@​slorber](https://redirect.github.com/slorber ))
-   `create-docusaurus`
-
[#​10676](https://redirect.github.com/facebook/docusaurus/pull/10676 )
fix(create-docusaurus): add ts exclude to TS init template
([@​slorber](https://redirect.github.com/slorber ))
-   `docusaurus-bundler`, `docusaurus-faster`, `docusaurus`
-
[#​10648](https://redirect.github.com/facebook/docusaurus/pull/10648 )
fix(faster): Upgrade to Rspack 1.1.1, fix build progress bar display
([@​slorber](https://redirect.github.com/slorber ))
##### 🔧  Maintenance
-
[#​10691](https://redirect.github.com/facebook/docusaurus/pull/10691 )
chore(ci): retry `yarn install` to ignore temporary network errors
([@​slorber](https://redirect.github.com/slorber ))
##### Committers: 5
-   Junior_Gx ([@​goffxnca](https://redirect.github.com/goffxnca ))
- Kyle Tsang
([@​kyletsang](https://redirect.github.com/kyletsang ))
-   Ryoga ([@​Ryoga-exe](https://redirect.github.com/Ryoga-exe ))
- Sébastien Lorber
([@​slorber](https://redirect.github.com/slorber ))
-   Zwyx ([@​Zwyx](https://redirect.github.com/Zwyx ))
###
[`v3.6.1`](https://redirect.github.com/facebook/docusaurus/blob/HEAD/CHANGELOG.md#361-2024-11-08 )
[Compare
Source](https://redirect.github.com/facebook/docusaurus/compare/v3.6.0...v3.6.1 )
##### 🐛  Bug Fix
-   `docusaurus`
-
[#​10658](https://redirect.github.com/facebook/docusaurus/pull/10658 )
fix(core): bundler should not minimize static assets
([@​slorber](https://redirect.github.com/slorber ))
- `docusaurus-bundler`, `docusaurus-faster`, `docusaurus-utils-common`,
`docusaurus-utils`
-
[#​10649](https://redirect.github.com/facebook/docusaurus/pull/10649 )
fix(faster,utils): fix faster/types peerDependencies
([@​slorber](https://redirect.github.com/slorber ))
##### 💅  Polish
-   `docusaurus-bundler`, `docusaurus-types`, `docusaurus`
-
[#​10655](https://redirect.github.com/facebook/docusaurus/pull/10655 )
refactor(faster,bundler,core): improve js loader DX
([@​slorber](https://redirect.github.com/slorber ))
##### 📝  Documentation
-
[#​10657](https://redirect.github.com/facebook/docusaurus/pull/10657 )
docs: fix old base ts config ref
([@​slorber](https://redirect.github.com/slorber ))
##### 🔧  Maintenance
-   `docusaurus-mdx-loader`
-
[#​10651](https://redirect.github.com/facebook/docusaurus/pull/10651 )
refactor(mdx-loader): streamline typescript usage for remark plugin
types ([@​lebalz](https://redirect.github.com/lebalz ))
-   Other
-
[#​10650](https://redirect.github.com/facebook/docusaurus/pull/10650 )
chore: Argos screenshot dogfooding test pages
([@​slorber](https://redirect.github.com/slorber ))
##### Committers: 2
- Balthasar Hofer ([@​lebalz](https://redirect.github.com/lebalz ))
- Sébastien Lorber
([@​slorber](https://redirect.github.com/slorber ))
</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuMTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-12-25 21:13:27 +00:00