renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e55839aff3 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @uiw/react-codemirror to v4.21.22 ( #6366 )  
						
						 
						
						... 
						
						
						
						[](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.21.21` ->
`4.21.22`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.21.21/4.21.22 )
|
[](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.21.22`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.22 )
[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.21...v4.21.22 )
[](https://jaywcjlove.github.io/#/sponsor )
[](https://uiwjs.github.io/npm-unpkg/#/pkg/@​uiw/react-codemirror@4.21.22/file/README.md )
Documentation v4.21.22:
https://raw.githack.com/uiwjs/react-codemirror/df31507/index.html \
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.21.21...v4.21.22 
```shell
npm i @​uiw/react-codemirror@4.21.22
```
- 🌍  website: update website.
([#​614](https://togithub.com/uiwjs/react-codemirror/issues/614 ))
[`bf3b862`](https://togithub.com/uiwjs/react-codemirror/commit/bf3b862 )
[@​mosaleh52](https://togithub.com/mosaleh52 )
- 📖  doc: Update README.md
([#​626](https://togithub.com/uiwjs/react-codemirror/issues/626 ))
[`042b6c9`](https://togithub.com/uiwjs/react-codemirror/commit/042b6c9 )
[@​orichcasperkevin](https://togithub.com/orichcasperkevin )
- 🌟  feat(theme): add `console` theme
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`d2a17b0`](https://togithub.com/uiwjs/react-codemirror/commit/d2a17b0 )
[@​dalejo96](https://togithub.com/dalejo96 )
- 🐞  fix(website): fix theme example display issue.
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`5c7a699`](https://togithub.com/uiwjs/react-codemirror/commit/5c7a699 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 💄  chore: update workflows config
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`d5dd1ec`](https://togithub.com/uiwjs/react-codemirror/commit/d5dd1ec )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🌟  feat(themes-all): theme console added to themes-all
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 )).
[`a779719`](https://togithub.com/uiwjs/react-codemirror/commit/a779719 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🎨  style(theme-console): modify the theme selection style.
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`233347d`](https://togithub.com/uiwjs/react-codemirror/commit/233347d )
[@​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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-27 20:02:58 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Gastón Fournier 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							70499dc1d4 
							
						 
					 
					
						
						
							
							feat: allow api token middleware to fetch from db ( #6344 )  
						
						 
						
						... 
						
						
						
						## About the changes
When edge is configured to automatically generate tokens, it requires
the token to be present in all unleash instances.
It's behind a flag which enables us to turn it on on a case by case
scenario.
The risk of this implementation is that we'd be adding load to the
database in the middleware that evaluates tokens (which are present in
mostly all our API calls. We only query when the token is missing but
because the /client and /frontend endpoints which will be the affected
ones are high throughput, we want to be extra careful to avoid DDoSing
ourselves
## Alternatives:
One alternative would be that we merge the two endpoints into one.
Currently, Edge does the following:
If the token is not valid, it tries to create a token using a service
account token and /api/admin/create-token endpoint. Then it uses the
token generated (which is returned from the prior endpoint) to query
/api/frontend. What if we could call /api/frontend with the same service
account we use to create the token? It may sound risky but if the same
application holding the service account token with permission to create
a token, can call /api/frontend via the generated token, shouldn't it be
able to call the endpoint directly?
The purpose of the token is authentication and authorization. With the
two tokens we are authenticating the same app with 2 different
authorization scopes, but because it's the same app we are
authenticating, can't we just use one token and assume that the app has
both scopes?
If the service account already has permissions to create a token and
then use that token for further actions, allowing it to directly call
/api/frontend does not necessarily introduce new security risks. The
only risk is allowing the app to generate new tokens. Which leads to the
third alternative: should we just remove this option from edge? 
						
					 
					
						2024-02-27 16:08:44 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b738a2a1bc 
							
						 
					 
					
						
						
							
							fix: application list padding ( #6365 )  
						
						 
						
						
						
					 
					
						2024-02-27 15:05:37 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							477a9c6cfa 
							
						 
					 
					
						
						
							
							chore: action events UI ( #6358 )  
						
						 
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-1936/action-events-ui 
Implements the UI for action events.

 
						
					 
					
						2024-02-27 13:52:09 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								andreas-unleash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9101c39eb7 
							
						 
					 
					
						
						
							
							chore: remove scheduledConfigurationChanges flag ( #6360 )  
						
						 
						
						... 
						
						
						
						What is says on the box
---------
Signed-off-by: andreas-unleash <andreas@getunleash.ai> 
						
					 
					
						2024-02-27 14:57:34 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Simon Hornby 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							43b013ff2f 
							
						 
					 
					
						
						
							
							chore: add a flag for scim ( #6361 )  
						
						 
						
						
						
					 
					
						2024-02-27 14:33:57 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6cefe71534 
							
						 
					 
					
						
						
							
							feat: insights feedback ( #6345 )  
						
						 
						
						
						
					 
					
						2024-02-27 13:12:18 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							20a9e1d725 
							
						 
					 
					
						
						
							
							refactor: remove unused components and rename new ( #6357 )  
						
						 
						
						
						
					 
					
						2024-02-27 12:22:47 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9cd324bd7c 
							
						 
					 
					
						
						
							
							feat: projects using this application ( #6355 )  
						
						 
						
						... 
						
						
						
						 
						
					 
					
						2024-02-27 12:24:44 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c049374a25 
							
						 
					 
					
						
						
							
							chore: remove new strategy configuration flag ( #6335 )  
						
						 
						
						
						
					 
					
						2024-02-27 11:23:49 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e9603f866b 
							
						 
					 
					
						
						
							
							refactor: connected instances extract hook refactoring ( #6353 )  
						
						 
						
						
						
					 
					
						2024-02-27 10:49:57 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d6e0bea2f0 
							
						 
					 
					
						
						
							
							feat: use connected instances api with orval type ( #6352 )  
						
						 
						
						
						
					 
					
						2024-02-27 09:49:25 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ed44de6c94 
							
						 
					 
					
						
						
							
							feat: simplified insights data fetching ( #6342 )  
						
						 
						
						... 
						
						
						
						Simplify insights data fetching - let charts pick data instead of
preparing labels in hook. 
						
					 
					
						2024-02-27 09:20:45 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7cebf7b8fe 
							
						 
					 
					
						
						
							
							feat: application issues ( #6347 )  
						
						 
						
						... 
						
						
						
						 
						
					 
					
						2024-02-27 09:57:50 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3704956a06 
							
						 
					 
					
						
						
							
							chore(deps): bump es5-ext from 0.10.62 to 0.10.63 in /docker ( #6350 )  
						
						 
						
						... 
						
						
						
						Bumps [es5-ext](https://github.com/medikoo/es5-ext ) from 0.10.62 to
0.10.63.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/medikoo/es5-ext/releases ">es5-ext's
releases</a>.</em></p>
<blockquote>
<h2>0.10.63 (2024-02-23)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Do not rely on problematic regex (<a
href="3551cdd7b2 ">3551cdd</a>),
addresses <a
href="https://redirect.github.com/medikoo/es5-ext/issues/201 ">#201</a></li>
<li>Support ES2015+ function definitions in
<code>function#toStringTokens()</code> (<a
href="a52e957366 ">a52e957</a>),
addresses <a
href="https://redirect.github.com/medikoo/es5-ext/issues/021 ">#021</a></li>
<li>Ensure postinstall script does not crash on Windows, fixes <a
href="https://redirect.github.com/medikoo/es5-ext/issues/181 ">#181</a>
(<a
href="bf8ed799d5 ">bf8ed79</a>)</li>
</ul>
<h3>Maintenance Improvements</h3>
<ul>
<li>Simplify the manifest message (<a
href="7855319f41 ">7855319</a>)</li>
</ul>
<hr />
<p><a
href="https://github.com/medikoo/es5-ext/compare/v0.10.62...v0.10.63 ">Comparison
since last release</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/medikoo/es5-ext/blob/main/CHANGELOG.md ">es5-ext's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/medikoo/es5-ext/compare/v0.10.62...v0.10.63 ">0.10.63</a>
(2024-02-23)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>Do not rely on problematic regex (<a
href="3551cdd7b2 ">3551cdd</a>),
addresses <a
href="https://redirect.github.com/medikoo/es5-ext/issues/201 ">#201</a></li>
<li>Support ES2015+ function definitions in
<code>function#toStringTokens()</code> (<a
href="a52e957366 ">a52e957</a>),
addresses <a
href="https://redirect.github.com/medikoo/es5-ext/issues/021 ">#021</a></li>
<li>Ensure postinstall script does not crash on Windows, fixes <a
href="https://redirect.github.com/medikoo/es5-ext/issues/181 ">#181</a>
(<a
href="bf8ed799d5 ">bf8ed79</a>)</li>
</ul>
<h3>Maintenance Improvements</h3>
<ul>
<li>Simplify the manifest message (<a
href="7855319f41 ">7855319</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="de4e03c477 "><code>de4e03c</code></a>
chore: Release v0.10.63</li>
<li><a
href="3fd53b755e "><code>3fd53b7</code></a>
chore: Upgrade<code> lint-staged</code> to v13</li>
<li><a
href="bf8ed799d5 "><code>bf8ed79</code></a>
chore: Ensure postinstall script does not crash on Windows</li>
<li><a
href="2cbbb0717b "><code>2cbbb07</code></a>
chore: Bump dependencies</li>
<li><a
href="22d0416ea1 "><code>22d0416</code></a>
chore: Bump LICENSE year</li>
<li><a
href="a52e957366 "><code>a52e957</code></a>
fix: Support ES2015+ function definitions in
<code>function#toStringTokens()</code></li>
<li><a
href="3551cdd7b2 "><code>3551cdd</code></a>
fix: Do not rely on problematic regex</li>
<li><a
href="7855319f41 "><code>7855319</code></a>
chore: Simplify the manifest message</li>
<li>See full diff in <a
href="https://github.com/medikoo/es5-ext/compare/v0.10.62...v0.10.63 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/Unleash/unleash/network/alerts ).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-27 08:33:38 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ae257d5957 
							
						 
					 
					
						
						
							
							feat: connected instance ui api integration ( #6343 )  
						
						 
						
						
						
					 
					
						2024-02-27 08:30:31 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							227abd8bba 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.21.22 ( #6351 )  
						
						 
						
						... 
						
						
						
						[](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.21.21` ->
`4.21.22`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.21.21/4.21.22 )
|
[](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.21.22`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.22 )
[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.21...v4.21.22 )
[](https://jaywcjlove.github.io/#/sponsor )
[](https://uiwjs.github.io/npm-unpkg/#/pkg/@​uiw/react-codemirror@4.21.22/file/README.md )
Documentation v4.21.22:
https://raw.githack.com/uiwjs/react-codemirror/df31507/index.html \
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.21.21...v4.21.22 
```shell
npm i @​uiw/react-codemirror@4.21.22
```
- 🌍  website: update website.
([#​614](https://togithub.com/uiwjs/react-codemirror/issues/614 ))
[`bf3b862`](https://togithub.com/uiwjs/react-codemirror/commit/bf3b862 )
[@​mosaleh52](https://togithub.com/mosaleh52 )
- 📖  doc: Update README.md
([#​626](https://togithub.com/uiwjs/react-codemirror/issues/626 ))
[`042b6c9`](https://togithub.com/uiwjs/react-codemirror/commit/042b6c9 )
[@​orichcasperkevin](https://togithub.com/orichcasperkevin )
- 🌟  feat(theme): add `console` theme
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`d2a17b0`](https://togithub.com/uiwjs/react-codemirror/commit/d2a17b0 )
[@​dalejo96](https://togithub.com/dalejo96 )
- 🐞  fix(website): fix theme example display issue.
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`5c7a699`](https://togithub.com/uiwjs/react-codemirror/commit/5c7a699 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 💄  chore: update workflows config
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`d5dd1ec`](https://togithub.com/uiwjs/react-codemirror/commit/d5dd1ec )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🌟  feat(themes-all): theme console added to themes-all
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 )).
[`a779719`](https://togithub.com/uiwjs/react-codemirror/commit/a779719 )
[@​jaywcjlove](https://togithub.com/jaywcjlove )
- 🎨  style(theme-console): modify the theme selection style.
([#​632](https://togithub.com/uiwjs/react-codemirror/issues/632 ))
[`233347d`](https://togithub.com/uiwjs/react-codemirror/commit/233347d )
[@​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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-27 03:55:35 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							43b4343263 
							
						 
					 
					
						
						
							
							chore(deps): update dependency es5-ext to v0.10.63 [security] ( #6349 )  
						
						 
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [es5-ext](https://togithub.com/medikoo/es5-ext ) | [`0.10.62` ->
`0.10.63`](https://renovatebot.com/diffs/npm/es5-ext/0.10.62/0.10.63 ) |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
### GitHub Vulnerability Alerts
####
[CVE-2024-27088](https://togithub.com/medikoo/es5-ext/security/advisories/GHSA-4gmj-3p3h-gm8h )
### Impact
Passing functions with very long names or complex default argument names
into `function#copy` or`function#toStringTokens` may put script to stall
### Patches
Fixed with
3551cdd7b2 
and
a52e957366 
Published with v0.10.63
### Workarounds
No real workaround aside of refraining from using above utilities.
### References
[https://github.com/medikoo/es5-ext/issues/201 ](https://togithub.com/medikoo/es5-ext/issues/201 )
---
### Release Notes
<details>
<summary>medikoo/es5-ext (es5-ext)</summary>
###
[`v0.10.63`](https://togithub.com/medikoo/es5-ext/blob/HEAD/CHANGELOG.md#01063-2024-02-23 )
[Compare
Source](https://togithub.com/medikoo/es5-ext/compare/v0.10.62...v0.10.63 )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - "" 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-27 00:58:17 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							24f4c29bc6 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @swc/core to v1.4.2 ( #6348 )  
						
						 
						
						... 
						
						
						
						[](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.4.1` ->
`1.4.2`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.4.1/1.4.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>swc-project/swc (@​swc/core)</summary>
###
[`v1.4.2`](https://togithub.com/swc-project/swc/blob/HEAD/CHANGELOG.md#142---2024-02-19 )
[Compare
Source](https://togithub.com/swc-project/swc/compare/v1.4.1...v1.4.2 )
##### Bug Fixes
- **(es/helpers)** Add `addInitializer` to field decorators
([#​8619](https://togithub.com/swc-project/swc/issues/8619 ))
([cd38ef3](cd38ef39d6 ))
- **(es/minifier)** Abort property hoister on `this` usage
([#​8647](https://togithub.com/swc-project/swc/issues/8647 ))
([9715320](97153206ad ))
- **(es/react)** Validate pragma before parsing
([#​8637](https://togithub.com/swc-project/swc/issues/8637 ))
([5f1cf01](5f1cf01823 ))
- **(es/typescript)** Handle exported JSX members
([#​8642](https://togithub.com/swc-project/swc/issues/8642 ))
([22c8e2e](22c8e2e1e9 ))
##### Features
- **(es/minifier)** Remove unused parameters of arrow functions
([#​8636](https://togithub.com/swc-project/swc/issues/8636 ))
([8cd4813](8cd4813067 ))
- **(swc_core)** Expose ES linter
([#​8635](https://togithub.com/swc-project/swc/issues/8635 ))
([762959c](762959c72d ))
##### Testing
- **(es/parser)** Add a test for `<<`
([#​8634](https://togithub.com/swc-project/swc/issues/8634 ))
([2c63b31](2c63b31143 ))
- **(es/transforms)** Add a test for `reserved_words` pass
([#​8638](https://togithub.com/swc-project/swc/issues/8638 ))
([a0b77e0](a0b77e0664 ))
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-26 21:39:39 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4fa9051e9c 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @codemirror/state to v6.4.1 ( #6346 )  
						
						 
						
						... 
						
						
						
						[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@codemirror/state](https://togithub.com/codemirror/state ) | [`6.4.0`
->
`6.4.1`](https://renovatebot.com/diffs/npm/@codemirror%2fstate/6.4.0/6.4.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>codemirror/state (@​codemirror/state)</summary>
###
[`v6.4.1`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#641-2024-02-19 )
[Compare
Source](https://togithub.com/codemirror/state/compare/6.4.0...6.4.1 )
##### Bug fixes
Fix an issue that caused widgets at the end of a mark decoration to be
rendered in their own separate mark DOM element.
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-26 21:33:43 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fd87fd4e7d 
							
						 
					 
					
						
						
							
							Insights UI ( #6341 )  
						
						 
						
						... 
						
						
						
						- style for headers in Insights dashboard and project selector
- fixed React element key issue in gauge chart
- fixed React attribute issue in Health stats
- active/inactive user stats from backend 
						
					 
					
						2024-02-26 15:51:14 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								David Leek 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f351ad821b 
							
						 
					 
					
						
						
							
							chore: set proxy-repo interval to 45mins instead of 20secs ( #6340 )  
						
						 
						
						... 
						
						
						
						Since we're polling for updates to max revision id every second, and
listening for update events for revision id in the proxy repository then
running a refresh interval of 20secs in the proxy repo refresh seems
excessive.
This PR changes the frequency of the refresh to once per 45mins. 
						
					 
					
						2024-02-26 14:32:56 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							91c08593a6 
							
						 
					 
					
						
						
							
							feat: app env instances api ( #6339 )  
						
						 
						
						
						
					 
					
						2024-02-26 14:27:44 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2c5d4ba0ce 
							
						 
					 
					
						
						
							
							feat: set default env columns in project overview to 3 ( #6338 )  
						
						 
						
						
						
					 
					
						2024-02-26 13:10:45 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								andreas-unleash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4c340a5224 
							
						 
					 
					
						
						
							
							fix: track conflicts in new strategy screen ( #6337 )  
						
						 
						
						... 
						
						
						
						Fixes a bug where the conflict tracking was only in the old feature
strategy edit screen.
- Ports the conflict tracking to the NewFeatureStrategyEdit screen
Closes #
[1-2093](https://linear.app/unleash/issue/1-2093/cr-conflict-detection-in-new-strategy-edit-screen )
---------
Signed-off-by: andreas-unleash <andreas@getunleash.ai> 
						
					 
					
						2024-02-26 13:59:47 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							12a085f5a0 
							
						 
					 
					
						
						
							
							chore: generate orval types ( #6336 )  
						
						 
						
						
						
					 
					
						2024-02-26 13:28:36 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3b7b816b44 
							
						 
					 
					
						
						
							
							feat: application missing strategies ( #6334 )  
						
						 
						
						... 
						
						
						
						Now also showing missing strategies, that SDK sends, but do not exist in
Unleash. 
						
					 
					
						2024-02-26 12:59:50 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							89d113f1ff 
							
						 
					 
					
						
						
							
							feat: application missing features backend ( #6330 )  
						
						 
						
						... 
						
						
						
						This PR adds a property issues to application schema, and also adds all
the missing features that have been reported by SDK, but do not exist in
Unleash. 
						
					 
					
						2024-02-26 12:26:01 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d1e93228a3 
							
						 
					 
					
						
						
							
							refactor: paginated data hook ( #6333 )  
						
						 
						
						
						
					 
					
						2024-02-26 11:24:41 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1633722877 
							
						 
					 
					
						
						
							
							feat: updating last seen now will create instance if does not exist ( #6328 )  
						
						 
						
						
						
					 
					
						2024-02-26 10:08:28 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								renovate[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							68abe28257 
							
						 
					 
					
						
						
							
							chore(deps): update dependency @types/node to v18.19.17 ( #6332 )  
						
						 
						
						... 
						
						
						
						[](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 ))
| [`18.19.15` ->
`18.19.17`](https://renovatebot.com/diffs/npm/@types%2fnode/18.19.15/18.19.17 )
|
[](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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
					 
					
						2024-02-26 00:13:22 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							aa97cc4637 
							
						 
					 
					
						
						
							
							fix: better arrow design in network overview ( #6331 )  
						
						 
						
						... 
						
						
						
						Improves the arrow design in the "Network overview" after aligning with
@nicolaesocaciu 
						
					 
					
						2024-02-23 13:38:54 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								andreas-unleash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bae195add9 
							
						 
					 
					
						
						
							
							feat: show the metrics summary chart ( #6297 )  
						
						 
						
						... 
						
						
						
						Creates the impressions summary chart 
<img width="1358" alt="Screenshot 2024-02-21 at 13 25 05"
src="https://github.com/Unleash/unleash/assets/104830839/ddf15637-34de-4883-9ef7-517e37eab331 ">
Closes #
[1-2060](https://linear.app/unleash/issue/1-2060/impressions-summary-widget-frontend )
---------
Signed-off-by: andreas-unleash <andreas@getunleash.ai>
Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com> 
						
					 
					
						2024-02-23 15:17:58 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							153c60d335 
							
						 
					 
					
						
						
							
							Dashboard custom tooltips ( #6327 )  
						
						 
						
						... 
						
						
						
						Initial refactoring for custom tooltips 
						
					 
					
						2024-02-23 11:02:26 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jaanus Sellin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							822851814a 
							
						 
					 
					
						
						
							
							feat: application overview issues schema ( #6329 )  
						
						 
						
						
						
					 
					
						2024-02-23 13:01:49 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							12ff4abe6a 
							
						 
					 
					
						
						
							
							chore: incoming webhook events UI ( #6317 )  
						
						 
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-1937/incoming-webhook-events-ui 
This PR implements the UI for incoming webhook events.
We're also introducing a new `SidePanelList` component that we'll be
able to reuse when we tackle action set events. This PR also promotes
`ReactJSONEditor` to a common component and adapts it slightly for this
use case.


We're refreshing the events view every 5s, so if you're monitoring
events for a specific incoming webhook you can see the latest ones
coming in.
We load 20 (configurable through the hook) events by default. Everytime
you reach the end of the list you can load 20 more events until you
reach the end of the event list.
 
						
					 
					
						2024-02-23 11:01:27 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a54ef27adc 
							
						 
					 
					
						
						
							
							chore: remove mermaid in favor of react archer ( #6320 )  
						
						 
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-1968/use-react-archer-instead-of-mermaid-in-the-network-overview 
This PR removes [mermaid](https://github.com/mermaid-js/mermaid ) in
favor of [react-archer](https://github.com/pierpo/react-archer ), which
meant adapting `NetworkOverview` to use `react-archer` instead, since
that was the only remaining feature using `mermaid`.
Opted not to use RPS labels in the lines since it was very noisy
visually. Took the liberty to make some visual changes, but we can align
afterwards with @nicolaesocaciu if needed.
### Example with 1 app

### Example with 3 apps

### Example with 30 apps

### Example in light theme
 
						
					 
					
						2024-02-23 08:31:14 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nuno Góis 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ad864049da 
							
						 
					 
					
						
						
							
							fix: only show visible environments for that project in actions ( #6318 )  
						
						 
						
						... 
						
						
						
						https://linear.app/unleash/issue/2-1969/actions-form-only-show-environments-scoped-to-the-current-project 
Filters the environment options in actions to only show environments
that are currently visible for that project, safeguarding users from
configuring actions for invalid environments.
 
						
					 
					
						2024-02-23 08:24:32 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tymoteusz Czech 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7682429839 
							
						 
					 
					
						
						
							
							Dashboard health stats widget ( #6262 )  
						
						 
						
						
						
					 
					
						2024-02-23 09:05:59 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							474e53460a 
							
						 
					 
					
						
						
							
							fix: show total applications ( #6326 )  
						
						 
						
						
						
					 
					
						2024-02-23 07:18:11 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							42f6843029 
							
						 
					 
					
						
						
							
							refactor: application overview dom improvements and tests ( #6325 )  
						
						 
						
						
						
					 
					
						2024-02-23 06:56:46 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0de0313563 
							
						 
					 
					
						
						
							
							feat: connect application envs to backend ( #6324 )  
						
						 
						
						
						
					 
					
						2024-02-22 21:58:19 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ef021a9464 
							
						 
					 
					
						
						
							
							feat: capped at limit strategy in application usage ( #6323 )  
						
						 
						
						
						
					 
					
						2024-02-22 20:35:39 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							24d6d24e24 
							
						 
					 
					
						
						
							
							fix: minimum pagination size ( #6322 )  
						
						 
						
						
						
					 
					
						2024-02-22 20:30:59 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8b0218df6a 
							
						 
					 
					
						
						
							
							test: project applications table ( #6321 )  
						
						 
						
						
						
					 
					
						2024-02-22 19:03:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ade7a88d65 
							
						 
					 
					
						
						
							
							test: applications list ui ( #6319 )  
						
						 
						
						
						
					 
					
						2024-02-22 19:03:11 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								andreas-unleash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7a08a121f0 
							
						 
					 
					
						
						
							
							feat: create the project-metrics-summary-trends table ( #6313 )  
						
						 
						
						... 
						
						
						
						Adds a migration to create and fill the `project_metrics_summary_trends`
This table is to be used in enterprise to update the metrics data daily
per project (after the aggregation of the hourly data)
Driving force for this was doing performance testing on the executive
dashboard.
This will allow to remove the expensive query to aggregate the data on
demand and will drop the total response time from 2.5sec to 125ms
(measurements done with 100 Projects, 10000 features and over 1M rows in
`client_metrics_env_daily`
Closes #
[1-2080](https://linear.app/unleash/issue/1-2080/create-the-project-metrics-summary-trends-table )
---------
Signed-off-by: andreas-unleash <andreas@getunleash.ai> 
						
					 
					
						2024-02-22 17:21:08 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nnenna Ndukwe 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7cc968fdc4 
							
						 
					 
					
						
						
							
							docs: Java Tutorial v1 ( #6299 )  
						
						 
						
						... 
						
						
						
						<!-- 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. -->
A v1 Java tutorial for docs! I used Java SDK to log flag statuses when
the Java app is running and connected to Unleash.
## Discussion points
<!-- Anything about the PR you'd like to discuss before it gets merged?
Got any questions or doubts? -->
It's fairly simple and open to feedback for a new iteration to improve
the intro tutorial. I do weekly documentation improvement PRs! 
						
					 
					
						2024-02-22 09:18:17 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3dda4a1f0e 
							
						 
					 
					
						
						
							
							feat: switching to paginated applications list ( #6316 )  
						
						 
						
						
						
					 
					
						2024-02-22 15:15:50 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Kwasniewski 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							edbd71ac15 
							
						 
					 
					
						
						
							
							feat: paginated hook for applications list ( #6315 )  
						
						 
						
						
						
					 
					
						2024-02-22 14:37:08 +01:00