@fluidframework/azure-local-service 2.30.0 → 2.31.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +75 -71
  2. package/package.json +1 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/azure-local-service
2
2
 
3
+ ## 2.31.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.30.0
4
8
 
5
9
  Dependency updates only.
@@ -60,34 +64,34 @@ Dependency updates only.
60
64
 
61
65
  ### Minor Changes
62
66
 
63
- - Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
64
-
65
- The following Fluid server dependencies have been updated to the latest version, 5.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/RELEASE_NOTES/5.0.0.md)
66
-
67
- - @fluidframework/gitresources
68
- - @fluidframework/server-kafka-orderer
69
- - @fluidframework/server-lambdas
70
- - @fluidframework/server-lambdas-driver
71
- - @fluidframework/server-local-server
72
- - @fluidframework/server-memory-orderer
73
- - @fluidframework/protocol-base
74
- - @fluidframework/server-routerlicious
75
- - @fluidframework/server-routerlicious-base
76
- - @fluidframework/server-services
77
- - @fluidframework/server-services-client
78
- - @fluidframework/server-services-core
79
- - @fluidframework/server-services-ordering-kafkanode
80
- - @fluidframework/server-services-ordering-rdkafka
81
- - @fluidframework/server-services-ordering-zookeeper
82
- - @fluidframework/server-services-shared
83
- - @fluidframework/server-services-telemetry
84
- - @fluidframework/server-services-utils
85
- - @fluidframework/server-test-utils
86
- - tinylicious
87
-
88
- - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
89
-
90
- Update package implementations to use TypeScript 5.4.5.
67
+ - Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
68
+
69
+ The following Fluid server dependencies have been updated to the latest version, 5.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/RELEASE_NOTES/5.0.0.md)
70
+
71
+ - @fluidframework/gitresources
72
+ - @fluidframework/server-kafka-orderer
73
+ - @fluidframework/server-lambdas
74
+ - @fluidframework/server-lambdas-driver
75
+ - @fluidframework/server-local-server
76
+ - @fluidframework/server-memory-orderer
77
+ - @fluidframework/protocol-base
78
+ - @fluidframework/server-routerlicious
79
+ - @fluidframework/server-routerlicious-base
80
+ - @fluidframework/server-services
81
+ - @fluidframework/server-services-client
82
+ - @fluidframework/server-services-core
83
+ - @fluidframework/server-services-ordering-kafkanode
84
+ - @fluidframework/server-services-ordering-rdkafka
85
+ - @fluidframework/server-services-ordering-zookeeper
86
+ - @fluidframework/server-services-shared
87
+ - @fluidframework/server-services-telemetry
88
+ - @fluidframework/server-services-utils
89
+ - @fluidframework/server-test-utils
90
+ - tinylicious
91
+
92
+ - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
93
+
94
+ Update package implementations to use TypeScript 5.4.5.
91
95
 
92
96
  ## 2.0.0-rc.4.0.0
93
97
 
@@ -97,24 +101,24 @@ Dependency updates only.
97
101
 
98
102
  ### Major Changes
99
103
 
100
- - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
104
+ - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
101
105
 
102
- Fluid Framework packages have been updated to use the [package.json "exports"
103
- field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
104
- TypeScript types and implementation code.
106
+ Fluid Framework packages have been updated to use the [package.json "exports"
107
+ field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
108
+ TypeScript types and implementation code.
105
109
 
106
- This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
110
+ This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
107
111
 
108
- - `"moduleResolution": "Node16"` with `"module": "Node16"`
109
- - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
112
+ - `"moduleResolution": "Node16"` with `"module": "Node16"`
113
+ - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
110
114
 
111
- We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
112
- for use with modern versions of Node.js _and_ Bundlers.
113
- [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
114
- regarding the module and moduleResolution options.
115
+ We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
116
+ for use with modern versions of Node.js _and_ Bundlers.
117
+ [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
118
+ regarding the module and moduleResolution options.
115
119
 
116
- **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
117
- to distinguish stable APIs from those that are in development.**
120
+ **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
121
+ to distinguish stable APIs from those that are in development.**
118
122
 
119
123
  ## 2.0.0-rc.2.0.0
120
124
 
@@ -148,34 +152,34 @@ Dependency updates only.
148
152
 
149
153
  ### Major Changes
150
154
 
151
- - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
152
-
153
- Dependencies on the following Fluid server package have been updated to version 2.0.1:
154
-
155
- - @fluidframework/gitresources: 2.0.1
156
- - @fluidframework/server-kafka-orderer: 2.0.1
157
- - @fluidframework/server-lambdas: 2.0.1
158
- - @fluidframework/server-lambdas-driver: 2.0.1
159
- - @fluidframework/server-local-server: 2.0.1
160
- - @fluidframework/server-memory-orderer: 2.0.1
161
- - @fluidframework/protocol-base: 2.0.1
162
- - @fluidframework/server-routerlicious: 2.0.1
163
- - @fluidframework/server-routerlicious-base: 2.0.1
164
- - @fluidframework/server-services: 2.0.1
165
- - @fluidframework/server-services-client: 2.0.1
166
- - @fluidframework/server-services-core: 2.0.1
167
- - @fluidframework/server-services-ordering-kafkanode: 2.0.1
168
- - @fluidframework/server-services-ordering-rdkafka: 2.0.1
169
- - @fluidframework/server-services-ordering-zookeeper: 2.0.1
170
- - @fluidframework/server-services-shared: 2.0.1
171
- - @fluidframework/server-services-telemetry: 2.0.1
172
- - @fluidframework/server-services-utils: 2.0.1
173
- - @fluidframework/server-test-utils: 2.0.1
174
- - tinylicious: 2.0.1
175
-
176
- - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
177
-
178
- The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
155
+ - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
156
+
157
+ Dependencies on the following Fluid server package have been updated to version 2.0.1:
158
+
159
+ - @fluidframework/gitresources: 2.0.1
160
+ - @fluidframework/server-kafka-orderer: 2.0.1
161
+ - @fluidframework/server-lambdas: 2.0.1
162
+ - @fluidframework/server-lambdas-driver: 2.0.1
163
+ - @fluidframework/server-local-server: 2.0.1
164
+ - @fluidframework/server-memory-orderer: 2.0.1
165
+ - @fluidframework/protocol-base: 2.0.1
166
+ - @fluidframework/server-routerlicious: 2.0.1
167
+ - @fluidframework/server-routerlicious-base: 2.0.1
168
+ - @fluidframework/server-services: 2.0.1
169
+ - @fluidframework/server-services-client: 2.0.1
170
+ - @fluidframework/server-services-core: 2.0.1
171
+ - @fluidframework/server-services-ordering-kafkanode: 2.0.1
172
+ - @fluidframework/server-services-ordering-rdkafka: 2.0.1
173
+ - @fluidframework/server-services-ordering-zookeeper: 2.0.1
174
+ - @fluidframework/server-services-shared: 2.0.1
175
+ - @fluidframework/server-services-telemetry: 2.0.1
176
+ - @fluidframework/server-services-utils: 2.0.1
177
+ - @fluidframework/server-test-utils: 2.0.1
178
+ - tinylicious: 2.0.1
179
+
180
+ - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
181
+
182
+ The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
179
183
 
180
184
  ## 2.0.0-internal.6.4.0
181
185
 
@@ -197,9 +201,9 @@ Dependency updates only.
197
201
 
198
202
  ### Major Changes
199
203
 
200
- - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
204
+ - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
201
205
 
202
- Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
206
+ Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
203
207
 
204
208
  ## 2.0.0-internal.5.4.0
205
209
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-local-service",
3
- "version": "2.30.0",
3
+ "version": "2.31.0",
4
4
  "description": "Local implementation of the Azure Fluid Relay service for testing/development use",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -23,7 +23,6 @@
23
23
  "eslint": "~8.55.0",
24
24
  "eslint-config-prettier": "~9.0.0",
25
25
  "pm2": "^5.4.2",
26
- "prettier": "~3.0.3",
27
26
  "rimraf": "^4.4.0",
28
27
  "ts-node": "^10.9.1",
29
28
  "typescript": "~5.4.5"
@@ -39,13 +38,11 @@
39
38
  "build:esnext": "tsc --project ./tsconfig.json",
40
39
  "check:biome": "biome check .",
41
40
  "check:format": "npm run check:biome",
42
- "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
43
41
  "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
44
42
  "eslint": "eslint --format stylish src",
45
43
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
46
44
  "format": "npm run format:biome",
47
45
  "format:biome": "biome check . --write",
48
- "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
49
46
  "lint": "fluid-build . --task lint",
50
47
  "lint:fix": "fluid-build . --task eslint:fix --task format",
51
48
  "start": "pm2 start -n azure-local-service lib/index.js",