Skip to content
Merged
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/brave-tigers-unite.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fix-graph-neighbors-undirected.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/salty-glasses-take.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/thick-gifts-live.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-days-wish.md

This file was deleted.

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

## 3.18.5

### Patch Changes

- [#5669](https://github.com/Effect-TS/effect/pull/5669) [`a537469`](https://github.com/Effect-TS/effect/commit/a5374696bdabee005bf75d7b1b57f8bee7763cba) Thanks @fubhy! - Fix Graph.neighbors() returning self-loops in undirected graphs.

Graph.neighbors() now correctly returns the other endpoint for undirected graphs instead of always returning edge.target, which caused nodes to appear as their own neighbors when queried from the target side of an edge.

- [#5628](https://github.com/Effect-TS/effect/pull/5628) [`52d5963`](https://github.com/Effect-TS/effect/commit/52d59635f35406bd27874ca0090f8642432928f4) Thanks @mikearnaldi! - Make sure AsEffect is computed

- [#5671](https://github.com/Effect-TS/effect/pull/5671) [`463345d`](https://github.com/Effect-TS/effect/commit/463345d734fb462dc284d590193b7843dc104d78) Thanks @gcanti! - JSON Schema generation: add `jsonSchema2020-12` target and fix tuple output for:
- JSON Schema 2019-09
- OpenAPI 3.1

## 3.18.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.18.4",
"version": "3.18.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.18.4"
let moduleVersion = "3.18.5"

export const getCurrentVersion = () => moduleVersion

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

## 0.71.2

### Patch Changes

- [#5664](https://github.com/Effect-TS/effect/pull/5664) [`2603745`](https://github.com/Effect-TS/effect/commit/2603745badd442870673ee9ab49e2652ecbaba4f) Thanks @lucas-barake! - Expose disableFatalDefects option in RPC server public API

- Updated dependencies [[`a537469`](https://github.com/Effect-TS/effect/commit/a5374696bdabee005bf75d7b1b57f8bee7763cba), [`52d5963`](https://github.com/Effect-TS/effect/commit/52d59635f35406bd27874ca0090f8642432928f4), [`463345d`](https://github.com/Effect-TS/effect/commit/463345d734fb462dc284d590193b7843dc104d78)]:
- [email protected]

## 0.71.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/rpc",
"version": "0.71.1",
"version": "0.71.2",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
9 changes: 9 additions & 0 deletions packages/sql-mysql2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/sql-mysql2

## 0.47.1

### Patch Changes

- [#5632](https://github.com/Effect-TS/effect/pull/5632) [`979d1c1`](https://github.com/Effect-TS/effect/commit/979d1c10cdb32817f64c1efb9daa41a1d8e8ff3d) Thanks @andrephilipsson! - Support config.url in MysqlMigrator

- Updated dependencies [[`a537469`](https://github.com/Effect-TS/effect/commit/a5374696bdabee005bf75d7b1b57f8bee7763cba), [`52d5963`](https://github.com/Effect-TS/effect/commit/52d59635f35406bd27874ca0090f8642432928f4), [`463345d`](https://github.com/Effect-TS/effect/commit/463345d734fb462dc284d590193b7843dc104d78)]:
- [email protected]

## 0.47.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sql-mysql2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/sql-mysql2",
"version": "0.47.0",
"version": "0.47.1",
"type": "module",
"license": "MIT",
"description": "A MySQL toolkit for Effect",
Expand Down