datatruck 0.11.4 → 0.11.7

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.11.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`303dbf6`](https://github.com/swordev/datatruck/commit/303dbf63127c2bafd8a24c5733fa8b33d311f3ff)]:
8
+ - @datatruck/cli@0.11.7
9
+
10
+ ## 0.11.6
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`3a3c54d`](https://github.com/swordev/datatruck/commit/3a3c54db7075882604a3fc0fd8827271ab04ba29)]:
15
+ - @datatruck/cli@0.11.6
16
+
17
+ ## 0.11.5
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`cee6fee`](https://github.com/swordev/datatruck/commit/cee6fee924a8ae637a8f3bfece03890d6ad34ddf)]:
22
+ - @datatruck/cli@0.11.5
23
+
3
24
  ## 0.11.4
4
25
 
5
26
  ### Patch Changes
@@ -565,8 +565,24 @@
565
565
  "username": {
566
566
  "type": "string"
567
567
  },
568
- "passwordFile": {
569
- "type": "string"
568
+ "password": {
569
+ "anyOf": [
570
+ {
571
+ "type": "string"
572
+ },
573
+ {
574
+ "type": "object",
575
+ "additionalProperties": false,
576
+ "required": [
577
+ "path"
578
+ ],
579
+ "properties": {
580
+ "path": {
581
+ "type": "string"
582
+ }
583
+ }
584
+ }
585
+ ]
570
586
  },
571
587
  "port": {
572
588
  "type": "integer"
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "datatruck",
3
- "version": "0.11.4",
3
+ "version": "0.11.7",
4
4
  "dependencies": {
5
- "@datatruck/cli": "0.11.4"
5
+ "@datatruck/cli": "0.11.7"
6
6
  },
7
7
  "engine": {
8
8
  "node": ">=16.0.0"