3,166 questions
0
votes
0
answers
18
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
39
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 (...
-1
votes
0
answers
98
views
Spring Boot upgrade to 3.4.4 JpaRepository
I wanted to upgrade my project from Spring Boot 3.1.3 to 3.4.4.
Sadly I can't find any information on what changed for the findAll method in the JpaSpecificationExecutor class.
I already added the ...
0
votes
3
answers
94
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
29
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
61
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
46
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 package.json.
The answer states that package-lock....
0
votes
1
answer
58
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 bugfix. Is it possible to get ...
0
votes
1
answer
52
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
packages/
package1/
package2/
and each package is ...
0
votes
1
answer
43
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 Application.ProductVersion gave the expected ...
0
votes
0
answers
126
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:
{
"$schema": "...
-1
votes
1
answer
33
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
0
answers
9
views
BLAS/LAPACK compatibility
I've been trying to figure out whether the newer version of BLAS/LAPACK are backward compatible with the older releases but I can't find anything on the netlib website or docs.
Are they compatible ...
0
votes
1
answer
68
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 reflect the assembly version of the released build. The nuspec unique package ...
0
votes
0
answers
16
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 <bumped part> means major, minor, or patch)
I ...