Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@
"project-union-schema",
"project-union-subsets",
"projectable-from-domain",
"projectable-key-guard-project",
"provide-dual",
"publish-tsconfig-postpack",
"pure-usesync-cleanup",
Expand Down Expand Up @@ -302,6 +303,7 @@
"request-scoped-dependencies",
"require-middleware-layers",
"resolver-cache-use-official",
"restore-tight-project-guard",
"router-no-meta",
"rpc-stream-support",
"salty-weeks-walk",
Expand Down
10 changes: 10 additions & 0 deletions packages/e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect-app/e2e

## 4.0.0-beta.307

### Patch Changes

- Updated dependencies [40585ca]
- Updated dependencies [ad0ede6]
- effect-app@4.0.0-beta.307
- @effect-app/infra@4.0.0-beta.307
- @effect-app/vue@4.0.0-beta.307

## 4.0.0-beta.306

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/e2e",
"version": "4.0.0-beta.306",
"version": "4.0.0-beta.307",
"license": "MIT",
"type": "module",
"private": true,
Expand Down
15 changes: 15 additions & 0 deletions packages/effect-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @effect-app/prelude

## 4.0.0-beta.307

### Patch Changes

- 40585ca: Keep tag-aware `ProjectableFromDomain` for `projectComputed` only; restore loose key-presence guard for `project()` so view DTOs with reshaped fields keep typechecking.
- ad0ede6: Keep tag-aware `ProjectableGuard` on both `project()` and `projectComputed` (no loose key-only paper-over).

Hardening:

- single-literal tags allow dual same-tag domain variants (KeysOfUnion of matched members)
- multi-tag / string tags still require keys on every matched member
- optional projection/domain keys checked by key presence only (not optional-assignability)

Call sites must project domain-owned fields per tagged state.

## 4.0.0-beta.306

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/effect-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "effect-app",
"version": "4.0.0-beta.306",
"version": "4.0.0-beta.307",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
19 changes: 19 additions & 0 deletions packages/infra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @effect-app/infra

## 4.0.0-beta.307

### Patch Changes

- 40585ca: Keep tag-aware `ProjectableFromDomain` for `projectComputed` only; restore loose key-presence guard for `project()` so view DTOs with reshaped fields keep typechecking.
- ad0ede6: Keep tag-aware `ProjectableGuard` on both `project()` and `projectComputed` (no loose key-only paper-over).

Hardening:

- single-literal tags allow dual same-tag domain variants (KeysOfUnion of matched members)
- multi-tag / string tags still require keys on every matched member
- optional projection/domain keys checked by key presence only (not optional-assignability)

Call sites must project domain-owned fields per tagged state.

- Updated dependencies [40585ca]
- Updated dependencies [ad0ede6]
- effect-app@4.0.0-beta.307

## 4.0.0-beta.306

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/infra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/infra",
"version": "4.0.0-beta.306",
"version": "4.0.0-beta.307",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
20 changes: 20 additions & 0 deletions packages/vue-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @effect-app/vue-components

## 4.0.0-beta.307

### Patch Changes

- 40585ca: Keep tag-aware `ProjectableFromDomain` for `projectComputed` only; restore loose key-presence guard for `project()` so view DTOs with reshaped fields keep typechecking.
- ad0ede6: Keep tag-aware `ProjectableGuard` on both `project()` and `projectComputed` (no loose key-only paper-over).

Hardening:

- single-literal tags allow dual same-tag domain variants (KeysOfUnion of matched members)
- multi-tag / string tags still require keys on every matched member
- optional projection/domain keys checked by key presence only (not optional-assignability)

Call sites must project domain-owned fields per tagged state.

- Updated dependencies [40585ca]
- Updated dependencies [ad0ede6]
- effect-app@4.0.0-beta.307
- @effect-app/vue@4.0.0-beta.307

## 4.0.0-beta.306

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/vue-components",
"version": "4.0.0-beta.306",
"version": "4.0.0-beta.307",
"repository": {
"type": "git",
"url": "https://github.com/effect-app/libs.git",
Expand Down
19 changes: 19 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @effect-app/vue

## 4.0.0-beta.307

### Patch Changes

- 40585ca: Keep tag-aware `ProjectableFromDomain` for `projectComputed` only; restore loose key-presence guard for `project()` so view DTOs with reshaped fields keep typechecking.
- ad0ede6: Keep tag-aware `ProjectableGuard` on both `project()` and `projectComputed` (no loose key-only paper-over).

Hardening:

- single-literal tags allow dual same-tag domain variants (KeysOfUnion of matched members)
- multi-tag / string tags still require keys on every matched member
- optional projection/domain keys checked by key presence only (not optional-assignability)

Call sites must project domain-owned fields per tagged state.

- Updated dependencies [40585ca]
- Updated dependencies [ad0ede6]
- effect-app@4.0.0-beta.307

## 4.0.0-beta.306

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/vue",
"version": "4.0.0-beta.306",
"version": "4.0.0-beta.307",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
Loading