CHANGELOG 25 KB

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