Skip to content

Commit 1e6ce16

Browse files
chore: update versions (#95)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7384d3f commit 1e6ce16

12 files changed

Lines changed: 57 additions & 19 deletions

File tree

.changeset/tough-cups-smoke.md

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

.changeset/unified-fallbacks-array.md

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

packages/bridge-compiler/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @stackables/bridge-compiler
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- [#96](https://github.com/stackables/bridge/pull/96) [`7384d3f`](https://github.com/stackables/bridge/commit/7384d3f404197babbd5771ab7cd84f14d0cd392f) Thanks [@aarne](https://github.com/aarne)! - Migrate wire shape from separate `falsyFallback*`/`nullishFallback*` properties to a unified `fallbacks: WireFallback[]` array, enabling mixed `||` and `??` chains in any order (e.g. `A ?? B || C ?? D`).
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`7384d3f`](https://github.com/stackables/bridge/commit/7384d3f404197babbd5771ab7cd84f14d0cd392f)]:
12+
- @stackables/bridge-core@1.4.0
13+
314
## 2.2.0
415

516
### Minor Changes

packages/bridge-compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackables/bridge-compiler",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Compiles a BridgeDocument into highly optimized JavaScript code",
55
"main": "./build/index.js",
66
"type": "module",

packages/bridge-core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @stackables/bridge-core
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- [#96](https://github.com/stackables/bridge/pull/96) [`7384d3f`](https://github.com/stackables/bridge/commit/7384d3f404197babbd5771ab7cd84f14d0cd392f) Thanks [@aarne](https://github.com/aarne)! - Migrate wire shape from separate `falsyFallback*`/`nullishFallback*` properties to a unified `fallbacks: WireFallback[]` array, enabling mixed `||` and `??` chains in any order (e.g. `A ?? B || C ?? D`).
8+
39
## 1.3.0
410

511
### Minor Changes

packages/bridge-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackables/bridge-core",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"description": "Bridge runtime engine — execute pre-compiled bridge instructions",
55
"main": "./build/index.js",
66
"type": "module",

packages/bridge-graphql/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @stackables/bridge-graphql
22

3+
## 1.1.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`7384d3f`](https://github.com/stackables/bridge/commit/7384d3f404197babbd5771ab7cd84f14d0cd392f)]:
8+
- @stackables/bridge-core@1.4.0
9+
310
## 1.1.3
411

512
### Patch Changes

packages/bridge-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackables/bridge-graphql",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Bridge GraphQL adapter — wire bridges into a GraphQL schema",
55
"main": "./build/index.js",
66
"type": "module",

packages/bridge-parser/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @stackables/bridge-parser
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- [#96](https://github.com/stackables/bridge/pull/96) [`7384d3f`](https://github.com/stackables/bridge/commit/7384d3f404197babbd5771ab7cd84f14d0cd392f) Thanks [@aarne](https://github.com/aarne)! - Migrate wire shape from separate `falsyFallback*`/`nullishFallback*` properties to a unified `fallbacks: WireFallback[]` array, enabling mixed `||` and `??` chains in any order (e.g. `A ?? B || C ?? D`).
8+
9+
### Patch Changes
10+
11+
- [#94](https://github.com/stackables/bridge/pull/94) [`93bbb94`](https://github.com/stackables/bridge/commit/93bbb9453d4f8babbcdeed352a37a92d8ef8aa7e) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Fix chained `||` literal fallback parsing so authored left-to-right short-circuiting is preserved after safe pulls (`?.`), and add regression coverage for mixed `||` + `??` chains.
12+
13+
- Updated dependencies [[`7384d3f`](https://github.com/stackables/bridge/commit/7384d3f404197babbd5771ab7cd84f14d0cd392f)]:
14+
- @stackables/bridge-core@1.4.0
15+
316
## 1.2.0
417

518
### Minor Changes

packages/bridge-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackables/bridge-parser",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "Bridge DSL parser — turns .bridge text into a BridgeDocument (AST)",
55
"main": "./build/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)