Skip to content

Commit

Permalink
Merge pull request #61 from pullflow/release/1.3.0
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
srzainab authored Feb 4, 2024
2 parents 4a21a56 + 8703e91 commit 70e0f9e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
envkey_SESSIONS_SECRET_KEY: ${{ secrets.SESSION_SECRET_KEY }}
envkey_CLIENT_IDENTIFIER: com.pullflow.vscode
envkey_PULLFLOW_APP_URL: https://app.pullflow.com
envkey_PULLFLOW_TELEMETRY_URL: https://collector.pullflow.cloud

- name: Build, compile and test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "1.2.3",
"version": "1.3.0",
"configurations": [
{
"name": "Run Extension",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "Pullflow",
"displayName": "Pullflow",
"description": "Code review collaboration across GitHub, Slack, and VS Code.",
"version": "1.2.3",
"version": "1.3.0",
"preview": true,
"license": "MIT",
"engines": {
Expand Down
4 changes: 3 additions & 1 deletion src/utils/pullflowApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ export class PullflowApi {
this.options = {
method,
headers: {
authorization: accessToken ?? '',
authorization: `Bearer ${accessToken ?? ''}`,
version: context.extension.packageJSON.version,
Accept: 'application/json, text/plain',
'Content-Type': 'application/json;charset=UTF-8',
'auth-provider': 'custom-auth',
'event-provider': 'extension',
},
}
this.apiUrl = AppConfig.pullflow.graphqlUrl
Expand Down

0 comments on commit 70e0f9e

Please sign in to comment.