Menu

What is Bleeding Edge?

April 3, 2021 · 2 min read

When developing new features that don’t fit in a minor version, or aren’t expected to be released right away, software developers have two options what to do:

  • Develop the feature in a feature branch
  • Develop it in the main branch but have it turned off in the minor release

Feature branches have a lot of downsides in this context. The code has to live detached from the primary development for months, risking code rot and difficult merging and/or rebasing. Additionally, the code just sits there without gathering valuable feedback, so when it’s released to all users at once, there might be problems coming from the lack of testing in the wild.

These problems are solved with feature toggles. The code is developed and released in a minor version, but turned off by default. People can opt in to test the new behaviour and file issues, so the features will be in a much better state when released to all users in the next major version.

Bleeding edge users are often rewarded with a much more capable analysis much sooner than the rest.

You can opt in to bleeding edge with this section in your phpstan.neon:

includes:
	- phar://phpstan.phar/conf/bleedingEdge.neon

When a new feature is added to bleeding edge, it’s referenced in the release notes. All the current new features enabled in bleeding edge can be inspected by looking at the configuration file in PHPStan’s source code.

© 2016–2024 Ondřej Mirtes