When looking to upgrade from 2.617 to 2.618 i noticed that it appered that iCalCreator has been downgraded from 2.20.2 to 2.18. Also with Devel from 7.x-1.5+23-dev to 7.x-1.5 just wondering why these changes were done if it was meant to have been done

Comments

seamus_lee created an issue. See original summary.

mpotter’s picture

Probably this was caused by recent changes to the Drush version used on drupal.org.

Looks like iCalCreator library is downloaded by both Atrium (in oa_events_import module) and in the date_ical module itself. My guess is that originally the date_ical module didn't include this, so we added it to Atrium, but then the old version of Drush on drupal.org ran date_ical *after* oa_events_import so you got a newer version. In the new Drush, the order that things get done is different, so date_ical is probably running first (because it's a dependency) and then oa_events_import runs last and overwrites with an older version.

I'll remove the stuff in oa_events_import for the next release.

On Devel, we reference the latest "dev" version in oa_devel but panopoly_core uses devel 1.5. And again, the new drush order probably causes the panopoly_core version to be done after oa_devel because of the dependencies (or lack thereof). In this case, either version is fine...oa_devel just grabs the latest dev because when doing development that's usually what you want. But since devel shouldn't be enabled on anything but your local dev machines it shouldn't affect your site.

mpotter’s picture

Status: Active » Postponed (maintainer needs more info)

@seamus_lee can you let me know if the change in iCalCreator caused any functionality to break? I'm not sure it's enough of a priority to do a hotfix, so unless there is a major issue, I'll likely just add this to the next monthly update.

I did confirm that this was caused by the upgrade to Drush 8 on drupal.org.