Skip to content

Commit 8c0bc62

Browse files
authored
Merge pull request #1271 from dof-dss/development
Dev to main for release
2 parents 126d60d + d3eb7f3 commit 8c0bc62

36 files changed

+885
-294
lines changed

.env.example

+3
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@ GA_CLIENT_SECRET=
3131
GA_REDIRECT_URI=
3232
GOOGLE_MAP_API_KEY=
3333
GOOGLE_MAP_API_SERVER_KEY=
34+
PRISON_VISITS_API_PERMITTED_IPS=
35+
PRISON_VISITS_API_PERMITTED_TOKENS=
36+
SILKTIDE_API_KEY=

.lando/config/drupal.settings.php

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
$config['geolocation_google_maps.settings']['google_map_api_server_key'] = getenv('GOOGLE_MAP_API_SERVER_KEY');
5959
// Geocoder module API key.
6060
$config['geocoder.settings']['plugins_options']['googlemaps']['apikey'] = getenv('GOOGLE_MAP_API_SERVER_KEY');
61+
// Silktide module API key.
62+
$config['silktide.settings']['apikey'] = getenv('SILKTIDE_API_KEY');
6163

6264
// Environment indicator defaults.
6365
$env_colour = !empty(getenv('SIMPLEI_ENV_COLOUR')) ? getenv('SIMPLEI_ENV_COLOUR') : '#000000';

composer.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"drupal/feeds_ex": "^1.0@beta",
8888
"drupal/feeds_fetcher_headers": "1.0.x-dev@dev",
8989
"drupal/feeds_tamper": "^2.0@beta",
90-
"drupal/field_group": "^3.2",
90+
"drupal/field_group": "^3.6",
9191
"drupal/file_delete_ui": "^1.0@alpha",
9292
"drupal/filelog": "^2.1",
9393
"drupal/flag": "4.x-dev",
@@ -127,6 +127,7 @@
127127
"drupal/search_api_spellcheck": "4.0.x-dev@dev",
128128
"drupal/seven": "^1.0",
129129
"drupal/shs": "^2.0@RC",
130+
"drupal/silktide": "^10.3",
130131
"drupal/simple_sitemap": "^4.1",
131132
"drupal/simplei": "^2.1",
132133
"drupal/sitewide_alert": "^2.1",
@@ -215,6 +216,9 @@
215216
"drupal/easy_install": {
216217
"Handle missing core version": "https://www.drupal.org/files/issues/2019-12-19/easy_install_core_version-3101883-0.patch"
217218
},
219+
"drupal/eu_cookie_compliance": {
220+
"JS Aggregation breaks in 10.1 when disabling other javascripts": "https://git.drupalcode.org/issue/eu_cookie_compliance-3412431/-/commit/3433c67b039e2319206ab68fd83a32cd161a99cb.diff"
221+
},
218222
"drupal/filelog": {
219223
"Circular refernce detected for service": "https://www.drupal.org/files/issues/2024-01-25/filelog_with_tests.patch"
220224
},

composer.lock

+92-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_core:
22
default_config_hash: 3YUV4RQQ4k8drO7uzYJ7lNc5Az0iDAH5YW8KbZVxjeY
33
use_cdn: true
4-
cdn_base_url: 'https://cdn.jsdelivr.net/npm/jquery-validation@1.17.0/dist/'
4+
cdn_base_url: 'https://cdn.jsdelivr.net/npm/jquery-validation@1.20.0/dist/'
55
validate_all_ajax_forms: 1
66
force_validate_on_blur: 0

0 commit comments

Comments
 (0)