Skip to content

Commit 5a9a851

Browse files
Version Packages
1 parent e71889f commit 5a9a851

10 files changed

Lines changed: 49 additions & 37 deletions

File tree

.changeset/fix-append-url-path-joining.md

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

.changeset/fix-match-tag-nullable.md

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

.changeset/readd-stream-sql-pg.md

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

packages/effect/CHANGELOG.md

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

3+
## 3.19.16
4+
5+
### Patch Changes
6+
7+
- [#6018](https://github.com/Effect-TS/effect/pull/6018) [`e71889f`](https://github.com/Effect-TS/effect/commit/e71889f35b081d13b7da2c04d2f81d6933056b49) Thanks @codewithkenzo! - fix(Match): handle null/undefined in `Match.tag` and `Match.tagStartsWith`
8+
9+
Added null checks to `discriminator` and `discriminatorStartsWith` predicates to prevent crashes when matching nullable union types.
10+
11+
Fixes #6017
12+
313
## 3.19.15
414

515
### 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.19.15",
3+
"version": "3.19.16",
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.19.15"
1+
let moduleVersion = "3.19.16"
22

33
export const getCurrentVersion = () => moduleVersion
44

packages/platform/CHANGELOG.md

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

3+
## 0.94.3
4+
5+
### Patch Changes
6+
7+
- [#6021](https://github.com/Effect-TS/effect/pull/6021) [`0023c19`](https://github.com/Effect-TS/effect/commit/0023c19c63c402c050d496817ba92aceea7f25b7) Thanks @codewithkenzo! - Fix `HttpClientRequest.appendUrl` to properly join URL paths.
8+
9+
Previously, `appendUrl` used simple string concatenation which could produce invalid URLs:
10+
11+
```typescript
12+
// Before (broken):
13+
appendUrl("https://api.example.com/v1", "users")
14+
// Result: "https://api.example.com/v1users" (missing slash!)
15+
```
16+
17+
Now it ensures proper path joining:
18+
19+
```typescript
20+
// After (fixed):
21+
appendUrl("https://api.example.com/v1", "users")
22+
// Result: "https://api.example.com/v1/users"
23+
```
24+
25+
- Updated dependencies [[`e71889f`](https://github.com/Effect-TS/effect/commit/e71889f35b081d13b7da2c04d2f81d6933056b49)]:
26+
- effect@3.19.16
27+
328
## 0.94.2
429

530
### 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.94.2",
4+
"version": "0.94.3",
55
"license": "MIT",
66
"description": "Unified interfaces for common platform-specific services",
77
"homepage": "https://effect.website",

packages/sql-pg/CHANGELOG.md

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

3+
## 0.50.2
4+
5+
### Patch Changes
6+
7+
- [#5998](https://github.com/Effect-TS/effect/pull/5998) [`7b8165f`](https://github.com/Effect-TS/effect/commit/7b8165f45779380fea8ac8e09badef898b63eb41) Thanks @Brandon-Perry! - Readded stream as an optional parameter to PgClientConfig.
8+
9+
- Updated dependencies [[`0023c19`](https://github.com/Effect-TS/effect/commit/0023c19c63c402c050d496817ba92aceea7f25b7), [`e71889f`](https://github.com/Effect-TS/effect/commit/e71889f35b081d13b7da2c04d2f81d6933056b49)]:
10+
- @effect/platform@0.94.3
11+
- effect@3.19.16
12+
313
## 0.50.1
414

515
### Patch Changes

packages/sql-pg/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-pg",
3-
"version": "0.50.1",
3+
"version": "0.50.2",
44
"type": "module",
55
"license": "MIT",
66
"description": "A PostgreSQL toolkit for Effect",

0 commit comments

Comments
 (0)