@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.65 → 2.4.0-alpha.67

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
@@ -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
+ # 2.4.0-alpha.67 (2026-08-08)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **aws:** create a Lambda's log group before the function that writes to it ([8d1e459](https://github.com/ReventlessDev/reventless-core/commit/8d1e4591127489d2ae8e84e7ade3843a1a859eb6))
11
+
12
+
13
+ # 2.4.0-alpha.66 (2026-08-05)
14
+
15
+ **Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
16
+
17
+
18
+
19
+
20
+
6
21
  # 2.4.0-alpha.65 (2026-08-03)
7
22
 
8
23
  **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.65",
3
+ "version": "2.4.0-alpha.67",
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.3",
25
+ "@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.4",
26
26
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18"
27
27
  },
28
28
  "devDependencies": {
@@ -215,6 +215,22 @@ module Function = {
215
215
  securityGroupIds: Pulumi.Input.t<array<Pulumi.Input.t<string>>>,
216
216
  }
217
217
 
218
+ /** Advanced Logging Controls. Naming `logGroup` here is what lets a deploy own
219
+ the group: the function writes to a group the program created, so Lambda
220
+ never lazily auto-creates `/aws/lambda/<physical name>` on first invocation
221
+ and there is no window in which the two can race.
222
+
223
+ `logFormat` is required by the provider. `Text` is AWS's own default and
224
+ leaves the emitted lines byte-identical; `JSON` wraps every application line
225
+ in an envelope, and is the only mode in which `applicationLogLevel` /
226
+ `systemLogLevel` apply. */
227
+ type loggingConfig = {
228
+ logFormat: Pulumi.Input.t<string>,
229
+ logGroup?: Pulumi.Input.t<string>,
230
+ applicationLogLevel?: Pulumi.Input.t<string>,
231
+ systemLogLevel?: Pulumi.Input.t<string>,
232
+ }
233
+
218
234
  type args = {
219
235
  handler?: Pulumi.Input.t<string>,
220
236
  runtime?: Pulumi.Input.t<string>,
@@ -229,6 +245,7 @@ module Function = {
229
245
  reservedConcurrentExecutions?: Pulumi.Input.t<int>,
230
246
  ephemeralStorage?: Pulumi.Input.t<ephemeralStorage>,
231
247
  vpcConfig?: Pulumi.Input.t<vpcConfig>,
248
+ loggingConfig?: Pulumi.Input.t<loggingConfig>,
232
249
  }
233
250
 
234
251
  type t = {