diff --git a/composer-manifest.yaml b/composer-manifest.yaml index 86eca61c..d16c73ec 100644 --- a/composer-manifest.yaml +++ b/composer-manifest.yaml @@ -45,10 +45,10 @@ packages: drupal/config_filter: 1.9.0 drupal/config_ignore: 2.3.0 drupal/config_split: 1.8.0 - drupal/core: 9.4.2 + drupal/core: 9.4.3 drupal/core-composer-scaffold: 9.4.1 drupal/core-project-message: 9.4.1 - drupal/core-recommended: 9.4.2 + drupal/core-recommended: 9.4.3 drupal/core-vendor-hardening: 9.4.1 drupal/crop: 2.2.0 drupal/csv_serialization: 2.1.0 diff --git a/composer.lock b/composer.lock index 72a54dab..a2772ee2 100644 --- a/composer.lock +++ b/composer.lock @@ -2946,16 +2946,16 @@ }, { "name": "drupal/core", - "version": "9.4.2", + "version": "9.4.3", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "5a4d6acc99e279f70a914804ff3dd08111707de1" + "reference": "7b1a403c093c7abc89ef3df1a6b05bdb19b3ffad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/5a4d6acc99e279f70a914804ff3dd08111707de1", - "reference": "5a4d6acc99e279f70a914804ff3dd08111707de1", + "url": "https://api.github.com/repos/drupal/core/zipball/7b1a403c093c7abc89ef3df1a6b05bdb19b3ffad", + "reference": "7b1a403c093c7abc89ef3df1a6b05bdb19b3ffad", "shasum": "" }, "require": { @@ -3198,9 +3198,9 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/9.4.2" + "source": "https://github.com/drupal/core/tree/9.4.3" }, - "time": "2022-07-07T01:18:39+00:00" + "time": "2022-07-20T15:11:38+00:00" }, { "name": "drupal/core-composer-scaffold", @@ -3295,16 +3295,16 @@ }, { "name": "drupal/core-recommended", - "version": "9.4.2", + "version": "9.4.3", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "c10da85434356b27e2bf0516a7b6f8103b473038" + "reference": "ff8662af0a5963a88ea856e9786e17a51f8e640c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/c10da85434356b27e2bf0516a7b6f8103b473038", - "reference": "c10da85434356b27e2bf0516a7b6f8103b473038", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ff8662af0a5963a88ea856e9786e17a51f8e640c", + "reference": "ff8662af0a5963a88ea856e9786e17a51f8e640c", "shasum": "" }, "require": { @@ -3313,7 +3313,7 @@ "doctrine/annotations": "~1.13.2", "doctrine/lexer": "~1.2.3", "doctrine/reflection": "~1.2.3", - "drupal/core": "9.4.2", + "drupal/core": "9.4.3", "egulias/email-validator": "~3.2", "guzzlehttp/guzzle": "~6.5.8", "guzzlehttp/promises": "~1.5.1", @@ -3375,9 +3375,9 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/9.4.2" + "source": "https://github.com/drupal/core-recommended/tree/9.4.3" }, - "time": "2022-07-07T01:18:39+00:00" + "time": "2022-07-20T15:11:38+00:00" }, { "name": "drupal/core-vendor-hardening", diff --git a/web/sites/default/default.settings.php b/web/sites/default/default.settings.php index 72be7750..f3dca008 100644 --- a/web/sites/default/default.settings.php +++ b/web/sites/default/default.settings.php @@ -490,6 +490,29 @@ */ # $settings['file_public_path'] = 'sites/default/files'; +/** + * Additional public file schemes: + * + * Public schemes are URI schemes that allow download access to all users for + * all files within that scheme. + * + * The "public" scheme is always public, and the "private" scheme is always + * private, but other schemes, such as "https", "s3", "example", or others, + * can be either public or private depending on the site. By default, they're + * private, and access to individual files is controlled via + * hook_file_download(). + * + * Typically, if a scheme should be public, a module makes it public by + * implementing hook_file_download(), and granting access to all users for all + * files. This could be either the same module that provides the stream wrapper + * for the scheme, or a different module that decides to make the scheme + * public. However, in cases where a site needs to make a scheme public, but + * is unable to add code in a module to do so, the scheme may be added to this + * variable, the result of which is that system_file_download() grants public + * access to all files within that scheme. + */ +# $settings['file_additional_public_schemes'] = ['example']; + /** * Private file path: *