@reventlessdev/rescript-pulumi-aws 3.0.0-alpha.10 → 3.0.0-alpha.11
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 +1 -1
- package/src/Lambda/Lambda.res +6 -0
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
|
+
# 3.0.0-alpha.11 (2026-09-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **aws:** the collector gate waits on the one property an update changes ([2c48193](https://github.com/ReventlessDev/reventless-core/commit/2c481934d58c64b8e637d0df1b051b03cf59a35c))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 3.0.0-alpha.10 (2026-09-08)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
|
package/package.json
CHANGED
package/src/Lambda/Lambda.res
CHANGED
|
@@ -253,6 +253,12 @@ module Function = {
|
|
|
253
253
|
id: Pulumi.Output.t<string>,
|
|
254
254
|
name: Pulumi.Output.t<string>,
|
|
255
255
|
invokeArn: Pulumi.Output.t<string>,
|
|
256
|
+
/** When AWS last wrote the function. Server-computed and different after
|
|
257
|
+
every code update, which is what separates it from the four identifiers
|
|
258
|
+
above: those are equal before and after, so the engine can resolve them
|
|
259
|
+
from existing state without waiting for the update. Depend on this one to
|
|
260
|
+
wait for the new code to actually be live. */
|
|
261
|
+
lastModified: Pulumi.Output.t<string>,
|
|
256
262
|
}
|
|
257
263
|
|
|
258
264
|
@module("@pulumi/aws") @scope("lambda") @new
|