@fluid-tools/fetch-tool 2.91.0 → 2.92.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,9 @@
1
1
  # @fluid-tools/fetch-tool
2
2
 
3
+ ## 2.92.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.91.0
4
8
 
5
9
  Dependency updates only.
package/eslint.config.mts CHANGED
@@ -4,25 +4,45 @@
4
4
  */
5
5
 
6
6
  import type { Linter } from "eslint";
7
- import { minimalDeprecated } from "../../../common/build/eslint-config-fluid/flat.mts";
7
+ import { recommended } from "../../../common/build/eslint-config-fluid/flat.mts";
8
8
 
9
9
  const config: Linter.Config[] = [
10
- ...minimalDeprecated,
10
+ ...recommended,
11
11
  {
12
12
  rules: {
13
- "import-x/no-nodejs-modules": [
13
+ "@typescript-eslint/consistent-type-imports": [
14
14
  "error",
15
15
  {
16
- "allow": ["child_process", "fs", "util"],
16
+ "fixStyle": "inline-type-imports",
17
17
  },
18
18
  ],
19
- "@typescript-eslint/consistent-type-imports": [
19
+ "@typescript-eslint/no-explicit-any": "off",
20
+ "@typescript-eslint/no-import-type-side-effects": "error",
21
+ "@typescript-eslint/no-unsafe-argument": "off",
22
+ "@typescript-eslint/no-unsafe-assignment": "off",
23
+ "@typescript-eslint/no-unsafe-call": "off",
24
+ "@typescript-eslint/no-unsafe-member-access": "off",
25
+ "import-x/no-nodejs-modules": [
20
26
  "error",
21
27
  {
22
- "fixStyle": "inline-type-imports",
28
+ "allow": ["child_process", "fs", "util"],
23
29
  },
24
30
  ],
25
- "@typescript-eslint/no-import-type-side-effects": "error",
31
+ "unicorn/catch-error-name": "off",
32
+ "unicorn/explicit-length-check": "off",
33
+ "unicorn/no-negated-condition": "off",
34
+ "unicorn/no-new-array": "off",
35
+ "unicorn/no-process-exit": "off",
36
+ "unicorn/no-useless-promise-resolve-reject": "off",
37
+ "unicorn/no-useless-switch-case": "off",
38
+ "unicorn/prefer-node-protocol": "off",
39
+ "unicorn/prefer-number-properties": "off",
40
+ "unicorn/prefer-optional-catch-binding": "off",
41
+ "unicorn/prefer-spread": "off",
42
+ "unicorn/prefer-string-slice": "off",
43
+ "unicorn/prefer-top-level-await": "off",
44
+ "unicorn/switch-case-braces": "off",
45
+ "unicorn/text-encoding-identifier-case": "off",
26
46
  },
27
47
  },
28
48
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-tools/fetch-tool",
3
- "version": "2.91.0",
3
+ "version": "2.92.0",
4
4
  "description": "Console tool to fetch Fluid data from relay service",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -15,30 +15,30 @@
15
15
  "fluid-fetch": "bin/fluid-fetch"
16
16
  },
17
17
  "dependencies": {
18
- "@azure/identity": "^4.4.1",
18
+ "@azure/identity": "^4.13.0",
19
19
  "@azure/identity-cache-persistence": "^1.1.0",
20
- "@fluid-internal/client-utils": "~2.91.0",
21
- "@fluidframework/container-runtime": "~2.91.0",
22
- "@fluidframework/core-interfaces": "~2.91.0",
23
- "@fluidframework/core-utils": "~2.91.0",
24
- "@fluidframework/datastore": "~2.91.0",
25
- "@fluidframework/driver-definitions": "~2.91.0",
26
- "@fluidframework/odsp-doclib-utils": "~2.91.0",
27
- "@fluidframework/odsp-driver": "~2.91.0",
28
- "@fluidframework/odsp-driver-definitions": "~2.91.0",
29
- "@fluidframework/odsp-urlresolver": "~2.91.0",
30
- "@fluidframework/routerlicious-driver": "~2.91.0",
31
- "@fluidframework/routerlicious-urlresolver": "~2.91.0",
32
- "@fluidframework/runtime-definitions": "~2.91.0",
33
- "@fluidframework/tool-utils": "~2.91.0"
20
+ "@fluid-internal/client-utils": "~2.92.0",
21
+ "@fluidframework/container-runtime": "~2.92.0",
22
+ "@fluidframework/core-interfaces": "~2.92.0",
23
+ "@fluidframework/core-utils": "~2.92.0",
24
+ "@fluidframework/datastore": "~2.92.0",
25
+ "@fluidframework/driver-definitions": "~2.92.0",
26
+ "@fluidframework/odsp-doclib-utils": "~2.92.0",
27
+ "@fluidframework/odsp-driver": "~2.92.0",
28
+ "@fluidframework/odsp-driver-definitions": "~2.92.0",
29
+ "@fluidframework/odsp-urlresolver": "~2.92.0",
30
+ "@fluidframework/routerlicious-driver": "~2.92.0",
31
+ "@fluidframework/routerlicious-urlresolver": "~2.92.0",
32
+ "@fluidframework/runtime-definitions": "~2.92.0",
33
+ "@fluidframework/tool-utils": "~2.92.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@biomejs/biome": "~2.4.5",
37
- "@fluid-tools/build-cli": "^0.63.0",
38
- "@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.83.0",
37
+ "@fluid-tools/build-cli": "^0.64.0",
38
+ "@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.91.0",
39
39
  "@fluidframework/build-common": "^2.0.3",
40
- "@fluidframework/build-tools": "^0.63.0",
41
- "@fluidframework/eslint-config-fluid": "~2.91.0",
40
+ "@fluidframework/build-tools": "^0.64.0",
41
+ "@fluidframework/eslint-config-fluid": "^9.0.0",
42
42
  "@types/node": "~20.19.30",
43
43
  "copyfiles": "^2.4.1",
44
44
  "eslint": "~9.39.1",