Skip to content

Commit d1b27e0

Browse files
Version Packages
1 parent 2603745 commit d1b27e0

File tree

12 files changed

+36
-34
lines changed

12 files changed

+36
-34
lines changed

.changeset/brave-tigers-unite.md

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

.changeset/fix-graph-neighbors-undirected.md

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

.changeset/salty-glasses-take.md

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

.changeset/thick-gifts-live.md

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

.changeset/wet-days-wish.md

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

packages/effect/CHANGELOG.md

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

3+
## 3.18.5
4+
5+
### Patch Changes
6+
7+
- [#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.
8+
9+
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.
10+
11+
- [#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
12+
13+
- [#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:
14+
- JSON Schema 2019-09
15+
- OpenAPI 3.1
16+
317
## 3.18.4
418

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

33
export const getCurrentVersion = () => moduleVersion
44

packages/rpc/CHANGELOG.md

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

3+
## 0.71.2
4+
5+
### Patch Changes
6+
7+
- [#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
8+
9+
- 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)]:
10+
11+
312
## 0.71.1
413

514
### Patch Changes

packages/rpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effect/rpc",
3-
"version": "0.71.1",
3+
"version": "0.71.2",
44
"type": "module",
55
"license": "MIT",
66
"description": "Functional programming in TypeScript",

0 commit comments

Comments
 (0)