@fluidframework/routerlicious-urlresolver 2.30.0 → 2.31.1
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 +91 -87
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +7 -10
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluidframework/routerlicious-urlresolver
|
|
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,9 +64,9 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
67
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
64
68
|
|
|
65
|
-
|
|
69
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
66
70
|
|
|
67
71
|
## 2.0.0-rc.4.0.0
|
|
68
72
|
|
|
@@ -72,66 +76,66 @@ Dependency updates only.
|
|
|
72
76
|
|
|
73
77
|
### Major Changes
|
|
74
78
|
|
|
75
|
-
-
|
|
79
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
76
80
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
81
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
82
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
83
|
+
TypeScript types and implementation code.
|
|
80
84
|
|
|
81
|
-
|
|
85
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
82
86
|
|
|
83
|
-
|
|
84
|
-
|
|
87
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
88
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
85
89
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
91
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
92
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
93
|
+
regarding the module and moduleResolution options.
|
|
90
94
|
|
|
91
|
-
|
|
92
|
-
|
|
95
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
96
|
+
to distinguish stable APIs from those that are in development.**
|
|
93
97
|
|
|
94
98
|
## 2.0.0-rc.2.0.0
|
|
95
99
|
|
|
96
100
|
### Minor Changes
|
|
97
101
|
|
|
98
|
-
-
|
|
102
|
+
- Resolved URLs no longer use non-standard protocols ([#19840](https://github.com/microsoft/FluidFramework/issues/19840)) [9d3d185183](https://github.com/microsoft/FluidFramework/commits/9d3d1851830d953792a6dfad60dde6f1c59480de)
|
|
99
103
|
|
|
100
|
-
|
|
104
|
+
Previously, `IResolvedUrl.url` could use a non-standard protocol like `fluid://`, `fluid-odsp://`, or `fluid-test://`. These have been replaced with `https://` to permit standards-compliant URL parsing.
|
|
101
105
|
|
|
102
106
|
## 2.0.0-rc.1.0.0
|
|
103
107
|
|
|
104
108
|
### Minor Changes
|
|
105
109
|
|
|
106
|
-
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
110
|
+
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
111
|
+
|
|
112
|
+
The following Fluid server dependencies have been updated to the latest version, 3.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/releases/tag/server_v3.0.0)
|
|
113
|
+
|
|
114
|
+
- @fluidframework/gitresources
|
|
115
|
+
- @fluidframework/server-kafka-orderer
|
|
116
|
+
- @fluidframework/server-lambdas
|
|
117
|
+
- @fluidframework/server-lambdas-driver
|
|
118
|
+
- @fluidframework/server-local-server
|
|
119
|
+
- @fluidframework/server-memory-orderer
|
|
120
|
+
- @fluidframework/protocol-base
|
|
121
|
+
- @fluidframework/server-routerlicious
|
|
122
|
+
- @fluidframework/server-routerlicious-base
|
|
123
|
+
- @fluidframework/server-services
|
|
124
|
+
- @fluidframework/server-services-client
|
|
125
|
+
- @fluidframework/server-services-core
|
|
126
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
127
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
128
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
129
|
+
- @fluidframework/server-services-shared
|
|
130
|
+
- @fluidframework/server-services-telemetry
|
|
131
|
+
- @fluidframework/server-services-utils
|
|
132
|
+
- @fluidframework/server-test-utils
|
|
133
|
+
- tinylicious
|
|
134
|
+
|
|
135
|
+
- Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
136
|
+
|
|
137
|
+
The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
|
|
138
|
+
changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
|
|
135
139
|
|
|
136
140
|
## 2.0.0-internal.8.0.0
|
|
137
141
|
|
|
@@ -157,45 +161,45 @@ Dependency updates only.
|
|
|
157
161
|
|
|
158
162
|
### Major Changes
|
|
159
163
|
|
|
160
|
-
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
-
|
|
197
|
-
|
|
198
|
-
|
|
164
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
165
|
+
|
|
166
|
+
This included the following changes from the protocol-definitions release:
|
|
167
|
+
|
|
168
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
169
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
170
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
171
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
172
|
+
ISignalMessageBase interface that contains common members.
|
|
173
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
174
|
+
|
|
175
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
176
|
+
|
|
177
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
178
|
+
|
|
179
|
+
- @fluidframework/gitresources: 2.0.1
|
|
180
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
181
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
182
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
183
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
184
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
185
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
186
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
187
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
188
|
+
- @fluidframework/server-services: 2.0.1
|
|
189
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
190
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
191
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
192
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
193
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
194
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
195
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
196
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
197
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
198
|
+
- tinylicious: 2.0.1
|
|
199
|
+
|
|
200
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
201
|
+
|
|
202
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
199
203
|
|
|
200
204
|
## 2.0.0-internal.6.4.0
|
|
201
205
|
|
|
@@ -217,9 +221,9 @@ Dependency updates only.
|
|
|
217
221
|
|
|
218
222
|
### Major Changes
|
|
219
223
|
|
|
220
|
-
-
|
|
224
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
221
225
|
|
|
222
|
-
|
|
226
|
+
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.
|
|
223
227
|
|
|
224
228
|
## 2.0.0-internal.5.4.0
|
|
225
229
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/routerlicious-urlresolver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"description": "Url Resolver for routerlicious urls.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -37,21 +37,21 @@
|
|
|
37
37
|
"main": "lib/index.js",
|
|
38
38
|
"types": "lib/public.d.ts",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@fluidframework/core-interfaces": "~2.
|
|
41
|
-
"@fluidframework/core-utils": "~2.
|
|
42
|
-
"@fluidframework/driver-definitions": "~2.
|
|
40
|
+
"@fluidframework/core-interfaces": "~2.31.1",
|
|
41
|
+
"@fluidframework/core-utils": "~2.31.1",
|
|
42
|
+
"@fluidframework/driver-definitions": "~2.31.1",
|
|
43
43
|
"nconf": "^0.12.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
47
47
|
"@biomejs/biome": "~1.9.3",
|
|
48
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
48
|
+
"@fluid-internal/mocha-test-setup": "~2.31.1",
|
|
49
49
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
50
50
|
"@fluidframework/build-common": "^2.0.3",
|
|
51
51
|
"@fluidframework/build-tools": "^0.54.0",
|
|
52
52
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
53
|
-
"@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.
|
|
54
|
-
"@microsoft/api-extractor": "7.
|
|
53
|
+
"@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.31.0",
|
|
54
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
55
55
|
"@types/mocha": "^10.0.10",
|
|
56
56
|
"@types/nconf": "^0.10.0",
|
|
57
57
|
"@types/node": "^18.19.0",
|
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
"mocha": "^10.8.2",
|
|
64
64
|
"mocha-multi-reporters": "^1.5.1",
|
|
65
65
|
"moment": "^2.21.0",
|
|
66
|
-
"prettier": "~3.0.3",
|
|
67
66
|
"rimraf": "^4.4.0",
|
|
68
67
|
"typescript": "~5.4.5"
|
|
69
68
|
},
|
|
@@ -90,14 +89,12 @@
|
|
|
90
89
|
"check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
|
|
91
90
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
92
91
|
"check:format": "npm run check:biome",
|
|
93
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
94
92
|
"ci:build:docs": "api-extractor run",
|
|
95
93
|
"clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
96
94
|
"eslint": "eslint --format stylish src",
|
|
97
95
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
98
96
|
"format": "npm run format:biome",
|
|
99
97
|
"format:biome": "biome check . --write",
|
|
100
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
101
98
|
"lint": "fluid-build . --task lint",
|
|
102
99
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
103
100
|
"test": "npm run test:mocha",
|