Skip to content

Commit 2daa709

Browse files
committed
Merge branch 'development'
2 parents 5be36d8 + 8955a4a commit 2daa709

File tree

6 files changed

+57
-23
lines changed

6 files changed

+57
-23
lines changed

.circleci/config.yml

+25-3
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,27 @@ jobs:
7575
root: ./
7676
paths:
7777
- ./
78+
build_edge_branch:
79+
docker:
80+
- image: circleci/php:7.3.14-apache-browsers
81+
steps:
82+
- checkout_code
83+
- install_php_os_extensions
84+
- run:
85+
name: Switch to edge build branch
86+
command: |
87+
cd ~/project
88+
git checkout -b $EDGE_BUILD_BRANCH
89+
- run:
90+
name: Install dev versions of dof-dss packages with composer.
91+
command: |
92+
composer require dof-dss/nidirect-site-modules:dev-development dof-dss/nidirect-migrations:dev-development \
93+
dof-dss/nidirect-d8-test-install-profile:dev-development dof-dss/nicsdru_origins_theme:dev-development \
94+
dof-dss/nicsdru_origins_modules:dev-development dof-dss/nicsdru_nidirect_theme:dev-development
95+
- persist_to_workspace:
96+
root: ./
97+
paths:
98+
- ./
7899

79100
# Test for coding standards and deprecated code.
80101
static_analysis:
@@ -346,9 +367,10 @@ workflows:
346367
only:
347368
- development
348369
jobs:
349-
- build
350-
- sync_data
370+
- build_edge_branch
371+
- sync_data:
372+
requires:
373+
- build_edge_branch
351374
- functional_tests:
352375
requires:
353-
- build
354376
- sync_data

composer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"dof-dss/nicsdru_origins_theme": "^0.3.1",
3838
"dof-dss/nidirect-d8-test-install-profile": "^0.2.2",
3939
"dof-dss/nidirect-migrations": "^0.10.0",
40-
"dof-dss/nidirect-site-modules": "^0.10.2",
40+
"dof-dss/nidirect-site-modules": "^0.10.3",
4141
"drupal/address": "^1.7",
4242
"drupal/admin_toolbar": "^2.0",
4343
"drupal/adminimal_theme": "^1.5",
@@ -172,6 +172,9 @@
172172
},
173173
"drupal/paragraphs": {
174174
"Integrity constraint violation: 1048 Column 'langcode' cannot be null": "https://www.drupal.org/files/issues/2020-06-25/paragraphs-2901390-51.patch"
175+
},
176+
"drupal/shs": {
177+
"SHS select is empty on views": "https://www.drupal.org/files/issues/2018-12-10/shs-blank-select-fix-3019378-3.patch"
175178
}
176179
},
177180
"composer-exit-on-patch-failure": true,

composer.lock

+14-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/sync/user.role.anonymous.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ permissions:
1919
- 'view files'
2020
- 'view media'
2121
- 'view published gp entities'
22+
- 'view terms in site_themes'

config/sync/views.view.contacts.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ display:
194194
default_group_multiple: { }
195195
group_items: { }
196196
parse_mode: phrase
197-
min_length: 3
197+
min_length: 2
198198
fields:
199199
- title_fulltext
200200
plugin_id: search_api_fulltext
@@ -253,7 +253,6 @@ display:
253253
relationships: { }
254254
arguments: { }
255255
display_extenders: { }
256-
title: Contacts
257256
cache_metadata:
258257
max-age: -1
259258
contexts:
@@ -263,7 +262,9 @@ display:
263262
- url.query_args
264263
- 'url.query_args:sort_by'
265264
- 'url.query_args:sort_order'
266-
tags: { }
265+
- 'user.node_grants:view'
266+
tags:
267+
- 'config:search_api.index.contacts'
267268
contact_search:
268269
display_plugin: embed
269270
id: contact_search
@@ -281,4 +282,6 @@ display:
281282
- url.query_args
282283
- 'url.query_args:sort_by'
283284
- 'url.query_args:sort_order'
284-
tags: { }
285+
- 'user.node_grants:view'
286+
tags:
287+
- 'config:search_api.index.contacts'

config/sync/views.view.site_themes.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -493,17 +493,19 @@ display:
493493
entity_type: flagging
494494
plugin_id: flag_filter
495495
sorts:
496-
field_taxonomy_rank_value:
497-
id: field_taxonomy_rank_value
498-
table: taxonomy_term__field_taxonomy_rank
499-
field: field_taxonomy_rank_value
496+
weight:
497+
id: weight
498+
table: taxonomy_term_field_data
499+
field: weight
500500
relationship: none
501501
group_type: group
502502
admin_label: ''
503503
order: ASC
504504
exposed: false
505505
expose:
506506
label: ''
507+
entity_type: taxonomy_term
508+
entity_field: weight
507509
plugin_id: standard
508510
name:
509511
id: name

0 commit comments

Comments
 (0)