-
Notifications
You must be signed in to change notification settings - Fork 549
Revert "build(client): Release notes and changelogs generation for minor release 2.32.0 (#24350)" #24354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revert "build(client): Release notes and changelogs generation for minor release 2.32.0 (#24350)" #24354
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@fluidframework/container-runtime": minor | ||
"@fluidframework/datastore": minor | ||
"__section": feature | ||
--- | ||
|
||
Shorter IDs for DataStores and DDSes | ||
Check failure on line 7 in .changeset/deep-mangos-stand.md
|
||
|
||
Fluid Framework will now use shorter IDs for Datastores and DDSes when `enableRuntimeIdCompressor:"on"` is set in `IContainerRuntimeOptions`. This change should help reduce summary and snapshot sizes as well as improve runtime performance because of a smaller memory footprint. | ||
Check failure on line 9 in .changeset/deep-mangos-stand.md
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
"fluid-framework": minor | ||
"@fluidframework/tree": minor | ||
"__section": tree | ||
--- | ||
|
||
Cleanup of several tree and schema alpha APIs for content import and export | ||
Check failure on line 7 in .changeset/salty-tools-carry.md
|
||
|
||
A new `TreeSchema` type has been introduced which extends `SimpleTreeSchema` but contains `TreeNodeSchema` instead of `SimpleNodeSchema`. | ||
|
||
`TreeViewConfigurationAlpha` is added which is just `TreeViewConfiguration` but implementing `TreeSchema`. | ||
|
||
`SimpleTreeSchema` was modified to have a `root` property instead of implementing `SimpleFieldSchema` directly: | ||
this makes it possible for `TreeViewConfigurationAlpha` to implement `TreeSchema` which extends `SimpleTreeSchema`. | ||
|
||
`generateSchemaFromSimpleSchema` now returns the new `TreeSchema` type. | ||
|
||
`EncodeOptions` and `ParseOptions` have been unified as `TreeEncodingOptions` which covers both the encoding and parsing cases. | ||
|
||
`getJsonSchema` now takes in `ImplicitAllowedTypes` instead of `ImplicitFieldSchema` since it can't handle optional roots. | ||
`getJsonSchema` also takes in the new `TreeSchemaEncodingOptions` to provide options for how to handle stored keys vs property keys, and fields with defaults. | ||
|
||
Now that `getJsonSchema` takes in configuration options, its results are no longer cached. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
"fluid-framework": minor | ||
"@fluidframework/tree": minor | ||
"__section": tree | ||
--- | ||
|
||
Provide alpha APIs for accessing tree content and stored schema without requiring a compatible view schema | ||
Check failure on line 7 in .changeset/tired-places-cough.md
|
||
|
||
Adds an `ITreeAlpha` interface (which `ITree` can be down-casted to) that provides access to both the tree content and the schema. | ||
This allows inspecting the content saved in a SharedTree in a generic way that can work on any SharedTree. | ||
|
||
This can be combined with the existing `generateSchemaFromSimpleSchema` to generate a schema that can be used with [`IIree.viewWith`](https://fluidframework.com/docs/api/fluid-framework/viewabletree-interface#viewwith-methodsignature) to allow constructing a [`TreeView`](https://fluidframework.com/docs/api/fluid-framework/treeview-interface) for any SharedTree, regardless of its schema. | ||
|
||
Note that the resulting TypeScript typing for such a view will not be friendly: the `TreeView` APIs are designed for statically known schema. Using them is possible with care and a lot of type casts but not recommended if it can be avoided: see disclaimer on `generateSchemaFromSimpleSchema`. | ||
Check failure on line 14 in .changeset/tired-places-cough.md
|
||
Example using `ITreeAlpha` and `generateSchemaFromSimpleSchema`: | ||
|
||
```typescript | ||
const viewAlpha = tree as ITreeAlpha; | ||
const treeSchema = generateSchemaFromSimpleSchema(viewAlpha.exportSimpleSchema()); | ||
const config = new TreeViewConfiguration({ schema: treeSchema.root }); | ||
const view = viewAlpha.viewWith(config); | ||
``` | ||
|
||
`getSimpleSchema` is also added as an `@alpha` API to provide a way to clone schema into the simple schema formats. | ||
Note that when using (or copying) a view schema as a simple schema, more metadata will be preserved than when deriving one from the stored schema using `ITreeAlpha`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@fluidframework/container-loader": minor | ||
"__section": feature | ||
--- | ||
|
||
Blobs in Detached Container Supported by Default | ||
|
||
It is no longer necessary or supported to provide `detachedBlobStorage` to the Loader. This functionality is now provided by default, and the deprecated `IDetachedBlobStorage` will be removed in the 2.40.0 release. | ||
The new behavior can be disabled by setting `Fluid.Container.MemoryBlobStorageEnabled` to `false`. This flag will also be removed in the 2.40.0 release if no issues are reported. | ||
Check warning on line 9 in .changeset/true-doors-ring.md
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluidframework/azure-local-service | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluidframework/azure-service-utils | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/ai-collab | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/attributable-map | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/blobs | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
New package. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/collaborative-textarea | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/contact-collection | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/data-object-grid | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/presence-tracker | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/staging | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/task-selection | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/tree-cli-app | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/tree-comparison | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/bubblebench-baseline | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/bubblebench-common | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/bubblebench-ot | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/bubblebench-simple-tree | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-internal/tablebench | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/app-insights-logger | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/canvas | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/clicker | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/codemirror | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/diceroller | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-experimental/inventory-app | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/monaco | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# @fluid-example/multiview-container | ||
|
||
## 2.32.0 | ||
|
||
Dependency updates only. | ||
|
||
## 2.31.0 | ||
|
||
Dependency updates only. | ||
|
Uh oh!
There was an error while loading. Please reload this page.