@fluidframework/azure-service-utils 2.80.0 → 2.81.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
  # @fluidframework/azure-service-utils
2
2
 
3
+ ## 2.81.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.80.0
4
8
 
5
9
  Dependency updates only.
package/eslint.config.mts CHANGED
@@ -1,8 +1,8 @@
1
- /* eslint-disable */
2
- /**
3
- * GENERATED FILE - DO NOT EDIT DIRECTLY.
4
- * To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
5
4
  */
5
+
6
6
  import type { Linter } from "eslint";
7
7
  import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-service-utils",
3
- "version": "2.80.0",
3
+ "version": "2.81.0",
4
4
  "description": "Helper service-side utilities for connecting to Azure Fluid Relay service",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,18 +47,18 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/driver-definitions": "~2.80.0",
50
+ "@fluidframework/driver-definitions": "~2.81.0",
51
51
  "jsrsasign": "^11.0.0",
52
52
  "uuid": "^11.1.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@arethetypeswrong/cli": "^0.18.2",
56
56
  "@biomejs/biome": "~1.9.3",
57
- "@fluid-tools/build-cli": "^0.62.0",
58
- "@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.74.0",
57
+ "@fluid-tools/build-cli": "^0.63.0",
58
+ "@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.80.0",
59
59
  "@fluidframework/build-common": "^2.0.3",
60
- "@fluidframework/build-tools": "^0.62.0",
61
- "@fluidframework/eslint-config-fluid": "~2.80.0",
60
+ "@fluidframework/build-tools": "^0.63.0",
61
+ "@fluidframework/eslint-config-fluid": "~2.81.0",
62
62
  "@microsoft/api-extractor": "7.52.11",
63
63
  "@types/jsrsasign": "^10.5.12",
64
64
  "concurrently": "^9.2.1",
package/.eslintrc.cjs DELETED
@@ -1,35 +0,0 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
-
6
- module.exports = {
7
- extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
8
- parserOptions: {
9
- project: ["./tsconfig.json", "./src/test/tsconfig.json"],
10
- },
11
- rules: {
12
- "import-x/no-unassigned-import": "off",
13
- "@typescript-eslint/strict-boolean-expressions": "off",
14
-
15
- // Useful for developer accessibility
16
- "unicorn/prevent-abbreviations": [
17
- "error",
18
- {
19
- allowList: {
20
- // Industry-standard index variable name.
21
- i: true,
22
- },
23
- },
24
- ],
25
- },
26
- overrides: [
27
- {
28
- // Overrides for type-tests
29
- files: ["src/test/types/*"],
30
- rules: {
31
- "unicorn/prevent-abbreviations": "off",
32
- },
33
- },
34
- ],
35
- };