mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2025-09-06 09:01:23 +00:00
Update Drupal 7 dependencies
This commit is contained in:
parent
7d902ba1ef
commit
13df912654
391 changed files with 2900 additions and 1502 deletions
|
@ -11,7 +11,7 @@ dependencies[] = field_sql_storage
|
|||
required = TRUE
|
||||
stylesheets[all][] = theme/field.css
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -7,7 +7,7 @@ dependencies[] = field
|
|||
files[] = field_sql_storage.test
|
||||
required = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -7,7 +7,7 @@ dependencies[] = field
|
|||
dependencies[] = options
|
||||
files[] = tests/list.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -5,7 +5,7 @@ package = Testing
|
|||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -6,7 +6,7 @@ core = 7.x
|
|||
dependencies[] = field
|
||||
files[] = number.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -6,7 +6,7 @@ core = 7.x
|
|||
dependencies[] = field
|
||||
files[] = options.test
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -7,7 +7,7 @@ dependencies[] = field
|
|||
files[] = text.test
|
||||
required = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -377,6 +377,15 @@ class TextSummaryTestCase extends DrupalWebTestCase {
|
|||
// Test text_summary() for different sizes.
|
||||
for ($i = 0; $i <= 37; $i++) {
|
||||
$this->callTextSummary($text, $expected[$i], NULL, $i);
|
||||
|
||||
// libxml2 library changed parsing behavior on version 2.9.14. Skip
|
||||
// specific edge-case testing for all further versions.
|
||||
// @see https://gitlab.gnome.org/GNOME/libxml2/-/issues/474
|
||||
// @see https://www.drupal.org/project/drupal/issues/3397882
|
||||
if ($i == 1 && defined('LIBXML_VERSION') && LIBXML_VERSION >= 20914) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->callTextSummary($text, $expected_lb[$i], 'plain_text', $i);
|
||||
$this->callTextSummary($text, $expected_lb[$i], 'filtered_html', $i);
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ files[] = field_test.entity.inc
|
|||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
|
@ -5,7 +5,7 @@ package = Testing
|
|||
version = VERSION
|
||||
hidden = TRUE
|
||||
|
||||
; Information added by Drupal.org packaging script on 2024-03-06
|
||||
version = "7.100"
|
||||
; Information added by Drupal.org packaging script on 2024-12-04
|
||||
version = "7.103"
|
||||
project = "drupal"
|
||||
datestamp = "1709734591"
|
||||
datestamp = "1733324608"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue