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
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@
"typed-query-builders",
"unify-emailer-spans",
"unify-parsemany-spans",
"update-effect-beta-107",
"update-effect-beta-36",
"update-effect-beta-52",
"update-effect-beta-60-rpc-custom",
Expand Down
21 changes: 21 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @effect-app/cli

## 2.1.0-beta.40

### Patch Changes

- 547e2e1: Update effect packages to `4.0.0-beta.107` (from `beta.90`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`, and `fast-check` to `^4.9.0`. Sync `repos/effect` subtree from `Effect-TS/effect` (effect-smol stopped publishing tags after beta.98).

API adaptations for beta.107:

- `concurrency: "inherit"` → `"unbounded"`
- `Schema.ErrorClass` / `TaggedErrorClass` → `Schema.Error` / `TaggedError`
- `Schema.LazyArbitrary` → `Schema.Arbitrary`
- `Schema.DateValid` / `isDateValid` removed (`Schema.Date` rejects invalid dates)
- `SchemaIssue` constructors no longer take `Option` (annotations + input)
- filter meta via `annotations.representation` instead of `annotations.meta`
- `context.defaultValue` → `context.constructorDefault` (single Link)
- Class detection via `~constructor` + static `identifier`
- Redacted detection via `representation.id`
- localized StandardSchema hooks updated for new issue/input model
- provide `NodeCrypto.layer` for cluster sqlite tests
- default `sync-effect` subtree URL → `Effect-TS/effect`

## 2.1.0-beta.39

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/cli",
"version": "2.1.0-beta.39",
"version": "2.1.0-beta.40",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions packages/e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect-app/e2e

## 4.0.0-beta.311

### Patch Changes

- Updated dependencies [547e2e1]
- effect-app@4.0.0-beta.311
- @effect-app/infra@4.0.0-beta.311
- @effect-app/vue@4.0.0-beta.311

## 4.0.0-beta.310

### 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.310",
"version": "4.0.0-beta.311",
"license": "MIT",
"type": "module",
"private": true,
Expand Down
21 changes: 21 additions & 0 deletions packages/effect-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @effect-app/prelude

## 4.0.0-beta.311

### Patch Changes

- 547e2e1: Update effect packages to `4.0.0-beta.107` (from `beta.90`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`, and `fast-check` to `^4.9.0`. Sync `repos/effect` subtree from `Effect-TS/effect` (effect-smol stopped publishing tags after beta.98).

API adaptations for beta.107:

- `concurrency: "inherit"` → `"unbounded"`
- `Schema.ErrorClass` / `TaggedErrorClass` → `Schema.Error` / `TaggedError`
- `Schema.LazyArbitrary` → `Schema.Arbitrary`
- `Schema.DateValid` / `isDateValid` removed (`Schema.Date` rejects invalid dates)
- `SchemaIssue` constructors no longer take `Option` (annotations + input)
- filter meta via `annotations.representation` instead of `annotations.meta`
- `context.defaultValue` → `context.constructorDefault` (single Link)
- Class detection via `~constructor` + static `identifier`
- Redacted detection via `representation.id`
- localized StandardSchema hooks updated for new issue/input model
- provide `NodeCrypto.layer` for cluster sqlite tests
- default `sync-effect` subtree URL → `Effect-TS/effect`

## 4.0.0-beta.310

## 4.0.0-beta.309
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.310",
"version": "4.0.0-beta.311",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
24 changes: 24 additions & 0 deletions packages/infra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @effect-app/infra

## 4.0.0-beta.311

### Patch Changes

- 547e2e1: Update effect packages to `4.0.0-beta.107` (from `beta.90`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`, and `fast-check` to `^4.9.0`. Sync `repos/effect` subtree from `Effect-TS/effect` (effect-smol stopped publishing tags after beta.98).

API adaptations for beta.107:

- `concurrency: "inherit"` → `"unbounded"`
- `Schema.ErrorClass` / `TaggedErrorClass` → `Schema.Error` / `TaggedError`
- `Schema.LazyArbitrary` → `Schema.Arbitrary`
- `Schema.DateValid` / `isDateValid` removed (`Schema.Date` rejects invalid dates)
- `SchemaIssue` constructors no longer take `Option` (annotations + input)
- filter meta via `annotations.representation` instead of `annotations.meta`
- `context.defaultValue` → `context.constructorDefault` (single Link)
- Class detection via `~constructor` + static `identifier`
- Redacted detection via `representation.id`
- localized StandardSchema hooks updated for new issue/input model
- provide `NodeCrypto.layer` for cluster sqlite tests
- default `sync-effect` subtree URL → `Effect-TS/effect`

- Updated dependencies [547e2e1]
- effect-app@4.0.0-beta.311

## 4.0.0-beta.310

### 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.310",
"version": "4.0.0-beta.311",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
25 changes: 25 additions & 0 deletions packages/vue-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @effect-app/vue-components

## 4.0.0-beta.311

### Patch Changes

- 547e2e1: Update effect packages to `4.0.0-beta.107` (from `beta.90`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`, and `fast-check` to `^4.9.0`. Sync `repos/effect` subtree from `Effect-TS/effect` (effect-smol stopped publishing tags after beta.98).

API adaptations for beta.107:

- `concurrency: "inherit"` → `"unbounded"`
- `Schema.ErrorClass` / `TaggedErrorClass` → `Schema.Error` / `TaggedError`
- `Schema.LazyArbitrary` → `Schema.Arbitrary`
- `Schema.DateValid` / `isDateValid` removed (`Schema.Date` rejects invalid dates)
- `SchemaIssue` constructors no longer take `Option` (annotations + input)
- filter meta via `annotations.representation` instead of `annotations.meta`
- `context.defaultValue` → `context.constructorDefault` (single Link)
- Class detection via `~constructor` + static `identifier`
- Redacted detection via `representation.id`
- localized StandardSchema hooks updated for new issue/input model
- provide `NodeCrypto.layer` for cluster sqlite tests
- default `sync-effect` subtree URL → `Effect-TS/effect`

- Updated dependencies [547e2e1]
- effect-app@4.0.0-beta.311
- @effect-app/vue@4.0.0-beta.311

## 4.0.0-beta.310

### 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.310",
"version": "4.0.0-beta.311",
"repository": {
"type": "git",
"url": "https://github.com/effect-app/libs.git",
Expand Down
24 changes: 24 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @effect-app/vue

## 4.0.0-beta.311

### Patch Changes

- 547e2e1: Update effect packages to `4.0.0-beta.107` (from `beta.90`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/atom-vue`, `@effect/sql-sqlite-node`, `@effect/vitest`, and `fast-check` to `^4.9.0`. Sync `repos/effect` subtree from `Effect-TS/effect` (effect-smol stopped publishing tags after beta.98).

API adaptations for beta.107:

- `concurrency: "inherit"` → `"unbounded"`
- `Schema.ErrorClass` / `TaggedErrorClass` → `Schema.Error` / `TaggedError`
- `Schema.LazyArbitrary` → `Schema.Arbitrary`
- `Schema.DateValid` / `isDateValid` removed (`Schema.Date` rejects invalid dates)
- `SchemaIssue` constructors no longer take `Option` (annotations + input)
- filter meta via `annotations.representation` instead of `annotations.meta`
- `context.defaultValue` → `context.constructorDefault` (single Link)
- Class detection via `~constructor` + static `identifier`
- Redacted detection via `representation.id`
- localized StandardSchema hooks updated for new issue/input model
- provide `NodeCrypto.layer` for cluster sqlite tests
- default `sync-effect` subtree URL → `Effect-TS/effect`

- Updated dependencies [547e2e1]
- effect-app@4.0.0-beta.311

## 4.0.0-beta.310

### 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.310",
"version": "4.0.0-beta.311",
"license": "MIT",
"type": "module",
"repository": {
Expand Down
Loading