Skip to content

Commit 68a2d0d

Browse files
Merge commit '6c2ff92ccf083f038d9a97a749b4e0f30a60247a' into coder-agent
* commit '6c2ff92ccf083f038d9a97a749b4e0f30a60247a': (255 commits) docs: Update documentation and add TAVILY_API_KEY to environment variables (langflow-ai#7366) docs: mcp server component and integrations (langflow-ai#7286) docs: v1.3 (langflow-ai#7160) chore(deps-dev): bump vite from 5.4.14 to 5.4.16 in /src/frontend (langflow-ai#7365) fix: add secret key loading functionality to basic templates (langflow-ai#7363) docs: platform content (langflow-ai#7091) chore: bump langflow and langflow-base for 1.3.0 release (langflow-ai#7362) docs: ensure asset paths update on draft rebuilds (langflow-ai#7355) fix: Prevent API key banner from displaying when key is unavailable (langflow-ai#7356) fix: MCP SSE Model tool mode issue (langflow-ai#7360) feat: deprecate Parsing component and replace them in starter projects (langflow-ai#6697) fix: fixed the parser component (langflow-ai#7303) ref: split ast parsing / class exec loops (langflow-ai#7248) feat: Update AgentQL templates (langflow-ai#7165) feat: add a unified local vector store (langflow-ai#6995) fix: update currentflow to be fetched from Flow Store for icon to be rendered correctly (langflow-ai#7354) feat: expose serialization truncation constants in /config route (langflow-ai#7316) feat: lmprove MCP langflow port selection and error handling (langflow-ai#7327) fix: adds priority sorting for sidebar components and makes LanguageModel appear first (langflow-ai#7322) fix: make agent work with new tool mode backend updates (langflow-ai#7314) ... # Conflicts: # src/frontend/src/utils/styleUtils.ts 更新到V1.3.0
2 parents 5130e4c + 6c2ff92 commit 68a2d0d

File tree

769 files changed

+65809
-30948
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

769 files changed

+65809
-30948
lines changed

.composio.lock

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ Dockerfile text
3333
*.svg binary
3434
*.csv binary
3535
*.wav binary
36+
*.raw binary

.github/ISSUE_TEMPLATE/bug-report.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
attributes:
77
value: |
88
Thanks for taking the time to fill out this bug report!
9-
9+
1010
- type: textarea
1111
id: description
1212
attributes:
@@ -55,14 +55,13 @@ body:
5555
Specific Areas:
5656
5757
Frontend:
58-
- @anovazzi1
5958
- @Cristhianzl
6059
- @lucaseduoli
6160
- @igorrCarvalho
62-
61+
6362
Backend:
6463
- @italojohnny
65-
64+
6665
Full Stack:
6766
- @ogabrielluiz
6867
- @nicoloboschi
@@ -76,15 +75,15 @@ body:
7675
- type: markdown
7776
attributes:
7877
value: '## Environment'
79-
78+
8079
- type: input
8180
id: os
8281
attributes:
8382
label: Operating System
8483
placeholder: ex. Ubuntu Linux 22.04
8584
validations:
8685
required: true
87-
86+
8887
- type: input
8988
id: langflow-version
9089
attributes:

.github/actions/poetry_caching/action.yml

-99
This file was deleted.

.github/workflows/ci.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,29 @@ jobs:
5757
with:
5858
script: |
5959
const workflow_name = 'nightly_build.yml';
60+
const today = new Date();
61+
today.setHours(0, 0, 0, 0); // Set to beginning of day
62+
6063
const { data: runs } = await github.rest.actions.listWorkflowRuns({
6164
owner: context.repo.owner,
6265
repo: context.repo.repo,
6366
workflow_id: workflow_name,
64-
per_page: 1,
67+
created: `>=${today.toISOString()}`,
68+
per_page: 100, // Get more runs to check
6569
status: 'completed'
6670
});
6771
6872
if (runs.workflow_runs.length === 0) {
69-
console.log('No completed workflow runs found');
73+
console.log('No completed workflow runs found today');
7074
return core.setOutput('success', 'true');
7175
}
7276
73-
const lastRun = runs.workflow_runs[0];
74-
const success = lastRun.conclusion === 'success';
75-
console.log(`Last nightly build status: ${lastRun.conclusion}`);
76-
core.setOutput('success', success.toString());
77+
// Check if any runs today were successful
78+
const successfulTodayRuns = runs.workflow_runs.filter(run => run.conclusion === 'success');
79+
const hasSuccessfulRunToday = successfulTodayRuns.length > 0;
80+
81+
console.log(`Found ${runs.workflow_runs.length} completed runs today, ${successfulTodayRuns.length} successful`);
82+
core.setOutput('success', hasSuccessfulRunToday.toString());
7783
7884
set-ci-condition:
7985
needs: check-nightly-status

0 commit comments

Comments
 (0)