API-CHANGES.txt 6.6 KB

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