@fluidframework/aqueduct 2.113.1 → 2.115.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 +8 -0
  2. package/package.json +24 -28
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fluidframework/aqueduct
2
2
 
3
+ ## 2.115.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.114.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.113.0
4
12
 
5
13
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/aqueduct",
3
- "version": "2.113.1",
3
+ "version": "2.115.0",
4
4
  "description": "A set of implementations for Fluid Framework interfaces.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -69,29 +69,29 @@
69
69
  "temp-directory": "nyc/.nyc_output"
70
70
  },
71
71
  "dependencies": {
72
- "@fluid-internal/client-utils": "~2.113.1",
73
- "@fluidframework/container-definitions": "~2.113.1",
74
- "@fluidframework/container-runtime": "~2.113.1",
75
- "@fluidframework/container-runtime-definitions": "~2.113.1",
76
- "@fluidframework/core-interfaces": "~2.113.1",
77
- "@fluidframework/core-utils": "~2.113.1",
78
- "@fluidframework/datastore": "~2.113.1",
79
- "@fluidframework/datastore-definitions": "~2.113.1",
80
- "@fluidframework/map": "~2.113.1",
81
- "@fluidframework/request-handler": "~2.113.1",
82
- "@fluidframework/runtime-definitions": "~2.113.1",
83
- "@fluidframework/runtime-utils": "~2.113.1",
84
- "@fluidframework/shared-object-base": "~2.113.1",
85
- "@fluidframework/synthesize": "~2.113.1",
86
- "@fluidframework/telemetry-utils": "~2.113.1",
87
- "@fluidframework/tree": "~2.113.1"
72
+ "@fluid-internal/client-utils": "~2.115.0",
73
+ "@fluidframework/container-definitions": "~2.115.0",
74
+ "@fluidframework/container-runtime": "~2.115.0",
75
+ "@fluidframework/container-runtime-definitions": "~2.115.0",
76
+ "@fluidframework/core-interfaces": "~2.115.0",
77
+ "@fluidframework/core-utils": "~2.115.0",
78
+ "@fluidframework/datastore": "~2.115.0",
79
+ "@fluidframework/datastore-definitions": "~2.115.0",
80
+ "@fluidframework/map": "~2.115.0",
81
+ "@fluidframework/request-handler": "~2.115.0",
82
+ "@fluidframework/runtime-definitions": "~2.115.0",
83
+ "@fluidframework/runtime-utils": "~2.115.0",
84
+ "@fluidframework/shared-object-base": "~2.115.0",
85
+ "@fluidframework/synthesize": "~2.115.0",
86
+ "@fluidframework/telemetry-utils": "~2.115.0",
87
+ "@fluidframework/tree": "~2.115.0"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@arethetypeswrong/cli": "^0.18.2",
91
91
  "@biomejs/biome": "~2.4.5",
92
- "@fluid-internal/mocha-test-setup": "~2.113.1",
92
+ "@fluid-internal/mocha-test-setup": "~2.115.0",
93
93
  "@fluid-tools/build-cli": "^0.65.0",
94
- "@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.111.0",
94
+ "@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.112.0",
95
95
  "@fluidframework/build-common": "^2.0.3",
96
96
  "@fluidframework/build-tools": "^0.65.0",
97
97
  "@fluidframework/eslint-config-fluid": "^13.0.0",
@@ -110,17 +110,10 @@
110
110
  "typescript": "~5.4.5"
111
111
  },
112
112
  "typeValidation": {
113
- "broken": {
114
- "Interface_IDataObjectProps": {
115
- "forwardCompat": false
116
- }
117
- },
113
+ "broken": {},
118
114
  "entrypoint": "legacy"
119
115
  },
120
116
  "scripts": {
121
- "api": "fluid-build . --task api",
122
- "api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
123
- "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
124
117
  "build": "fluid-build . --task build",
125
118
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
126
119
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
@@ -128,8 +121,11 @@
128
121
  "build:commonjs": "fluid-build . --task commonjs",
129
122
  "build:compile": "fluid-build . --task compile",
130
123
  "build:docs": "api-extractor run --local",
124
+ "build:entrypoints": "fluid-build . --task build:entrypoints",
125
+ "build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
126
+ "build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
131
127
  "build:esnext": "tsc --project ./tsconfig.json",
132
- "build:test": "npm run build:test:esm && npm run build:test:cjs",
128
+ "build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
133
129
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
134
130
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
135
131
  "check:are-the-types-wrong": "attw --pack .",