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 #17467
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… tables (#17430) Fixes issue where HTML content being rendered inside of a Markdown table was being rendered across multiple lines, which is invalid Markdown syntax. An example of how this might have appeared previously: ```md | Col 1 | Col 2 | | --- | --- | | <p> Some content </p> | Hello world | ``` Correct rendering: ```md | Col 1 | Col 2 | | --- | --- | | <p>Some content</p> | Hello world | ``` The fix was to ensure no "pretty" formatting is used when rendering HTML content under a Markdown table context. The changes include adding the ability to opt out of pretty formatting in the HTML renderer. Note: this degree of freedom has not yet been added to the public API for the HTML renderer. This PR also updates the test suite to reproduce the situation. Finally, this PR fixes a small bug in "pretty" HTML rendering where `</section>` (closing) tags were not being line-wrapped correctly.
Recent changes in the blob manager moved the stashed blobs processing while loading the container runtime. This change was made because we don't want to block other ops on waiting for blob uploads when there is a reconnection. However, this doesn't allow containers to resolve offline when there is a stashed blob. This PR brings back the block we had on reconnection, but it will only happen on loading (not in every reconnection). [AB#5523](https://dev.azure.com/fluidframework/235294da-091d-4c29-84fc-cdfc3d90890b/_workitems/edit/5523)
[AB#5417](https://dev.azure.com/fluidframework/235294da-091d-4c29-84fc-cdfc3d90890b/_workitems/edit/5417) Refactor refresh latest summary ack to close as that is the new behavior. We will end execution of submit summary early at the base stage.
## Description For the past 7 days, this test has pushed a couple hundred thousand events (millions in the past 30 days) to telemetry and none of them are actionable (they are all FYIs and never caught by any alerts). Meanwhile, we should be more frugal with the telemetry output of the stress tests. If these are not actionable, they should be removed. ## **If this test is deemed vital, I suggest the code be resurrected, the events sampled and converted into actual errors after testing it and verifying it doesn't spam the logs with non-actionable events**
⯆ @fluid-example/bundle-size-tests: -64 Bytes
Baseline commit: f430900 |
sonalideshpandemsft
approved these changes
Sep 25, 2023
|
HEAD of next has changed again :( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
main-next integrate PR
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:
git commit --amend -m "Automation: main-next integrate"git push --force-with-lease