Releases: algorandfoundation/TEALScript
Releases · algorandfoundation/TEALScript
0.88.0
0.87.0
Breaking Changes
number
is no longer supported, useuint64
instead- math operations on
uintNxM
types are no longer supported
Other Changes
- add
DynamicScratchSlot
to support dynamic scratch slots - fixes static values in box storage in property access chains
- fixes incorrect type on
.exists
and other maybe value methods (nowboolean
) - fixes assignment operators (ie.
+=
) for scratch slots
0.86.0
0.85.0
- remove erroneous
log
fromitoa
method generated viatoString
- fix
continue
branch location forfor
loops - support
for...of
loops (withcontinue
andbreak
support) - fix error thrown when accessing a value from a box static array stored in a variable
0.84.0
0.83.1
0.83.0
- method signatures can now be passed to
sendMethodCall
(ie.sendMethodCall<typeof MyApp.prototype.myMethod>
) len
now takes a type argument to calculate its size without a value (ie.len<MyCustomType>()
)len
will no longer push anything to the stack (other than the length) for static values