CHANGELOG 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. 10 July 2021 - Release 0.30.1
  2. ===================================
  3. * A few convenience APIs.
  4. * One bug fix.
  5. Commits: https://lolg.it/amber/amber/commits/0.30.1
  6. 23 Feb 2021 - Release 0.30.0
  7. ===================================
  8. * Move to use `globalThis`.
  9. * Stop using `global`, so breaking, but just fix preamble of index.html.
  10. * Removed old backward-compatibility code.
  11. Commits: https://lolg.it/amber/amber/commits/0.30.0
  12. 18 Dec 2020 - Release 0.29.8
  13. ===================================
  14. * Fix edge case in SUnit runner.
  15. Commits: https://lolg.it/amber/amber/commits/0.29.8.
  16. 12 Oct 2020 - Release 0.29.7
  17. ===================================
  18. * A model in `Promise new: [ :model | ... ]` reified as PromiseExecution.
  19. * Non-LIFO return represented by own Error subclass NonLifoReturn.
  20. Commits: https://lolg.it/amber/amber/commits/0.29.7.
  21. 7 Oct 2020 - Release 0.29.5
  22. ===================================
  23. * Convenient methods for model passed to Promise new: block
  24. Commits: https://lolg.it/amber/amber/commits/0.29.5.
  25. 3 Oct 2020 - Release 0.29.3
  26. ===================================
  27. * Uncaught exceptions / promises now in node platform as well.
  28. * SUnit tests can return promises.
  29. * They must explicitly send #timeout:, though.
  30. Commits: https://lolg.it/amber/amber/commits/0.29.3.
  31. 19 May 2020 - Release 0.29.2
  32. ===================================
  33. * Change to JS format, not breaking
  34. * Move to 3-arg addClass plus setSlots was planned in 2019, but forgotten.
  35. * Thus, it is loadable in older Amber versions for more than a year.
  36. * The move to 3-arg addClass plus setSlots was made now.
  37. * API renames / additions moving further from ivars to slots.
  38. * Fixes for some old issues.
  39. Commits: https://lolg.it/amber/amber/commits/0.29.2.
  40. 8 May 2020 - Release 0.29.1
  41. ===================================
  42. * Change to JS format.
  43. * Old code loadable, package saves in new format (no recompile needed).
  44. * New format loadable with old versions, but you may fail to compile methods.
  45. * Packages return context snapshot and `eval` is only used inside compiler.
  46. * Old `eval`-using function `innerEval` that was in each package was removed.
  47. Commits: https://lolg.it/amber/amber/commits/0.29.1.
  48. 30 Apr 2020 - Release 0.29.0
  49. ===================================
  50. * Inlining of #and: and #or:.
  51. Commits: https://lolg.it/amber/amber/commits/0.29.0.
  52. 20 Apr 2020 - Release 0.28.0
  53. ===================================
  54. * Fixing bugs related to lack of typechecking binary operations.
  55. * String >> , now only accepts strings and character arrays.
  56. * String comparisons return false for non-strings.
  57. * Number arithmetics and bit manipulations only accept numbers.
  58. * Number comparisons return false for non-numbers.
  59. Commits: https://lolg.it/amber/amber/commits/0.28.0
  60. 19 Apr 2020 - Release 0.27.1
  61. ===================================
  62. * Fixes.
  63. Commits: https://lolg.it/amber/amber/commits/0.27.1
  64. 14 Apr 2020 - Release 0.27.0
  65. ===================================
  66. * Inspectors protocol is changed.
  67. * The inspectOn: now sets list of associations in setVariables:.
  68. * Breaking for objects acting as inspectors that assume Dictionary.
  69. * Both IDEs were updated to assoc-list first, with backward compat.
  70. * Inspecting big (~10k) collections is drastically faster.
  71. Commits: https://lolg.it/amber/amber/commits/0.27.0
  72. 13 Apr 2020 - Release 0.26.0
  73. ===================================
  74. * Kernel simplification in context and error handling.
  75. * Kernel no longer handles errors.
  76. * BrowserPlatform installs unhandled exception / promise handlers.
  77. * Develop on modern browsers (production should not be harmed).
  78. * Kernel no longer sets up thisContext chain.
  79. * MethodContext takes care of the lazy initialization.
  80. Commits: https://lolg.it/amber/amber/commits/0.26.0
  81. 12 Apr 2020 - Release 0.25.3
  82. ===================================
  83. * Fix error handling broken by errors happening in Promises.
  84. Commits: https://lolg.it/amber/amber/commits/0.25.3
  85. 11 Apr 2020 - Release 0.25.2
  86. ===================================
  87. * Changed thisContext hydrating in kernel
  88. * Set up so better stack traces are shown in debugger, esp. for async
  89. * Can be breaking for code that depends on old hydration (unlikely).
  90. Commits: https://lolg.it/amber/amber/commits/0.25.2
  91. 9 Apr 2020 - Release 0.25.1
  92. ===================================
  93. * Quick release to shorten inspector labels for big collections.
  94. Commits: https://lolg.it/amber/amber/commits/0.25.1
  95. 8 Apr 2020 - Release 0.25.0
  96. ===================================
  97. * Teachable class (in SUnit package).
  98. * $core.removeClass returns removed class.
  99. * Subclassing JS classes, <jsOverride:(args:)> pragma.
  100. * Both 'nil' and '$nil' compiled in method code.
  101. * '$nil' used as receiver, 'nil' used to pass a value.
  102. * Cleaned error-handling code.
  103. * More Set fixes.
  104. Commits: https://lolg.it/amber/amber/commits/0.25.0
  105. 4 Jun 2019 - Release 0.24.0
  106. ===================================
  107. * Subclasses of captured system classes now inherit new methods.
  108. * Object.setPrototypeOf was needed to fix, no IE9 / IE10 any more.
  109. * Working supersends in trait methods.
  110. * New form of method with more late binding.
  111. * Loading old form supported, but compiler always compiles in new format.
  112. * As TMethodContext >> printOn: works now, less annoyances in Helios debugger.
  113. Commits: https://lolg.it/amber/amber/commits/0.24.0
  114. 3 Jun 2019 - Release 0.23.2
  115. ===================================
  116. * Some fixes.
  117. * API for `fetch` in Platform.
  118. * Last release compatible with IE9 and IE10.
  119. * Fixing issue #1240 needs operations not possible there.
  120. Commits: https://lolg.it/amber/amber/commits/0.23.2
  121. 26 Mar 2019 - Release 0.23.1
  122. ===================================
  123. * Deprecate global "SmalltalkParser".
  124. * Lot of small fixes in engine and IDEs.
  125. Commits: https://lolg.it/amber/amber/commits/0.23.1
  126. 25 Feb 2019 - Release 0.23.0
  127. ===================================
  128. * Remove kernel-level deprecations.
  129. * `imports:` loaded lazily using isReady promise
  130. * you can have circular `import:` clauses
  131. * you cannot presume your `import:` dependency is initialized in your own class-level `initialize`
  132. * `aJsObject Uppercase: foo and: bar` is called as `aJsObject.Uppercase(foo, bar)`
  133. * only the unary `aJsObject Uppercase` is special and returns `aJsObject.Uppercase`
  134. * so far all uppercase selectors made an exception, even ones with args
  135. * `aJsObject selector: foo withMoreArguments: bar` fails if `aJsObject.selector` is not a function
  136. * only the single-arg `aJsObject selector: foo` sets the value `aJsObject selector = foo`
  137. * so far even more-than-one-arg ones did set the value denoted by first keyword
  138. * Namespace change: amber_core => amber/core.
  139. * Backward compatibility mapping added, so old code should load and save with new implicit deps.
  140. * You must edit explicit deps (aka `imports:`) as well as Gruntfile, deploy, testing and devel .js files yourself.
  141. * Instance variables are now compiled as `obj.ivarName` instead of `obj["@ivarName"]`.
  142. * There is compat layer so old code is loadable.
  143. * Classes can be created using API containing `slots: {#foo. #bar}` instead of `instanceVariableNames: 'foo bar'`
  144. * Smalltalk files are saved using this new API.
  145. * No actual slots yet, only 'plain data slots' eg. instance variables.
  146. Commits: https://lolg.it/amber/amber/commits/0.23.0
  147. 18 Feb 2019 - Release 0.22.6
  148. ===================================
  149. * Bug fix in the use of recently added isReady promise for packages.
  150. Commits: https://lolg.it/amber/amber/commits/0.22.6
  151. 15 Feb 2019 - Release 0.22.5
  152. ===================================
  153. * Bug fix in recently introduced amber/helpers loadPackages.
  154. * Some internal API changed to be future-proof for lazy dependents.
  155. Commits: https://lolg.it/amber/amber/commits/0.22.5
  156. 11 Feb 2019 - Release 0.22.4
  157. ===================================
  158. * Fixes.
  159. * Flatter Collection hierarchy with traits, remove IndexableCollection class.
  160. * Remove some old IE8 cruft.
  161. * Push CharacterArray down, make it and alias to String and deprecate it.
  162. Commits: https://lolg.it/amber/amber/commits/0.22.4
  163. 24 Jun 2018 - Release 0.22.1
  164. ===================================
  165. * Added one usable API: {BlockClosure,Class} >> provided.
  166. Commits: https://lolg.it/amber/amber/commits/0.22.1
  167. 22 Jun 2018 - Release 0.22.0
  168. ===================================
  169. * Simple pragmas.
  170. * `<inlineJS: '...'>` is an (only implemented so far) pragma.
  171. * Remove legacy inline JS syntax (only <inlineJS: '...'> works).
  172. * Programmatic loading of packages works.
  173. * Use new @ambers/sdk (at least 0.10.5) (formerly amber-dev).
  174. * Remove some older deprecated API.
  175. Commits: https://lolg.it/amber/amber/commits/0.22.0
  176. 8 Apr 2018 - Release 0.21.1
  177. ===================================
  178. * A few new APIs, one bug fix.
  179. Commits: https://lolg.it/amber/amber/commits/0.21.1
  180. 28 Feb 2018 - Release 0.21.0
  181. ===================================
  182. * Kernel assumes global variable `global` exists.
  183. * In browser, it must be polyfilled before loading amber.
  184. * Smalltalk-level code should continue to use `Platform globals`.
  185. Commits: https://lolg.it/amber/amber/commits/0.21.0
  186. 12 Nov 2017 - Release 0.20.0
  187. ===================================
  188. * Kernel changes, so differences in .js files. Recompile your projects with `grunt`.
  189. * Use new amber-dev (0.10.1 atm).
  190. Commits: https://lolg.it/amber/amber/commits/0.20.0
  191. 7 Oct 2017 - Release 0.19.2
  192. ===================================
  193. * Silent bower-only release
  194. * Removed dependency on amber/Platform and amber/compatibility.
  195. * Thus, can be used with amber-dev 0.10.0 and grunt template 0.19.5.
  196. Commits: https://lolg.it/amber/amber/commits/0.19.2.
  197. 18 Jun 2017 - Release 0.19.1
  198. ===================================
  199. * Kernel slimmed, things moved to Smalltalk side.
  200. * Kernel (via kernel-runtime.js) calls only this Smalltalk-side API:
  201. * AmberBootstrapInitialization class >> run
  202. * Message class >> selector:arguments:notUnderstoodBy:
  203. * Dictionary class >> newFromPairs:
  204. * ErrorHandler class >> handleError:
  205. * JSObjectProxy class >> on:
  206. * NonBooleanReceiver class >> signalOn:
  207. * TMasterBehavior >> enterOrganization
  208. * TMasterBehavior >> leaveOrganization
  209. * TBehaviorProvider >> methodOrganizationEnter:andLeave:
  210. * Set fix (#1224).
  211. Commits: https://lolg.it/amber/amber/commits/0.19.1.
  212. 20 April 2017 - Release 0.19.0
  213. ===================================
  214. * Removed BehaviorBody in favour of traits TBehaviorDefaults and TBehaviorProvider.
  215. * Move Thenable class to TThenable trait.
  216. * Removed `.allowJavaScriptCalls` flag.
  217. * Internal `.isNil` deprecated in favour of `.a$nil`.
  218. * Internal `.klass` deprecated in favour of `.a$cls`.
  219. * Both 'self' and '$self' compiled in method code.
  220. * '$self' used as receiver, 'self' used to pass a value.
  221. * Libs bumped: amber-contrib-{web,jquery,legacy}, helios, domite, silk.
  222. Breaks fw compat, uses `a$nil` and `a$cls` when compiling / saving code.
  223. May break bw compat for code using `.allowJavaScriptCalls` (very unlikely).
  224. Commits: https://lolg.it/amber/amber/commits/0.19.0.
  225. 7 April 2017 - Release 0.18.5
  226. ===================================
  227. * Fix inability to change ivars.
  228. * Wrapper-JQuery bumped to use inlineJS: syntax.
  229. Commits: https://lolg.it/amber/amber/commits/0.18.5.
  230. 5 March 2017 - Release 0.18.4
  231. ===================================
  232. * Fix export of extension trait methods.
  233. Commits: https://lolg.it/amber/amber/commits/0.18.4.
  234. 22 February 2017 - Release 0.18.3
  235. ===================================
  236. * Traits, with a few limitations and incomplete IDE support.
  237. * Methods / classes / traits are recompiled when moved (fix #1142, #1170).
  238. Commits: https://lolg.it/amber/amber/commits/0.18.3.
  239. 1 January 2017 - Release 0.18.2
  240. ===================================
  241. * DOM-related stuff in own package (not loaded by default, use imports:).
  242. * Accompanying libs updated and semver-bumped: Web, Domite, Helios-* and IDE.
  243. * Silk is high-level enough so no bump neither b/c of inlineJS: nor b/c of DOM stuff needed.
  244. * Wrapper-JQuery bump postponed.
  245. Commits: https://lolg.it/amber/amber/commits/0.18.2.
  246. 21 November 2016 - Release 0.18.1
  247. ===================================
  248. * Parser fails fast on mistyped inlineJS: form.
  249. * Previously, it treated it as legacy form.
  250. Commits: https://lolg.it/amber/amber/commits/0.18.1.
  251. 5 November 2016 - Release 0.18.0
  252. ===================================
  253. * Remove some old internal pieces.
  254. * Allow new syntax for inline JS method body: <inlineJS: '...js code...'>
  255. * If used in libraries / reused modules, breaks fw compat.
  256. * Old syntax is deprecated, but retained in libraries for some grace period.
  257. May break bw compat because of removed internal pieces.
  258. Commits: https://lolg.it/amber/amber/commits/0.18.0.
  259. 19 October 2016 - Release 0.17.0
  260. ===================================
  261. * Remove some deprecated classes and methods.
  262. * Fix fw compat break of 0.16.1.
  263. Breaks bw compat because of removed deprecated pieces.
  264. Commits: https://lolg.it/amber/amber/commits/0.17.0.
  265. 27 September 2016 - Release 0.16.1
  266. ===================================
  267. * Fix node builds (lazy loaded kernel-runtime wasn't packaged).
  268. * amber-dev upgrade (to fix UMDs checking for module before define).
  269. * Kernel files use 'use strict'.
  270. <del>Breaks fw compat (uses $boot.nilAsClass in supersends)</del>.
  271. Commits: https://lolg.it/amber/amber/commits/0.16.1.
  272. 25 September 2016 - Release 0.16.0
  273. ===================================
  274. * boot.js overhaul:
  275. * brikz external, reworked to less imperative (no ensure call).
  276. * addClass returns the class.
  277. * no wrapClassName, using setClassConstructor in later stage.
  278. * traverseClassTree (eg allSubclassesDo:) in kernel, not allSubclasses.
  279. * runtime part extracted to kernel-runtime.js.
  280. * runtime loaded lazily, packages can load without runtime in.
  281. * initialize returns a Promise.
  282. * init done automatically upon class creation if runtime is active.
  283. * amber-dev upgrade (to honour initialize returning a Promise).
  284. * Edits relating to lolg.it move.
  285. * Fixes.
  286. May break bw compat for kernel API using code.
  287. Commits: https://lolg.it/amber/amber/commits/0.16.0.
  288. 6 February 2016 - Release 0.15.1
  289. ===================================
  290. * From this version on, Amber will fully comply to semver:
  291. * Any breaking change will result in increase of first non-zero number.
  292. * If first non-zero number is not changed, no breaking changes are present in release.
  293. * Changed how ST globals are implemented, resulting in shorter and faster code.
  294. * Not working any more on IE8 (b/c of changed globals).
  295. * amber.initialize(...) returns a promise.
  296. * JS global Promise must be present.
  297. * If missing, you can polyfill with `bower install amber-compat-es2015 --save`.
  298. * JS Promise is wrapped in ST class Promise.
  299. * Accompanying libs updated and semver-bumped:
  300. * Wrapper-JQuery, Web, Domite, Silk, IDE, Helios-*.
  301. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.18...0.15.1.
  302. 1 January 2016 - Release 0.14.18
  303. ===================================
  304. Maintenance release.
  305. Cleaning the code in compiler and parser.
  306. Some bug fixes (in compiler/interpreter as well as in other places).
  307. Breaks fw compat (uses $boot.dnu in supercall).
  308. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.17...0.14.18
  309. 6 October 2015 - Release 0.14.17
  310. ===================================
  311. Maintenance release.
  312. Some fixes, optimizations and moving things around.
  313. Using virtual module "amber/Platform". This needs to be mapped
  314. to either "amber_core/Platform-Browser" or "amber_core/Platform-Node".
  315. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.16...0.14.17
  316. 20 June 2015 - Release 0.14.16
  317. ===================================
  318. Bugfix release - Date >> =, Class >> javascriptConstructor:.
  319. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.15...0.14.16
  320. 9 June 2015 - Release 0.14.15
  321. ===================================
  322. Bugfix release - in some browsers, package commit failed.
  323. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.14...0.14.15
  324. 24 May 2015 - Release 0.14.14
  325. ===================================
  326. Highlights:
  327. * Extraction of `Web` and `Wrappers-JQuery` to own repos.
  328. * Amber core itself formally with no production dependencies.
  329. * Packages with 'use strict'.
  330. * `PlatformInterface` replaced by services `Terminal` and `Platform`.
  331. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.13...0.14.14
  332. 29 March 2015 - Release 0.14.13
  333. ===================================
  334. Highlights:
  335. * Rename namespaces of `Web` and `Wrappers-JQuery`.
  336. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.12...0.14.13
  337. 22 February 2015 - Release 0.14.12
  338. ===================================
  339. Highlights:
  340. * Wrapped JS object can be put on streams via aStream << anObject.
  341. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.11...0.14.12
  342. 21 February 2015 - Release 0.14.11
  343. ===================================
  344. Highlights:
  345. * `anObject in: aBlock` added
  346. * ProtoStream with extracted basic streaming protocol.
  347. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.10...0.14.11
  348. 17 February 2015 - Release 0.14.10
  349. ===================================
  350. Highlights:
  351. * Package renames, classes moved between packages:
  352. * Web and Wrappers-JQuery in amber-contrib-xxx namespaces,
  353. * Platform-Xxx packages to keep Kernel-Xxx to kernel.
  354. * Some core speedups.
  355. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.4...0.14.10
  356. 1 February 2015 - Release 0.14.4
  357. ===================================
  358. Highlights:
  359. * Compiler now allows the "import them as package-global vars" of 0.14.3.
  360. * Some core speedups.
  361. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.3...0.14.4
  362. 20 January 2015 - Release 0.14.3
  363. ===================================
  364. Highlights:
  365. * Package can specify external dependencies and import them as package-global vars.
  366. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.2...0.14.3
  367. Issues: https://github.com/amber-smalltalk/amber/issues?q=milestone%3A0.14.3+is%3Aclosed
  368. For the most important API related changes see the file API-CHANGES.txt.
  369. 11 January 2015 - Release 0.14.2
  370. ===================================
  371. Highlights:
  372. * Slimmed core - es5-shim and IE8 compatibilty tweaks in amber-compat-* repos.
  373. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.1...0.14.2
  374. For the most important API related changes see the file API-CHANGES.txt.
  375. 8 January 2015 - Release 0.14.1
  376. ===================================
  377. Highlights:
  378. * Slimmed core - legacy IDE, Examples and Benchfib in own repo.
  379. * Smalltalk optOut: used instead allowJavaScriptCalls to make jQuery work.
  380. Commits: https://github.com/amber-smalltalk/amber/compare/0.14.0...0.14.1
  381. For the most important API related changes see the file API-CHANGES.txt.
  382. 1 January 2015 - Release 0.14.0
  383. ===================================
  384. Highlights:
  385. * Removed deprecated stuff and backward compatibility support code.
  386. * You can wrap any object using #asJQuery.
  387. Commits: https://github.com/amber-smalltalk/amber/compare/0.13.2...0.14.0
  388. Issues: https://github.com/amber-smalltalk/amber/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.14.0
  389. For the most important API related changes see the file API-CHANGES.txt.
  390. 31 December 2014 - Release 0.13.3
  391. ===================================
  392. This is a planned maintenance release.
  393. It contains everything 0.14.0 contains,
  394. but it retains all the backwards compatibility stuff,
  395. which is going to be removed in 0.14.0.
  396. 22 October 2014 - Release 0.13.2
  397. ===================================
  398. This is maintenance release to upgrade CodeMirror
  399. jointly in Amber and Helios.
  400. Highlights:
  401. * CodeMirror upgrade for Amber and Helios.
  402. * Cleaned of all (as far as findable) uses of deprecated code.
  403. * Recompile using `grunt` in Windows now does not add cr characters.
  404. Commits: https://github.com/amber-smalltalk/amber/compare/0.13.0...0.13.2
  405. For the most important API related changes see the file API-CHANGES.txt.
  406. 10 October 2014 - Release 0.13.1
  407. ===================================
  408. Highlights:
  409. * Reworked cleaner DNU handling in core.
  410. * `amber init` fully embraced as the way to create new project.
  411. * Helios IDE is extracted and is now a project on its own.
  412. * It is included as dev-dependency in any new project by default.
  413. * Movable data out of index.html:
  414. * list of production packages in deploy.js;
  415. * list of development packages in devel.js;
  416. * project amd mappings in local.amd.json;
  417. * libraries' amd mappings in lib_directory.amd.json.
  418. * 'Batteries included' deployment via `grunt deploy`.
  419. * 0.13.1 because of technical issues w/ 0.13.0 release process.
  420. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.6...0.13.0
  421. Issues: https://github.com/amber-smalltalk/amber/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.13.0
  422. For the most important API related changes see the file API-CHANGES.txt.
  423. 1 July 2014 - Release 0.12.6
  424. ===================================
  425. Highlights:
  426. * SUnit Runner in Helios IDE.
  427. * `amber` and `amberc` cli moved to `external` directory
  428. and to dedicated npm package.
  429. * Bootstrap 3 can be used in Amber projects
  430. (no more nameclash with Helios' bootstrap 2 using bootstrap2.3.2 name).
  431. * Wider range of jQuery versions allowed.
  432. * Amber now parses `$c` character literal.
  433. * `amber` is not to be installed globally any more.
  434. Instead, `npm install -g amber-cli` installs cli tooling.
  435. * After installing the cli tooling, `amber init` initializes
  436. new project if run in empty directory.
  437. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.4...0.12.6
  438. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=13&state=closed
  439. For the most important API related changes see the file API-CHANGES.txt.
  440. 11 April 2014 - Release 0.12.4
  441. ===================================
  442. Highlights:
  443. * Fixed backward compatibility for pre-0.12.3 loader syntax.
  444. * `namespace/_source` is not needed to map and is recommended
  445. not to use; `.st` files are by default committed to the `.js` location.
  446. * All sources, including js files into the src/ directory
  447. * Many improvements in Helios, especially in its debugger and
  448. inspector, as well as UI-related improvements
  449. * New Helios dark theme by @BenjaminVanRyseghem
  450. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.3...0.12.4
  451. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=12&state=closed
  452. For the most important API related changes see the file API-CHANGES.txt.
  453. 22 January 2014 - Release 0.12.3
  454. ===================================
  455. Highlights:
  456. * JQuery updated to ~1.10.2; jquery-ui updated to match
  457. * Subclasses of `nil` can be created
  458. * Several fixes for IE8
  459. * amber.js can be loaded asynchronously (it must
  460. have an id 'amber-path-mapper' in that case)
  461. * CodeMirror updated to ~3.20.0
  462. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.2...0.12.3
  463. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=11&state=closed
  464. For the most important API related changes see the file API-CHANGES.txt.
  465. 3 December 2013 - Release 0.12.2
  466. ===================================
  467. Highlights:
  468. * Loading Amber in nested pages now possible (via additional `data-libs` attribute of the `<script>` tag which loads `amber.js`)
  469. * IDE related fixes
  470. * Contributions Guide
  471. * Improved Collections
  472. * Amber Server responds with `not found` instead of `internal server error` if `index.html` could not be found
  473. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.1...0.12.2
  474. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=10&state=closed
  475. For the most important API related changes see the file API-CHANGES.txt.
  476. 14 November 2013 - Release 0.12.1
  477. ===================================
  478. Fixes a bug in Helios preventing class definitions from being compiled
  479. Commits: https://github.com/amber-smalltalk/amber/compare/0.12.0...0.12.1
  480. Issues: https://github.com/amber-smalltalk/amber/issues?milestone=9&state=closed
  481. 11 November 2013 - Release 0.12.0
  482. ===================================
  483. After 3 months of work we are pleased to announce the 0.12.0 release of Amber.
  484. Besides the usual bug fixes a lot of new features have emerged.
  485. The biggest change is the switch to RequireJS to specify Amber package dependencies
  486. and for loading the packages as AMD modules.
  487. Amber is now additionally available as Bower [2] component.
  488. Bower is also used to manage required JavaScript libraries which don't have to be kept
  489. around in the repository anymore.
  490. The repository layout was restructured to provide a cleaner separation of different Amber parts:
  491. * Smalltalk code is located in 'st'
  492. * Compiled Amber packages are located in 'js'
  493. * Supporting JavaScript code is located in 'support'
  494. Together with the RequireJS changes the specifying their dependencies the Brickz [3]
  495. reconfigurable micro composition system was introduced.
  496. This is used for
  497. On the Smalltalk side support has been added for writing exponential numbers of the form 2e5.
  498. Helios (the new IDE) is progressing nicely and has seen a lot of improvements.
  499. One of the great parts is the new stepping debugger which is also making progress.
  500. To try Helios, open the helios.html page or
  501. evaluate in any other amber page `require('amber/helpers').popupHelios()`.
  502. The last enhancements target the commandline compiler which can be used as
  503. `amberc` (an executable script) or as a Grunt task.
  504. The following features have been added:
  505. * generation of shebang line (#!/usr/bin/env node)
  506. * specification of target namespace (`-n` flag; `amd_namespace` option in Grunt)
  507. * specification of additional library directories (`-L` flag; `library_dirs` option in Grunt)
  508. The following features have been removed:
  509. * creation of *.deploy.js files (`-d` flag; `deploy` option in Grunt)
  510. * optimization passes via Closure compiler (`-o`/`-O` flags; `closure_jar` option in Grunt)
  511. The same behavior can be achieved by using specific Grunt tasks
  512. Additionally, the Grunt task now handles the -v/--verbose flag which triggers the same behavior
  513. as the `verbose` option which can be specified in the Gruntfile.
  514. Some numbers about this release (starting from 0.11.0):
  515. * 660 commits
  516. * 10 committers
  517. * 66 unit tests added
  518. * 152 issues were closed
  519. * 379 unit tests in total
  520. Commits: https://github.com/amber-smalltalk/amber/compare/0.11.0...0.12.0
  521. Issues: https://github.com/amber-smalltalk/amber/issues?direction=desc&milestone=8&page=1&sort=updated&state=closed
  522. For the most important API related changes see the file API-CHANGES.txt.
  523. * Installing Amber from NPM
  524. To install Amber from NPM, run
  525. npm install amber
  526. * Installing Amber from Bower
  527. To install Amber from Bower, run
  528. bower install amber
  529. * Migration from Amber 0.11.0
  530. First, the loading of JavaScript files must be adapted. The custom loader has been replaced with
  531. requirejs for loading files in the browser. New loader code is thouroughly
  532. explained in [4].
  533. After updating the loader part, `.st` files need to be recompiled
  534. into new AMD `.js` files. During loader changes, a namespace was choosen and will be needed for recompilation.
  535. Go to your directory with `.st` files and issue this from the shell:
  536. ```sh
  537. <path-to-amber>/bin/amberc -l SUnit,Canvas -n <chosen-namespace> -D <path-for-compiled-js-files> *.st
  538. ```
  539. In windows, use `\` as path separator, the rest is identical.
  540. 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.
  541. This migrate scenario only covers simple deployments with your project's code and amber.
  542. If your project is more complicated, using libraries and packages from multiple sources,
  543. it is hard to give general advices to migrate - you must do it library by library,
  544. giving each location its own namespace, and `-L` option of `amberc`
  545. comes handy when integrating; ask on the mailing list if problems arise.
  546. [1] http://requirejs.org/
  547. [2] http://bower.io/
  548. [3] https://github.com/amber-smalltalk/brikz
  549. [4] https://github.com/amber-smalltalk/amber/wiki/How-to-load-amber
  550. 9 July 2013 - Release 0.11.0
  551. ===============================
  552. Three months have passed and we are happy to announce the release
  553. of Amber 0.11.0!
  554. Some numbers about this release:
  555. * 494 commits
  556. * 13 committers
  557. * increasing the number of core committers to 25
  558. * 50 unit tests added to the kernel
  559. * 313 unit tests in total
  560. Since the last release 60 issues were closed, bringing us to 499
  561. issues closed.
  562. This release includes a lot of bug fixes, improvements to the
  563. CLI, as well as a preview of the next IDE, named Helios. Amber
  564. now also uses a CI server [1].
  565. To try the Helios, the new IDE, open the helios.html page, or
  566. evaluate in any other amber page `amber.loadHelios()`.
  567. The compiler also received some improvements, especially
  568. regarding message send optimisations and super sends.
  569. Here's the list of commits and closed issues:
  570. https://github.com/amber-smalltalk/amber/compare/0.10.0...0.11.0
  571. https://github.com/amber-smalltalk/amber/issues?direction=desc&milestone=6&page=1&sort=updated&state=closed
  572. There is a lot more to come with Helios, a stepping debugger
  573. based on the AST is in progress and currently in the 'debugger'
  574. branch on GitHub.
  575. * Installing Amber from NPM
  576. To install amber from NPM, run
  577. npm install amber
  578. * Migration from Amber 0.10.0
  579. Amber compiled code should be compatible with Amber 0.10.0, but
  580. recompiling is needed in order to get contexts working:
  581. Compiler new recompile: (Package named: 'MyPackage') classes.
  582. (Package named: 'MyPackage') commit
  583. For API related changes see the file API-CHANGES.txt.
  584. 13 March 2013 - Release 0.10.0
  585. ================================
  586. Here's a summary of change since the 0.9.1 release:
  587. - Travis CI jobs
  588. - Almost 300 issues closed
  589. - 150 new unit tests written
  590. - All classes in the Kernel are documented
  591. - New and much improved compiler toolchain, providing:
  592. - Semantic analysis
  593. - AST Node annotation
  594. - Intermediate representation (easier to optimize)
  595. - Better inlining
  596. - an AST interpreter
  597. - support for blocks contexts
  598. - New build system based on grunt.js, replacing the old makefiles
  599. - New bin/amberc compiler written in Amber/Node.js
  600. - SUnit improvements and cleanup, with support for async assertions
  601. - Improved ClassBuilder with better class migration support
  602. - Improved loader for third party packages
  603. - New: Announcements
  604. - Classes can be augmented by light-weight methods created from blocks
  605. - Snippets of HTML can be marked to become virtual tags in HTMLCanvas
  606. - Amber server supports Basic HTTP authentication (not recommended for production environments/unencrypted connections)
  607. - New IDE on it's way for Amber 1.0
  608. 16 January 2012 - Release 0.9.1
  609. =================================
  610. Here's a summary of changes since the 0.9 release:
  611. - 80 new unit tests written
  612. - 52 issues fixed
  613. - All classes in Kernel-Objects, Kernel-Classes and Kernel-Methods has been documented
  614. - New documentation framework (see http://amber-lang.net/documentation.html)
  615. - Better class organisations, "Kernel" package split into several packages
  616. - First class packages have replaced class categories
  617. - Internet Explorer 7+ compatibility
  618. - New Announcement framework ported from Pharo
  619. - New console-based REPL written in Amber using node.js
  620. - Symbol class implemented together with object identity and #==
  621. - New OrderedCollection and Set implementation
  622. - Dictionary can now have any kind of object as keys. String-key dictionary has been renamed HashedCollection
  623. - New TwitterWall example
  624. - Improved HTML Canvas, now compatible with IE7
  625. - Improved JSObjectProxy for seamless JavaScript objects access from Amber
  626. - No more jQuery binding. Amber is fully capable of sending messages to JavaScript objects
  627. 13 September 2011 - Release 0.9
  628. =================================
  629. Amber has been evolving furiously since the presentation at ESUG 2011 in Edinburgh less than 3 weeks ago.
  630. This is a summary:
  631. Language, compiler and runtime
  632. - New 100x faster parser built using PEGjs instead of the old parser built using PetitParser.
  633. - New much faster ChunkParser implementation in handwritten Amber instead of using PetitParser.
  634. - Improved parsing error report with quoted source code plus marker pinpointing parsing error.
  635. - Removed PetitParser since it is no longer needed by Amber itself.
  636. - Added compiler optimizations in the form of speculative inlining of specific messages and control structures.
  637. - Added support for dynamic Arrays, just like in Squeak/Pharo.
  638. - Added support for similar dynamic Dictionaries, not seen in other Smalltalks.
  639. - Added & and | as allowed binary selectors and implemented them in Boolean.
  640. - Added a Set implementation.
  641. - Added first basic support for real Packages with dependency information.
  642. ...and various extensions, enhancements and bug fixes to the library classes.
  643. Development environment
  644. - A working Debugger with integrated inspector, proceed etc.
  645. - A new structure with
  646. - A working amberc command line compiler including a Makefile for recompiling the whole Amber.
  647. - Enabled TestRunner in the IDE for running unit tests based on SUnit.
  648. - Added "File in" button in Workspace to easily paste and filein source code in chunk format in the IDE.
  649. Example code and ports
  650. - Ported ProfStef interactive tutorial, available on Amber homepage but also in examples directory.
  651. - Included the ESUG presentation as an example also in the examples directory.
  652. - Several new examples running on Node.js and webOS included, all with Makefiles.
  653. Various other things
  654. - Issue tracker on github now used as primary source, closed a bunch of reported issues.
  655. - Wiki pages on github with information on how to port code from other Smalltalks, lists of articles, tutorials, roadmap and more.