Questions tagged [release]
The release tag has no summary.
88 questions
2
votes
3
answers
1k
views
Is my git branch strategy best practice?
We are a small software team with 6 members. We are working on different software projects in our company.
Before I joined the team no version control system was used. It was/is my task to reorganize ...
1
vote
1
answer
827
views
How to improve my current development/release process
I'm looking for suggestions on how to modernise my development/release practices by potentially introducing some automation. I'll outline the current process to help explain why I'm currently ...
1
vote
2
answers
810
views
GitHub Versioning - Organizing Structure
I am making a JS library that creates graphs and charts using canvas. I have hosted it on GitHub as a public repository.
So after looking at some other related questions, I have figured out two ...
-2
votes
2
answers
305
views
Is there a legitimate case for short lived, destructible release branches?
At my current workplace there are some projects that when preparing a release will
backup the current RELEASE branch by making a branch from it with the current date (this isnt technically required, ...
-1
votes
1
answer
118
views
Writing Release Notes for gradual feature rollout
Our software product is not complete, but it is functional enough that one of our clients is using it.
We produce release notes with every sprint. The notes are divided into sections such as "New ...
-1
votes
1
answer
125
views
Gitflow - Share release branch executable with tester before tagging it
I use GitFlow as a workflow for versionning for less than 1 month. I've just finished to develop a feature branch which has been merged to develop/. Now, I'm starting a release branch from develop. ...
5
votes
2
answers
7k
views
How to deal with multiple release/hotfix branches in Gitflow?
I'm implementing Gitflow at the company I currently work for and everything is going pretty well. I'm just not completely sure if I'm dealing with more than one release on the pipeline at the same ...
-1
votes
3
answers
588
views
Re-runnable db alter scripts
Is there a standard on db alter scripts (both data and ddl), should they be re-runnable if so what are the reasons for making them re-runnable.
The only web pages I could find are telling me how to ...
3
votes
3
answers
1k
views
Using gitflow, when do people tend to close off the release branch?
We're using the gitflow branching strategy and it works well. What I can't seem to find though is a recommendation on what point people close their releases.
For example, suppose we got 4 ...
10
votes
3
answers
12k
views
How to manage versions on monorepo with application requires to support multiple releases?
I try to figure out how to manage versions in an monorepo where one of the packages is an application that needs to support multiple releases.
Assume we have a monorepo with just two packages: lib ...
5
votes
3
answers
6k
views
One version or multiple versions for the release with many Microservices?
We are planning to move into Microservices. Currently on the design talks stage.
Thinking of how to versioning the releases?
Let's say we will start with 10 microservices. We want to develop them and ...
11
votes
4
answers
687
views
Is deciding the release date before collecting all requirements un-agile?
I have just started reading the book Applying UML and Patterns by Craig Larman. I find it very interesting because it challenges many of what I have been told at work. I read that requirements aren't ...
0
votes
1
answer
165
views
Knowing what will get released in gitflow
We are a web SaaS company using gitflow and JIRA. As we are 'done' (QA approved) with a feature, we move the story/ticket forward in Jira to a 'done' status. At that point we wait until it gets ...
-1
votes
1
answer
90
views
Are there examples of having 2 Release version numbers for different components in the same monolithic image?
I am new to an organization that has a release version number for their vision software and a different release version number for the supporting functionality (dvr, provisioning, etc) around that ...
12
votes
5
answers
9k
views
How do we avoid development files in the release?
Situation:
Our Python project is hosted at GitHub. The actual release should only contain handful of files, but or project also contains several non-release files that are required for testing and ...