@fluidframework/odsp-urlresolver 2.21.0 → 2.22.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 (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +1 -0
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/odsp-urlresolver
2
2
 
3
+ ## 2.22.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.21.0
4
8
 
5
9
  Dependency updates only.
package/README.md CHANGED
@@ -49,6 +49,7 @@ When making such a request please include if the configuration already works (an
49
49
  ### Supported Runtimes
50
50
 
51
51
  - NodeJs ^20.10.0 except that we will drop support for it [when NodeJs 20 loses its upstream support on 2026-04-30](https://github.com/nodejs/release#release-schedule), and will support a newer LTS version of NodeJS (22) at least 1 year before 20 is end-of-life. This same policy applies to NodeJS 22 when it is end of life (2027-04-30).
52
+ - Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
52
53
  - Modern browsers supporting the es2022 standard library: in response to asks we can add explicit support for using babel to polyfill to target specific standards or runtimes (meaning we can avoid/remove use of things that don't polyfill robustly, but otherwise target modern standards).
53
54
 
54
55
  ### Supported Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/odsp-urlresolver",
3
- "version": "2.21.0",
3
+ "version": "2.22.0",
4
4
  "description": "Url Resolver for odsp urls.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -37,22 +37,22 @@
37
37
  "main": "lib/index.js",
38
38
  "types": "lib/public.d.ts",
39
39
  "dependencies": {
40
- "@fluid-internal/client-utils": "~2.21.0",
41
- "@fluidframework/core-interfaces": "~2.21.0",
42
- "@fluidframework/core-utils": "~2.21.0",
43
- "@fluidframework/driver-definitions": "~2.21.0",
44
- "@fluidframework/odsp-driver": "~2.21.0",
45
- "@fluidframework/odsp-driver-definitions": "~2.21.0"
40
+ "@fluid-internal/client-utils": "~2.22.0",
41
+ "@fluidframework/core-interfaces": "~2.22.0",
42
+ "@fluidframework/core-utils": "~2.22.0",
43
+ "@fluidframework/driver-definitions": "~2.22.0",
44
+ "@fluidframework/odsp-driver": "~2.22.0",
45
+ "@fluidframework/odsp-driver-definitions": "~2.22.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@arethetypeswrong/cli": "^0.17.1",
49
49
  "@biomejs/biome": "~1.9.3",
50
- "@fluid-internal/mocha-test-setup": "~2.21.0",
50
+ "@fluid-internal/mocha-test-setup": "~2.22.0",
51
51
  "@fluid-tools/build-cli": "^0.51.0",
52
52
  "@fluidframework/build-common": "^2.0.3",
53
53
  "@fluidframework/build-tools": "^0.51.0",
54
54
  "@fluidframework/eslint-config-fluid": "^5.7.3",
55
- "@fluidframework/odsp-urlresolver-previous": "npm:@fluidframework/odsp-urlresolver@2.20.0",
55
+ "@fluidframework/odsp-urlresolver-previous": "npm:@fluidframework/odsp-urlresolver@2.21.0",
56
56
  "@microsoft/api-extractor": "7.47.8",
57
57
  "@types/mocha": "^10.0.10",
58
58
  "@types/node": "^18.19.0",
@@ -102,8 +102,8 @@
102
102
  "lint:fix": "fluid-build . --task eslint:fix --task format",
103
103
  "test": "npm run test:mocha",
104
104
  "test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
105
- "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit",
106
- "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
105
+ "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"",
106
+ "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"",
107
107
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
108
108
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
109
109
  "typetests:gen": "flub generate typetests --dir . -v",