[PR #6857] [CLOSED] chore: bump hotfix version 0.7.5 #7609

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6857
Author: @LucasXu0
Created: 11/25/2024
Status: Closed

Base: release/0.7.4Head: hotfix/0.7.5


📝 Commits (10+)

  • 3d8e6eb chore: delete upload task when upload size exceed limit (#6841)
  • 1bcda39 chore: only fetch billing info when current user is the workspace owner (#6847)
  • 76710ea fix: macOS error 50 on uploading files (#6853)
  • 3a26570 feat: support click to create content inside empty toggle list (#6854)
  • 8dcd4c5 chore: bump flutter chat ui version (#6835)
  • 6a02679 chore: parse chat response (#6843)
  • df82c99 fix: loading message hot fix (#6858)
  • 570de3e feat: support skipping in-memory update transaction (#6856)
  • e64462c chore: bump version 0.7.5
  • e5f30b0 chore: update changelog

📊 Changes

74 files changed (+2560 additions, -1100 deletions)

View changed files

📝 CHANGELOG.md (+9 -1)
📝 README.md (+48 -17)
📝 frontend/Makefile.toml (+1 -1)
frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_ai_writer_test.dart (+47 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_test_runner.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_image_block_test.dart (+0 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_multi_image_block_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_toggle_list_test.dart (+21 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_full_field_editor.dart (+4 -2)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_ai_message_bloc.dart (+47 -38)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_bloc.dart (+246 -310)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_entity.dart (+17 -8)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_message_service.dart (+74 -51)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_message_stream.dart (+6 -4)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_user_message_bloc.dart (+1 -5)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_user_message_bubble_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/chat_page.dart (+175 -162)
frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/animated_chat_list.dart (+405 -0)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/desktop_ai_prompt_input.dart (+4 -11)
📝 frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/mobile_ai_prompt_input.dart (+3 -11)

...and 54 more files

📄 Description

Feature Preview

don't merge it


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/6857 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 11/25/2024 **Status:** ❌ Closed **Base:** `release/0.7.4` ← **Head:** `hotfix/0.7.5` --- ### 📝 Commits (10+) - [`3d8e6eb`](https://github.com/AppFlowy-IO/AppFlowy/commit/3d8e6ebd720231ea36421162d8c8e370ef28d651) chore: delete upload task when upload size exceed limit (#6841) - [`1bcda39`](https://github.com/AppFlowy-IO/AppFlowy/commit/1bcda3944fee94737b1debe57a9ce7d0df17c885) chore: only fetch billing info when current user is the workspace owner (#6847) - [`76710ea`](https://github.com/AppFlowy-IO/AppFlowy/commit/76710ea2449595501a4df0a08f19cc22e33f1a59) fix: macOS error 50 on uploading files (#6853) - [`3a26570`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a26570de979f7bdc365861ae232cf0c634ed31d) feat: support click to create content inside empty toggle list (#6854) - [`8dcd4c5`](https://github.com/AppFlowy-IO/AppFlowy/commit/8dcd4c51f07033bd226eff1e26a3c799e80d949a) chore: bump flutter chat ui version (#6835) - [`6a02679`](https://github.com/AppFlowy-IO/AppFlowy/commit/6a02679963268b1fa286e74145d419268d0a101c) chore: parse chat response (#6843) - [`df82c99`](https://github.com/AppFlowy-IO/AppFlowy/commit/df82c997558d2c07b6d8567b20e63c54b5d2242e) fix: loading message hot fix (#6858) - [`570de3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/570de3e1a5d8c06990f0bad983b135bca85aa18d) feat: support skipping in-memory update transaction (#6856) - [`e64462c`](https://github.com/AppFlowy-IO/AppFlowy/commit/e64462ca9ae5c45c45385b8c4e7eb4e723b4ae14) chore: bump version 0.7.5 - [`e5f30b0`](https://github.com/AppFlowy-IO/AppFlowy/commit/e5f30b000cf9539e700b3a8b17a98691c8b3f750) chore: update changelog ### 📊 Changes **74 files changed** (+2560 additions, -1100 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+9 -1) 📝 `README.md` (+48 -17) 📝 `frontend/Makefile.toml` (+1 -1) ➕ `frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_ai_writer_test.dart` (+47 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_test_runner.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_image_block_test.dart` (+0 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_multi_image_block_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_toggle_list_test.dart` (+21 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_full_field_editor.dart` (+4 -2) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_ai_message_bloc.dart` (+47 -38) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_bloc.dart` (+246 -310) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_entity.dart` (+17 -8) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_message_service.dart` (+74 -51) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_message_stream.dart` (+6 -4) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_user_message_bloc.dart` (+1 -5) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_user_message_bubble_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/chat_page.dart` (+175 -162) ➕ `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/animated_chat_list.dart` (+405 -0) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/desktop_ai_prompt_input.dart` (+4 -11) 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/presentation/chat_input/mobile_ai_prompt_input.dart` (+3 -11) _...and 54 more files_ </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 don't merge it - [x] delete upload task when upload size exceed limit - [x] only fetch billing info when current user is the workspace owner - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/6776 - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/6807 - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/6796 - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/6737 - [x] https://github.com/AppFlowy-IO/AppFlowy/pull/6843 - [x] https://github.com/AppFlowy-IO/AppFlowy/pull/6835 - [x] https://github.com/AppFlowy-IO/AppFlowy/pull/6856 <!--- 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:20:25 +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#7609
No description provided.