CHANGELOG 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. 1st Jan 2015 - Release 0.14.0
  2. ===================================
  3. Highlights:
  4. * Removed deprecated stuff and backward compatibility support code.
  5. Commits: https://github.com/amber-smalltalk/amber/compare/0.13.0...0.14.0
  6. Issues: https://github.com/amber-smalltalk/amber/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.14.0
  7. For the most important API related changes see the file API-CHANGES.txt.
  8. 999st Oct 2014 - Release 0.13.0
  9. ===================================
  10. Highlights:
  11. * Reworked cleaner DNU handling in core.
  12. * `amber init` fully embraced as the way to create new project.
  13. * Movable data out of index.html:
  14. * list of production packages in deploy.js;
  15. * list of development packages in devel.js;
  16. * project amd mappings in local.amd.json;
  17. * libraries' amd mappings in lib_directory.amd.json.
  18. * 'Batteries included' deployment via `grunt deploy`.
  19. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.6...0.13.0
  20. Issues: https://github.com/amber-smalltalk/amber/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.13.0
  21. For the most important API related changes see the file API-CHANGES.txt.
  22. 1st July 2014 - Release 0.12.6
  23. ===================================
  24. Highlights:
  25. * SUnit Runner in Helios IDE.
  26. * `amber` and `amberc` cli moved to `external` directory
  27. and to dedicated npm package.
  28. * Bootstrap 3 can be used in Amber projects
  29. (no more nameclash with Helios' bootstrap 2 using bootstrap2.3.2 name).
  30. * Wider range of jQuery versions allowed.
  31. * Amber now parses `$c` character literal.
  32. * `amber` is not to be installed globally any more.
  33. Instead, `npm install -g amber-cli` installs cli tooling.
  34. * After installing the cli tooling, `amber init` initializes
  35. new project if run in empty directory.
  36. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.4...0.12.6
  37. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=13&state=closed
  38. For the most important API related changes see the file API-CHANGES.txt.
  39. 11th April 2014 - Release 0.12.4
  40. ===================================
  41. Highlights:
  42. * Fixed backward compatibility for pre-0.12.3 loader syntax.
  43. * `namespace/_source` is not needed to map and is recommended
  44. not to use; `.st` files are by default committed to the `.js` location.
  45. * All sources, including js files into the src/ directory
  46. * Many improvements in Helios, especially in its debugger and
  47. inspector, as well as UI-related improvements
  48. * New Helios dark theme by @BenjaminVanRyseghem
  49. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.3...0.12.4
  50. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=12&state=closed
  51. For the most important API related changes see the file API-CHANGES.txt.
  52. 22nd Jan 2014 - Release 0.12.3
  53. ===================================
  54. Highlights:
  55. * JQuery updated to ~1.10.2; jquery-ui updated to match
  56. * Subclasses of `nil` can be created
  57. * Several fixes for IE8
  58. * amber.js can be loaded asynchronously (it must
  59. have an id 'amber-path-mapper' in that case)
  60. * CodeMirror updated to ~3.20.0
  61. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.2...0.12.3
  62. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=11&state=closed
  63. For the most important API related changes see the file API-CHANGES.txt.
  64. 03rd December 2013 - Release 0.12.2
  65. ===================================
  66. Highlights:
  67. * Loading Amber in nested pages now possible (via additional `data-libs` attribute of the `<script>` tag which loads `amber.js`)
  68. * IDE related fixes
  69. * Contributions Guide
  70. * Improved Collections
  71. * Amber Server responds with `not found` instead of `internal server error` if `index.html` could not be found
  72. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.1...0.12.2
  73. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=10&state=closed
  74. For the most important API related changes see the file API-CHANGES.txt.
  75. 14th November 2013 - Release 0.12.1
  76. ===================================
  77. Fixes a bug in Helios preventing class definitions from being compiled
  78. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.0...0.12.1
  79. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=9&state=closed
  80. 11th November 2013 - Release 0.12.0
  81. ===================================
  82. After 3 months of work we are pleased to announce the 0.12.0 release of Amber.
  83. Besides the usual bug fixes a lot of new features have emerged.
  84. The biggest change is the switch to RequireJS to specify Amber package dependencies
  85. and for loading the packages as AMD modules.
  86. Amber is now additionally available as Bower [2] component.
  87. Bower is also used to manage required JavaScript libraries which don't have to be kept
  88. around in the repository anymore.
  89. The repository layout was restructured to provide a cleaner separation of different Amber parts:
  90. * Smalltalk code is located in 'st'
  91. * Compiled Amber packages are located in 'js'
  92. * Supporting JavaScript code is located in 'support'
  93. Together with the RequireJS changes the specifying their dependencies the Brickz [3]
  94. reconfigurable micro composition system was introduced.
  95. This is used for
  96. On the Smalltalk side support has been added for writing exponential numbers of the form 2e5.
  97. Helios (the new IDE) is progressing nicely and has seen a lot of improvements.
  98. One of the great parts is the new stepping debugger which is also making progress.
  99. To try Helios, open the helios.html page or
  100. evaluate in any other amber page `require('amber/helpers').popupHelios()`.
  101. The last enhancements target the commandline compiler which can be used as
  102. `amberc` (an executable script) or as a Grunt task.
  103. The following features have been added:
  104. * generation of shebang line (#!/usr/bin/env node)
  105. * specification of target namespace (`-n` flag; `amd_namespace` option in Grunt)
  106. * specification of additional library directories (`-L` flag; `library_dirs` option in Grunt)
  107. The following features have been removed:
  108. * creation of *.deploy.js files (`-d` flag; `deploy` option in Grunt)
  109. * optimization passes via Closure compiler (`-o`/`-O` flags; `closure_jar` option in Grunt)
  110. The same behavior can be achieved by using specific Grunt tasks
  111. Additionally, the Grunt task now handles the -v/--verbose flag which triggers the same behavior
  112. as the `verbose` option which can be specified in the Gruntfile.
  113. Some numbers about this release (starting from 0.11.0):
  114. * 660 commits
  115. * 10 committers
  116. * 66 unit tests added
  117. * 152 issues were closed
  118. * 379 unit tests in total
  119. Commits: https://github.com/amber-smalltalk/amber/compare/0.11.0...0.12.0
  120. Issues: https://github.com/amber-smalltalk/amber/issues?direction=desc&milestone=8&page=1&sort=updated&state=closed
  121. For the most important API related changes see the file API-CHANGES.txt.
  122. * Installing Amber from NPM
  123. To install Amber from NPM, run
  124. npm install amber
  125. * Installing Amber from Bower
  126. To install Amber from Bower, run
  127. bower install amber
  128. * Migration from Amber 0.11.0
  129. First, the loading of JavaScript files must be adapted. The custom loader has been replaced with
  130. requirejs for loading files in the browser. New loader code is thouroughly
  131. explained in [4].
  132. After updating the loader part, `.st` files need to be recompiled
  133. into new AMD `.js` files. During loader changes, a namespace was choosen and will be needed for recompilation.
  134. Go to your directory with `.st` files and issue this from the shell:
  135. ```sh
  136. <path-to-amber>/bin/amberc -l SUnit,Canvas -n <chosen-namespace> -D <path-for-compiled-js-files> *.st
  137. ```
  138. In windows, use `\` as path separator, the rest is identical.
  139. 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.
  140. This migrate scenario only covers simple deployments with your project's code and amber.
  141. If your project is more complicated, using libraries and packages from multiple sources,
  142. it is hard to give general advices to migrate - you must do it library by library,
  143. giving each location its own namespace, and `-L` option of `amberc`
  144. comes handy when integrating; ask on the mailing list if problems arise.
  145. [1] http://requirejs.org/
  146. [2] http://bower.io/
  147. [3] https://github.com/amber-smalltalk/brikz
  148. [4] https://github.com/amber-smalltalk/amber/wiki/How-to-load-amber
  149. 09th July 2013 - Release 0.11.0
  150. ===============================
  151. Three months have passed and we are happy to announce the release
  152. of Amber 0.11.0!
  153. Some numbers about this release:
  154. * 494 commits
  155. * 13 committers
  156. * increasing the number of core committers to 25
  157. * 50 unit tests added to the kernel
  158. * 313 unit tests in total
  159. Since the last release 60 issues were closed, bringing us to 499
  160. issues closed.
  161. This release includes a lot of bug fixes, improvements to the
  162. CLI, as well as a preview of the next IDE, named Helios. Amber
  163. now also uses a CI server [1].
  164. To try the Helios, the new IDE, open the helios.html page, or
  165. evaluate in any other amber page `amber.loadHelios()`.
  166. The compiler also received some improvements, especially
  167. regarding message send optimisations and super sends.
  168. Here's the list of commits and closed issues:
  169. https://github.com/amber-smalltalk/amber/compare/0.10.0...0.11.0
  170. https://github.com/amber-smalltalk/amber/issues?direction=desc&milestone=6&page=1&sort=updated&state=closed
  171. There is a lot more to come with Helios, a stepping debugger
  172. based on the AST is in progress and currently in the 'debugger'
  173. branch on GitHub.
  174. * Installing Amber from NPM
  175. To install amber from NPM, run
  176. npm install amber
  177. * Migration from Amber 0.10.0
  178. Amber compiled code should be compatible with Amber 0.10.0, but
  179. recompiling is needed in order to get contexts working:
  180. Compiler new recompile: (Package named: 'MyPackage') classes.
  181. (Package named: 'MyPackage') commit
  182. For API related changes see the file API-CHANGES.txt.
  183. 13th March 2013 - Release 0.10.0
  184. ================================
  185. Here's a summary of change since the 0.9.1 release:
  186. - Travis CI jobs
  187. - Almost 300 issues closed
  188. - 150 new unit tests written
  189. - All classes in the Kernel are documented
  190. - New and much improved compiler toolchain, providing:
  191. - Semantic analysis
  192. - AST Node annotation
  193. - Intermediate representation (easier to optimize)
  194. - Better inlining
  195. - an AST interpreter
  196. - support for blocks contexts
  197. - New build system based on grunt.js, replacing the old makefiles
  198. - New bin/amberc compiler written in Amber/Node.js
  199. - SUnit improvements and cleanup, with support for async assertions
  200. - Improved ClassBuilder with better class migration support
  201. - Improved loader for third party packages
  202. - New: Announcements
  203. - Classes can be augmented by light-weight methods created from blocks
  204. - Snippets of HTML can be marked to become virtual tags in HTMLCanvas
  205. - Amber server supports Basic HTTP authentication (not recommended for production environments/unencrypted connections)
  206. - New IDE on it's way for Amber 1.0
  207. 16th January 2012 - Release 0.9.1
  208. =================================
  209. Here's a summary of changes since the 0.9 release:
  210. - 80 new unit tests written
  211. - 52 issues fixed
  212. - All classes in Kernel-Objects, Kernel-Classes and Kernel-Methods has been documented
  213. - New documentation framework (see http://amber-lang.net/documentation.html)
  214. - Better class organisations, "Kernel" package split into several packages
  215. - First class packages have replaced class categories
  216. - Internet Explorer 7+ compatibility
  217. - New Announcement framework ported from Pharo
  218. - New console-based REPL written in Amber using node.js
  219. - Symbol class implemented together with object identity and #==
  220. - New OrderedCollection and Set implementation
  221. - Dictionary can now have any kind of object as keys. String-key dictionary has been renamed HashedCollection
  222. - New TwitterWall example
  223. - Improved HTML Canvas, now compatible with IE7
  224. - Improved JSObjectProxy for seamless JavaScript objects access from Amber
  225. - No more jQuery binding. Amber is fully capable of sending messages to JavaScript objects
  226. 13th September 2011 - Release 0.9
  227. =================================
  228. Amber has been evolving furiously since the presentation at ESUG 2011 in Edinburgh less than 3 weeks ago.
  229. This is a summary:
  230. Language, compiler and runtime
  231. - New 100x faster parser built using PEGjs instead of the old parser built using PetitParser.
  232. - New much faster ChunkParser implementation in handwritten Amber instead of using PetitParser.
  233. - Improved parsing error report with quoted source code plus marker pinpointing parsing error.
  234. - Removed PetitParser since it is no longer needed by Amber itself.
  235. - Added compiler optimizations in the form of speculative inlining of specific messages and control structures.
  236. - Added support for dynamic Arrays, just like in Squeak/Pharo.
  237. - Added support for similar dynamic Dictionaries, not seen in other Smalltalks.
  238. - Added & and | as allowed binary selectors and implemented them in Boolean.
  239. - Added a Set implementation.
  240. - Added first basic support for real Packages with dependency information.
  241. ...and various extensions, enhancements and bug fixes to the library classes.
  242. Development environment
  243. - A working Debugger with integrated inspector, proceed etc.
  244. - A new structure with
  245. - A working amberc command line compiler including a Makefile for recompiling the whole Amber.
  246. - Enabled TestRunner in the IDE for running unit tests based on SUnit.
  247. - Added "File in" button in Workspace to easily paste and filein source code in chunk format in the IDE.
  248. Example code and ports
  249. - Ported ProfStef interactive tutorial, available on Amber homepage but also in examples directory.
  250. - Included the ESUG presentation as an example also in the examples directory.
  251. - Several new examples running on Node.js and webOS included, all with Makefiles.
  252. Various other things
  253. - Issue tracker on github now used as primary source, closed a bunch of reported issues.
  254. - Wiki pages on github with information on how to port code from other Smalltalks, lists of articles, tutorials, roadmap and more.