@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.62 → 2.4.0-alpha.63
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 +7 -0
- package/package.json +2 -2
- package/src/S3/S3_Bucket.res +16 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 2.4.0-alpha.63 (2026-08-02)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **aws,core,spec,seed-aws:** expire uploads nobody committed a reference to ([f63e84c](https://github.com/ReventlessDev/reventless-core/commit/f63e84c1a11cc350b799a6f69a2e7427cf1ea6e9))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 2.4.0-alpha.62 (2026-07-31)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/rescript-pulumi-aws",
|
|
3
|
-
"version": "2.4.0-alpha.
|
|
3
|
+
"version": "2.4.0-alpha.63",
|
|
4
4
|
"description": "ReScript bindings for @pulumi/aws",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@pulumi/aws": "~7.19.0",
|
|
23
23
|
"@pulumi/aws-native": "^1.62.0",
|
|
24
24
|
"sury": "11.0.0-alpha.4",
|
|
25
|
-
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.
|
|
25
|
+
"@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.1",
|
|
26
26
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
package/src/S3/S3_Bucket.res
CHANGED
|
@@ -19,10 +19,13 @@ type corsRule = {
|
|
|
19
19
|
|
|
20
20
|
type corsRules = array<corsRule>
|
|
21
21
|
|
|
22
|
+
// Optional throughout: the provider accepts (and mostly requires) exactly one
|
|
23
|
+
// of `date` / `days`, so a record forcing both would be unconstructible without
|
|
24
|
+
// writing a value the API rejects.
|
|
22
25
|
type lifecycleRuleExpiration = {
|
|
23
|
-
date
|
|
24
|
-
days
|
|
25
|
-
expiredObjectDeleteMarker
|
|
26
|
+
date?: string,
|
|
27
|
+
days?: int,
|
|
28
|
+
expiredObjectDeleteMarker?: bool,
|
|
26
29
|
}
|
|
27
30
|
|
|
28
31
|
type lifecycleRuleNoncurrentVersionExpiration = {days: int}
|
|
@@ -38,16 +41,18 @@ type lifecycleRuleTransition = {
|
|
|
38
41
|
storageClass: string,
|
|
39
42
|
}
|
|
40
43
|
|
|
44
|
+
/** `enabled` is the only required field. `prefix` and `tags` together are the
|
|
45
|
+
rule's filter — a rule carrying both matches objects satisfying both. */
|
|
41
46
|
type lifecycleRule = {
|
|
42
|
-
abortIncompleteMultipartUploadDays
|
|
47
|
+
abortIncompleteMultipartUploadDays?: int,
|
|
43
48
|
enabled: bool,
|
|
44
|
-
expiration
|
|
45
|
-
id
|
|
46
|
-
noncurrentVersionExpiration
|
|
47
|
-
noncurrentVersionTransitions
|
|
48
|
-
prefix
|
|
49
|
-
tags
|
|
50
|
-
transitions
|
|
49
|
+
expiration?: lifecycleRuleExpiration,
|
|
50
|
+
id?: string,
|
|
51
|
+
noncurrentVersionExpiration?: lifecycleRuleNoncurrentVersionExpiration,
|
|
52
|
+
noncurrentVersionTransitions?: array<lifecycleRuleNoncurrentVersionTransition>,
|
|
53
|
+
prefix?: string,
|
|
54
|
+
tags?: Aws.tags,
|
|
55
|
+
transitions?: array<lifecycleRuleTransition>,
|
|
51
56
|
}
|
|
52
57
|
|
|
53
58
|
type lifecycleRules = array<lifecycleRule>
|