@mastra/deployer-cloudflare 1.1.12-alpha.1 → 1.1.12

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/CHANGELOG.md +13 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 1.1.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Stop writing `.env` variables to `wrangler.jsonc` to prevent secrets from leaking into source control. ([#14302](https://github.com/mastra-ai/mastra/pull/14302))
8
+ - Environment variables from `.env` are no longer merged into the `vars` field of the generated wrangler config.
9
+ - User-provided `vars` from the `CloudflareDeployer` constructor are still written as before.
10
+ - A warning is logged during build with instructions to upload secrets via `npx wrangler secret bulk .env`.
11
+
12
+ - Updated dependencies [[`51970b3`](https://github.com/mastra-ai/mastra/commit/51970b3828494d59a8dd4df143b194d37d31e3f5), [`4444280`](https://github.com/mastra-ai/mastra/commit/444428094253e916ec077e66284e685fde67021e), [`9d4f992`](https://github.com/mastra-ai/mastra/commit/9d4f9921d2d3afb3301b2c93f0e4e6a80a4f81a3), [`5dfaf3d`](https://github.com/mastra-ai/mastra/commit/5dfaf3d1cf286d56d3645398dcb687a4eb02db96), [`085e371`](https://github.com/mastra-ai/mastra/commit/085e3718a7d0fe9a210fe7dd1c867b9bdfe8d16b), [`b77aa19`](https://github.com/mastra-ai/mastra/commit/b77aa1981361c021f2c881bee8f0c703687f00da), [`dbb879a`](https://github.com/mastra-ai/mastra/commit/dbb879af0b809c668e9b3a9d8bac97d806caa267), [`8b4ce84`](https://github.com/mastra-ai/mastra/commit/8b4ce84aed0808b9805cc4fd7147c1f8a2ef7a36), [`8d4cfe6`](https://github.com/mastra-ai/mastra/commit/8d4cfe6b9a7157d3876206227ec9f04cde6dbc4a), [`dd6ca1c`](https://github.com/mastra-ai/mastra/commit/dd6ca1cdea3b8b6182f4cf61df41070ba0cc0deb), [`ce26fe2`](https://github.com/mastra-ai/mastra/commit/ce26fe2166dd90254f8bee5776e55977143e97de), [`68a019d`](https://github.com/mastra-ai/mastra/commit/68a019d30d22251ddd628a2947d60215c03c350a), [`4cb4edf`](https://github.com/mastra-ai/mastra/commit/4cb4edf3c909d197ec356c1790d13270514ffef6), [`0b0ba2f`](https://github.com/mastra-ai/mastra/commit/0b0ba2f251087df603b5ee512bb83ba81e79d9fb), [`8de3555`](https://github.com/mastra-ai/mastra/commit/8de355572c6fd838f863a3e7e6fe24d0947b774f), [`b26307f`](https://github.com/mastra-ai/mastra/commit/b26307f050df39629511b0e831b8fc26973ce8b1), [`68a019d`](https://github.com/mastra-ai/mastra/commit/68a019d30d22251ddd628a2947d60215c03c350a), [`e647a02`](https://github.com/mastra-ai/mastra/commit/e647a0215754bf91ed45c6d8857435bce4d387dc)]:
13
+ - @mastra/core@1.14.0
14
+ - @mastra/deployer@1.14.0
15
+
3
16
  ## 1.1.12-alpha.1
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-cloudflare",
3
- "version": "1.1.12-alpha.1",
3
+ "version": "1.1.12",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -41,7 +41,7 @@
41
41
  "cloudflare": "^4.5.0",
42
42
  "rollup": "^4.59.0",
43
43
  "rollup-plugin-esbuild": "^6.2.1",
44
- "@mastra/deployer": "^1.14.0-alpha.2"
44
+ "@mastra/deployer": "^1.14.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@babel/types": "^7.29.0",
@@ -55,9 +55,9 @@
55
55
  "vitest": "4.0.18",
56
56
  "wrangler": "^4.73.0",
57
57
  "zod": "^3.25.76",
58
- "@internal/types-builder": "0.0.46",
59
- "@internal/lint": "0.0.71",
60
- "@mastra/core": "1.14.0-alpha.2"
58
+ "@internal/types-builder": "0.0.47",
59
+ "@internal/lint": "0.0.72",
60
+ "@mastra/core": "1.14.0"
61
61
  },
62
62
  "homepage": "https://mastra.ai",
63
63
  "repository": {