Merged
Conversation
… clarity - Removed unused imports in `push_meta.rs` and `delete_files.rs`. - Updated error handling in `upsert_bit.rs` to ignore the error variable. - Added new `invoke` module and routes for presigning in `app.rs`. - Enhanced permission checks in `delete_board.rs`, `execute_commands.rs`, and other routes to include `CredentialsAccess`. - Introduced `SharedCredentials` handling in `invoke/presign.rs` for better credential management. - Refactored scoped app and credentials retrieval across multiple routes to include access modes. - Added AWS credentials handling in `credentials.rs` and `aws_credentials.rs`. - Improved attachment handling in the chat interface to prevent duplicates. - Updated storage system to handle write operations more effectively.
…nent refactor: enhance dialog structure and formatting in templates page fix: correct credential handling in board and event state classes refactor: standardize spacing and formatting in storage state component refactor: improve readability of chat interface and welcome components refactor: adjust theme loading function for better compatibility
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several updates across multiple files, focusing on dependency updates, credential handling improvements, and new functionality for storage and API routes. Below is a categorized summary of the most important changes:
Dependency Updates
chronofrom0.4.39to0.4.41andaws-configfrom1.8.0to1.8.3inCargo.toml. Addedaws-sdk-stsas a new dependency. [1] [2]packages/api/Cargo.tomlto use workspace versions.Credential Handling Enhancements
CredentialsAccessenum and added a methodinto_shared_credentialsinpackages/api/src/credentials.rsto improve credential management. [1] [2]credentialsinexecute_boardandexecute_eventfunctions inapps/desktop/src-tauri/src/functions/flow/run.rs. [1] [2]Storage and File Management
writeStorageItemsmethod inStorageStateto handle file downloads and writes using the TaurisaveandopenAPIs.apps/desktop/components/tauri-provider/storage-state.tsto improve code clarity and functionality. [1] [2]API Enhancements
invokeroute under the app namespace inpackages/api/src/routes/app.rs. [1] [2]CredentialsAccessfor better permission handling, such as indelete_board,execute_commands, anddelete_files. [1] [2] [3]Minor Fixes and Cleanups
get_boardto avoid unnecessary data exposure.These changes collectively improve the project's functionality, security, and maintainability. Let me know if you have any questions about specific changes!