Skip to content
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

Automation: main-next integrate #18770

Merged
merged 31 commits into from
Dec 12, 2023
Merged

Automation: main-next integrate #18770

merged 31 commits into from
Dec 12, 2023

Conversation

msfluid-bot
Copy link
Collaborator

main-next integrate PR

DO NOT MERGE THIS PR USING THE GITHUB UI.

The aim of this pull request is to sync main and next branch. If this PR is assigned to you, you need to do the following:

  1. Acknowledge the pull request by adding a comment -- "Actively working on it".
  2. If there are no CI failures, add the "msftbot: merge-next" label to the PR and one of the people with merge permissions will merge it in.
  3. If there are CI failures, check out the main-next-b3b6cd4 branch and make code changes to fix the failures.
  • You can ignore any failures in the Real service e2e test and Stress test pipelines. These pipelines are not required to pass to merge changes.
  1. Do NOT rebase or squash the main-next-b3b6cd4 branch: its history must be preserved. Always amend the HEAD commit using the following git commands:
  • git commit --amend -m "Automation: main-next integrate"
  • git push --force-with-lease

Once CI passes and the PR is ready to merge, add the "msftbot: merge-next" label to the PR and one of the people with merge permissions will merge it in.

CraigMacomber and others added 30 commits December 6, 2023 22:19
## Description

Make chunked forest stop depending on default-schema: it should work
with any schema.
## Description

This PR moves the `Multiplicity` enum out from `modular-schema` to the
parent directory `feature-libraries`, to make chunkTree stop depending
on `Multiplicity`, to help mitigate circular dependency issues.
## Description

When an insertable tree is ambiguous, provide a better error message.
…tor-model and to capture some missing test cases (#18685)

The key change here is updating `simple-suite-test.json`. This is a
sample test report which the end-to-end tests use as input.
The updates include:
- Updating to a more recent version of the api-extractor schema and
regenerating the contents against it
- You will see (among other things) some changes to how signature
contents are tokenized and displayed.
- Updating the sample suite to update the release tags on a couple of
items under `TestNamespace`
- Makes 1 `@alpha`, 1 `@beta`, to ensure nested items are trimmed
correctly via the changes made in #18663
## Description

This PR updates the encoding of trees used in sharedTree changesets
…or the other (#18559)

This change updates GC configuration and logic to transition
unreferenced objects to TombstoneReady (and next GC will mark as
Tombstone) then after a configurable delay, transitions to SweepReady
(and next GC will delete).

Context: Based on feedback from our 1P early adopters of GC, it's desirable to
see an object be Tombstoned first, then later swept. For a document
being actively used that hits a GC-impacting bug, this will cause the
bug to manifest as a Tombstone error first, giving some reaction time
(operationally) before the data is permanently lost.
## Description

This PR adds a feature to log the entire service config during start of
the service. During the logging, we want to redact any sensitive
information from the logged config while not altering the config object
itself.

To redact secrets, we use `fast-redact`. We add a new optional parameter
`secretsList`. The `ConfigDumper` object has a default list. If no list
is provided, the default list will be used for redaction in case the
values are found in the config. In case the user provides a list, it
will be appended to the default list. The logging is done only if
`config.configDumpEnabled` is set to true.

## Reviewer Guidance

1. Whether to use the `fast-redact`
(https://www.npmjs.com/package/fast-redact) library or write our own
recursive function to redact secrets before logging.
2. Creating a deep copy of the config object before logging to prevent
the original config from getting corrupted.

### Unit test coverage

1) Ensure that the values in `secretNamesToRedactInConfigDump` are
correctly redacted.
2) Ensure that the redacted object is not the same as the original
config object if a value is redacted.
3) Ensure that the redacted object is not the same as the original
config object if no value is redacted.
4) Should not throw an error if `secretNamesToRedactInConfigDump` values
are not present in `nconf`
5) Should not throw an error if `secretNamesToRedactInConfigDump`
contains duplicate values
6) Should redact keys inside nested objects in
`secretNamesToRedactInConfigDump`

### FRS changes

I plan to add the `config` object under the frs-shared configmap. This
way it will be easy to maintain access every service. Additionally, I
will update the shell extension files to have a list of default secrets
to redact. This can be changed as per our needs.

The review process is outlined on [this wiki
page](https://github.com/microsoft/FluidFramework/wiki/PR-Guidelines#guidelines).
Enables d.ts trimmed rollup generation by default across the repo. Makes
no changes to how the rollups are consumed, just adds generation to the
build.
## Description

Adds a no-op RevisionTag codec with the intent of supplying the
runtime's IdCompressor in a subsequent PR to translate between Id
spaces.

## Reviewer Guidance

The review process is outlined on [this wiki
page](https://github.com/microsoft/FluidFramework/wiki/PR-Guidelines#guidelines).
## Description

Adds a document describing tree2's strategy for managing persisted
format, compatibility, and testing concerns.

This document is largely a pared-down and updated version of #14954 to
reflect the current state of things.

---------

Co-authored-by: Abram Sanderson <[email protected]>
## Description

Follow-up to #18600 to update the `relevantRemovedTrees` implementation.

---------

Co-authored-by: Abram Sanderson <[email protected]>
Co-authored-by: yann-achard-MS <[email protected]>
We are confident in the reliability of the GC code and have worked with
key 1P early adopters of GC to enable Tombstone Enforcement. It's time
to enable it by default.
…elease scope when rendering summary tables (#18687)

#18663 Added the ability to filter what kinds of items should have
documentation generated for them based on their release scope. It
correctly implemented filtering where details rendering occurs
(including when separate documents would be generated for those items),
but did not correctly update rendering of top-level summary tables to
filter out such items. This resulted in summary table entries with
broken links to non-existent details entries.

This PR addresses this issue. See updated test snapshots for examples of
the issues now resolved.

Also:
- adds filter helpers to the public API via the `ApiItemUtilities`
entrypoint.
- Needed to ensure custom layout implementations can correctly filter
child items
- adds a transformation-level regression/unit test for the scenario.
## Description

Migrating the OptionalField FieldKind to use root builds.

## Reviewer Guidance

The review process is outlined on [this wiki
page](https://github.com/microsoft/FluidFramework/wiki/PR-Guidelines#guidelines).

---------

Co-authored-by: Yann Achard <[email protected]>
…drated `initialTree` input (#18707)

Disabled test illustrates a currently unsupported input case that we
will want to address in the future.
The auth in shared-tree-demo was returning the storage token as
undefined. `password` grant type is not generally recommended for
browser-side applications This PR replaces the auth using msal.


![image](https://github.com/microsoft/FluidFramework/assets/48232592/0a265b37-d72f-4571-b51d-fdd992a94403)
…#18713)

## Description

The `setEndpoint` function for recording that the `finalEndpoint` field
of a move mark should be changed expected that the entirety of the
target range had the same move effects. This assumption is not valid,
and this PR adds support for the case where it does not hold.
Fixes a bug in `jsonCursor` that made `{ foo: [] }` appear as `{ }`
## Description

Cleanup, fix and document stuff I ran into when exploring recursive maps
and lists.
This does not include improved recursion: this is just other stuff I hit
while looking into that.
This PR patches the repo version of tsc-multi with the contents of this
PR: tylerbutler/tsc-multi#1

This change will enable tsc-multi to rewrite the local imports in
declaration (.d.ts) files just like it does for js files. This is opt-in
behavior in the tsc-multi config.

tsc-multi will not rename the declaration files so that will need to be
done separately (see the changes in
#18645 for examples of
how we're going to do the renames).
…ation for trimming alpha docs (#18705)

Updates `@fluid-tools/api-markdown-documenter` from `0.11.1` to
`0.11.3`.

Also adds commented-out config change so we can quickly change the docs
trimming policy once the repo's release tags are sorted out.

AB#6469
Fixing automation build errors due to out of date  pnpm-lock files

Co-authored-by: Tony Murphy <[email protected]>
…sweep runs (#18632)

## Description
This PR adds a new container runtime op type: GC. This is specific to
garbage collection and will be sent when GC runs. It has a sub-type to
categorize it within the garbage collector. There is currently only one
sub-type `Sweep` that contains the list of nodes that are ready to be
deleted. The format is made flexible to support more GC op types in the
future.

This PR updates the sweep phase flow to the following during
summarization:
1. When sweep phase runs, it identifies nodes that are sweep ready,
i.e., ready to be deleted.
2. The sweep ready data store and blob ids are sent in a GC op (sub-type
Sweep).
3. When the op is received, the sweep ready nodes will be deleted.
3.1. Before this PR, the sweep ready nodes are deleted in the sweep
phase itself.
3.2. Note that all clients that receive this op will delete the sweep
ready nodes.
4. The deleted node list will be updated.
5. The next summary / GC tree will not include the deleted nodes.
5.1. Before this PR, the deleted nodes would be removed frome the GC
tree in the same summary where sweep runs and removed from the summary
tree in the next summary.

With this new flow, all clients will be up-to-date with the state of
deleted nodes and can ensure that deleted objects are not used and do
not cause document corruption - Currently, its possible that a client
has the deleted data store loaded (due to a bug) and keeps sending ops
for it until it loads with a summary that has the object deleted.
Copy link
Contributor

🔗 Found some broken links! 💔

Run a link check locally to find them. See
https://github.com/microsoft/FluidFramework/wiki/Checking-for-broken-links-in-the-documentation for more information.

linkcheck output


> [email protected] ci:linkcheck /home/runner/work/FluidFramework/FluidFramework/docs
> start-server-and-test ci:start http://localhost:1313 linkcheck:full

1: starting server using command "npm run ci:start"
and when url "[ 'http://localhost:1313' ]" is responding with HTTP status code 200
running tests using command "npm run linkcheck:full"


> [email protected] ci:start
> http-server ./public --port 1313 --silent


> [email protected] linkcheck:full
> npm run linkcheck:fast -- --external


> [email protected] linkcheck:fast
> linkcheck http://localhost:1313 --skip-file skipped-urls.txt --external

Crawling...

http://localhost:1313/docs/apis/
- (2735:14) 'https://..' => https://fluidframework.com/docs/testing/tinylicious/ (connection failed)

http://localhost:1313/docs/apis/datastore-definitions/ichannelfactory-interface/
- (1975:69) 'Container' => https://fluidframework.com/docs/build/containers/ (connection failed)
- (1980:38) 'SharedMap' => https://fluidframework.com/docs/data-structures/map/ (connection failed)
- (1975:69) 'Container' => https://fluidframework.com/docs/build/containers/ (connection failed)
- (1980:38) 'SharedMap' => https://fluidframework.com/docs/data-structures/map/ (connection failed)

http://localhost:1313/docs/apis/driver-definitions/idocumentservicefactory-interface/
- (2136:41) 'summarizer' => https://fluidframework.com/docs/concepts/summarizer/ (connection failed)
- (2208:41) 'summarizer' => https://fluidframework.com/docs/concepts/summarizer/ (connection failed)
- (2136:41) 'summarizer' => https://fluidframework.com/docs/concepts/summarizer/ (connection failed)
- (2208:41) 'summarizer' => https://fluidframework.com/docs/concepts/summarizer/ (connection failed)

http://localhost:1313/docs/apis/id-compressor/
- (2313:37) 'https://..' => https://datatracker.ietf.org/doc/html/rfc4122%29 (HTTP 404)
- (2313:37) 'https://..' => https://datatracker.ietf.org/doc/html/rfc4122%29 (HTTP 404)

http://localhost:1313/docs/apis/location-redirection-utils/
- (1950:52) => http://localhost:1313/docs/apis/container-loader/-entrypoint (HTTP 404)
- (1950:52) => http://localhost:1313/docs/apis/container-loader/-entrypoint (HTTP 404)

http://localhost:1313/docs/apis/map/
- (2153:62) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)
- (2225:33) 'DDS' => https://fluidframework.com/docs/build/dds/ (connection failed)
- (2271:62) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)
- (2153:62) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)
- (2225:33) 'DDS' => https://fluidframework.com/docs/build/dds/ (connection failed)
- (2271:62) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)

http://localhost:1313/docs/apis/map/isharedmap-interface/
- (1998:55) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)
- (1998:55) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)

http://localhost:1313/docs/apis/map/localvaluemaker-class/
- (1967:28) 'DDS' => https://fluidframework.com/docs/build/dds/ (connection failed)
- (1967:28) 'DDS' => https://fluidframework.com/docs/build/dds/ (connection failed)

http://localhost:1313/docs/apis/map/sharedmap-class/
- (1976:55) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)
- (1976:55) 'https://..' => https://fluidframework.com/docs/data-structures/map/ (connection failed)

http://localhost:1313/docs/apis/protocol-definitions/icapabilities-interface/
- (2018:75) 'summariz..' => https://fluidframework.com/docs/concepts/summarizer/ (connection failed)
- (2018:75) 'summariz..' => https://fluidframework.com/docs/concepts/summarizer/ (connection failed)

http://localhost:1313/docs/apis/tinylicious-client/
- (1952:7) 'https://..' => https://fluidframework.com/docs/testing/tinylicious/ (connection failed)
- (1952:7) 'https://..' => https://fluidframework.com/docs/testing/tinylicious/ (connection failed)

http://localhost:1313/docs/apis/tree2/internaltypes/internalclasstreetypes-namespace/
- (1943:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1943:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/internalclasstreetypes/fieldkind-enum/
- (1943:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1943:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/internalclasstreetypes/fieldschema-class/
- (1945:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1945:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/makenominal-interface/
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/nodekind-enum/
- (1943:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1943:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/treelistnodebase-interface/
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/treenodeschemaclass-interface/
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/treenodeschemacore-interface/
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/apis/tree2/internaltypes/treenodeschemanonclass-interface/
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)
- (1941:11) => http://localhost:1313/docs/apis/tree2/internaltypes (HTTP 302 => 404)
  - redirect path:
    - http://localhost:1313/docs/apis/tree2/internaltypes (302)
    - /docs/apis/tree2/internaltypes/ (404)

http://localhost:1313/docs/build/audience/
- (1933:11) => http://localhost:1313/docs/apis/audience/ (HTTP 404)

http://localhost:1313/docs/build/auth/
- (1933:11) => http://localhost:1313/docs/apis/auth/ (HTTP 404)

http://localhost:1313/docs/build/bundlers/
- (1933:11) => http://localhost:1313/docs/apis/bundlers/ (HTTP 404)
- (1963:233) 'here' => https://github.com/microsoft/FluidFramework/blob/a4c38234a920abe9b54b1c26a14c0a8e430cd3fa/packages/tools/webpack-fluid-loader/webpack.config.js#L37 (HTTP 200 but missing anchor)

http://localhost:1313/docs/build/container-states-events/
- (1933:11) => http://localhost:1313/docs/apis/container-states-events/ (HTTP 404)
- (2044:23) 'AttachSt..' => http://localhost:1313/docs/apis/container-definitions/#attachstate-enum (HTTP 200 but missing anchor)

http://localhost:1313/docs/build/containers/
- (1933:11) => http://localhost:1313/docs/apis/containers/ (HTTP 404)

http://localhost:1313/docs/build/data-modeling/
- (1933:11) => http://localhost:1313/docs/apis/data-modeling/ (HTTP 404)

http://localhost:1313/docs/build/dds/
- (1933:11) => http://localhost:1313/docs/apis/dds/ (HTTP 404)

http://localhost:1313/docs/build/experimental-features/
- (1933:11) => http://localhost:1313/docs/apis/experimental-features/ (HTTP 404)

http://localhost:1313/docs/build/overview/
- (1933:11) => http://localhost:1313/docs/apis/overview/ (HTTP 404)

http://localhost:1313/docs/build/packages/
- (1933:11) => http://localhost:1313/docs/apis/packages/ (HTTP 404)

http://localhost:1313/docs/build/tokenproviders/
- (1933:11) => http://localhost:1313/docs/apis/tokenproviders/ (HTTP 404)
- (1948:10) 'Fluid Fr..' => https://fluidframework.com/ (connection failed)

http://localhost:1313/docs/concepts/architecture/
- (1933:11) => http://localhost:1313/docs/apis/architecture/ (HTTP 404)

http://localhost:1313/docs/concepts/handles/
- (1933:11) => http://localhost:1313/docs/apis/handles/ (HTTP 404)

http://localhost:1313/docs/concepts/signals/
- (1933:11) => http://localhost:1313/docs/apis/signals/ (HTTP 404)
- (1981:91) 'Data mod..' => https://fluidframework.com/docs/build/data-modeling/ (connection failed)

http://localhost:1313/docs/concepts/summarizer/
- (1933:11) => http://localhost:1313/docs/apis/summarizer/ (HTTP 404)

http://localhost:1313/docs/concepts/tob/
- (1933:11) => http://localhost:1313/docs/apis/tob/ (HTTP 404)

http://localhost:1313/docs/data-structures/counter/
- (2050:100) 'the Shar..' => https://fluidframework.com/docs/apis/counter/ (connection failed)

http://localhost:1313/docs/data-structures/overview/
- (1933:11) => http://localhost:1313/docs/apis/overview/ (HTTP 404)

http://localhost:1313/docs/data-structures/sequences/
- (1933:11) => http://localhost:1313/docs/apis/sequences/ (HTTP 404)

http://localhost:1313/docs/data-structures/string/
- (1933:11) => http://localhost:1313/docs/apis/string/ (HTTP 404)

http://localhost:1313/docs/deployment/azure-frs/
- (1933:11) => http://localhost:1313/docs/apis/azure-frs/ (HTTP 404)

http://localhost:1313/docs/deployment/service-options/
- (1933:11) => http://localhost:1313/docs/apis/service-options/ (HTTP 404)
- (1968:72) 'Routerli..' => https://github.com/microsoft/FluidFramework/tree/main/server#readme (HTTP 200 but missing anchor)
- (1970:168) 'Routerli..' => https://github.com/microsoft/FluidFramework/tree/main/server#readme (HTTP 200 but missing anchor)

http://localhost:1313/docs/faq/
- (2026:87) 'Routerli..' => https://github.com/microsoft/FluidFramework/tree/main/server#readme (HTTP 200 but missing anchor)

http://localhost:1313/docs/recipes/angular/
- (1933:11) => http://localhost:1313/docs/apis/angular/ (HTTP 404)

http://localhost:1313/docs/recipes/collaborative-text-area/
- (1933:11) => http://localhost:1313/docs/apis/collaborative-text-area/ (HTTP 404)

http://localhost:1313/docs/recipes/node/
- (1933:11) => http://localhost:1313/docs/apis/node/ (HTTP 404)

http://localhost:1313/docs/recipes/react/
- (1934:11) => http://localhost:1313/docs/apis/react/ (HTTP 404)

http://localhost:1313/docs/recipes/teams/
- (1933:11) => http://localhost:1313/docs/apis/teams/ (HTTP 404)

http://localhost:1313/docs/recipes/temporary-storage/
- (1933:11) => http://localhost:1313/docs/apis/temporary-storage/ (HTTP 404)

http://localhost:1313/docs/recipes/vue/
- (1933:11) => http://localhost:1313/docs/apis/vue/ (HTTP 404)

http://localhost:1313/docs/recipes/web-components/
- (1933:11) => http://localhost:1313/docs/apis/web-components/ (HTTP 404)

http://localhost:1313/docs/start/examples/
- (1933:11) => http://localhost:1313/docs/apis/examples/ (HTTP 404)

http://localhost:1313/docs/start/quick-start/
- (1934:11) => http://localhost:1313/docs/apis/quick-start/ (HTTP 404)

http://localhost:1313/docs/start/tutorial/
- (1933:11) => http://localhost:1313/docs/apis/tutorial/ (HTTP 404)

http://localhost:1313/docs/testing/telemetry/
- (1933:11) => http://localhost:1313/docs/apis/telemetry/ (HTTP 404)
- (1968:3) 'ILoaderP..' => https://github.com/microsoft/FluidFramework/blob/main/packages/loader/container-loader/src/loader.ts#L313 (HTTP 200 but missing anchor)

http://localhost:1313/docs/testing/testing/
- (1933:11) => http://localhost:1313/docs/apis/testing/ (HTTP 404)

http://localhost:1313/docs/updates/v1.0.0/
- (1933:11) => http://localhost:1313/docs/apis/v1.0.0/ (HTTP 404)
- (1966:20) 'Connecti..' => http://localhost:1313/docs/apis/container-loader/#connectionstate-enum (HTTP 200 but missing anchor)
- (1978:3) 'getConta..' => http://localhost:1313/docs/apis/azure-client/azureclient-class/#getcontainerversions-method (HTTP 200 but missing anchor)
- (1980:0) 'copyCont..' => http://localhost:1313/docs/apis/azure-client/azureclient-class/#copycontainer-method (HTTP 200 but missing anchor)


Stats:
  165517 links
    1603 destination URLs
       2 URLs ignored
      37 warnings
      45 errors

 ELIFECYCLE  Command failed with exit code 1.

@msfluid-bot
Copy link
Collaborator Author

@fluid-example/bundle-size-tests: +5.31 KB
Metric NameBaseline SizeCompare SizeSize Diff
aqueduct.js 452.78 KB 454.84 KB +2.06 KB
connectionState.js 680 Bytes 680 Bytes No change
containerRuntime.js 239.23 KB 241.28 KB +2.05 KB
loader.js 166.81 KB 166.82 KB +2 Bytes
map.js 46.7 KB 46.7 KB +2 Bytes
matrix.js 147.36 KB 147.36 KB +2 Bytes
odspDriver.js 90.35 KB 90.36 KB +2 Bytes
odspPrefetchSnapshot.js 41.82 KB 41.82 KB +2 Bytes
sharedString.js 165.55 KB 165.55 KB No change
sharedTree2.js 287.36 KB 288.55 KB +1.19 KB
Total Size 1.75 MB 1.76 MB +5.31 KB

Baseline commit: 425e143

Generated by 🚫 dangerJS against 73c5e53

@sonalideshpandemsft sonalideshpandemsft merged commit 73c5e53 into next Dec 12, 2023
48 checks passed
@sonalideshpandemsft sonalideshpandemsft deleted the main-next-b3b6cd4 branch December 12, 2023 03:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
base: next PRs targeted against next branch main-next-integrate merge-ok
Projects
None yet
Development

Successfully merging this pull request may close these issues.