API-CHANGES.txt 5.9 KB

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