@codedazur/cdk-docker-cluster 0.9.0 → 0.9.1

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,11 @@
1
1
  # @codedazur/cdk-docker-cluster
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`afec6fd`](https://github.com/codedazur/toolkit/commit/afec6fdb40cfbbb4dc118c2fa6caacf1345f7875) Thanks [@thijsdaniels](https://github.com/thijsdaniels)! - The distribution props are no longer overridden.
8
+
3
9
  ## 0.9.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -95,13 +95,13 @@ var DockerCluster = class extends import_constructs.Construct {
95
95
  "216adef6-5c7f-47e4-b989-5492eafa07d3"
96
96
  );
97
97
  return new import_cdk_site_distribution.SiteDistribution(this, "Distribution", {
98
+ allowedMethods: import_aws_cloudfront.AllowedMethods.ALLOW_ALL,
99
+ cachePolicy,
100
+ originRequestPolicy,
98
101
  ...this.props.distribution,
99
102
  origin: new import_aws_cloudfront_origins.LoadBalancerV2Origin(this.service.loadBalancer, {
100
103
  protocolPolicy: import_aws_cloudfront.OriginProtocolPolicy.HTTP_ONLY
101
- }),
102
- allowedMethods: import_aws_cloudfront.AllowedMethods.ALLOW_ALL,
103
- cachePolicy,
104
- originRequestPolicy
104
+ })
105
105
  });
106
106
  }
107
107
  getOutputDirectory() {
package/dist/index.mjs CHANGED
@@ -81,13 +81,13 @@ var DockerCluster = class extends Construct {
81
81
  "216adef6-5c7f-47e4-b989-5492eafa07d3"
82
82
  );
83
83
  return new SiteDistribution(this, "Distribution", {
84
+ allowedMethods: AllowedMethods.ALLOW_ALL,
85
+ cachePolicy,
86
+ originRequestPolicy,
84
87
  ...this.props.distribution,
85
88
  origin: new LoadBalancerV2Origin(this.service.loadBalancer, {
86
89
  protocolPolicy: OriginProtocolPolicy.HTTP_ONLY
87
- }),
88
- allowedMethods: AllowedMethods.ALLOW_ALL,
89
- cachePolicy,
90
- originRequestPolicy
90
+ })
91
91
  });
92
92
  }
93
93
  getOutputDirectory() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codedazur/cdk-docker-cluster",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "main": ".dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -30,9 +30,9 @@
30
30
  "@codedazur/cdk-site-distribution": "^0.4.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@types/node": "^20.14.9",
34
- "aws-cdk-lib": "^2.147.2",
33
+ "@types/node": "^20.14.10",
34
+ "aws-cdk-lib": "^2.149.0",
35
35
  "constructs": "^10.3.0",
36
- "esbuild": "^0.21.5"
36
+ "esbuild": "^0.23.0"
37
37
  }
38
38
  }