@reventlessdev/rescript-pulumi-aws 3.0.0-alpha.0 → 3.0.0-alpha.1

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,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.1 (2026-08-18)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **aws:** normalize the null a table without a sort key resolves to ([8fb15ac](https://github.com/ReventlessDev/reventless-core/commit/8fb15ac066679b6799f4287c2c8d332e2367f599))
11
+
12
+
6
13
  # 3.0.0-alpha.0 (2026-08-18)
7
14
 
8
15
  * feat(sury)!: migrate to sury 11.0.0-rc.1 ([2cf8969](https://github.com/ReventlessDev/reventless-core/commit/2cf8969a222ce1b775563668a4126cb20611966c))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/rescript-pulumi-aws",
3
- "version": "3.0.0-alpha.0",
3
+ "version": "3.0.0-alpha.1",
4
4
  "description": "ReScript bindings for @pulumi/aws",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -9,7 +9,9 @@ type t = {
9
9
  name: Pulumi.Output.t<string>,
10
10
  id: Pulumi.Output.t<string>,
11
11
  hashKey: Pulumi.Output.t<string>,
12
- rangeKey: Pulumi.Output.t<option<string>>,
12
+ // Pulumi resolves an absent range key to `null`, which ReScript's `option`
13
+ // (None = undefined) does not accept. Nullable is the shape that arrives.
14
+ rangeKey: Pulumi.Output.t<Nullable.t<string>>,
13
15
  streamEnabled: Pulumi.Output.t<option<bool>>,
14
16
  streamArn: Pulumi.Output.t<string>,
15
17
  streamLabel: Pulumi.Output.t<string>,