API-CHANGES.txt 5.6 KB

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