@halospv3/hce.shared-config 3.6.0-develop.1 → 3.6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## [3.6.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.6.0...v3.6.1) (2026-06-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **dotnet.CWT:** fix MSB3024: remove/replace "--" in comment ([e7ba305](https://github.com/HaloSPV3/HCE.Shared/commit/e7ba3054b605f77518262401c663339336f88a62))
6
+
7
+ ## [3.6.0](https://github.com/HaloSPV3/HCE.Shared/compare/v3.5.2...v3.6.0) (2026-06-26)
8
+
9
+ ### Features
10
+
11
+ * **dotnet.CWT:** add target `CleanupWpfTmp` by Brant Burnett ([75e6b5b](https://github.com/HaloSPV3/HCE.Shared/commit/75e6b5b09da20694248ce232396233edafe50f33))
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update commitlint monorepo to v21 ([a8739ee](https://github.com/HaloSPV3/HCE.Shared/commit/a8739ee6fda0d062550d6bd650decccc3a4dd755))
16
+ * **deps:** update dependency @eslint/json to v2 ([6b6148a](https://github.com/HaloSPV3/HCE.Shared/commit/6b6148adf8163985a3244f4099feebc21e5418af))
17
+ * **deps:** update node.js to v24.18.0 ([bd9ea1f](https://github.com/HaloSPV3/HCE.Shared/commit/bd9ea1fd08e991be4eb0ce7381def6ea20965ad5))
18
+ * **dotnet.NRI:** add back-off and retry limit to `PackDummyPackage` ([b1eed50](https://github.com/HaloSPV3/HCE.Shared/commit/b1eed508f44d50d57dd3cae8052c66662f20e545))
19
+ * **dotnet.SemanticRelease:** resolve `unicorn/prefer-aggregate-error` ([d5b0676](https://github.com/HaloSPV3/HCE.Shared/commit/d5b0676ab5c85692a4044437e30024c6c5e7238e))
20
+ * ensure `ExecException`s have their `cmd` string ([c85ded5](https://github.com/HaloSPV3/HCE.Shared/commit/c85ded5356b54806e6a4e1a72ea6c14f8a6aa3f1))
21
+ * prefer Yarn unplug this package for access to MSBuild props/targets files ([3191fb9](https://github.com/HaloSPV3/HCE.Shared/commit/3191fb9ead6ba5209dee145c4c576150aa2f8091))
22
+
1
23
  ## [3.6.0-develop.1](https://github.com/HaloSPV3/HCE.Shared/compare/v3.5.3-develop.2...v3.6.0-develop.1) (2026-06-26)
2
24
 
3
25
  ### Features
@@ -11,7 +11,7 @@
11
11
  The SDK iterates through TargetFrameworks for each TFM. We iterate each TFM's RIDs.
12
12
  Intended for ensuring RID-dependent build permutations are successful before attempting PublishAll. -->
13
13
  <Import Project="$(MSBuildThisFileDirectory)BuildEachRID.targets" />
14
- <!-- Created by Brant Burnett -- https://github.com/dotnet/wpf/issues/2930#issuecomment-2562793707
14
+ <!-- Created by Brant Burnett - https://github.com/dotnet/wpf/issues/2930#issuecomment-2562793707
15
15
  WPF projects tend to leave dangling "_wpftmp" directories in the "artifacts/bin" directory, clean these up after build -->
16
16
  <Import Project="$(MSBuildThisFileDirectory)CleanupWpfTmp.targets" />
17
17
  </Project>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halospv3/hce.shared-config",
3
- "version": "3.6.0-develop.1",
3
+ "version": "3.6.1",
4
4
  "description": "Automate commit message quality, changelogs, and CI/CD releases. Its `main` entry point is a Semantic Release config. Functions and classes are exposed for customization. An ESLint config, a Commitlint config, and addl. resources for .NET projects are also provided.",
5
5
  "keywords": [
6
6
  "semantic-release",
@@ -132,7 +132,7 @@
132
132
  },
133
133
  "//engines.node": "See file://./.nvmrc, https://github.com/nvm-sh/nvm#nvmrc. Supporting the lowest version possible is a PITA. Just support LTS. ",
134
134
  "engines": {
135
- "node": ">=24.10.0",
135
+ "node": ">=24.10.0 || <26.0.0",
136
136
  "npm": ">=11.7.0"
137
137
  },
138
138
  "engineStrict": true,