CHANGELOG 24 KB

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