The publish function fails when no tags are supplied because the tag variable has not been initialized. Additionally, we want to include an option to override the Memory-Limit setting, as the current implementation fails to parse this value correctly from the config file. Lastly, the code update (CU) requires support for newer loader formats, such as ['wasm32-unknown-emscripten3', 'wasm32-unknown-emscripten4'].
Proposed Solution
Initialize the tag Variable
Ensure that the tag array is properly initialized to avoid issues when no tags are supplied.
Memory-Limit Override and Parsing Fix
Allow adding the Memory-Limit' flag manually to override theMemory-Limit` value.
Correct the config file parsing mechanism to accurately retrieve and set Memory-Limit automatically.
Support for Newer Loader Formats
Update the CU to include support for loader formats such as wasm32-unknown-emscripten3 and wasm32-unknown-emscripten4.
Acceptance Criteria
The publish function successfully handles scenarios where no tags are supplied.
The Memory-Limit setting can be overridden and is correctly parsed from the config file.
CU recognizes and supports wasm32-unknown-emscripten3 and wasm32-unknown-emscripten4 loader formats.
Description
The
publish
function fails when no tags are supplied because thetag
variable has not been initialized. Additionally, we want to include an option to override theMemory-Limit
setting, as the current implementation fails to parse this value correctly from the config file. Lastly, the code update (CU) requires support for newer loader formats, such as['wasm32-unknown-emscripten3', 'wasm32-unknown-emscripten4']
.Proposed Solution
Initialize the
tag
VariableEnsure that the
tag
array is properly initialized to avoid issues when no tags are supplied.Memory-Limit Override and Parsing Fix
Memory-Limit' flag manually to override the
Memory-Limit` value.Memory-Limit
automatically.Support for Newer Loader Formats
Update the CU to include support for loader formats such as
wasm32-unknown-emscripten3
andwasm32-unknown-emscripten4
.Acceptance Criteria
publish
function successfully handles scenarios where no tags are supplied.Memory-Limit
setting can be overridden and is correctly parsed from the config file.wasm32-unknown-emscripten3
andwasm32-unknown-emscripten4
loader formats.