@aligent/cdk-prerender-proxy 2.5.2 → 2.5.5
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 +30 -0
- package/README.md +2 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @aligent/cdk-prerender-proxy
|
|
2
2
|
|
|
3
|
+
## 2.5.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1622](https://github.com/aligent/cdk-constructs/pull/1622) [`57b9148`](https://github.com/aligent/cdk-constructs/commit/57b9148b8ed80bcc40ee5c7461b353289b87f659) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps-dev): bump the dev-tools group across 1 directory with 4 updates
|
|
8
|
+
|
|
9
|
+
- [#1633](https://github.com/aligent/cdk-constructs/pull/1633) [`9276087`](https://github.com/aligent/cdk-constructs/commit/927608749f1ac2340e0e2f758ba3ccf02e54d405) Thanks [@aikido-autofix](https://github.com/apps/aikido-autofix)! - [Aikido] Fix 5 security issues in yaml, minimatch, ajv
|
|
10
|
+
|
|
11
|
+
- [#1634](https://github.com/aligent/cdk-constructs/pull/1634) [`38d563f`](https://github.com/aligent/cdk-constructs/commit/38d563f2b5d67401b1234736f11cee446e5ae7d7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates
|
|
12
|
+
|
|
13
|
+
- [#1635](https://github.com/aligent/cdk-constructs/pull/1635) [`a7baabb`](https://github.com/aligent/cdk-constructs/commit/a7baabbc02ba92979755b5fdff63aade4718c5e6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump the other-dependencies group across 1 directory with 4 updates
|
|
14
|
+
|
|
15
|
+
- [#1636](https://github.com/aligent/cdk-constructs/pull/1636) [`6805acb`](https://github.com/aligent/cdk-constructs/commit/6805acbb180625de5a494fd2fe11827520a77b76) Thanks [@aikido-autofix](https://github.com/apps/aikido-autofix)! - [Aikido] Fix security issue in aws-cdk-lib via minor version upgrade from 2.235.1 to 2.245.0
|
|
16
|
+
|
|
17
|
+
- [#1644](https://github.com/aligent/cdk-constructs/pull/1644) [`c6ed076`](https://github.com/aligent/cdk-constructs/commit/c6ed076a549842368da74eedb974cdab20764abe) Thanks [@aikido-autofix](https://github.com/apps/aikido-autofix)! - [Aikido] Fix critical issue in axios via minor version upgrade from 1.14.0 to 1.15.0
|
|
18
|
+
|
|
19
|
+
- [#1638](https://github.com/aligent/cdk-constructs/pull/1638) [`7a8d347`](https://github.com/aligent/cdk-constructs/commit/7a8d3470b97fbdc769f18d55ce1c1a35b96cdf18) Thanks [@TheOrangePuff](https://github.com/TheOrangePuff)! - Update constructs peer dependency from ^10.3.0/^10.4.2 to ^10.5.0 to match aws-cdk-lib@2.245.0 requirements
|
|
20
|
+
|
|
21
|
+
## 2.5.4
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#1606](https://github.com/aligent/cdk-constructs/pull/1606) [`0e35d91`](https://github.com/aligent/cdk-constructs/commit/0e35d91ab5244d90625ebe19d943694af875a422) Thanks [@porhkz](https://github.com/porhkz)! - Update repository URLs in package.json to match npm provenance expectations
|
|
26
|
+
|
|
27
|
+
## 2.5.3
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- [#1601](https://github.com/aligent/cdk-constructs/pull/1601) [`1488e90`](https://github.com/aligent/cdk-constructs/commit/1488e90d7f468f7646142a9968a3d4e06389b358) Thanks [@porhkz](https://github.com/porhkz)! - Fix badges on readmes
|
|
32
|
+
|
|
3
33
|
## 2.5.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Prerender Proxy
|
|
2
2
|
|
|
3
|
+
  
|
|
4
|
+
|
|
3
5
|
This library provides two function constructs and a construct that creates two Lambda@Edge functions to use prerender.io as a Cloudfront Origin for site indexers (Google, Bing, etc).
|
|
4
6
|
|
|
5
7
|
The `prerender-check` is a `viewer-request` function that will check if a requester is from a indexer and if it is adds a header so that the second function `prerender` (`origin-request`) will alter the origin to prerender.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aligent/cdk-prerender-proxy",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.5",
|
|
4
4
|
"description": "Cloudfront Lambda@Edge constructs for integrating with prerender.io",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -10,18 +10,18 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/aligent/
|
|
13
|
+
"url": "git+https://github.com/aligent/cdk-constructs.git"
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/aligent/
|
|
17
|
+
"url": "https://github.com/aligent/cdk-constructs/issues"
|
|
18
18
|
},
|
|
19
|
-
"homepage": "https://github.com/aligent/
|
|
19
|
+
"homepage": "https://github.com/aligent/cdk-constructs/tree/main/packages/constructs/prerender-proxy#readme",
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@aligent/cdk-esbuild": "^2.5.
|
|
21
|
+
"@aligent/cdk-esbuild": "^2.5.5",
|
|
22
22
|
"@types/aws-lambda": "^8.10.150",
|
|
23
23
|
"@types/jest": "^29.5.10",
|
|
24
|
-
"@types/node": "^20.
|
|
24
|
+
"@types/node": "^20.19.39",
|
|
25
25
|
"aws-cdk": "^2.1019.1",
|
|
26
26
|
"jest": "^29.7.0",
|
|
27
27
|
"ts-jest": "^29.1.1",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"typescript": "^5.3.2"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"axios": "^1.
|
|
32
|
+
"axios": "^1.14.0",
|
|
33
33
|
"source-map-support": "^0.5.21"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"aws-cdk-lib": "^2.168.0",
|
|
37
|
-
"constructs": "^10.
|
|
37
|
+
"constructs": "^10.5.0"
|
|
38
38
|
}
|
|
39
39
|
}
|