[PR #3653] [MERGED] chore: sync document #5809

Closed
opened 2026-03-23 22:20:24 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3653
Author: @appflowy
Created: 10/9/2023
Status: Merged
Merged: 10/10/2023
Merged by: @appflowy

Base: mainHead: feat/af_cloud_sync


📝 Commits (4)

  • ab61391 chore: sync document
  • 2fb28ee chore: update collab rev
  • 119133d chore: update collab rev
  • 096a0fd Merge branch 'main' into feat/af_cloud_sync

📊 Changes

57 files changed (+401 additions, -214 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart (+8 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+73 -44)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+9 -9)
📝 frontend/rust-lib/Cargo.lock (+59 -44)
📝 frontend/rust-lib/Cargo.toml (+9 -9)
📝 frontend/rust-lib/collab-integrate/Cargo.toml (+2 -2)
📝 frontend/rust-lib/collab-integrate/src/collab_builder.rs (+1 -1)
📝 frontend/rust-lib/flowy-core/Cargo.toml (+2 -2)
📝 frontend/rust-lib/flowy-core/src/integrate/collab_interact.rs (+1 -1)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+19 -4)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+6 -2)
📝 frontend/rust-lib/flowy-database-deps/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-database-deps/src/cloud.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+1 -1)
📝 frontend/rust-lib/flowy-document2/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-document2/src/manager.rs (+1 -1)
📝 frontend/rust-lib/flowy-document2/src/reminder.rs (+1 -1)
📝 frontend/rust-lib/flowy-folder2/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-folder2/src/manager.rs (+1 -1)

...and 37 more files

📄 Description

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/3653 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/9/2023 **Status:** ✅ Merged **Merged:** 10/10/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/af_cloud_sync` --- ### 📝 Commits (4) - [`ab61391`](https://github.com/AppFlowy-IO/AppFlowy/commit/ab61391abe10632aa899fbf896d949b767a3496e) chore: sync document - [`2fb28ee`](https://github.com/AppFlowy-IO/AppFlowy/commit/2fb28eefcca2241ef6df58dd066851036ba77ba6) chore: update collab rev - [`119133d`](https://github.com/AppFlowy-IO/AppFlowy/commit/119133d75e21c58eb177bb9fb11e6354f51b97ee) chore: update collab rev - [`096a0fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/096a0fdb907e0508003f5461fc76c2681e5c90b7) Merge branch 'main' into feat/af_cloud_sync ### 📊 Changes **57 files changed** (+401 additions, -214 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart` (+8 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+73 -44) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/Cargo.lock` (+59 -44) 📝 `frontend/rust-lib/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/collab-integrate/Cargo.toml` (+2 -2) 📝 `frontend/rust-lib/collab-integrate/src/collab_builder.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-core/Cargo.toml` (+2 -2) 📝 `frontend/rust-lib/flowy-core/src/integrate/collab_interact.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+19 -4) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+6 -2) 📝 `frontend/rust-lib/flowy-database-deps/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-database-deps/src/cloud.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-document2/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-document2/src/manager.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-document2/src/reminder.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-folder2/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-folder2/src/manager.rs` (+1 -1) _...and 37 more files_ </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:20:24 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5809
No description provided.