@hortiview/shared-components 1.3.0 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +11 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## <small>1.3.2 (2025-04-08)</small>
2
+
3
+ * Merged PR 4718: refactor: release notes updated ([aa9b0ca](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/aa9b0ca)), closes [#14702](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/issues/14702)
4
+ * refactor: release notes updated ([fe353cb](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/fe353cb))
5
+
6
+ ## <small>1.3.1 (2025-04-08)</small>
7
+
8
+ * Merged PR 4716: refactor: changelog notes updated ([b3cc041](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/b3cc041)), closes [#14702](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/issues/14702)
9
+ * refactor: changelog notes updated ([158106a](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/158106a))
10
+
1
11
  ## 1.3.0 (2025-04-08)
2
12
 
3
13
  * Merge remote-tracking branch 'origin/main' into bugfix/modal-close-button-always-submits ([d9be0fd](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/d9be0fd))
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hortiview/shared-components",
3
3
  "description": "This is a shared component library. It should used in the HortiView platform and its modules.",
4
- "version": "1.3.0",
4
+ "version": "1.3.2",
5
5
  "type": "module",
6
6
  "repository": "https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared",
7
7
  "author": "Falk Menge <falk.menge.ext@bayer.com>",
@@ -33,6 +33,7 @@
33
33
  [
34
34
  "@semantic-release/commit-analyzer",
35
35
  {
36
+ "preset": "conventionalCommits",
36
37
  "releaseRules": [
37
38
  {
38
39
  "type": "docs",
@@ -53,7 +54,7 @@
53
54
  [
54
55
  "@semantic-release/release-notes-generator",
55
56
  {
56
- "preset": "conventionalcommits",
57
+ "preset": "conventionalCommits",
57
58
  "presetConfig": {
58
59
  "types": [
59
60
  {
@@ -63,13 +64,11 @@
63
64
  },
64
65
  {
65
66
  "type": "feat",
66
- "section": "Features",
67
- "hidden": false
67
+ "section": "Features"
68
68
  },
69
69
  {
70
70
  "type": "fix",
71
- "section": "Bug Fixes",
72
- "hidden": false
71
+ "section": "Bug Fixes"
73
72
  },
74
73
  {
75
74
  "type": "refactor",
@@ -82,6 +81,12 @@
82
81
  "hidden": false
83
82
  }
84
83
  ]
84
+ },
85
+ "writerOpts": {
86
+ "commitsSort": [
87
+ "subject",
88
+ "scope"
89
+ ]
85
90
  }
86
91
  }
87
92
  ],