melindafekete
528f31f886
update get started
2025-11-24 14:12:50 +01:00
melindafekete
9edf35dd57
Move privary and compliance pages
2025-11-24 11:21:43 +01:00
melindafekete
de3a18235a
Fix link in footer, add redirects
2025-11-18 16:07:44 +01:00
melindafekete
67b4508cb1
Merge main
2025-11-18 14:30:38 +01:00
Melinda Fekete
54a68f63f1
docs: add auto-generated MCP docs ( #10984 )
2025-11-14 16:47:13 +01:00
melindafekete
84631f51e5
Update get started and core concepts
2025-10-22 10:46:51 +02:00
Fredrik Strand Oseberg
8da040b89a
Fix/website performance ( #10489 )
2025-08-27 15:54:32 +02:00
Gastón Fournier
a76e501438
chore: update references to repositories ( #10465 )
...
---------
Co-authored-by: Melinda Fekete <melinda.fekete@getunleash.io>
2025-08-06 14:45:26 +02:00
Melinda Fekete
253c2d71b3
docs: prioritize search results ( #10369 )
2025-07-18 17:09:35 +02:00
Melinda Fekete
cae5be4ad0
docs: update docs navigation ( #9942 )
2025-07-11 13:33:11 +02:00
Gastón Fournier
fc25117d78
fix(docs): enterprise image zoom ( #10081 )
...
Co-authored-by: melindafekete <melinda.fekete@getunleash.io>
2025-06-06 11:17:44 +02:00
Melinda Fekete
278421a1c8
docs: change 'Get a demo' to 'Start free trial' ( #9947 )
...
Change the main docs CTA from 'Get a demo' to 'Start free trial'
2025-05-09 16:51:29 +02:00
Melinda Fekete
7ca79c1b84
docs: update self-hosting guide ( #9855 )
2025-05-05 15:57:17 +02:00
Melinda Fekete
c0e30deafb
docs: remove roadmap from footer ( #9890 )
...
Remove Product Roadmap from footer and add Product Vision
2025-05-05 15:02:05 +02:00
Gastón Fournier
bf05ee1201
fix: lint ( #9858 )
2025-04-29 10:26:10 +02:00
Melinda Fekete
c393a869a7
docs: update docs preview image ( #9852 )
2025-04-29 09:16:54 +02:00
Melinda Fekete
aabb364415
docs: Update hosting strategies page ( #9729 )
2025-04-16 12:42:39 +02:00
Melinda Fekete
17e93509e9
Upgrade docusaurus ( #9284 )
...
Upgrade docusaurus and fix mermaid bug
2025-02-11 17:37:14 +01:00
Melinda Fekete
de03de152b
Fix image zoom bug, remove Figure component ( #9242 )
2025-02-06 16:52:04 +01:00
Melinda Fekete
ef8191c68d
Update API tokens and client keys pages ( #9143 )
2025-02-04 09:32:32 +01:00
Nuno Góis
b62c1d6c1e
docs: new theme footer ( #9158 )
...
https://linear.app/unleash/issue/2-3177/footer
New docs theme footer.
Kept [swizzling](https://docusaurus.io/docs/swizzling ) to a minimum and
instead tried to keep most things in CSS to avoid adding more
complexity.
Remember to test responsiveness by resizing your window, as well as dark
mode.
[Preview
link](https://unleash-docs-git-docs-new-theme-footer-unleash-team.vercel.app/ )
2025-01-28 16:22:24 +00:00
Nuno Góis
6363167b68
docs: new theme header ( #9151 )
...
https://linear.app/unleash/issue/2-3175/header
New docs theme header.
Kept [swizzling](https://docusaurus.io/docs/swizzling ) to a minimum and
instead tried to keep most things in CSS to avoid adding more
complexity.
Remember to test responsiveness by resizing your window, as well as dark
mode.
[Preview
link](https://unleash-docs-git-docs-new-theme-header-unleash-team.vercel.app/ )
### Before

### After

---------
Co-authored-by: Melinda Fekete <melinda.fekete@getunleash.io>
2025-01-27 12:34:06 +00:00
Nuno Góis
0c7efc0037
docs: improve ASK AI button ( #9140 )
2025-01-23 14:45:19 +01:00
Alvin Bryan
91550ca981
docs: new theme ( #8994 )
...
New theming for the docs.
- [Design
file](https://www.figma.com/design/7BXV5qZrmrI4H1Yk8FVW9T/Marketing?node-id=5330-8333&t=eKa3NYwKpzane9ey-0 )
- [Preview Link
](https://unleash-docs-git-alvin-new-docs-theme-unleash-team.vercel.app/ )
---------
Co-authored-by: Nuno Góis <github@nunogois.com>
2025-01-22 12:07:43 +00:00
Melinda Fekete
311df82d37
Strategy docs updates ( #8711 )
...
- New navigation for Unleash Concepts
- Updated and restructured activation strategies and related concepts
2024-12-11 10:38:39 +01:00
Alvin Bryan
708fce4428
docs: Fixed diff syntax ( #8937 )
...
The blocks with `diff` syntax didn't render correctly. This is a result
of Docusaurus v3 [changing the included languages
](https://docusaurus.io/docs/migration/v3#prism-react-renderer-v20 ).
2024-12-10 14:48:09 +00:00
Alvin Bryan
54444a395c
Fixed OpenAPI URL renaming ( #8726 )
...
## Problem
Our API docs are generated from a specfile that is hosted in
https://us.app.unleash-hosted.com/ushosted
By default the API docs UI will show that URL, which we don't want

## Previously
We ran a find-and-replace after the mdx files were generated with
`replace-in-file`
## Now
The previous solution is no longer possible because the openapi plugin
changed. Basically, before it generated markdown files that looked like
this:
```
# Create API Key
https://unleash-hosted/whatever
bla bla bla
```
Now it generates files that do not contain the URL and look like this:
```
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
import ParamsDetails from "@theme/ParamsDetails";
<Heading
as={"h1"}
className={"openapi__heading"}
children={"Configure project access"}
>
</Heading>
```
which themselves get compiled.
## Solution
This PR now downloads the specfile, makes a local copy, then an alters
the server URL in the copy, then uses that local file to generate the
docs.

I didn't want to make any changes to the actual spec logic because this
essentially just a plugin quirk
---
[PREVIEW
LINK](https://unleash-docs-git-alvin-fix-openapi-rename-unleash-team.vercel.app/reference/api/unleash/get-addon )
2024-11-14 11:07:23 +00:00
Thomas Heartman
0a250a7526
tests: add more tests for the lifecycle avg calculation query ( #8698 )
...
This PR adds more tests to check a few more cases for the lifecycle
calculation query. Specifically, it tests that:
- If we don't have any data for a stage, we return `null`.
- We filter on projects
- It correctly takes `0` days into account when calculating averages.
2024-11-08 11:29:17 +01:00
Melinda Fekete
7597bb91ac
Add lastmod to sitemap ( #8681 )
2024-11-08 10:52:47 +01:00
Alvin Bryan
a1d6795533
Docusaurus v3 ( #8485 )
...
- Upgrades to latest Docusaurus
- Upgrades our OpenAPI plugin to latest too
- Removes old, unneeded dependencies
- Our configs and sidebar files now use TypeScript
[Preview
link](https://unleash-docs-git-alvin-docusaurus-v3-unleash-team.vercel.app/ )
---------
Co-authored-by: melindafekete <melinda.fekete@getunleash.io>
Co-authored-by: Christopher Kolstad <chriswk@getunleash.io>
2024-10-30 11:55:51 +00:00