@reventlessdev/rescript-aws-sdk 3.0.0-alpha.14 → 3.0.0-alpha.16
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 +15 -0
- package/package.json +2 -2
- package/src/S3.res +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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
|
+
# 3.0.0-alpha.16 (2026-09-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **aws:** the boot files a deploy rewrites in place carry no-cache ([01a4d21](https://github.com/ReventlessDev/reventless-core/commit/01a4d21a50a7890fcbd541f8a336b1333100148a))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# 3.0.0-alpha.15 (2026-09-04)
|
|
14
|
+
|
|
15
|
+
**Note:** Version bump only for package @reventlessdev/rescript-aws-sdk
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 3.0.0-alpha.14 (2026-08-27)
|
|
7
22
|
|
|
8
23
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/rescript-aws-sdk",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.16",
|
|
4
4
|
"description": "ReScript bindings for aws-sdk",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"dependencies": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@aws-sdk/lib-dynamodb": "^3.1033.0",
|
|
21
21
|
"@aws-sdk/lib-storage": "^3.1033.0",
|
|
22
22
|
"@smithy/node-http-handler": "^4.5.3",
|
|
23
|
-
"@reventlessdev/rescript-node": "2.0.0-alpha.
|
|
23
|
+
"@reventlessdev/rescript-node": "2.0.0-alpha.10"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"rescript": "12.3.0"
|
package/src/S3.res
CHANGED
|
@@ -234,6 +234,7 @@ module PutObjectCommand = {
|
|
|
234
234
|
body: body,
|
|
235
235
|
@as("ContentLength") contentLength?: int,
|
|
236
236
|
@as("ContentType") contentType?: string,
|
|
237
|
+
@as("CacheControl") cacheControl?: string,
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
type output = {@as("ETag") eTag: string, @as("VersionId") versionId: string}
|