CHANGELOG 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  1. ?? May 2017 - Release 0.19.1
  2. ===================================
  3. * Kernel slimmed, things moved to Smalltalk side.
  4. * Kernel (sans parser) calls only this Smalltalk-side API:
  5. * AmberBootstrapInitialization class >> run
  6. * Message class >> selector:arguments:notUnderstoodBy:
  7. * Dictionary class >> newFromPairs:
  8. * ErrorHandler class >> handleError:
  9. * JSObjectProxy class >> on:
  10. * NonBooleanReceiver class >> signalOn:
  11. Commits: https://lolg.it/amber/amber/commits/0.19.1.
  12. 20 April 2017 - Release 0.19.0
  13. ===================================
  14. * Removed BehaviorBody in favour of traits TBehaviorDefaults and TBehaviorProvider.
  15. * Move Thenable class to TThenable trait.
  16. * Removed `.allowJavaScriptCalls` flag.
  17. * Internal `.isNil` deprecated in favour of `.a$nil`.
  18. * Internal `.klass` deprecated in favour of `.a$cls`.
  19. * Both 'self' and '$self' compiled in method code.
  20. * '$self' used as receiver, 'self' used to pass a value.
  21. * Libs bumped: amber-contrib-{web,jquery,legacy}, helios, domite, silk.
  22. Breaks fw compat, uses `a$nil` and `a$cls` when compiling / saving code.
  23. May break bw compat for code using `.allowJavaScriptCalls` (very unlikely).
  24. Commits: https://lolg.it/amber/amber/commits/0.19.0.
  25. 7 April 2017 - Release 0.18.5
  26. ===================================
  27. * Fix inability to change ivars.
  28. * Wrapper-JQuery bumped to use inlineJS: syntax.
  29. Commits: https://lolg.it/amber/amber/commits/0.18.5.
  30. 5 March 2017 - Release 0.18.4
  31. ===================================
  32. * Fix export of extension trait methods.
  33. Commits: https://lolg.it/amber/amber/commits/0.18.4.
  34. 22 February 2017 - Release 0.18.3
  35. ===================================
  36. * Traits, with a few limitations and incomplete IDE support.
  37. * Methods / classes / traits are recompiled when moved (fix #1142, #1170).
  38. Commits: https://lolg.it/amber/amber/commits/0.18.3.
  39. 1 January 2017 - Release 0.18.2
  40. ===================================
  41. * DOM-related stuff in own package (not loaded by default, use imports:).
  42. * Accompanying libs updated and semver-bumped: Web, Domite, Helios-* and IDE.
  43. * Silk is high-level enough so no bump neither b/c of inlineJS: nor b/c of DOM stuff needed.
  44. * Wrapper-JQuery bump postponed.
  45. Commits: https://lolg.it/amber/amber/commits/0.18.2.
  46. 21 November 2016 - Release 0.18.1
  47. ===================================
  48. * Parser fails fast on mistyped inlineJS: form.
  49. * Previously, it treated it as legacy form.
  50. Commits: https://lolg.it/amber/amber/commits/0.18.1.
  51. 5 November 2016 - Release 0.18.0
  52. ===================================
  53. * Remove some old internal pieces.
  54. * Allow new syntax for inline JS method body: <inlineJS: '...js code...'>
  55. * If used in libraries / reused modules, breaks fw compat.
  56. * Old syntax is deprecated, but retained in libraries for some grace period.
  57. May break bw compat because of removed internal pieces.
  58. Commits: https://lolg.it/amber/amber/commits/0.18.0.
  59. 19 October 2016 - Release 0.17.0
  60. ===================================
  61. * Remove some deprecated classes and methods.
  62. * Fix fw compat break of 0.16.1.
  63. Breaks bw compat because of removed deprecated pieces.
  64. Commits: https://lolg.it/amber/amber/commits/0.17.0.
  65. 27 September 2016 - Release 0.16.1
  66. ===================================
  67. * Fix node builds (lazy loaded kernel-runtime wasn't packaged).
  68. * amber-dev upgrade (to fix UMDs checking for module before define).
  69. * Kernel files use 'use strict'.
  70. <del>Breaks fw compat (uses $boot.nilAsClass in supersends)</del>.
  71. Commits: https://lolg.it/amber/amber/commits/0.16.1.
  72. 25 September 2016 - Release 0.16.0
  73. ===================================
  74. * boot.js overhaul:
  75. * brikz external, reworked to less imperative (no ensure call).
  76. * addClass returns the class.
  77. * no wrapClassName, using setClassConstructor in later stage.
  78. * traverseClassTree (eg allSubclassesDo:) in kernel, not allSubclasses.
  79. * runtime part extracted to kernel-runtime.js.
  80. * runtime loaded lazily, packages can load without runtime in.
  81. * initialize returns a Promise.
  82. * init done automatically upon class creation if runtime is active.
  83. * amber-dev upgrade (to honour initialize returning a Promise).
  84. * Edits relating to lolg.it move.
  85. * Fixes.
  86. May break bw compat for kernel API using code.
  87. Commits: https://lolg.it/amber/amber/commits/0.16.0.
  88. 6 February 2016 - Release 0.15.1
  89. ===================================
  90. * From this version on, Amber will fully comply to semver:
  91. * Any breaking change will result in increase of first non-zero number.
  92. * If first non-zero number is not changed, no breaking changes are present in release.
  93. * Changed how ST globals are implemented, resulting in shorter and faster code.
  94. * Not working any more on IE8 (b/c of changed globals).
  95. * amber.initialize(...) returns a promise.
  96. * JS global Promise must be present.
  97. * If missing, you can polyfill with `bower install amber-compat-es2015 --save`.
  98. * JS Promise is wrapped in ST class Promise.
  99. * Accompanying libs updated and semver-bumped:
  100. * Wrapper-JQuery, Web, Domite, Silk, IDE, Helios-*.
  101. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.18...0.15.1.
  102. 1 January 2016 - Release 0.14.18
  103. ===================================
  104. Maintenance release.
  105. Cleaning the code in compiler and parser.
  106. Some bug fixes (in compiler/interpreter as well as in other places).
  107. Breaks fw compat (uses $boot.dnu in supercall).
  108. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.17...0.14.18
  109. 6 October 2015 - Release 0.14.17
  110. ===================================
  111. Maintenance release.
  112. Some fixes, optimizations and moving things around.
  113. Using virtual module "amber/Platform". This needs to be mapped
  114. to either "amber_core/Platform-Browser" or "amber_core/Platform-Node".
  115. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.16...0.14.17
  116. 20 June 2015 - Release 0.14.16
  117. ===================================
  118. Bugfix release - Date >> =, Class >> javascriptConstructor:.
  119. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.15...0.14.16
  120. 9 June 2015 - Release 0.14.15
  121. ===================================
  122. Bugfix release - in some browsers, package commit failed.
  123. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.14...0.14.15
  124. 24 May 2015 - Release 0.14.14
  125. ===================================
  126. Highlights:
  127. * Extraction of `Web` and `Wrappers-JQuery` to own repos.
  128. * Amber core itself formally with no production dependencies.
  129. * Packages with 'use strict'.
  130. * `PlatformInterface` replaced by services `Terminal` and `Platform`.
  131. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.13...0.14.14
  132. 29 March 2015 - Release 0.14.13
  133. ===================================
  134. Highlights:
  135. * Rename namespaces of `Web` and `Wrappers-JQuery`.
  136. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.12...0.14.13
  137. 22 February 2015 - Release 0.14.12
  138. ===================================
  139. Highlights:
  140. * Wrapped JS object can be put on streams via aStream << anObject.
  141. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.11...0.14.12
  142. 21 February 2015 - Release 0.14.11
  143. ===================================
  144. Highlights:
  145. * `anObject in: aBlock` added
  146. * ProtoStream with extracted basic streaming protocol.
  147. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.10...0.14.11
  148. 17 February 2015 - Release 0.14.10
  149. ===================================
  150. Highlights:
  151. * Package renames, classes moved between packages:
  152. * Web and Wrappers-JQuery in amber-contrib-xxx namespaces,
  153. * Platform-Xxx packages to keep Kernel-Xxx to kernel.
  154. * Some core speedups.
  155. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.4...0.14.10
  156. 1 February 2015 - Release 0.14.4
  157. ===================================
  158. Highlights:
  159. * Compiler now allows the "import them as package-global vars" of 0.14.3.
  160. * Some core speedups.
  161. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.3...0.14.4
  162. 20 January 2015 - Release 0.14.3
  163. ===================================
  164. Highlights:
  165. * Package can specify external dependencies and import them as package-global vars.
  166. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.2...0.14.3
  167. Issues: https://github.com/amber-smalltalk/amber/issues?q=milestone%3A0.14.3+is%3Aclosed
  168. For the most important API related changes see the file API-CHANGES.txt.
  169. 11 January 2015 - Release 0.14.2
  170. ===================================
  171. Highlights:
  172. * Slimmed core - es5-shim and IE8 compatibilty tweaks in amber-compat-* repos.
  173. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.1...0.14.2
  174. For the most important API related changes see the file API-CHANGES.txt.
  175. 8 January 2015 - Release 0.14.1
  176. ===================================
  177. Highlights:
  178. * Slimmed core - legacy IDE, Examples and Benchfib in own repo.
  179. * Smalltalk optOut: used instead allowJavaScriptCalls to make jQuery work.
  180. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.0...0.14.1
  181. For the most important API related changes see the file API-CHANGES.txt.
  182. 1 January 2015 - Release 0.14.0
  183. ===================================
  184. Highlights:
  185. * Removed deprecated stuff and backward compatibility support code.
  186. * You can wrap any object using #asJQuery.
  187. Commits: https://github.com/amber-smalltalk/amber/compare/0.13.2...0.14.0
  188. Issues: https://github.com/amber-smalltalk/amber/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.14.0
  189. For the most important API related changes see the file API-CHANGES.txt.
  190. 31 December 2014 - Release 0.13.3
  191. ===================================
  192. This is a planned maintenance release.
  193. It contains everything 0.14.0 contains,
  194. but it retains all the backwards compatibility stuff,
  195. which is going to be removed in 0.14.0.
  196. 22 October 2014 - Release 0.13.2
  197. ===================================
  198. This is maintenance release to upgrade CodeMirror
  199. jointly in Amber and Helios.
  200. Highlights:
  201. * CodeMirror upgrade for Amber and Helios.
  202. * Cleaned of all (as far as findable) uses of deprecated code.
  203. * Recompile using `grunt` in Windows now does not add cr characters.
  204. Commits: https://github.com/amber-smalltalk/amber/compare/0.13.0...0.13.2
  205. For the most important API related changes see the file API-CHANGES.txt.
  206. 10 October 2014 - Release 0.13.1
  207. ===================================
  208. Highlights:
  209. * Reworked cleaner DNU handling in core.
  210. * `amber init` fully embraced as the way to create new project.
  211. * Helios IDE is extracted and is now a project on its own.
  212. * It is included as dev-dependency in any new project by default.
  213. * Movable data out of index.html:
  214. * list of production packages in deploy.js;
  215. * list of development packages in devel.js;
  216. * project amd mappings in local.amd.json;
  217. * libraries' amd mappings in lib_directory.amd.json.
  218. * 'Batteries included' deployment via `grunt deploy`.
  219. * 0.13.1 because of technical issues w/ 0.13.0 release process.
  220. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.6...0.13.0
  221. Issues: https://github.com/amber-smalltalk/amber/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.13.0
  222. For the most important API related changes see the file API-CHANGES.txt.
  223. 1 July 2014 - Release 0.12.6
  224. ===================================
  225. Highlights:
  226. * SUnit Runner in Helios IDE.
  227. * `amber` and `amberc` cli moved to `external` directory
  228. and to dedicated npm package.
  229. * Bootstrap 3 can be used in Amber projects
  230. (no more nameclash with Helios' bootstrap 2 using bootstrap2.3.2 name).
  231. * Wider range of jQuery versions allowed.
  232. * Amber now parses `$c` character literal.
  233. * `amber` is not to be installed globally any more.
  234. Instead, `npm install -g amber-cli` installs cli tooling.
  235. * After installing the cli tooling, `amber init` initializes
  236. new project if run in empty directory.
  237. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.4...0.12.6
  238. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=13&state=closed
  239. For the most important API related changes see the file API-CHANGES.txt.
  240. 11 April 2014 - Release 0.12.4
  241. ===================================
  242. Highlights:
  243. * Fixed backward compatibility for pre-0.12.3 loader syntax.
  244. * `namespace/_source` is not needed to map and is recommended
  245. not to use; `.st` files are by default committed to the `.js` location.
  246. * All sources, including js files into the src/ directory
  247. * Many improvements in Helios, especially in its debugger and
  248. inspector, as well as UI-related improvements
  249. * New Helios dark theme by @BenjaminVanRyseghem
  250. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.3...0.12.4
  251. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=12&state=closed
  252. For the most important API related changes see the file API-CHANGES.txt.
  253. 22 January 2014 - Release 0.12.3
  254. ===================================
  255. Highlights:
  256. * JQuery updated to ~1.10.2; jquery-ui updated to match
  257. * Subclasses of `nil` can be created
  258. * Several fixes for IE8
  259. * amber.js can be loaded asynchronously (it must
  260. have an id 'amber-path-mapper' in that case)
  261. * CodeMirror updated to ~3.20.0
  262. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.2...0.12.3
  263. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=11&state=closed
  264. For the most important API related changes see the file API-CHANGES.txt.
  265. 3 December 2013 - Release 0.12.2
  266. ===================================
  267. Highlights:
  268. * Loading Amber in nested pages now possible (via additional `data-libs` attribute of the `<script>` tag which loads `amber.js`)
  269. * IDE related fixes
  270. * Contributions Guide
  271. * Improved Collections
  272. * Amber Server responds with `not found` instead of `internal server error` if `index.html` could not be found
  273. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.1...0.12.2
  274. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=10&state=closed
  275. For the most important API related changes see the file API-CHANGES.txt.
  276. 14 November 2013 - Release 0.12.1
  277. ===================================
  278. Fixes a bug in Helios preventing class definitions from being compiled
  279. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.0...0.12.1
  280. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=9&state=closed
  281. 11 November 2013 - Release 0.12.0
  282. ===================================
  283. After 3 months of work we are pleased to announce the 0.12.0 release of Amber.
  284. Besides the usual bug fixes a lot of new features have emerged.
  285. The biggest change is the switch to RequireJS to specify Amber package dependencies
  286. and for loading the packages as AMD modules.
  287. Amber is now additionally available as Bower [2] component.
  288. Bower is also used to manage required JavaScript libraries which don't have to be kept
  289. around in the repository anymore.
  290. The repository layout was restructured to provide a cleaner separation of different Amber parts:
  291. * Smalltalk code is located in 'st'
  292. * Compiled Amber packages are located in 'js'
  293. * Supporting JavaScript code is located in 'support'
  294. Together with the RequireJS changes the specifying their dependencies the Brickz [3]
  295. reconfigurable micro composition system was introduced.
  296. This is used for
  297. On the Smalltalk side support has been added for writing exponential numbers of the form 2e5.
  298. Helios (the new IDE) is progressing nicely and has seen a lot of improvements.
  299. One of the great parts is the new stepping debugger which is also making progress.
  300. To try Helios, open the helios.html page or
  301. evaluate in any other amber page `require('amber/helpers').popupHelios()`.
  302. The last enhancements target the commandline compiler which can be used as
  303. `amberc` (an executable script) or as a Grunt task.
  304. The following features have been added:
  305. * generation of shebang line (#!/usr/bin/env node)
  306. * specification of target namespace (`-n` flag; `amd_namespace` option in Grunt)
  307. * specification of additional library directories (`-L` flag; `library_dirs` option in Grunt)
  308. The following features have been removed:
  309. * creation of *.deploy.js files (`-d` flag; `deploy` option in Grunt)
  310. * optimization passes via Closure compiler (`-o`/`-O` flags; `closure_jar` option in Grunt)
  311. The same behavior can be achieved by using specific Grunt tasks
  312. Additionally, the Grunt task now handles the -v/--verbose flag which triggers the same behavior
  313. as the `verbose` option which can be specified in the Gruntfile.
  314. Some numbers about this release (starting from 0.11.0):
  315. * 660 commits
  316. * 10 committers
  317. * 66 unit tests added
  318. * 152 issues were closed
  319. * 379 unit tests in total
  320. Commits: https://github.com/amber-smalltalk/amber/compare/0.11.0...0.12.0
  321. Issues: https://github.com/amber-smalltalk/amber/issues?direction=desc&milestone=8&page=1&sort=updated&state=closed
  322. For the most important API related changes see the file API-CHANGES.txt.
  323. * Installing Amber from NPM
  324. To install Amber from NPM, run
  325. npm install amber
  326. * Installing Amber from Bower
  327. To install Amber from Bower, run
  328. bower install amber
  329. * Migration from Amber 0.11.0
  330. First, the loading of JavaScript files must be adapted. The custom loader has been replaced with
  331. requirejs for loading files in the browser. New loader code is thouroughly
  332. explained in [4].
  333. After updating the loader part, `.st` files need to be recompiled
  334. into new AMD `.js` files. During loader changes, a namespace was choosen and will be needed for recompilation.
  335. Go to your directory with `.st` files and issue this from the shell:
  336. ```sh
  337. <path-to-amber>/bin/amberc -l SUnit,Canvas -n <chosen-namespace> -D <path-for-compiled-js-files> *.st
  338. ```
  339. In windows, use `\` as path separator, the rest is identical.
  340. The `-l SUnit,Canvas` is just a general guess, if your code depends on more (or less) non-kernel packages from amber, list them here accordingly.
  341. This migrate scenario only covers simple deployments with your project's code and amber.
  342. If your project is more complicated, using libraries and packages from multiple sources,
  343. it is hard to give general advices to migrate - you must do it library by library,
  344. giving each location its own namespace, and `-L` option of `amberc`
  345. comes handy when integrating; ask on the mailing list if problems arise.
  346. [1] http://requirejs.org/
  347. [2] http://bower.io/
  348. [3] https://github.com/amber-smalltalk/brikz
  349. [4] https://github.com/amber-smalltalk/amber/wiki/How-to-load-amber
  350. 9 July 2013 - Release 0.11.0
  351. ===============================
  352. Three months have passed and we are happy to announce the release
  353. of Amber 0.11.0!
  354. Some numbers about this release:
  355. * 494 commits
  356. * 13 committers
  357. * increasing the number of core committers to 25
  358. * 50 unit tests added to the kernel
  359. * 313 unit tests in total
  360. Since the last release 60 issues were closed, bringing us to 499
  361. issues closed.
  362. This release includes a lot of bug fixes, improvements to the
  363. CLI, as well as a preview of the next IDE, named Helios. Amber
  364. now also uses a CI server [1].
  365. To try the Helios, the new IDE, open the helios.html page, or
  366. evaluate in any other amber page `amber.loadHelios()`.
  367. The compiler also received some improvements, especially
  368. regarding message send optimisations and super sends.
  369. Here's the list of commits and closed issues:
  370. https://github.com/amber-smalltalk/amber/compare/0.10.0...0.11.0
  371. https://github.com/amber-smalltalk/amber/issues?direction=desc&milestone=6&page=1&sort=updated&state=closed
  372. There is a lot more to come with Helios, a stepping debugger
  373. based on the AST is in progress and currently in the 'debugger'
  374. branch on GitHub.
  375. * Installing Amber from NPM
  376. To install amber from NPM, run
  377. npm install amber
  378. * Migration from Amber 0.10.0
  379. Amber compiled code should be compatible with Amber 0.10.0, but
  380. recompiling is needed in order to get contexts working:
  381. Compiler new recompile: (Package named: 'MyPackage') classes.
  382. (Package named: 'MyPackage') commit
  383. For API related changes see the file API-CHANGES.txt.
  384. 13 March 2013 - Release 0.10.0
  385. ================================
  386. Here's a summary of change since the 0.9.1 release:
  387. - Travis CI jobs
  388. - Almost 300 issues closed
  389. - 150 new unit tests written
  390. - All classes in the Kernel are documented
  391. - New and much improved compiler toolchain, providing:
  392. - Semantic analysis
  393. - AST Node annotation
  394. - Intermediate representation (easier to optimize)
  395. - Better inlining
  396. - an AST interpreter
  397. - support for blocks contexts
  398. - New build system based on grunt.js, replacing the old makefiles
  399. - New bin/amberc compiler written in Amber/Node.js
  400. - SUnit improvements and cleanup, with support for async assertions
  401. - Improved ClassBuilder with better class migration support
  402. - Improved loader for third party packages
  403. - New: Announcements
  404. - Classes can be augmented by light-weight methods created from blocks
  405. - Snippets of HTML can be marked to become virtual tags in HTMLCanvas
  406. - Amber server supports Basic HTTP authentication (not recommended for production environments/unencrypted connections)
  407. - New IDE on it's way for Amber 1.0
  408. 16 January 2012 - Release 0.9.1
  409. =================================
  410. Here's a summary of changes since the 0.9 release:
  411. - 80 new unit tests written
  412. - 52 issues fixed
  413. - All classes in Kernel-Objects, Kernel-Classes and Kernel-Methods has been documented
  414. - New documentation framework (see http://amber-lang.net/documentation.html)
  415. - Better class organisations, "Kernel" package split into several packages
  416. - First class packages have replaced class categories
  417. - Internet Explorer 7+ compatibility
  418. - New Announcement framework ported from Pharo
  419. - New console-based REPL written in Amber using node.js
  420. - Symbol class implemented together with object identity and #==
  421. - New OrderedCollection and Set implementation
  422. - Dictionary can now have any kind of object as keys. String-key dictionary has been renamed HashedCollection
  423. - New TwitterWall example
  424. - Improved HTML Canvas, now compatible with IE7
  425. - Improved JSObjectProxy for seamless JavaScript objects access from Amber
  426. - No more jQuery binding. Amber is fully capable of sending messages to JavaScript objects
  427. 13 September 2011 - Release 0.9
  428. =================================
  429. Amber has been evolving furiously since the presentation at ESUG 2011 in Edinburgh less than 3 weeks ago.
  430. This is a summary:
  431. Language, compiler and runtime
  432. - New 100x faster parser built using PEGjs instead of the old parser built using PetitParser.
  433. - New much faster ChunkParser implementation in handwritten Amber instead of using PetitParser.
  434. - Improved parsing error report with quoted source code plus marker pinpointing parsing error.
  435. - Removed PetitParser since it is no longer needed by Amber itself.
  436. - Added compiler optimizations in the form of speculative inlining of specific messages and control structures.
  437. - Added support for dynamic Arrays, just like in Squeak/Pharo.
  438. - Added support for similar dynamic Dictionaries, not seen in other Smalltalks.
  439. - Added & and | as allowed binary selectors and implemented them in Boolean.
  440. - Added a Set implementation.
  441. - Added first basic support for real Packages with dependency information.
  442. ...and various extensions, enhancements and bug fixes to the library classes.
  443. Development environment
  444. - A working Debugger with integrated inspector, proceed etc.
  445. - A new structure with
  446. - A working amberc command line compiler including a Makefile for recompiling the whole Amber.
  447. - Enabled TestRunner in the IDE for running unit tests based on SUnit.
  448. - Added "File in" button in Workspace to easily paste and filein source code in chunk format in the IDE.
  449. Example code and ports
  450. - Ported ProfStef interactive tutorial, available on Amber homepage but also in examples directory.
  451. - Included the ESUG presentation as an example also in the examples directory.
  452. - Several new examples running on Node.js and webOS included, all with Makefiles.
  453. Various other things
  454. - Issue tracker on github now used as primary source, closed a bunch of reported issues.
  455. - Wiki pages on github with information on how to port code from other Smalltalks, lists of articles, tutorials, roadmap and more.