API-CHANGES.txt 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. 0.14.0:
  2. + Object >>
  3. + asJQuery
  4. + asJQueryInContext:
  5. + BlockClosure >>
  6. + asJQuery
  7. + asJQueryInContext:
  8. 0.13.2:
  9. + SourceArea class >>
  10. + codeMirror
  11. 0.13.1:
  12. * String >> asSelector is now String >> asJavaScriptMethodName
  13. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  14. * smalltalk.selector is now smalltalk.st2js
  15. * smalltalk.convertSelector is now smalltalk.js2st
  16. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  17. * Smalltalk vm is now Smalltalk core
  18. * boot.js's .vm is now .api
  19. * amber load sets' .vm is now .api
  20. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  21. + smalltalk.
  22. + accessJavaScript
  23. + Object >>
  24. + postMessageTo:
  25. + postMessageTo:origin:
  26. + Class >>
  27. + heliosClass
  28. + SmalltalkImage >>
  29. + core
  30. + amber/boot exports
  31. + api
  32. + amber/{devel,deploy,lang} exports
  33. + api
  34. - ProtoObject class >>
  35. - heliosClass
  36. - Object class >>
  37. - heliosClass
  38. 0.12.6:
  39. + String >>
  40. + value:
  41. + ProtocolAnnouncement >>
  42. + package
  43. + Behavior >>
  44. + isTestClass
  45. + Package >>
  46. + isTestPackage
  47. + amber/{devel,deploy,lang} exports
  48. + nil
  49. + amber/helpers exports
  50. + nil
  51. 0.12.4:
  52. * Package Canvas renamed to Web
  53. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  54. + Announcer >>
  55. + on:do:for:
  56. + Node >>
  57. + navigationNodeAt:ifAbsent:
  58. + BlockClosure >>
  59. + tryCatch:
  60. + Environment >>
  61. + evaluate:for:
  62. + AmberCli >>
  63. + version:
  64. + Object >>
  65. + deprecatedAPI:
  66. - Environment >>
  67. - eval:on:
  68. - evaluateString:on:
  69. 0.12.3:
  70. * Package Import-Export renamed to Kernel-ImportExport
  71. * A dozen of methods moved from Object to ProtoObject
  72. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  73. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  74. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  75. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  76. * Smalltalk current deprecated in favour of Smalltalk
  77. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  78. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  79. + CompiledMethod >>
  80. + defaultProtocol
  81. + Behavior >>
  82. + compile:protocol:
  83. + removeProtocolIfEmpty:
  84. + Package >>
  85. + load
  86. + loadFromNamespace:
  87. + Package class >>
  88. + load:
  89. + load:fromNamespace:
  90. + PackageTransport >> load
  91. + PackageHandler >> load:
  92. + AmdPackageHandler >> load:
  93. + Set >> removeAll
  94. + AssociativeCollection class
  95. + BucketStore class
  96. + SmalltalkImage >>
  97. + globals
  98. + vm
  99. + settings
  100. + Setting class
  101. + String >>
  102. + asSetting
  103. + asSettingIfAbsent:
  104. + settingValue
  105. + settingValueIfAbsent:
  106. + settingValue:
  107. + Smalltalk global variable
  108. - CompiledMethod >>
  109. - category: (use #protocol:)
  110. - defaultCategory
  111. - Behavior >> compile:category:
  112. - HTMLCanvas class >>
  113. - browserVersion
  114. - isMSIE
  115. - isMozilla
  116. - isOpera
  117. - isWebkit
  118. 0.12.2:
  119. * Collection >> contains: is deprecated in favor of anySatisfy:
  120. + Announcer >> on:doOnce:
  121. + String >>
  122. + uriEncoded
  123. + uriDecoded
  124. + uriComponentEncoded
  125. + uriComponentDecoded
  126. + Collection >>
  127. + removeAll
  128. + ifEmpty:ifNotEmpty:
  129. + ifNotEmpty:ifEmpty:
  130. + anyOne
  131. + noneSatisfy:
  132. + anySatisfy:
  133. + allSatisfy:
  134. 0.12.0:
  135. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  136. * Existing classes moved to new KernelInfrastructure package
  137. * ImporterExporter
  138. * are now StreamExporters
  139. * aware of AMD namespaces
  140. * support transport types and commit channels
  141. + Node >>
  142. + nextChild
  143. + method
  144. + postCopy
  145. + isCascadeNode
  146. + isLastChild
  147. + BlockNode >>
  148. + nextNode:
  149. + nextChild
  150. + SendNode >>
  151. + isCascadeSendNode
  152. + shouldBeAliased
  153. + CompiledMethod >> sendTo:arguments:
  154. + Array >>
  155. + addFirst:
  156. + removeLast
  157. + Number >>
  158. + ceiling
  159. + floor
  160. + asNumber
  161. + //
  162. + cos
  163. + sin
  164. + tan
  165. + arcCos
  166. + arcSin
  167. + arcTan
  168. + log
  169. + log:
  170. + raisedTo:
  171. + sign
  172. + **
  173. + ln
  174. + e
  175. + String class >> esc
  176. + String >>
  177. + asMutator
  178. + capitalized
  179. + isCapitalized
  180. + JSProxy >> printString
  181. + Behavior >>
  182. + ownProtocols
  183. + ownMethods
  184. + JSStream >> nextPutSendIndexFor:
  185. + InterfacingObject class
  186. + Interpreter class
  187. + DocumentFragmentTag class
  188. + AbstractExporter class
  189. + PlatformInterface class
  190. - Node >> extent
  191. - JSStream >> nextPutStatement:with:
  192. - Smalltalk.installSuperclass()
  193. - ClassReferenceNode class (now handled via VariableNode)
  194. 0.11.0:
  195. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  196. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  197. * Object>>printString
  198. * replace >>printString with >>printOn:
  199. * replace >>storeString with >>printString
  200. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  201. * Package>>fetch: is now Package>>load:
  202. * Package>>fetch:prefix: is now Package>>load:prefix:
  203. * Queue>>front replaced by Queue>>next
  204. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  205. * Queue>>back: replaced by Queue>>nextPut:
  206. * smalltalk.addMethod() does not use explicit JS selector
  207. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  208. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  209. * String>>asJavaScriptSelector moved to Kernel-Objects package
  210. + Object>>asString
  211. + Object>>putOn:
  212. + String>>isVowel
  213. + Collection>>putOn:
  214. + CharacterArray>>putOn:
  215. + Stream>><<
  216. + Stream>>write
  217. + SequenceableCollection>>newStream
  218. + SequenceableCollection>>readStream
  219. + SequenceableCollection>>stream
  220. + SequenceableCollection>>streamClass
  221. + SequenceableCollection>>writeStream
  222. + Collection>>isImmutable
  223. + Stream>>nextPutString:
  224. + StringStream>>nextPutString:
  225. + JSStream>>nextPutClassRefFunction:
  226. + String>>crlfSanitized
  227. + inlined Block now also responds to >>value:
  228. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  229. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  230. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  231. + Parser: Symbols for binarie selectores
  232. + Package>>commit
  233. + AIContext>>initializeLocals
  234. + ASTInterpreter>>withBlockContext:
  235. + smalltalk.allSelectors()
  236. + Object>>isCompiledMethod
  237. + Object>>isPackage
  238. + Object>>isBehavior
  239. + ClassMoved Announcemen class
  240. + Behavior>>includesBehavior:
  241. + Environment>>classes
  242. + Environment>>allSelectors
  243. + Environment>>removeProtocol:
  244. + Environment>>renameProtocol:to:in:
  245. + CompiledMethod>>protocol:
  246. + Smalltalk>>globalJsVariables
  247. + Smalltalk>>addGlobalJsVariable:
  248. + Smalltalk>>deleteGlobalJsVariable:
  249. - Object>>storeOn:
  250. - Object>>log:block:
  251. - Object>>printNl
  252. - Compiler-IR.st >>javascriptSelector
  253. - Compiler-IR.st >>nextPutVar:
  254. - Kernel-Collections.st >>asSuperSelector
  255. - Collection>>readStream
  256. - Collection>>stream
  257. - Collection>>streamClass
  258. - Collection>>writeStream
  259. - Symbol class (replaced with String)
  260. - IRInlinedNonLocalReturn class
  261. - IRInlinedSend>>nonLocalReturnInliner
  262. - IRNonLocalReturnInliner class
  263. - Package>>dependencies
  264. - Package>>dependencies:
  265. - Package>>properties
  266. - Package>>jsProperties
  267. - Package>>jsProperties:
  268. - Package>>propertiesAsJSON
  269. - Package>>propertyAt:
  270. - Package>>propertyAt:ifAbsent:
  271. - Package>>propertyAt:put:
  272. - Browser>>ajaxPutAt:data: