Skip to content

Commit e1b5fbe

Browse files
Update ZAP to fix codegen for nullable attributes. (#33834)
Fixes #33413 MIN_ZAP_VERSION is set differently from the tag being used, because the actual changeset tagged with that tag is from 2024-06-06, not 2024-06-10.
1 parent 17cda5a commit e1b5fbe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scripts/setup/zap.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"mac-amd64",
99
"windows-amd64"
1010
],
11-
"tags": ["version:2@v2024.04.15-nightly.1"]
11+
"tags": ["version:2@v2024.06.10-nightly.1"]
1212
},
1313
{
1414
"_comment": "Always get the amd64 version on mac until usable arm64 zap build is available",
1515
"path": "fuchsia/third_party/zap/mac-amd64",
1616
"platforms": ["mac-arm64"],
17-
"tags": ["version:2@v2024.04.15-nightly.1"]
17+
"tags": ["version:2@v2024.06.10-nightly.1"]
1818
}
1919
]
2020
}

scripts/setup/zap.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2024.04.15-nightly
1+
v2024.06.10-nightly

scripts/tools/zap/zap_execution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Use scripts/tools/zap/version_update.py to manage ZAP versioning as many
2424
# files may need updating for versions
2525
#
26-
MIN_ZAP_VERSION = '2024.4.15'
26+
MIN_ZAP_VERSION = '2024.6.6'
2727

2828

2929
class ZapTool:

0 commit comments

Comments
 (0)