Skip to content

Commit

Permalink
8.0.17 Release (#168)
Browse files Browse the repository at this point in the history
* updated dependencies

* Hsd8 545 events exporter (#160)

* HSD8-545 XML rest customization

* UX improvements

* import videos accurately

* added optional config for mrc data export view

* removed unwanted module

* new normalizer to output nested values

* reordered view fields

* restored missing items

* fixed wording

* Hsd8 546 node clone action (#161)

* HSD8-546 Allow cloning a node # number of times

* Stubbed out action class

* created custom module for humsci actions

* changed test group

* recursive cloning

* added VBO to manage content views

* 8.0.17 RC1

* downgrade drupal/core

* cc fix

* Update database before toggling modules

* added violinist

* clear cache before update

* flush caches

* HSD8-568 Patch viewfield to allow same view with different arguments on the same node

* HSD8-588 Show raw output of location field

* patched fakeobjects

* dont tag source
  • Loading branch information
pookmish authored Feb 13, 2019
1 parent bf722c4 commit 733e83a
Show file tree
Hide file tree
Showing 78 changed files with 2,840 additions and 292 deletions.
2 changes: 1 addition & 1 deletion blt/blt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ git:
remotes:
- '[email protected]:swshumsci.git'
deploy:
tag_source: true
tag_source: false
exclude_file: '${repo.root}/blt/deploy/rsync-exclude.txt'
gitignore_file: '${repo.root}/blt/deploy/.gitignore'
drush:
Expand Down
6 changes: 1 addition & 5 deletions blt/src/Commands/HumsciCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ public function syncDbDefault($environment = 'remote') {

$task = $this->taskDrush()
->alias('')
->drush('cache-clear drush')
->drush('sql-drop')
->drush('cache-clear drush')
->drush('sql-sync')
->arg("@$remote_alias")
->arg($local_alias)
Expand All @@ -139,7 +139,6 @@ public function syncDbDefault($environment = 'remote') {
$task->drush('sql-sanitize');
}

$task->drush('cr');
$task->drush('sqlq "TRUNCATE cache_entity"');

$result = $task->run();
Expand Down Expand Up @@ -209,9 +208,6 @@ protected function updateSite($multisite) {
$this->switchSiteContext($multisite);

$this->invokeCommand('drupal:toggle:modules');
$this->taskDrush()
->drush("updb -y")
->run();
$this->taskDrush()
->drush("cr")
->run();
Expand Down
9 changes: 9 additions & 0 deletions blt/src/Hooks/HumsciHook.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ public function preConfigImport() {
$this->invokeCommand('drupal:toggle:modules');
}

/**
* Update database first.
*
* @hook pre-command drupal:toggle:modules
*/
public function preToggleModules() {
$this->taskDrush()->drush('updb')->run();
}

/**
* Import any missing entity form/display configs since they are ignored.
*
Expand Down
11 changes: 9 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@
"require": {
"acquia/blt": "9.x-dev",
"beleneglorion/php-bugherd-api": "dev-master#f0fce97042bd05bc5560fbf37051cd74f802cea1",
"ckeditor-plugin/link": "4.10.1",
"ckeditor-plugin/fakeobjects": "4.10.1",
"ckeditor-plugin/link": "4.10.1",
"composer/installers": "^1.4",
"consolidation/robo": "~1.2.4",
"consolidation/site-alias": "1.1.5",
Expand Down Expand Up @@ -123,7 +123,7 @@
"drupal/config_installer": "^1.8",
"drupal/config_readonly": "dev-1.x",
"drupal/config_update": "dev-1.x#5785588167279912d1e1f3a936fbf4a306265bd6",
"drupal/core": "~8.6.0-beta2",
"drupal/core": "~8.6.7",
"drupal/default_content": "^1.0@alpha",
"drupal/domain_301_redirect": "1.x-dev",
"drupal/dropzonejs": "~2.0@alpha",
Expand Down Expand Up @@ -181,6 +181,7 @@
"drupal/video_embed_field": "~2.0-alpha1",
"drupal/viewfield": "^3.0@alpha",
"drupal/views_block_filter_block": "^1.0@beta",
"drupal/views_bulk_operations": "^2.4",
"drupal/views_infinite_scroll": "^1.5",
"drupal/views_taxonomy_term_name_depth": "6.x-dev",
"drupal/webform": "~5.0-beta18",
Expand Down Expand Up @@ -331,6 +332,12 @@
},
"drupal/video_embed_field": {
"https://www.drupal.org/project/video_embed_field/issues/2913925": "https://www.drupal.org/files/issues/2018-07-09/retrieve-title-2913925-5.patch"
},
"drupal/viewfield": {
"https://www.drupal.org/project/viewfield/issues/2892073": "https://www.drupal.org/files/issues/2019-02-11/viewfield-same_view_arguments-2892073-11.patch"
},
"drupal/fakeobjects": {
"https://www.drupal.org/project/fakeobjects/issues/3002953": "https://www.drupal.org/files/issues/2019-02-12/fakeobjects-missing_plugin-3002953.patch"
}
},
"merge-plugin": {
Expand Down
Loading

0 comments on commit 733e83a

Please sign in to comment.