Skip to content

Commit 197f5e4

Browse files
Version Packages
1 parent ca03e10 commit 197f5e4

File tree

9 files changed

+26
-28
lines changed

9 files changed

+26
-28
lines changed

.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/sql-mysql2/CHANGELOG.md

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

3+
## 0.47.1
4+
5+
### Patch Changes
6+
7+
- [#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
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.47.0
413

514
### Patch Changes

packages/sql-mysql2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effect/sql-mysql2",
3-
"version": "0.47.0",
3+
"version": "0.47.1",
44
"type": "module",
55
"license": "MIT",
66
"description": "A MySQL toolkit for Effect",

0 commit comments

Comments
 (0)