[PR #7761] [MERGED] fix: 0.8.9 release bugs #8096

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7761
Author: @appflowy
Created: 4/16/2025
Status: Merged
Merged: 4/16/2025
Merged by: @appflowy

Base: mainHead: do_not_initialize_collab


📝 Commits (10+)

  • be1d2b4 chore: delay collab initialization until schema is configured; finalize to ensure collab includes its schema
  • 3214ec0 chore: fix flaky initialize folder indexer
  • e695101 chore: do not generate search summary if result is empty
  • be132d8 chore: lock analyzer version
  • ecfcf3b chore: commit pub lock
  • 92179fe chore: do not get workspace usage when current user is not owner
  • f652229 fix: open relation database row
  • d7d040b Merge branch 'main' into do_not_initialize_collab
  • 0be8dcc chore: remove duplciate
  • 079112c chore: clippy

📊 Changes

18 files changed (+164 additions, -67 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/application/row/related_row_detail_bloc.dart (+14 -17)
📝 frontend/appflowy_flutter/lib/startup/tasks/app_window_size_manager.dart (+6 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/menu/sidebar_sections_bloc.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/billing/settings_billing_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/plan/settings_plan_bloc.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/sidebar/billing/sidebar_plan_bloc.dart (+18 -13)
📝 frontend/appflowy_flutter/lib/workspace/application/sidebar/space/space_bloc.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart (+16 -2)
📝 frontend/appflowy_flutter/test/util.dart (+4 -1)
📝 frontend/rust-lib/collab-integrate/src/collab_builder.rs (+1 -2)
📝 frontend/rust-lib/flowy-database2/src/event_handler.rs (+15 -7)
📝 frontend/rust-lib/flowy-database2/src/event_map.rs (+3 -3)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+9 -0)
📝 frontend/rust-lib/flowy-folder/src/manager_init.rs (+6 -1)
📝 frontend/rust-lib/flowy-search/src/document/handler.rs (+6 -1)
📝 frontend/rust-lib/flowy-search/src/folder/indexer.rs (+42 -9)
📝 frontend/rust-lib/flowy-user/src/event_handler.rs (+4 -1)
📝 frontend/rust-lib/flowy-user/src/user_manager/manager_user_workspace.rs (+6 -3)

📄 Description

1.Delay collab initialization until the schema is configured.
2.Do not generate a search summary when the search results are empty.
3.Fix the folder indexer initialization error.
4.Adjust the window size.
5.Do not retrieve workspace usage when the current user is not the owner.
6.Fix the open relation database row issue. (TODO: Save the reference database view ID because the row order differs among database views.)


🔄 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/7761 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/16/2025 **Status:** ✅ Merged **Merged:** 4/16/2025 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `do_not_initialize_collab` --- ### 📝 Commits (10+) - [`be1d2b4`](https://github.com/AppFlowy-IO/AppFlowy/commit/be1d2b4b9259fb0a692f64c3b7fb14aa8aa4b2f1) chore: delay collab initialization until schema is configured; finalize to ensure collab includes its schema - [`3214ec0`](https://github.com/AppFlowy-IO/AppFlowy/commit/3214ec075be8dd3b2d51a309c66f6aa6cfcd419d) chore: fix flaky initialize folder indexer - [`e695101`](https://github.com/AppFlowy-IO/AppFlowy/commit/e6951012f0a9f27df394a324e72a196b8bb30e6c) chore: do not generate search summary if result is empty - [`be132d8`](https://github.com/AppFlowy-IO/AppFlowy/commit/be132d867a17e213d1e638918d48e4bdf92ab5f0) chore: lock analyzer version - [`ecfcf3b`](https://github.com/AppFlowy-IO/AppFlowy/commit/ecfcf3be4d15d82fcabb50905be3c38ec71fd617) chore: commit pub lock - [`92179fe`](https://github.com/AppFlowy-IO/AppFlowy/commit/92179fe61cb7ae7282de4996b2e82a980c50fdf0) chore: do not get workspace usage when current user is not owner - [`f652229`](https://github.com/AppFlowy-IO/AppFlowy/commit/f6522297184bccc02c7c259d635bb86e0b6790f2) fix: open relation database row - [`d7d040b`](https://github.com/AppFlowy-IO/AppFlowy/commit/d7d040b0f9e77494894dc17a57e2708c737a0b92) Merge branch 'main' into do_not_initialize_collab - [`0be8dcc`](https://github.com/AppFlowy-IO/AppFlowy/commit/0be8dcc000e6d2e21ac212b617bdf7a8933c2b2f) chore: remove duplciate - [`079112c`](https://github.com/AppFlowy-IO/AppFlowy/commit/079112c9d2343b50af547781eeb9715310fa7bae) chore: clippy ### 📊 Changes **18 files changed** (+164 additions, -67 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/application/row/related_row_detail_bloc.dart` (+14 -17) 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_window_size_manager.dart` (+6 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/menu/sidebar_sections_bloc.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/billing/settings_billing_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/plan/settings_plan_bloc.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/sidebar/billing/sidebar_plan_bloc.dart` (+18 -13) 📝 `frontend/appflowy_flutter/lib/workspace/application/sidebar/space/space_bloc.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart` (+16 -2) 📝 `frontend/appflowy_flutter/test/util.dart` (+4 -1) 📝 `frontend/rust-lib/collab-integrate/src/collab_builder.rs` (+1 -2) 📝 `frontend/rust-lib/flowy-database2/src/event_handler.rs` (+15 -7) 📝 `frontend/rust-lib/flowy-database2/src/event_map.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+9 -0) 📝 `frontend/rust-lib/flowy-folder/src/manager_init.rs` (+6 -1) 📝 `frontend/rust-lib/flowy-search/src/document/handler.rs` (+6 -1) 📝 `frontend/rust-lib/flowy-search/src/folder/indexer.rs` (+42 -9) 📝 `frontend/rust-lib/flowy-user/src/event_handler.rs` (+4 -1) 📝 `frontend/rust-lib/flowy-user/src/user_manager/manager_user_workspace.rs` (+6 -3) </details> ### 📄 Description 1.Delay collab initialization until the schema is configured. 2.Do not generate a search summary when the search results are empty. 3.Fix the folder indexer initialization error. 4.Adjust the window size. 5.Do not retrieve workspace usage when the current user is not the owner. 6.Fix the open relation database row issue. (TODO: Save the reference database view ID because the row order differs among database views.) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:22:35 +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#8096
No description provided.