-
-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NBGV sets cloudBuild.buildNumber
to null
, but this violates the JSON schema
#630
Comments
@AArnott I concur with this. First snippet is the original version.json from the main branch before In addition to the cloudBuild section disappearing, notice the release section is missing my branchName and versionIncrement properties. This is a show-stopper for us. {
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2021.1-beta.{height}",
"assemblyVersion": {
"precision": "build"
},
"gitCommitIdShortFixedLength": 8,
"pathFilters": [],
"publicReleaseRefSpec": [
"^refs/heads/releases/v\\d+\\.\\d+",
"^refs/tags/v\\d+\\.\\d+"
],
"cloudBuild": {
"setVersionVariables": true,
"buildNumber": {
"enabled": false,
"includeCommitId": {
"when": "nonPublicReleaseOnly",
"where": "buildMetadata"
}
}
},
"release" : {
"branchName" : "releases/v{version}",
"versionIncrement" : "minor",
"firstUnstableTag" : "beta"
}
} Release version: {
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2021.1",
"assemblyVersion": {
"precision": "build"
},
"gitCommitIdShortFixedLength": 8,
"publicReleaseRefSpec": [
"^refs/heads/releases/v\\d+\\.\\d+",
"^refs/tags/v\\d+\\.\\d+"
],
"release": {
"firstUnstableTag": "beta"
},
"pathFilters": []
} Main branch after prepare-release: {
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2021.2-beta",
"assemblyVersion": {
"precision": "build"
},
"gitCommitIdShortFixedLength": 8,
"publicReleaseRefSpec": [
"^refs/heads/releases/v\\d+\\.\\d+",
"^refs/tags/v\\d+\\.\\d+"
],
"release": {
"firstUnstableTag": "beta"
},
"pathFilters": []
} |
@dariusonsched In your example, |
@AArnott Apologies - The result of a late night working session. |
@dariusonsched said:
The
Your This is the final product (in the main branch) after I run the command: {
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2021.2-beta.{height}",
"assemblyVersion": {
"precision": "build"
},
"gitCommitIdShortFixedLength": 8,
"publicReleaseRefSpec": [
"^refs/heads/releases/v\\d+\\.\\d+",
"^refs/tags/v\\d+\\.\\d+"
],
"release": {
"branchName": "releases/v{version}",
"firstUnstableTag": "beta"
},
"pathFilters": []
} This looks correct, although it's trimmed of defaults. @alexrp I can repro what you're reporting and am investigating. |
@AArnott Thank you for your response. Looks like 3.4.20:
I was reviewing your codebase and noticed how only the top-most properties are being evaluated for consideration of including cloudBuild: Nerdbank.GitVersioning/src/NerdBank.GitVersioning/VersionOptionsContractResolver.cs Line 94 in a1d636e
Even if cloudBuild is left at defaults, but cloudBuildNumber is set, it must be included. This would seem like an absolute need to resolve and hope you agree. How do we get around this for now? Should we set Regarding the release not carrying over the branchName, I believe I have traced that back to the main line branch was still set to the default value. The new, incoming value |
The equality check is "deep". Each property only looks at equality of the property value to its default, but the equality comparer is recursive. The entire top-level property will be skipped if the default property value includes all the same properties "deeply". In your case, that's what's happening here. All the properties you set on
Why? The default value for
I don't yet see the problem. The
Excellent. |
@AArnott Oh, forgive me. I totally didn't realize cloudBuildNumber > enabled was the default state. I appreciate your help. It appears the original issue author's concern is still relevant; so I will free you up to addressing it. Warm regards, -Darius |
The default for I'm glad you're not blocked after all. |
This happens when running
nbgv prepare-release
, for example.See: vezel-dev/zig-sdk@0602c08
The text was updated successfully, but these errors were encountered: