Skip to content

Commit 6368f09

Browse files
committed
Merge branch '12.x' of https://github.com/SU-SWS/stanford_profile into 6.x
2 parents a9dd68f + ec699e7 commit 6368f09

File tree

182 files changed

+15376
-5246
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+15376
-5246
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
applyTo: "config/sync/*.yml"
3+
---
4+
5+
Ignore all changes to these files because they are automatically generated
6+
by the Configuration Management system.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
applyTo: "**"
3+
---
4+
# Project general coding standards
5+
6+
Use the [Drupal Coding Standards](https://www.drupal.org/docs/develop/standards) as the base coding standards for all projects.

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,14 @@ jobs:
104104
name: codeception-${{ matrix.suite }}-${{ matrix.shard }}
105105
path: /var/www/html/artifacts
106106
all-tests-pass:
107+
# This job will be skipped if the requirements pass. If any of the dependent
108+
# jobs fail, this will run and throw an error, causing the PR to fail.
107109
name: All Tests Pass
110+
if: ${{ cancelled() || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'failure') }}
108111
needs: [phpunit, codeception]
109112
runs-on: ubuntu-latest
110113
steps:
111-
- run: echo 'Passed'
114+
- run: |
115+
echo "Some workflows have failed!"
116+
exit 1
117+

composer.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,19 @@
4848
"type": "zip"
4949
}
5050
}
51+
},
52+
{
53+
"type": "package",
54+
"package": {
55+
"name": "cure53/dompurify",
56+
"version": "3.3.0",
57+
"type": "drupal-library",
58+
"source": {
59+
"url": "https://github.com/cure53/DOMPurify.git",
60+
"type": "git",
61+
"reference": "3.3.0"
62+
}
63+
}
5164
}
5265
],
5366
"require": {
@@ -56,6 +69,7 @@
5669
"citation-style-language/locales": "1.0.0",
5770
"citation-style-language/styles-distribution": "1.0.0",
5871
"composer/installers": ">=1.2",
72+
"cure53/dompurify": "^3.0",
5973
"drupal/address": "^2.0",
6074
"drupal/admin_toolbar": "^3.1",
6175
"drupal/allowed_formats": "^3.0",
@@ -67,6 +81,7 @@
6781
"drupal/ckeditor5_icons": "^1.1",
6882
"drupal/color_field": "^3.0",
6983
"drupal/colorbox": "^2.0",
84+
"drupal/colorbox_media_video": "^2.0",
7085
"drupal/components": "^3.0",
7186
"drupal/conditional_fields": "^4.0",
7287
"drupal/config_ignore": "^3.0",
@@ -91,7 +106,8 @@
91106
"drupal/fast_404_generator": "^1.0",
92107
"drupal/field_encrypt": "^3.0 || ^4.0",
93108
"drupal/field_formatter_class": "^1.5",
94-
"drupal/field_group": "^3.0@rc",
109+
"drupal/field_formatter_range": "^1.7",
110+
"drupal/field_group": "^4.0",
95111
"drupal/field_label": "^1.4",
96112
"drupal/field_permissions": "^1.0@RC",
97113
"drupal/field_validation": "^3.0",
@@ -147,11 +163,13 @@
147163
"drupal/scheduler": "^2.0",
148164
"drupal/search_api": "^1.19",
149165
"drupal/search_api_algolia": "^3.0@beta",
166+
"drupal/search_autocomplete": "^4.0",
150167
"drupal/seckit": "^2.0",
151168
"drupal/shield": "^1.8",
152169
"drupal/shs": "^2.0@RC",
153170
"drupal/simple_block": "^1.7",
154171
"drupal/simple_oauth": "^6.0",
172+
"drupal/single_content_sync": "^1.4",
155173
"drupal/smart_date": "^4.0",
156174
"drupal/smart_trim": "^2.0",
157175
"drupal/stage_file_proxy": "^3.1",
@@ -163,6 +181,7 @@
163181
"drupal/ultimate_cron": "^2.0@beta",
164182
"drupal/view_unpublished": "^1.0",
165183
"drupal/viewfield": "^3.0@beta",
184+
"drupal/views_argument_token": "^2.0",
166185
"drupal/views_block_filter_block": "^2.0@beta",
167186
"drupal/views_bulk_edit": "^3.0",
168187
"drupal/views_contextual_filters_or": "^1.3",
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
uuid: c740bc88-c537-4f23-ab79-e4f8652df3e6
2+
langcode: en
3+
status: true
4+
dependencies:
5+
config:
6+
- node.type.stanford_media
7+
id: node.stanford_media.promote
8+
field_name: promote
9+
entity_type: node
10+
bundle: stanford_media
11+
label: 'Promoted to front page'
12+
description: ''
13+
required: false
14+
translatable: true
15+
default_value:
16+
-
17+
value: 0
18+
default_value_callback: ''
19+
settings:
20+
on_label: 'On'
21+
off_label: 'Off'
22+
field_type: boolean

config/sync/core.base_field_override.node.stanford_news.title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ id: node.stanford_news.title
88
field_name: title
99
entity_type: node
1010
bundle: stanford_news
11-
label: Headline
11+
label: 'Headline / Name'
1212
description: ''
1313
required: true
1414
translatable: true

config/sync/core.entity_form_display.media.embeddable.default.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ hidden:
4242
path: true
4343
publish_on: true
4444
status: true
45+
su_import_lookup: true
4546
uid: true
4647
unpublish_on: true

config/sync/core.entity_form_display.media.embeddable.media_library.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ hidden:
4242
publish_on: true
4343
scheduler_settings: true
4444
status: true
45+
su_import_lookup: true
4546
uid: true
4647
unpublish_on: true

config/sync/core.entity_form_display.media.file.default.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ hidden:
4949
path: true
5050
publish_on: true
5151
status: true
52+
su_import_lookup: true
5253
uid: true
5354
unpublish_on: true

config/sync/core.entity_form_display.media.file.media_library.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ hidden:
4949
publish_on: true
5050
scheduler_settings: true
5151
status: true
52+
su_import_lookup: true
5253
uid: true
5354
unpublish_on: true

0 commit comments

Comments
 (0)