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
17 changes: 17 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,21 @@ jobs:
name: "Set permissions on artifacts correctly"
run: |
chmod -R +x ./${{ matrix.testing_target.binary_under_test }}
- name: "Create expected directory structure for test binary lookup"
shell: bash
run: |
mkdir -p target/${{ matrix.testing_target.binary_under_test }}/debug
cp -r ./${{ matrix.testing_target.binary_under_test }}/* target/${{ matrix.testing_target.binary_under_test }}/debug/
- name: "Create symlink for Linux container path (compiled in Docker with different workspace)"
if: ${{ matrix.testing_target.binary_under_test == 'x86_64-unknown-linux-gnu' }}
run: |
# The Linux binary was compiled in Docker where workspace was /__w/rover/rover
# On Ubuntu runner, workspace is /home/runner/work/rover/rover
# Create a symlink so any baked-in paths from compilation resolve correctly
sudo mkdir -p /__w/rover
sudo ln -s ${{ github.workspace }} /__w/rover/rover
echo "Created symlink: /__w/rover/rover -> ${{ github.workspace }}"
ls -la /__w/rover/
- uses: volta-cli/action@v4
name: "Install volta"
- name: Run Smoke Tests (Non-Windows)
Expand All @@ -105,6 +120,7 @@ jobs:
APOLLO_ROVER_DEV_COMPOSITION_VERSION: ${{ matrix.composition-version }}
APOLLO_ROVER_DEV_ROUTER_VERSION: ${{ matrix.router-version }}
APOLLO_ELV2_LICENSE: accept
CARGO_BIN_EXE_rover: ${{ github.workspace }}/${{ matrix.testing_target.binary_under_test }}/rover
CARGO_MANIFEST_DIR: ${{ github.workspace }}
APOLLO_KEY: ${{ secrets.APOLLO_KEY_ROVER_E2E_TESTS }}
run: |
Expand All @@ -116,6 +132,7 @@ jobs:
env:
APOLLO_ROVER_DEV_COMPOSITION_VERSION: ${{ matrix.composition-version }}
APOLLO_ROVER_DEV_ROUTER_VERSION: ${{ matrix.router-version }}
APOLLO_ELV2_LICENSE: accept
CARGO_BIN_EXE_rover: ${{ github.workspace }}\${{ matrix.testing_target.binary_under_test }}\rover.exe
CARGO_MANIFEST_DIR: ${{ github.workspace }}
APOLLO_KEY: ${{ secrets.APOLLO_KEY_ROVER_E2E_TESTS }}
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## 📚 Documentation -->

# [0.37.0] - 2025-12-01

## 🚀 Features

- **Enable overriding MCP version in `rover dev` - @DaleSeo, PR #2784**

## 🐛 Fixes

- **Remove conditional header in VSCode file from MCP template processing - @gocamille, PR #2757**
- **Auto-configure MCP server endpoint with router's custom path- @naomijub, PR #2869**

## 📚 Documentation

- **change MCP's default port from 5000 to 8000 - @DaleSeo, PR #2749**


# [0.36.2] - 2025-10-03

## 🚀 Features
Expand Down
Loading