Skip to content

Commit 5fcf70d

Browse files
Version Packages
1 parent 5df4da1 commit 5fcf70d

File tree

13 files changed

+60
-43
lines changed

13 files changed

+60
-43
lines changed

.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/fix-prompt-text-wrap.md

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

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

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

packages/cli/CHANGELOG.md

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

3+
## 0.73.2
4+
5+
### Patch Changes
6+
7+
- [#6022](https://github.com/Effect-TS/effect/pull/6022) [`5df4da1`](https://github.com/Effect-TS/effect/commit/5df4da10de444f379a166f4b28721e75100bb838) Thanks @m9tdev! - Fixed `Prompt.text` rendering duplicate lines when input text wraps to a new terminal line.
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.73.1
414

515
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effect/cli",
3-
"version": "0.73.1",
3+
"version": "0.73.2",
44
"type": "module",
55
"license": "MIT",
66
"description": "A library for building command-line interfaces with Effect",

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

0 commit comments

Comments
 (0)