New stress test for future foreach() local iterator.
[mpsl.git] / RELEASE_NOTES
blob6a118143dee753bee2103f53dfbb34251dcbf6a9
1 MPSL Release Notes
2 ==================
4 1.0.3
5 -----
7  * Anonymous subroutines now run inside a block frame
8    instead of a subroutine frame. This way, they can have
9    access to local variables defined in the subroutine
10    they are called from. So, for example, if you run
11    map() inside a subroutine, its anonymous code block
12    can access the local variables defined there.
13  * getenv() doesn't crash if the environment variable
14    does not exist.
16 1.0.2
17 -----
19  * Small internal refactoring regarding subroutine and
20    block frames. Frame creation code has been unified,
21    so block frames don't crash when a NULL local symbol
22    table is sent as argument, and can have arguments.
23    This change is not visible from outside; only a step
24    towards closing bug #1107.