[PR #4285] [MERGED] fix: 040 bugs #6175

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4285
Author: @appflowy
Created: 1/2/2024
Status: Merged
Merged: 1/3/2024
Merged by: @appflowy

Base: mainHead: collab_backup_test


📝 Commits (6)

📊 Changes

35 files changed (+538 additions, -281 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/lib/startup/startup.dart (+7 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+72 -58)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+9 -9)
📝 frontend/rust-lib/Cargo.lock (+70 -55)
📝 frontend/rust-lib/Cargo.toml (+9 -9)
📝 frontend/rust-lib/event-integration/Cargo.toml (+1 -0)
📝 frontend/rust-lib/event-integration/src/folder_event.rs (+0 -11)
📝 frontend/rust-lib/event-integration/src/lib.rs (+1 -1)
frontend/rust-lib/event-integration/tests/asset/038_document_with_grid.zip (+0 -0)
frontend/rust-lib/event-integration/tests/asset/038_local.zip (+0 -0)
frontend/rust-lib/event-integration/tests/asset/040_collab_backups.zip (+0 -0)
📝 frontend/rust-lib/event-integration/tests/user/af_cloud_test/anon_user_test.rs (+6 -6)
📝 frontend/rust-lib/event-integration/tests/user/af_cloud_test/import_af_data_folder_test.rs (+9 -11)
📝 frontend/rust-lib/event-integration/tests/user/migration_test/version_test.rs (+119 -2)
📝 frontend/rust-lib/flowy-core/src/config.rs (+3 -3)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/collab_backup.rs (+4 -9)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+21 -4)
📝 frontend/rust-lib/flowy-document/src/manager.rs (+2 -2)
📝 frontend/rust-lib/flowy-error/src/errors.rs (+4 -0)

...and 15 more files

📄 Description

  1. fix import data payload size issue
  2. import document in the row while importing the appflowy data folder

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/4285 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 1/2/2024 **Status:** ✅ Merged **Merged:** 1/3/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `collab_backup_test` --- ### 📝 Commits (6) - [`321ae96`](https://github.com/AppFlowy-IO/AppFlowy/commit/321ae963934429cbdbb36e9fc1d77d1f1dc71385) test: add tests - [`b84f630`](https://github.com/AppFlowy-IO/AppFlowy/commit/b84f6300d65da64aff57c537290bc24913f2ec95) chore: set maximum log files - [`3ac3aae`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ac3aae5e4f709565f3451384eb5c7f109600b23) fix: import row document - [`5198da9`](https://github.com/AppFlowy-IO/AppFlowy/commit/5198da9ef197eb9ac48873ee23539f9d228f2a54) chore: bump client api - [`3370ef7`](https://github.com/AppFlowy-IO/AppFlowy/commit/3370ef7b694e9bbe208a1bdbe3174dddb0a039fc) chore: fix analyzer - [`496ddac`](https://github.com/AppFlowy-IO/AppFlowy/commit/496ddac239ff5dea8466f8dff435b10a082a8b36) chore: fix flutter unit test ### 📊 Changes **35 files changed** (+538 additions, -281 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+7 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+72 -58) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/Cargo.lock` (+70 -55) 📝 `frontend/rust-lib/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/event-integration/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/event-integration/src/folder_event.rs` (+0 -11) 📝 `frontend/rust-lib/event-integration/src/lib.rs` (+1 -1) ➕ `frontend/rust-lib/event-integration/tests/asset/038_document_with_grid.zip` (+0 -0) ➕ `frontend/rust-lib/event-integration/tests/asset/038_local.zip` (+0 -0) ➕ `frontend/rust-lib/event-integration/tests/asset/040_collab_backups.zip` (+0 -0) 📝 `frontend/rust-lib/event-integration/tests/user/af_cloud_test/anon_user_test.rs` (+6 -6) 📝 `frontend/rust-lib/event-integration/tests/user/af_cloud_test/import_af_data_folder_test.rs` (+9 -11) 📝 `frontend/rust-lib/event-integration/tests/user/migration_test/version_test.rs` (+119 -2) 📝 `frontend/rust-lib/flowy-core/src/config.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/collab_backup.rs` (+4 -9) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+21 -4) 📝 `frontend/rust-lib/flowy-document/src/manager.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-error/src/errors.rs` (+4 -0) _...and 15 more files_ </details> ### 📄 Description 1. fix import data payload size issue 2. import document in the row while importing the appflowy data folder #### 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:22:03 +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#6175
No description provided.