The Trunk: MonticelloConfigurations-eem.153.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: MonticelloConfigurations-eem.153.mcz

commits-2
Eliot Miranda uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-eem.153.mcz

==================== Summary ====================

Name: MonticelloConfigurations-eem.153
Author: eem
Time: 24 April 2018, 11:26:57.18973 am
UUID: 08fb5d9b-8322-4537-ae28-02a452e18bbd
Ancestors: MonticelloConfigurations-bf.152

Suppress Deprecation warnings while upgrading/updating.

=============== Diff against MonticelloConfigurations-bf.152 ===============

Item was changed:
  ----- Method: MCConfiguration>>upgrade (in category 'actions') -----
  upgrade
  ^self depsSatisfying:
  [:dep | dep isFulfilledByAncestors not]
  versionDo:
  [:ver |
  (self class upgradeIsMerge and: [ver shouldMerge])
  ifFalse: [ver load]
  ifTrue:
  [[ver merge]
  on: MCNoChangesException
  do: [:req| req resume ]
  on: MCMergeResolutionRequest
  do: [:request |
  request merger conflicts isEmpty
  ifTrue: [request resume: true]
+ ifFalse: [request pass]]
+ on: Deprecation
+ do: [:req| req resume ]]]
- ifFalse: [request pass]]]]
  displayingProgress: 'upgrading packages'!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: MonticelloConfigurations-eem.153.mcz

marcel.taeumel
+1 :-)

Marcel

Am 24.04.2018 20:27:15 schrieb [hidden email] <[hidden email]>:

Eliot Miranda uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-eem.153.mcz

==================== Summary ====================

Name: MonticelloConfigurations-eem.153
Author: eem
Time: 24 April 2018, 11:26:57.18973 am
UUID: 08fb5d9b-8322-4537-ae28-02a452e18bbd
Ancestors: MonticelloConfigurations-bf.152

Suppress Deprecation warnings while upgrading/updating.

=============== Diff against MonticelloConfigurations-bf.152 ===============

Item was changed:
----- Method: MCConfiguration>>upgrade (in category 'actions') -----
upgrade
^self depsSatisfying:
[:dep | dep isFulfilledByAncestors not]
versionDo:
[:ver |
(self class upgradeIsMerge and: [ver shouldMerge])
ifFalse: [ver load]
ifTrue:
[[ver merge]
on: MCNoChangesException
do: [:req| req resume ]
on: MCMergeResolutionRequest
do: [:request |
request merger conflicts isEmpty
ifTrue: [request resume: true]
+ ifFalse: [request pass]]
+ on: Deprecation
+ do: [:req| req resume ]]]
- ifFalse: [request pass]]]]
displayingProgress: 'upgrading packages'!