@halospv3/hce.shared-config 3.4.1 → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dotnet/GitVersion.yml +19 -4
- package/dotnet/GitVersion6.0.yml +19 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [3.4.2](https://github.com/HaloSPV3/HCE.Shared/compare/v3.4.1...v3.4.2) (2026-02-08)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **dotnet.GitVersion:** conform GitVersion to angular commit convention ([80589d7](https://github.com/HaloSPV3/HCE.Shared/commit/80589d7ea6e87f6b0262a3bc3c01cc6f68d822ee))
|
|
6
|
+
|
|
1
7
|
## [3.4.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.4.0...v3.4.1) (2026-02-07)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dotnet/GitVersion.yml
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/GitTools/GitVersion/main/schemas/5.12/GitVersion.configuration.json
|
|
2
2
|
# https://gitversion.net/docs/reference/configuration
|
|
3
3
|
mode: Mainline
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
# "!:" in the header -or- "BREAKING CHANGES:" in the footer.
|
|
5
|
+
# e.g. refactor!: remove or change a public API symbol
|
|
6
|
+
major-version-bump-message: "^(([a-zA-Z]+)(\\([\\w\\s-]*\\))?(!:|:.*\\n\\n((.+\\n)+\\n)?)?BREAKING CHANGE:\\s.+)"
|
|
7
|
+
# e.g. "feat: add awesome thing", "feat(App.Core): add thing to App.Core's API"
|
|
7
8
|
minor-version-bump-message: "^(feat)(\\([\\w\\s-]*\\))?:"
|
|
8
|
-
|
|
9
|
+
# e.g. "Revert", "Reverts", "revert:", "fix:", or "perf:".
|
|
10
|
+
patch-version-bump-message: "^(Reverts? )|(fix|perf|revert)(\\([\\w\\s-]*\\))?:"
|
|
11
|
+
# # Angular Commit Convention
|
|
12
|
+
# In addition to the rules at https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#conventional-changelog-angular...
|
|
13
|
+
# - Scopes are optional (but recommended) and multiple can be specified
|
|
14
|
+
# e.g. "fix(App.Core, App.CLI): ".
|
|
15
|
+
# - Do not use "/" in scopes' names. "/" and "," are delimiters.
|
|
16
|
+
#
|
|
17
|
+
# # Release/Version Rules
|
|
18
|
+
# https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js
|
|
19
|
+
# { breaking: true, release: "major" }
|
|
20
|
+
# { type: "feat", release: "minor" }
|
|
21
|
+
# { revert: true, release: "patch" }
|
|
22
|
+
# { type: "fix", release: "patch" }
|
|
23
|
+
# { type: "perf", release: "patch" }
|
package/dotnet/GitVersion6.0.yml
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/GitTools/GitVersion/main/schemas/6.0/GitVersion.configuration.json
|
|
2
2
|
# https://gitversion.net/docs/reference/configuration
|
|
3
3
|
workflow: TrunkBased/v1
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
# "!:" in the header -or- "BREAKING CHANGES:" in the footer.
|
|
5
|
+
# e.g. refactor!: remove or change a public API symbol
|
|
6
|
+
major-version-bump-message: "^(([a-zA-Z]+)(\\([\\w\\s-]*\\))?(!:|:.*\\n\\n((.+\\n)+\\n)?)?BREAKING CHANGE:\\s.+)"
|
|
7
|
+
# e.g. "feat: add awesome thing", "feat(App.Core): add thing to App.Core's API"
|
|
7
8
|
minor-version-bump-message: "^(feat)(\\([\\w\\s-]*\\))?:"
|
|
8
|
-
|
|
9
|
+
# e.g. "Revert", "Reverts", "revert:", "fix:", or "perf:".
|
|
10
|
+
patch-version-bump-message: "^(Reverts? )|(fix|perf|revert)(\\([\\w\\s-]*\\))?:"
|
|
11
|
+
# # Angular Commit Convention
|
|
12
|
+
# In addition to the rules at https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#conventional-changelog-angular...
|
|
13
|
+
# - Scopes are optional (but recommended) and multiple can be specified
|
|
14
|
+
# e.g. "fix(App.Core, App.CLI): ".
|
|
15
|
+
# - Do not use "/" in scopes' names. "/" and "," are delimiters.
|
|
16
|
+
#
|
|
17
|
+
# # Release/Version Rules
|
|
18
|
+
# https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js
|
|
19
|
+
# { breaking: true, release: "major" }
|
|
20
|
+
# { type: "feat", release: "minor" }
|
|
21
|
+
# { revert: true, release: "patch" }
|
|
22
|
+
# { type: "fix", release: "patch" }
|
|
23
|
+
# { type: "perf", release: "patch" }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halospv3/hce.shared-config",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"halo",
|