Questions tagged [versioning]

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

The following are some popular versioning software used:

  1. Git
  2. Subversion (SVN)
  3. Microsoft TFS
3122 questions
1
vote
0 answers

Git workflow with multiple software versions

Linked to : Multiple software versions using Git [closed] I am new to git, and wanted to know if other way existed when maintaining multiple versions of software, my current workflow looks like this : However, It seems that it will be harder and…
Chewbaka
  • 184
  • 10
1
vote
2 answers

GitLab: Change closed and merged Merge request commit hashes

I've a problem with a Gitlab self-hosted community edition. Recently I've rewrite history on a git repository, and that changed a lot of SHA-1 of commits. I've tried to place the "replace" references, but Gitlab still in Merge Request uses the old…
Alby87
  • 171
  • 1
  • 10
1
vote
3 answers

Access Version Info for Project

I would like to display what version my App is in on the UI. It looks like I set that in Properties --> Application --> Assembler Information. Is that correct? Do I manually increment that upon releases? How do I access…
Refracted Paladin
  • 12,096
  • 33
  • 123
  • 233
1
vote
2 answers

Javascript module versioning

In my web application I developed several (vanilla+jQuery) javascript modules. Unfortunately I don't know how to manage their versioning. The argument of script versioning is very discussed and has different solution as described here for example.…
Timmy
  • 693
  • 2
  • 8
  • 26
1
vote
2 answers

.Net 6 DLL file is not being updated with AssemblyVersion reference found in .csproj file

I have a Blazor app that the generated DLL does not get updated with the referenced 2022.01.14.1 found in the .csproj file. Nor does the and Microsoft Visual Studio Professional 2022…
MDC
  • 175
  • 1
  • 12
1
vote
1 answer

Manage library version on multiple repositories

Hi friends :) I could use a little help on the problem we're facing at work right now. Context: Imagine you have an internal library named Toolkit 1.0. This library exports a lot of Types for your typescript projects (A,B,C). On normal scenarios,…
1
vote
3 answers

Why is a method missing from a system object in Silverlight?

I am working on a Silverlight project, and recently someone on my team added var popups = VisualTreeHelper.GetOpenPopups() to a method in our app. When I got their code from source control I got a compile error saying that GetOpenPopups wasn't…
Adam Jones
  • 711
  • 3
  • 9
1
vote
1 answer

Multi-part Windows installer version numbers

I've noticed that some programs installed on Windows have more than three numbers in their versions. The installer creation software vendor that I use claims in their support forum that Windows Installer only uses three numbers (like…
Indivara
  • 735
  • 1
  • 7
  • 19
1
vote
0 answers

AWS s3 policy to make old version of objects public by tag

I made a bucket public and applied a standard policy as "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource":…
rosysnake
  • 154
  • 2
  • 10
1
vote
0 answers

GitVersion does not ignore commits before on DevOps

I've got a repo with multiple solutions on in. I created a pipeline for a specific one and linked to a specific gitversion.yml file to calculate version numbers by specific commit messages. I added the ignore-commits-before tag to force version…
Grappachu
  • 1,259
  • 13
  • 21
1
vote
1 answer

Adding version in my Laravel App automatically

I want to add a version on my Laravel app automatically when some new code is pushed in any branch, preferably using the SemVer convention. I have found packages such as https://github.com/antonioribeiro/version and though this does solve the issue…
vasilaou
  • 35
  • 5
1
vote
1 answer

Manage Bugs between Dev, QA and Production

My software team have just started using Jira to manage bugs, so I am fairly new to the process that is available to Jira. The systems we build are internally facing applications or customer facing web applications, and we release to these…
Codemwnci
  • 54,176
  • 10
  • 96
  • 129
1
vote
3 answers

Parsing a version number string to an associating value

I'm attempting to parse a version string (examples below) in order to return a value depending on a key that matches the following rules listed below. Each version ID can include a wildcard, however the input cannot. Ofcourse this object is dynamic…
Max
  • 128
  • 5
1
vote
2 answers

How to use mix function in laravel

I'm writing a program using laravel. To manage css and js, I used versioning and call it with a function like this The code above produces html output as follows
1
vote
2 answers

Bulk update menu functions: add new function, update function without using HEAD—in MANY files at once

Google Scripts lets you create custom menus. For example: function makeMenu(){ var ui = SpreadsheetApp.getUi(); ui.createMenu("Scripts") .addItem("My Script","myScript") .addToUi(); This works great if you have only ONE file you want to…
codepants
  • 53
  • 1
  • 8