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.
versioning
3,153 questions
0
votes
1
answer
65
views
Per user installation: get software version per user
I have a Visual Studio setup project together with a C# bootstrapper. The app usually was installed system-wide and requires admin permissions to be started. The new version uninstalls the old version ...
0
votes
0
answers
84
views
How to show a single version dropdown per product in Docusaurus multi-product documentation?
I’m building documentation for multiple products on a single Docusaurus 3 website. Each product has its own versions, and I want users to be able to select a product first, then optionally select a ...
2
votes
1
answer
57
views
Switching to semantic versioning causes MSVC linker to throw an LNK1117 error
An open-source project I contribute to recently decided to switch to the semantic versioning scheme. However, changing the version number from 0.16 to ...
2
votes
1
answer
137
views
Why am I unable to load XAML resources in WPF application if they are placed in a versioned dll
I am using Visual Studio 2022 and .NET 6, WPF.
I have an application where I separated out all of my controls, styles, colors (all XAML resources) into a separate dll for sharing named Presentation....
1
vote
1
answer
97
views
How do I specify the correct record dependency version for my Flutter app in VSCode?
I want the app to record the user's voice and send it to a CSV file (Google Sheets). I have it working for user input so far. In my "pubspec.yaml" file, I've defined the record, ...
0
votes
0
answers
63
views
How to handle version information in branches with gitlab to always take the parent information?
So we have been using TFS and are converting over to gitlab. The codebase version information is stored in a version.cs
...
0
votes
0
answers
35
views
How to handle semantic versioning when cloud and on-prem branches diverge?
I'm working on a project that maintains two active release branches:
10.0.x → for on-prem deployments
10.1.x → for cloud deployments
We have an automated system that merges changes from the on-prem ...
0
votes
0
answers
53
views
.NET multi-targeted NuGet package: only .NET 4.5 DLL gets correct version from pipeline, .NET Standard 2.0 keeps default
I'm creating a NuGet package in an Azure DevOps pipeline from a multi-targeted .NET library that targets .NET Standard 2.0 and .NET 4.5. The pipeline sets the version dynamically using a variable (<...
0
votes
2
answers
142
views
How to retrieve the latest version of records for each time period in SQL when there are multiple versions of the same period?
Community!
I have a table with periods (from_date and to_date columns) and associated values, and I need to retrieve the latest records. The complication is that there are multiple versions of the ...
0
votes
1
answer
48
views
Centralize maven project version to ease branching strategy
I have a maven based multi-module project. Also we manage multiple parallel releases for different clients for which we obviously need long lived branches. To all these branches, we give assign unique ...
0
votes
2
answers
379
views
How to set the version of my code only in the pom.xml
I am updating an old code and I need to set the version in the pom.xml using the version tag and then from there set different files with the version:
Manifest file when building the jar
I need to ...
-2
votes
1
answer
92
views
Doesn't package-lock.json lose its purpose if we all use package-lock.json?
This is a follow-up question to an answer of a similar question asking whether package-lock.json is redundant if we only specify exact versions in ...
0
votes
1
answer
206
views
How do I get unpinned major and minor version tags for my repo using release-please?
I am using release please to generate releases and it's making tags like v3.2.1
However, I am finding it tedious to have to manually update the versions with every ...
1
vote
1
answer
360
views
How do I create major and minor tags for components using release-please?
I have a monorepo with multiple components that I would like to version separately with unpinned major and minor versions.
My directory is like
...
1
vote
1
answer
187
views
Getting unexpected ApplicationVersion and ProductVersion in Visual Studio project
A project I'm currently working on in Visual Studio 2022 was originally written for .NET 6 and I have upgraded it to .NET 8.0. Previously the result from ...
1
vote
0
answers
476
views
release-please GitHub action manifest releaser to force bump all packages
I have been trying to create a monorepo that controls many packages. I've set up release-please as a GitHub action with config and manifest. The config looks like:
...
-1
votes
1
answer
39
views
AWS S3 bucket versioning
Scenario
1/ writer would produce a new version of a csv file every few hours
2/ reader, in another application, would read the contents of csv file
We want to ensure that reader won't be affected when ...
0
votes
1
answer
105
views
How does Nuget obtain a valid version of a referenced library?
I have two libraries that I use in several projects. They are MCData.vA.B.C.dll and MCConfig.vA.B.C.dll. The vA.B.C values ...
1
vote
0
answers
46
views
Put the bumped part in the message of bumpversion
In order to let Bumpversion make a commit message like this:
<date>|<bumped part>|<current version>|<message>
(Where the ...
2
votes
0
answers
329
views
Cache Busting in Flutter Web for New Releases: Issues with Clearing Old Cache
I'm developing a Flutter Web project, and I’m encountering issues with cache busting after deploying new releases. Despite trying multiple solutions, older versions of files (e.g., main.dart.js) seem ...
0
votes
1
answer
494
views
GitVersion doesn't use the "label" string when on master
I've recently upgraded to GitVersion 6.0.x (due to various other issues) and now I can't seem to get my master builds to get versioned correctly. I want the master builds to be named "-alpha"...
0
votes
1
answer
204
views
Different Assembly build numbers in Azure Pipeline via yaml
I am trying to create an Azure pipeline build, test, and deploy of nuget packages to an Azure feed to work. I have everything working except that I want the individual projects to have their own ...
1
vote
1
answer
191
views
Encore.ts doesn't allow to choose from other templates than Uptime monitor
I am trying to create an empty app with encore.ts but when I run the command encore app create itonly gives me the Uptime Monitor template option to choose.
I am on ...
1
vote
1
answer
2k
views
How can I run a Flutter application on past iOS versions?
Edit: My initial problem was due to the problem Flutter failed to build ios app, unsupported option -G for target. With the solution provided on the link I didn't need to downgrade de iOS SDK version.
...
1
vote
1
answer
80
views
Incremental add with DVC tracked directories
While I know that the main use case of DVC comes after the "data engineering" parts, I have written something that works quite nice for me but is missing one feature.
So nightly i run a ...
1
vote
2
answers
81
views
Managing function versioning across multiple projects using a shared library
I'm facing a challenge with maintaining consistency across multiple projects that share a common library. Here's the scenario:
I have a helpers library with a function anonymize_ip(ip).
This function ...
1
vote
1
answer
2k
views
Increment Azure Pipelines version number with commits
I have an Azure DevOps pipeline that references two repos:
The code repo, which contains my application code
The config repo, which contains my environment variable config files.
The idea is that I ...
0
votes
1
answer
98
views
How to manage versioning on MS project with vba?
As a PMO I need to update plannings, therefore I need to update the new version number that figures on the left legend of MS Project (for printing). In the image we see where I put the new version. ...
-1
votes
1
answer
97
views
change from 4 digit version in play store to 3
I am currently creating a new app in react native with Expo to replace an existing app in app- and play store.
The issue im having is that the current version of the app published to play store has ...
0
votes
1
answer
137
views
I'm running a server on the terminal with a node.js v-18 on a cPanel which only provides highest node.js v-14. How can I access the routes?
The current cPanel environment supports Node.js 14, which is not compatible with my application that requires Node.js 18+
I installed Node.js 18 using nvm on the terminal and it run without errors. ...
0
votes
0
answers
60
views
How to package and maintain helm charts for both open and closed beta?
I manage some Kubernetes CRDs and package them in Helm Charts for managing the different versions. Currently we only have one Helm Chart version that we deploy to production which is v1.0.0 and any ...
5
votes
1
answer
2k
views
Should Nuget package versions match the .NET TargetFramework?
I've long assumed that when you upgrade the Target Framework of a .NET project, that all of the related System.* and Microsoft.* ...
0
votes
1
answer
38
views
For an ASP.NET WEB FORMS web application, check if the web server has the latest version for any specific aspx/ascx pages on any redundant web server
Our team works in a project where the customer manually deploys (copy/paste) the updated release we provide (ascx, aspx, dll, etc.) for the ASP.NET WEB FORMS web application we are developing.
...
0
votes
2
answers
2k
views
Semantic Versioning - pre release
I have latest release version ex. v1.6.0 (master)
then I create new prerelease and it automatically creates pre release + tag
v1.6.0-develop.1 (develop branch)
the problem is that in github releases ...
1
vote
2
answers
610
views
Azure DevOps automatic versioning when it comes to feature branches
This is the way I'm doing my versioning right now
...
0
votes
1
answer
79
views
How to keep history of data for displaying on dashboard based on selected range of date
im building an dashboard and trying to figure out on how to go about storing and displaying historical data.
I read about the audit table being in place to track change. But how do we go about display ...
1
vote
0
answers
57
views
Git error message There is no -F option ("less --help" for help)
git version 2.45.0.windows.1
Windows 10 Enterprise
I have recently experienced a weird behaviour with my git installation.
Suddenly i got git not recognised as external or internal command when keying ...
0
votes
2
answers
189
views
GIT-Extensions: how to set "origin" branch on a previous value?
I have a "dev" branch, local as well as remote (origin), and I would like to set the remote branch on a previous commit:
Current situation (GIT-extensions screenshot):
I would like the &...
2
votes
1
answer
458
views
How to get my application to update when a new version is detected within my repository on github?
Background
For my job, I have made a windows .exe which is a python pyqt5 application that my analysts can use for their work. What I am trying to do is set up a workflow with the help of git that ...
0
votes
1
answer
317
views
Managing Helm Chart Versions for Multiple Environments
Here's the docker, helm, and environment setup:
Docker images for both integration and release branches
an umbrella helm chart for all of our microservices
dev, test, and prod environments
For dev, ...
2
votes
1
answer
268
views
Invalid Nuget Package Version in CI/CD
We are getting the following error when trying to publish our package after successfully building it.
/usr/share/dotnet/sdk/8.0.204/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.GenerateAssemblyInfo....
0
votes
1
answer
151
views
Azure functions app .net zip deployment versioning
I'm looking for some standard way to track which version of my .net app (assembly version?) is deployed in my azure functions app.
The deployment method is ZIP and the .NET in-process model is used.
I'...
0
votes
1
answer
301
views
How to compare Word docs versions directly inside Azure Devops without having to download both versions locally?
For my internship, I need to find an efficient way to compare docs like you would with code versions, directly inside azure devops if possible. Converting Word to Markdown could also be a solution but ...
0
votes
0
answers
69
views
Maven artifact version convention for non numeric characters
I was looking through artifact version for JAX WS RI Runtime and saw the following two versions:
4.0.0-M1 and 4.0.0 The are ...
1
vote
1
answer
198
views
Flutter - How to get the build number of the app?
I understand the usage of package_info_plus package and I am able to get the version number correctly.
The issue here is that the Build number of our application is decided by Github Runner on release ...
1
vote
0
answers
109
views
Django drf-yasg API versions switch from drop down
Is there a way to show available API versions in drop down using drf_yasg without overwriting the template?
I checked their docs but seems like i have to use versionized URL to see different version ...
1
vote
1
answer
344
views
Sharing dependency version with NPM workspaces in monorepo
We switched to NPM workspaces to share source code. Works fine.
We want to go further and utilize NPM workspaces to share dependencies. Like every WEB app in monorepo should be built with Next.js v14....
0
votes
0
answers
208
views
Versioning C# projects with visual studio
Recently I got assigned to a new project and now have to create a new version of said project.
Unfortunately I don't quite understand how this works in visual studio.
This is the structure in the ...
1
vote
0
answers
70
views
How to implement js and css versioning in hybris based project via wro4j
I am very new to hybris and there is a need to implement js and css versioning.
please show some light here.
I really do not know how to do it
Want to do achieve like this
your-project/css/styles.css?...
4
votes
1
answer
93
views
Why does the Haskell PVP describe new functions as non-breaking?
Let's say I have the following code
module A where
x :: Int
x = 5
module Main where
import A
import Lib
main :: IO ()
main = print (x + y)
and ...