@halospv3/hce.shared-config 3.0.0-develop.2 → 3.0.0-develop.4

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,15 @@
1
+ ## [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)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **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))
6
+
7
+ ## [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)
8
+
9
+ ### Bug Fixes
10
+
11
+ * 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))
12
+
1
13
  ## [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)
2
14
 
3
15
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halospv3/hce.shared-config",
3
- "version": "3.0.0-develop.2",
3
+ "version": "3.0.0-develop.4",
4
4
  "description": "Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.",
5
5
  "keywords": [
6
6
  "halo",
@@ -4,9 +4,9 @@ import type { SemanticReleaseConfigDotnet } from '../semanticReleaseConfigDotnet
4
4
  import type { NugetProjectProperties } from './NugetProjectProperties.js';
5
5
  /* eslint-enable @typescript-eslint/no-unused-vars */
6
6
 
7
+ import { config as configDotenv } from '@dotenvx/dotenvx';
7
8
  import { type } from 'arktype';
8
9
  import { detectFile, detectFileSync } from 'chardet';
9
- import { config as configDotenv } from '@dotenvx/dotenvx';
10
10
  import { ok } from 'node:assert/strict';
11
11
  import type { ExecException } from 'node:child_process';
12
12
  import { existsSync, writeFileSync } from 'node:fs';
@@ -67,7 +67,7 @@ const _baseConfig = {
67
67
  ['@semantic-release/changelog', {}],
68
68
  ['@semantic-release/git', DefaultOptions],
69
69
  ['@semantic-release/exec', {}],
70
- ['@semantic-release/github', { addReleases: 'bottom', assets: [{ path: './publish/*' }] }],
70
+ ['@semantic-release/github', { addReleases: 'bottom', assets: ['./publish/*', '!./publish/.gitkeep'] }],
71
71
  ] as [
72
72
  PluginSpecSRCommitAnalyzer,
73
73
  PluginSpecExportData,