Skip to content

v1.0.0

Compare
Choose a tag to compare
@thomaspoignant thomaspoignant released this 01 Feb 11:50
· 1274 commits to main since this release
dd01790

v1.0.0

Finally, we have reached the point of delivering version v1.0.0.
This new version brings :

  • A new flag configuration format
  • A new flag editor
  • A more extensive compatibility with Open-Feature
  • A new documentation

To have more details please read the introduction blog post.

Migrate from v0.x.x to v1.x.x

First of all, you should know that all flags from version v0.x.x are still compatible with this new version of GO Feature Flag.

BUT we encourage you to migrate your flag to the new version and for this, we have created a tool called go-feature-flag-migration-cli to convert flags in v0.x.x format to v1.0.0 format.

The easiest way to use it is probably to use our docker image like this:

docker run \  
  -v $(pwd)/your/configuration_folder:/config \  
  thomaspoignant/go-feature-flag-migration-cli:latest \  
  --input-format=yaml \  
   --input-file=/config/my-go-feature-flag-config-v0.x.x.yaml \  
   --output-format=yaml \  
   --output-file=/config/my-go-feature-flag-config-v1.x.x.yaml