Skip to content

Commit c5a5631

Browse files
authored
Merge pull request #1253 from dof-dss/release-3.1
Release 3.1
2 parents 9489806 + 1d7be77 commit c5a5631

File tree

133 files changed

+2945
-1806
lines changed

Some content is hidden

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

133 files changed

+2945
-1806
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
4343
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
4444

45+
# PHPStan's baseline uses tabs instead of spaces.
46+
core/.phpstan-baseline.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tabwidth=2 diff=php linguist-language=php
47+
4548
# Define binary file attributes.
4649
# - Do not treat them as text.
4750
# - Include binary diff in patches instead of "binary files differ."

.lando.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env_file:
66
- .env
77
config:
88
webroot: web
9-
php: '8.1'
9+
php: '8.2'
1010
composer_version: '2.5.8'
1111
via: apache:2.4
1212
database: mariadb:10.5

.lando/private/.htaccess

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Deny all requests from Apache 2.4+.
2+
<IfModule mod_authz_core.c>
3+
Require all denied
4+
</IfModule>
5+
6+
# Deny all requests from Apache 2.0-2.2.
7+
<IfModule !mod_authz_core.c>
8+
Deny from all
9+
</IfModule>
10+
11+
# Turn off all options we don't need.
12+
Options -Indexes -ExecCGI -Includes -MultiViews
13+
14+
# Set the catch-all handler to prevent scripts from being executed.
15+
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
16+
<Files *>
17+
# Override the handler again if we're run later in the evaluation list.
18+
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
19+
</Files>
20+
21+
# If we know how to do it safely, disable the PHP engine entirely.
22+
<IfModule mod_php.c>
23+
php_flag engine off
24+
</IfModule>

.platform.app.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
name: 'nidirect'
88

99
# The runtime the application uses.
10-
type: 'php:8.1'
10+
type: 'php:8.2'
1111

1212
# Application variables.
1313
# Set non-sensitive variables here only.
@@ -132,6 +132,10 @@ web:
132132
# Deny access to static files in this location.
133133
allow: false
134134

135+
# Apply rules to all static files (dynamic files get rules from your app)
136+
headers:
137+
X-Content-Type-Options: nosniff
138+
135139
# Rules for specific URI patterns.
136140
rules:
137141
# Allow access to common static files.

.platform/routes.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
upstream: "nidirect:http"
55
cache:
66
enabled: false
7+
tls:
8+
strict_transport_security:
9+
enabled: true
10+
include_subdomains: true
11+
preload: true
712
redirects:
813
paths:
914
'^(.*/)index\.php/(.*)':

composer.json

+15-9
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"composer/installers": "^2.0",
4646
"cweagans/composer-patches": "^1.6.5",
4747
"dof-dss/nicsdru_origins_modules": "^10.3",
48-
"dof-dss/nicsdru_origins_theme": "^10",
48+
"dof-dss/nicsdru_origins_theme": "^10.1",
4949
"drupal/address": "^2.0",
5050
"drupal/admin_toolbar": "^3.2",
5151
"drupal/adminimal_theme": "^1.7",
@@ -64,11 +64,11 @@
6464
"drupal/config_readonly": "^1.0@beta",
6565
"drupal/config_split": "^2.0-beta",
6666
"drupal/config_update": "^2.0@alpha",
67-
"drupal/cookie_content_blocker": "^2.2",
68-
"drupal/core-composer-scaffold": "10.1.8",
69-
"drupal/core-dev": "10.1.8",
70-
"drupal/core-project-message": "10.1.8",
71-
"drupal/core-recommended": "10.1.8",
67+
"drupal/cookie_content_blocker": "^2.3",
68+
"drupal/core-composer-scaffold": "^10.2",
69+
"drupal/core-dev": "^10.2",
70+
"drupal/core-project-message": "^10.2",
71+
"drupal/core-recommended": "^10.2",
7272
"drupal/csp": "^1.15",
7373
"drupal/csv_serialization": "^4.0",
7474
"drupal/ctools": "^4.0",
@@ -123,7 +123,7 @@
123123
"drupal/search_api": "^1.26",
124124
"drupal/search_api_autocomplete": "^1.7",
125125
"drupal/search_api_location": "^1.0@alpha",
126-
"drupal/search_api_solr": "^4.2",
126+
"drupal/search_api_solr": "4.x-dev@dev",
127127
"drupal/search_api_spellcheck": "4.0.x-dev@dev",
128128
"drupal/seven": "^1.0",
129129
"drupal/shs": "^2.0@RC",
@@ -135,7 +135,7 @@
135135
"drupal/structure_sync": "^2.0",
136136
"drupal/taxonomy_access_fix": "^4.0",
137137
"drupal/taxonomy_entity_index": "^1.7",
138-
"drupal/telephone_plus": "^9.1",
138+
"drupal/telephone_plus": "2.0.x-dev@dev",
139139
"drupal/token": "^1.13",
140140
"drupal/token_filter": "^2.1",
141141
"drupal/twig_field_value": "^2.0",
@@ -147,7 +147,7 @@
147147
"drupal/webform": "^6.2@RC",
148148
"drupal/whatlinkshere": "^2.1",
149149
"drupal/xls_serialization": "^1.2",
150-
"drush/drush": "^12",
150+
"drush/drush": "^12.5",
151151
"geocoder-php/google-maps-provider": "^4.6",
152152
"harvesthq/chosen": "^1.8",
153153
"maxh/php-nominatim": "^2.2",
@@ -215,6 +215,9 @@
215215
"drupal/easy_install": {
216216
"Handle missing core version": "https://www.drupal.org/files/issues/2019-12-19/easy_install_core_version-3101883-0.patch"
217217
},
218+
"drupal/filelog": {
219+
"Circular refernce detected for service": "https://www.drupal.org/files/issues/2024-01-25/filelog_with_tests.patch"
220+
},
218221
"drupal/feeds": {
219222
"Use uuid as GUID for Drupal entities": "https://www.drupal.org/files/issues/2022-09-23/feeds-3306725-18.patch"
220223
},
@@ -248,6 +251,9 @@
248251
},
249252
"drupal/scheduled_transitions": {
250253
"Add pagination to target revision candidates list": "https://www.drupal.org/files/issues/2024-02-01/scheduled_transitions-page-revisions-3241497-13.patch"
254+
},
255+
"drupal/search_api": {
256+
"Declaration of Drupal\\search_api_solr\\Plugin\\search_api\\backend\\SearchApiSolrBackend::__sleep() must be compatible #3454939": "https://www.drupal.org/files/issues/2024-06-17/3454939-search-api-solr-core-10.patch"
251257
}
252258
},
253259
"composer-exit-on-patch-failure": true,

0 commit comments

Comments
 (0)