|
1 | 1 | # quickjs-build changelog |
2 | 2 |
|
| 3 | +## 2023-04-28 Version 6.0.0, @NickNaso |
| 4 | + |
| 5 | +### Notable changes |
| 6 | + |
| 7 | +* Update QuickJS to version 2022-03-07. |
| 8 | +* Fixed error build for Windows. |
| 9 | + |
| 10 | +### Commits |
| 11 | + |
| 12 | +* \[[`b28783c9be`](https://github.com/nodejs/node/commit/b28783c9be)] - Merge pull request #14 from gengjiawen/feat/bump (Nicola Del Gobbo) |
| 13 | +* \[[`c7cf621319`](https://github.com/nodejs/node/commit/c7cf621319)] - update README (Jiawen Geng) |
| 14 | +* \[[`720973720f`](https://github.com/nodejs/node/commit/720973720f)] - Update quickjs-build.yml (Jiawen Geng) |
| 15 | +* \[[`bc86489e59`](https://github.com/nodejs/node/commit/bc86489e59)] - **fix**: windows (gengjiawen) |
| 16 | +* \[[`fc4f6fc14b`](https://github.com/nodejs/node/commit/fc4f6fc14b)] - **feat**: sync quickjs to 20220307 (gengjiawen) |
| 17 | + |
3 | 18 | ## 2021-08-25 Version 5.3.0, @NickNaso |
4 | 19 |
|
5 | 20 | ### Notable changes |
|
19 | 34 |
|
20 | 35 | ### Notable changes |
21 | 36 |
|
22 | | -- Added executable for `run-test262`. |
23 | | -- Auto source generation. |
| 37 | +* Added executable for `run-test262`. |
| 38 | +* Auto source generation. |
24 | 39 |
|
25 | 40 | ### Commits |
26 | 41 |
|
|
33 | 48 |
|
34 | 49 | ### Notable changes |
35 | 50 |
|
36 | | -- Added executable for `quickjs` and `qjsc`. |
| 51 | +* Added executable for `quickjs` and `qjsc`. |
37 | 52 |
|
38 | 53 | ### Commits |
39 | 54 |
|
|
46 | 61 |
|
47 | 62 | ### Notable changes |
48 | 63 |
|
49 | | -- Fixed the build on *nix systems. |
50 | | -- QuickJS version 2021-03-27. |
| 64 | +* Fixed the build on *nix systems. |
| 65 | +* QuickJS version 2021-03-27. |
51 | 66 |
|
52 | 67 | ### QuickJS changes: |
53 | 68 |
|
54 | | -- Faster Array.prototype.push and Array.prototype.unshift. |
55 | | -- Added JS_UpdateStackTop(). |
56 | | -- Fixed Windows console. |
57 | | -- Misc bug fixes. |
| 69 | +* Faster Array.prototype.push and Array.prototype.unshift. |
| 70 | +* Added JS_UpdateStackTop(). |
| 71 | +* Fixed Windows console. |
| 72 | +* Misc bug fixes. |
58 | 73 |
|
59 | 74 | ### Commits |
60 | 75 |
|
|
70 | 85 |
|
71 | 86 | ### QuickJS changes |
72 | 87 |
|
73 | | -- Improved function parameter initializers. |
74 | | -- Added `std.setenv()`, `std.unsetenv()` and `std.getenviron()`. |
75 | | -- Added JS_EvalThis(). |
76 | | -- Misc bug fixes. |
| 88 | +* Improved function parameter initializers. |
| 89 | +* Added `std.setenv()`, `std.unsetenv()` and `std.getenviron()`. |
| 90 | +* Added JS_EvalThis(). |
| 91 | +* Misc bug fixes. |
77 | 92 |
|
78 | 93 | ### Commits |
79 | 94 |
|
|
83 | 98 |
|
84 | 99 | ### Notable changes |
85 | 100 |
|
86 | | -- Update the assets for the release only when the release has been published. |
87 | | -- QuickJS version 2020-09-06. |
| 101 | +* Update the assets for the release only when the release has been published. |
| 102 | +* QuickJS version 2020-09-06. |
88 | 103 |
|
89 | 104 | ### QuickJS changes |
90 | 105 |
|
91 | | -- Added logical assignment operators. |
92 | | -- Added IsHTMLDDA support. |
93 | | -- Faster for-of loops. |
94 | | -- os.Worker now takes a module filename as parameter. |
95 | | -- qjsc: added -D option to compile dynamically loaded modules or workers. |
96 | | -- Misc bug fixes. |
| 106 | +* Added logical assignment operators. |
| 107 | +* Added IsHTMLDDA support. |
| 108 | +* Faster for-of loops. |
| 109 | +* os.Worker now takes a module filename as parameter. |
| 110 | +* qjsc: added -D option to compile dynamically loaded modules or workers. |
| 111 | +* Misc bug fixes. |
97 | 112 |
|
98 | 113 | ### Commits |
99 | 114 |
|
|
104 | 119 |
|
105 | 120 | ### Notable changes |
106 | 121 |
|
107 | | -- QuickJS version 2020-07-05. |
| 122 | +* QuickJS version 2020-07-05. |
108 | 123 |
|
109 | 124 | ### QuickJS changes |
110 | 125 |
|
111 | | -- Modified JS_GetPrototype() to return a live value. |
112 | | -- REPL: support unicode characters larger than 16 bits. |
113 | | -- Added os.Worker. |
114 | | -- Improved object serialization. |
115 | | -- Added std.parseExtJSON. |
116 | | -- Misc bug fixes. |
| 126 | +* Modified JS_GetPrototype() to return a live value. |
| 127 | +* REPL: support unicode characters larger than 16 bits. |
| 128 | +* Added os.Worker. |
| 129 | +* Improved object serialization. |
| 130 | +* Added std.parseExtJSON. |
| 131 | +* Misc bug fixes. |
117 | 132 |
|
118 | 133 | ### Commits |
119 | 134 |
|
|
123 | 138 |
|
124 | 139 | ### Notable changes |
125 | 140 |
|
126 | | -- Initial implementation for the project. |
127 | | -- QuickJS version 2020-07-05. |
| 141 | +* Initial implementation for the project. |
| 142 | +* QuickJS version 2020-07-05. |
128 | 143 |
|
129 | 144 | ### Commits |
130 | 145 |
|
|
0 commit comments