Skip to content

Commit

Permalink
Release @latest (#780)
Browse files Browse the repository at this point in the history
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
## [email protected]

### Minor Changes

- [#776](#776)
[`0dbcc87`](0dbcc87)
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](#776)
[`0dbcc87`](0dbcc87)
Thanks [@jpwilliams](https://github.com/jpwilliams)! - Use
`@inngest/test@workspace:^` internally for testing

## @inngest/[email protected]

### Patch Changes

- [#776](#776)
[`0dbcc87`](0dbcc87)
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`](0dbcc87),
[`0dbcc87`](0dbcc87)]:
    -   [email protected]

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
inngest-release-bot and github-actions[bot] authored Dec 12, 2024
1 parent 0dbcc87 commit 12e4425
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 26 deletions.
5 changes: 0 additions & 5 deletions .changeset/cyan-sheep-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dull-students-wink.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/silver-dolls-mix.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/inngest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/inngest/jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
Expand Down Expand Up @@ -38,4 +38,4 @@
"./nitro": "./src/nitro.ts",
"./types": "./src/types.ts"
}
}
}
2 changes: 1 addition & 1 deletion packages/inngest/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
9 changes: 9 additions & 0 deletions packages/test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)]:
- [email protected]

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/test/jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/test/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 12e4425

Please sign in to comment.