CHANGELOG 19 KB

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