Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: FlowiseAI/Flowise
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: flowise@3.0.3
Choose a base ref
...
head repository: FlowiseAI/Flowise
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: flowise@3.0.4
Choose a head ref
  • 11 commits
  • 71 files changed
  • 11 contributors

Commits on Jun 30, 2025

  1. Bugfix/Remove Markdown in Condition (#4761)

    Feature/Add remove-markdown dependency and integrate into Condition node for text processing
    
    - Added `remove-markdown` package to `packages/components/package.json`.
    - Integrated `removeMarkdown` function in `Condition.ts` to sanitize string inputs by removing markdown formatting.
    HenryHengZJ authored Jun 30, 2025
    Configuration menu
    Copy the full SHA
    9b60cf1 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2025

  1. Bugfix/Add proper parsing for tool input args (#4780)

    add proper parsing for tool input args
    HenryHengZJ authored Jul 2, 2025
    Configuration menu
    Copy the full SHA
    bbf6970 View commit details
    Browse the repository at this point in the history
  2. adding performance config option to the AWS ChatBedrock component (#4777

    )
    
    * adding performance config option to the AWS ChatBedrock component
    
    * Update AWSChatBedrock.ts
    
    * Update pnpm-lock.yaml
    
    ---------
    
    Co-authored-by: Henry Heng <henryheng@flowiseai.com>
    cerashdan and HenryHengZJ authored Jul 2, 2025
    Configuration menu
    Copy the full SHA
    0627693 View commit details
    Browse the repository at this point in the history
  3. feat: add thinking budget parameter support for ChatGoogleVertexAI (#…

    …4557)
    
    * chore: update @langchain/google-vertexai add thinkingBudget parameter support
    
    * Update pnpm-lock.yaml
    
    * Update pnpm-lock.yaml
    
    ---------
    
    Co-authored-by: Henry <hzj94@hotmail.com>
    Co-authored-by: Henry Heng <henryheng@flowiseai.com>
    3 people authored Jul 2, 2025
    Configuration menu
    Copy the full SHA
    768de61 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2025

  1. Add Oxylabs Document Loader (#4625)

    * Add Oxylabs Document Loader
    
    * Update Oxylabs.ts
    
    ---------
    
    Co-authored-by: Henry Heng <henryheng@flowiseai.com>
    oxy-rostyslav and HenryHengZJ authored Jul 8, 2025
    Configuration menu
    Copy the full SHA
    a25c5c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2025

  1. fix(components): promise.all failed silently when loading MCP tools (#…

    …4750)
    
    * fix(components): promise.all failed silently when loading MCP tools
    
    * fix: satisfy linter format
    
    * fix(packages): pnpm lint-fix
    
    * Update core.ts
    
    ---------
    
    Co-authored-by: Henry Heng <henryheng@flowiseai.com>
    rickliujh and HenryHengZJ authored Jul 9, 2025
    Configuration menu
    Copy the full SHA
    aea2801 View commit details
    Browse the repository at this point in the history
  2. Bugfix: add missing getLabel prop to AgentReasoningCard (#4822)

    Bugfix: add missing getLabel prop to AgentReasoningCard #4821
    
    Co-authored-by: 강나훈 <nahoon.kang@mnc.ai>
    ejrtks1020 and nahoonkang authored Jul 9, 2025
    Configuration menu
    Copy the full SHA
    30e8317 View commit details
    Browse the repository at this point in the history
  3. Optimize export import (#4795)

    * feat: add saveBatch and optimize duplication id handling
    
    * feat: improve lookup performance by using Set
    chungyau97 authored Jul 9, 2025
    Configuration menu
    Copy the full SHA
    6baec93 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2025

  1. New Feature Pagination (#4704)

    * common pagination component
    
    * Pagination for Doc Store Dashboard
    
    * Pagination for Executions Dashboard
    
    * Pagination Support for Tables
    
    * lint fixes
    
    * update view message dialog UI
    
    * initial loading was ignoring the pagination counts
    
    * 1) default page size change
    2) ensure page limits are passed on load
    3) co-pilot review comments (n+1 query)
    4)
    
    * 1) default page size change
    2) ensure page limits are passed on load
    3) co-pilot review comments (n+1 query)
    4) refresh lists after insert/delete.
    
    * Enhancement: Improve handling of empty responses in DocumentStore and API key services
    
    - Added check for empty entities in DocumentStoreDTO.fromEntities to return an empty array.
    - Updated condition in getAllDocumentStores to handle total count correctly, allowing for zero total.
    - Refined logic in getAllApiKeys to check for empty keys and ensure correct API key retrieval.
    - Adjusted UI components to safely handle potential undefined apiKeys array.
    
    * Refresh API key list on pagination change
    
    * Enhancement: Update pagination and filter handling across components
    - Increased default items per page in AgentExecutions from 10 to 12.
    - Improved JSON parsing for chat type and feedback type filters in ViewMessagesDialog.
    - Enhanced execution filtering logic in AgentExecutions to ensure proper pagination and state management.
    - Refactored filter section in AgentExecutions for better readability and functionality.
    - Updated refresh logic in Agentflows to use the correct agentflow version.
    
    * add workspaceId to removeAllChatMessages
    
    * Refactor chat message retrieval logic for improved efficiency and maintainability
    
    - Introduced a new `handleFeedbackQuery` function to streamline feedback-related queries.
    - Enhanced pagination handling for session-based queries in `getMessagesWithFeedback`.
    - Updated `ViewMessagesDialog` to sort messages in descending order by default.
    - Simplified image rendering logic in `DocumentStoreTable` for better readability.
    
    * - Update  `validateChatflowAPIKey` and `validateAPIKey` functions to get the correct keys array
    - Enhanced error handling in the `sanitizeExecution` function to ensure safe access to nested properties
    
    * Refactor API key validation logic for improved accuracy and error handling
    
    - Consolidated API key validation in `validateAPIKey` to return detailed validation results.
    - Updated `validateFlowAPIKey` to streamline flow API key validation.
    - Introduced `getApiKeyById` function in the API key service for better key retrieval.
    - Removed unused function `getAllChatSessionsFromChatflow` from the chat message API.
    
    ---------
    
    Co-authored-by: Henry <hzj94@hotmail.com>
    vinodkiran and HenryHengZJ authored Jul 10, 2025
    Configuration menu
    Copy the full SHA
    bf05f25 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2025

  1. Configuration menu
    Copy the full SHA
    14fc1b4 View commit details
    Browse the repository at this point in the history
  2. Release/3.0.4 (#4845)

    flowise@3.0.4
    HenryHengZJ authored Jul 11, 2025
    Configuration menu
    Copy the full SHA
    849b94b View commit details
    Browse the repository at this point in the history
Loading