@halospv3/hce.shared-config 2.6.4 → 3.0.0-develop.10
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 +452 -101
- package/README.md +100 -87
- package/dotnet/.github/workflows/_unit_test.yml +3 -3
- package/dotnet/.github/workflows/ci.yml +2 -2
- package/dotnet/.github/workflows/dotnet-release.yml +28 -28
- package/dotnet/.github/workflows/sample-dotnet-build.yml +13 -11
- package/dotnet/ExecNupkgDeterministicator.README.md +20 -0
- package/dotnet/ExecNupkgDeterministicator.targets +173 -0
- package/dotnet/GitVersion.yml +3 -1
- package/dotnet/GitVersion6.0.yml +3 -1
- package/dotnet/HCE.Shared.sln +34 -0
- package/dotnet/HCE.Shared.targets +1 -0
- package/dotnet/PublishAll.targets +2 -0
- package/dotnet/SignAfterPack.targets +104 -0
- package/dotnet/samples/HCE.Shared.DeterministicNupkg/Dummy.cs +6 -0
- package/dotnet/samples/HCE.Shared.DeterministicNupkg/HCE.Shared.DeterministicNupkg.csproj +21 -0
- package/dotnet/samples/HCE.Shared.SignAfterPack/Class1.cs +6 -0
- package/dotnet/samples/HCE.Shared.SignAfterPack/HCE.Shared.SignAfterPack.csproj +21 -0
- package/dotnet/samples/HCE.Shared.SignAfterPack/sampleCert.samplepfx +0 -0
- package/dotnet/samples/README.md +7 -0
- package/mjs/CaseInsensitiveMap.d.ts +12 -0
- package/mjs/CaseInsensitiveMap.d.ts.map +1 -0
- package/mjs/CaseInsensitiveMap.mjs +33 -0
- package/mjs/CaseInsensitiveMap.mjs.map +1 -0
- package/mjs/commitlintConfig.d.ts +12 -0
- package/mjs/commitlintConfig.d.ts.map +1 -0
- package/{cjs/commitlintConfig.cjs → mjs/commitlintConfig.mjs} +3 -4
- package/mjs/commitlintConfig.mjs.map +1 -0
- package/mjs/debug.d.ts +4 -0
- package/{cjs → mjs}/debug.d.ts.map +1 -1
- package/mjs/debug.mjs +7 -0
- package/mjs/debug.mjs.map +1 -0
- package/mjs/dotnet/GithubNugetRegistryInfo.d.ts +38 -0
- package/mjs/dotnet/GithubNugetRegistryInfo.d.ts.map +1 -0
- package/mjs/dotnet/GithubNugetRegistryInfo.mjs +43 -0
- package/mjs/dotnet/GithubNugetRegistryInfo.mjs.map +1 -0
- package/mjs/dotnet/GitlabNugetRegistryInfo.d.ts +62 -0
- package/mjs/dotnet/GitlabNugetRegistryInfo.d.ts.map +1 -0
- package/mjs/dotnet/GitlabNugetRegistryInfo.mjs +99 -0
- package/mjs/dotnet/GitlabNugetRegistryInfo.mjs.map +1 -0
- package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.d.ts +2 -0
- package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.d.ts.map +1 -0
- package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.mjs +26 -0
- package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.mjs.map +1 -0
- package/mjs/dotnet/MSBuildProject.d.ts +256 -0
- package/mjs/dotnet/MSBuildProject.d.ts.map +1 -0
- package/mjs/dotnet/MSBuildProject.mjs +447 -0
- package/mjs/dotnet/MSBuildProject.mjs.map +1 -0
- package/mjs/dotnet/MSBuildProjectProperties.d.ts +170 -0
- package/mjs/dotnet/MSBuildProjectProperties.d.ts.map +1 -0
- package/mjs/dotnet/MSBuildProjectProperties.mjs +260 -0
- package/mjs/dotnet/MSBuildProjectProperties.mjs.map +1 -0
- package/mjs/dotnet/NugetProjectProperties.d.ts +379 -0
- package/mjs/dotnet/NugetProjectProperties.d.ts.map +1 -0
- package/mjs/dotnet/NugetProjectProperties.mjs +577 -0
- package/mjs/dotnet/NugetProjectProperties.mjs.map +1 -0
- package/mjs/dotnet/NugetRegistryInfo.d.ts +384 -0
- package/mjs/dotnet/NugetRegistryInfo.d.ts.map +1 -0
- package/mjs/dotnet/NugetRegistryInfo.mjs +752 -0
- package/mjs/dotnet/NugetRegistryInfo.mjs.map +1 -0
- package/mjs/dotnet/helpers.d.ts +63 -0
- package/mjs/dotnet/helpers.d.ts.map +1 -0
- package/mjs/dotnet/helpers.mjs +354 -0
- package/mjs/dotnet/helpers.mjs.map +1 -0
- package/mjs/dotnet/index.d.ts +17 -0
- package/mjs/dotnet/index.d.ts.map +1 -0
- package/mjs/dotnet/index.mjs +9 -0
- package/mjs/dotnet/index.mjs.map +1 -0
- package/mjs/dotnet.d.ts +3 -0
- package/mjs/dotnet.d.ts.map +1 -0
- package/mjs/dotnet.mjs +9 -0
- package/mjs/dotnet.mjs.map +1 -0
- package/mjs/eslintConfig.d.ts +4 -0
- package/mjs/eslintConfig.d.ts.map +1 -0
- package/mjs/eslintConfig.mjs +98 -0
- package/mjs/eslintConfig.mjs.map +1 -0
- package/mjs/index.d.ts +3 -0
- package/mjs/index.d.ts.map +1 -0
- package/mjs/index.mjs +4 -0
- package/mjs/index.mjs.map +1 -0
- package/mjs/insertPlugins.d.ts +18 -0
- package/mjs/insertPlugins.d.ts.map +1 -0
- package/mjs/insertPlugins.mjs +73 -0
- package/mjs/insertPlugins.mjs.map +1 -0
- package/mjs/semantic-release__commit-analyzer.d.mjs +2 -0
- package/mjs/semantic-release__commit-analyzer.d.mjs.map +1 -0
- package/mjs/semantic-release__exec.d.mjs +2 -0
- package/mjs/semantic-release__exec.d.mjs.map +1 -0
- package/mjs/semantic-release__git.d.mjs +2 -0
- package/mjs/semantic-release__git.d.mjs.map +1 -0
- package/mjs/semantic-release__github.d.mjs +2 -0
- package/mjs/semantic-release__github.d.mjs.map +1 -0
- package/mjs/semanticReleaseConfig.d.ts +97 -0
- package/mjs/semanticReleaseConfig.d.ts.map +1 -0
- package/mjs/semanticReleaseConfig.mjs +63 -0
- package/mjs/semanticReleaseConfig.mjs.map +1 -0
- package/mjs/semanticReleaseConfigDotnet.d.ts +109 -0
- package/mjs/semanticReleaseConfigDotnet.d.ts.map +1 -0
- package/mjs/semanticReleaseConfigDotnet.mjs +267 -0
- package/mjs/semanticReleaseConfigDotnet.mjs.map +1 -0
- package/mjs/setupGitPluginSpec.d.ts +22 -0
- package/mjs/setupGitPluginSpec.d.ts.map +1 -0
- package/mjs/setupGitPluginSpec.mjs +144 -0
- package/mjs/setupGitPluginSpec.mjs.map +1 -0
- package/mjs/utils/Exact.d.ts +20 -0
- package/mjs/utils/Exact.d.ts.map +1 -0
- package/mjs/utils/Exact.mjs +75 -0
- package/mjs/utils/Exact.mjs.map +1 -0
- package/mjs/utils/GracefulRecursion.d.mjs +2 -0
- package/mjs/utils/GracefulRecursion.d.mjs.map +1 -0
- package/mjs/utils/env.d.ts +24 -0
- package/mjs/utils/env.d.ts.map +1 -0
- package/mjs/utils/env.mjs +39 -0
- package/mjs/utils/env.mjs.map +1 -0
- package/mjs/utils/execAsync.d.ts +37 -0
- package/mjs/utils/execAsync.d.ts.map +1 -0
- package/mjs/utils/execAsync.mjs +59 -0
- package/mjs/utils/execAsync.mjs.map +1 -0
- package/mjs/utils/miscTypes.d.ts +13 -0
- package/mjs/utils/miscTypes.d.ts.map +1 -0
- package/mjs/utils/miscTypes.mjs +10 -0
- package/mjs/utils/miscTypes.mjs.map +1 -0
- package/mjs/utils/reflection/FunctionLike.d.mjs +2 -0
- package/mjs/utils/reflection/FunctionLike.d.mjs.map +1 -0
- package/mjs/utils/reflection/GetterDescriptor.d.mjs +2 -0
- package/mjs/utils/reflection/GetterDescriptor.d.mjs.map +1 -0
- package/mjs/utils/reflection/InstancePropertyDescriptorMap.d.mjs +2 -0
- package/mjs/utils/reflection/InstancePropertyDescriptorMap.d.mjs.map +1 -0
- package/mjs/utils/reflection/InstanceTypeOrSelfPropertyDescriptorMap.d.mjs +2 -0
- package/mjs/utils/reflection/InstanceTypeOrSelfPropertyDescriptorMap.d.mjs.map +1 -0
- package/mjs/utils/reflection/OwnGetterDescriptorMap.d.mjs +2 -0
- package/mjs/utils/reflection/OwnGetterDescriptorMap.d.mjs.map +1 -0
- package/mjs/utils/reflection/OwnKeyOf.d.mjs +2 -0
- package/mjs/utils/reflection/OwnKeyOf.d.mjs.map +1 -0
- package/mjs/utils/reflection/OwnPropertyDescriptorMap.d.mjs +2 -0
- package/mjs/utils/reflection/OwnPropertyDescriptorMap.d.mjs.map +1 -0
- package/mjs/utils/reflection/PropertyDescriptorMap.d.mjs +2 -0
- package/mjs/utils/reflection/PropertyDescriptorMap.d.mjs.map +1 -0
- package/mjs/utils/reflection/filterForGetters.d.ts +7 -0
- package/mjs/utils/reflection/filterForGetters.d.ts.map +1 -0
- package/mjs/utils/reflection/filterForGetters.mjs +27 -0
- package/mjs/utils/reflection/filterForGetters.mjs.map +1 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptors.d.ts +22 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptors.d.ts.map +1 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptors.mjs +34 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptors.mjs.map +1 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.d.ts +56 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.d.ts.map +1 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.mjs +72 -0
- package/mjs/utils/reflection/getOwnPropertyDescriptorsRecursively.mjs.map +1 -0
- package/mjs/utils/reflection/getPrototypeChainOf.d.ts +16 -0
- package/mjs/utils/reflection/getPrototypeChainOf.d.ts.map +1 -0
- package/mjs/utils/reflection/getPrototypeChainOf.mjs +55 -0
- package/mjs/utils/reflection/getPrototypeChainOf.mjs.map +1 -0
- package/mjs/utils/reflection/getPrototypeOf.d.ts +8 -0
- package/mjs/utils/reflection/getPrototypeOf.d.ts.map +1 -0
- package/mjs/utils/reflection/getPrototypeOf.mjs +10 -0
- package/mjs/utils/reflection/getPrototypeOf.mjs.map +1 -0
- package/mjs/utils/reflection/inheritance.d.ts +180 -0
- package/mjs/utils/reflection/inheritance.d.ts.map +1 -0
- package/mjs/utils/reflection/inheritance.mjs +148 -0
- package/mjs/utils/reflection/inheritance.mjs.map +1 -0
- package/mjs/utils/reflection/isConstructor.d.ts +17 -0
- package/mjs/utils/reflection/isConstructor.d.ts.map +1 -0
- package/mjs/utils/reflection/isConstructor.mjs +63 -0
- package/mjs/utils/reflection/isConstructor.mjs.map +1 -0
- package/mjs/utils/reflection/isGetterDescriptor.d.ts +9 -0
- package/mjs/utils/reflection/isGetterDescriptor.d.ts.map +1 -0
- package/mjs/utils/reflection/isGetterDescriptor.mjs +12 -0
- package/mjs/utils/reflection/isGetterDescriptor.mjs.map +1 -0
- package/mjs/utils/reflection/listOwnGetters.d.ts +26 -0
- package/mjs/utils/reflection/listOwnGetters.d.ts.map +1 -0
- package/mjs/utils/reflection/listOwnGetters.mjs +39 -0
- package/mjs/utils/reflection/listOwnGetters.mjs.map +1 -0
- package/mjs/utils/reflection.d.ts +18 -0
- package/mjs/utils/reflection.d.ts.map +1 -0
- package/mjs/utils/reflection.mjs +10 -0
- package/mjs/utils/reflection.mjs.map +1 -0
- package/package.json +77 -78
- package/src/CaseInsensitiveMap.ts +34 -0
- package/src/commitlintConfig.ts +17 -9
- package/src/debug.ts +4 -4
- package/src/dotnet/GithubNugetRegistryInfo.ts +68 -0
- package/src/dotnet/GitlabNugetRegistryInfo.ts +126 -0
- package/src/dotnet/IsNextVersionAlreadyPublished.cli.ts +44 -0
- package/src/dotnet/MSBuildProject.ts +702 -76
- package/src/dotnet/MSBuildProjectProperties.ts +281 -15
- package/src/dotnet/NugetProjectProperties.ts +609 -0
- package/src/dotnet/NugetRegistryInfo.ts +1025 -0
- package/src/dotnet/helpers.ts +479 -0
- package/src/dotnet/index.ts +17 -0
- package/src/dotnet.ts +2 -6
- package/src/eslintConfig.ts +174 -71
- package/src/index.ts +1 -3
- package/src/insertPlugins.ts +116 -0
- package/src/semantic-release__commit-analyzer.d.ts +44 -38
- package/src/semantic-release__exec.d.ts +15 -0
- package/src/semantic-release__git.d.ts +85 -88
- package/src/semantic-release__github.d.ts +139 -139
- package/src/semanticReleaseConfig.ts +111 -47
- package/src/semanticReleaseConfigDotnet.ts +397 -104
- package/src/setupGitPluginSpec.ts +153 -58
- package/src/tsconfig.json +8 -8
- package/src/utils/Exact.ts +49 -0
- package/src/utils/GracefulRecursion.d.ts +12 -0
- package/src/utils/env.ts +44 -0
- package/src/utils/execAsync.ts +89 -0
- package/src/utils/miscTypes.ts +18 -0
- package/src/utils/reflection/FunctionLike.d.ts +17 -0
- package/src/utils/reflection/GetterDescriptor.d.ts +8 -0
- package/src/utils/reflection/InstancePropertyDescriptorMap.d.ts +32 -0
- package/src/utils/reflection/InstanceTypeOrSelfPropertyDescriptorMap.d.ts +20 -0
- package/src/utils/reflection/OwnGetterDescriptorMap.d.ts +17 -0
- package/src/utils/reflection/OwnKeyOf.d.ts +20 -0
- package/src/utils/reflection/OwnPropertyDescriptorMap.d.ts +82 -0
- package/src/utils/reflection/PropertyDescriptorMap.d.ts +15 -0
- package/src/utils/reflection/filterForGetters.ts +59 -0
- package/src/utils/reflection/getOwnPropertyDescriptors.ts +52 -0
- package/src/utils/reflection/getOwnPropertyDescriptorsRecursively.ts +127 -0
- package/src/utils/reflection/getPrototypeChainOf.ts +85 -0
- package/src/utils/reflection/getPrototypeOf.ts +12 -0
- package/src/utils/reflection/inheritance.ts +262 -0
- package/src/utils/reflection/isConstructor.ts +74 -0
- package/src/utils/reflection/isGetterDescriptor.ts +11 -0
- package/src/utils/reflection/listOwnGetters.ts +80 -0
- package/src/utils/reflection.ts +18 -0
- package/cjs/commitlintConfig-wrapper.mjs +0 -6
- package/cjs/commitlintConfig.cjs.map +0 -1
- package/cjs/commitlintConfig.d.ts +0 -4
- package/cjs/commitlintConfig.d.ts.map +0 -1
- package/cjs/debug.cjs +0 -13
- package/cjs/debug.cjs.map +0 -1
- package/cjs/debug.d.ts +0 -4
- package/cjs/dotnet/MSBuildProject.cjs +0 -84
- package/cjs/dotnet/MSBuildProject.cjs.map +0 -1
- package/cjs/dotnet/MSBuildProject.d.ts +0 -42
- package/cjs/dotnet/MSBuildProject.d.ts.map +0 -1
- package/cjs/dotnet/MSBuildProjectProperties.cjs +0 -22
- package/cjs/dotnet/MSBuildProjectProperties.cjs.map +0 -1
- package/cjs/dotnet/MSBuildProjectProperties.d.ts +0 -13
- package/cjs/dotnet/MSBuildProjectProperties.d.ts.map +0 -1
- package/cjs/dotnet/createDummyNupkg.cjs +0 -26
- package/cjs/dotnet/createDummyNupkg.cjs.map +0 -1
- package/cjs/dotnet/createDummyNupkg.d.ts +0 -2
- package/cjs/dotnet/createDummyNupkg.d.ts.map +0 -1
- package/cjs/dotnet/dotnetGHPR.cjs +0 -173
- package/cjs/dotnet/dotnetGHPR.cjs.map +0 -1
- package/cjs/dotnet/dotnetGHPR.d.ts +0 -37
- package/cjs/dotnet/dotnetGHPR.d.ts.map +0 -1
- package/cjs/dotnet/dotnetGLPR.cjs +0 -41
- package/cjs/dotnet/dotnetGLPR.cjs.map +0 -1
- package/cjs/dotnet/dotnetGLPR.d.ts +0 -13
- package/cjs/dotnet/dotnetGLPR.d.ts.map +0 -1
- package/cjs/dotnet/dotnetHelpers.cjs +0 -141
- package/cjs/dotnet/dotnetHelpers.cjs.map +0 -1
- package/cjs/dotnet/dotnetHelpers.d.ts +0 -26
- package/cjs/dotnet/dotnetHelpers.d.ts.map +0 -1
- package/cjs/dotnet-wrapper.mjs +0 -6
- package/cjs/dotnet.cjs +0 -15
- package/cjs/dotnet.cjs.map +0 -1
- package/cjs/dotnet.d.ts +0 -7
- package/cjs/dotnet.d.ts.map +0 -1
- package/cjs/envUtils-wrapper.mjs +0 -6
- package/cjs/envUtils.cjs +0 -37
- package/cjs/envUtils.cjs.map +0 -1
- package/cjs/envUtils.d.ts +0 -15
- package/cjs/envUtils.d.ts.map +0 -1
- package/cjs/eslintConfig-wrapper.mjs +0 -6
- package/cjs/eslintConfig.cjs +0 -52
- package/cjs/eslintConfig.cjs.map +0 -1
- package/cjs/eslintConfig.d.ts +0 -3
- package/cjs/eslintConfig.d.ts.map +0 -1
- package/cjs/findStaticConfig-wrapper.mjs +0 -6
- package/cjs/findStaticConfig.cjs +0 -34
- package/cjs/findStaticConfig.cjs.map +0 -1
- package/cjs/findStaticConfig.d.ts +0 -2
- package/cjs/findStaticConfig.d.ts.map +0 -1
- package/cjs/index-wrapper.mjs +0 -6
- package/cjs/index.cjs +0 -10
- package/cjs/index.cjs.map +0 -1
- package/cjs/index.d.ts +0 -5
- package/cjs/index.d.ts.map +0 -1
- package/cjs/semantic-release__commit-analyzer.d.cjs +0 -2
- package/cjs/semantic-release__commit-analyzer.d.cjs.map +0 -1
- package/cjs/semantic-release__git.d.cjs +0 -2
- package/cjs/semantic-release__git.d.cjs.map +0 -1
- package/cjs/semantic-release__github.d.cjs +0 -2
- package/cjs/semantic-release__github.d.cjs.map +0 -1
- package/cjs/semanticReleaseConfig-wrapper.mjs +0 -6
- package/cjs/semanticReleaseConfig.cjs +0 -33
- package/cjs/semanticReleaseConfig.cjs.map +0 -1
- package/cjs/semanticReleaseConfig.d.ts +0 -4
- package/cjs/semanticReleaseConfig.d.ts.map +0 -1
- package/cjs/semanticReleaseConfigDotnet-wrapper.mjs +0 -7
- package/cjs/semanticReleaseConfigDotnet.cjs +0 -112
- package/cjs/semanticReleaseConfigDotnet.cjs.map +0 -1
- package/cjs/semanticReleaseConfigDotnet.d.ts +0 -51
- package/cjs/semanticReleaseConfigDotnet.d.ts.map +0 -1
- package/cjs/setupGitPluginSpec-wrapper.mjs +0 -6
- package/cjs/setupGitPluginSpec.cjs +0 -67
- package/cjs/setupGitPluginSpec.cjs.map +0 -1
- package/cjs/setupGitPluginSpec.d.ts +0 -19
- package/cjs/setupGitPluginSpec.d.ts.map +0 -1
- package/src/dotnet/createDummyNupkg.ts +0 -30
- package/src/dotnet/dotnetGHPR.ts +0 -232
- package/src/dotnet/dotnetGLPR.ts +0 -46
- package/src/dotnet/dotnetHelpers.ts +0 -184
- package/src/envUtils.ts +0 -36
- package/src/findStaticConfig.ts +0 -31
- package/static/.releaserc.yml +0 -35
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,325 @@
|
|
|
1
|
+
## [3.0.0-develop.10](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.9...v3.0.0-develop.10) (2025-07-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* avoid using implicitly fixed-length arrays ([02a2c2b](https://github.com/HaloSPV3/HCE.Shared/commit/02a2c2b880025fbd5e309d330f5546c6101ce3c0))
|
|
6
|
+
|
|
7
|
+
## [3.0.0-develop.9](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.8...v3.0.0-develop.9) (2025-07-24)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use argument splatting ([6861778](https://github.com/HaloSPV3/HCE.Shared/commit/68617788184e3b9c56afaddd8c69461b2286312c))
|
|
12
|
+
|
|
13
|
+
## [3.0.0-develop.8](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.7...v3.0.0-develop.8) (2025-07-24)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* fix typo in $ghRegistry string ([8f8de0d](https://github.com/HaloSPV3/HCE.Shared/commit/8f8de0d5a23403f11824c839dc80a98025f06b04))
|
|
18
|
+
|
|
19
|
+
## [3.0.0-develop.7](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.6...v3.0.0-develop.7) (2025-07-24)
|
|
20
|
+
|
|
21
|
+
### ⚠ BREAKING CHANGES
|
|
22
|
+
|
|
23
|
+
* **insertPlugins, semanticRelease:** allow only tuple `PluginSpec`
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* export `@semantic-release/exec` `Options` interface ([331456e](https://github.com/HaloSPV3/HCE.Shared/commit/331456ed9ffe220f0270a1aefc3b34973c5ce64b))
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* disable `@semantic-release/npm` tarballDir config ([b4d2fb5](https://github.com/HaloSPV3/HCE.Shared/commit/b4d2fb50b368e5c66c323781fb094adee7f8fb01))
|
|
32
|
+
* try increasing GitLab Release retry limit ([ff1e758](https://github.com/HaloSPV3/HCE.Shared/commit/ff1e758499602cbe02bee31fc217be4e91d2b423))
|
|
33
|
+
|
|
34
|
+
### Code Refactoring
|
|
35
|
+
|
|
36
|
+
* **insertPlugins, semanticRelease:** allow only tuple `PluginSpec` ([e44ef67](https://github.com/HaloSPV3/HCE.Shared/commit/e44ef67fb824ddf2a74f13bd4e08a4acc27a002f))
|
|
37
|
+
|
|
38
|
+
## [3.0.0-develop.7](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.6...v3.0.0-develop.7) (2025-07-24)
|
|
39
|
+
|
|
40
|
+
### ⚠ BREAKING CHANGES
|
|
41
|
+
|
|
42
|
+
* **insertPlugins, semanticRelease:** allow only tuple `PluginSpec`
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
* export `@semantic-release/exec` `Options` interface ([331456e](https://github.com/HaloSPV3/HCE.Shared/commit/331456ed9ffe220f0270a1aefc3b34973c5ce64b))
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* try increasing GitLab Release retry limit ([ff1e758](https://github.com/HaloSPV3/HCE.Shared/commit/ff1e758499602cbe02bee31fc217be4e91d2b423))
|
|
51
|
+
|
|
52
|
+
### Code Refactoring
|
|
53
|
+
|
|
54
|
+
* **insertPlugins, semanticRelease:** allow only tuple `PluginSpec` ([e44ef67](https://github.com/HaloSPV3/HCE.Shared/commit/e44ef67fb824ddf2a74f13bd4e08a4acc27a002f))
|
|
55
|
+
|
|
56
|
+
## [3.0.0-develop.6](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.5...v3.0.0-develop.6) (2025-07-17)
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* try fixing GitLab asset label, path ([75463a0](https://github.com/HaloSPV3/HCE.Shared/commit/75463a02ce247b33c25435d1e4afa78d6748f8db))
|
|
61
|
+
* try fixing GitLab assets path AGAIN ([0bee0ae](https://github.com/HaloSPV3/HCE.Shared/commit/0bee0aee71e2da6707228820cec41c4a2248c44a))
|
|
62
|
+
|
|
63
|
+
## [3.0.0-develop.5](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.4...v3.0.0-develop.5) (2025-07-17)
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
|
|
67
|
+
* **insertPlugins:** add, export `insertPlugin`; declare internal `insertAndSortPlugins`; fix false-positive error caused by `!0` ([8971599](https://github.com/HaloSPV3/HCE.Shared/commit/8971599585dc962d5be6e7c3cc084f8c1a65d71c))
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
* **dotnet.SemanticRelease:** append `@semantic-release/exec` plugin to plugins array if not found ([7eeafb2](https://github.com/HaloSPV3/HCE.Shared/commit/7eeafb2caab31358ecb91f8b3f1b885a11bc43b8))
|
|
72
|
+
* **dotnet.SemanticRelease:** set/append dummy pack, dummy push, and INVAP commands ([88a523e](https://github.com/HaloSPV3/HCE.Shared/commit/88a523e231a821b59b72af0dee785affa9889499))
|
|
73
|
+
|
|
74
|
+
## [3.0.0-develop.5](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.4...v3.0.0-develop.5) (2025-07-17)
|
|
75
|
+
|
|
76
|
+
### Features
|
|
77
|
+
|
|
78
|
+
* **insertPlugins:** add, export `insertPlugin`; declare internal `insertAndSortPlugins`; fix false-positive error caused by `!0` ([8971599](https://github.com/HaloSPV3/HCE.Shared/commit/8971599585dc962d5be6e7c3cc084f8c1a65d71c))
|
|
79
|
+
|
|
80
|
+
### Bug Fixes
|
|
81
|
+
|
|
82
|
+
* **dotnet.SemanticRelease:** append `@semantic-release/exec` plugin to plugins array if not found ([7eeafb2](https://github.com/HaloSPV3/HCE.Shared/commit/7eeafb2caab31358ecb91f8b3f1b885a11bc43b8))
|
|
83
|
+
* **dotnet.SemanticRelease:** set/append dummy pack, dummy push, and INVAP commands ([88a523e](https://github.com/HaloSPV3/HCE.Shared/commit/88a523e231a821b59b72af0dee785affa9889499))
|
|
84
|
+
|
|
85
|
+
## [3.0.0-develop.4](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.3...v3.0.0-develop.4) (2025-07-16)
|
|
86
|
+
|
|
87
|
+
### Bug Fixes
|
|
88
|
+
|
|
89
|
+
* **deps:** force `semantic-release-export-data` to use `@actions/core@1.11.1` to mitigate CVE-2025-22150 ([1b9cd9c](https://github.com/HaloSPV3/HCE.Shared/commit/1b9cd9c34f34b656f135ed9cd128366168df97b4))
|
|
90
|
+
|
|
91
|
+
## [3.0.0-develop.3](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.2...v3.0.0-develop.3) (2025-07-16)
|
|
92
|
+
|
|
93
|
+
### Bug Fixes
|
|
94
|
+
|
|
95
|
+
* don't forget to add the GHTuple object to the plugins list, overwriting the original GHTuple ([4b8e8a3](https://github.com/HaloSPV3/HCE.Shared/commit/4b8e8a3ec7215aa75785793006e6f0cd4a76ae60))
|
|
96
|
+
|
|
97
|
+
## [3.0.0-develop.2](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.1...v3.0.0-develop.2) (2025-07-16)
|
|
98
|
+
|
|
99
|
+
### ⚠ BREAKING CHANGES
|
|
100
|
+
|
|
101
|
+
* manually set package version to 3.0.0
|
|
102
|
+
|
|
103
|
+
### Bug Fixes
|
|
104
|
+
|
|
105
|
+
* **deps, deps-dev, eslint:** upgrade group "eslint" for ESLint 9 ([173db90](https://github.com/HaloSPV3/HCE.Shared/commit/173db90e773f47219311280d71124c31573384ff))
|
|
106
|
+
* **deps, deps-dev:** bump group "eslint" ([b4bd1a5](https://github.com/HaloSPV3/HCE.Shared/commit/b4bd1a535548ce206b0b68b9cbb9b2f8830947a3))
|
|
107
|
+
* **deps, deps-dev:** update `@eslint/js`, `eslint` to v9.31.0 ([a3fe6e9](https://github.com/HaloSPV3/HCE.Shared/commit/a3fe6e9bb078bf5bab11008a44133e0108ec6614))
|
|
108
|
+
* **deps:** :ambulance: bump ws to 8.18.0 (>=8.17.1) ([d0dcf52](https://github.com/HaloSPV3/HCE.Shared/commit/d0dcf527ad2b98f550840c9375c92c2d15ae1d57))
|
|
109
|
+
* **deps:** 🚑️ fix GitHub advisories ([261fcf2](https://github.com/HaloSPV3/HCE.Shared/commit/261fcf253af789b99fdab47794a9efb737480851))
|
|
110
|
+
* **deps:** bump `@types/node` to Node.js 20.11.x ([1a0ea53](https://github.com/HaloSPV3/HCE.Shared/commit/1a0ea5391f2b1c29445262852797b448acd81e8f))
|
|
111
|
+
* **deps:** bump @types/node to 20.19.4 ([24136f4](https://github.com/HaloSPV3/HCE.Shared/commit/24136f4f69857ab431af89cd36900bb975269b25))
|
|
112
|
+
* **deps:** bump `@octokit/request` to 9.2.4 ([a92bf8e](https://github.com/HaloSPV3/HCE.Shared/commit/a92bf8eb77566fd85188455f43614bcd09a843c3))
|
|
113
|
+
* **deps:** bump `@semantic-release/github` to 10.3.5 ([a6786fe](https://github.com/HaloSPV3/HCE.Shared/commit/a6786feeeb0ccd813b569b5fd8ee848c19e5c690))
|
|
114
|
+
* **deps:** bump ajv to 8.17.1 ([50bd762](https://github.com/HaloSPV3/HCE.Shared/commit/50bd762740228961a63b71d00c7199af33544d73))
|
|
115
|
+
* **deps:** bump globals to 15.15.0 ([8199785](https://github.com/HaloSPV3/HCE.Shared/commit/8199785fa01ea937b5cdc1a2c5d6fd44375f7c79))
|
|
116
|
+
* **deps:** bump group "commitlint" ([60f2fd4](https://github.com/HaloSPV3/HCE.Shared/commit/60f2fd4c1bb46a64c8d963efc976fab712dc2e71))
|
|
117
|
+
* **deps:** bump group "semantic-release" ([2aa0dff](https://github.com/HaloSPV3/HCE.Shared/commit/2aa0dff55f8cdb64509f2b5ab7ac2194f8268fb3))
|
|
118
|
+
* **deps:** bump husky to 9.1.7 ([b8b0b1e](https://github.com/HaloSPV3/HCE.Shared/commit/b8b0b1e4734f8705856e76e8ac89d8f3cd702960))
|
|
119
|
+
* **deps:** bump semantic-release-export-data to 2.8.1 ([1dccb43](https://github.com/HaloSPV3/HCE.Shared/commit/1dccb43ed95155bb69d1d56758b7548a0fd5e31e))
|
|
120
|
+
* **deps:** bump transitive dep tslib to 2.8.1 ([16b327f](https://github.com/HaloSPV3/HCE.Shared/commit/16b327f4af22f5750692a53aec6938d10f5420a5))
|
|
121
|
+
* **deps:** bump typescript to 5.8.3 ([19c0344](https://github.com/HaloSPV3/HCE.Shared/commit/19c03443e8f2f4a5efb1f6171af6e43dc413b5f0))
|
|
122
|
+
* **deps:** remove unused dep `@octokit/request` ([b000049](https://github.com/HaloSPV3/HCE.Shared/commit/b0000495bdaac34f300f5d5dbc3b495615465d84))
|
|
123
|
+
* **deps:** set `@types/node` semver range to PATCHes ([91395dd](https://github.com/HaloSPV3/HCE.Shared/commit/91395dd2408752b536c91887cc6092f0c3b0b929))
|
|
124
|
+
* **deps:** update `@dotenvx/dotenvx` to v1.47.6 ([a52fd9c](https://github.com/HaloSPV3/HCE.Shared/commit/a52fd9c0719024ef00cd836dbc654c4552cea3eb))
|
|
125
|
+
* **deps:** update `conventional-changelog-conventionalcommits` to v9.1.0 ([43cb289](https://github.com/HaloSPV3/HCE.Shared/commit/43cb2895345996220ec328686d0a2aa3e1f63a04))
|
|
126
|
+
* **deps:** update `semantic-release` to v24.2.7 ([5ed024b](https://github.com/HaloSPV3/HCE.Shared/commit/5ed024b8eac1db8de08ff7b0b7a6d3d8cc49900d))
|
|
127
|
+
* **deps:** update `typescript-eslint` to v8.37.0 ([7bb7852](https://github.com/HaloSPV3/HCE.Shared/commit/7bb78527922020b6a07302a905c4f58459bd8186))
|
|
128
|
+
* **deps:** update dependency globals to v16 ([#431](https://github.com/HaloSPV3/HCE.Shared/issues/431)) ([d7a440c](https://github.com/HaloSPV3/HCE.Shared/commit/d7a440c19c1e28ec2678198df3ad60bcaae2ca90))
|
|
129
|
+
* **dotnet.GHPR:** un-enclose `dotnet push` args; fix error detection ([ccdce25](https://github.com/HaloSPV3/HCE.Shared/commit/ccdce25aee4c27f406cb8353f98c38767d203f81))
|
|
130
|
+
* **dotnet.helpers, dotnet.GHPR:** remove `async` modifiers and `Promise` return types from all functions affecting `semanticReleaseConfigDotnet` ([659836c](https://github.com/HaloSPV3/HCE.Shared/commit/659836ca7424b434791d50585f4eafebcd78e446)), closes [#407](https://github.com/HaloSPV3/HCE.Shared/issues/407)
|
|
131
|
+
* **dotnet.helpers:** add missing `return` ([5998d54](https://github.com/HaloSPV3/HCE.Shared/commit/5998d54438e67849b9d305ff7c15b47ff4721456))
|
|
132
|
+
* fix apparently case-sensitive repo url for attestation/provenance ([19e1d72](https://github.com/HaloSPV3/HCE.Shared/commit/19e1d721eaf6a3137aa721ad80200f28b58a3134))
|
|
133
|
+
|
|
134
|
+
### Build System
|
|
135
|
+
|
|
136
|
+
* manually set package version to 3.0.0 ([a6d7be2](https://github.com/HaloSPV3/HCE.Shared/commit/a6d7be20beee7aaf2e34eff91885684564b9ae55))
|
|
137
|
+
|
|
138
|
+
## [3.0.0-develop.1](https://github.com/halospv3/hce.shared/compare/v2.6.0...v3.0.0-develop.1) (2025-07-15)
|
|
139
|
+
|
|
140
|
+
### ⚠ BREAKING CHANGES
|
|
141
|
+
|
|
142
|
+
* **deps, deps-dev:** bump `commitlint` deps to ^19.8.1; move `@commitlint/types` to dev deps
|
|
143
|
+
* deeply const `semanticReleaseConfig` `baseConfig` to expose values in type, but export as deeply mutable
|
|
144
|
+
* bump @semantic-release/github to v11.0.1
|
|
145
|
+
* **semanticRelease:** change semanticReleaseConfig's baseConfig to const; add more type
|
|
146
|
+
* **semanticRelease:** change type of defaultPlugins to frozen "as const" string array
|
|
147
|
+
* **dotnet.helpers:** overhaul `dotnetHelpers`
|
|
148
|
+
* **dotnet:** allow readonly array args where they are not modified
|
|
149
|
+
* **dotnet:** pass each path in `string[]` `projectsToPublish` to `Evaluate`; allow passing `MSBP[]`, `NRI[]` to `configurePrepareCmd`
|
|
150
|
+
* **dotnet.NRI:** add `NugetRegistryInfo` arg/prop `project`; refactor `isTokenDefined`; add `DefaultTokenEnvVars`
|
|
151
|
+
* **dotnet:** move `NugetRegistryPair`, `nugetDefault` to its own file
|
|
152
|
+
* **dotnet.MSBP:** add MSBuildProject.Evaluate
|
|
153
|
+
* **dotnet:** refactor MSBuildProject
|
|
154
|
+
* **dotnet.NPP:** remove InstanceProperties GetUniquePropertyKeys; change readonly fields to getters; ensure types
|
|
155
|
+
* **dotnet:** change read-only fields to getters.
|
|
156
|
+
* **dotnet:** replace MSBuildProjectProperties constructor arg 'rest' with 'properties'
|
|
157
|
+
* **dotnet:** rename MSBuildProjectProperties.FullName to MSBuildProjectFullPath
|
|
158
|
+
* remove param "exists" from MSBuildProjectProperties ctor
|
|
159
|
+
* remove property PredefinedProperties
|
|
160
|
+
* remove default export 'getConfig'
|
|
161
|
+
* remove appendPlugins
|
|
162
|
+
* rewrite semanticReleaseConfigDotnet as class
|
|
163
|
+
* rewrite dotnetGHPR, dotnetGLPR, NuGetRegistryInfo as classes
|
|
164
|
+
* move MSBuildProjectProperties to MSBuildProject.ts
|
|
165
|
+
* remove 'dotnet' facade
|
|
166
|
+
* increase TypeScript target from ES5 to ES2022
|
|
167
|
+
* CJS is no longer supported
|
|
168
|
+
* remove static semantic-release config
|
|
169
|
+
|
|
170
|
+
### Features
|
|
171
|
+
|
|
172
|
+
* add `ProjectsToPublish`, `ProjectsToPackAndPush`, `EvaluatedProjects` to `SemanticReleaseConfigDotnet` ([bd37885](https://github.com/halospv3/hce.shared/commit/bd37885b58c5ed47a33b934d751106bfb7c04315))
|
|
173
|
+
* **CIM:** add CaseInsensitiveMap ([d6beb2a](https://github.com/halospv3/hce.shared/commit/d6beb2afe4eb9660059618e1c061e81465eea950))
|
|
174
|
+
* **dotnet, dotnet.NRI:** add `PackDummyPackage`; add `tmpDirNamespace`, `getDummiesDir` ([6023a4e](https://github.com/halospv3/hce.shared/commit/6023a4ef238f2650ccc7f53f91549c5a57f60442))
|
|
175
|
+
* **dotnet.GHNRI:** add `DefaultGithubTokenEnvVars`; update constructor args to satisfy NRI changes ([3bbcbf1](https://github.com/halospv3/hce.shared/commit/3bbcbf180fb01ed2d2a7bea3b2605925d41850bf))
|
|
176
|
+
* **dotnet.INVAP, dotnet.NRI:** add `GetIsNextVersionAlreadyPublishedCommand`, `getGithubOutput`, `getGithubOutputSync`, script for deferred execution of `IsNextVersionAlreadyPublished` ([970acb3](https://github.com/halospv3/hce.shared/commit/970acb34ded0db20d5fa692f8e731ccce7bc1d61))
|
|
177
|
+
* **dotnet.MSBP, dotnet.NPP, dotnet.SemanticRelease:** replace `GetNPPGetterNames` with `NPPGetterNames` ([38ea89d](https://github.com/halospv3/hce.shared/commit/38ea89df2a23a01c67bb983559fa08e7d9901230))
|
|
178
|
+
* **dotnet.MSBP, dotnet.NRI, utils.execAsync:** add `execAsync` wrapper; sort imports ([ca85fa2](https://github.com/halospv3/hce.shared/commit/ca85fa2b1a8b08760a8a09171e22e9fab06468f6))
|
|
179
|
+
* **dotnet.MSBP:** add `BaseOutputPath`, `OutDir` ([daf1c40](https://github.com/halospv3/hce.shared/commit/daf1c4029c1a542dda2de3fdd6fc19bca8abae7d))
|
|
180
|
+
* **dotnet.MSBP:** add MSBuildProject.Evaluate ([cbcf06b](https://github.com/halospv3/hce.shared/commit/cbcf06bb2d6339a37cf9b5dc86463b974df82461))
|
|
181
|
+
* **dotnet.MSBP:** add optional 'projTargets' arguments to `Evaluate` ([9bd1328](https://github.com/halospv3/hce.shared/commit/9bd132805a1f1114b8ce4a03bf688d391c98a00b))
|
|
182
|
+
* **dotnet.MSBP:** add static method `MSBP.fromJSON` ([77f3d71](https://github.com/halospv3/hce.shared/commit/77f3d71546143736c0486c2bd4134956a1fa20a6))
|
|
183
|
+
* **dotnet.MSBP:** export MSBuildEvaluationOutput, some internal ArkType types ([a083f5a](https://github.com/halospv3/hce.shared/commit/a083f5a8469b528994fc1cb29be34365076aac26))
|
|
184
|
+
* **dotnet.MSBP:** expose `EvaluationOptions`, `EvaluationOptions.t` ([f1083c3](https://github.com/halospv3/hce.shared/commit/f1083c3eeebe41fd060b260daa20fcea220d1724))
|
|
185
|
+
* **dotnet.MSBPP:** add `BaseIntermediateOutputPath`, `IntermediateOutputPath` ([e5b6d19](https://github.com/halospv3/hce.shared/commit/e5b6d19548be494bcf5ce0514598ce96060ae7af))
|
|
186
|
+
* **dotnet.MSBPP:** copy and expose protected method `getAndForget` to type system ([cf05ca7](https://github.com/halospv3/hce.shared/commit/cf05ca7b8bf69bcf4b7f1a654d75dbdb32bdaddd))
|
|
187
|
+
* **dotnet.MSBPP:** export type `Class_MSBPP` for convenience ([88878bc](https://github.com/halospv3/hce.shared/commit/88878bc3157fc7bec4404a48f9b316f2aed33ef5))
|
|
188
|
+
* **dotnet.NPP:** add `GetNPPGetterNames` with result caching ([5e82143](https://github.com/halospv3/hce.shared/commit/5e82143c37fc4ac6c054e346e15d9fb6da341258))
|
|
189
|
+
* **dotnet.NPP:** add NugetProjectProperties ([a5bd9d5](https://github.com/halospv3/hce.shared/commit/a5bd9d518968ee70f01b6281b82d8ed877672d75))
|
|
190
|
+
* **dotnet.NPP:** export `ClassLike` type `Class_NPP` for convenience ([8a3618e](https://github.com/halospv3/hce.shared/commit/8a3618ebf051b135b94923e731e6eef4c41e9780))
|
|
191
|
+
* **dotnet.NRI:** add `GetNameForURL` ([5f635d9](https://github.com/halospv3/hce.shared/commit/5f635d9066543650f0a0b5ca3a8ad64fd5c6adb9))
|
|
192
|
+
* **dotnet.NRI:** add `GetPushDummyPackageCommand` ([00bb9f7](https://github.com/halospv3/hce.shared/commit/00bb9f7686350423a756c8cd056555c2dd73d58b))
|
|
193
|
+
* **dotnet.NRI:** add `NugetRegistryInfo` arg/prop `project`; refactor `isTokenDefined`; add `DefaultTokenEnvVars` ([500a86a](https://github.com/halospv3/hce.shared/commit/500a86aefc953198fc0e43f3e9e150195e578dc2))
|
|
194
|
+
* **dotnet.NRI:** add `NugetRegistryInfoOptionsBase`, `NugetRegistryInfoOptions` ([f79de04](https://github.com/halospv3/hce.shared/commit/f79de0425305d40150e304c512b740a8a8817f4b))
|
|
195
|
+
* **dotnet.NRI:** add `PackPackagesOptionsType`, `GetPackCommand`; add `opts` param to `PackDummyPackage` ([e1f3a46](https://github.com/halospv3/hce.shared/commit/e1f3a4686dc937833392cfaa09ad545b4133485d))
|
|
196
|
+
* **dotnet.NRI:** add `PushPackagesOptionsType`, `GetPushCommand`, private `PushPackages` ([df7b9b3](https://github.com/halospv3/hce.shared/commit/df7b9b30991448b7279f115577ffcfa92b1cd084))
|
|
197
|
+
* **dotnet.NRI:** add types `NRI.PackDummyPackagesOptionsType`, `NRI.PushDummyPackagesOptionsType ([d9a53a8](https://github.com/halospv3/hce.shared/commit/d9a53a8d7e6936472f92bc20dc2305d7cb6cbf8c))
|
|
198
|
+
* **dotnet.SAP:** add target `SignAfterPack` ([ad1584f](https://github.com/halospv3/hce.shared/commit/ad1584f6d3244dfc784da93731f76fc099e936f9))
|
|
199
|
+
* **dotnet.SemanticRelease:** add method `getTokenTestingCommands` ([330724e](https://github.com/halospv3/hce.shared/commit/330724e58c7f2932bb109e18bfba9402e9ca45e1))
|
|
200
|
+
* **dotnet.SemanticRelease:** add method `splicePlugin` ([5c6963a](https://github.com/halospv3/hce.shared/commit/5c6963a66f73ec97ec246892750988fa83001254))
|
|
201
|
+
* **dotnet:** add `NugetRegistryPair.fromNugetRegistryInfoAsync` ([f5844ff](https://github.com/halospv3/hce.shared/commit/f5844ffe4545fdfe525817e1aac55736b2a153a7))
|
|
202
|
+
* **dotnet:** add MSBuildProjectProperties.GetFullPath ([360e317](https://github.com/halospv3/hce.shared/commit/360e317951017f6024f53dd54d46dfd20759606a))
|
|
203
|
+
* **dotnet:** add MSBuildProjectProperties.OutputPath ([de8d90c](https://github.com/halospv3/hce.shared/commit/de8d90c9ec1faf6b5fd78b41bf867e8274ea476d))
|
|
204
|
+
* **dotnet:** refactor MSBuildProject ([d743877](https://github.com/halospv3/hce.shared/commit/d743877ea10d8fcaa55517faa22db4dbf968a6ab))
|
|
205
|
+
* enable adding release links to bottom of GitHub releases ([bc20d5e](https://github.com/halospv3/hce.shared/commit/bc20d5e2a73395e14bcdd2b51538c57a29097c98))
|
|
206
|
+
* **eslint:** export config array separately from default export ([14b7f11](https://github.com/halospv3/hce.shared/commit/14b7f11b17479dd4d03625fc0902d01fe6c60b84))
|
|
207
|
+
* **semanticRelease:** add PluginSpec<P,T> and derived types for binding a plugin to its Options ([00e50a0](https://github.com/halospv3/hce.shared/commit/00e50a0b912ea2b8a315192823df1a841484a9c7))
|
|
208
|
+
* **utils.env:** enable passing options `loadDotenv` options to `getEnvVarValue` ([69b348c](https://github.com/halospv3/hce.shared/commit/69b348cddd899d56d951a988e581a3d98cf33aec))
|
|
209
|
+
* **utils.Exact:** export `Exact<T, S>` ([65db38a](https://github.com/halospv3/hce.shared/commit/65db38a0eb9cae858b1aa3c67c478de27a6160eb))
|
|
210
|
+
* **utils.execAsync:** add `ChildProcessSpawnException` for `execAsync` wrapper ([a1f032e](https://github.com/halospv3/hce.shared/commit/a1f032ec92498e930074f0a88e883725c85a406a))
|
|
211
|
+
* **utils.GracefulRecursion:** export GracefulRecursion types `Length<T>`, `TupleOf<N, T>`, `Pop<T>`, `Increment<N>`, `Decrement` ([dacf0b5](https://github.com/halospv3/hce.shared/commit/dacf0b5192d30ce5ea9a012806960db603fec88a))
|
|
212
|
+
* **utils.reflection.FL:** add type FunctionLike ([d236ee1](https://github.com/halospv3/hce.shared/commit/d236ee1fb86a109a964c3b025da117f49468c30b))
|
|
213
|
+
* **utils.reflection.GD:** add type `GetterDescriptor` ([7d0333c](https://github.com/halospv3/hce.shared/commit/7d0333cf3a7d10faee98dc550c231db2a3784e8d))
|
|
214
|
+
* **utils.reflection.getOPDs:** move `getOwnPropertyDescriptors` to its own file ([e860edd](https://github.com/halospv3/hce.shared/commit/e860eddccaea975cd115caec4ecf89ac6946e0e6))
|
|
215
|
+
* **utils.reflection.getOPDsR:** move `getOwnPropertyDescriptorsRecursively` and related types to their own file ([2cc8c04](https://github.com/halospv3/hce.shared/commit/2cc8c042de200702e95129f357c167cf628d2fe8))
|
|
216
|
+
* **utils.reflection.getPrototypeChainOf:** add function `getPrototypeChainOf` ([acf5d59](https://github.com/halospv3/hce.shared/commit/acf5d593c0cc6008af1a02d3ddd4777958cd6fef))
|
|
217
|
+
* **utils.reflection.inheritance, utils.reflection.getPrototypeOf:** add inheritance group ([9403382](https://github.com/halospv3/hce.shared/commit/94033822f8469ec1697b06ed98f7e909f7616b28))
|
|
218
|
+
* **utils.reflection.IPDM:** add type `InstancePropertyDescriptorMap` ([d3e8f61](https://github.com/halospv3/hce.shared/commit/d3e8f6177958927b5e7cbe80c8c91a77e44792ba))
|
|
219
|
+
* **utils.reflection.isConstructor:** add function `isConstructor` ([e6e551b](https://github.com/halospv3/hce.shared/commit/e6e551bcb516f99fdb72a4613b8433f46bb0c626))
|
|
220
|
+
* **utils.reflection.isGetterDescriptor:** add `isGetterDescriptor` ([c42a202](https://github.com/halospv3/hce.shared/commit/c42a202249693ced46534fdad37aa3a90d933d25))
|
|
221
|
+
* **utils.reflection.ITOSPDM:** add type `InstanceTypeOrSelfPropertyDescriptorMap` ([45e1030](https://github.com/halospv3/hce.shared/commit/45e10305db683910cad0f6021d09fab70792e327))
|
|
222
|
+
* **utils.reflection.OGDM:** add type `OwnGetterDescriptorMap` ([2b136f6](https://github.com/halospv3/hce.shared/commit/2b136f68220147f9102490ca61f25917d10ab3f3))
|
|
223
|
+
* **utils.reflection.OPDM:** add type `OwnPropertyDescriptorMap` ([15605d4](https://github.com/halospv3/hce.shared/commit/15605d47937a813e99da5f1821d2cde589078b7e))
|
|
224
|
+
* **utils.reflection.OwnKeyOf:** export utility type `OwnKeyOf<T, __proto__>` ([ef0f609](https://github.com/halospv3/hce.shared/commit/ef0f609ab2b7ef8a11ba94b83ca4811c50328018))
|
|
225
|
+
* **utils.reflection.PDM:** add PropertyDescriptorMap variant with extra type parameter for Omit ([9318a0e](https://github.com/halospv3/hce.shared/commit/9318a0ebe1251f93faa1728c21b4e69105137b86))
|
|
226
|
+
* **utils.reflection:** move `listOwnGetters` to its own file ([f6976f5](https://github.com/halospv3/hce.shared/commit/f6976f597d4f59666499f33135621849a7224a5b))
|
|
227
|
+
* **utils:** add miscTypes.ts ([11cefed](https://github.com/halospv3/hce.shared/commit/11cefed5e884df9eac187490d6445f2dcffb2d41))
|
|
228
|
+
* **utils:** add reflection.ts ([6fb70d8](https://github.com/halospv3/hce.shared/commit/6fb70d8e4b627b50f8b8a8d972a504d843f0ad3e))
|
|
229
|
+
|
|
230
|
+
### Bug Fixes
|
|
231
|
+
|
|
232
|
+
* **deps, deps-dev:** bump `commitlint` deps to ^19.8.1; move `@commitlint/types` to dev deps ([7b3eccd](https://github.com/halospv3/hce.shared/commit/7b3eccdefe8539ede9f9381e6476e35e704aef63))
|
|
233
|
+
* **deps, deps-dev:** upgrade `eslint` deps ([c50fdb8](https://github.com/halospv3/hce.shared/commit/c50fdb8b68464d0b288c37f6716d2eef744d6b57))
|
|
234
|
+
* **deps:** :ambulance: bump ws to 8.18.0 (>=8.17.1) ([97c20f8](https://github.com/halospv3/hce.shared/commit/97c20f804e1f255fba4eb9e6222de3d5d4ebbca7))
|
|
235
|
+
* **deps:** 🚑️ bump micromatch to v4.0.8 ([24676f1](https://github.com/halospv3/hce.shared/commit/24676f1b9b582029fadc29214b3e4bcd7c1e82ce))
|
|
236
|
+
* **deps:** bump @types/node to v22.9.0 ([b5ca498](https://github.com/halospv3/hce.shared/commit/b5ca49820d592ec78e14d8fea7b401ae07ef9da0))
|
|
237
|
+
* **deps:** bump `@types/node` to 22.15.34 ([918af5e](https://github.com/halospv3/hce.shared/commit/918af5ee8c23f653f784b42a850c066871b81a6a))
|
|
238
|
+
* **deps:** bump `arktype` to 2.1.20 ([5c8c17a](https://github.com/halospv3/hce.shared/commit/5c8c17a82448bfb7d05d37c3ac86b0c4b012cbb4))
|
|
239
|
+
* **deps:** bump `chardet` to ^2.1.0 ([997c286](https://github.com/halospv3/hce.shared/commit/997c286f5f7a79a5484eb1c961d6ebe247a3cf5a))
|
|
240
|
+
* **deps:** bump `conventional-changelog-conventionalcommits` to ^9.0.0 ([1d18454](https://github.com/halospv3/hce.shared/commit/1d184547e35c2d3294c9f5a0b90174491b116069))
|
|
241
|
+
* **deps:** bump `debug` to ^4.4.1 ([33bc96b](https://github.com/halospv3/hce.shared/commit/33bc96b1932cbba95ee33f9cd12aaf7d3358cc44))
|
|
242
|
+
* **deps:** bump `globals` to ^16.2.0 ([069801c](https://github.com/halospv3/hce.shared/commit/069801cce11cc167cb5536c2f3cb5d6ae51b424b))
|
|
243
|
+
* **deps:** bump `globals` to 16.3.0 ([6c4f22f](https://github.com/halospv3/hce.shared/commit/6c4f22f9c0636786246b2d685259fe79190d9b04))
|
|
244
|
+
* **deps:** bump `husky` to ^9.1.7 ([9aa7c29](https://github.com/halospv3/hce.shared/commit/9aa7c2997ae1a5d0a95835a57334f469f1788458))
|
|
245
|
+
* **deps:** bump `import-meta-resolve` to 4.1.0 ([c80930a](https://github.com/halospv3/hce.shared/commit/c80930a7cc4b95ea77bbeea0808df73c43793aa8))
|
|
246
|
+
* **deps:** bump `semantic-release-export-data` to ^1.1.0 ([824c790](https://github.com/halospv3/hce.shared/commit/824c7907e1c757b1ba35cc479844ae61db26d26f))
|
|
247
|
+
* **deps:** bump `semantic-release` to 24.2.6 ([9f24a9e](https://github.com/halospv3/hce.shared/commit/9f24a9ef6564281c245a4e0a0f5f10212c2e586b))
|
|
248
|
+
* **deps:** bump `ts-essentials` to ^10.1.1 ([9032d15](https://github.com/halospv3/hce.shared/commit/9032d15780a6cb3801e6a128ebb3318d5b2c3327))
|
|
249
|
+
* **deps:** bump `typescript-eslint` to ^8.34.0; remove redundant deps ([3e6d341](https://github.com/halospv3/hce.shared/commit/3e6d34172d2f1f6886c9d560913d76661f5c1571))
|
|
250
|
+
* **deps:** bump arktype from 2.0.0-rc.17 to 2.0.0-rc.21 ([54671dd](https://github.com/halospv3/hce.shared/commit/54671ddfb3606b50967871474bd56a8433fb9156))
|
|
251
|
+
* **deps:** bump arktype from 2.0.0-rc.6 to 2.0.0-rc.17 ([76a02b2](https://github.com/halospv3/hce.shared/commit/76a02b2433e0eaec9fa3c7eca7251fa7ec191478))
|
|
252
|
+
* **deps:** bump arktypes from v2.0.0-beta.2 to v2.0.0-rc.6 ([ae77ccd](https://github.com/halospv3/hce.shared/commit/ae77ccdff113e41f5360fd6679d82a9ac6f31207))
|
|
253
|
+
* **deps:** bump eslint-plugin-jsonc to v2.17.0 ([383317a](https://github.com/halospv3/hce.shared/commit/383317a51cba11e28bcf868cb3eeef11fae0bf22))
|
|
254
|
+
* **deps:** bump group typescript-eslint to v8.13.0 ([e0f1e98](https://github.com/halospv3/hce.shared/commit/e0f1e98219e5495d59bb59515f6764162d1e8893))
|
|
255
|
+
* **deps:** remove deprecated `@types/semantic-release` ([57536e0](https://github.com/halospv3/hce.shared/commit/57536e05789faedb2b3ced40a44b91bee5c14349))
|
|
256
|
+
* **deps:** remove unused dep `@octokit/request` ([8d5feba](https://github.com/halospv3/hce.shared/commit/8d5feba29a706a4c42e0b09ab7aa3e99d5c39e34))
|
|
257
|
+
* **deps:** replace `dotenv` with `@dotenvx/dotenvx`; move to runtime deps ([76b32b8](https://github.com/halospv3/hce.shared/commit/76b32b8be7a911d0938b8086bc51d1c685511c34))
|
|
258
|
+
* **deps:** update @eslint/plugin-kit to v0.2.3; update cross-spawn to v7.0.6 ([715ddf9](https://github.com/halospv3/hce.shared/commit/715ddf9dd10fa1a672578f77fe4acc4a95584de4))
|
|
259
|
+
* **deps:** update npm to v10.9.1 ([cd3b17f](https://github.com/halospv3/hce.shared/commit/cd3b17fd6cf58adbf5e103d76f5b386d417dc0d3))
|
|
260
|
+
* **deps:** upgrade `@babel/runtime`, `brace-expansion`, `undici` to mitigate CVEs ([b9d0cb2](https://github.com/halospv3/hce.shared/commit/b9d0cb27892f855d63a839db49869275f8cce6c4))
|
|
261
|
+
* **deps:** upgrade `@stylistic/eslint-plugin` to ^5.0.0 ([cb44505](https://github.com/halospv3/hce.shared/commit/cb44505e65b888c110541e3612a85cbaec3ba068))
|
|
262
|
+
* **deps:** upgrade `semantic-release` and its plugins ([6c2e4a5](https://github.com/halospv3/hce.shared/commit/6c2e4a5cfc44963b3a66e1f87584ed9561f0a9eb))
|
|
263
|
+
* **deps:** upgrade group "eslint" ([c1c3b5f](https://github.com/halospv3/hce.shared/commit/c1c3b5fd784f567312bfa26792edfb46936e1317))
|
|
264
|
+
|
|
265
|
+
### Reverts
|
|
266
|
+
|
|
267
|
+
* chore(vscode): fix task 'npm install on open' ([d33c9a7](https://github.com/halospv3/hce.shared/commit/d33c9a7b4872359491bbc3b02339a3520e87c1b1))
|
|
268
|
+
* **utils.miscTypes, dotnet.NPP:** remove `isOfType` ([49a5911](https://github.com/halospv3/hce.shared/commit/49a591148526372a9c27c0a9ed81dda81fa102c1))
|
|
269
|
+
|
|
270
|
+
### Code Refactoring
|
|
271
|
+
|
|
272
|
+
* deeply const `semanticReleaseConfig` `baseConfig` to expose values in type, but export as deeply mutable ([e2378a7](https://github.com/halospv3/hce.shared/commit/e2378a7e724e0e027d047cf28ddb43c5df49405a))
|
|
273
|
+
* **dotnet.helpers:** overhaul `dotnetHelpers` ([fad8b4e](https://github.com/halospv3/hce.shared/commit/fad8b4eebd066c1494f17f829316f70fa139af5f))
|
|
274
|
+
* **dotnet.NPP:** remove InstanceProperties GetUniquePropertyKeys; change readonly fields to getters; ensure types ([33a12a8](https://github.com/halospv3/hce.shared/commit/33a12a89477973a4e7e00419d890e5e31f327639))
|
|
275
|
+
* **dotnet:** allow readonly array args where they are not modified ([2099344](https://github.com/halospv3/hce.shared/commit/20993440f93657385d9434f0ee8ea370f88d18c6))
|
|
276
|
+
* **dotnet:** change read-only fields to getters. ([095ccee](https://github.com/halospv3/hce.shared/commit/095ccee7d23946d72b968d6fec78953b00549248))
|
|
277
|
+
* **dotnet:** move `NugetRegistryPair`, `nugetDefault` to its own file ([4c24cf5](https://github.com/halospv3/hce.shared/commit/4c24cf536a5454085a0269a114203c7db7216507))
|
|
278
|
+
* **dotnet:** pass each path in `string[]` `projectsToPublish` to `Evaluate`; allow passing `MSBP[]`, `NRI[]` to `configurePrepareCmd` ([71e5e5e](https://github.com/halospv3/hce.shared/commit/71e5e5efb23795bd31ff6f8dde24f0b06903c187))
|
|
279
|
+
* **dotnet:** rename MSBuildProjectProperties.FullName to MSBuildProjectFullPath ([01aaac8](https://github.com/halospv3/hce.shared/commit/01aaac846a8e6d7658c428e4b9c022da038c8223))
|
|
280
|
+
* **dotnet:** replace MSBuildProjectProperties constructor arg 'rest' with 'properties' ([6efde7d](https://github.com/halospv3/hce.shared/commit/6efde7d16cd9a5b8d3a0e0b2e76d1c9921606ff9))
|
|
281
|
+
* move MSBuildProjectProperties to MSBuildProject.ts ([20fd130](https://github.com/halospv3/hce.shared/commit/20fd13080bd17d33b3d44e4f8de550c6e54c218f))
|
|
282
|
+
* remove 'dotnet' facade ([f203a0c](https://github.com/halospv3/hce.shared/commit/f203a0c8e258a26a4b18d29a3dcab2deec1ecfda))
|
|
283
|
+
* remove appendPlugins ([26d1e06](https://github.com/halospv3/hce.shared/commit/26d1e068b581ef39901e4f2789f185317515ea1a))
|
|
284
|
+
* remove default export 'getConfig' ([baef25a](https://github.com/halospv3/hce.shared/commit/baef25a60863af5d622f082620552b1ad0ed697c))
|
|
285
|
+
* remove param "exists" from MSBuildProjectProperties ctor ([34bcf54](https://github.com/halospv3/hce.shared/commit/34bcf542a9b88c1c18a5878d8b48969d9898ae8b))
|
|
286
|
+
* remove property PredefinedProperties ([fcc4d55](https://github.com/halospv3/hce.shared/commit/fcc4d5566e795007b2b4f0b6bcc418ec434026bb))
|
|
287
|
+
* remove static semantic-release config ([508a29d](https://github.com/halospv3/hce.shared/commit/508a29d741de0fad327b424388d21eb83337efbd))
|
|
288
|
+
* rewrite dotnetGHPR, dotnetGLPR, NuGetRegistryInfo as classes ([e611a87](https://github.com/halospv3/hce.shared/commit/e611a878fb8dfb821a25c19b8dc84b7c913575db))
|
|
289
|
+
* rewrite semanticReleaseConfigDotnet as class ([1ab49c5](https://github.com/halospv3/hce.shared/commit/1ab49c5c6a8a766bb9e672e41663792a7cdef995))
|
|
290
|
+
* **semanticRelease:** change semanticReleaseConfig's baseConfig to const; add more type ([ba9fe61](https://github.com/halospv3/hce.shared/commit/ba9fe6132c0f8467122c04c4b478817463221344))
|
|
291
|
+
* **semanticRelease:** change type of defaultPlugins to frozen "as const" string array ([fd2c935](https://github.com/halospv3/hce.shared/commit/fd2c935b1ee34847b878d8d66a2e454961ed351a))
|
|
292
|
+
|
|
293
|
+
### Build System
|
|
294
|
+
|
|
295
|
+
* bump @semantic-release/github to v11.0.1 ([c7f068d](https://github.com/halospv3/hce.shared/commit/c7f068d822be6f4c610e98b9de784a9173568daa))
|
|
296
|
+
* increase TypeScript target from ES5 to ES2022 ([339ebc6](https://github.com/halospv3/hce.shared/commit/339ebc6be89d76cce15d8817840dd5e251e57e1e))
|
|
297
|
+
* migrate main export to mjs ([76345e8](https://github.com/halospv3/hce.shared/commit/76345e81735ad0115d16b9d97a71ccdb1587a5bb))
|
|
298
|
+
|
|
299
|
+
# Changelog
|
|
300
|
+
|
|
301
|
+
All notable changes to this project will be documented in this file. See
|
|
302
|
+
[commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version)
|
|
303
|
+
for commit guidelines.
|
|
304
|
+
|
|
305
|
+
## [2.6.5](https://github.com/halospv3/hce.shared/compare/v2.6.4...v2.6.5) (2025-07-15)
|
|
306
|
+
|
|
307
|
+
### Bug Fixes
|
|
308
|
+
|
|
309
|
+
* **deps:** update dependency globals to v16 ([#431](https://github.com/halospv3/hce.shared/issues/431)) ([d7a440c](https://github.com/halospv3/hce.shared/commit/d7a440c19c1e28ec2678198df3ad60bcaae2ca90))
|
|
310
|
+
|
|
1
311
|
## [2.6.4](https://github.com/halospv3/hce.shared/compare/v2.6.3...v2.6.4) (2025-07-03)
|
|
2
312
|
|
|
313
|
+
## [2.6.4-develop.3](https://github.com/halospv3/hce.shared/compare/v2.6.4-develop.2...v2.6.4-develop.3) (2025-07-03)
|
|
314
|
+
|
|
315
|
+
## [2.6.4-develop.2](https://github.com/halospv3/hce.shared/compare/v2.6.4-develop.1...v2.6.4-develop.2) (2025-07-03)
|
|
316
|
+
|
|
317
|
+
### Bug Fixes
|
|
318
|
+
|
|
319
|
+
* **deps:** update dependency globals to v16 ([#431](https://github.com/halospv3/hce.shared/issues/431)) ([d7a440c](https://github.com/halospv3/hce.shared/commit/d7a440c19c1e28ec2678198df3ad60bcaae2ca90))
|
|
320
|
+
|
|
321
|
+
## [2.6.4-develop.1](https://github.com/halospv3/hce.shared/compare/v2.6.3...v2.6.4-develop.1) (2025-07-03)
|
|
322
|
+
|
|
3
323
|
## [2.6.3](https://github.com/halospv3/hce.shared/compare/v2.6.2...v2.6.3) (2025-07-02)
|
|
4
324
|
|
|
5
325
|
### Bug Fixes
|
|
@@ -41,174 +361,198 @@
|
|
|
41
361
|
|
|
42
362
|
### Features
|
|
43
363
|
|
|
44
|
-
|
|
45
|
-
|
|
364
|
+
- add createDummyNupkg
|
|
365
|
+
([ed67d06](https://github.com/halospv3/hce.shared/commit/ed67d06cd06e56a78b0a9ff2e51efb83ddd94386)),
|
|
366
|
+
closes [#406](https://github.com/halospv3/hce.shared/issues/406)
|
|
367
|
+
- add EnvUtils (getEnvVarValue, getEnv)
|
|
368
|
+
([f86562a](https://github.com/halospv3/hce.shared/commit/f86562aa1c19a13a612e6571ba2122bf134ba196))
|
|
46
369
|
|
|
47
370
|
## [2.5.0](https://github.com/halospv3/hce.shared/compare/v2.4.3...v2.5.0) (2024-06-04)
|
|
48
371
|
|
|
49
372
|
### Features
|
|
50
373
|
|
|
51
|
-
|
|
374
|
+
- overhaul dotnetGHPR; misc refactors
|
|
375
|
+
([8d0a1d6](https://github.com/halospv3/hce.shared/commit/8d0a1d657e7f4754881c9a130fd4aa8191fb3e81))
|
|
52
376
|
|
|
53
377
|
### Bug Fixes
|
|
54
378
|
|
|
55
|
-
|
|
56
|
-
|
|
379
|
+
- **deps:** update dependency conventional-changelog-conventionalcommits to v8
|
|
380
|
+
([e1defcd](https://github.com/halospv3/hce.shared/commit/e1defcd94ba51eda7384c1ca87f33c9928610e20))
|
|
381
|
+
- **deps:** update semantic-release monorepo
|
|
382
|
+
([39fcf98](https://github.com/halospv3/hce.shared/commit/39fcf988fe55b894e269d64de1b48c7f8dfb950c))
|
|
57
383
|
|
|
58
384
|
## [2.4.3](https://github.com/halospv3/hce.shared/compare/v2.4.2...v2.4.3) (2024-05-31)
|
|
59
385
|
|
|
60
|
-
|
|
61
386
|
### Bug Fixes
|
|
62
387
|
|
|
63
|
-
|
|
388
|
+
- fix error being thrown because an 'else' is missing
|
|
389
|
+
([a4ed781](https://github.com/halospv3/hce.shared/commit/a4ed781dd9ebf696deae7b7914d8cf77e2beb5fb))
|
|
64
390
|
|
|
65
391
|
## [2.4.3-develop.1](https://github.com/halospv3/hce.shared/compare/v2.4.2...v2.4.3-develop.1) (2024-06-01)
|
|
66
392
|
|
|
67
393
|
### Bug Fixes
|
|
68
394
|
|
|
69
|
-
|
|
70
|
-
|
|
395
|
+
- **deps:** update dependency conventional-changelog-conventionalcommits to v8
|
|
396
|
+
([e1defcd](https://github.com/halospv3/hce.shared/commit/e1defcd94ba51eda7384c1ca87f33c9928610e20))
|
|
397
|
+
- **deps:** update semantic-release monorepo
|
|
398
|
+
([39fcf98](https://github.com/halospv3/hce.shared/commit/39fcf988fe55b894e269d64de1b48c7f8dfb950c))
|
|
71
399
|
|
|
72
400
|
## [2.4.2](https://github.com/halospv3/hce.shared/compare/v2.4.1...v2.4.2) (2024-05-31)
|
|
73
401
|
|
|
74
|
-
|
|
75
402
|
### Bug Fixes
|
|
76
403
|
|
|
77
|
-
|
|
404
|
+
- fix adding npm plugin to private semantic-release config
|
|
405
|
+
([fe2542b](https://github.com/halospv3/hce.shared/commit/fe2542b9e3d1dc3b3d00351f3dbef840b1f99486))
|
|
78
406
|
|
|
79
407
|
## [2.4.1](https://github.com/halospv3/hce.shared/compare/v2.4.0...v2.4.1) (2024-05-31)
|
|
80
408
|
|
|
81
|
-
|
|
82
409
|
### Bug Fixes
|
|
83
410
|
|
|
84
|
-
|
|
85
|
-
|
|
411
|
+
- :ambulance: bump braces to 3.0.3
|
|
412
|
+
([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
|
|
413
|
+
- **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits
|
|
414
|
+
([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)),
|
|
415
|
+
closes [#402](https://github.com/halospv3/hce.shared/issues/402)
|
|
86
416
|
|
|
87
417
|
## [2.4.1-develop.1](https://github.com/halospv3/hce.shared/compare/v2.4.0...v2.4.1-develop.1) (2024-05-31)
|
|
88
418
|
|
|
89
|
-
|
|
90
419
|
### Bug Fixes
|
|
91
420
|
|
|
92
|
-
|
|
93
|
-
|
|
421
|
+
- :ambulance: bump braces to 3.0.3
|
|
422
|
+
([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
|
|
423
|
+
- **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits
|
|
424
|
+
([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)),
|
|
425
|
+
closes [#402](https://github.com/halospv3/hce.shared/issues/402)
|
|
94
426
|
|
|
95
427
|
## [2.2.4](https://github.com/halospv3/hce.shared/compare/v2.2.3...v2.2.4) (2024-04-06)
|
|
96
428
|
|
|
97
429
|
## [2.2.3](https://github.com/halospv3/hce.shared/compare/v2.2.2...v2.2.3) (2024-03-29)
|
|
98
430
|
|
|
99
|
-
|
|
100
431
|
### Bug Fixes
|
|
101
432
|
|
|
102
|
-
|
|
433
|
+
- add commitlint config to package exports
|
|
434
|
+
([db87cc8](https://github.com/halospv3/hce.shared/commit/db87cc81f0e1718a6747f0ba6746f078685b6142))
|
|
103
435
|
|
|
104
436
|
## [2.2.2](https://github.com/halospv3/hce.shared/compare/v2.2.1...v2.2.2) (2024-03-29)
|
|
105
437
|
|
|
106
|
-
|
|
107
438
|
### Bug Fixes
|
|
108
439
|
|
|
109
|
-
|
|
440
|
+
- use the correct file extension for commitlint config in files array
|
|
441
|
+
([9f5bd5f](https://github.com/halospv3/hce.shared/commit/9f5bd5fd52b37ac4a86617bc921053a05a92c239))
|
|
110
442
|
|
|
111
443
|
## [2.2.1](https://github.com/halospv3/hce.shared/compare/v2.2.0...v2.2.1) (2024-03-29)
|
|
112
444
|
|
|
113
|
-
|
|
114
445
|
### Bug Fixes
|
|
115
446
|
|
|
116
|
-
|
|
447
|
+
- include commitlint config in package files
|
|
448
|
+
([26e2888](https://github.com/halospv3/hce.shared/commit/26e2888bdde302d7dd7a88b763975598a1eb539f))
|
|
117
449
|
|
|
118
450
|
## [2.2.0](https://github.com/halospv3/hce.shared/compare/v2.1.2...v2.2.0) (2024-03-29)
|
|
119
451
|
|
|
120
|
-
|
|
121
452
|
### Features
|
|
122
453
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
454
|
+
- **dotnet:** add GitVersion 6.0 config
|
|
455
|
+
([3784c72](https://github.com/halospv3/hce.shared/commit/3784c72ea2e37dcced13ccc322476f0d93d2bd9b))
|
|
456
|
+
- **dotnet:** add global "RepoRoot", "RepoRootPublishDir", and placeholder
|
|
457
|
+
properties
|
|
458
|
+
([23d330a](https://github.com/halospv3/hce.shared/commit/23d330a2ca4769fcd14fe8f1a409f6801a7a1ea3))
|
|
459
|
+
- **dotnet:** rework ZipPublishDir
|
|
460
|
+
([618ba95](https://github.com/halospv3/hce.shared/commit/618ba95b3d731dc1b560e91757aa02e947b09e03))
|
|
461
|
+
- move commitlint config to shared file
|
|
462
|
+
([66efb30](https://github.com/halospv3/hce.shared/commit/66efb30a9e4351d02a761edf3a49722bc8a0f111))
|
|
128
463
|
|
|
129
464
|
### Bug Fixes
|
|
130
465
|
|
|
131
|
-
|
|
466
|
+
- **dotnet:** trim variant args; undefine if parentheses would be empty
|
|
467
|
+
([10414ff](https://github.com/halospv3/hce.shared/commit/10414ffc58950bae4d582d2263cbf9d7a51235eb)),
|
|
468
|
+
closes [#356](https://github.com/halospv3/hce.shared/issues/356)
|
|
132
469
|
|
|
133
470
|
## [2.1.2](https://github.com/halospv3/hce.shared/compare/v2.1.1...v2.1.2) (2024-03-26)
|
|
134
471
|
|
|
135
|
-
|
|
136
472
|
### Bug Fixes
|
|
137
473
|
|
|
138
|
-
|
|
474
|
+
- **deps:** update dependency @semantic-release/release-notes-generator to v13
|
|
475
|
+
([0758bc9](https://github.com/halospv3/hce.shared/commit/0758bc9c9bb8338855880218e4c1086e25384baa))
|
|
139
476
|
|
|
140
477
|
## [2.1.1](https://github.com/halospv3/hce.shared/compare/v2.1.0...v2.1.1) (2024-03-26)
|
|
141
478
|
|
|
142
479
|
## [2.1.0](https://github.com/halospv3/hce.shared/compare/v2.0.1...v2.1.0) (2024-03-18)
|
|
143
480
|
|
|
144
|
-
|
|
145
481
|
### Features
|
|
146
482
|
|
|
147
|
-
|
|
483
|
+
- add plugin '@semantic-release/exec'
|
|
484
|
+
([61447fc](https://github.com/halospv3/hce.shared/commit/61447fcdef19db8cd7f103edd54354fa5c4cb202))
|
|
148
485
|
|
|
149
486
|
## [2.0.1](https://github.com/halospv3/hce.shared/compare/v2.0.0...v2.0.1) (2024-03-18)
|
|
150
487
|
|
|
151
|
-
|
|
152
488
|
### Bug Fixes
|
|
153
489
|
|
|
154
|
-
|
|
155
|
-
|
|
490
|
+
- **deps:** update dependency @semantic-release/commit-analyzer to v12
|
|
491
|
+
([87c6d12](https://github.com/halospv3/hce.shared/commit/87c6d12c3ab5243e50a0c1b0cf3dafd6c4c20ffa))
|
|
492
|
+
- **dotnet:** try making the '$(RepoRoot)/publish' directory before zipping
|
|
493
|
+
([0241146](https://github.com/halospv3/hce.shared/commit/024114698c89f557513a61400729a609d7637bf0))
|
|
156
494
|
|
|
157
495
|
## [2.0.0](https://github.com/halospv3/hce.shared/compare/v1.2.7...v2.0.0) (2024-03-17)
|
|
158
496
|
|
|
159
|
-
|
|
160
497
|
### ⚠ BREAKING CHANGES
|
|
161
498
|
|
|
162
|
-
|
|
499
|
+
- **node:** increase minimum version of NodeJS to 20.8.1 as required by
|
|
500
|
+
semantic-release
|
|
163
501
|
|
|
164
502
|
### Bug Fixes
|
|
165
503
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
504
|
+
- add minimum npm version; error if required node, npm versions unavailable
|
|
505
|
+
([3969ad5](https://github.com/halospv3/hce.shared/commit/3969ad5a012f8e8330a14267a44d2c65f25b0690))
|
|
506
|
+
- **deps:** bump undici from 5.28.2 to 5.28.3
|
|
507
|
+
([7a6f822](https://github.com/halospv3/hce.shared/commit/7a6f8222c5fb83c7764765e956f7587971341da6))
|
|
508
|
+
- **deps:** update commitlint monorepo to v19
|
|
509
|
+
([9237ddb](https://github.com/halospv3/hce.shared/commit/9237ddbecd0b7d9dfbf50b96b9cc926da71ea165))
|
|
510
|
+
- **deps:** update dependency semantic-release to v23
|
|
511
|
+
([7e1a020](https://github.com/halospv3/hce.shared/commit/7e1a020ebf5bc87861c705789055540485713b4c))
|
|
512
|
+
- **deps:** update semantic-release monorepo
|
|
513
|
+
([ecd2ad3](https://github.com/halospv3/hce.shared/commit/ecd2ad33907e663cdf351481725a5f8a8ee439fb))
|
|
172
514
|
|
|
173
515
|
### Reverts
|
|
174
516
|
|
|
175
|
-
|
|
176
|
-
|
|
517
|
+
- use './' instead of 'file:'
|
|
518
|
+
([21fc83f](https://github.com/halospv3/hce.shared/commit/21fc83fef5d4bd1815ff4c2a4324559e40ae5519))
|
|
177
519
|
|
|
178
520
|
### Build System
|
|
179
521
|
|
|
180
|
-
|
|
522
|
+
- **node:** :arrow_up: raise minimum NodeJS version to 20.8.1
|
|
523
|
+
([cb92a3d](https://github.com/halospv3/hce.shared/commit/cb92a3d8917189464f36887b1e43bb099ecc175f))
|
|
181
524
|
|
|
182
525
|
## [1.2.7](https://github.com/halospv3/hce.shared/compare/v1.2.6...v1.2.7) (2024-01-06)
|
|
183
526
|
|
|
184
|
-
|
|
185
527
|
### Bug Fixes
|
|
186
528
|
|
|
187
|
-
|
|
188
|
-
|
|
529
|
+
- **deps:** bump @commitlint/cli from 18.4.3 to 18.4.4
|
|
530
|
+
([c732a4b](https://github.com/halospv3/hce.shared/commit/c732a4b9a7154954000b97ba0a2f79765dc6c1a8))
|
|
531
|
+
- **deps:** bump @commitlint/config-conventional from 18.4.3 to 18.4.4
|
|
532
|
+
([cd95f08](https://github.com/halospv3/hce.shared/commit/cd95f082805d3766384a13f5353cc61d7882a0d5))
|
|
189
533
|
|
|
190
534
|
## [1.2.6](https://github.com/halospv3/hce.shared/compare/v1.2.5...v1.2.6) (2024-01-05)
|
|
191
535
|
|
|
192
|
-
|
|
193
536
|
### Bug Fixes
|
|
194
537
|
|
|
195
|
-
|
|
538
|
+
- **deps:** update deps to latest stable versions
|
|
539
|
+
([dce4301](https://github.com/halospv3/hce.shared/commit/dce4301d4b0af26ba1b41aa7928ff79e7923bcb9))
|
|
196
540
|
|
|
197
541
|
## [1.2.5](https://github.com/halospv3/hce.shared/compare/v1.2.4...v1.2.5) (2023-12-24)
|
|
198
542
|
|
|
199
543
|
## [1.2.4](https://github.com/halospv3/hce.shared/compare/v1.2.3...v1.2.4) (2023-11-09)
|
|
200
544
|
|
|
201
|
-
|
|
202
545
|
### Bug Fixes
|
|
203
546
|
|
|
204
|
-
|
|
547
|
+
- **deps:** update commitlint monorepo to v18
|
|
548
|
+
([bc04ff0](https://github.com/halospv3/hce.shared/commit/bc04ff041084d91ab0c33edc73caf32ab9af765c))
|
|
205
549
|
|
|
206
550
|
## [1.2.3](https://github.com/halospv3/hce.shared/compare/v1.2.2...v1.2.3) (2023-11-09)
|
|
207
551
|
|
|
208
|
-
|
|
209
552
|
### Bug Fixes
|
|
210
553
|
|
|
211
|
-
|
|
554
|
+
- **dotnet:** change "MainLine" to "Mainline"
|
|
555
|
+
([430d588](https://github.com/halospv3/hce.shared/commit/430d5886d4e142d7a2d5c776457d5044346ce598))
|
|
212
556
|
|
|
213
557
|
## [1.2.2](https://github.com/halospv3/hce.shared/compare/v1.2.1...v1.2.2) (2023-11-09)
|
|
214
558
|
|
|
@@ -216,89 +560,96 @@
|
|
|
216
560
|
|
|
217
561
|
## [1.2.0](https://github.com/halospv3/hce.shared/compare/v1.1.2...v1.2.0) (2023-10-24)
|
|
218
562
|
|
|
219
|
-
|
|
220
563
|
### Features
|
|
221
564
|
|
|
222
|
-
|
|
223
|
-
|
|
565
|
+
- **node:** include semantic-release-export-data by default
|
|
566
|
+
([d7bd6bf](https://github.com/halospv3/hce.shared/commit/d7bd6bf298fa26405366af2eba809c0c426de76d))
|
|
567
|
+
- **node:** publish _all_ files in ./publish/ directories
|
|
568
|
+
([82051be](https://github.com/halospv3/hce.shared/commit/82051bec96f1f37f12eb995fc4bd14afea9f5b31))
|
|
224
569
|
|
|
225
570
|
## [1.1.2](https://github.com/halospv3/hce.shared/compare/v1.1.1...v1.1.2) (2023-10-22)
|
|
226
571
|
|
|
227
|
-
|
|
228
572
|
### Bug Fixes
|
|
229
573
|
|
|
230
|
-
|
|
574
|
+
- **node:** prefix 'cjs' dir to exports' module entry points
|
|
575
|
+
([bf71890](https://github.com/halospv3/hce.shared/commit/bf7189037a5006ed589f55cd3c53d9c6f8f9d536))
|
|
231
576
|
|
|
232
577
|
## [1.1.1](https://github.com/halospv3/hce.shared/compare/v1.1.0...v1.1.1) (2023-10-19)
|
|
233
578
|
|
|
234
|
-
|
|
235
579
|
### Bug Fixes
|
|
236
580
|
|
|
237
|
-
|
|
581
|
+
- **node:** rerelease v1.1.0
|
|
582
|
+
([f01f34a](https://github.com/halospv3/hce.shared/commit/f01f34a2b39ed6d95ba670dccc864dc147d2452e))
|
|
238
583
|
|
|
239
584
|
## [1.1.0](https://github.com/halospv3/hce.shared/compare/v1.0.5...v1.1.0) (2023-10-19)
|
|
240
585
|
|
|
241
|
-
|
|
242
586
|
### Features
|
|
243
587
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
588
|
+
- add ZipPublishDir Target
|
|
589
|
+
([36755ac](https://github.com/halospv3/hce.shared/commit/36755ac51586a636ee91057adda94dbff1359c73))
|
|
590
|
+
- **node:** adopt Packemon for project management
|
|
591
|
+
([daafc7f](https://github.com/halospv3/hce.shared/commit/daafc7f74939f2793b1e3b8312fe95aa832614d3))
|
|
592
|
+
- **node:** load, validate, and export semantic-release shareable configuration
|
|
593
|
+
([74c11af](https://github.com/halospv3/hce.shared/commit/74c11af149f36be5e84a9ee064caaf50522017d1))
|
|
248
594
|
|
|
249
595
|
### Bug Fixes
|
|
250
596
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
597
|
+
- **deps:** update semantic-release monorepo
|
|
598
|
+
([b8dd3c2](https://github.com/halospv3/hce.shared/commit/b8dd3c2386d9f9717a7f916dcdbc1a1cc5a5f5c5))
|
|
599
|
+
- **deps:** update semantic-release monorepo
|
|
600
|
+
([f507178](https://github.com/halospv3/hce.shared/commit/f507178302719193bf323a2f9decb113c078e163))
|
|
601
|
+
- **dotnet:** always overwrite ZipPublishDir DestinationFile
|
|
602
|
+
([38ef324](https://github.com/halospv3/hce.shared/commit/38ef32430858ed1060077e7453f5f2825c7c6ab8))
|
|
603
|
+
- **node:** bump minimum Node version to 18.17.1
|
|
604
|
+
([92f5b47](https://github.com/halospv3/hce.shared/commit/92f5b47d40d1f9832b2e9f00b49579976b465166))
|
|
605
|
+
- **node:** lift main function body to top-level; assign to const and export it
|
|
606
|
+
([c0cc133](https://github.com/halospv3/hce.shared/commit/c0cc133d9d57949339d223f8aa12c123500c4d9c))
|
|
607
|
+
- **node:** remove use of semantic-release's private get-config, get-logger
|
|
608
|
+
([658b37c](https://github.com/halospv3/hce.shared/commit/658b37c6aee922a123b3c2128f5f588372bcbd7b))
|
|
609
|
+
- **node:** resolve "parameter 'options' implicitly 'any'" (TS7006)
|
|
610
|
+
([5fd278b](https://github.com/halospv3/hce.shared/commit/5fd278bf0983f63bf41db1484fd62df133993870))
|
|
611
|
+
- update destination path in ZipPublishDir
|
|
612
|
+
([b7bfc24](https://github.com/halospv3/hce.shared/commit/b7bfc24f4917628ef9837f94d6e3f87be4b54b1b))
|
|
260
613
|
|
|
261
614
|
### Reverts
|
|
262
615
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
# Changelog
|
|
266
|
-
|
|
267
|
-
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
616
|
+
- **node:** rename index.mts to index.ts
|
|
617
|
+
([f0cd2ee](https://github.com/halospv3/hce.shared/commit/f0cd2ee2bc1e1a4af7dde349d6df65c85944b035))
|
|
268
618
|
|
|
269
619
|
## [1.0.5](https://github.com/halospv3/hce.shared/compare/v1.0.4...v1.0.5) (2023-07-17)
|
|
270
620
|
|
|
271
|
-
|
|
272
621
|
### Bug Fixes
|
|
273
622
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
623
|
+
- **deps:** update dependency conventional-changelog-conventionalcommits to v6
|
|
624
|
+
([8f283e6](https://github.com/halospv3/hce.shared/commit/8f283e63fdc03d2fe04e04c25e4283dfa757d4ff))
|
|
625
|
+
- **deps:** update semantic-release monorepo
|
|
626
|
+
([8d14404](https://github.com/halospv3/hce.shared/commit/8d1440455fe38d74f6e2a585a22dea9707659a69))
|
|
627
|
+
- remove leftover mrm reference
|
|
628
|
+
([a60a1d2](https://github.com/halospv3/hce.shared/commit/a60a1d26f68149b364fb3c155fd605b48ea1cfc8))
|
|
277
629
|
|
|
278
630
|
## [1.0.4](https://github.com/halospv3/hce.shared/compare/v1.0.3...v1.0.4) (2023-05-26)
|
|
279
631
|
|
|
280
|
-
|
|
281
632
|
### Bug Fixes
|
|
282
633
|
|
|
283
|
-
|
|
634
|
+
- **deps:** change all devDependencies to dependencies
|
|
635
|
+
([79a4a30](https://github.com/halospv3/hce.shared/commit/79a4a3049d8c6f5f9c91a945bb06e0b2daea3cc7))
|
|
284
636
|
|
|
285
637
|
### 1.0.3 (2023-05-26)
|
|
286
638
|
|
|
287
|
-
|
|
288
639
|
### Bug Fixes
|
|
289
640
|
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
297
|
-
|
|
298
|
-
### 1.0.2 (2021-12-29)
|
|
641
|
+
- **dev-deps:** import deps into index.js stub
|
|
642
|
+
([7fdb046](https://github.com/halospv3/hce.shared/commit/7fdb04646162dc205024c2b04af945e34d57b52c))
|
|
643
|
+
- **dev-deps:** remove commitizen, cz-conventional-changelog
|
|
644
|
+
([b91155a](https://github.com/halospv3/hce.shared/commit/b91155a7d4ba81af1432c520f55e3cb09c13089c))
|
|
645
|
+
- remove commitizen script
|
|
646
|
+
([46fdf69](https://github.com/halospv3/hce.shared/commit/46fdf6929bffbf63a81a2c2bfc06fb0d92e905e3))
|
|
299
647
|
|
|
648
|
+
## 1.0.2 (2021-12-29)
|
|
300
649
|
|
|
301
650
|
### Bug Fixes
|
|
302
651
|
|
|
303
|
-
|
|
304
|
-
|
|
652
|
+
- **dev-deps:** import deps into index.js stub
|
|
653
|
+
([7fdb046](https://github.com/halospv3/hce.shared/commit/7fdb04646162dc205024c2b04af945e34d57b52c))
|
|
654
|
+
- **dev-deps:** remove commitizen, cz-conventional-changelog
|
|
655
|
+
([b91155a](https://github.com/halospv3/hce.shared/commit/b91155a7d4ba81af1432c520f55e3cb09c13089c))
|