diff --git a/.changeset/cyan-sheep-train.md b/.changeset/cyan-sheep-train.md deleted file mode 100644 index ca59b095d..000000000 --- a/.changeset/cyan-sheep-train.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"inngest": patch ---- - -Use `@inngest/test@workspace:^` internally for testing diff --git a/.changeset/dull-students-wink.md b/.changeset/dull-students-wink.md deleted file mode 100644 index 48adece99..000000000 --- a/.changeset/dull-students-wink.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@inngest/test": patch ---- - -Altered exports to now be namespaced by `./dist/`; if you have directly imported files from `@inngest/test`, you may need to change the imports diff --git a/.changeset/silver-dolls-mix.md b/.changeset/silver-dolls-mix.md deleted file mode 100644 index a12ddcb67..000000000 --- a/.changeset/silver-dolls-mix.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"inngest": minor ---- - -Add experimental `getAsyncCtx()`, allowing the retrieval of a run's input (`event`, `step`, `runId`, etc) from the relevant async chain. - -```ts -import { getAsyncCtx } from "inngest/experimental"; - -const ctx = await getAsyncCtx(); -``` diff --git a/packages/inngest/CHANGELOG.md b/packages/inngest/CHANGELOG.md index 550e1b58d..49de86d89 100644 --- a/packages/inngest/CHANGELOG.md +++ b/packages/inngest/CHANGELOG.md @@ -1,5 +1,21 @@ # inngest +## 3.28.0 + +### Minor Changes + +- [#776](https://github.com/inngest/inngest-js/pull/776) [`0dbcc87`](https://github.com/inngest/inngest-js/commit/0dbcc874206d8d87c2c1da1773e5390968dfa527) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Add experimental `getAsyncCtx()`, allowing the retrieval of a run's input (`event`, `step`, `runId`, etc) from the relevant async chain. + + ```ts + import { getAsyncCtx } from "inngest/experimental"; + + const ctx = await getAsyncCtx(); + ``` + +### Patch Changes + +- [#776](https://github.com/inngest/inngest-js/pull/776) [`0dbcc87`](https://github.com/inngest/inngest-js/commit/0dbcc874206d8d87c2c1da1773e5390968dfa527) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Use `@inngest/test@workspace:^` internally for testing + ## 3.27.5 ### Patch Changes diff --git a/packages/inngest/jsr.json b/packages/inngest/jsr.json index ca315c3e4..5bb91c4bc 100644 --- a/packages/inngest/jsr.json +++ b/packages/inngest/jsr.json @@ -2,7 +2,7 @@ "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@inngest/sdk", "description": "Official SDK for Inngest.com. Inngest is the reliability layer for modern applications. Inngest combines durable execution, events, and queues into a zero-infra platform with built-in observability.", - "version": "3.27.5", + "version": "3.28.0", "include": [ "./src/**/*.ts" ], @@ -38,4 +38,4 @@ "./nitro": "./src/nitro.ts", "./types": "./src/types.ts" } -} +} \ No newline at end of file diff --git a/packages/inngest/package.json b/packages/inngest/package.json index 3d33bcdfb..42705114d 100644 --- a/packages/inngest/package.json +++ b/packages/inngest/package.json @@ -1,6 +1,6 @@ { "name": "inngest", - "version": "3.27.5", + "version": "3.28.0", "description": "Official SDK for Inngest.com. Inngest is the reliability layer for modern applications. Inngest combines durable execution, events, and queues into a zero-infra platform with built-in observability.", "main": "./index.js", "types": "./index.d.ts", diff --git a/packages/test/CHANGELOG.md b/packages/test/CHANGELOG.md index b5fdde536..fa4c2d8be 100644 --- a/packages/test/CHANGELOG.md +++ b/packages/test/CHANGELOG.md @@ -1,5 +1,14 @@ # @inngest/test +## 0.1.4 + +### Patch Changes + +- [#776](https://github.com/inngest/inngest-js/pull/776) [`0dbcc87`](https://github.com/inngest/inngest-js/commit/0dbcc874206d8d87c2c1da1773e5390968dfa527) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Altered exports to now be namespaced by `./dist/`; if you have directly imported files from `@inngest/test`, you may need to change the imports + +- Updated dependencies [[`0dbcc87`](https://github.com/inngest/inngest-js/commit/0dbcc874206d8d87c2c1da1773e5390968dfa527), [`0dbcc87`](https://github.com/inngest/inngest-js/commit/0dbcc874206d8d87c2c1da1773e5390968dfa527)]: + - inngest@3.28.0 + ## 0.1.3 ### Patch Changes diff --git a/packages/test/jsr.json b/packages/test/jsr.json index 2012106a5..0a4b7fbc0 100644 --- a/packages/test/jsr.json +++ b/packages/test/jsr.json @@ -2,7 +2,7 @@ "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@inngest/test", "description": "Tooling for testing Inngest functions.", - "version": "0.1.3", + "version": "0.1.4", "include": [ "./src/**/*.ts" ], diff --git a/packages/test/package.json b/packages/test/package.json index b4ff7d6e6..09b4c59bc 100644 --- a/packages/test/package.json +++ b/packages/test/package.json @@ -1,6 +1,6 @@ { "name": "@inngest/test", - "version": "0.1.3", + "version": "0.1.4", "description": "Tooling for testing Inngest functions.", "main": "./dist/index.js", "types": "./dist/index.d.ts",