Skip to content

Bump SFDC API version to 63.0 #1193

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

Merged
merged 1 commit into from
Feb 19, 2025
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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ENVIRONMENT='development'

# SFDC API VERSION TO USE
NX_SFDC_API_VERSION='62.0'
NX_SFDC_API_VERSION='63.0'

# trace, debug (default), info, warn, error, fatal, silent
LOG_LEVEL='trace'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
JETSTREAM_SERVER_DOMAIN: localhost:3333
JETSTREAM_SERVER_URL: http://localhost:3333
JETSTREAM_SESSION_SECRET: ${{ secrets.JETSTREAM_SESSION_SECRET }}
SFDC_API_VERSION: '62.0'
SFDC_API_VERSION: '63.0'
SFDC_CALLBACK_URL: http://localhost:3333/oauth/sfdc/callback
SFDC_CONSUMER_KEY: ${{ secrets.SFDC_CONSUMER_KEY }}
SFDC_CONSUMER_SECRET: ${{ secrets.SFDC_CONSUMER_SECRET }}
Expand Down
4 changes: 2 additions & 2 deletions apps/api/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ JETSTREAM_SERVER_DOMAIN="getjetstream.app"
JETSTREAM_SERVER_URL="https://getjetstream.app"

NX_BRANCH="main"
NX_SFDC_API_VERSION="62.0"
NX_SFDC_API_VERSION="63.0"

SFDC_API_VERSION="62.0"
SFDC_API_VERSION="63.0"
SFDC_CALLBACK_URL="https://getjetstream.app/oauth/sfdc/callback"
2 changes: 1 addition & 1 deletion apps/jetstream-web-extension/src/utils/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function initApiClient({ key: accessToken, hostname }: SessionInfo): ApiC
userId: 'unknown',
organizationId: 'unknown',
accessToken,
apiVersion: '62.0',
apiVersion: '63.0',
instanceUrl,
// refreshToken: refresh_token,
logger,
Expand Down
Loading