Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- `apollo` 2.4.0
- Fix configuration loading and schema tag support [#925](https://github.com/apollographql/apollo-tooling/pull/925)
- Improve client:check output [#934](https://github.com/apollographql/apollo-tooling/pull/934)
- Fix a bug where tagging a build will cause the tool to not be able to figure out where the git repo is [#944](https://github.com/apollographql/apollo-tooling/pull/944)
- `apollo-language-server` 1.4.0
- Replace checkOperations mutation with new validateOperations mutation [#934](https://github.com/apollographql/apollo-tooling/pull/934)
- Include config files into a project's fileSet [#897](https://github.com/apollographql/apollo-tooling/pull/897)
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo/src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const gitInfo = async (): Promise<GitContext | undefined> => {
// See https://github.com/pvdlg/env-ci#caveats for a detailed list of when
// branch can be undefined
if (!branch) {
branch = git.branch();
branch = git.branch([gitLoc]);
}
}

Expand Down