ru.coon 3.0.42 → 3.0.43

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,9 @@
1
+ # Version 3.0.43, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/ed0d119336e1e590451052944f718cc75fecacee)
2
+ * ## Fixes
3
+ * <span style='color:red'> util.promisifyCmd - move getCommand in Promise</span> ([15cd69], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/15cd69c943724bc75905aa9df16ab02b1d4a564d))
4
+
5
+ * update: CHANGELOG.md ([22c545], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/22c5454a7bf27678f57cd0a5e2d49170b4d63a6d))
6
+
1
7
  # Version 3.0.42, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/7859eef6bddbdc1445b1027d10a93f8e71dfe828)
2
8
  * ## Fixes
3
9
  * <span style='color:red'>fix MethodChainPlugin set sortableColumns false</span> ([5cb285], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/5cb2859e29cc2b98172ea823d7198a92580af6d7))
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "ru.coon"
5
5
  },
6
6
  "description": "",
7
- "version": "3.0.42",
7
+ "version": "3.0.43",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+http://gitlab-dbr.sigma-it.local/dbr/ru.coon"
package/src/util.js CHANGED
@@ -46,8 +46,8 @@ Ext.define('Coon.util', {
46
46
  }
47
47
  throw new Error(`promisifyCmd error: this command is neither an alias nor a class`);
48
48
  };
49
- const command = getCommand(cls);
50
49
  return new Promise((resolve, reject) => {
50
+ const command = getCommand(cls);
51
51
  command.on('complete', resolve);
52
52
  command.on('failure', reject);
53
53
  if (cls.getParamsFromObject) {
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  Ext.define('Coon.version', {
2
2
  singleton: true,
3
- number: '3.0.42',
3
+ number: '3.0.43',
4
4
  });