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
8 changes: 0 additions & 8 deletions .changeset/rename-parser-and-compiler.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/bridge-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @stackables/bridge-compiler

## 2.0.0

### Major Changes

- [#78](https://github.com/stackables/bridge/pull/78) [`ce6cb8a`](https://github.com/stackables/bridge/commit/ce6cb8a8e6e8288e8ab73f7ce44d14b205c70c91) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Rename `@stackables/bridge-compiler` to `@stackables/bridge-parser` (parser, serializer, language service). The new `@stackables/bridge-compiler` package compiles BridgeDocument into optimized JavaScript code with abort signal support, tool timeout, and full language feature parity.

bridge-parser first release will continue from current bridge-compiler version 1.0.6. New version of bridge-compiler will jump to 2.0.0 to mark a breaking change in the package purpose
2 changes: 1 addition & 1 deletion packages/bridge-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stackables/bridge-compiler",
"version": "1.0.6",
"version": "2.0.0",
"description": "Compiles a BridgeDocument into highly optimized JavaScript code",
"main": "./build/index.js",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions packages/bridge-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @stackables/bridge-parser

## 1.1.0

### Minor Changes

- [#78](https://github.com/stackables/bridge/pull/78) [`ce6cb8a`](https://github.com/stackables/bridge/commit/ce6cb8a8e6e8288e8ab73f7ce44d14b205c70c91) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Rename `@stackables/bridge-compiler` to `@stackables/bridge-parser` (parser, serializer, language service). The new `@stackables/bridge-compiler` package compiles BridgeDocument into optimized JavaScript code with abort signal support, tool timeout, and full language feature parity.

bridge-parser first release will continue from current bridge-compiler version 1.0.6. New version of bridge-compiler will jump to 2.0.0 to mark a breaking change in the package purpose

## 1.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stackables/bridge-parser",
"version": "1.0.6",
"version": "1.1.0",
"description": "Bridge DSL parser — turns .bridge text into a BridgeDocument (AST)",
"main": "./build/index.js",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions packages/bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @stackables/bridge

## 2.1.2

### Patch Changes

- Updated dependencies [[`ce6cb8a`](https://github.com/stackables/bridge/commit/ce6cb8a8e6e8288e8ab73f7ce44d14b205c70c91)]:
- @stackables/bridge-parser@1.1.0

## 2.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stackables/bridge",
"version": "2.1.1",
"version": "2.1.2",
"description": "Declarative dataflow for GraphQL",
"main": "./build/index.js",
"type": "module",
Expand Down
Loading