feature-flags
Here are 516 public repositories matching this topic...
-
Updated
Feb 17, 2022 - Ruby
When we show data for a metric, we currently don't include the current day's worth of data. For users just getting set up, they may only have events from today, and want to test out if the query is working, and by excluding events from 'today', they can't see results.
TODO:
- In
packages/back-end/src/services/experiments.tson line329, instead of using the current date as the value
Piranha transforms:
someConsumer.accept((x) -> {
if(exp.isTreated(STALE_FLAG)){
doSomething(x);
}
else{
domeSomethingElse(x);
}
As we are constantly upgrading Flagr server, the client SDKs may experience unexpected changes from the server side. The integration tests should better include these SDKs instead of just simple CURL tests.
Specifically, we want to cover
Is your feature request related to a problem? Please describe.
OpenTracing teamed up with OpenCensus to create OpenTelemetry. Tracing support is already stable.
Describe the solution you'd like
Replace OpenTracing with OpenTelemetry tracing. Alternatively, add OpenTelemetry to keep backwards compatibility.
Hi,
It is quite stupid to have one type for many events.
Suggestion:
On feature_segment update sends : FLAG_SEGMENT_UPDATED
On feature_identity update sends : FLAG_IDENTITY_UPDATED
on feature update sends : FLAG_FEATURE_UPDATED
-
Updated
Jan 10, 2020 - PHP
-
Updated
Feb 22, 2022 - C#
-
Updated
Feb 4, 2022 - Elixir
-
Updated
Jul 15, 2021 - C#
-
Updated
Feb 5, 2022 - TypeScript
-
Updated
Feb 14, 2022 - Ruby
Requirements
Add an environment parameter in the config.
This environment field should be added to all users in the param so we can add rules based on the environment and have the same config file for all your environment.
-
Updated
Feb 21, 2022 - JavaScript
Right now, when you archive a key, you can only see it if you manually search for it.
This can cause some key name conflict issues, or issues when trying to create a folder with the same name as an archived (bu not yet deleted key).
It would be ideal for there to be a way to see all archived keys at once, without the need to search for them in the search bar.
-
Updated
Oct 25, 2019
-
Updated
Feb 11, 2022 - C#
-
Updated
Jul 2, 2021 - PHP
-
Updated
Jan 28, 2022 - PHP
-
Updated
Feb 16, 2022 - TypeScript
-
Updated
Apr 16, 2021 - Ruby
-
Updated
Feb 21, 2022 - JavaScript
-
Updated
Feb 9, 2022 - Python
-
Updated
Feb 22, 2022 - Dart
-
Updated
Feb 1, 2022 - Swift
-
Updated
Feb 17, 2022 - TypeScript
-
Updated
Jun 10, 2021
Improve this page
Add a description, image, and links to the feature-flags topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the feature-flags topic, visit your repo's landing page and select "manage topics."
Is it possible to add a check if unleash variable is indeed a json, and disable the option of saving it unless it is?
For example, created a variable for a toggle and selected type to be a json, but I've inserted a string instead of a json and was able to save and pull the value.
{'name': 'test', 'payload': {'type': 'json', 'value': 'not a json'}, 'weightType': 'variable', 'enabled': True}