Skip to content

Commit 3e4323f

Browse files
authored
chore: fix Dafny verification (#1627)
1 parent e693da7 commit 3e4323f

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This release is available in the following languages:
99
### Features
1010

1111
- **SharedCache:** Shared Cache for Searchable Encryption ([#1476](https://github.com/aws/aws-database-encryption-sdk-dynamodb/issues/1476)) ([46076f8](https://github.com/aws/aws-database-encryption-sdk-dynamodb/commit/46076f86aec77f7df204c1e06a8ecb2400f01b6f))
12+
- bump to dafny 4.9.0 and mpl 1.9.0 ([#1627](https://github.com/aws/aws-database-encryption-sdk-dynamodb/pull/1627))
1213

1314
### Fixes
1415

DynamoDbEncryption/dafny/DynamoDbEncryption/src/ConfigToInfo.dfy

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ module SearchConfigToInfo {
176176
var cache;
177177
if cacheType.Shared? {
178178
cache := cacheType.Shared;
179-
reveal ValidSharedCache(config);
179+
reveal ValidSharedCache();
180180
} else {
181181
//= specification/searchable-encryption/search-config.md#key-store-cache
182182
//# For a Beacon Key Source a [CMC](../../submodules/MaterialProviders/aws-encryption-sdk-specification/framework/cryptographic-materials-cache.md)

codebuild/release/release-prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ phases:
1919
commands:
2020
- cd ..
2121
# Get Dafny
22-
- curl https://github.com/dafny-lang/dafny/releases/download/v4.8.0/dafny-4.8.0-x64-ubuntu-20.04.zip -L -o dafny.zip
22+
- curl https://github.com/dafny-lang/dafny/releases/download/v4.9.0/dafny-4.9.0-x64-ubuntu-20.04.zip -L -o dafny.zip
2323
- unzip -qq dafny.zip && rm dafny.zip
2424
- export PATH="$PWD/dafny:$PATH"
2525
# Get Gradle 7.6

codebuild/release/validate-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ phases:
1414
commands:
1515
- cd ..
1616
# Get Dafny
17-
- curl https://github.com/dafny-lang/dafny/releases/download/v4.8.0/dafny-4.8.0-x64-ubuntu-20.04.zip -L -o dafny.zip
17+
- curl https://github.com/dafny-lang/dafny/releases/download/v4.9.0/dafny-4.9.0-x64-ubuntu-20.04.zip -L -o dafny.zip
1818
- unzip -qq dafny.zip && rm dafny.zip
1919
- export PATH="$PWD/dafny:$PATH"
2020
# Get Gradle 7.6

codebuild/staging/release-staging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ phases:
2121
commands:
2222
- cd ..
2323
# Get Dafny
24-
- curl https://github.com/dafny-lang/dafny/releases/download/v4.8.0/dafny-4.8.0-x64-ubuntu-20.04.zip -L -o dafny.zip
24+
- curl https://github.com/dafny-lang/dafny/releases/download/v4.9.0/dafny-4.9.0-x64-ubuntu-20.04.zip -L -o dafny.zip
2525
- unzip -qq dafny.zip && rm dafny.zip
2626
- export PATH="$PWD/dafny:$PATH"
2727
# Get Gradle 7.6

codebuild/staging/validate-staging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ phases:
1818
commands:
1919
- cd ..
2020
# Get Dafny
21-
- curl https://github.com/dafny-lang/dafny/releases/download/v4.8.0/dafny-4.8.0-x64-ubuntu-20.04.zip -L -o dafny.zip
21+
- curl https://github.com/dafny-lang/dafny/releases/download/v4.9.0/dafny-4.9.0-x64-ubuntu-20.04.zip -L -o dafny.zip
2222
- unzip -qq dafny.zip && rm dafny.zip
2323
- export PATH="$PWD/dafny:$PATH"
2424
# Get Gradle 7.6

0 commit comments

Comments
 (0)