API-CHANGES.txt 4.8 KB

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