@knime/hub-features 1.6.6 → 1.6.8

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,10 +1,24 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.6.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a5c359f]
8
+ - @knime/components@1.25.1
9
+
10
+ ## 1.6.7
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [2d42337]
15
+ - @knime/components@1.25.0
16
+
3
17
  ## 1.6.6
4
18
 
5
19
  ### Patch Changes
6
20
 
7
- - Updated dependencies [4bda98c]
21
+ - Updated dependencies [6e1501f]
8
22
  - @knime/styles@1.4.0
9
23
  - @knime/components@1.24.2
10
24
  - @knime/utils@1.3.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
4
4
  "description": "Vue components & composables for shared hub features",
5
5
  "homepage": "https://knime.github.io/webapps-common/",
6
6
  "license": "GPL 3 and Additional Permissions according to Sec. 7 (SEE the file LICENSE)",
@@ -31,7 +31,7 @@
31
31
  "lodash-es": "4.17.21",
32
32
  "ofetch": "^1.4.1",
33
33
  "typescript": "^5.4.5",
34
- "@knime/components": "1.24.2",
34
+ "@knime/components": "1.25.1",
35
35
  "@knime/styles": "1.4.0",
36
36
  "@knime/utils": "1.3.3"
37
37
  },
@@ -43,7 +43,7 @@
43
43
  "@vitejs/plugin-vue": "^5.1.4",
44
44
  "@vue/test-utils": "2.4.6",
45
45
  "consola": "3.2.3",
46
- "vite": "5.4.15",
46
+ "vite": "5.4.17",
47
47
  "vite-svg-loader": "5.1.0",
48
48
  "vue-tsc": "2.2.0"
49
49
  },
@@ -42,6 +42,7 @@ const labelsEventBus = useEventBus("versionLabels");
42
42
 
43
43
  const closeLabelPopovers = throttle(() => {
44
44
  labelsEventBus.emit("versionLabelShowPopover");
45
+ // eslint-disable-next-line no-magic-numbers
45
46
  }, 10000); // Arbitrary delay to reduce overhead, is automatically reset @scrollend
46
47
  </script>
47
48
 
@@ -277,6 +277,7 @@ export const useFileUpload = (options: UseFileUploadOptions = {}) => {
277
277
  const uploadPayload = await promise.retryPromise({
278
278
  fn: () => prepareUpload(parentId, enqueableFiles),
279
279
  excludeError: (error: FetchError) =>
280
+ // eslint-disable-next-line no-magic-numbers
280
281
  Boolean(error.statusCode && error.statusCode < 500),
281
282
  retryDelayMS: DEFAULT_RETRY_DELAY_MS,
282
283
  });