Release Management Tools with DVCS (Mercurial)
My development team is migrating from SVN to Mercurial. Having researched DVCS best practices, it has been suggested that we develop against feature branches of the repo mainline, test them separately, then cherry-pick the features we want in each release, before merging those selected branches into the mainline and eventually releasing it.
How to start a new major version of my application, but still keep the old version ‘alive’
I have two applications, called A and B. The current version of these applciations are 7.x (some customers run 7.1, others run 7.2, …). Both applications use a same common framework (let’s call this C), like this:
Does open sourcing your work help you?
Are developers actually likely to receive significant help by open sourcing a work in its unfinished stages, or are open source consumers more likely to want something ready to use?
Should testers approve releases, or just report on tests?
Does it make sense to give signoff authority to testers? Should a test team
Should testers approve releases, or just report on tests?
Does it make sense to give signoff authority to testers? Should a test team
Should testers approve releases, or just report on tests?
Does it make sense to give signoff authority to testers? Should a test team
Should testers approve releases, or just report on tests?
Does it make sense to give signoff authority to testers? Should a test team
How Can GitFlow Work for Multi-Product Releases?
I am looking to adopt GitFlow for a multi-product repository. This repo contains multiple on-prem applications and libraries. Due to the nature of the products, releases are not frequent and we do not want to be releasing continuously, so there’s currently no need for continuous deployment.
Branching strategy with two teams with different release cycles
what I have We have two teams with different release cycles. The teams work in the same solution, but don’t change the same files. We have a developer team that uses 2 week sprints and delivers after each sprint. After the sprint is done, they will create a release branch and release to the Test, […]
Microsoft.FeatureManagement read freature flags from DB?
Is it possible to use this nuget and read the values from the DB ? I know the ideal is Azure App Configuration service but would like to explore the DB option. And also don’t want to have a huge configuration file with all the features. Thanks.