Since we upgraded from `0.57.0` to `0.59.1` SST fe...
# help
d
Since we upgraded from
0.57.0
to
0.59.1
SST feels not stable. Just right now we added this to our storage stack:
Copy code
indexProps: {
            nonKeyAttributes: ['description', 'publishedAt'],
            projectionType: ProjectionType.INCLUDE
          }
The file
.build/cdk.out/dev-xx-storage-template.json
went from
Copy code
"Projection": {
              "ProjectionType": "ALL"
            }
to
Copy code
"Projection": {
              "NonKeyAttributes": [
                "description",
                "publishedAt"
              ],
              "ProjectionType": "INCLUDE"
            }
But in the console I still always get:
Copy code
Stacks: Synthesizing changes...
Successfully synthesized to /Users/daniel/Github/xx/.build/cdk.out
Stacks: No changes to deploy.
On AWS I can see that my table is still with Projected Attributes
ALL
. Am I missing something here?
r
Possibly related to this
f
Hi @Daniel Gato, I’m looking into this rn. Will update shortly.
d
I just realised there is already new versions. I’ll try to update to
0.60.3
r
Probably worth waiting for Frank to get back as it wasn't working in 0.60.x too
d
(I have both set 😉 )
Both version are not working for me. The difference I get on the console the removal of
Successfully synthesized to /Users/daniel/Github/xx/.build/cdk.out
f
Should have a fix in an hour or 2.
Fixed in 0.60.5!