[PR #121] [MERGED] Version Packages #127

Closed
opened 2026-02-16 03:16:15 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/workflows-ts/pull/121
Author: @github-actions[bot]
Created: 6/25/2025
Status: Merged
Merged: 6/25/2025
Merged by: @himself65

Base: mainHead: changeset-release/main


📝 Commits (2)

📊 Changes

8 files changed (+62 additions, -47 deletions)

View changed files

.changeset/cruel-breads-trade.md (+0 -43)
📝 packages/core/CHANGELOG.md (+44 -0)
📝 packages/core/jsr.json (+1 -1)
📝 packages/core/package.json (+1 -1)
📝 packages/http/CHANGELOG.md (+7 -0)
📝 packages/http/package.json (+1 -1)
📝 tests/cjs/CHANGELOG.md (+7 -0)
📝 tests/cjs/package.json (+1 -1)

📄 Description

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@llamaindex/workflow-core@1.0.0

Major Changes

  • 095fb04: chore: major release

    🌊 is a simple, lightweight workflow engine, in TypeScript.

    First, define events

    import { workflowEvent } from "@llamaindex/workflow-core";
    
    const startEvent = workflowEvent<string>();
    const stopEvent = workflowEvent<1 | -1>();
    

    Connect events with workflow

    import { createWorkflow } from "@llamaindex/workflow-core";
    
    const convertEvent = workflowEvent();
    
    const workflow = createWorkflow();
    
    workflow.handle([startEvent], (start) => {
      return convertEvent.with(Number.parseInt(start.data, 10));
    });
    workflow.handle([convertEvent], (convert) => {
      return stopEvent.with(convert.data > 0 ? 1 : -1);
    });
    

    Trigger workflow

    import { pipeline } from "node:stream/promises";
    
    const { stream, sendEvent } = workflow.createContext();
    sendEvent(startEvent.with());
    const allEvents = await stream.until(stopEvent).toArray();
    

@llamaindex/workflow-http@1.0.0

Patch Changes

  • Updated dependencies [095fb04]
    • @llamaindex/workflow-core@1.0.0

workflows-ts-cjs-test@1.0.4

Patch Changes

  • Updated dependencies [095fb04]
    • @llamaindex/workflow-core@1.0.0

🔄 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/run-llama/workflows-ts/pull/121 **Author:** [@github-actions[bot]](https://github.com/apps/github-actions) **Created:** 6/25/2025 **Status:** ✅ Merged **Merged:** 6/25/2025 **Merged by:** [@himself65](https://github.com/himself65) **Base:** `main` ← **Head:** `changeset-release/main` --- ### 📝 Commits (2) - [`bb52780`](https://github.com/run-llama/workflows-ts/commit/bb527807da94a301b8b83ef9792126f41cb16a25) Version Packages - [`73c561b`](https://github.com/run-llama/workflows-ts/commit/73c561be9f2a6a479458e8186c4eb2d4eaf01efe) chore: update jsr.json ### 📊 Changes **8 files changed** (+62 additions, -47 deletions) <details> <summary>View changed files</summary> ➖ `.changeset/cruel-breads-trade.md` (+0 -43) 📝 `packages/core/CHANGELOG.md` (+44 -0) 📝 `packages/core/jsr.json` (+1 -1) 📝 `packages/core/package.json` (+1 -1) 📝 `packages/http/CHANGELOG.md` (+7 -0) 📝 `packages/http/package.json` (+1 -1) 📝 `tests/cjs/CHANGELOG.md` (+7 -0) 📝 `tests/cjs/package.json` (+1 -1) </details> ### 📄 Description This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @llamaindex/workflow-core@1.0.0 ### Major Changes - 095fb04: chore: major release 🌊 is a simple, lightweight workflow engine, in TypeScript. ### First, define events ```ts import { workflowEvent } from "@llamaindex/workflow-core"; const startEvent = workflowEvent<string>(); const stopEvent = workflowEvent<1 | -1>(); ``` ### Connect events with workflow ```ts import { createWorkflow } from "@llamaindex/workflow-core"; const convertEvent = workflowEvent(); const workflow = createWorkflow(); workflow.handle([startEvent], (start) => { return convertEvent.with(Number.parseInt(start.data, 10)); }); workflow.handle([convertEvent], (convert) => { return stopEvent.with(convert.data > 0 ? 1 : -1); }); ``` ### Trigger workflow ```ts import { pipeline } from "node:stream/promises"; const { stream, sendEvent } = workflow.createContext(); sendEvent(startEvent.with()); const allEvents = await stream.until(stopEvent).toArray(); ``` ## @llamaindex/workflow-http@1.0.0 ### Patch Changes - Updated dependencies [095fb04] - @llamaindex/workflow-core@1.0.0 ## workflows-ts-cjs-test@1.0.4 ### Patch Changes - Updated dependencies [095fb04] - @llamaindex/workflow-core@1.0.0 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 03:16:15 -05:00
yindo closed this issue 2026-02-16 03:16:15 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/workflows-ts#127