@aligent/cdk-prerender-proxy 2.5.1 → 2.5.4
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 +18 -0
- package/README.md +2 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @aligent/cdk-prerender-proxy
|
|
2
2
|
|
|
3
|
+
## 2.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
## 2.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
15
|
+
## 2.5.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#1573](https://github.com/aligent/cdk-constructs/pull/1573) [`9c26514`](https://github.com/aligent/cdk-constructs/commit/9c26514be321e73b4217aa4a040ac4a91f9b1503) Thanks [@ryanrixxh](https://github.com/ryanrixxh)! - Restucture of the internal codebase and addition of CDK Aspects package. The Aspects package exports a number of usable cdk aspects
|
|
20
|
+
|
|
3
21
|
## 2.5.1
|
|
4
22
|
|
|
5
23
|
### 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.4",
|
|
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.4",
|
|
22
22
|
"@types/aws-lambda": "^8.10.150",
|
|
23
23
|
"@types/jest": "^29.5.10",
|
|
24
|
-
"@types/node": "^20.
|
|
24
|
+
"@types/node": "^20.19.33",
|
|
25
25
|
"aws-cdk": "^2.1019.1",
|
|
26
26
|
"jest": "^29.7.0",
|
|
27
27
|
"ts-jest": "^29.1.1",
|