Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/anthropic-streaming-cached-input-tokens.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-cron-next-missing-day-overflow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-httplayerrouter-shared-error-encoder.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/ai/anthropic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/ai-anthropic

## 0.26.1

### Patch Changes

- [#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`

- Updated dependencies [[`95c7d2e`](https://github.com/Effect-TS/effect/commit/95c7d2ed435cf4cc954cf015304952a0fffbebc7), [`99d5575`](https://github.com/Effect-TS/effect/commit/99d5575a1401b375b5a73f87fb5bf7e46c372f2f)]:
- effect@3.21.5
- @effect/platform@0.96.3

## 0.26.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ai/anthropic/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/ai-anthropic",
"type": "module",
"version": "0.26.0",
"version": "0.26.1",
"license": "MIT",
"description": "Effect modules for working with AI apis",
"homepage": "https://effect.website",
Expand Down
6 changes: 6 additions & 0 deletions packages/effect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# effect

## 3.21.5

### Patch Changes

- [#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.

## 3.21.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/effect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "effect",
"version": "3.21.4",
"version": "3.21.5",
"type": "module",
"license": "MIT",
"description": "The missing standard library for TypeScript, for writing production-grade software.",
Expand Down
2 changes: 1 addition & 1 deletion packages/effect/src/internal/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let moduleVersion = "3.21.4"
let moduleVersion = "3.21.5"

export const getCurrentVersion = () => moduleVersion

Expand Down
9 changes: 9 additions & 0 deletions packages/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/platform

## 0.96.3

### Patch Changes

- [#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.

- Updated dependencies [[`95c7d2e`](https://github.com/Effect-TS/effect/commit/95c7d2ed435cf4cc954cf015304952a0fffbebc7)]:
- effect@3.21.5

## 0.96.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/platform",
"type": "module",
"version": "0.96.2",
"version": "0.96.3",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
"homepage": "https://effect.website",
Expand Down