[PR #6028] [MERGED] chore: Upgrade collab version #7149

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6028
Author: @appflowy
Created: 8/21/2024
Status: Merged
Merged: 8/21/2024
Merged by: @appflowy

Base: mainHead: upgrade_collab_version


📝 Commits (8)

  • 7faf4b2 chore: write collab to disk if it's not exist
  • cb67e3f chore: write collab if it's not exit
  • 5a600f0 chore: fix test
  • 831ada7 chore: upgrade appflowy collab
  • 6eb0be1 chore: upgrade appflowy collab
  • 3ab8e49 Merge branch 'main' into upgrade_collab_version
  • 5f0ed01 chore: update collab version
  • 9ba2d1d chore: fix test

📊 Changes

17 files changed (+69 additions, -63 deletions)

View changed files

📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+7 -7)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+7 -7)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+7 -7)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+7 -7)
📝 frontend/rust-lib/Cargo.lock (+7 -7)
📝 frontend/rust-lib/Cargo.toml (+7 -7)
📝 frontend/rust-lib/event-integration-test/tests/database/af_cloud/util.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs (+5 -6)
📝 frontend/rust-lib/flowy-database2/src/services/database/util.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_operation.rs (+4 -4)
📝 frontend/rust-lib/flowy-database2/src/services/share/csv/import.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/template.rs (+2 -3)
📝 frontend/rust-lib/flowy-database2/tests/database/mock_data/board_mock_data.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/tests/database/mock_data/calendar_mock_data.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/tests/database/mock_data/grid_mock_data.rs (+2 -1)

📄 Description

Feature Preview


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/6028 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/21/2024 **Status:** ✅ Merged **Merged:** 8/21/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `upgrade_collab_version` --- ### 📝 Commits (8) - [`7faf4b2`](https://github.com/AppFlowy-IO/AppFlowy/commit/7faf4b2711f41eba28fbe0bd7e2c0ec752f43e5a) chore: write collab to disk if it's not exist - [`cb67e3f`](https://github.com/AppFlowy-IO/AppFlowy/commit/cb67e3f1ed05e666b112ec0e3bd4b7acba6011f5) chore: write collab if it's not exit - [`5a600f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/5a600f06288c62deea83dd915b88054b63cebc9f) chore: fix test - [`831ada7`](https://github.com/AppFlowy-IO/AppFlowy/commit/831ada733f8c40bd7c2fcd1748c8fba3a802dc3d) chore: upgrade appflowy collab - [`6eb0be1`](https://github.com/AppFlowy-IO/AppFlowy/commit/6eb0be1413f7c3b188206adfbb3bcc4f6eb84320) chore: upgrade appflowy collab - [`3ab8e49`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ab8e4967ee07c00b7cd3cd46950538f3b3dfcfe) Merge branch 'main' into upgrade_collab_version - [`5f0ed01`](https://github.com/AppFlowy-IO/AppFlowy/commit/5f0ed013808ea34c71bb6dd3aa386f31b27aeece) chore: update collab version - [`9ba2d1d`](https://github.com/AppFlowy-IO/AppFlowy/commit/9ba2d1d695275b85028c185fab331759a9713811) chore: fix test ### 📊 Changes **17 files changed** (+69 additions, -63 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+7 -7) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+7 -7) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+7 -7) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+7 -7) 📝 `frontend/rust-lib/Cargo.lock` (+7 -7) 📝 `frontend/rust-lib/Cargo.toml` (+7 -7) 📝 `frontend/rust-lib/event-integration-test/tests/database/af_cloud/util.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs` (+5 -6) 📝 `frontend/rust-lib/flowy-database2/src/services/database/util.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_operation.rs` (+4 -4) 📝 `frontend/rust-lib/flowy-database2/src/services/share/csv/import.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/template.rs` (+2 -3) 📝 `frontend/rust-lib/flowy-database2/tests/database/mock_data/board_mock_data.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/tests/database/mock_data/calendar_mock_data.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/tests/database/mock_data/grid_mock_data.rs` (+2 -1) </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### 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 23:18:19 +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#7149
No description provided.