Questions tagged [feature-toggles]

Feature Toggles are a technique applied by Software Engineers to code bases, allowing teams to modify system behaviour without changing code. Feature Toggles are closely related to the concept of Feature Flags.

Feature toggles are a technique applied by Software Engineers to code bases, allowing teams to modify system behaviour without changing code. Feature toggles are one of the methods used to separate the activity of deployment from the action of release.

Feature toggles are closely related to the concept of .

Further Reading:

9 questions
20
votes
2 answers

What is a 'Feature Flag Toggle' and when to use them (or not)?

There are some questions about feature flag toggles, such as: How to persuade developers to start using feature flag toggles? How to use feature flag toggles? Questions: What is actually a "feature flag toggle" (in the context of DevOps)? Why are…
Pierre.Vriens
  • 7,225
  • 14
  • 39
  • 84
13
votes
2 answers

Which ways are there to decouple deployment from release?

One method of continuous deployment is to decouple deployment from release, i.e. deploy updates without activating the changes immediately. I know that feature-toggles can be used for this, but I'm wondering if there are other techniques for…
Fabian Schmengler
  • 485
  • 1
  • 4
  • 11
7
votes
2 answers

What is the difference between feature flags and feature toggles (if any)?

Part of an answer to my (meta) question "Rename feature-flags to feature-toggles?" is like so: ... There's could be valid questions about feature flags (formalism, documentation about them, process of definition), which may not be related to…
Pierre.Vriens
  • 7,225
  • 14
  • 39
  • 84
4
votes
2 answers

feature flags vs versioning for APIs

We are looking at moving to a trunk based development branching strategy rather than gitflow that we currently use. I understand that feature flags are crucial to trunk based development. However, is there still a place for versioning APIs if I am…
2
votes
0 answers

What is the preferred method of using feature flags in Flask?

I wanted to ask what the preferred tool, method or framework is when using feature flags with Flask applications. The main problem is that the most relevant result has not seen an update since 3 years, there is only one non-free feature flag as a…
Moritz
  • 1,227
  • 2
  • 11
  • 24
2
votes
0 answers

What feature toggle frameworks are available out there?

Question inspired by How to persuade developers to start using feature flag toggles? Find a feature toggle framework. Management/the business may be more amenable to trying something supported by a common system and this comment on it: +1 for…
Dan Cornilescu
  • 6,780
  • 2
  • 21
  • 45
1
vote
1 answer

How to use feature toggles and frequent deployment under SOX compliance?

Feature toggles (or feature flags) enable me to deploy unfinished features without comprehensive manual testing of features toggled off. We can toggle the feature on for certain users, try it out, and then choose to toggle it off or on for all…
0
votes
0 answers

How to use the Unleash Edge proxy?

I have a running setup with an Unleash SaaS instance and an Unleash Proxy. I have a backend that connects directly to https://eu.app.unleash-hosted.com/eu.../api and React SDK client that connects to the proxy. The Proxy run on my infrastructure…
0
votes
1 answer

Static Analysis for Feature Flag Safety

In a CD environment with new features hidden behind feature flags, there must be a way to ensure that code being pushed to production is effectively zero change? Particularly in a change management controlled environment, it would be ideal to not…