Skip to content

Commit 55c75cd

Browse files
Version Packages
1 parent ec5c505 commit 55c75cd

10 files changed

Lines changed: 30 additions & 21 deletions

File tree

.changeset/fix-batched-resolver-defect-hang.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/fix-cli-log-level-equals.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-openrouter-referer-header.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/ai/openrouter/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @effect/ai-openrouter
22

3+
## 0.10.1
4+
5+
### Patch Changes
6+
7+
- [#6145](https://github.com/Effect-TS/effect/pull/6145) [`6c39a34`](https://github.com/Effect-TS/effect/commit/6c39a34c6145811f5c41292f03bf7939cfa8e70d) Thanks @LikiosSedo! - Fix typo in HTTP header name: `HTTP-Referrer``HTTP-Referer`. The HTTP spec spells it "Referer" (single r), and OpenRouter expects this exact header name for app attribution.
8+
9+
- Updated dependencies [[`f99048e`](https://github.com/Effect-TS/effect/commit/f99048e9f4b89ce1afe31e1827dee5d751ddaa5b)]:
10+
- effect@3.21.1
11+
312
## 0.10.0
413

514
### Patch Changes

packages/ai/openrouter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@effect/ai-openrouter",
33
"type": "module",
4-
"version": "0.10.0",
4+
"version": "0.10.1",
55
"license": "MIT",
66
"description": "Effect modules for working with AI apis",
77
"homepage": "https://effect.website",

packages/cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @effect/cli
22

3+
## 0.75.1
4+
5+
### Patch Changes
6+
7+
- [#6144](https://github.com/Effect-TS/effect/pull/6144) [`ec5c505`](https://github.com/Effect-TS/effect/commit/ec5c50507b1a2f5ad712c148a7da0fadb8cb9f52) Thanks @LikiosSedo! - Fix `--log-level=value` equals syntax incorrectly swallowing the next argument. Only skip the next arg when the previous arg is exactly `--log-level` (space-separated form).
8+
9+
- Updated dependencies [[`f99048e`](https://github.com/Effect-TS/effect/commit/f99048e9f4b89ce1afe31e1827dee5d751ddaa5b)]:
10+
- effect@3.21.1
11+
312
## 0.75.0
413

514
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effect/cli",
3-
"version": "0.75.0",
3+
"version": "0.75.1",
44
"type": "module",
55
"license": "MIT",
66
"description": "A library for building command-line interfaces with Effect",

packages/effect/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# effect
22

3+
## 3.21.1
4+
5+
### Patch Changes
6+
7+
- [#6139](https://github.com/Effect-TS/effect/pull/6139) [`f99048e`](https://github.com/Effect-TS/effect/commit/f99048e9f4b89ce1afe31e1827dee5d751ddaa5b) Thanks @marbemac! - Fix batched request resolver defects causing consumer fibers to hang forever.
8+
9+
When a `RequestResolver.makeBatched` resolver died with a defect, the request `Deferred`s were never completed because the cleanup logic in `invokeWithInterrupt` used `flatMap` (which only runs on success). Changed to `ensuring` so uncompleted request entries are always resolved regardless of exit type.
10+
311
## 3.21.0
412

513
### Minor Changes

packages/effect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "effect",
3-
"version": "3.21.0",
3+
"version": "3.21.1",
44
"type": "module",
55
"license": "MIT",
66
"description": "The missing standard library for TypeScript, for writing production-grade software.",

packages/effect/src/internal/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let moduleVersion = "3.21.0"
1+
let moduleVersion = "3.21.1"
22

33
export const getCurrentVersion = () => moduleVersion
44

0 commit comments

Comments
 (0)