Skip to content

Commit

Permalink
Removed optro & updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
danniehansen committed Mar 30, 2024
1 parent a2da0f0 commit 867e328
Show file tree
Hide file tree
Showing 14 changed files with 333 additions and 620 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
VITE_APP_KEY: ${{ secrets.ACT_APP_KEY }}
VITE_API_HOST: ${{ secrets.ACT_API_HOST }}
VITE_WEBSOCKET: ${{ secrets.ACT_WEBSOCKET }}
VITE_OPTRO_API_KEY: ${{ secrets.ACT_OPTRO_API_KEY }}
VITE_POWERUP_ID: ${{ secrets.ACT_POWERUP_ID }}
VITE_SENTRY_DSN: ${{ secrets.ACT_SENTRY_DSN }}
VITE_APP_ORIGIN: ${{ secrets.ACT_APP_ORIGIN }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
VITE_APP_KEY: ${{ secrets.ACT_APP_KEY }}
VITE_API_HOST: ${{ secrets.ACT_API_HOST }}
VITE_WEBSOCKET: ${{ secrets.ACT_WEBSOCKET }}
VITE_OPTRO_API_KEY: ${{ secrets.ACT_OPTRO_API_KEY }}
VITE_POWERUP_ID: ${{ secrets.ACT_POWERUP_ID }}
VITE_SENTRY_DSN: ${{ secrets.ACT_SENTRY_DSN }}
VITE_APP_ORIGIN: ${{ secrets.ACT_APP_ORIGIN }}
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Released]

## [2.8.0] - 2024-03-30

### Security

- Updated packages to latest version matching version selectors.

### Removed

- Removed Optro. Now everyone has pro features for free!

## [2.7.5] - 2024-03-12

### Security
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/lib/infrastructure-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class InfrastructureStack extends cdk.Stack {
// Set HTTP security headers
headers['strict-transport-security'] = { value: 'max-age=63072000; includeSubdomains; preload'};
headers['content-security-policy'] = { value: "default-src 'none'; img-src 'self'; font-src 'self' data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://p.trellocdn.com/; style-src 'self' 'unsafe-inline' https://p.trellocdn.com/; object-src 'none'; connect-src 'self' ${webSocketApi.apiEndpoint} *.ingest.sentry.io https://api.optro.cloud/ https://api.trello.com/"};
headers['content-security-policy'] = { value: "default-src 'none'; img-src 'self'; font-src 'self' data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://p.trellocdn.com/; style-src 'self' 'unsafe-inline' https://p.trellocdn.com/; object-src 'none'; connect-src 'self' ${webSocketApi.apiEndpoint} *.ingest.sentry.io https://api.trello.com/"};
headers['x-content-type-options'] = { value: 'nosniff'};
// Return the response to viewers
Expand Down
200 changes: 65 additions & 135 deletions infrastructure/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 867e328

Please sign in to comment.