diff --git a/website/docs/availability.md b/website/docs/availability.md index 4796e1bb84..04edaba31c 100644 --- a/website/docs/availability.md +++ b/website/docs/availability.md @@ -1,5 +1,5 @@ --- -title: Unleash Availability +title: Feature availability and versioning --- Your Unleash [plan](#plans) and [version](#versioning) determine what features you have access to. Our documentation displays the availability for each feature using the following annotation: @@ -15,8 +15,8 @@ This is an example of a feature that is only available to Enterprise customers w ## Plans - [Open Source](https://www.getunleash.io/pricing) - Available on [GitHub](https://github.com/Unleash/unleash) under an Apache 2.0 license. +- [Enterprise](https://www.getunleash.io/pricing) - Available as pay-as-you-go or as an annual contract, either as cloud-hosted or self-hosted. - Pro - Currently not offered. -- [Enterprise](https://www.getunleash.io/pricing) - Available as Pay-as-you-go or as an annual contract, as cloud-hosted or self-hosted. ## Beta features @@ -24,6 +24,10 @@ Some new Unleash features are tagged as `BETA` in the documentation. This means ## Versioning -Unleash uses [semantic versioning](https://semver.org/) with release notes available on [GitHub](https://github.com/Unleash/unleash/releases). For detailed instructions on upgrading your version, see [Upgrading Unleash](../using-unleash/deploy/upgrading-unleash). +Unleash uses [semantic versioning](https://semver.org/) with release notes available on [GitHub](https://github.com/Unleash/unleash/releases). If you are using Unleash Cloud, your instance is automatically on the latest build. + +Unleash Cloud is a hosted service with continuous delivery. For transparency, we append build metadata to the base semantic version for every deployment. For example, in `7.0.10+6945.8192287`, `7.0.10` is the base release and `+6945.8192287` identifies the exact build. + +If you're self-hosting Unleash, see [Upgrading Unleash](../using-unleash/deploy/upgrading-unleash) for how to keep your instance up to date. [Unleash Edge](https://github.com/Unleash/unleash-edge) and our [SDKs](/reference/sdks) are versioned and released independently of Unleash. We recommend upgrading your SDKs and Unleash Edge to the latest versions to ensure compatibility, optimal performance, and access to the latest features and security updates. diff --git a/website/docs/reference/events.mdx b/website/docs/reference/events.mdx index c9735ab59e..89b3794b27 100644 --- a/website/docs/reference/events.mdx +++ b/website/docs/reference/events.mdx @@ -25,6 +25,7 @@ Each [event type](#event-types) contains different data, but all events follow t | Field | Type | Description | |--------------------|--------|-------------------------------------------------------------------| | `id`* | number | Unique identifier for the event; incremental whole number. | +| `groupId`* | string | Identifier that links related events created by a single action, such as through a [change request](/reference/change-requests). Added in Unleash 7.1. | | `type`* | string | Describes the type of event (e.g., `feature-strategy-update`). | | `createdAt`* | string | Timestamp when the event was created; ISO 8601 format. | | `createdBy`* | string | Email of the user who triggered the event. | diff --git a/website/sidebars.ts b/website/sidebars.ts index f1d057ea1b..3a63e1d5dd 100644 --- a/website/sidebars.ts +++ b/website/sidebars.ts @@ -721,6 +721,11 @@ const sidebars: SidebarsConfig = { id: 'troubleshooting', label: 'Troubleshooting', }, + { + type: 'doc', + id: 'availability', + label: 'Feature availability and versioning', + }, { label: 'Contribute to Unleash', type: 'category',