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

chore(deps): update all non-major dependencies #131

Merged
merged 2 commits into from
Apr 27, 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
206 changes: 103 additions & 103 deletions frontend/prime-scout/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions frontend/prime-scout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^5.15.12",
"@mui/material": "^5.15.12",
"react": "18.2.0",
"react": "18.3.1",
"react-cookie-consent": "9.0.0",
"react-dom": "18.2.0",
"react-dom": "18.3.1",
"typescript": "5.4.5"
},
"scripts": {
Expand All @@ -26,8 +26,8 @@
"defaults"
],
"devDependencies": {
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.0",
"vite": "^5.0.0",
Expand Down
54 changes: 26 additions & 28 deletions lambda/log-redirect/package-lock.json

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

2 changes: 1 addition & 1 deletion lambda/log-redirect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@middy/http-error-handler": "5.3.2",
"@middy/http-response-serializer": "5.3.2",
"@middy/error-logger": "5.3.2",
"@aws-sdk/client-secrets-manager": "3.556.0",
"@aws-sdk/client-secrets-manager": "3.564.0",
"graphql-request": "6.1.0",
"jwt-decode": "4.0.0",
"luxon": "3.4.4"
Expand Down
6 changes: 3 additions & 3 deletions lambda/prime-scout/package-lock.json

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

16 changes: 9 additions & 7 deletions lib/domain-placeholder-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,16 @@ export class DomainPlaceholderStack extends Stack {
});

const certificate = new DnsValidatedCertificate(this, 'Certificate', {
hostedZone: HostedZone.fromHostedZoneAttributes(this, 'HostedZone', {
hostedZoneId: props.dnsDelegation.hostedZoneId,
zoneName: props.domainName
}),
validationHostedZones: [{
hostedZone: HostedZone.fromHostedZoneAttributes(this, 'HostedZone', {
hostedZoneId: props.dnsDelegation.hostedZoneId,
zoneName: props.domainName
}),
validationRole: Role.fromRoleArn(this, 'CertificateValidationRole', 'arn:aws:iam::' + props.dnsDelegation.account + ':role/' + props.dnsDelegation.roleName, {
mutable: false
})
}],
domainName: props.domainName,
validationRole: Role.fromRoleArn(this, 'CertificateValidationRole', 'arn:aws:iam::' + props.dnsDelegation.account + ':role/' + props.dnsDelegation.roleName, {
mutable: false
}),
certificateRegion: 'us-east-1'
})

Expand Down
18 changes: 10 additions & 8 deletions lib/log-redirect-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,18 @@ export class LogRedirectStack extends cdk.Stack {
private createApi() {

const certificate = new DnsValidatedCertificate(this, 'Certificate', {
hostedZone: HostedZone.fromHostedZoneAttributes(this, 'HostedZone', {
hostedZoneId: this.props.dnsDelegation.hostedZoneId,
zoneName: this.props.domainName
}),
validationHostedZones: [{
hostedZone: HostedZone.fromHostedZoneAttributes(this, 'HostedZone', {
hostedZoneId: this.props.dnsDelegation.hostedZoneId,
zoneName: this.props.domainName
}),
validationRole: Role.fromRoleArn(this, 'CertificateValidationRole', 'arn:aws:iam::' + this.props.dnsDelegation.account + ':role/' + this.props.dnsDelegation.roleName, {
mutable: false
})
}],
domainName: this.props.domainName,
validationRole: Role.fromRoleArn(this, 'CertificateValidationRole', 'arn:aws:iam::' + this.props.dnsDelegation.account + ':role/' + this.props.dnsDelegation.roleName, {
mutable: false
}),
certificateRegion: 'us-east-1'
})
});

this.httpApi = new HttpApi(this, 'HttpApi');

Expand Down
20 changes: 12 additions & 8 deletions lib/prime-scout-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ export class PrimeScoutStack extends cdk.Stack {

private createApi() {
const certificate = new DnsValidatedCertificate(this, 'ApiCertificate', {
hostedZone: this.hostedZone,
validationHostedZones: [{
hostedZone: this.hostedZone,
validationRole: Role.fromRoleArn(this, 'ApiCertificateValidationRole', 'arn:aws:iam::' + this.props.dnsDelegation.account + ':role/' + this.props.dnsDelegation.roleName, {
mutable: false
})
}],
domainName: `api.${this.props.domainName}`,
validationRole: Role.fromRoleArn(this, 'ApiCertificateValidationRole', 'arn:aws:iam::' + this.props.dnsDelegation.account + ':role/' + this.props.dnsDelegation.roleName, {
mutable: false
}),
certificateRegion: 'us-east-1'
})

Expand Down Expand Up @@ -171,11 +173,13 @@ export class PrimeScoutStack extends cdk.Stack {
});

const certificate = new DnsValidatedCertificate(this, 'FrontendCertificate', {
hostedZone: this.hostedZone,
validationHostedZones: [{
hostedZone: this.hostedZone,
validationRole: Role.fromRoleArn(this, 'FrontendCertificateValidationRole', 'arn:aws:iam::' + this.props.dnsDelegation.account + ':role/' + this.props.dnsDelegation.roleName, {
mutable: false
})
}],
domainName: this.props.domainName,
validationRole: Role.fromRoleArn(this, 'FrontendCertificateValidationRole', 'arn:aws:iam::' + this.props.dnsDelegation.account + ':role/' + this.props.dnsDelegation.roleName, {
mutable: false
}),
certificateRegion: 'us-east-1'
})

Expand Down
50 changes: 25 additions & 25 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.12.7",
"aws-cdk": "2.138.0",
"aws-cdk": "2.139.0",
"esbuild": "0.20.2",
"jest": "29.7.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.2",
"typescript": "~5.4.0"
},
"dependencies": {
"@fallobst22/cdk-cross-account-route53": "^0.0.16",
"@trautonen/cdk-dns-validated-certificate": "0.0.52",
"aws-cdk-lib": "2.138.0",
"@fallobst22/cdk-cross-account-route53": "^0.0.17",
"@trautonen/cdk-dns-validated-certificate": "0.1.0",
"aws-cdk-lib": "2.139.0",
"constructs": "10.3.0",
"source-map-support": "0.5.21"
}
Expand Down