-
Notifications
You must be signed in to change notification settings - Fork 127
🔄 Sync stable → main #2415
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
Merged
Merged
🔄 Sync stable → main #2415
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
aa5b0bd
chore(release): 1.18.0 [skip ci]
semantic-release-bot 68a8650
chore(release): 1.18.0 [skip ci]
semantic-release-bot f6dbb40
fix(export): prevent DOCX corruption from UTF-16 XML parts and schema…
caio-pizzol 6c7d4f0
chore(release): 1.18.1 [skip ci]
semantic-release-bot f6d956e
fix(rendering): show comment highlight on text with Word highlight fo…
caio-pizzol 54d8355
test(rendering): strengthen SD-2188 assertion to verify comment color…
caio-pizzol 081d5d4
test(rendering): add active and faded comment highlight tests with Wo…
caio-pizzol a300536
fix(anchor-nav): use correct scroll container for sub-page bookmark n…
caio-pizzol 6b584b6
docs: add PresentationEditor CLAUDE.md with DOM/scroll hierarchy
caio-pizzol 16c768f
fix(toc): correct zoom scaling and rect.top bug in anchor scroll
caio-pizzol 06f2d32
test(toc): add behavior tests for TOC anchor click navigation
caio-pizzol 2970366
chore(release): 1.18.2 [skip ci]
semantic-release-bot cee3e90
ci: remove changelog generation from stable releases
caio-pizzol f5762b6
chore(cli): 0.2.0 [skip ci]
semantic-release-bot 9dc0097
Merge branch 'main' into stable
harbournick File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@superdoc-dev/cli-darwin-arm64", | ||
| "version": "1.0.2", | ||
| "version": "0.2.0", | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
|
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@superdoc-dev/cli-darwin-x64", | ||
| "version": "1.0.2", | ||
| "version": "0.2.0", | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
|
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@superdoc-dev/cli-linux-arm64", | ||
| "version": "1.0.2", | ||
| "version": "0.2.0", | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
|
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@superdoc-dev/cli-linux-x64", | ||
| "version": "1.0.2", | ||
| "version": "0.2.0", | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
|
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@superdoc-dev/cli-windows-x64", | ||
| "version": "1.0.2", | ||
| "version": "0.2.0", | ||
| "os": [ | ||
| "win32" | ||
| ], | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change downgrades the CLI package version from
1.0.2to0.2.0(and mirrors that downgrade in platform package manifests), which makes builds frommainpresent themselves as an older release; since--versionis read fromapps/cli/package.json, users and automation that compare semver will interpret this as a rollback rather than a forward sync. In practice this can break nightly/internal update flows and contradicts themain/@nextbranch expectation to stay ahead of stable releases.Useful? React with 👍 / 👎.