Skip to content

Commit 5722a23

Browse files
committed
Merge branch 'development'
2 parents a09b74f + e35e23d commit 5722a23

File tree

67 files changed

+2308
-394
lines changed

Some content is hidden

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

67 files changed

+2308
-394
lines changed

.platform.app.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,8 @@ web:
144144
# Provide a longer TTL (2 weeks) for aggregated CSS and JS files.
145145
'^/sites/default/files/(css|js)':
146146
expires: 2w
147+
crons:
148+
# Once a day, prune/delete filelog entries older than 30 days.
149+
filelog:
150+
spec: '0 1 * * *'
151+
cmd: 'cd /app/private; find logs -mtime +30 -exec rm -rf {} \;'

composer.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"drupal/adminimal_theme": "^1.5",
5454
"drupal/better_field_descriptions": "^1.5",
5555
"drupal/block_content_permissions": "^1.10",
56+
"drupal/block_field": "^1.0@RC",
5657
"drupal/block_list_override": "^1.0",
5758
"drupal/chosen": "^3.0",
5859
"drupal/chosen_lib": "^3.0",
@@ -67,6 +68,7 @@
6768
"drupal/core-composer-scaffold": "^8.9.13",
6869
"drupal/core-project-message": "^8.9.13",
6970
"drupal/core-recommended": "^8.9.13",
71+
"drupal/csp": "^1.15",
7072
"drupal/csv_serialization": "^2.0@beta",
7173
"drupal/diff": "^1.0",
7274
"drupal/entity_browser": "^2.5",
@@ -78,6 +80,7 @@
7880
"drupal/facets_pretty_paths": "1.x-dev",
7981
"drupal/fastly": "^3.9",
8082
"drupal/field_group": "^3.0",
83+
"drupal/filelog": "^2.0",
8184
"drupal/flag": "4.x-dev",
8285
"drupal/geocoder": "^3.14",
8386
"drupal/geolocation": "3.x",
@@ -146,6 +149,7 @@
146149
"require-dev": {
147150
"drupal/core-dev": "^8.8",
148151
"drupal/devel": "^4.1",
152+
"drupal/devel_entity_updates": "^3.0",
149153
"drupal/easy_install": "^10.1",
150154
"drupal/fpa": "^2.0@beta",
151155
"drupal/masquerade": "^2.0@beta",
@@ -178,7 +182,8 @@
178182
"[meta] Themes improperly check renderable arrays when determining visibility": "https://www.drupal.org/files/issues/2019-02-19/themes_improperly_check_renderable_arrays_when_determining_visibility-953034-313.patch",
179183
"Off-canvas style resets are overriding styles (especially SVGs) in Safari, Firefox and Chromium Edge resulting in display issues": "https://www.drupal.org/files/issues/2021-01-06/off-canvas-style-resets-2958588-13.patch",
180184
"Cannot save unpublished versions of published content for users without manage book privileges": "https://www.drupal.org/files/issues/2020-10-18/2918537-63.patch",
181-
"Layout builder fails to assign inline block access dependencies for the overrides section storage on entities with pending revisions": "https://www.drupal.org/files/issues/2021-03-22/3047022-70-backport-8.9.x.patch"
185+
"Layout builder fails to assign inline block access dependencies for the overrides section storage on entities with pending revisions": "https://www.drupal.org/files/issues/2021-03-22/3047022-70-backport-8.9.x.patch",
186+
"Support for AjaxResponse implementing CacheableResponseInterface": "https://gist.githubusercontent.com/omahm/cd990b5cdba637fe270ada0702717d9d/raw/60a05babb9747061df201ca9f74afb4b59166f14/cacheableAjaxResponse.patch"
182187
},
183188
"drupal/easy_install": {
184189
"Handle missing core version": "https://www.drupal.org/files/issues/2019-12-19/easy_install_core_version-3101883-0.patch"
@@ -243,6 +248,9 @@
243248
},
244249
"drupal/entity_reference_unpublished": {
245250
"Plugin to cover taxonomy term entities": "https://www.drupal.org/files/issues/2021-03-25/3205634-reference-unpublished-taxonomy-terms.patch"
251+
},
252+
"drupal/filelog": {
253+
"Whole Log gets loaded into Memory when gzipping": "https://www.drupal.org/files/issues/2021-04-07/filelog-3157650-21.patch"
246254
}
247255
},
248256
"composer-exit-on-patch-failure": true,

0 commit comments

Comments
 (0)