Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernization 3 #161

Merged
merged 12 commits into from
Aug 8, 2024
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
5 changes: 5 additions & 0 deletions .changeset/five-houses-doubt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"vscode-apollo": patch
---

Only show "Run in Studio" gutter action for local graphs if an endpoint is configured.
Copy link
Member Author

@phryneas phryneas Aug 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not 100% sure.. it seems like a good idea, but might someone get use from a link to explorer that doesn't fill in the endpoint?
My gut says removing this is the right thing, but I'd love a second opinion.

9 changes: 9 additions & 0 deletions .changeset/short-shrimps-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"vscode-apollo": patch
---

Modernization

- update `minimatch` and `lz-string`
- drop `await-to-js`, `resolve-from`, `sha.js`
- drop `query-string`
5 changes: 5 additions & 0 deletions .changeset/tough-forks-call.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"vscode-apollo": patch
---

Fix a bug where the "Run in Studio" button would link to a Studio Graph instead of Explorer for local projects.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,28 @@ jobs:
name: Test
command: npm run test

E2E tests:
executor: node
steps:
- checkout
- npm-install
- run: sudo apt update && sudo apt install -y libasound2 libgbm1 libgtk-3-0 libnss3 xvfb
- run:
name: Build
command: npm run build:clean
- run:
command: echo 'APOLLO_KEY="service:bob-123:489fhseo4"' > ./sampleWorkspace/spotifyGraph/.env
- run:
name: E2E tests
command: xvfb-run -a npm run test:extension

workflows:
build-test-deploy:
jobs:
- lint
- typescript
- test
- E2E tests
security-scans:
jobs:
- secops/gitleaks:
Expand Down
Loading