@eik/sink-gcs 1.2.30 → 1.2.31

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,10 @@
1
+ ## [1.2.31](https://github.com/eik-lib/sink-gcs/compare/v1.2.30...v1.2.31) (2024-07-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * increase the default timeout to 60000 ([#263](https://github.com/eik-lib/sink-gcs/issues/263)) ([9fe63d7](https://github.com/eik-lib/sink-gcs/commit/9fe63d76a9efdd5ce762fa9417a7d4a634a2dcbd))
7
+
1
8
  ## [1.2.30](https://github.com/eik-lib/sink-gcs/compare/v1.2.29...v1.2.30) (2023-07-17)
2
9
 
3
10
 
package/README.md CHANGED
@@ -73,7 +73,7 @@ This constructor takes the following arguments:
73
73
 
74
74
  * `storageOptions` - Object - A Google Cloud Storage [storage options object][gcs-storage-options] - Required.
75
75
  * `options` - Object - Other options related to storage and behavior - Optional.
76
- * `writeTimeout` - Number - Timeout, in milliseconds, for write operations to the sink - Default: `30000` - Optional.
76
+ * `writeTimeout` - Number - Timeout, in milliseconds, for write operations to the sink - Default: `60000` - Optional.
77
77
  * `writeGzip` - Boolean - If files should be written with gzip compression - Default: `false` - Optional.
78
78
  * `rootPath` - String - Root directory for where to store files in the GCS bucket - Default: `eik` - Optional.
79
79
  * `bucket` - String - Name of the bucket to store files in - Default: `eik_files` - Optional.
package/lib/main.js CHANGED
@@ -16,7 +16,7 @@ const DEFAULT_BUCKET = 'eik_files';
16
16
 
17
17
  const SinkGCS = class SinkGCS extends Sink {
18
18
  constructor(storageOptions, {
19
- writeTimeout = 30000,
19
+ writeTimeout = 60000,
20
20
  writeGzip = false,
21
21
  rootPath = DEFAULT_ROOT_PATH,
22
22
  bucket = DEFAULT_BUCKET,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/sink-gcs",
3
- "version": "1.2.30",
3
+ "version": "1.2.31",
4
4
  "description": "Sink for Google Cloud Storage",
5
5
  "main": "lib/main.js",
6
6
  "type": "module",
@@ -11,7 +11,7 @@
11
11
  "lib"
12
12
  ],
13
13
  "scripts": {
14
- "test": "tap --no-check-coverage",
14
+ "test": "tap --disable-coverage --allow-empty-coverage",
15
15
  "test:snapshots:update": "tap test/**/*.js --snapshot",
16
16
  "lint:fix": "eslint --fix .",
17
17
  "lint": "eslint ."
@@ -33,17 +33,17 @@
33
33
  "@metrics/client": "^2.5.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@babel/eslint-parser": "7.22.5",
36
+ "@babel/eslint-parser": "7.24.7",
37
37
  "@semantic-release/changelog": "6.0.3",
38
38
  "@semantic-release/git": "10.0.1",
39
- "eslint": "8.42.0",
39
+ "eslint": "8.57.0",
40
40
  "eslint-config-airbnb-base": "15.0.0",
41
- "eslint-config-prettier": "8.8.0",
42
- "eslint-plugin-import": "2.27.5",
43
- "eslint-plugin-prettier": "4.2.1",
44
- "prettier": "2.8.8",
45
- "semantic-release": "19.0.5",
46
- "tap": "16.3.4",
41
+ "eslint-config-prettier": "9.1.0",
42
+ "eslint-plugin-import": "2.29.1",
43
+ "eslint-plugin-prettier": "5.1.3",
44
+ "prettier": "3.3.2",
45
+ "semantic-release": "23.1.1",
46
+ "tap": "18.8.0",
47
47
  "unique-slug": "2.0.2"
48
48
  }
49
49
  }