Skip to content

Commit

Permalink
chore: rm old version references (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps authored Sep 29, 2023
1 parent 612aa4d commit cc45f64
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion authentication/methods.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion configuration/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion configuration/telemetry.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 1 addition & 4 deletions installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<Note>
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).
</Note>
<Note>Flipt runs without the root user in the Docker container.</Note>

### Configuration

Expand Down
13 changes: 5 additions & 8 deletions operations/import-export.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ description: Importing and exporting data to and from Flipt

<Note>Importing is only supported for database backed Flipt instances.</Note>

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
Expand Down Expand Up @@ -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.

<Warning>
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.
</Warning>

## Export
Expand Down

0 comments on commit cc45f64

Please sign in to comment.