682 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
72
views
How to use semver with npm and a private repository
I'm trying to include a private repository, that I own, in a package.json using the semver syntax like so:
"dependencies": {
"nwm-common-react": "git+https://gitlab.com/...
0
votes
0
answers
33
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
175
views
How to override default GitVersion behavior to bump version using both tags and commit messages (GitFlow mode)
I'm using GitVersion with the default GitFlow workflow (workflow: GitFlow/v1), and I want to leverage both:
Use annotated Git tags (e.g. v1.2.0) to create stable releases
Use +semver: in commit ...
0
votes
0
answers
41
views
JSPM Install command does not download dependencies in "overrides" section mentioned in project root/package.json
I (new to js) need to do a security fix regarding a transitive dependency in one of our projects. The lodash transitive dependency version in babel-core dependency is being highlighted as version that ...
-2
votes
1
answer
90
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
190
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 ...
1
vote
1
answer
316
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
184
views
How to regex in semantic versioning in flux image policy for "v2.2.9a"
I want the flux to be able to read and triggers with versioning such as v2.2.9, v2.2.9a, v2.2.9b
Currently it was working for v2.2.9, v2.3.0 but not when appending alphabet at the end.
kind: ...
1
vote
1
answer
62
views
Go module publishing: tag is posted on Github but the Go toolchain does not see it
I have a tool written in Go that I publish on Github with periodic revisions. The toolchain version is 1.23 and when I am ready to release a new version, I tag it in Git as vX.Y.Z and push to Github, ...
1
vote
1
answer
155
views
Semantic versioning and the experimental API element
I version my APIs (of various types: REST, Java, etc.) according to the rules of semantic versioning (for REST API specifying the version in the OAS in the version field of the Info Object; for Java ...
3
votes
2
answers
102
views
Is it safe to import nuget package with wildcard instead of patch version in production?
I would like to import some third party nuget package into my project. The latest package version is 2.3.4.5
Would it be safe if I import this packages as 2.3.* so that I benefit from patches to be ...
2
votes
1
answer
96
views
Is there any gradle plugin for checking versions of transitive dependency?
We have a modular project and dependency looks like this
core
level_1-app depends on core
level_2-app depends on level_1-app
level_3_1-app depends on level_2-app
level_3_2-app depends on level_2-app
...
3
votes
1
answer
95
views
What are the semantics of an underspecified exact version pin in Cargo?
Consider an entry in the [dependencies] section of Cargo.toml file as follows:
[dependencies]
thingy = "=1.2"
So, this is a comparison requirement, and it is an "equals" ...
1
vote
2
answers
178
views
How to force renovate to set azure pipeline task from "x@1" to "x@2" instead of "[email protected]"
[CONTEXT]
I use renovate (azure-pipeline manager) to update my YML azure pipelines tasks.
[NEED]
If my pipeline calls my-task@1, I don't want a PR that sets [email protected], I want to keep this notation ...
0
votes
1
answer
86
views
Why does my package version resolve to an older version with the caret?
I tried searching about this, but it's a tough topic to search, or there isn't anything. Sorry if I'm duplicating.
When working with other developers, we tend to name our npm package versions ...