CHANGELOG 10 KB

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