@storm-software/workspace-tools 1.49.1 → 1.49.3
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 +24 -0
- package/config/nx.json +2 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.49.3 (2024-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Removed `tag` from the Nx config file ([9930450f](https://github.com/storm-software/storm-ops/commit/9930450f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.49.2 (2024-01-21)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Temporary removal of the custom changelog renderer ([882d49c1](https://github.com/storm-software/storm-ops/commit/882d49c1))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.49.1 (2024-01-21)
|
|
2
26
|
|
|
3
27
|
|
package/config/nx.json
CHANGED
|
@@ -123,8 +123,7 @@
|
|
|
123
123
|
"workspaceChangelog": false,
|
|
124
124
|
"projectChangelogs": {
|
|
125
125
|
"createRelease": "github",
|
|
126
|
-
"entryWhenNoChanges": false
|
|
127
|
-
"renderer": "@storm-software/git-tools/changelog-renderer/index.cjs"
|
|
126
|
+
"entryWhenNoChanges": false
|
|
128
127
|
}
|
|
129
128
|
},
|
|
130
129
|
"version": {
|
|
@@ -135,8 +134,7 @@
|
|
|
135
134
|
}
|
|
136
135
|
},
|
|
137
136
|
"git": {
|
|
138
|
-
"commit": true
|
|
139
|
-
"tag": true
|
|
137
|
+
"commit": true
|
|
140
138
|
}
|
|
141
139
|
},
|
|
142
140
|
"pluginsConfig": {
|
package/package.json
CHANGED