API-CHANGES.txt 6.1 KB

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