Skip to content

Commit 43ee30d

Browse files
Version Packages
1 parent 0023c19 commit 43ee30d

File tree

6 files changed

+33
-26
lines changed

6 files changed

+33
-26
lines changed

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

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

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

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

packages/platform/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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+
325
## 0.94.2
426

527
### 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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
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)]:
10+
- @effect/platform@0.94.3
11+
312
## 0.50.1
413

514
### 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)