Langflow Release by @ogabrielluiz #241
release.yml
on: workflow_dispatch
CI
/
Check Nightly Status
3s
Matrix: CI / Lint Backend / Run Mypy
Matrix: CI / Run Backend Tests / build
Matrix: CI / Run Backend Tests / integration-tests
Matrix: CI / Run Backend Tests / test-cli
CI
/
...
/
Determine Test Suites and Shard Distribution
44s
Matrix: CI / Run Frontend Tests / setup-and-test
Call Docker Build Workflow for Langflow Base
/
Get Version
24s
Call Docker Build Workflow for Langflow
/
Get Version
23s
Call Docker Build Workflow for Langflow with Entrypoint
/
Get Version
27s
Create Release
12s
Call Docker Build Workflow for Langflow Base
/
setup
0s
Call Docker Build Workflow for Langflow with Entrypoint
/
setup
0s
Call Docker Build Workflow for Langflow Base
/
build
0s
Call Docker Build Workflow for Langflow
/
build
22m 50s
Call Docker Build Workflow for Langflow with Entrypoint
/
build
1h 42m
Matrix: Call Docker Build Workflow for Langflow Base / build_components
Matrix: Call Docker Build Workflow for Langflow Base / Restart HuggingFace Spaces
Matrix: Call Docker Build Workflow for Langflow / build_components
Matrix: Call Docker Build Workflow for Langflow / Restart HuggingFace Spaces
Matrix: Call Docker Build Workflow for Langflow with Entrypoint / build_components
Matrix: Call Docker Build Workflow for Langflow with Entrypoint / Restart HuggingFace Spaces
Annotations
4 errors and 62 warnings
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 5:
src/backend/tests/src/backend/tests/base.py#L146
TestChatInput.test_component_versions[1.1.0]
AssertionError: Failed to execute component TestChatInput for version 1.1.0:
Module: inputs
File: chat
Error: Blocking call to <method 'acquire' of '_thread.lock' objects>
Component Code: from langflow.base.data.utils import IMG_FILE_TYPES, TEXT_FILE_TYPES
from langflow.base.io.chat import ChatComponent
from langflow.inputs import BoolInput
from langflow.io import DropdownInput, FileInput, MessageTextInput, MultilineInput, Output
from langflow.schema.message import Message
from langflow.utils.constants import MESSAGE_SENDER_AI, MESSAGE_SENDER_NAME_USER, MESSAGE_SENDER_USER
class ChatInput(ChatComponent):
display_name = "Chat Input"
description = "Get chat inputs from the Playground."
icon = "MessagesSquare"
name = "ChatInput"
inputs = [
MultilineInput(
name="input_value",
display_name="Text",
value="",
info="Message to be passed as input.",
),
BoolInput(
name="should_store_message",
display_name="Store Messages",
info="Store the message in the history.",
value=True,
advanced=True,
),
DropdownInput(
name="sender",
display_name="Sender Type",
options=[MESSAGE_SENDER_AI, MESSAGE_SENDER_USER],
value=MESSAGE_SENDER_USER,
info="Type of sender.",
advanced=True,
),
MessageTextInput(
name="sender_name",
display_name="Sender Name",
info="Name of the sender.",
value=MESSAGE_SENDER_NAME_USER,
advanced=True,
),
MessageTextInput(
name="session_id",
display_name="Session ID",
info="The session ID of the chat. If empty, the current session ID parameter will be used.",
advanced=True,
),
FileInput(
name="files",
display_name="Files",
file_types=TEXT_FILE_TYPES + IMG_FILE_TYPES,
info="Files to be sent with the message.",
advanced=True,
is_list=True,
),
MessageTextInput(
name="background_color",
display_name="Background Color",
info="The background color of the icon.",
advanced=True,
),
MessageTextInput(
name="chat_icon",
display_name="Icon",
info="The icon of the message.",
advanced=True,
),
MessageTextInput(
name="text_color",
display_name="Text Color",
info="The text color of the name",
advanced=True,
),
]
outputs = [
Output(display_name="Message", name="message", method="message_response"),
]
def message_response(self) -> Message:
_background_color = self.background_color
_text_color = self.text_color
_icon = self.chat_icon
message = Message(
text=self.input_value,
sender=self.sender,
sender_name=self.sender_name,
session_id=self.session_id,
files=self.files,
properties={"background_color": _background_color, "text_color": _text_color, "icon": _icon},
)
if self.session_id and isinstance(message, Message) and self.should_store_message:
stored_message = self.send_message(
message,
)
self.message.value = stored_message
message = stored_message
self.status = message
return message
|
Call Docker Build Workflow for Langflow Base / Get Version
Process completed with exit code 1.
|
Call Docker Build Workflow for Langflow with Entrypoint / build
The run was canceled by @ogabrielluiz.
|
Call Docker Build Workflow for Langflow with Entrypoint / build
The operation was canceled.
|
CI / Check Nightly Status
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Should Run CI
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Filter Paths
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Filter Paths
'before' field is missing in event payload - changes will be detected from last commit
|
CI / Lint Backend / Run Mypy (3.10)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Lint Backend / Run Mypy (3.11)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Lint Backend / Run Mypy (3.12)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Integration Tests - Python 3.10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.12 - Group 2
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Integration Tests - Python 3.11
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 2
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.10 - Group 1
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.12 - Group 3
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.10 - Group 5
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.12 - Group 1
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.10 - Group 2
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.10 - Group 3
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 4
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 3
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 1
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.10 - Group 4
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Determine Test Suites and Shard Distribution
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Determine Test Suites and Shard Distribution
'before' field is missing in event payload - changes will be detected from last commit
|
CI / Run Backend Tests / Unit Tests - Python 3.12 - Group 4
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.12 - Group 5
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Integration Tests - Python 3.12
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 5
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Unit Tests - Python 3.11 - Group 5
Attempt 1 failed. Reason: Child_process exited with error code 2
|
CI / Test Docs Build / Test Docs Build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Test CLI - Python 3.11
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Test CLI - Python 3.12
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 3/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Backend Tests / Test CLI - Python 3.10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 10/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 9/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 2/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 4/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 8/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 6/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 7/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 5/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / Playwright Tests - Shard 1/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / Run Frontend Tests / merge-reports
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
CI / CI Success
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Release Langflow Base
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Release Langflow Main
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Create Release
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow / Get Version
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow Base / Get Version
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow with Entrypoint / Get Version
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow / setup
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow with Entrypoint / setup
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow / build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Empty continuation lines will become errors in a future release:
docker/build_and_push.Dockerfile#L35
NoEmptyContinuation: Empty continuation line
More info: https://docs.docker.com/go/dockerfile/rule/no-empty-continuation/
|
Empty continuation lines will become errors in a future release:
docker/build_and_push.Dockerfile#L35
NoEmptyContinuation: Empty continuation line
More info: https://docs.docker.com/go/dockerfile/rule/no-empty-continuation/
|
Call Docker Build Workflow for Langflow / Restart HuggingFace Spaces (3.12)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow / build_components (docker-backend)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Default value for global ARG results in an empty or invalid base image name:
docker/build_and_push_backend.Dockerfile#L5
InvalidDefaultArgInFrom: Default value for ARG $LANGFLOW_IMAGE results in empty or invalid base image name
More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/
|
Call Docker Build Workflow for Langflow / build_components (ghcr-backend)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Default value for global ARG results in an empty or invalid base image name:
docker/build_and_push_backend.Dockerfile#L5
InvalidDefaultArgInFrom: Default value for ARG $LANGFLOW_IMAGE results in empty or invalid base image name
More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/
|
Call Docker Build Workflow for Langflow / build_components (docker-frontend)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Call Docker Build Workflow for Langflow / build_components (ghcr-frontend)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
blob-report-1
Expired
|
166 MB |
|
blob-report-10
Expired
|
77.7 MB |
|
blob-report-2
Expired
|
85.4 MB |
|
blob-report-3
Expired
|
25.2 KB |
|
blob-report-4
Expired
|
86.8 MB |
|
blob-report-5
Expired
|
166 MB |
|
blob-report-6
Expired
|
103 MB |
|
blob-report-7
Expired
|
126 MB |
|
blob-report-8
Expired
|
68.6 MB |
|
blob-report-9
Expired
|
54.2 MB |
|
dist-main
|
12.4 MB |
|
langflow-ai~langflow~5LMSHJ.dockerbuild
|
40.6 KB |
|
langflow-ai~langflow~BQE3GN.dockerbuild
|
66.3 KB |
|
langflow-ai~langflow~GWHZTR.dockerbuild
|
61.1 KB |
|
langflow-ai~langflow~L60XVS.dockerbuild
|
81.6 KB |
|
langflow-ai~langflow~MUORX6.dockerbuild
|
45.2 KB |
|
langflow-ai~langflow~UV6N9F.dockerbuild
|
198 KB |
|