datatruck 0.7.0 → 0.10.0

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,5 +1,26 @@
1
1
  # datatruck
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`795936c`](https://github.com/swordev/datatruck/commit/795936c1d2add7819ff5f40679313e1e594aeb7e), [`d0d77b6`](https://github.com/swordev/datatruck/commit/d0d77b6c3d4eb0461c176981b165e20b49826082), [`bc9a0dd`](https://github.com/swordev/datatruck/commit/bc9a0ddf2bfb9353545c28d9cbd12e592328024e)]:
8
+ - @datatruck/cli@0.10.0
9
+
10
+ ## 0.9.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`ef99bdf`](https://github.com/swordev/datatruck/commit/ef99bdf0301b5bbdf965c1fa1d00e78edce1c931), [`05de947`](https://github.com/swordev/datatruck/commit/05de947264727cddb79293eca6cb0b43382eab6b)]:
15
+ - @datatruck/cli@0.9.0
16
+
17
+ ## 0.8.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`8c421ab`](https://github.com/swordev/datatruck/commit/8c421ab0adb6f2d5bc81e91fa387c5daa848f411)]:
22
+ - @datatruck/cli@0.8.0
23
+
3
24
  ## 0.7.0
4
25
 
5
26
  ### Patch Changes
@@ -20,6 +20,9 @@
20
20
  "name": {
21
21
  "type": "string"
22
22
  },
23
+ "mirrorRepoNames": {
24
+ "$ref": "#/definitions/stringlist-util"
25
+ },
23
26
  "enabled": {
24
27
  "anyOf": [
25
28
  {
@@ -713,6 +716,9 @@
713
716
  }
714
717
  }
715
718
  },
719
+ "storedPrograms": {
720
+ "type": "boolean"
721
+ },
716
722
  "includeTables": {
717
723
  "$ref": "#/definitions/stringlist-util"
718
724
  },
package/package.json CHANGED
@@ -1,16 +1,12 @@
1
1
  {
2
2
  "name": "datatruck",
3
- "version": "0.7.0",
3
+ "version": "0.10.0",
4
4
  "dependencies": {
5
- "@datatruck/cli": "0.7.0"
5
+ "@datatruck/cli": "0.10.0"
6
6
  },
7
7
  "engine": {
8
8
  "node": ">=16.0.0"
9
9
  },
10
- "bin": {
11
- "datatruck": "index.js",
12
- "dtt": "index.js"
13
- },
14
10
  "description": "Tool for creating and managing backups",
15
11
  "homepage": "https://github.com/swordev/datatruck#readme",
16
12
  "bugs": {
@@ -25,5 +21,9 @@
25
21
  "name": "Juanra GM",
26
22
  "email": "juanrgm724@gmail.com",
27
23
  "url": "https://github.com/juanrgm"
24
+ },
25
+ "bin": {
26
+ "datatruck": "index.js",
27
+ "dtt": "index.js"
28
28
  }
29
29
  }