@ndlib/ndlib-cdk2 1.0.17 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/https-alb.js +1 -2
  2. package/package.json +9 -9
package/lib/https-alb.js CHANGED
@@ -19,12 +19,11 @@ class HttpsAlb extends aws_cdk_lib_1.aws_elasticloadbalancingv2.ApplicationLoadB
19
19
  const firstCertificate = props.certificateArns[0]; // added after certificateArns was deprecated from addListener.
20
20
  // Add https listener that by default 404s until other rules are added.
21
21
  this.defaultListener = this.addListener('HttpsListener', {
22
- // certificateArns: props.certificateArns,
23
22
  certificates: [aws_cdk_lib_1.aws_elasticloadbalancingv2.ListenerCertificate.fromArn(firstCertificate)],
24
23
  open: true,
25
24
  port: 443,
26
25
  protocol: aws_cdk_lib_1.aws_elasticloadbalancingv2.ApplicationProtocol.HTTPS,
27
- sslPolicy: aws_cdk_lib_1.aws_elasticloadbalancingv2.SslPolicy.RECOMMENDED,
26
+ sslPolicy: aws_cdk_lib_1.aws_elasticloadbalancingv2.SslPolicy.TLS13_EXT2,
28
27
  });
29
28
  this.defaultListener.addAction('Default404', { action: aws_cdk_lib_1.aws_elasticloadbalancingv2.ListenerAction.fixedResponse(404) });
30
29
  // Adding an output of the dns name for convenience when looking at this
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ndlib/ndlib-cdk2",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Reusable CDK2 modules used within Hesburgh Libraries of Notre Dame",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -41,21 +41,21 @@
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/jest": "^29.5.4",
44
- "@types/node": "^18.17.0",
45
- "@typescript-eslint/eslint-plugin": "^6.6.0",
46
- "@typescript-eslint/parser": "^6.6.0",
44
+ "@types/node": "^18.17.1",
45
+ "@typescript-eslint/eslint-plugin": "^6.7.0",
46
+ "@typescript-eslint/parser": "^6.7.0",
47
47
  "aws-sdk-client-mock": "^3.0.0",
48
- "eslint": "^8.48.0",
48
+ "eslint": "^8.49.0",
49
49
  "eslint-config-standard": "^17.1.0",
50
50
  "eslint-plugin-import": "^2.28.1",
51
51
  "eslint-plugin-jest": "^27.2.3",
52
- "eslint-plugin-n": "^16.0.2",
52
+ "eslint-plugin-n": "^16.1.0",
53
53
  "eslint-plugin-node": "^11.1.0",
54
54
  "eslint-plugin-promise": "^6.1.1",
55
55
  "eslint-plugin-standard": "^5.0.0",
56
56
  "github-changes": "^2.0.3",
57
- "jest": "^29.6.4",
58
- "jest-mock": "^29.6.3",
57
+ "jest": "^29.7.0",
58
+ "jest-mock": "^29.7.0",
59
59
  "prettier": "^3.0.3",
60
60
  "subpackage": "^1.1.0",
61
61
  "ts-jest": "^29.1.1",
@@ -66,7 +66,7 @@
66
66
  "lib/**/*"
67
67
  ],
68
68
  "dependencies": {
69
- "aws-cdk-lib": "^2.94.0",
69
+ "aws-cdk-lib": "^2.96.2",
70
70
  "constructs": "^10.2.70",
71
71
  "node-fetch": "^3.3.2"
72
72
  },