image_blurry_placeholder 1.2.0
Contributors (2)
Changelog
Issues: 3 issues resolved.
Issues: 3 issues resolved.
\Drupal::settings() to Settings::get() (this was causing the fatal error)
The problem was that the code was calling \Drupal::settings() a function that doesn't exist in Drupal. I've changed it to use Settings::get() instead, which is the correct way to access settings from settings.php within Drupal.
The changes made:
use Drupal\Core\Site\Settings; at the top of the file
\Drupal::settings()->get('oci_osfs.api_key', []) to Settings::get('oci_osfs.api_key', [])
This patch release improves compatibility with Drupal 11.3 and cleans up some rough edges in Canvas, both in the backend code and in the user interface (see this video for more information). Component config entities are now updated only when actually necessary.
Fixes a node access regression in og 2.x-dev where saving group content as a non group admin could drop OG grants (because og_audience references may be permission-filtered), potentially making private group content viewable. Grant generation now uses raw audience target_id values and adds a regression test.
- Adds canvas page compatibility
- Fixes schema validation errors
- Adds last minor version testing