@codedazur/cdk-docker-cluster 0.8.0 → 0.9.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @codedazur/cdk-docker-cluster
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`c8d5f0b`](https://github.com/codedazur/toolkit/commit/c8d5f0b86cb3eb1677d51a4531e8bcc948f8ea4b) Thanks [@thijsdaniels](https://github.com/thijsdaniels)! - All HTTP methods are now allowed by default.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`7d709c8`](https://github.com/codedazur/toolkit/commit/7d709c8be6ea8b0573443e9cc138d7b909412a30)]:
12
+ - @codedazur/cdk-site-distribution@0.4.0
13
+
3
14
  ## 0.8.0
4
15
 
5
16
  ### Minor Changes
package/dist/index.js CHANGED
@@ -99,6 +99,7 @@ var DockerCluster = class extends import_constructs.Construct {
99
99
  origin: new import_aws_cloudfront_origins.LoadBalancerV2Origin(this.service.loadBalancer, {
100
100
  protocolPolicy: import_aws_cloudfront.OriginProtocolPolicy.HTTP_ONLY
101
101
  }),
102
+ allowedMethods: import_aws_cloudfront.AllowedMethods.ALLOW_ALL,
102
103
  cachePolicy,
103
104
  originRequestPolicy
104
105
  });
package/dist/index.mjs CHANGED
@@ -4,6 +4,7 @@ import {
4
4
  } from "@codedazur/cdk-site-distribution";
5
5
  import { App } from "aws-cdk-lib";
6
6
  import {
7
+ AllowedMethods,
7
8
  CachePolicy,
8
9
  OriginProtocolPolicy,
9
10
  OriginRequestPolicy
@@ -84,6 +85,7 @@ var DockerCluster = class extends Construct {
84
85
  origin: new LoadBalancerV2Origin(this.service.loadBalancer, {
85
86
  protocolPolicy: OriginProtocolPolicy.HTTP_ONLY
86
87
  }),
88
+ allowedMethods: AllowedMethods.ALLOW_ALL,
87
89
  cachePolicy,
88
90
  originRequestPolicy
89
91
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codedazur/cdk-docker-cluster",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "main": ".dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "constructs": ">=10"
28
28
  },
29
29
  "dependencies": {
30
- "@codedazur/cdk-site-distribution": "^0.3.0"
30
+ "@codedazur/cdk-site-distribution": "^0.4.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^20.14.9",