diff --git a/authentication/methods.mdx b/authentication/methods.mdx index 83f92f0..17bfced 100644 --- a/authentication/methods.mdx +++ b/authentication/methods.mdx @@ -34,7 +34,7 @@ curl -X POST localhost:8080/auth/v1/method/token \ #### UI -As of version 1.19.0, the UI also supports the creation and deletion of tokens. To access this functionality, navigate to `Settings` from the main menu and see the 'Static Tokens' section. +The UI also supports the creation and deletion of tokens. To access this functionality, navigate to `Settings` from the main menu and see the 'Static Tokens' section. ![Create Token UI](/images/authentication/create-token.png) diff --git a/concepts.mdx b/concepts.mdx index d0439e4..7349802 100644 --- a/concepts.mdx +++ b/concepts.mdx @@ -7,7 +7,7 @@ More information on how to use Flipt is noted in the [Getting Started](/introduc ## Namespaces -Namespaces are the recommended way to organize all of the resources such as Flags, Segments, Rules, etc within Flipt as of [v1.20.0](https://github.com/flipt-io/flipt/releases/tag/v1.20.0). +Namespaces are the recommended way to organize all resources such as Flags, Segments, Rules, etc within Flipt. Namespaces allow you to separate all data within Flipt for use in different environments such as Development, Staging, Production, etc. diff --git a/configuration/overview.mdx b/configuration/overview.mdx index 6ed54d2..1dd7cea 100644 --- a/configuration/overview.mdx +++ b/configuration/overview.mdx @@ -18,7 +18,7 @@ The default way that Flipt is configured is with the use of a configuration file This file is read when Flipt starts up and configures several important properties for the server. -As of version [v1.23](https://github.com/flipt-io/flipt/releases/tag/v1.23.0), the server will check in a few different locations for server configuration (in order): +The server will check in a few different locations for server configuration (in order): 1. `--config` flag as an override 2. `{{ USER_CONFIG_DIR }}/flipt/config.yml` (the `USER_CONFIG_DIR` value is based on your architecture and specified in the [Go documentation](https://pkg.go.dev/os#UserConfigDir)) diff --git a/configuration/telemetry.mdx b/configuration/telemetry.mdx index 4242cd7..84eb553 100644 --- a/configuration/telemetry.mdx +++ b/configuration/telemetry.mdx @@ -63,7 +63,7 @@ meta: export FLIPT_META_TELEMETRY_ENABLED=false ``` -As of [v1.21.0](https://github.com/flipt-io/flipt/releases/tag/v1.21.0), telemetry can also be disabled by setting the [DO_NOT_TRACK](https://consoledonottrack.com/) environment variable to `true` or `1`: +Telemetry can also be disabled by setting the [DO_NOT_TRACK](https://consoledonottrack.com/) environment variable to `true` or `1`: ```shell export DO_NOT_TRACK=true diff --git a/installation.mdx b/installation.mdx index 9f65ac5..f30d68c 100644 --- a/installation.mdx +++ b/installation.mdx @@ -82,10 +82,7 @@ This allows data to persist between Docker container restarts. After starting the container you can visit http://0.0.0.0:8080 to view the application. - - Flipt runs without the root user in the Docker container as of - [v1.6.1](https://github.com/flipt-io/flipt/releases/tag/v1.6.1). - +Flipt runs without the root user in the Docker container. ### Configuration diff --git a/operations/import-export.mdx b/operations/import-export.mdx index c159789..9403bc2 100644 --- a/operations/import-export.mdx +++ b/operations/import-export.mdx @@ -5,10 +5,7 @@ description: Importing and exporting data to and from Flipt Importing is only supported for database backed Flipt instances. -Prior to Flipt [v1.20.0](https://github.com/flipt-io/flipt/releases/tag/v1.20.0) `import` and `export` ran directly against the backing database. - -Since `v1.20.0` you can now alternatively perform these operations through Flipt's API. -Both `flipt import` and `flipt export` support the `--address` and `--token` flags to enable this behaviour. +Both `flipt import` and `flipt export` support the `--address` and `--token` flags to enable transferring data to and from Flipt instances via the API instead of requiring a direct database connection. ``` flipt import --address http://flipt.my.org --token static-api-token @@ -50,14 +47,14 @@ For convenience, you can supply `--create-namespace` in order for Flipt to autom flipt import --namespace production --create-namespace flipt.yaml ``` -This command supports the `--drop` flag that will drop all of the data in your +This command supports the `--drop` flag that will drop all data in your Flipt database tables before importing. This is to ensure that no data collisions occur during the import. - Be careful when using the `--drop` flag as it will immediately drop all of - your data and there is no undo. It's recommended to first backup your database - before running this command just to be safe. + Be careful when using the `--drop` flag as it will immediately drop all data + and there is no undo. It's recommended to first backup your database before + running this command just to be safe. ## Export