Releases: ResultadosDigitais/feature_flagger
Releases · ResultadosDigitais/feature_flagger
v2.4.1
v2.3.1
What's Changed
- add catalog info by @guilhermeeric in #96
- Bugfix: The unrelease and release processes did not account for the specified feature_flagger_identifier by @nsoufr in #99
- Upgrade to GitHub-native Dependabot by @dependabot-preview in #82
New Contributors
- @guilhermeeric made their first contribution in #96
Full Changelog: v2.3.0...v2.3.1
v2.3.0
v2.2.1
v2.2.0
Add manifest source option (#88) * configuration-adjustments * add-option-storage-only * add-option-with-yaml-file * add-option-yaml-with-backup-to-storage * add-necessary-adjustments-for-redis * add-spec-option-storage-only * add-spec-option-with-yaml-file * add-spec-option-yaml-with-backup-to-storage * add-require * tests-adjustments * version and readme update * Update README.md Co-authored-by: Nando Sousa <[email protected]> * Update README.md Co-authored-by: Nando Sousa <[email protected]> * Update README.md Co-authored-by: Nando Sousa <[email protected]> * Update README.md Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/feature_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/manager_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/manager_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/manager_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/model_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/model_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/model_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update spec/feature_flagger/storage/feature_keys_migration_spec.rb Co-authored-by: Nando Sousa <[email protected]> * Update yaml_with_backup_to_storage_spec.rb * Update with_yaml_file_spec.rb * Update storage_only_spec.rb * Update feature_spec.rb Co-authored-by: Nando Sousa <[email protected]>
v2.1.1
v2.1.0
-
Add integration with ActionSupport::Cache's stores. As rollouts don't change often, adding a cache can save thousands of calls to the storage. It's possible to configure the same way Rails allows cache_stores to be configured.
configuration.cache_store = :memory_store, { expires_in: 100 }
Additionally, we also added an option to skip the cache entirely by adding a
skip_cache: true
on FF methods. Example:Account.released_id?(resource_id, key, skip_local_cache: true)
By default there is no cache configured.
DO NOT update to this version
- This version introduced performance issues by using the KEYS Redis command.
Cleanup all the things!!!!
Add static method for releasing
refers to: #40