sst 2.44.1 → 2.44.2

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.
@@ -148,7 +148,7 @@ export interface JobProps {
148
148
  */
149
149
  memorySize?: JobMemorySize;
150
150
  /**
151
- * The execution timeout. Minimum 5 minutes. Maximum 8 hours.
151
+ * The execution timeout. Minimum 5 minutes. Maximum 36 hours.
152
152
  *
153
153
  * @default "8 hours"
154
154
  *
package/constructs/Job.js CHANGED
@@ -406,7 +406,7 @@ export class Job extends Construct {
406
406
  }
407
407
  normalizeTimeout(timeout) {
408
408
  const value = toCdkDuration(timeout);
409
- if (value.toSeconds() < 5 * 60 || value.toSeconds() > 480 * 60) {
409
+ if (value.toSeconds() < 5 * 60 || value.toSeconds() > 2160 * 60) {
410
410
  throw new Error(`Invalid timeout value for the ${this.node.id} Job.`);
411
411
  }
412
412
  return value;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.44.1",
4
+ "version": "2.44.2",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
@@ -118,7 +118,7 @@
118
118
  "@types/ws": "^8.5.3",
119
119
  "@types/yargs": "^17.0.13",
120
120
  "archiver": "^5.3.1",
121
- "astro-sst": "2.44.1",
121
+ "astro-sst": "2.44.2",
122
122
  "async": "^3.2.4",
123
123
  "tsx": "^3.12.1",
124
124
  "typescript": "^5.2.2",