API-CHANGES.txt 5.5 KB

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