@halospv3/hce.shared-config 3.0.0-develop.9 → 3.1.0-develop.1

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.
Files changed (74) hide show
  1. package/CHANGELOG.md +395 -67
  2. package/dotnet/.github/workflows/_unit_test.yml +3 -3
  3. package/dotnet/.github/workflows/dotnet-release.yml +3 -3
  4. package/dotnet/.github/workflows/sample-dotnet-build.yml +2 -2
  5. package/dotnet/PublishAll.targets +3 -2
  6. package/dotnet/ZipPublishDir.targets +24 -29
  7. package/dotnet/samples/HCE.Shared.SignAfterPack/sampleCert.samplepfx +0 -0
  8. package/mjs/debug.d.ts +4 -2
  9. package/mjs/debug.d.ts.map +1 -1
  10. package/mjs/debug.mjs +6 -4
  11. package/mjs/debug.mjs.map +1 -1
  12. package/mjs/dotnet/GitlabNugetRegistryInfo.d.ts +2 -3
  13. package/mjs/dotnet/GitlabNugetRegistryInfo.d.ts.map +1 -1
  14. package/mjs/dotnet/GitlabNugetRegistryInfo.mjs +2 -2
  15. package/mjs/dotnet/GitlabNugetRegistryInfo.mjs.map +1 -1
  16. package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.mjs +39 -21
  17. package/mjs/dotnet/IsNextVersionAlreadyPublished.cli.mjs.map +1 -1
  18. package/mjs/dotnet/MSBuildProject.d.ts +4 -5
  19. package/mjs/dotnet/MSBuildProject.d.ts.map +1 -1
  20. package/mjs/dotnet/MSBuildProject.mjs +5 -5
  21. package/mjs/dotnet/MSBuildProject.mjs.map +1 -1
  22. package/mjs/dotnet/NugetProjectProperties.d.ts +3 -3
  23. package/mjs/dotnet/NugetProjectProperties.d.ts.map +1 -1
  24. package/mjs/dotnet/NugetRegistryInfo.d.ts +7 -7
  25. package/mjs/dotnet/NugetRegistryInfo.d.ts.map +1 -1
  26. package/mjs/dotnet/NugetRegistryInfo.mjs +4 -4
  27. package/mjs/dotnet/NugetRegistryInfo.mjs.map +1 -1
  28. package/mjs/dotnet/helpers.d.ts +2 -2
  29. package/mjs/dotnet/helpers.d.ts.map +1 -1
  30. package/mjs/dotnet/helpers.mjs +4 -4
  31. package/mjs/dotnet/helpers.mjs.map +1 -1
  32. package/mjs/dotnet/index.d.ts +0 -8
  33. package/mjs/dotnet/index.d.ts.map +1 -1
  34. package/mjs/dotnet.d.ts +0 -1
  35. package/mjs/dotnet.d.ts.map +1 -1
  36. package/mjs/eslintConfig.d.ts +2 -2
  37. package/mjs/eslintConfig.d.ts.map +1 -1
  38. package/mjs/eslintConfig.mjs +25 -60
  39. package/mjs/eslintConfig.mjs.map +1 -1
  40. package/mjs/semanticReleaseConfigDotnet.d.ts.map +1 -1
  41. package/mjs/semanticReleaseConfigDotnet.mjs +6 -5
  42. package/mjs/semanticReleaseConfigDotnet.mjs.map +1 -1
  43. package/mjs/utils/env.d.ts.map +1 -1
  44. package/mjs/utils/env.mjs +5 -1
  45. package/mjs/utils/env.mjs.map +1 -1
  46. package/mjs/utils/execAsync.d.ts +2 -2
  47. package/mjs/utils/execAsync.d.ts.map +1 -1
  48. package/mjs/utils/execAsync.mjs +2 -2
  49. package/mjs/utils/execAsync.mjs.map +1 -1
  50. package/mjs/utils/isError.d.ts +11 -0
  51. package/mjs/utils/isError.d.ts.map +1 -0
  52. package/mjs/utils/isError.mjs +19 -0
  53. package/mjs/utils/isError.mjs.map +1 -0
  54. package/mjs/utils/miscTypes.d.ts +1 -2
  55. package/mjs/utils/miscTypes.d.ts.map +1 -1
  56. package/package.json +22 -19
  57. package/src/debug.ts +5 -4
  58. package/src/dotnet/GitlabNugetRegistryInfo.ts +4 -5
  59. package/src/dotnet/IsNextVersionAlreadyPublished.cli.ts +53 -36
  60. package/src/dotnet/MSBuildProject.ts +8 -9
  61. package/src/dotnet/NugetProjectProperties.ts +2 -3
  62. package/src/dotnet/NugetRegistryInfo.ts +11 -12
  63. package/src/dotnet/helpers.ts +11 -9
  64. package/src/dotnet/index.ts +0 -9
  65. package/src/dotnet.ts +0 -1
  66. package/src/eslintConfig.ts +33 -125
  67. package/src/semanticReleaseConfigDotnet.ts +8 -12
  68. package/src/utils/env.ts +7 -1
  69. package/src/utils/execAsync.ts +4 -5
  70. package/src/utils/isError.ts +18 -0
  71. package/src/utils/miscTypes.ts +1 -2
  72. package/tsconfig.base.json +54 -0
  73. package/tsconfig.json +22 -0
  74. package/tsconfig.mjs.json +8 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,330 @@
1
+ ## [3.1.0-develop.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0...v3.1.0-develop.1) (2025-11-07)
2
+
3
+ ### Features
4
+
5
+ * **utils.isError:** add `isError` compatibility wrapper ([1d7c6f3](https://github.com/HaloSPV3/HCE.Shared/commit/1d7c6f3f2097f409a0064043c5f5ecec94be30df))
6
+
7
+ ### Bug Fixes
8
+
9
+ * **deps, eslint:** replace 'eslint-plugin-jsonc' with '@eslint/json' ([fc6846a](https://github.com/HaloSPV3/HCE.Shared/commit/fc6846ab2228789c244aef5616044a5b0b599dab))
10
+ * **deps:** bump `@types/node` to 24.9.2 ([0adbe56](https://github.com/HaloSPV3/HCE.Shared/commit/0adbe563c3bc4a58f5ec51d9c99db581f1b69385))
11
+ * **deps:** update arktype@2.1.23 to 2.1.25 ([89f2288](https://github.com/HaloSPV3/HCE.Shared/commit/89f2288be066c0ed0c71986b1570861498a27d65))
12
+ * **deps:** update chardet to 2.1.1 ([0606670](https://github.com/HaloSPV3/HCE.Shared/commit/0606670db9197c13efcae5102363626e4952f047))
13
+ * **eslint:** ignore yarn PnP modules ([5f05ea1](https://github.com/HaloSPV3/HCE.Shared/commit/5f05ea1f1d125e35c8508870971ef6bec6672cf0))
14
+
15
+ ### Reverts
16
+
17
+ * do not call nvm in package scripts ([eac118a](https://github.com/HaloSPV3/HCE.Shared/commit/eac118a5c098fc453e6e7ad72e1bcd5c14c76866))
18
+
19
+ # Changelog
20
+
21
+ All notable changes to this project will be documented in this file. See
22
+ [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version)
23
+ for commit guidelines.
24
+
25
+ ## [3.0.0](https://github.com/HaloSPV3/HCE.Shared/compare/v2.6.6...v3.0.0) (2025-10-21)
26
+
27
+ ### ⚠ BREAKING CHANGES
28
+
29
+ * **insertPlugins, semanticRelease:** allow only tuple `PluginSpec`
30
+ * manually set package version to 3.0.0
31
+ * **deps, deps-dev:** bump `commitlint` deps to ^19.8.1; move `@commitlint/types` to dev deps
32
+ * deeply const `semanticReleaseConfig` `baseConfig` to expose values in type, but export as deeply mutable
33
+ * bump @semantic-release/github to v11.0.1
34
+ * **semanticRelease:** change semanticReleaseConfig's baseConfig to const; add more type
35
+ * **semanticRelease:** change type of defaultPlugins to frozen "as const" string array
36
+ * **dotnet.helpers:** overhaul `dotnetHelpers`
37
+ * **dotnet:** allow readonly array args where they are not modified
38
+ * **dotnet:** pass each path in `string[]` `projectsToPublish` to `Evaluate`; allow passing `MSBP[]`, `NRI[]` to `configurePrepareCmd`
39
+ * **dotnet.NRI:** add `NugetRegistryInfo` arg/prop `project`; refactor `isTokenDefined`; add `DefaultTokenEnvVars`
40
+ * **dotnet:** move `NugetRegistryPair`, `nugetDefault` to its own file
41
+ * **dotnet.MSBP:** add MSBuildProject.Evaluate
42
+ * **dotnet:** refactor MSBuildProject
43
+ * **dotnet.NPP:** remove InstanceProperties GetUniquePropertyKeys; change readonly fields to getters; ensure types
44
+ * **dotnet:** change read-only fields to getters.
45
+ * **dotnet:** replace MSBuildProjectProperties constructor arg 'rest' with 'properties'
46
+ * **dotnet:** rename MSBuildProjectProperties.FullName to MSBuildProjectFullPath
47
+ * remove param "exists" from MSBuildProjectProperties ctor
48
+ * remove property PredefinedProperties
49
+ * remove default export 'getConfig'
50
+ * remove appendPlugins
51
+ * rewrite semanticReleaseConfigDotnet as class
52
+ * rewrite dotnetGHPR, dotnetGLPR, NuGetRegistryInfo as classes
53
+ * move MSBuildProjectProperties to MSBuildProject.ts
54
+ * remove 'dotnet' facade
55
+ * increase TypeScript target from ES5 to ES2022
56
+ * CJS is no longer supported
57
+ * remove static semantic-release config
58
+
59
+ ### Features
60
+
61
+ * add `ProjectsToPublish`, `ProjectsToPackAndPush`, `EvaluatedProjects` to `SemanticReleaseConfigDotnet` ([bd37885](https://github.com/HaloSPV3/HCE.Shared/commit/bd37885b58c5ed47a33b934d751106bfb7c04315))
62
+ * **CIM:** add CaseInsensitiveMap ([d6beb2a](https://github.com/HaloSPV3/HCE.Shared/commit/d6beb2afe4eb9660059618e1c061e81465eea950))
63
+ * **dotnet, dotnet.NRI:** add `PackDummyPackage`; add `tmpDirNamespace`, `getDummiesDir` ([6023a4e](https://github.com/HaloSPV3/HCE.Shared/commit/6023a4ef238f2650ccc7f53f91549c5a57f60442))
64
+ * **dotnet.GHNRI:** add `DefaultGithubTokenEnvVars`; update constructor args to satisfy NRI changes ([3bbcbf1](https://github.com/HaloSPV3/HCE.Shared/commit/3bbcbf180fb01ed2d2a7bea3b2605925d41850bf))
65
+ * **dotnet.INVAP, dotnet.NRI:** add `GetIsNextVersionAlreadyPublishedCommand`, `getGithubOutput`, `getGithubOutputSync`, script for deferred execution of `IsNextVersionAlreadyPublished` ([970acb3](https://github.com/HaloSPV3/HCE.Shared/commit/970acb34ded0db20d5fa692f8e731ccce7bc1d61))
66
+ * **dotnet.MSBP, dotnet.NPP, dotnet.SemanticRelease:** replace `GetNPPGetterNames` with `NPPGetterNames` ([38ea89d](https://github.com/HaloSPV3/HCE.Shared/commit/38ea89df2a23a01c67bb983559fa08e7d9901230))
67
+ * **dotnet.MSBP, dotnet.NRI, utils.execAsync:** add `execAsync` wrapper; sort imports ([ca85fa2](https://github.com/HaloSPV3/HCE.Shared/commit/ca85fa2b1a8b08760a8a09171e22e9fab06468f6))
68
+ * **dotnet.MSBP:** add `BaseOutputPath`, `OutDir` ([daf1c40](https://github.com/HaloSPV3/HCE.Shared/commit/daf1c4029c1a542dda2de3fdd6fc19bca8abae7d))
69
+ * **dotnet.MSBP:** add MSBuildProject.Evaluate ([cbcf06b](https://github.com/HaloSPV3/HCE.Shared/commit/cbcf06bb2d6339a37cf9b5dc86463b974df82461))
70
+ * **dotnet.MSBP:** add optional 'projTargets' arguments to `Evaluate` ([9bd1328](https://github.com/HaloSPV3/HCE.Shared/commit/9bd132805a1f1114b8ce4a03bf688d391c98a00b))
71
+ * **dotnet.MSBP:** add static method `MSBP.fromJSON` ([77f3d71](https://github.com/HaloSPV3/HCE.Shared/commit/77f3d71546143736c0486c2bd4134956a1fa20a6))
72
+ * **dotnet.MSBP:** export MSBuildEvaluationOutput, some internal ArkType types ([a083f5a](https://github.com/HaloSPV3/HCE.Shared/commit/a083f5a8469b528994fc1cb29be34365076aac26))
73
+ * **dotnet.MSBP:** expose `EvaluationOptions`, `EvaluationOptions.t` ([f1083c3](https://github.com/HaloSPV3/HCE.Shared/commit/f1083c3eeebe41fd060b260daa20fcea220d1724))
74
+ * **dotnet.MSBPP:** add `BaseIntermediateOutputPath`, `IntermediateOutputPath` ([e5b6d19](https://github.com/HaloSPV3/HCE.Shared/commit/e5b6d19548be494bcf5ce0514598ce96060ae7af))
75
+ * **dotnet.MSBPP:** copy and expose protected method `getAndForget` to type system ([cf05ca7](https://github.com/HaloSPV3/HCE.Shared/commit/cf05ca7b8bf69bcf4b7f1a654d75dbdb32bdaddd))
76
+ * **dotnet.MSBPP:** export type `Class_MSBPP` for convenience ([88878bc](https://github.com/HaloSPV3/HCE.Shared/commit/88878bc3157fc7bec4404a48f9b316f2aed33ef5))
77
+ * **dotnet.NPP:** add `GetNPPGetterNames` with result caching ([5e82143](https://github.com/HaloSPV3/HCE.Shared/commit/5e82143c37fc4ac6c054e346e15d9fb6da341258))
78
+ * **dotnet.NPP:** add NugetProjectProperties ([a5bd9d5](https://github.com/HaloSPV3/HCE.Shared/commit/a5bd9d518968ee70f01b6281b82d8ed877672d75))
79
+ * **dotnet.NPP:** export `ClassLike` type `Class_NPP` for convenience ([8a3618e](https://github.com/HaloSPV3/HCE.Shared/commit/8a3618ebf051b135b94923e731e6eef4c41e9780))
80
+ * **dotnet.NRI:** add `GetNameForURL` ([5f635d9](https://github.com/HaloSPV3/HCE.Shared/commit/5f635d9066543650f0a0b5ca3a8ad64fd5c6adb9))
81
+ * **dotnet.NRI:** add `GetPushDummyPackageCommand` ([00bb9f7](https://github.com/HaloSPV3/HCE.Shared/commit/00bb9f7686350423a756c8cd056555c2dd73d58b))
82
+ * **dotnet.NRI:** add `NugetRegistryInfo` arg/prop `project`; refactor `isTokenDefined`; add `DefaultTokenEnvVars` ([500a86a](https://github.com/HaloSPV3/HCE.Shared/commit/500a86aefc953198fc0e43f3e9e150195e578dc2))
83
+ * **dotnet.NRI:** add `NugetRegistryInfoOptionsBase`, `NugetRegistryInfoOptions` ([f79de04](https://github.com/HaloSPV3/HCE.Shared/commit/f79de0425305d40150e304c512b740a8a8817f4b))
84
+ * **dotnet.NRI:** add `PackPackagesOptionsType`, `GetPackCommand`; add `opts` param to `PackDummyPackage` ([e1f3a46](https://github.com/HaloSPV3/HCE.Shared/commit/e1f3a4686dc937833392cfaa09ad545b4133485d))
85
+ * **dotnet.NRI:** add `PushPackagesOptionsType`, `GetPushCommand`, private `PushPackages` ([df7b9b3](https://github.com/HaloSPV3/HCE.Shared/commit/df7b9b30991448b7279f115577ffcfa92b1cd084))
86
+ * **dotnet.NRI:** add types `NRI.PackDummyPackagesOptionsType`, `NRI.PushDummyPackagesOptionsType ([d9a53a8](https://github.com/HaloSPV3/HCE.Shared/commit/d9a53a8d7e6936472f92bc20dc2305d7cb6cbf8c))
87
+ * **dotnet.SAP:** add target `SignAfterPack` ([ad1584f](https://github.com/HaloSPV3/HCE.Shared/commit/ad1584f6d3244dfc784da93731f76fc099e936f9))
88
+ * **dotnet.SemanticRelease:** add method `getTokenTestingCommands` ([330724e](https://github.com/HaloSPV3/HCE.Shared/commit/330724e58c7f2932bb109e18bfba9402e9ca45e1))
89
+ * **dotnet.SemanticRelease:** add method `splicePlugin` ([5c6963a](https://github.com/HaloSPV3/HCE.Shared/commit/5c6963a66f73ec97ec246892750988fa83001254))
90
+ * **dotnet:** add `NugetRegistryPair.fromNugetRegistryInfoAsync` ([f5844ff](https://github.com/HaloSPV3/HCE.Shared/commit/f5844ffe4545fdfe525817e1aac55736b2a153a7))
91
+ * **dotnet:** add MSBuildProjectProperties.GetFullPath ([360e317](https://github.com/HaloSPV3/HCE.Shared/commit/360e317951017f6024f53dd54d46dfd20759606a))
92
+ * **dotnet:** add MSBuildProjectProperties.OutputPath ([de8d90c](https://github.com/HaloSPV3/HCE.Shared/commit/de8d90c9ec1faf6b5fd78b41bf867e8274ea476d))
93
+ * **dotnet:** refactor MSBuildProject ([d743877](https://github.com/HaloSPV3/HCE.Shared/commit/d743877ea10d8fcaa55517faa22db4dbf968a6ab))
94
+ * enable adding release links to bottom of GitHub releases ([bc20d5e](https://github.com/HaloSPV3/HCE.Shared/commit/bc20d5e2a73395e14bcdd2b51538c57a29097c98))
95
+ * **eslint:** export config array separately from default export ([14b7f11](https://github.com/HaloSPV3/HCE.Shared/commit/14b7f11b17479dd4d03625fc0902d01fe6c60b84))
96
+ * export `@semantic-release/exec` `Options` interface ([331456e](https://github.com/HaloSPV3/HCE.Shared/commit/331456ed9ffe220f0270a1aefc3b34973c5ce64b))
97
+ * **insertPlugins:** add, export `insertPlugin`; declare internal `insertAndSortPlugins`; fix false-positive error caused by `!0` ([8971599](https://github.com/HaloSPV3/HCE.Shared/commit/8971599585dc962d5be6e7c3cc084f8c1a65d71c))
98
+ * **semanticRelease:** add PluginSpec<P,T> and derived types for binding a plugin to its Options ([00e50a0](https://github.com/HaloSPV3/HCE.Shared/commit/00e50a0b912ea2b8a315192823df1a841484a9c7))
99
+ * **utils.env:** enable passing options `loadDotenv` options to `getEnvVarValue` ([69b348c](https://github.com/HaloSPV3/HCE.Shared/commit/69b348cddd899d56d951a988e581a3d98cf33aec))
100
+ * **utils.Exact:** export `Exact<T, S>` ([65db38a](https://github.com/HaloSPV3/HCE.Shared/commit/65db38a0eb9cae858b1aa3c67c478de27a6160eb))
101
+ * **utils.execAsync:** add `ChildProcessSpawnException` for `execAsync` wrapper ([a1f032e](https://github.com/HaloSPV3/HCE.Shared/commit/a1f032ec92498e930074f0a88e883725c85a406a))
102
+ * **utils.GracefulRecursion:** export GracefulRecursion types `Length<T>`, `TupleOf<N, T>`, `Pop<T>`, `Increment<N>`, `Decrement` ([dacf0b5](https://github.com/HaloSPV3/HCE.Shared/commit/dacf0b5192d30ce5ea9a012806960db603fec88a))
103
+ * **utils.reflection.FL:** add type FunctionLike ([d236ee1](https://github.com/HaloSPV3/HCE.Shared/commit/d236ee1fb86a109a964c3b025da117f49468c30b))
104
+ * **utils.reflection.GD:** add type `GetterDescriptor` ([7d0333c](https://github.com/HaloSPV3/HCE.Shared/commit/7d0333cf3a7d10faee98dc550c231db2a3784e8d))
105
+ * **utils.reflection.getOPDs:** move `getOwnPropertyDescriptors` to its own file ([e860edd](https://github.com/HaloSPV3/HCE.Shared/commit/e860eddccaea975cd115caec4ecf89ac6946e0e6))
106
+ * **utils.reflection.getOPDsR:** move `getOwnPropertyDescriptorsRecursively` and related types to their own file ([2cc8c04](https://github.com/HaloSPV3/HCE.Shared/commit/2cc8c042de200702e95129f357c167cf628d2fe8))
107
+ * **utils.reflection.getPrototypeChainOf:** add function `getPrototypeChainOf` ([acf5d59](https://github.com/HaloSPV3/HCE.Shared/commit/acf5d593c0cc6008af1a02d3ddd4777958cd6fef))
108
+ * **utils.reflection.inheritance, utils.reflection.getPrototypeOf:** add inheritance group ([9403382](https://github.com/HaloSPV3/HCE.Shared/commit/94033822f8469ec1697b06ed98f7e909f7616b28))
109
+ * **utils.reflection.IPDM:** add type `InstancePropertyDescriptorMap` ([d3e8f61](https://github.com/HaloSPV3/HCE.Shared/commit/d3e8f6177958927b5e7cbe80c8c91a77e44792ba))
110
+ * **utils.reflection.isConstructor:** add function `isConstructor` ([e6e551b](https://github.com/HaloSPV3/HCE.Shared/commit/e6e551bcb516f99fdb72a4613b8433f46bb0c626))
111
+ * **utils.reflection.isGetterDescriptor:** add `isGetterDescriptor` ([c42a202](https://github.com/HaloSPV3/HCE.Shared/commit/c42a202249693ced46534fdad37aa3a90d933d25))
112
+ * **utils.reflection.ITOSPDM:** add type `InstanceTypeOrSelfPropertyDescriptorMap` ([45e1030](https://github.com/HaloSPV3/HCE.Shared/commit/45e10305db683910cad0f6021d09fab70792e327))
113
+ * **utils.reflection.OGDM:** add type `OwnGetterDescriptorMap` ([2b136f6](https://github.com/HaloSPV3/HCE.Shared/commit/2b136f68220147f9102490ca61f25917d10ab3f3))
114
+ * **utils.reflection.OPDM:** add type `OwnPropertyDescriptorMap` ([15605d4](https://github.com/HaloSPV3/HCE.Shared/commit/15605d47937a813e99da5f1821d2cde589078b7e))
115
+ * **utils.reflection.OwnKeyOf:** export utility type `OwnKeyOf<T, __proto__>` ([ef0f609](https://github.com/HaloSPV3/HCE.Shared/commit/ef0f609ab2b7ef8a11ba94b83ca4811c50328018))
116
+ * **utils.reflection.PDM:** add PropertyDescriptorMap variant with extra type parameter for Omit ([9318a0e](https://github.com/HaloSPV3/HCE.Shared/commit/9318a0ebe1251f93faa1728c21b4e69105137b86))
117
+ * **utils.reflection:** move `listOwnGetters` to its own file ([f6976f5](https://github.com/HaloSPV3/HCE.Shared/commit/f6976f597d4f59666499f33135621849a7224a5b))
118
+ * **utils:** add miscTypes.ts ([11cefed](https://github.com/HaloSPV3/HCE.Shared/commit/11cefed5e884df9eac187490d6445f2dcffb2d41))
119
+ * **utils:** add reflection.ts ([6fb70d8](https://github.com/HaloSPV3/HCE.Shared/commit/6fb70d8e4b627b50f8b8a8d972a504d843f0ad3e))
120
+
121
+ ### Bug Fixes
122
+
123
+ * avoid using implicitly fixed-length arrays ([02a2c2b](https://github.com/HaloSPV3/HCE.Shared/commit/02a2c2b880025fbd5e309d330f5546c6101ce3c0))
124
+ * **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))
125
+ * **deps, deps-dev:** update `@eslint/js`, `eslint` to v9.31.0 ([a3fe6e9](https://github.com/HaloSPV3/HCE.Shared/commit/a3fe6e9bb078bf5bab11008a44133e0108ec6614))
126
+ * **deps, deps-dev:** upgrade `eslint` deps ([c50fdb8](https://github.com/HaloSPV3/HCE.Shared/commit/c50fdb8b68464d0b288c37f6716d2eef744d6b57))
127
+ * **deps:** :ambulance: bump ws to 8.18.0 (>=8.17.1) ([97c20f8](https://github.com/HaloSPV3/HCE.Shared/commit/97c20f804e1f255fba4eb9e6222de3d5d4ebbca7))
128
+ * **deps:** 🚑️ bump micromatch to v4.0.8 ([24676f1](https://github.com/HaloSPV3/HCE.Shared/commit/24676f1b9b582029fadc29214b3e4bcd7c1e82ce))
129
+ * **deps:** bump `@types/node` to Node.js 20.11.x ([1a0ea53](https://github.com/HaloSPV3/HCE.Shared/commit/1a0ea5391f2b1c29445262852797b448acd81e8f))
130
+ * **deps:** bump @types/node to v22.9.0 ([b5ca498](https://github.com/HaloSPV3/HCE.Shared/commit/b5ca49820d592ec78e14d8fea7b401ae07ef9da0))
131
+ * **deps:** bump `@types/node` to 22.15.34 ([918af5e](https://github.com/HaloSPV3/HCE.Shared/commit/918af5ee8c23f653f784b42a850c066871b81a6a))
132
+ * **deps:** bump `arktype` to 2.1.20 ([5c8c17a](https://github.com/HaloSPV3/HCE.Shared/commit/5c8c17a82448bfb7d05d37c3ac86b0c4b012cbb4))
133
+ * **deps:** bump `chardet` to ^2.1.0 ([997c286](https://github.com/HaloSPV3/HCE.Shared/commit/997c286f5f7a79a5484eb1c961d6ebe247a3cf5a))
134
+ * **deps:** bump `conventional-changelog-conventionalcommits` to ^9.0.0 ([1d18454](https://github.com/HaloSPV3/HCE.Shared/commit/1d184547e35c2d3294c9f5a0b90174491b116069))
135
+ * **deps:** bump `debug` to ^4.4.1 ([33bc96b](https://github.com/HaloSPV3/HCE.Shared/commit/33bc96b1932cbba95ee33f9cd12aaf7d3358cc44))
136
+ * **deps:** bump `globals` to ^16.2.0 ([069801c](https://github.com/HaloSPV3/HCE.Shared/commit/069801cce11cc167cb5536c2f3cb5d6ae51b424b))
137
+ * **deps:** bump `globals` to 16.3.0 ([6c4f22f](https://github.com/HaloSPV3/HCE.Shared/commit/6c4f22f9c0636786246b2d685259fe79190d9b04))
138
+ * **deps:** bump `husky` to ^9.1.7 ([9aa7c29](https://github.com/HaloSPV3/HCE.Shared/commit/9aa7c2997ae1a5d0a95835a57334f469f1788458))
139
+ * **deps:** bump `import-meta-resolve` to 4.1.0 ([c80930a](https://github.com/HaloSPV3/HCE.Shared/commit/c80930a7cc4b95ea77bbeea0808df73c43793aa8))
140
+ * **deps:** bump `semantic-release-export-data` to ^1.1.0 ([824c790](https://github.com/HaloSPV3/HCE.Shared/commit/824c7907e1c757b1ba35cc479844ae61db26d26f))
141
+ * **deps:** bump `semantic-release` to 24.2.6 ([9f24a9e](https://github.com/HaloSPV3/HCE.Shared/commit/9f24a9ef6564281c245a4e0a0f5f10212c2e586b))
142
+ * **deps:** bump `ts-essentials` to ^10.1.1 ([9032d15](https://github.com/HaloSPV3/HCE.Shared/commit/9032d15780a6cb3801e6a128ebb3318d5b2c3327))
143
+ * **deps:** bump `typescript-eslint` to ^8.34.0; remove redundant deps ([3e6d341](https://github.com/HaloSPV3/HCE.Shared/commit/3e6d34172d2f1f6886c9d560913d76661f5c1571))
144
+ * **deps:** bump arktype from 2.0.0-rc.17 to 2.0.0-rc.21 ([54671dd](https://github.com/HaloSPV3/HCE.Shared/commit/54671ddfb3606b50967871474bd56a8433fb9156))
145
+ * **deps:** bump arktype from 2.0.0-rc.6 to 2.0.0-rc.17 ([76a02b2](https://github.com/HaloSPV3/HCE.Shared/commit/76a02b2433e0eaec9fa3c7eca7251fa7ec191478))
146
+ * **deps:** bump arktypes from v2.0.0-beta.2 to v2.0.0-rc.6 ([ae77ccd](https://github.com/HaloSPV3/HCE.Shared/commit/ae77ccdff113e41f5360fd6679d82a9ac6f31207))
147
+ * **deps:** bump eslint-plugin-jsonc to v2.17.0 ([383317a](https://github.com/HaloSPV3/HCE.Shared/commit/383317a51cba11e28bcf868cb3eeef11fae0bf22))
148
+ * **deps:** bump group typescript-eslint to v8.13.0 ([e0f1e98](https://github.com/HaloSPV3/HCE.Shared/commit/e0f1e98219e5495d59bb59515f6764162d1e8893))
149
+ * **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))
150
+ * **deps:** remove deprecated `@types/semantic-release` ([57536e0](https://github.com/HaloSPV3/HCE.Shared/commit/57536e05789faedb2b3ced40a44b91bee5c14349))
151
+ * **deps:** remove unused dep `@octokit/request` ([8d5feba](https://github.com/HaloSPV3/HCE.Shared/commit/8d5feba29a706a4c42e0b09ab7aa3e99d5c39e34))
152
+ * **deps:** replace `dotenv` with `@dotenvx/dotenvx`; move to runtime deps ([76b32b8](https://github.com/HaloSPV3/HCE.Shared/commit/76b32b8be7a911d0938b8086bc51d1c685511c34))
153
+ * **deps:** set `@types/node` semver range to PATCHes ([91395dd](https://github.com/HaloSPV3/HCE.Shared/commit/91395dd2408752b536c91887cc6092f0c3b0b929))
154
+ * **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))
155
+ * **deps:** update `@dotenvx/dotenvx` to v1.47.6 ([a52fd9c](https://github.com/HaloSPV3/HCE.Shared/commit/a52fd9c0719024ef00cd836dbc654c4552cea3eb))
156
+ * **deps:** update `conventional-changelog-conventionalcommits` to v9.1.0 ([43cb289](https://github.com/HaloSPV3/HCE.Shared/commit/43cb2895345996220ec328686d0a2aa3e1f63a04))
157
+ * **deps:** update `semantic-release` to v24.2.7 ([5ed024b](https://github.com/HaloSPV3/HCE.Shared/commit/5ed024b8eac1db8de08ff7b0b7a6d3d8cc49900d))
158
+ * **deps:** update `typescript-eslint` to v8.37.0 ([7bb7852](https://github.com/HaloSPV3/HCE.Shared/commit/7bb78527922020b6a07302a905c4f58459bd8186))
159
+ * **deps:** update commitlint monorepo to v20 ([247558f](https://github.com/HaloSPV3/HCE.Shared/commit/247558f50593020cee13dc75e06647f36204eacc))
160
+ * **deps:** update npm to v10.9.1 ([cd3b17f](https://github.com/HaloSPV3/HCE.Shared/commit/cd3b17fd6cf58adbf5e103d76f5b386d417dc0d3))
161
+ * **deps:** update semantic-release monorepo ([3c87c63](https://github.com/HaloSPV3/HCE.Shared/commit/3c87c638ed7784f41eb12f6dc3246675096e242e))
162
+ * **deps:** upgrade `@babel/runtime`, `brace-expansion`, `undici` to mitigate CVEs ([b9d0cb2](https://github.com/HaloSPV3/HCE.Shared/commit/b9d0cb27892f855d63a839db49869275f8cce6c4))
163
+ * **deps:** upgrade `@stylistic/eslint-plugin` to ^5.0.0 ([cb44505](https://github.com/HaloSPV3/HCE.Shared/commit/cb44505e65b888c110541e3612a85cbaec3ba068))
164
+ * **deps:** upgrade `semantic-release` and its plugins ([6c2e4a5](https://github.com/HaloSPV3/HCE.Shared/commit/6c2e4a5cfc44963b3a66e1f87584ed9561f0a9eb))
165
+ * **deps:** upgrade group "eslint" ([c1c3b5f](https://github.com/HaloSPV3/HCE.Shared/commit/c1c3b5fd784f567312bfa26792edfb46936e1317))
166
+ * disable `@semantic-release/npm` tarballDir config ([b4d2fb5](https://github.com/HaloSPV3/HCE.Shared/commit/b4d2fb50b368e5c66c323781fb094adee7f8fb01))
167
+ * 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))
168
+ * **dotnet, dotnet.PublishAll:** append `-p:Configuration=Release` to PublishAll commands ([3ebe7be](https://github.com/HaloSPV3/HCE.Shared/commit/3ebe7be14568f60005a894b465352b7c65cea00e))
169
+ * **dotnet.INVAP:** assign arg values to real props in `options` ([4af543d](https://github.com/HaloSPV3/HCE.Shared/commit/4af543d4f2d27cbff4a32ba464d94c1cb01aa302))
170
+ * **dotnet.INVAP:** execute INVAP cli only if it's the main module ([5006ab1](https://github.com/HaloSPV3/HCE.Shared/commit/5006ab1d6ff46554f5fd17d076465fcc1e2018e6)), closes [#455](https://github.com/HaloSPV3/HCE.Shared/issues/455)
171
+ * **dotnet.SemanticRelease:** append `@semantic-release/exec` plugin to plugins array if not found ([7eeafb2](https://github.com/HaloSPV3/HCE.Shared/commit/7eeafb2caab31358ecb91f8b3f1b885a11bc43b8))
172
+ * **dotnet.SemanticRelease:** do not `await string[]` ([f56cc94](https://github.com/HaloSPV3/HCE.Shared/commit/f56cc949dbec7ac9953b3d0a90de1db7c43db2b3))
173
+ * **dotnet.SemanticRelease:** set/append dummy pack, dummy push, and INVAP commands ([88a523e](https://github.com/HaloSPV3/HCE.Shared/commit/88a523e231a821b59b72af0dee785affa9889499))
174
+ * **dotnet.SemanticRelease:** swap out `console.debug` with colorful `debug` logging ([54029e1](https://github.com/HaloSPV3/HCE.Shared/commit/54029e1089e802ed6dcc02338b67118a67f7ecb4))
175
+ * **dotnet.ZPD:** beware of case-insensitive property names! Prefix private props with '_'; fix invalid condition expressions; add conditions to assignments ([60a25ce](https://github.com/HaloSPV3/HCE.Shared/commit/60a25ce54202e31003491e32016e47dd990acd4e))
176
+ * **dotnet.ZPD:** fix placeholders PropertyGroup condition almost always evaluating to `true` ([44f2fc4](https://github.com/HaloSPV3/HCE.Shared/commit/44f2fc4af1caf3d14c4fe27ba27154d79094a7a3))
177
+ * **dotnet:** do not mix `export *` and `export type *`! ([1184896](https://github.com/HaloSPV3/HCE.Shared/commit/118489616924fdb3d62670a67b1a0ab8123ba299))
178
+ * **dotnet:** do not mix `export *` and `export type *`! ([859dfb4](https://github.com/HaloSPV3/HCE.Shared/commit/859dfb440b32258ddd34f36cb9f42f033b8b287a))
179
+ * **dotnet:** fix `-t:Publish` commands starting with `dotnet publish` instead of `dotnet msbuild` ([5d6bbca](https://github.com/HaloSPV3/HCE.Shared/commit/5d6bbca822131eeb2c76e184e6b4c036e161cc15))
180
+ * **dotnet:** fix PublishAll never running `_PublishProjectForAllFrameworksAndRuntimes` ([1717ea6](https://github.com/HaloSPV3/HCE.Shared/commit/1717ea6ac6256dcba00a61a62f0d270f0267a54d))
181
+ * fix apparently case-sensitive repo url for attestation/provenance ([19e1d72](https://github.com/HaloSPV3/HCE.Shared/commit/19e1d721eaf6a3137aa721ad80200f28b58a3134))
182
+ * fix typo in $ghRegistry string ([8f8de0d](https://github.com/HaloSPV3/HCE.Shared/commit/8f8de0d5a23403f11824c839dc80a98025f06b04))
183
+ * move gitlab `git push --tags` to `publish` step ([5faf150](https://github.com/HaloSPV3/HCE.Shared/commit/5faf1509f8176fd530c1041ee3384b3554ca1369))
184
+ * remove second gitlab-sync ([b09f6c9](https://github.com/HaloSPV3/HCE.Shared/commit/b09f6c937a295d5bedcff85e8e32a4770b369ff2))
185
+ * replace `debug.log` calls with `debug` call ([1b94603](https://github.com/HaloSPV3/HCE.Shared/commit/1b946035b5732deb69ff8a446843f1c5947ca49e))
186
+ * **TODO:** temporarily disable Deno/JSR publishing ([3479838](https://github.com/HaloSPV3/HCE.Shared/commit/347983862b0c19a62d1266824c75db72ef7a8917)), closes [#448](https://github.com/HaloSPV3/HCE.Shared/issues/448)
187
+ * try fixing GitLab asset label, path ([75463a0](https://github.com/HaloSPV3/HCE.Shared/commit/75463a02ce247b33c25435d1e4afa78d6748f8db))
188
+ * try fixing GitLab assets path AGAIN ([0bee0ae](https://github.com/HaloSPV3/HCE.Shared/commit/0bee0aee71e2da6707228820cec41c4a2248c44a))
189
+ * try increasing GitLab Release retry limit ([ff1e758](https://github.com/HaloSPV3/HCE.Shared/commit/ff1e758499602cbe02bee31fc217be4e91d2b423))
190
+ * use argument splatting ([6861778](https://github.com/HaloSPV3/HCE.Shared/commit/68617788184e3b9c56afaddd8c69461b2286312c))
191
+
192
+ ### Reverts
193
+
194
+ * chore(vscode): fix task 'npm install on open' ([d33c9a7](https://github.com/HaloSPV3/HCE.Shared/commit/d33c9a7b4872359491bbc3b02339a3520e87c1b1))
195
+ * **utils.miscTypes, dotnet.NPP:** remove `isOfType` ([49a5911](https://github.com/HaloSPV3/HCE.Shared/commit/49a591148526372a9c27c0a9ed81dda81fa102c1))
196
+
197
+ ### Code Refactoring
198
+
199
+ * deeply const `semanticReleaseConfig` `baseConfig` to expose values in type, but export as deeply mutable ([e2378a7](https://github.com/HaloSPV3/HCE.Shared/commit/e2378a7e724e0e027d047cf28ddb43c5df49405a))
200
+ * **dotnet.helpers:** overhaul `dotnetHelpers` ([fad8b4e](https://github.com/HaloSPV3/HCE.Shared/commit/fad8b4eebd066c1494f17f829316f70fa139af5f))
201
+ * **dotnet.NPP:** remove InstanceProperties GetUniquePropertyKeys; change readonly fields to getters; ensure types ([33a12a8](https://github.com/HaloSPV3/HCE.Shared/commit/33a12a89477973a4e7e00419d890e5e31f327639))
202
+ * **dotnet:** allow readonly array args where they are not modified ([2099344](https://github.com/HaloSPV3/HCE.Shared/commit/20993440f93657385d9434f0ee8ea370f88d18c6))
203
+ * **dotnet:** change read-only fields to getters. ([095ccee](https://github.com/HaloSPV3/HCE.Shared/commit/095ccee7d23946d72b968d6fec78953b00549248))
204
+ * **dotnet:** move `NugetRegistryPair`, `nugetDefault` to its own file ([4c24cf5](https://github.com/HaloSPV3/HCE.Shared/commit/4c24cf536a5454085a0269a114203c7db7216507))
205
+ * **dotnet:** pass each path in `string[]` `projectsToPublish` to `Evaluate`; allow passing `MSBP[]`, `NRI[]` to `configurePrepareCmd` ([71e5e5e](https://github.com/HaloSPV3/HCE.Shared/commit/71e5e5efb23795bd31ff6f8dde24f0b06903c187))
206
+ * **dotnet:** rename MSBuildProjectProperties.FullName to MSBuildProjectFullPath ([01aaac8](https://github.com/HaloSPV3/HCE.Shared/commit/01aaac846a8e6d7658c428e4b9c022da038c8223))
207
+ * **dotnet:** replace MSBuildProjectProperties constructor arg 'rest' with 'properties' ([6efde7d](https://github.com/HaloSPV3/HCE.Shared/commit/6efde7d16cd9a5b8d3a0e0b2e76d1c9921606ff9))
208
+ * **insertPlugins, semanticRelease:** allow only tuple `PluginSpec` ([e44ef67](https://github.com/HaloSPV3/HCE.Shared/commit/e44ef67fb824ddf2a74f13bd4e08a4acc27a002f))
209
+ * move MSBuildProjectProperties to MSBuildProject.ts ([20fd130](https://github.com/HaloSPV3/HCE.Shared/commit/20fd13080bd17d33b3d44e4f8de550c6e54c218f))
210
+ * remove 'dotnet' facade ([f203a0c](https://github.com/HaloSPV3/HCE.Shared/commit/f203a0c8e258a26a4b18d29a3dcab2deec1ecfda))
211
+ * remove appendPlugins ([26d1e06](https://github.com/HaloSPV3/HCE.Shared/commit/26d1e068b581ef39901e4f2789f185317515ea1a))
212
+ * remove default export 'getConfig' ([baef25a](https://github.com/HaloSPV3/HCE.Shared/commit/baef25a60863af5d622f082620552b1ad0ed697c))
213
+ * remove param "exists" from MSBuildProjectProperties ctor ([34bcf54](https://github.com/HaloSPV3/HCE.Shared/commit/34bcf542a9b88c1c18a5878d8b48969d9898ae8b))
214
+ * remove property PredefinedProperties ([fcc4d55](https://github.com/HaloSPV3/HCE.Shared/commit/fcc4d5566e795007b2b4f0b6bcc418ec434026bb))
215
+ * remove static semantic-release config ([508a29d](https://github.com/HaloSPV3/HCE.Shared/commit/508a29d741de0fad327b424388d21eb83337efbd))
216
+ * rewrite dotnetGHPR, dotnetGLPR, NuGetRegistryInfo as classes ([e611a87](https://github.com/HaloSPV3/HCE.Shared/commit/e611a878fb8dfb821a25c19b8dc84b7c913575db))
217
+ * rewrite semanticReleaseConfigDotnet as class ([1ab49c5](https://github.com/HaloSPV3/HCE.Shared/commit/1ab49c5c6a8a766bb9e672e41663792a7cdef995))
218
+ * **semanticRelease:** change semanticReleaseConfig's baseConfig to const; add more type ([ba9fe61](https://github.com/HaloSPV3/HCE.Shared/commit/ba9fe6132c0f8467122c04c4b478817463221344))
219
+ * **semanticRelease:** change type of defaultPlugins to frozen "as const" string array ([fd2c935](https://github.com/HaloSPV3/HCE.Shared/commit/fd2c935b1ee34847b878d8d66a2e454961ed351a))
220
+
221
+ ### Build System
222
+
223
+ * bump @semantic-release/github to v11.0.1 ([c7f068d](https://github.com/HaloSPV3/HCE.Shared/commit/c7f068d822be6f4c610e98b9de784a9173568daa))
224
+ * increase TypeScript target from ES5 to ES2022 ([339ebc6](https://github.com/HaloSPV3/HCE.Shared/commit/339ebc6be89d76cce15d8817840dd5e251e57e1e))
225
+ * manually set package version to 3.0.0 ([a6d7be2](https://github.com/HaloSPV3/HCE.Shared/commit/a6d7be20beee7aaf2e34eff91885684564b9ae55))
226
+ * migrate main export to mjs ([76345e8](https://github.com/HaloSPV3/HCE.Shared/commit/76345e81735ad0115d16b9d97a71ccdb1587a5bb))
227
+
228
+ ## [3.0.0-develop.25](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.24...v3.0.0-develop.25) (2025-10-21)
229
+
230
+ ### Bug Fixes
231
+
232
+ * **deps:** ponyfill `string.replaceAll`; add core-js ([e65882e](https://github.com/HaloSPV3/HCE.Shared/commit/e65882eb176b904831d81362bd2553a7a04ffbdf))
233
+ * **deps:** update `semantic-release-export-data` to v1.1.0; force it to resolve `@actions/core` to ^1.11.1 ([66fec8e](https://github.com/HaloSPV3/HCE.Shared/commit/66fec8ed6ec602215ae657a78de6a63b79fb2fde))
234
+
235
+ ## [3.0.0-develop.24](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.23...v3.0.0-develop.24) (2025-10-21)
236
+
237
+ ### Bug Fixes
238
+
239
+ * **deps:** update semantic-release monorepo ([3c87c63](https://github.com/HaloSPV3/HCE.Shared/commit/3c87c638ed7784f41eb12f6dc3246675096e242e))
240
+
241
+ ## [3.0.0-develop.23](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.22...v3.0.0-develop.23) (2025-10-06)
242
+
243
+ ### Bug Fixes
244
+
245
+ * **deps:** update commitlint monorepo to v20 ([247558f](https://github.com/HaloSPV3/HCE.Shared/commit/247558f50593020cee13dc75e06647f36204eacc))
246
+
247
+ ## [3.0.0-develop.22](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.21...v3.0.0-develop.22) (2025-10-05)
248
+
249
+ ### Bug Fixes
250
+
251
+ * **dotnet.INVAP:** assign arg values to real props in `options` ([4af543d](https://github.com/HaloSPV3/HCE.Shared/commit/4af543d4f2d27cbff4a32ba464d94c1cb01aa302))
252
+ * **dotnet.SemanticRelease:** do not `await string[]` ([f56cc94](https://github.com/HaloSPV3/HCE.Shared/commit/f56cc949dbec7ac9953b3d0a90de1db7c43db2b3))
253
+
254
+ ## [3.0.0-develop.21](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.20...v3.0.0-develop.21) (2025-08-14)
255
+
256
+ ### Bug Fixes
257
+
258
+ * **dotnet, dotnet.PublishAll:** append `-p:Configuration=Release` to PublishAll commands ([3ebe7be](https://github.com/HaloSPV3/HCE.Shared/commit/3ebe7be14568f60005a894b465352b7c65cea00e))
259
+
260
+ ## [3.0.0-develop.20](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.19...v3.0.0-develop.20) (2025-08-07)
261
+
262
+ ### Bug Fixes
263
+
264
+ * **dotnet.ZPD:** beware of case-insensitive property names! Prefix private props with '_'; fix invalid condition expressions; add conditions to assignments ([60a25ce](https://github.com/HaloSPV3/HCE.Shared/commit/60a25ce54202e31003491e32016e47dd990acd4e))
265
+ * **dotnet.ZPD:** fix placeholders PropertyGroup condition almost always evaluating to `true` ([44f2fc4](https://github.com/HaloSPV3/HCE.Shared/commit/44f2fc4af1caf3d14c4fe27ba27154d79094a7a3))
266
+
267
+ ## [3.0.0-develop.19](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.18...v3.0.0-develop.19) (2025-08-07)
268
+
269
+ ### Bug Fixes
270
+
271
+ * **dotnet:** fix `-t:Publish` commands starting with `dotnet publish` instead of `dotnet msbuild` ([5d6bbca](https://github.com/HaloSPV3/HCE.Shared/commit/5d6bbca822131eeb2c76e184e6b4c036e161cc15))
272
+ * **dotnet:** fix PublishAll never running `_PublishProjectForAllFrameworksAndRuntimes` ([1717ea6](https://github.com/HaloSPV3/HCE.Shared/commit/1717ea6ac6256dcba00a61a62f0d270f0267a54d))
273
+
274
+ ## [3.0.0-develop.18](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.17...v3.0.0-develop.18) (2025-08-05)
275
+
276
+ ### Bug Fixes
277
+
278
+ * **dotnet.INVAP:** execute INVAP cli only if it's the main module ([5006ab1](https://github.com/HaloSPV3/HCE.Shared/commit/5006ab1d6ff46554f5fd17d076465fcc1e2018e6)), closes [#455](https://github.com/HaloSPV3/HCE.Shared/issues/455)
279
+
280
+ ## [3.0.0-develop.17](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.16...v3.0.0-develop.17) (2025-07-31)
281
+
282
+ ### Bug Fixes
283
+
284
+ * **dotnet:** do not mix `export *` and `export type *`! ([1184896](https://github.com/HaloSPV3/HCE.Shared/commit/118489616924fdb3d62670a67b1a0ab8123ba299))
285
+
286
+ ## [3.0.0-develop.16](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.15...v3.0.0-develop.16) (2025-07-31)
287
+
288
+ ### Bug Fixes
289
+
290
+ * **dotnet:** do not mix `export *` and `export type *`! ([859dfb4](https://github.com/HaloSPV3/HCE.Shared/commit/859dfb440b32258ddd34f36cb9f42f033b8b287a))
291
+
292
+ ## [3.0.0-develop.15](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.14...v3.0.0-develop.15) (2025-07-31)
293
+
294
+ ### Bug Fixes
295
+
296
+ * **dotnet.SemanticRelease:** swap out `console.debug` with colorful `debug` logging ([54029e1](https://github.com/HaloSPV3/HCE.Shared/commit/54029e1089e802ed6dcc02338b67118a67f7ecb4))
297
+
298
+ ## [3.0.0-develop.14](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.13...v3.0.0-develop.14) (2025-07-31)
299
+
300
+ ### Bug Fixes
301
+
302
+ * replace `debug.log` calls with `debug` call ([1b94603](https://github.com/HaloSPV3/HCE.Shared/commit/1b946035b5732deb69ff8a446843f1c5947ca49e))
303
+
304
+ ## [3.0.0-develop.13](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.12...v3.0.0-develop.13) (2025-07-26)
305
+
306
+ ### Bug Fixes
307
+
308
+ * remove second gitlab-sync ([b09f6c9](https://github.com/HaloSPV3/HCE.Shared/commit/b09f6c937a295d5bedcff85e8e32a4770b369ff2))
309
+
310
+ ## [3.0.0-develop.12](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.11...v3.0.0-develop.12) (2025-07-26)
311
+
312
+ ### Bug Fixes
313
+
314
+ * **TODO:** temporarily disable Deno/JSR publishing ([3479838](https://github.com/HaloSPV3/HCE.Shared/commit/347983862b0c19a62d1266824c75db72ef7a8917)), closes [#448](https://github.com/HaloSPV3/HCE.Shared/issues/448)
315
+
316
+ ## [3.0.0-develop.11](https://github.com/HaloSPV3/HCE.Shared/compare/v3.0.0-develop.10...v3.0.0-develop.11) (2025-07-26)
317
+
318
+ ### Bug Fixes
319
+
320
+ * move gitlab `git push --tags` to `publish` step ([5faf150](https://github.com/HaloSPV3/HCE.Shared/commit/5faf1509f8176fd530c1041ee3384b3554ca1369))
321
+
322
+ ## [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)
323
+
324
+ ### Bug Fixes
325
+
326
+ * avoid using implicitly fixed-length arrays ([02a2c2b](https://github.com/HaloSPV3/HCE.Shared/commit/02a2c2b880025fbd5e309d330f5546c6101ce3c0))
327
+
1
328
  ## [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)
2
329
 
3
330
  ### Bug Fixes
@@ -290,11 +617,12 @@
290
617
  * increase TypeScript target from ES5 to ES2022 ([339ebc6](https://github.com/halospv3/hce.shared/commit/339ebc6be89d76cce15d8817840dd5e251e57e1e))
291
618
  * migrate main export to mjs ([76345e8](https://github.com/halospv3/hce.shared/commit/76345e81735ad0115d16b9d97a71ccdb1587a5bb))
292
619
 
293
- # Changelog
620
+ ## [2.6.6](https://github.com/halospv3/hce.shared/compare/v2.6.5...v2.6.6) (2025-07-30)
294
621
 
295
- All notable changes to this project will be documented in this file. See
296
- [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version)
297
- for commit guidelines.
622
+ ### Bug Fixes
623
+
624
+ * **deps:** ponyfill `string.replaceAll`; add core-js ([e65882e](https://github.com/halospv3/hce.shared/commit/e65882eb176b904831d81362bd2553a7a04ffbdf))
625
+ * **deps:** update `semantic-release-export-data` to v1.1.0; force it to resolve `@actions/core` to ^1.11.1 ([66fec8e](https://github.com/halospv3/hce.shared/commit/66fec8ed6ec602215ae657a78de6a63b79fb2fde))
298
626
 
299
627
  ## [2.6.5](https://github.com/halospv3/hce.shared/compare/v2.6.4...v2.6.5) (2025-07-15)
300
628
 
@@ -355,56 +683,56 @@ for commit guidelines.
355
683
 
356
684
  ### Features
357
685
 
358
- - add createDummyNupkg
686
+ * add createDummyNupkg
359
687
  ([ed67d06](https://github.com/halospv3/hce.shared/commit/ed67d06cd06e56a78b0a9ff2e51efb83ddd94386)),
360
688
  closes [#406](https://github.com/halospv3/hce.shared/issues/406)
361
- - add EnvUtils (getEnvVarValue, getEnv)
689
+ * add EnvUtils (getEnvVarValue, getEnv)
362
690
  ([f86562a](https://github.com/halospv3/hce.shared/commit/f86562aa1c19a13a612e6571ba2122bf134ba196))
363
691
 
364
692
  ## [2.5.0](https://github.com/halospv3/hce.shared/compare/v2.4.3...v2.5.0) (2024-06-04)
365
693
 
366
694
  ### Features
367
695
 
368
- - overhaul dotnetGHPR; misc refactors
696
+ * overhaul dotnetGHPR; misc refactors
369
697
  ([8d0a1d6](https://github.com/halospv3/hce.shared/commit/8d0a1d657e7f4754881c9a130fd4aa8191fb3e81))
370
698
 
371
699
  ### Bug Fixes
372
700
 
373
- - **deps:** update dependency conventional-changelog-conventionalcommits to v8
701
+ * **deps:** update dependency conventional-changelog-conventionalcommits to v8
374
702
  ([e1defcd](https://github.com/halospv3/hce.shared/commit/e1defcd94ba51eda7384c1ca87f33c9928610e20))
375
- - **deps:** update semantic-release monorepo
703
+ * **deps:** update semantic-release monorepo
376
704
  ([39fcf98](https://github.com/halospv3/hce.shared/commit/39fcf988fe55b894e269d64de1b48c7f8dfb950c))
377
705
 
378
706
  ## [2.4.3](https://github.com/halospv3/hce.shared/compare/v2.4.2...v2.4.3) (2024-05-31)
379
707
 
380
708
  ### Bug Fixes
381
709
 
382
- - fix error being thrown because an 'else' is missing
710
+ * fix error being thrown because an 'else' is missing
383
711
  ([a4ed781](https://github.com/halospv3/hce.shared/commit/a4ed781dd9ebf696deae7b7914d8cf77e2beb5fb))
384
712
 
385
713
  ## [2.4.3-develop.1](https://github.com/halospv3/hce.shared/compare/v2.4.2...v2.4.3-develop.1) (2024-06-01)
386
714
 
387
715
  ### Bug Fixes
388
716
 
389
- - **deps:** update dependency conventional-changelog-conventionalcommits to v8
717
+ * **deps:** update dependency conventional-changelog-conventionalcommits to v8
390
718
  ([e1defcd](https://github.com/halospv3/hce.shared/commit/e1defcd94ba51eda7384c1ca87f33c9928610e20))
391
- - **deps:** update semantic-release monorepo
719
+ * **deps:** update semantic-release monorepo
392
720
  ([39fcf98](https://github.com/halospv3/hce.shared/commit/39fcf988fe55b894e269d64de1b48c7f8dfb950c))
393
721
 
394
722
  ## [2.4.2](https://github.com/halospv3/hce.shared/compare/v2.4.1...v2.4.2) (2024-05-31)
395
723
 
396
724
  ### Bug Fixes
397
725
 
398
- - fix adding npm plugin to private semantic-release config
726
+ * fix adding npm plugin to private semantic-release config
399
727
  ([fe2542b](https://github.com/halospv3/hce.shared/commit/fe2542b9e3d1dc3b3d00351f3dbef840b1f99486))
400
728
 
401
729
  ## [2.4.1](https://github.com/halospv3/hce.shared/compare/v2.4.0...v2.4.1) (2024-05-31)
402
730
 
403
731
  ### Bug Fixes
404
732
 
405
- - :ambulance: bump braces to 3.0.3
733
+ * :ambulance: bump braces to 3.0.3
406
734
  ([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
407
- - **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits
735
+ * **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits
408
736
  ([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)),
409
737
  closes [#402](https://github.com/halospv3/hce.shared/issues/402)
410
738
 
@@ -412,9 +740,9 @@ for commit guidelines.
412
740
 
413
741
  ### Bug Fixes
414
742
 
415
- - :ambulance: bump braces to 3.0.3
743
+ * :ambulance: bump braces to 3.0.3
416
744
  ([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
417
- - **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits
745
+ * **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits
418
746
  ([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)),
419
747
  closes [#402](https://github.com/halospv3/hce.shared/issues/402)
420
748
 
@@ -424,40 +752,40 @@ for commit guidelines.
424
752
 
425
753
  ### Bug Fixes
426
754
 
427
- - add commitlint config to package exports
755
+ * add commitlint config to package exports
428
756
  ([db87cc8](https://github.com/halospv3/hce.shared/commit/db87cc81f0e1718a6747f0ba6746f078685b6142))
429
757
 
430
758
  ## [2.2.2](https://github.com/halospv3/hce.shared/compare/v2.2.1...v2.2.2) (2024-03-29)
431
759
 
432
760
  ### Bug Fixes
433
761
 
434
- - use the correct file extension for commitlint config in files array
762
+ * use the correct file extension for commitlint config in files array
435
763
  ([9f5bd5f](https://github.com/halospv3/hce.shared/commit/9f5bd5fd52b37ac4a86617bc921053a05a92c239))
436
764
 
437
765
  ## [2.2.1](https://github.com/halospv3/hce.shared/compare/v2.2.0...v2.2.1) (2024-03-29)
438
766
 
439
767
  ### Bug Fixes
440
768
 
441
- - include commitlint config in package files
769
+ * include commitlint config in package files
442
770
  ([26e2888](https://github.com/halospv3/hce.shared/commit/26e2888bdde302d7dd7a88b763975598a1eb539f))
443
771
 
444
772
  ## [2.2.0](https://github.com/halospv3/hce.shared/compare/v2.1.2...v2.2.0) (2024-03-29)
445
773
 
446
774
  ### Features
447
775
 
448
- - **dotnet:** add GitVersion 6.0 config
776
+ * **dotnet:** add GitVersion 6.0 config
449
777
  ([3784c72](https://github.com/halospv3/hce.shared/commit/3784c72ea2e37dcced13ccc322476f0d93d2bd9b))
450
- - **dotnet:** add global "RepoRoot", "RepoRootPublishDir", and placeholder
778
+ * **dotnet:** add global "RepoRoot", "RepoRootPublishDir", and placeholder
451
779
  properties
452
780
  ([23d330a](https://github.com/halospv3/hce.shared/commit/23d330a2ca4769fcd14fe8f1a409f6801a7a1ea3))
453
- - **dotnet:** rework ZipPublishDir
781
+ * **dotnet:** rework ZipPublishDir
454
782
  ([618ba95](https://github.com/halospv3/hce.shared/commit/618ba95b3d731dc1b560e91757aa02e947b09e03))
455
- - move commitlint config to shared file
783
+ * move commitlint config to shared file
456
784
  ([66efb30](https://github.com/halospv3/hce.shared/commit/66efb30a9e4351d02a761edf3a49722bc8a0f111))
457
785
 
458
786
  ### Bug Fixes
459
787
 
460
- - **dotnet:** trim variant args; undefine if parentheses would be empty
788
+ * **dotnet:** trim variant args; undefine if parentheses would be empty
461
789
  ([10414ff](https://github.com/halospv3/hce.shared/commit/10414ffc58950bae4d582d2263cbf9d7a51235eb)),
462
790
  closes [#356](https://github.com/halospv3/hce.shared/issues/356)
463
791
 
@@ -465,7 +793,7 @@ for commit guidelines.
465
793
 
466
794
  ### Bug Fixes
467
795
 
468
- - **deps:** update dependency @semantic-release/release-notes-generator to v13
796
+ * **deps:** update dependency @semantic-release/release-notes-generator to v13
469
797
  ([0758bc9](https://github.com/halospv3/hce.shared/commit/0758bc9c9bb8338855880218e4c1086e25384baa))
470
798
 
471
799
  ## [2.1.1](https://github.com/halospv3/hce.shared/compare/v2.1.0...v2.1.1) (2024-03-26)
@@ -474,62 +802,62 @@ for commit guidelines.
474
802
 
475
803
  ### Features
476
804
 
477
- - add plugin '@semantic-release/exec'
805
+ * add plugin '@semantic-release/exec'
478
806
  ([61447fc](https://github.com/halospv3/hce.shared/commit/61447fcdef19db8cd7f103edd54354fa5c4cb202))
479
807
 
480
808
  ## [2.0.1](https://github.com/halospv3/hce.shared/compare/v2.0.0...v2.0.1) (2024-03-18)
481
809
 
482
810
  ### Bug Fixes
483
811
 
484
- - **deps:** update dependency @semantic-release/commit-analyzer to v12
812
+ * **deps:** update dependency @semantic-release/commit-analyzer to v12
485
813
  ([87c6d12](https://github.com/halospv3/hce.shared/commit/87c6d12c3ab5243e50a0c1b0cf3dafd6c4c20ffa))
486
- - **dotnet:** try making the '$(RepoRoot)/publish' directory before zipping
814
+ * **dotnet:** try making the '$(RepoRoot)/publish' directory before zipping
487
815
  ([0241146](https://github.com/halospv3/hce.shared/commit/024114698c89f557513a61400729a609d7637bf0))
488
816
 
489
817
  ## [2.0.0](https://github.com/halospv3/hce.shared/compare/v1.2.7...v2.0.0) (2024-03-17)
490
818
 
491
819
  ### ⚠ BREAKING CHANGES
492
820
 
493
- - **node:** increase minimum version of NodeJS to 20.8.1 as required by
821
+ * **node:** increase minimum version of NodeJS to 20.8.1 as required by
494
822
  semantic-release
495
823
 
496
824
  ### Bug Fixes
497
825
 
498
- - add minimum npm version; error if required node, npm versions unavailable
826
+ * add minimum npm version; error if required node, npm versions unavailable
499
827
  ([3969ad5](https://github.com/halospv3/hce.shared/commit/3969ad5a012f8e8330a14267a44d2c65f25b0690))
500
- - **deps:** bump undici from 5.28.2 to 5.28.3
828
+ * **deps:** bump undici from 5.28.2 to 5.28.3
501
829
  ([7a6f822](https://github.com/halospv3/hce.shared/commit/7a6f8222c5fb83c7764765e956f7587971341da6))
502
- - **deps:** update commitlint monorepo to v19
830
+ * **deps:** update commitlint monorepo to v19
503
831
  ([9237ddb](https://github.com/halospv3/hce.shared/commit/9237ddbecd0b7d9dfbf50b96b9cc926da71ea165))
504
- - **deps:** update dependency semantic-release to v23
832
+ * **deps:** update dependency semantic-release to v23
505
833
  ([7e1a020](https://github.com/halospv3/hce.shared/commit/7e1a020ebf5bc87861c705789055540485713b4c))
506
- - **deps:** update semantic-release monorepo
834
+ * **deps:** update semantic-release monorepo
507
835
  ([ecd2ad3](https://github.com/halospv3/hce.shared/commit/ecd2ad33907e663cdf351481725a5f8a8ee439fb))
508
836
 
509
837
  ### Reverts
510
838
 
511
- - use './' instead of 'file:'
839
+ * use './' instead of 'file:'
512
840
  ([21fc83f](https://github.com/halospv3/hce.shared/commit/21fc83fef5d4bd1815ff4c2a4324559e40ae5519))
513
841
 
514
842
  ### Build System
515
843
 
516
- - **node:** :arrow_up: raise minimum NodeJS version to 20.8.1
844
+ * **node:** :arrow_up: raise minimum NodeJS version to 20.8.1
517
845
  ([cb92a3d](https://github.com/halospv3/hce.shared/commit/cb92a3d8917189464f36887b1e43bb099ecc175f))
518
846
 
519
847
  ## [1.2.7](https://github.com/halospv3/hce.shared/compare/v1.2.6...v1.2.7) (2024-01-06)
520
848
 
521
849
  ### Bug Fixes
522
850
 
523
- - **deps:** bump @commitlint/cli from 18.4.3 to 18.4.4
851
+ * **deps:** bump @commitlint/cli from 18.4.3 to 18.4.4
524
852
  ([c732a4b](https://github.com/halospv3/hce.shared/commit/c732a4b9a7154954000b97ba0a2f79765dc6c1a8))
525
- - **deps:** bump @commitlint/config-conventional from 18.4.3 to 18.4.4
853
+ * **deps:** bump @commitlint/config-conventional from 18.4.3 to 18.4.4
526
854
  ([cd95f08](https://github.com/halospv3/hce.shared/commit/cd95f082805d3766384a13f5353cc61d7882a0d5))
527
855
 
528
856
  ## [1.2.6](https://github.com/halospv3/hce.shared/compare/v1.2.5...v1.2.6) (2024-01-05)
529
857
 
530
858
  ### Bug Fixes
531
859
 
532
- - **deps:** update deps to latest stable versions
860
+ * **deps:** update deps to latest stable versions
533
861
  ([dce4301](https://github.com/halospv3/hce.shared/commit/dce4301d4b0af26ba1b41aa7928ff79e7923bcb9))
534
862
 
535
863
  ## [1.2.5](https://github.com/halospv3/hce.shared/compare/v1.2.4...v1.2.5) (2023-12-24)
@@ -538,14 +866,14 @@ for commit guidelines.
538
866
 
539
867
  ### Bug Fixes
540
868
 
541
- - **deps:** update commitlint monorepo to v18
869
+ * **deps:** update commitlint monorepo to v18
542
870
  ([bc04ff0](https://github.com/halospv3/hce.shared/commit/bc04ff041084d91ab0c33edc73caf32ab9af765c))
543
871
 
544
872
  ## [1.2.3](https://github.com/halospv3/hce.shared/compare/v1.2.2...v1.2.3) (2023-11-09)
545
873
 
546
874
  ### Bug Fixes
547
875
 
548
- - **dotnet:** change "MainLine" to "Mainline"
876
+ * **dotnet:** change "MainLine" to "Mainline"
549
877
  ([430d588](https://github.com/halospv3/hce.shared/commit/430d5886d4e142d7a2d5c776457d5044346ce598))
550
878
 
551
879
  ## [1.2.2](https://github.com/halospv3/hce.shared/compare/v1.2.1...v1.2.2) (2023-11-09)
@@ -556,94 +884,94 @@ for commit guidelines.
556
884
 
557
885
  ### Features
558
886
 
559
- - **node:** include semantic-release-export-data by default
887
+ * **node:** include semantic-release-export-data by default
560
888
  ([d7bd6bf](https://github.com/halospv3/hce.shared/commit/d7bd6bf298fa26405366af2eba809c0c426de76d))
561
- - **node:** publish _all_ files in ./publish/ directories
889
+ * **node:** publish _all_ files in ./publish/ directories
562
890
  ([82051be](https://github.com/halospv3/hce.shared/commit/82051bec96f1f37f12eb995fc4bd14afea9f5b31))
563
891
 
564
892
  ## [1.1.2](https://github.com/halospv3/hce.shared/compare/v1.1.1...v1.1.2) (2023-10-22)
565
893
 
566
894
  ### Bug Fixes
567
895
 
568
- - **node:** prefix 'cjs' dir to exports' module entry points
896
+ * **node:** prefix 'cjs' dir to exports' module entry points
569
897
  ([bf71890](https://github.com/halospv3/hce.shared/commit/bf7189037a5006ed589f55cd3c53d9c6f8f9d536))
570
898
 
571
899
  ## [1.1.1](https://github.com/halospv3/hce.shared/compare/v1.1.0...v1.1.1) (2023-10-19)
572
900
 
573
901
  ### Bug Fixes
574
902
 
575
- - **node:** rerelease v1.1.0
903
+ * **node:** rerelease v1.1.0
576
904
  ([f01f34a](https://github.com/halospv3/hce.shared/commit/f01f34a2b39ed6d95ba670dccc864dc147d2452e))
577
905
 
578
906
  ## [1.1.0](https://github.com/halospv3/hce.shared/compare/v1.0.5...v1.1.0) (2023-10-19)
579
907
 
580
908
  ### Features
581
909
 
582
- - add ZipPublishDir Target
910
+ * add ZipPublishDir Target
583
911
  ([36755ac](https://github.com/halospv3/hce.shared/commit/36755ac51586a636ee91057adda94dbff1359c73))
584
- - **node:** adopt Packemon for project management
912
+ * **node:** adopt Packemon for project management
585
913
  ([daafc7f](https://github.com/halospv3/hce.shared/commit/daafc7f74939f2793b1e3b8312fe95aa832614d3))
586
- - **node:** load, validate, and export semantic-release shareable configuration
914
+ * **node:** load, validate, and export semantic-release shareable configuration
587
915
  ([74c11af](https://github.com/halospv3/hce.shared/commit/74c11af149f36be5e84a9ee064caaf50522017d1))
588
916
 
589
917
  ### Bug Fixes
590
918
 
591
- - **deps:** update semantic-release monorepo
919
+ * **deps:** update semantic-release monorepo
592
920
  ([b8dd3c2](https://github.com/halospv3/hce.shared/commit/b8dd3c2386d9f9717a7f916dcdbc1a1cc5a5f5c5))
593
- - **deps:** update semantic-release monorepo
921
+ * **deps:** update semantic-release monorepo
594
922
  ([f507178](https://github.com/halospv3/hce.shared/commit/f507178302719193bf323a2f9decb113c078e163))
595
- - **dotnet:** always overwrite ZipPublishDir DestinationFile
923
+ * **dotnet:** always overwrite ZipPublishDir DestinationFile
596
924
  ([38ef324](https://github.com/halospv3/hce.shared/commit/38ef32430858ed1060077e7453f5f2825c7c6ab8))
597
- - **node:** bump minimum Node version to 18.17.1
925
+ * **node:** bump minimum Node version to 18.17.1
598
926
  ([92f5b47](https://github.com/halospv3/hce.shared/commit/92f5b47d40d1f9832b2e9f00b49579976b465166))
599
- - **node:** lift main function body to top-level; assign to const and export it
927
+ * **node:** lift main function body to top-level; assign to const and export it
600
928
  ([c0cc133](https://github.com/halospv3/hce.shared/commit/c0cc133d9d57949339d223f8aa12c123500c4d9c))
601
- - **node:** remove use of semantic-release's private get-config, get-logger
929
+ * **node:** remove use of semantic-release's private get-config, get-logger
602
930
  ([658b37c](https://github.com/halospv3/hce.shared/commit/658b37c6aee922a123b3c2128f5f588372bcbd7b))
603
- - **node:** resolve "parameter 'options' implicitly 'any'" (TS7006)
931
+ * **node:** resolve "parameter 'options' implicitly 'any'" (TS7006)
604
932
  ([5fd278b](https://github.com/halospv3/hce.shared/commit/5fd278bf0983f63bf41db1484fd62df133993870))
605
- - update destination path in ZipPublishDir
933
+ * update destination path in ZipPublishDir
606
934
  ([b7bfc24](https://github.com/halospv3/hce.shared/commit/b7bfc24f4917628ef9837f94d6e3f87be4b54b1b))
607
935
 
608
936
  ### Reverts
609
937
 
610
- - **node:** rename index.mts to index.ts
938
+ * **node:** rename index.mts to index.ts
611
939
  ([f0cd2ee](https://github.com/halospv3/hce.shared/commit/f0cd2ee2bc1e1a4af7dde349d6df65c85944b035))
612
940
 
613
941
  ## [1.0.5](https://github.com/halospv3/hce.shared/compare/v1.0.4...v1.0.5) (2023-07-17)
614
942
 
615
943
  ### Bug Fixes
616
944
 
617
- - **deps:** update dependency conventional-changelog-conventionalcommits to v6
945
+ * **deps:** update dependency conventional-changelog-conventionalcommits to v6
618
946
  ([8f283e6](https://github.com/halospv3/hce.shared/commit/8f283e63fdc03d2fe04e04c25e4283dfa757d4ff))
619
- - **deps:** update semantic-release monorepo
947
+ * **deps:** update semantic-release monorepo
620
948
  ([8d14404](https://github.com/halospv3/hce.shared/commit/8d1440455fe38d74f6e2a585a22dea9707659a69))
621
- - remove leftover mrm reference
949
+ * remove leftover mrm reference
622
950
  ([a60a1d2](https://github.com/halospv3/hce.shared/commit/a60a1d26f68149b364fb3c155fd605b48ea1cfc8))
623
951
 
624
952
  ## [1.0.4](https://github.com/halospv3/hce.shared/compare/v1.0.3...v1.0.4) (2023-05-26)
625
953
 
626
954
  ### Bug Fixes
627
955
 
628
- - **deps:** change all devDependencies to dependencies
956
+ * **deps:** change all devDependencies to dependencies
629
957
  ([79a4a30](https://github.com/halospv3/hce.shared/commit/79a4a3049d8c6f5f9c91a945bb06e0b2daea3cc7))
630
958
 
631
959
  ### 1.0.3 (2023-05-26)
632
960
 
633
961
  ### Bug Fixes
634
962
 
635
- - **dev-deps:** import deps into index.js stub
963
+ * **dev-deps:** import deps into index.js stub
636
964
  ([7fdb046](https://github.com/halospv3/hce.shared/commit/7fdb04646162dc205024c2b04af945e34d57b52c))
637
- - **dev-deps:** remove commitizen, cz-conventional-changelog
965
+ * **dev-deps:** remove commitizen, cz-conventional-changelog
638
966
  ([b91155a](https://github.com/halospv3/hce.shared/commit/b91155a7d4ba81af1432c520f55e3cb09c13089c))
639
- - remove commitizen script
967
+ * remove commitizen script
640
968
  ([46fdf69](https://github.com/halospv3/hce.shared/commit/46fdf6929bffbf63a81a2c2bfc06fb0d92e905e3))
641
969
 
642
970
  ## 1.0.2 (2021-12-29)
643
971
 
644
972
  ### Bug Fixes
645
973
 
646
- - **dev-deps:** import deps into index.js stub
974
+ * **dev-deps:** import deps into index.js stub
647
975
  ([7fdb046](https://github.com/halospv3/hce.shared/commit/7fdb04646162dc205024c2b04af945e34d57b52c))
648
- - **dev-deps:** remove commitizen, cz-conventional-changelog
976
+ * **dev-deps:** remove commitizen, cz-conventional-changelog
649
977
  ([b91155a](https://github.com/halospv3/hce.shared/commit/b91155a7d4ba81af1432c520f55e3cb09c13089c))