github thomaspoignant/go-feature-flag v1.0.0

latest releases: v1.46.1, v1.46.0, v1.45.6...
2 years ago

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

Don't miss a new go-feature-flag release

NewReleases is sending notifications on new releases.