Skip to content

Commit

Permalink
Merge pull request #176 from apollographql/fix-taken-ports
Browse files Browse the repository at this point in the history
Create dynamic urls for mocked subgraphs
  • Loading branch information
michael-watson authored Feb 14, 2024
2 parents 332a9aa + 96030d3 commit 20bb93c
Show file tree
Hide file tree
Showing 9 changed files with 772 additions and 864 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ${{ matrix.os }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '20'
check-latest: true
#Bump version
- name: 'Automated Version Bump'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
runs-on: ${{ matrix.os }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '20'
check-latest: true
#Checkout Source Code
- name: 'Checkout source code'
uses: 'actions/checkout@v2'
uses: 'actions/checkout@v4'
with:
ref: ${{ github.ref }}

Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Apollo Workbench VSCode 3.3.0

- Fix taken ports for subgraphs by setting `port: 0`
- Temporary workbench file in `.apollo-workbench` folder contains dynamic `subgraph_url`
- Mocked `subgraph_url` is printed to output window
- Set `APOLLO_ROVER_DEV_COMPOSITION_VERSION` when `federation_version` is set to `={major}.{minor}.{patch}` in config file
- [PR#175](https://github.com/apollographql/apollo-workbench-vscode/pull/175) - Thank you to @lleadbet
- [PR#173](https://github.com/apollographql/apollo-workbench-vscode/pull/173) - Thank you @dimaMachina
- [PR#152](https://github.com/apollographql/apollo-workbench-vscode/pull/152) - includes eslint package updates

## Apollo Workbench VSCode 3.2.12

- Enable setting Router Version in VSCode settings `routerVersion`
Expand Down
Loading

0 comments on commit 20bb93c

Please sign in to comment.