@storm-software/cloudflare-tools 0.71.14 → 0.71.15

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
@@ -2,6 +2,19 @@
2
2
 
3
3
  # Changelog for Storm Ops - Cloudflare Tools
4
4
 
5
+ ## [0.71.14](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.14) (12/08/2025)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **cloudflare-tools:** Resolve timeout issue in S3 client's request handler
10
+ ([7288ec611](https://github.com/storm-software/storm-ops/commit/7288ec611))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **workspace-tools** to **v1.294.7**
15
+ - Updated **config-tools** to **v1.188.63**
16
+ - Updated **config** to **v1.134.63**
17
+
5
18
  ## [0.71.13](https://github.com/storm-software/storm-ops/releases/tag/cloudflare-tools%400.71.13) (12/08/2025)
6
19
 
7
20
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkXG5T3FL6js = require('./chunk-XG5T3FL6.js');
3
+ var _chunkI5PY5AIWjs = require('./chunk-I5PY5AIW.js');
4
4
 
5
5
 
6
6
 
@@ -99,7 +99,7 @@ async function runExecutor(options, context) {
99
99
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
100
100
  secretAccessKey: process.env.STORM_BOT_SECRET_ACCESS_KEY || process.env.CLOUDFLARE_SECRET_ACCESS_KEY || process.env.AWS_SECRET_ACCESS_KEY || process.env.SECRET_ACCESS_KEY
101
101
  },
102
- requestHandler: _chunkXG5T3FL6js.createHttpHandler.call(void 0, )
102
+ requestHandler: _chunkI5PY5AIWjs.createHttpHandler.call(void 0, )
103
103
  });
104
104
  const version = _optionalChain([projectDetails, 'optionalAccess', _13 => _13.content, 'optionalAccess', _14 => _14.version]);
105
105
  if (version) {
@@ -2,7 +2,8 @@
2
2
  import { NodeHttp2Handler } from "@smithy/node-http-handler";
3
3
  function createHttpHandler() {
4
4
  return new NodeHttp2Handler({
5
- requestTimeout: 5 * 60 * 1e3
5
+ requestTimeout: 5 * 60 * 1e3,
6
+ sessionTimeout: 5 * 60 * 1e3
6
7
  });
7
8
  }
8
9
 
@@ -7,7 +7,7 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
7
7
  "package.json"(exports, module) {
8
8
  module.exports = {
9
9
  name: "@storm-software/cloudflare-tools",
10
- version: "0.71.13",
10
+ version: "0.71.14",
11
11
  description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
12
12
  repository: {
13
13
  type: "github",
@@ -136,9 +136,9 @@ var require_package = _chunkMCKGQKYUjs.__commonJS.call(void 0, {
136
136
  "@nx/js": "catalog:",
137
137
  "@nx/node": "catalog:",
138
138
  "@nx/web": "catalog:",
139
- "@storm-software/config": "1.134.62",
140
- "@storm-software/config-tools": "1.188.62",
141
- "@storm-software/workspace-tools": "1.294.6",
139
+ "@storm-software/config": "1.134.63",
140
+ "@storm-software/config-tools": "1.188.63",
141
+ "@storm-software/workspace-tools": "1.294.7",
142
142
  nx: "catalog:",
143
143
  tsup: "catalog:",
144
144
  wrangler: ">=3.58.0"
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createHttpHandler
3
- } from "./chunk-GMXZMPYW.mjs";
3
+ } from "./chunk-4DD7MPRF.mjs";
4
4
  import {
5
5
  getInternalDependencies,
6
6
  uploadFile
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  generator_default
3
- } from "./chunk-W36TE3H7.mjs";
3
+ } from "./chunk-UGR2XH36.mjs";
4
4
  import {
5
5
  findWorkspaceRoot,
6
6
  getConfig
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkCXQTVVMPjs = require('./chunk-CXQTVVMP.js');
3
+ var _chunk4YJ7HOGJjs = require('./chunk-4YJ7HOGJ.js');
4
4
 
5
5
 
6
6
 
@@ -66,7 +66,7 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[
66
66
  const options = await normalizeOptions(tree, schema, config);
67
67
  const tasks = [];
68
68
  tasks.push(
69
- await _chunkCXQTVVMPjs.generator_default.call(void 0, tree, {
69
+ await _chunk4YJ7HOGJjs.generator_default.call(void 0, tree, {
70
70
  ...options,
71
71
  skipFormat: true
72
72
  })
@@ -2,7 +2,8 @@
2
2
  var _nodehttphandler = require('@smithy/node-http-handler');
3
3
  function createHttpHandler() {
4
4
  return new (0, _nodehttphandler.NodeHttp2Handler)({
5
- requestTimeout: 5 * 60 * 1e3
5
+ requestTimeout: 5 * 60 * 1e3,
6
+ sessionTimeout: 5 * 60 * 1e3
6
7
  });
7
8
  }
8
9
 
@@ -7,7 +7,7 @@ var require_package = __commonJS({
7
7
  "package.json"(exports, module) {
8
8
  module.exports = {
9
9
  name: "@storm-software/cloudflare-tools",
10
- version: "0.71.13",
10
+ version: "0.71.14",
11
11
  description: "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
12
12
  repository: {
13
13
  type: "github",
@@ -136,9 +136,9 @@ var require_package = __commonJS({
136
136
  "@nx/js": "catalog:",
137
137
  "@nx/node": "catalog:",
138
138
  "@nx/web": "catalog:",
139
- "@storm-software/config": "1.134.62",
140
- "@storm-software/config-tools": "1.188.62",
141
- "@storm-software/workspace-tools": "1.294.6",
139
+ "@storm-software/config": "1.134.63",
140
+ "@storm-software/config-tools": "1.188.63",
141
+ "@storm-software/workspace-tools": "1.294.7",
142
142
  nx: "catalog:",
143
143
  tsup: "catalog:",
144
144
  wrangler: ">=3.58.0"
package/dist/executors.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";require('./chunk-XO66D74Z.js');
2
- require('./chunk-734BIUTA.js');
3
- require('./chunk-XG5T3FL6.js');
2
+ require('./chunk-2F6WSJSH.js');
3
+ require('./chunk-I5PY5AIW.js');
4
4
  require('./chunk-MSPE2JA2.js');
5
5
  require('./chunk-QBD2OGUY.js');
6
6
  require('./chunk-J5JJZJO5.js');
@@ -1,6 +1,6 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
- import "./chunk-23XVYAEH.mjs";
3
- import "./chunk-GMXZMPYW.mjs";
2
+ import "./chunk-742YXRS7.mjs";
3
+ import "./chunk-4DD7MPRF.mjs";
4
4
  import "./chunk-3UGLZEZF.mjs";
5
5
  import "./chunk-F6FHDDUJ.mjs";
6
6
  import "./chunk-FWIGE74R.mjs";
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkAUML5WGJjs = require('./chunk-AUML5WGJ.js');
5
+ var _chunkEZAVSRW6js = require('./chunk-EZAVSRW6.js');
6
6
 
7
7
 
8
8
 
9
- var _chunkCXQTVVMPjs = require('./chunk-CXQTVVMP.js');
9
+ var _chunk4YJ7HOGJjs = require('./chunk-4YJ7HOGJ.js');
10
10
  require('./chunk-VKMAYBQX.js');
11
11
  require('./chunk-Z2WQB55R.js');
12
12
  require('./chunk-MCKGQKYU.js');
@@ -15,4 +15,4 @@ require('./chunk-MCKGQKYU.js');
15
15
 
16
16
 
17
17
 
18
- exports.applicationGenerator = _chunkAUML5WGJjs.applicationGenerator; exports.applicationSchematic = _chunkAUML5WGJjs.applicationSchematic; exports.initGenerator = _chunkCXQTVVMPjs.initGenerator; exports.initSchematic = _chunkCXQTVVMPjs.initSchematic;
18
+ exports.applicationGenerator = _chunkEZAVSRW6js.applicationGenerator; exports.applicationSchematic = _chunkEZAVSRW6js.applicationSchematic; exports.initGenerator = _chunk4YJ7HOGJjs.initGenerator; exports.initSchematic = _chunk4YJ7HOGJjs.initSchematic;
@@ -2,11 +2,11 @@ import "./chunk-3J7KBHMJ.mjs";
2
2
  import {
3
3
  applicationGenerator,
4
4
  applicationSchematic
5
- } from "./chunk-AUJLTFB2.mjs";
5
+ } from "./chunk-C6PTZNDK.mjs";
6
6
  import {
7
7
  initGenerator,
8
8
  initSchematic
9
- } from "./chunk-W36TE3H7.mjs";
9
+ } from "./chunk-UGR2XH36.mjs";
10
10
  import "./chunk-SGTAZO2Q.mjs";
11
11
  import "./chunk-TPNHSNNZ.mjs";
12
12
  import "./chunk-TYYFTZLS.mjs";
package/dist/index.js CHANGED
@@ -1,15 +1,15 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }require('./chunk-XO66D74Z.js');
2
- require('./chunk-734BIUTA.js');
2
+ require('./chunk-2F6WSJSH.js');
3
3
  require('./chunk-DHBG5ASJ.js');
4
4
 
5
5
 
6
6
 
7
- var _chunkAUML5WGJjs = require('./chunk-AUML5WGJ.js');
7
+ var _chunkEZAVSRW6js = require('./chunk-EZAVSRW6.js');
8
8
 
9
9
 
10
10
 
11
- var _chunkCXQTVVMPjs = require('./chunk-CXQTVVMP.js');
12
- require('./chunk-XG5T3FL6.js');
11
+ var _chunk4YJ7HOGJjs = require('./chunk-4YJ7HOGJ.js');
12
+ require('./chunk-I5PY5AIW.js');
13
13
  require('./chunk-CVGPWUNP.js');
14
14
 
15
15
 
@@ -156,4 +156,4 @@ function createPackageJson(projectJsonPath, workspaceRoot) {
156
156
 
157
157
 
158
158
 
159
- exports.applicationGenerator = _chunkAUML5WGJjs.applicationGenerator; exports.applicationSchematic = _chunkAUML5WGJjs.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkMSPE2JA2js.getInternalDependencies; exports.initGenerator = _chunkCXQTVVMPjs.initGenerator; exports.initSchematic = _chunkCXQTVVMPjs.initSchematic; exports.name = name; exports.uploadFile = _chunkMSPE2JA2js.uploadFile;
159
+ exports.applicationGenerator = _chunkEZAVSRW6js.applicationGenerator; exports.applicationSchematic = _chunkEZAVSRW6js.applicationSchematic; exports.createNodesV2 = createNodesV2; exports.getInternalDependencies = _chunkMSPE2JA2js.getInternalDependencies; exports.initGenerator = _chunk4YJ7HOGJjs.initGenerator; exports.initSchematic = _chunk4YJ7HOGJjs.initSchematic; exports.name = name; exports.uploadFile = _chunkMSPE2JA2js.uploadFile;
package/dist/index.mjs CHANGED
@@ -1,15 +1,15 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
- import "./chunk-23XVYAEH.mjs";
2
+ import "./chunk-742YXRS7.mjs";
3
3
  import "./chunk-3J7KBHMJ.mjs";
4
4
  import {
5
5
  applicationGenerator,
6
6
  applicationSchematic
7
- } from "./chunk-AUJLTFB2.mjs";
7
+ } from "./chunk-C6PTZNDK.mjs";
8
8
  import {
9
9
  initGenerator,
10
10
  initSchematic
11
- } from "./chunk-W36TE3H7.mjs";
12
- import "./chunk-GMXZMPYW.mjs";
11
+ } from "./chunk-UGR2XH36.mjs";
12
+ import "./chunk-4DD7MPRF.mjs";
13
13
  import "./chunk-7Z5PILRU.mjs";
14
14
  import {
15
15
  getInternalDependencies,
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk734BIUTAjs = require('../../../chunk-734BIUTA.js');
4
- require('../../../chunk-XG5T3FL6.js');
3
+ var _chunk2F6WSJSHjs = require('../../../chunk-2F6WSJSH.js');
4
+ require('../../../chunk-I5PY5AIW.js');
5
5
  require('../../../chunk-MSPE2JA2.js');
6
6
  require('../../../chunk-N7FW365Q.js');
7
7
  require('../../../chunk-VKMAYBQX.js');
@@ -9,4 +9,4 @@ require('../../../chunk-Z2WQB55R.js');
9
9
  require('../../../chunk-MCKGQKYU.js');
10
10
 
11
11
 
12
- exports.default = _chunk734BIUTAjs.runExecutor;
12
+ exports.default = _chunk2F6WSJSHjs.runExecutor;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  runExecutor
3
- } from "../../../chunk-23XVYAEH.mjs";
4
- import "../../../chunk-GMXZMPYW.mjs";
3
+ } from "../../../chunk-742YXRS7.mjs";
4
+ import "../../../chunk-4DD7MPRF.mjs";
5
5
  import "../../../chunk-3UGLZEZF.mjs";
6
6
  import "../../../chunk-3MAI3FU2.mjs";
7
7
  import "../../../chunk-SGTAZO2Q.mjs";
@@ -2,10 +2,10 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkCXQTVVMPjs = require('../../../chunk-CXQTVVMP.js');
5
+ var _chunk4YJ7HOGJjs = require('../../../chunk-4YJ7HOGJ.js');
6
6
  require('../../../chunk-MCKGQKYU.js');
7
7
 
8
8
 
9
9
 
10
10
 
11
- exports.default = _chunkCXQTVVMPjs.generator_default; exports.initGenerator = _chunkCXQTVVMPjs.initGenerator; exports.initSchematic = _chunkCXQTVVMPjs.initSchematic;
11
+ exports.default = _chunk4YJ7HOGJjs.generator_default; exports.initGenerator = _chunk4YJ7HOGJjs.initGenerator; exports.initSchematic = _chunk4YJ7HOGJjs.initSchematic;
@@ -2,7 +2,7 @@ import {
2
2
  generator_default,
3
3
  initGenerator,
4
4
  initSchematic
5
- } from "../../../chunk-W36TE3H7.mjs";
5
+ } from "../../../chunk-UGR2XH36.mjs";
6
6
  import "../../../chunk-TYYFTZLS.mjs";
7
7
  export {
8
8
  generator_default as default,
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkAUML5WGJjs = require('../../../chunk-AUML5WGJ.js');
6
- require('../../../chunk-CXQTVVMP.js');
5
+ var _chunkEZAVSRW6js = require('../../../chunk-EZAVSRW6.js');
6
+ require('../../../chunk-4YJ7HOGJ.js');
7
7
  require('../../../chunk-VKMAYBQX.js');
8
8
  require('../../../chunk-Z2WQB55R.js');
9
9
  require('../../../chunk-MCKGQKYU.js');
@@ -11,4 +11,4 @@ require('../../../chunk-MCKGQKYU.js');
11
11
 
12
12
 
13
13
 
14
- exports.applicationGenerator = _chunkAUML5WGJjs.applicationGenerator; exports.applicationSchematic = _chunkAUML5WGJjs.applicationSchematic; exports.default = _chunkAUML5WGJjs.generator_default;
14
+ exports.applicationGenerator = _chunkEZAVSRW6js.applicationGenerator; exports.applicationSchematic = _chunkEZAVSRW6js.applicationSchematic; exports.default = _chunkEZAVSRW6js.generator_default;
@@ -2,8 +2,8 @@ import {
2
2
  applicationGenerator,
3
3
  applicationSchematic,
4
4
  generator_default
5
- } from "../../../chunk-AUJLTFB2.mjs";
6
- import "../../../chunk-W36TE3H7.mjs";
5
+ } from "../../../chunk-C6PTZNDK.mjs";
6
+ import "../../../chunk-UGR2XH36.mjs";
7
7
  import "../../../chunk-SGTAZO2Q.mjs";
8
8
  import "../../../chunk-TPNHSNNZ.mjs";
9
9
  import "../../../chunk-TYYFTZLS.mjs";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkXG5T3FL6js = require('../../chunk-XG5T3FL6.js');
3
+ var _chunkI5PY5AIWjs = require('../../chunk-I5PY5AIW.js');
4
4
  require('../../chunk-MCKGQKYU.js');
5
5
 
6
6
 
7
- exports.createHttpHandler = _chunkXG5T3FL6js.createHttpHandler;
7
+ exports.createHttpHandler = _chunkI5PY5AIWjs.createHttpHandler;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createHttpHandler
3
- } from "../../chunk-GMXZMPYW.mjs";
3
+ } from "../../chunk-4DD7MPRF.mjs";
4
4
  import "../../chunk-TYYFTZLS.mjs";
5
5
  export {
6
6
  createHttpHandler
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/cloudflare-tools",
3
- "version": "0.71.14",
3
+ "version": "0.71.15",
4
4
  "description": "A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -117,9 +117,9 @@
117
117
  "@nx/js": "^22.1.3",
118
118
  "@nx/node": "^22.1.3",
119
119
  "@nx/web": "^22.1.3",
120
- "@storm-software/config": "1.134.62",
121
- "@storm-software/config-tools": "1.188.62",
122
- "@storm-software/workspace-tools": "1.294.6",
120
+ "@storm-software/config": "1.134.63",
121
+ "@storm-software/config-tools": "1.188.63",
122
+ "@storm-software/workspace-tools": "1.294.7",
123
123
  "nx": "^22.1.3",
124
124
  "tsup": "8.4.0",
125
125
  "wrangler": ">=3.58.0"
@@ -152,5 +152,5 @@
152
152
  "publishConfig": { "access": "public" },
153
153
  "executors": "./executors.json",
154
154
  "generators": "./generators.json",
155
- "gitHead": "fa465e4209d943a544281aa17f54ef8877fd54a2"
155
+ "gitHead": "ecf92fdae5fd9ab519c263e6289345824e7dd61a"
156
156
  }