diff --git a/.changeset/funky-jars-accept.md b/.changeset/funky-jars-accept.md deleted file mode 100644 index ff39a867..00000000 --- a/.changeset/funky-jars-accept.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@stackables/bridge-compiler": minor -"@stackables/bridge-graphql": minor -"@stackables/bridge-parser": minor -"@stackables/bridge-core": minor -"@stackables/bridge": minor ---- - -New internal wire structure with recursive expressions diff --git a/.changeset/sharp-badgers-switch.md b/.changeset/sharp-badgers-switch.md deleted file mode 100644 index a8c1bef9..00000000 --- a/.changeset/sharp-badgers-switch.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@stackables/bridge-compiler": minor -"@stackables/bridge-parser": minor -"@stackables/bridge-core": minor -"@stackables/bridge": minor ---- - -New alias syntax alias name <- source.from ?? "full syntax" catch "supported" diff --git a/packages/bridge-compiler/CHANGELOG.md b/packages/bridge-compiler/CHANGELOG.md index ae1f8ed7..244b6484 100644 --- a/packages/bridge-compiler/CHANGELOG.md +++ b/packages/bridge-compiler/CHANGELOG.md @@ -1,5 +1,18 @@ # @stackables/bridge-compiler +## 2.5.0 + +### Minor Changes + +- [#132](https://github.com/stackables/bridge/pull/132) [`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b) Thanks [@aarne](https://github.com/aarne)! - New internal wire structure with recursive expressions + +- [#135](https://github.com/stackables/bridge/pull/135) [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb) Thanks [@aarne](https://github.com/aarne)! - New alias syntax alias name <- source.from ?? "full syntax" catch "supported" + +### Patch Changes + +- Updated dependencies [[`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b), [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb)]: + - @stackables/bridge-core@1.8.0 + ## 2.4.4 ### Patch Changes diff --git a/packages/bridge-compiler/package.json b/packages/bridge-compiler/package.json index 0812fef7..e07a8640 100644 --- a/packages/bridge-compiler/package.json +++ b/packages/bridge-compiler/package.json @@ -1,6 +1,6 @@ { "name": "@stackables/bridge-compiler", - "version": "2.4.4", + "version": "2.5.0", "description": "Compiles a BridgeDocument into highly optimized JavaScript code", "main": "./src/index.ts", "type": "module", diff --git a/packages/bridge-core/CHANGELOG.md b/packages/bridge-core/CHANGELOG.md index b9b23a29..de95e619 100644 --- a/packages/bridge-core/CHANGELOG.md +++ b/packages/bridge-core/CHANGELOG.md @@ -1,5 +1,13 @@ # @stackables/bridge-core +## 1.8.0 + +### Minor Changes + +- [#132](https://github.com/stackables/bridge/pull/132) [`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b) Thanks [@aarne](https://github.com/aarne)! - New internal wire structure with recursive expressions + +- [#135](https://github.com/stackables/bridge/pull/135) [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb) Thanks [@aarne](https://github.com/aarne)! - New alias syntax alias name <- source.from ?? "full syntax" catch "supported" + ## 1.7.0 ### Minor Changes diff --git a/packages/bridge-core/package.json b/packages/bridge-core/package.json index 74256b99..8e79c731 100644 --- a/packages/bridge-core/package.json +++ b/packages/bridge-core/package.json @@ -1,6 +1,6 @@ { "name": "@stackables/bridge-core", - "version": "1.7.0", + "version": "1.8.0", "description": "Bridge runtime engine — execute pre-compiled bridge instructions", "main": "./src/index.ts", "type": "module", diff --git a/packages/bridge-graphql/CHANGELOG.md b/packages/bridge-graphql/CHANGELOG.md index 679a5193..2dbf12d4 100644 --- a/packages/bridge-graphql/CHANGELOG.md +++ b/packages/bridge-graphql/CHANGELOG.md @@ -1,5 +1,16 @@ # @stackables/bridge-graphql +## 1.3.0 + +### Minor Changes + +- [#132](https://github.com/stackables/bridge/pull/132) [`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b) Thanks [@aarne](https://github.com/aarne)! - New internal wire structure with recursive expressions + +### Patch Changes + +- Updated dependencies [[`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b), [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb)]: + - @stackables/bridge-core@1.8.0 + ## 1.2.4 ### Patch Changes diff --git a/packages/bridge-graphql/package.json b/packages/bridge-graphql/package.json index 904afbc1..7dbd7422 100644 --- a/packages/bridge-graphql/package.json +++ b/packages/bridge-graphql/package.json @@ -1,6 +1,6 @@ { "name": "@stackables/bridge-graphql", - "version": "1.2.4", + "version": "1.3.0", "description": "Bridge GraphQL adapter — wire bridges into a GraphQL schema", "main": "./src/index.ts", "type": "module", diff --git a/packages/bridge-parser/CHANGELOG.md b/packages/bridge-parser/CHANGELOG.md index 9c9661dc..0bf70f52 100644 --- a/packages/bridge-parser/CHANGELOG.md +++ b/packages/bridge-parser/CHANGELOG.md @@ -1,5 +1,18 @@ # @stackables/bridge-parser +## 1.5.0 + +### Minor Changes + +- [#132](https://github.com/stackables/bridge/pull/132) [`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b) Thanks [@aarne](https://github.com/aarne)! - New internal wire structure with recursive expressions + +- [#135](https://github.com/stackables/bridge/pull/135) [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb) Thanks [@aarne](https://github.com/aarne)! - New alias syntax alias name <- source.from ?? "full syntax" catch "supported" + +### Patch Changes + +- Updated dependencies [[`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b), [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb)]: + - @stackables/bridge-core@1.8.0 + ## 1.4.4 ### Patch Changes diff --git a/packages/bridge-parser/package.json b/packages/bridge-parser/package.json index 6e14d5c3..f7eb0f53 100644 --- a/packages/bridge-parser/package.json +++ b/packages/bridge-parser/package.json @@ -1,6 +1,6 @@ { "name": "@stackables/bridge-parser", - "version": "1.4.4", + "version": "1.5.0", "description": "Bridge DSL parser — turns .bridge text into a BridgeDocument (AST)", "main": "./src/index.ts", "type": "module", diff --git a/packages/bridge/CHANGELOG.md b/packages/bridge/CHANGELOG.md index 22381fbf..a363af0f 100644 --- a/packages/bridge/CHANGELOG.md +++ b/packages/bridge/CHANGELOG.md @@ -1,5 +1,20 @@ # @stackables/bridge +## 2.4.0 + +### Minor Changes + +- [#132](https://github.com/stackables/bridge/pull/132) [`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b) Thanks [@aarne](https://github.com/aarne)! - New internal wire structure with recursive expressions + +- [#135](https://github.com/stackables/bridge/pull/135) [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb) Thanks [@aarne](https://github.com/aarne)! - New alias syntax alias name <- source.from ?? "full syntax" catch "supported" + +### Patch Changes + +- Updated dependencies [[`11c5a06`](https://github.com/stackables/bridge/commit/11c5a066a1803f2b2313b047a682553076fadb9b), [`a927780`](https://github.com/stackables/bridge/commit/a927780dcf0af7e2317d48164b7ff7dd68e9bafb)]: + - @stackables/bridge-graphql@1.3.0 + - @stackables/bridge-parser@1.5.0 + - @stackables/bridge-core@1.8.0 + ## 2.3.3 ### Patch Changes diff --git a/packages/bridge/package.json b/packages/bridge/package.json index ddc6e926..3aebe614 100644 --- a/packages/bridge/package.json +++ b/packages/bridge/package.json @@ -1,6 +1,6 @@ { "name": "@stackables/bridge", - "version": "2.3.3", + "version": "2.4.0", "description": "Declarative dataflow for GraphQL", "main": "./src/index.ts", "type": "module",