@cloudflare/pages-shared 0.11.46 → 0.11.47

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/README.md +4 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,3 +3,7 @@
3
3
  This is a package that is used internally to power Wrangler and Cloudflare Pages. It contains all the code that is shared between these clients (and possibly any other in the future e.g. the dashboard).
4
4
 
5
5
  Code should be written so that it can be run in almost any environment (e.g. Deno, Node, browser, Workers), but note that there's currently a bit of weirdness here for `asset-server`, hence the `environment-polyfills` piece.
6
+
7
+ > [!NOTE]
8
+ > Since code in this package is used by the Pages infrastructure, it is important that PRs are given careful review with regards to how they could cause a failure in production.
9
+ > Ideally, there should be comprehensive tests for changes being made to give extra confidence about the behavior.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudflare/pages-shared",
3
- "version": "0.11.46",
3
+ "version": "0.11.47",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/cloudflare/workers-sdk.git",
@@ -13,10 +13,10 @@
13
13
  "metadata-generator/**/*"
14
14
  ],
15
15
  "dependencies": {
16
- "miniflare": "3.20240701.0"
16
+ "miniflare": "3.20240712.0"
17
17
  },
18
18
  "devDependencies": {
19
- "@cloudflare/workers-types": "^4.20240620.0",
19
+ "@cloudflare/workers-types": "^4.20240712.0",
20
20
  "@miniflare/cache": "^2.14.2",
21
21
  "@miniflare/core": "^2.14.2",
22
22
  "@miniflare/html-rewriter": "^2.14.2",