From aa235f693e38f2990db4664a0c80958595690f75 Mon Sep 17 00:00:00 2001 From: Chris Gross <gross.364@osu.edu> Date: Thu, 24 Jan 2019 12:09:43 -0500 Subject: [PATCH] 7.x-1.11 Release Candidate 2 --- profiles/wcm_base/CHANGELOG.txt | 4 ++++ .../panels_breadcrumbs/panels_breadcrumbs.info | 6 +++--- .../panels_breadcrumbs/panels_breadcrumbs.module | 5 ++++- .../panopoly/panopoly_admin/CHANGELOG.txt | 4 ++++ .../panopoly/panopoly_admin/panopoly_admin.info | 6 +++--- .../modules/panopoly/panopoly_core/CHANGELOG.txt | 4 ++++ .../panopoly/panopoly_core/panopoly_core.info | 6 +++--- .../panopoly/panopoly_core/panopoly_core.make | 2 +- .../panopoly/panopoly_magic/CHANGELOG.txt | 4 ++++ .../panopoly/panopoly_magic/panopoly_magic.info | 6 +++--- .../panopoly/panopoly_pages/CHANGELOG.txt | 4 ++++ .../panopoly/panopoly_pages/panopoly_pages.info | 6 +++--- .../panopoly/panopoly_search/CHANGELOG.txt | 4 ++++ .../panopoly_search/panopoly_search.info | 6 +++--- .../modules/panopoly/panopoly_test/CHANGELOG.txt | 4 ++++ .../panopoly/panopoly_test/panopoly_test.info | 6 +++--- .../panopoly/panopoly_theme/CHANGELOG.txt | 4 ++++ .../panopoly/panopoly_theme/panopoly_theme.info | 6 +++--- .../panopoly/panopoly_widgets/CHANGELOG.txt | 4 ++++ .../panopoly_widgets/panopoly_widgets.info | 6 +++--- profiles/wcm_base/wcm_base.make | 16 ++++++++-------- 21 files changed, 76 insertions(+), 37 deletions(-) diff --git a/profiles/wcm_base/CHANGELOG.txt b/profiles/wcm_base/CHANGELOG.txt index 1f722441..da973bd6 100644 --- a/profiles/wcm_base/CHANGELOG.txt +++ b/profiles/wcm_base/CHANGELOG.txt @@ -1,3 +1,7 @@ +WCM Base 7.x-1.11-rc2, 2019-01-24 +--------------------------------- +- WCM Base: Updated Panopoly to 1.60 per SA-CONTRIB-2019-004. + WCM Base 7.x-1.11-rc1, 2019-01-23 --------------------------------- - WCM Base: diff --git a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info index bca184fd..9fa32d0e 100644 --- a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info +++ b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info @@ -5,8 +5,8 @@ package = Panels dependencies[] = ctools dependencies[] = page_manager dependencies[] = panels -; Information added by Drupal.org packaging script on 2018-08-27 -version = "7.x-2.3" +; Information added by Drupal.org packaging script on 2019-01-23 +version = "7.x-2.4" core = "7.x" project = "panels_breadcrumbs" -datestamp = "1535382184" +datestamp = "1548270183" diff --git a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module index 04939dc0..92d7d458 100644 --- a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module +++ b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module @@ -219,7 +219,10 @@ function panels_breadcrumbs_build_breadcrumb($conf, $contexts, $override = FALSE foreach ($breadcrumbs_info as $crumb) { if (isset($crumb['href']) && $crumb['href'] == '<none>') { $crumb['localized_options'] += array('attributes' => array(), 'html' => TRUE); - $breadcrumbs[] = '<span ' . drupal_attributes($crumb['localized_options']['attributes']) . '>' . ($crumb['localized_options']['html'] ? $crumb['title'] : check_plain($crumb['title'])) . '</span>'; + $attributes = drupal_attributes($crumb['localized_options']['attributes']); + $content = $crumb['localized_options']['html'] ? filter_xss_admin($crumb['title']) : check_plain($crumb['title']); + + $breadcrumbs[] = sprintf('<span %s>%s</span>', $attributes, $content); } else { $breadcrumbs[] = l($crumb['title'], $crumb['href'], $crumb['localized_options']); diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt index 785185a1..cf8e32bf 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info index 9dbcdc61..b1dca768 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info @@ -37,8 +37,8 @@ features[page_manager_pages][] = panopoly_admin_layout_library features[page_manager_pages][] = panopoly_admin_page_library features[page_manager_pages][] = panopoly_admin_pane_library -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_admin" -datestamp = "1547743824" +datestamp = "1548297491" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt index fc1e6dd5..8098f6d7 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- Update panels_breadcrumbs for SA-CONTRIB-2019-004. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info index 30650a11..be0d4cb5 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info @@ -82,8 +82,8 @@ features_exclude[variable][panelizer_taxonomy_term:panopoly_categories_allowed_t features_exclude[variable][panelizer_defaults_taxonomy_term_panopoly_categories] = panelizer_defaults_taxonomy_term_panopoly_categories features_exclude[variable][pathauto_taxonomy_term_panopoly_categories_pattern] = pathauto_taxonomy_term_panopoly_categories_pattern -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_core" -datestamp = "1547743843" +datestamp = "1548297503" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make index 27a1e999..8ca2c73c 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make +++ b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make @@ -14,7 +14,7 @@ projects[panels][subdir] = contrib projects[panels][patch][1570120] = https://www.drupal.org/files/issues/move-image-1570120-31.patch projects[panels][patch][2897658] = https://www.drupal.org/files/issues/panels-menu-block-ipe-2897658-3.patch -projects[panels_breadcrumbs][version] = 2.3 +projects[panels_breadcrumbs][version] = 2.4 projects[panels_breadcrumbs][subdir] = contrib projects[panelizer][version] = 3.4 diff --git a/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt index bb5b8149..fb2cc5c4 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info b/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info index 38603858..08c2c4a9 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info @@ -15,8 +15,8 @@ stylesheets[all][] = css/panopoly-modal.css features[features_api][] = api:2 files[] = plugins/views/panopoly_magic_plugin_display_panel_pane.inc -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_magic" -datestamp = "1547743904" +datestamp = "1548297538" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt index c64802f7..75615684 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info b/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info index 9dccd0e6..63dc0644 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info @@ -81,8 +81,8 @@ features_exclude[variable][pathauto_node_panopoly_landing_page_pattern] = pathau features_exclude[variable][pathauto_node_panopoly_page_pattern] = pathauto_node_panopoly_page_pattern features_exclude[variable][pathauto_taxonomy_term_panopoly_categories_pattern] = pathauto_taxonomy_term_panopoly_categories_pattern -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_pages" -datestamp = "1547743926" +datestamp = "1548297550" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt index d381b76d..31f7790f 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info b/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info index 7b3b8d7b..022e582a 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info @@ -54,8 +54,8 @@ features[variable][] = search_cron_limit features[views_view][] = panopoly_database_search features[views_view][] = panopoly_search -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_search" -datestamp = "1547743955" +datestamp = "1548297561" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt index 262b2842..0cbdc461 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info b/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info index 6a987eee..8fb6f8c4 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info @@ -99,8 +99,8 @@ features_exclude[dependencies][panopoly_pages] = panopoly_pages features_exclude[dependencies][panelizer] = panelizer hidden = 1 -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_test" -datestamp = "1547743980" +datestamp = "1548297571" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt index 124a1aae..2f6c9d32 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info b/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info index ff7871a9..e53cc51d 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info @@ -11,8 +11,8 @@ stylesheets[all][] = css/panopoly-accordian.css stylesheets[all][] = css/panopoly-layouts.css features[features_api][] = api:2 -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_theme" -datestamp = "1547744004" +datestamp = "1548297583" diff --git a/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt index f2bd5d6b..0cf51de8 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt +++ b/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt @@ -1,3 +1,7 @@ +7.x-1.60, 2019-01-23 +------------------- +- No changes since last release. + 7.x-1.59, 2019-01-17 ------------------- - No changes since last release. diff --git a/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info b/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info index fabc9d5e..afd6023d 100644 --- a/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info +++ b/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info @@ -125,8 +125,8 @@ features[linkit_profiles][] = content_fields features[views_view][] = panopoly_widgets_general_content features_exclude[dependencies][linkit] = linkit -; Information added by Drupal.org packaging script on 2019-01-17 -version = "7.x-1.59" +; Information added by Drupal.org packaging script on 2019-01-24 +version = "7.x-1.60" core = "7.x" project = "panopoly_widgets" -datestamp = "1547744042" +datestamp = "1548297607" diff --git a/profiles/wcm_base/wcm_base.make b/profiles/wcm_base/wcm_base.make index 13343b3b..e722e05c 100644 --- a/profiles/wcm_base/wcm_base.make +++ b/profiles/wcm_base/wcm_base.make @@ -485,31 +485,31 @@ libraries[ocio_modernizr][download][branch] = 7.x-1.x ; The Panopoly Foundation -projects[panopoly_core][version] = 1.59 +projects[panopoly_core][version] = 1.60 projects[panopoly_core][subdir] = panopoly -projects[panopoly_theme][version] = 1.59 +projects[panopoly_theme][version] = 1.60 projects[panopoly_theme][subdir] = panopoly -projects[panopoly_magic][version] = 1.59 +projects[panopoly_magic][version] = 1.60 projects[panopoly_magic][subdir] = panopoly -projects[panopoly_widgets][version] = 1.59 +projects[panopoly_widgets][version] = 1.60 projects[panopoly_widgets][subdir] = panopoly -projects[panopoly_admin][version] = 1.59 +projects[panopoly_admin][version] = 1.60 projects[panopoly_admin][subdir] = panopoly ; The Panopoly Toolset -projects[panopoly_pages][version] = 1.59 +projects[panopoly_pages][version] = 1.60 projects[panopoly_pages][subdir] = panopoly -projects[panopoly_search][version] = 1.59 +projects[panopoly_search][version] = 1.60 projects[panopoly_search][subdir] = panopoly ; For running the automated tests. -projects[panopoly_test][version] = 1.59 +projects[panopoly_test][version] = 1.60 projects[panopoly_test][subdir] = panopoly -- GitLab