@eui/tools 5.3.90 → 5.3.91
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/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +2 -2
- package/scripts/utils/git-utils.js +2 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.91
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.91 (2022-11-08)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* git pull rebase - metadata issues - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([f674c504](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f674c504aee8e17b00f01d7e2da46bb88fb975fa))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.90 (2022-11-03)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -110,8 +110,8 @@ const commitAndPush = (branch, message, folder) => {
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
try {
|
|
113
|
-
tools.logInfo('Commit and push - second try - retrying pull & push');
|
|
114
|
-
execa.sync('git', ['pull', 'origin', branch], { cwd: folder });
|
|
113
|
+
tools.logInfo('Commit and push - second try - retrying pull rebase & push');
|
|
114
|
+
execa.sync('git', ['pull', 'origin', branch, 'rebase'], { cwd: folder });
|
|
115
115
|
execa.sync('git', ['push', 'origin', branch], { cwd: folder });
|
|
116
116
|
|
|
117
117
|
} catch (e3) {
|