Skip to content

Commit ad8c3d7

Browse files
Version Packages
1 parent cfa2bbf commit ad8c3d7

10 files changed

Lines changed: 29 additions & 19 deletions

File tree

.changeset/anthropic-streaming-cached-input-tokens.md

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

.changeset/fix-cron-next-missing-day-overflow.md

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

.changeset/fix-httplayerrouter-shared-error-encoder.md

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

packages/ai/anthropic/CHANGELOG.md

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

3+
## 0.26.1
4+
5+
### Patch Changes
6+
7+
- [#6288](https://github.com/Effect-TS/effect/pull/6288) [`cfa2bbf`](https://github.com/Effect-TS/effect/commit/cfa2bbf7f290e88e2c57480eb9b2d7b058389cda) Thanks @davidgoli! - populate `cachedInputTokens` in streaming responses from `cache_read_input_tokens`
8+
9+
- Updated dependencies [[`95c7d2e`](https://github.com/Effect-TS/effect/commit/95c7d2ed435cf4cc954cf015304952a0fffbebc7), [`99d5575`](https://github.com/Effect-TS/effect/commit/99d5575a1401b375b5a73f87fb5bf7e46c372f2f)]:
10+
- effect@3.21.5
11+
- @effect/platform@0.96.3
12+
313
## 0.26.0
414

515
### Patch Changes

packages/ai/anthropic/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-anthropic",
33
"type": "module",
4-
"version": "0.26.0",
4+
"version": "0.26.1",
55
"license": "MIT",
66
"description": "Effect modules for working with AI apis",
77
"homepage": "https://effect.website",

packages/effect/CHANGELOG.md

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

3+
## 3.21.5
4+
5+
### Patch Changes
6+
7+
- [#6285](https://github.com/Effect-TS/effect/pull/6285) [`95c7d2e`](https://github.com/Effect-TS/effect/commit/95c7d2ed435cf4cc954cf015304952a0fffbebc7) Thanks @chatman-media! - Fix `Cron.next` skipping earlier matching days when the upcoming day-of-month does not exist in the current month. For an expression like `0 0 1,16,31 * *`, advancing from a date past the 16th selected day 31; in a month without 31 days this overflowed into the following month and landed on a later matching day (e.g. the 16th), silently skipping the 1st. `Cron.next` now wraps to the first matching day of the next month in that case, matching the behaviour of `Cron.prev` and other cron implementations.
8+
39
## 3.21.4
410

511
### Patch 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.4",
3+
"version": "3.21.5",
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.4"
1+
let moduleVersion = "3.21.5"
22

33
export const getCurrentVersion = () => moduleVersion
44

packages/platform/CHANGELOG.md

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

3+
## 0.96.3
4+
5+
### Patch Changes
6+
7+
- [#6244](https://github.com/Effect-TS/effect/pull/6244) [`99d5575`](https://github.com/Effect-TS/effect/commit/99d5575a1401b375b5a73f87fb5bf7e46c372f2f) Thanks @spokodev! - Fix `HttpLayerRouter.addHttpApi` so two registered APIs no longer share error encoders. Previously each call's middleware was added to a shared context map and applied to every route, so a 500 response from one API was sometimes encoded against the other API's error schema. The fix scopes each API's middleware to its own endpoints (matched by method + path) and wraps each route handler directly.
8+
9+
- Updated dependencies [[`95c7d2e`](https://github.com/Effect-TS/effect/commit/95c7d2ed435cf4cc954cf015304952a0fffbebc7)]:
10+
- effect@3.21.5
11+
312
## 0.96.2
413

514
### Patch Changes

packages/platform/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@effect/platform",
33
"type": "module",
4-
"version": "0.96.2",
4+
"version": "0.96.3",
55
"license": "MIT",
66
"description": "Unified interfaces for common platform-specific services",
77
"homepage": "https://effect.website",

0 commit comments

Comments
 (0)