Version 4 supported
This version of Silverstripe CMS is still supported though will not receive any additional features. Go to documentation for the most recent stable version.

4.9.0-rc1

Overview

A full list of module versions included in CMS Recipe 4.9.0-rc1 is provided below. We recommend referencing recipes in your dependencies, rather than individual modules, to simplify version tracking. See Recipes.

Core module versions
ModuleVersion
silverstripe/admin1.9.0-rc1
silverstripe/asset-admin1.9.0-rc1
silverstripe/assets1.9.0-rc1
silverstripe/campaign-admin1.9.0-rc1
silverstripe/cms1.9.0-rc1
silverstripe/config1.2.0-rc1
silverstripe/errorpage1.9.0-rc1
silverstripe/framework4.9.0-rc1
silverstripe/graphql3.6.0-rc1
silverstripe/login-forms4.5.0-rc1
silverstripe/mimevalidator2.2.0-rc1
silverstripe/reports4.9.0-rc1
silverstripe/session-manager1.1.0-rc1
silverstripe/siteconfig4.9.0-rc1
silverstripe/versioned1.9.0-rc1
silverstripe/versioned-admin1.9.0-rc1
Supported module versions
ModuleVersion
bringyourownideas/silverstripe-composer-update-checker2.0.3
bringyourownideas/silverstripe-maintenance2.3.1
cwp/agency-extensions2.5.0
cwp/cwp2.8.0
cwp/cwp-core2.8.0
cwp/cwp-pdfexport1.2.0
cwp/cwp-search1.5.0
cwp/starter-theme3.2.0
cwp/watea-theme3.1.0
dnadesign/silverstripe-elemental4.7.0
dnadesign/silverstripe-elemental-userforms3.0.0
silverstripe/akismet4.1.0
silverstripe/auditor2.3.0
silverstripe/blog3.8.0-rc1
silverstripe/ckan-registry1.3.0-rc1
silverstripe/comment-notifications2.1.0
silverstripe/comments3.6.0-rc1
silverstripe/content-widget2.2.0
silverstripe/contentreview4.3.0-rc1
silverstripe/controllerpolicy2.2.0
silverstripe/crontask2.3.0-rc1
silverstripe/documentconverter2.1.1
silverstripe/elemental-bannerblock2.3.0-rc1
silverstripe/elemental-fileblock2.2.0-rc1
silverstripe/environmentcheck2.3.0
silverstripe/externallinks2.1.1
silverstripe/fulltextsearch3.8.0
silverstripe/gridfieldqueuedexport2.5.0-rc1
silverstripe/html52.1.0
silverstripe/hybridsessions2.3.0-rc1
silverstripe/iframe2.1.0
silverstripe/ldap1.2.1
silverstripe/mfa4.4.0-rc1
silverstripe/realme4.1.1
silverstripe/registry2.3.0
silverstripe/restfulserver2.3.0
silverstripe/security-extensions4.1.0
silverstripe/securityreport2.3.0
silverstripe/segment-field2.4.0-rc1
silverstripe/sharedraftcontent2.5.0-rc1
silverstripe/sitewidecontent-report3.1.0
silverstripe/spamprotection3.1.0
silverstripe/spellcheck2.2.1
silverstripe/subsites2.4.0
silverstripe/tagfield2.7.0-rc1
silverstripe/taxonomy2.2.0
silverstripe/textextraction3.2.0
silverstripe/totp-authenticator4.2.0-rc1
silverstripe/userforms5.10.0-rc1
silverstripe/versionfeed2.1.0-rc1
silverstripe/webauthn-authenticator4.3.0-rc1
silverstripe/widgets2.1.1
symbiote/silverstripe-advancedworkflow5.5.0-rc1
symbiote/silverstripe-multivaluefield5.1.0
symbiote/silverstripe-queuedjobs4.8.0
tractorcow/silverstripe-fluent4.5.1

Release candidate

This version of Silverstripe CMS is a release candidate for an upcoming stable version, and should not be applied to production websites. We encourage developers to test this version in development / testing environments and report any issues they encounter via GitHub.

For development teams of common web platform projects

This release marks the first release for Common Web Platform projects to eject out of managing projects in the CWP 2.x version line and to begin following the standard CMS 4.x version line, by adopting the CMS Recipe.

More information and guidance on how to manage your project composer.json file will be published as part of the CMS 4.9.0 stable release and supporting documentation.

Dropping support for internet explorer 11

Silverstripe CMS 4.9.0 is the last release of Silverstripe CMS that supports Internet Explorer 11. Silverstripe CMS 4.10.0 will not support Internet Explorer 11.

Microsoft has announced the end-of-life for Internet Explorer 11 on June 15, 2022. It has already dropped Internet Explorer support in many other products including Microsoft Teams and Microsoft 365. In this context, any development time dedicated to maintianing Internet Explorer support could be better use improving other areas of Silverstripe CMS.

While the Silverstripe CMS UI might not allow content authors to manage content in Internet Explorer, this does not preclude Silverstripe CMS project from outputting an a frontend site that is compatible with Internet Explorer.

Features and enhancements

Image lazy loading

Most modern browsers support the ability to "lazy load" images. When an image is configured to be lazy loaded, browsers only request the image once it's about to be visible to the users. This reduces the initial rendering time for pages.

From v4.9, Silverstripe CMS lazy loads most images by default. You have the options to opt-out of this behaviour globally or on specific image instances.

This feature was implemented in partnership with Google.

Read Browser-level image lazy-loading for the web on web.dev more information.

How developers can interact with image lazy loading

Most images get the loading="lazy" attribute added to them. This includes:

  • images added via the HTML Editor's insert media button
  • image DataObjects added to templates.

To disable lazy loading for an individual image in a template, use $MyImage.LazyLoad(false).

Image HTML tags (<img>) added in templates are not lazy loaded by default. Developers can manually lazy load these images by adding a loading="lazy" attribute.

Read the Image Lazy Loading Silverstripe CMS developer documentation for more details and code examples.

Opting out of image lazy loading globally

There's some scenarios where you might not want to use the native Silverstripe CMS lazy loading. For example, you might already have a custom lazy loading implementation.

To opt out of lazy loading globally, use the following YAML config:

SilverStripe\Assets\Image:
  lazy_loading_enabled: false

How content authors can interact with image lazy loading

Content authors can disable lazy loading on images added via the HTML editor field in the Insert media dialog by setting the Loading field to Eager.

Consult the Insert images article in the Silverstripe CMS user help for detailed instructions.

Manage your CMS sessions across devices

The session manager module is a new security focused feature which allows a CMS user to view and manage their active sessions in the CMS within the "My profile" section of the CMS (/admin/myprofile). They can see the device details behind each session and have the ability to revoke these sessions. This new module has been added to silverstripe/recipe-cms which is the recommended method of managing Silverstripe CMS dependencies in a project.

Projects that have silverstripe/recipe-cms as a requirement in their composer.json will automatically get silverstripe/session-manager when you run composer update. If your project does not use silverstripe/recipe-cms, it's recommended that you require silverstripe/session-manager in your composer file as a security enhancement. The session manager module requires no configuration and works out-of-the-box.

If your site has the symbiote/silverstripe-queuedjobs module installed, then a job will automatically be created that will periodically remove old database records created by the session manager module.

CMS users can review the Session Manager user help for more information on managing their sessions.

Default mail transport upgraded to sendmail

Silverstripe CMS provides an API over the top of the SwiftMailer PHP library which comes with an extensive list of "transports" for sending mail via different services.

Prior to 4.9.0, Silverstripe CMS 4 defaulted to using the built-in PHP mail() command via a deprecated class Swift_MailTransport. However, using this layer is less secure and is strongly discouraged.

Installations of Silverstripe CMS setup using silverstripe/installer 4.9.0 or greater default to using the more secure class Swift_SendmailTransport which uses a sendmail binary.

It's highly recommended that existing Silverstripe CMS installation still using Swift_MailTransport upgrade to using Swift_SendmailTransport or another available transport, such as Swift_SmtpTransport. Details on how to use these classes are available in the email section of the developer docs.

Support for silverstripe/graphql v4

The Silverstripe CMS 4.8.0 release added support for the experimental silverstripe/graphql v4 module. We made it easier for early adopters to run silverstripe/graphql v4 in this release:

  • Upgrade to the Silverstripe CMS 4.9.0 release.
  • Confirm your project composer.json file has a "minimum-stability": "dev" key.
  • Explicitly require silverstripe/graphql v4 by running composer require silverstripe/graphql:^4

You don't need to inline any recipes anymore.

Other new features

Bugfixes

This release includes a number of bug fixes to improve a broad range of areas. Check the change logs for full details of these fixes split by module. Thank you to the community members that helped contribute these fixes as part of the release!

Change log

Features and enhancements

  • silverstripe/installer (4.8.0 -> 4.9.0-rc1)

    • 2021-08-18 be9d875 Use Swift_SendmailTransport for new projects (Steve Boyd)
  • silverstripe/assets (1.8.0 -> 1.9.0-rc1)

    • 2021-07-05 9526c54 Add lazy loading to image rendered in SS template (Maxime Rainville)
    • 2021-07-05 ce3a649 Image lazy-loading for wysiwyg images (#455) (Steve Boyd)
    • 2021-05-19 80019e9 Ensure logged in members can access draft files (#446) (Aaron Carlino)
  • silverstripe/config (1.1.0 -> 1.2.0-rc1)

    • 2018-02-26 e0e4013 New alias for 1.x-dev (Daniel Hensby)
  • silverstripe/framework (4.8.0 -> 4.9.0-rc1)

    • 2021-08-08 f99ba5d71 Add extension point to DataObject-&amp;gt;hydrate() (Matt Peel)
    • 2021-07-31 a90d46dbc Title tips for form fields (Steve Boyd)
    • 2021-07-18 4cd6b1434 Reduce duplication of code in GridField view and edit buttons. (#9953) (GuySartorelli)
    • 2021-06-29 e4e4b0924 Use text field&#039;s title for validation messages. (GuySartorelli)
    • 2021-06-25 d710990e1 Provide onBeforeRenderHolder extension hook. (GuySartorelli)
    • 2021-06-17 b625ba99b Remove wording for authenticated devices being manageable (Steve Boyd)
    • 2021-05-23 9dd69c40e Add DBText-&amp;gt;Summary tests (Michal Kleiner)
    • 2021-05-10 f8a943115 Add extension point to Director::is_site_url (Michal Kleiner)
    • 2020-08-26 8883413ba Add GridFieldDetailForm::setRedirectMissingRecords() (Sam Minnee)
    • 2019-08-24 02fb7c3b1 Support dot syntax in form field names (Sam Minnee)
  • silverstripe/mimevalidator (2.1.1 -> 2.2.0-rc1)

    • 2020-11-16 c528307 Update translations (Maxime Rainville)
    • 2020-11-15 b409695 Update translations (Maxime Rainville)
  • silverstripe/admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-03 e7a9513 FormField Title tooltip (Steve Boyd)
    • 2021-07-08 4817216 Avoid &quot;new&quot; keyword to instantiate injectable CMSMenuItem (GuySartorelli)
  • silverstripe/asset-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-02 a420ec9b Add image form input to opt out of lazy loading (Steve Boyd)
    • 2021-06-28 a77bae9e Remove duplicate permission check (Steve Boyd)
    • 2021-06-20 4979699a Update data source used for file delete modal (Steve Boyd)
  • silverstripe/session-manager (0.1.1 -> 1.1.0-rc1)

    • 2021-06-20 efe3023 Remove logout confirmation (Steve Boyd)
    • 2021-06-09 b8afcdd Update folders + namespaces, remove unused class (Steve Boyd)
  • silverstripe/userforms (5.9.0 -> 5.10.0-rc1)

    • 2021-05-31 3fbccea Avoid use of &#039;new&#039; keyword on injectable classes from this module. (GuySartorelli)
  • dnadesign/silverstripe-elemental (4.6.0 -> 4.7.0)

    • 2021-06-27 eae0ff9 Top Page enhancements. (#832) (Mojmir Fendek)
  • silverstripe/mfa (4.3.0 -> 4.4.0-rc1)

    • 2021-06-16 51d6094 Increase rate limit (Steve Boyd)

Bugfixes

  • silverstripe/installer (4.8.0 -> 4.9.0-rc1)

    • 2021-06-21 9487628 Fix typo (Seno)
  • silverstripe/framework (4.8.0 -> 4.9.0-rc1)

    • 2021-08-23 de87d91d2 Trim email addresses to comply with RFC 2822, 3.6.2 (Steve Boyd)
    • 2021-08-06 9a7c99fc4 Take current request protocol into account when deleting session cookie (Florian Thoma)
    • 2021-08-05 ecb233012 Fix error when executing method SSViewer::templates() when $subTemplates is still null (Bram de Leeuw)
    • 2021-07-27 e436e13df Fix link typo in 01_Caching.md (Vlad Mencl)
    • 2021-07-07 b2a85e7a0 BASE_PATH fallback assumed wrong file location (#9977) (Ingo Schommer)
    • 2021-07-06 87d076faa Cast DBInt value to int (Steve Boyd)
    • 2021-07-01 8e803bbcf Parse Enums with dots in their values (Steve Boyd)
    • 2021-06-29 0b979dc34 Cache duplicate embeds separately (Steve Boyd)
    • 2021-06-17 7ed7ad025 Ensure changing a password to blank is validated (Steve Boyd)
    • 2021-06-05 28b5b803b Defensively copy mocked datetime (David Peck)
    • 2021-05-31 472fc4ebb Update DataQuery::exists to return false when limit causes no result to be returned (#9946) (Maxime Rainville)
    • 2021-05-20 5e2ca7f0a Tidy extension and cli fix for tests (Ingo Schommer)
    • 2021-05-14 7024af541 Fix typos in 04_Data_Types_and_Casting.md (Manuel Thalmann)
    • 2021-05-14 6e499b73a Fix typos in 03_Lists.md (Manuel Thalmann)
    • 2021-05-13 a5e4a5c97 Fix typos in 02_Relations.md (Manuel Thalmann)
    • 2021-05-13 f44119ff5 Fix typos in 01_Data_Model_and_ORM.md (Manuel Thalmann)
    • 2020-09-16 2017a2043 Use empty array as a fallback for preg_split within dbtext summary (Michal Kleiner)
    • 2020-08-04 9d03a6856 Retain custom sort on custom lists in GridFieldAddExistingAutoCompleter (Ingo Schommer)
    • 2019-08-26 5dcf5197d Make the ./_ substitution optional. (Sam Minnee)
    • 2019-08-26 c7c6bdebd Allow join-object to be referenced as a component (Sam Minnee)
    • 2019-08-24 6ba7bf7b2 Replace ‘.’s with ‘_’s in HTML IDs (Sam Minnee)
  • silverstripe/admin (1.8.0 -> 1.9.0-rc1)

    • 2021-07-01 e361ae2 Unload previous preview when new URL is not available (Steve Boyd)
    • 2021-06-17 c18402a Treedropdown css (Steve Boyd)
    • 2021-06-04 ec80b60 Fix broken ModelAdmin test (Maxime Rainville)
    • 2021-06-02 56c3a8f Refactor HeaderField to be a functional component (Maxime Rainville)
    • 2021-05-28 a0a3701 managed_models slugs can&#039;t have hyphens (#1220) (Andrew Aitken-Fincham)
  • silverstripe/asset-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-12 f3065b6f Update unit test to use TestSession for session (Steve Boyd)
    • 2021-07-16 b7061ce8 Update Editor to fetch file info directly from GraphQL so the editor works even when viewing a file not on the current page (Maxime Rainville)
    • 2021-07-15 5db5c6cc Always sort by folders first (Steve Boyd)
    • 2021-06-20 91d59457 Update overrides url when file is selected (Steve Boyd)
  • silverstripe/versioned-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-06-10 789e52c Update broken translations (Maxime Rainville)
  • silverstripe/cms (4.8.0 -> 4.9.0-rc1)

    • 2021-06-23 9d77ff3b Show &#039;No preview available&#039; message for pages with no state (Steve Boyd)
    • 2020-09-17 2332831a Fix Behat test to use new toast notification step (Maxime Rainville)
  • silverstripe/session-manager (0.1.1 -> 1.1.0-rc1)

    • 2021-06-28 cf17c0e Fix title of user docs (Andre Kiste)
    • 2021-04-22 640bf52 Refactor LoginSessionController to use sensible REST request and to allow all users to invalidate their session (Maxime Rainville)
  • silverstripe/login-forms (4.4.1 -> 4.5.0-rc1)

    • 2021-06-24 c554983 Add Darkmod style for popover (#98) (Maxime Rainville)
  • silverstripe/spellcheck (2.2.0 -> 2.2.1)

    • 2021-05-30 1a54396 Add namespaces back to translation files (Steve Boyd)
  • silverstripe/tagfield (2.6.0 -> 2.7.0-rc1)

    • 2021-07-26 88c069c Fix missing CSS class for StringTagField initialisation (closes #148) (Loz Calver)
    • 2021-06-18 325de9e Fix StringTagField initialisation (fixes #148) (Loz Calver)
  • silverstripe/widgets (2.1.0 -> 2.1.1)

    • 2021-05-30 d4ae7ff Add namespaces back to translation files (Steve Boyd)
  • silverstripe/contentreview (4.2.0 -> 4.3.0-rc1)

    • 2020-10-29 ebcfc48 Clear non-recurring custom date when reviewing (Jules)
  • silverstripe/sharedraftcontent (2.4.0 -> 2.5.0-rc1)

    • 2021-07-27 e010663 Add no-change-track to link input (Will Rossiter)
    • 2021-07-08 e7e9633 Rename file to match class name (Steve Boyd)
    • 2021-06-29 82c2649 resolve previewing pages which redirect (#143) (Will Rossiter)
  • silverstripe/userforms (5.9.0 -> 5.10.0-rc1)

    • 2021-07-08 69b397f Fix bad lang merge (Daniel Hensby)
    • 2021-06-22 18eccb6 Log any email exceptions gracefully (Will Rossiter)
    • 2021-06-20 02c15f3 Fix: Allow removing the Versioned extension from EditableFormField (GuySartorelli)
    • 2021-05-31 b13cb73 Add namespaces back to translation files, use EditibleFileField class (Steve Boyd)
    • 2021-04-12 4a883f1 fix for testing EmailRecipients (Bauke Zwaan)
    • 2021-03-31 beaf901 When deleting form submission, delete linked file (Will Rossiter)
    • 2021-03-22 e925aa1 Uploaded files not appearing in emails (Will Rossiter)
  • dnadesign/silverstripe-elemental (4.6.0 -> 4.7.0)

    • 2021-02-09 ce4696e Add missing use statement. (GuySartorelli)
    • 2021-02-08 fb3bad4 ignored_classes Content field emptied by MigrateContentToElement task (GuySartorelli)
  • symbiote/silverstripe-queuedjobs (4.7.0 -> 4.8.0)

    • 2021-08-05 6f936a7 Remove stalled job if implementation not found (#350) (Will Rossiter)

API changes

  • silverstripe/assets (1.8.0 -> 1.9.0-rc1)

    • 2021-06-24 46e11eb Add image lazy load config (Steve Boyd)
  • silverstripe/framework (4.8.0 -> 4.9.0-rc1)

    • 2021-08-18 92f47da08 Update SwiftMailer from v5 to v6 (#10048) (Steve Boyd)

Dependencies

  • silverstripe/recipe-kitchen-sink (4.8.0 -> 4.9.0-rc1)

    • 2021-09-03 80f7404 Update fluent version (Steve Boyd)
    • 2021-08-29 ee098d0 Update dependency versions (Steve Boyd)
  • silverstripe/recipe-cms (4.8.0 -> 4.9.0-rc1)

    • 2021-08-19 03c6888 Add session manager (Steve Boyd)
    • 2021-05-17 53f9a7f Use versioned 1.8 (Steve Boyd)
    • 2021-05-17 861afad Update dependencies for CMS 4.8 (Steve Boyd)
  • silverstripe/recipe-core (4.8.0 -> 4.9.0-rc1)

    • 2021-05-17 05c5042 Update dependencies for CMS 4.8 (Steve Boyd)
  • silverstripe/admin (1.8.0 -> 1.9.0-rc1)

    • 2021-05-14 f7f1a1f Bump ini from 1.3.5 to 1.3.8 (dependabot[bot])
    • 2021-05-14 a1c247f Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2021-03-30 0671a5c Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
  • silverstripe/asset-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-05-14 e907bc48 Bump ini from 1.3.5 to 1.3.8 (dependabot[bot])
    • 2021-03-30 701cd745 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 33f7ed89 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2020-10-16 e6bfab23 Bump npm-user-validate from 1.0.0 to 1.0.1 (dependabot[bot])
  • silverstripe/campaign-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-05-14 7fc5304 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2021-05-14 96df857 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
  • silverstripe/versioned-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-05 913781c Bump hosted-git-info from 2.8.5 to 2.8.9 (dependabot[bot])
    • 2021-05-14 b014432 Bump elliptic from 6.5.1 to 6.5.4 (dependabot[bot])
    • 2021-05-07 f9c0c1c Bump url-parse from 1.4.7 to 1.5.1 (dependabot[bot])
    • 2021-05-07 6e411b5 Bump handlebars from 4.7.6 to 4.7.7 (dependabot[bot])
    • 2021-05-06 c168356 Bump ua-parser-js from 0.7.20 to 0.7.28 (dependabot[bot])
    • 2021-03-30 e58a8c0 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2020-12-31 2f728b2 Bump npm from 6.13.7 to 6.14.10 (dependabot[bot])
  • silverstripe/cms (4.8.0 -> 4.9.0-rc1)

    • 2021-08-08 1d2c4a21 Bump ws from 5.2.2 to 5.2.3 (dependabot[bot])
    • 2021-05-14 83e32a1f Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2021-05-12 ac78336f Bump merge from 1.2.1 to 2.1.1 (dependabot[bot])
    • 2021-03-30 26aba134 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
  • silverstripe/versioned (1.8.0 -> 1.9.0-rc1)

    • 2021-05-24 04d339b Require-dev graphql ^3.5 or ^4 (Steve Boyd)
  • silverstripe/session-manager (0.1.1 -> 1.1.0-rc1)

    • 2021-06-10 036ba44 Bump css-what from 5.0.0 to 5.0.1 (dependabot[bot])
    • 2021-06-10 603dc5d Bump ws from 5.2.2 to 5.2.3 (dependabot[bot])
  • silverstripe/login-forms (4.4.1 -> 4.5.0-rc1)

    • 2021-06-06 179ad13 Bump ws from 6.2.1 to 6.2.2 (dependabot[bot])
    • 2021-03-30 0f68703 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
  • silverstripe/recipe-authoring-tools (1.8.0 -> 1.9.0-rc1)

    • 2021-08-29 9f53596 Update dependency versions (Steve Boyd)
    • 2021-05-18 c68cc2a Update dependencies for CMS 4.8 (#11) (Andre Kiste)
  • silverstripe/tagfield (2.6.0 -> 2.7.0-rc1)

    • 2021-08-05 068df7e Bump ini from 1.3.5 to 1.3.8 (dependabot[bot])
    • 2021-08-05 f996bba Bump ws from 5.2.2 to 5.2.3 (dependabot[bot])
    • 2021-08-05 1273c72 Bump https-proxy-agent from 2.2.2 to 2.2.4 (dependabot[bot])
    • 2021-05-10 bb59a75 Bump hosted-git-info from 2.8.8 to 2.8.9 (dependabot[bot])
    • 2021-05-09 7b289cc Bump lodash from 4.17.20 to 4.17.21 (dependabot[bot])
    • 2021-05-08 f685681 Bump url-parse from 1.4.7 to 1.5.1 (dependabot[bot])
    • 2021-05-07 476e657 Bump handlebars from 4.5.3 to 4.7.7 (dependabot[bot])
    • 2021-05-07 281e237 Bump ua-parser-js from 0.7.20 to 0.7.28 (dependabot[bot])
    • 2021-03-30 6406f21 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 b11b434 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2020-10-16 3427bd4 Bump npm-user-validate from 1.0.0 to 1.0.1 (dependabot[bot])
  • silverstripe/recipe-blog (1.8.0 -> 1.9.0-rc1)

    • 2021-08-29 ba5d424 Update dependency versions (Steve Boyd)
    • 2021-05-18 aa6b6ab Update dependencies for CMS 4.8 (#22) (Andre Kiste)
  • silverstripe/blog (3.7.0 -> 3.8.0-rc1)

    • 2021-06-06 3a11155 Bump ws from 6.2.1 to 6.2.2 (dependabot[bot])
    • 2021-05-15 5e90a4a Bump npm from 6.13.0 to 6.14.13 (dependabot[bot])
    • 2021-05-14 fde34fe Bump hosted-git-info from 2.8.5 to 2.8.9 (dependabot[bot])
    • 2021-05-14 8f507d6 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-05-14 a5d1bb9 Bump npm-registry-fetch from 4.0.2 to 4.0.7 (dependabot[bot])
    • 2021-05-14 04e2d42 Bump node-sass from 4.13.0 to 4.14.1 (dependabot[bot])
    • 2021-04-07 d7c4ad9 Bump ini from 1.3.5 to 1.3.8 (dependabot[bot])
    • 2021-04-07 0a98ad2 Bump bin-links from 1.1.3 to 1.1.8 (dependabot[bot])
    • 2021-04-07 b85e65b Bump dot-prop from 4.2.0 to 4.2.1 (dependabot[bot])
    • 2021-04-07 5ecb37f Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
  • silverstripe/comments (3.5.0 -> 3.6.0-rc1)

    • 2021-06-05 3a41303 Bump ws from 6.2.1 to 6.2.2 (dependabot[bot])
    • 2021-05-10 a4eeec4 Bump hosted-git-info from 2.8.8 to 2.8.9 (dependabot[bot])
  • silverstripe/recipe-collaboration (1.8.0 -> 1.9.0-rc1)

    • 2021-08-29 61a51a7 Update dependency versions (Steve Boyd)
  • silverstripe/contentreview (4.2.0 -> 4.3.0-rc1)

    • 2021-08-08 53209b9 Bump tar from 2.2.1 to 2.2.2 (dependabot[bot])
    • 2021-08-05 21aebc4 Bump node-sass from 4.5.3 to 4.14.1 (dependabot[bot])
    • 2021-08-05 aa019ea Bump ini from 1.3.4 to 1.3.8 (dependabot[bot])
    • 2021-05-14 63e500e Bump is-my-json-valid from 2.16.1 to 2.20.5 (dependabot[bot])
    • 2021-05-12 ce9ae1d Bump merge from 1.2.0 to 1.2.1 (dependabot[bot])
    • 2021-05-10 497e8eb Bump hosted-git-info from 2.5.0 to 2.8.9 (dependabot[bot])
    • 2021-05-07 9c4b558 Bump ua-parser-js from 0.7.14 to 0.7.28 (dependabot[bot])
    • 2021-03-30 30cf99e Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 4944a14 Bump elliptic from 6.4.0 to 6.5.4 (dependabot[bot])
  • silverstripe/sharedraftcontent (2.4.0 -> 2.5.0-rc1)

    • 2021-08-08 a9858b5 Bump node-sass from 4.13.0 to 4.14.1 (dependabot[bot])
    • 2021-08-08 3906f66 Bump url-parse from 1.4.7 to 1.5.3 (dependabot[bot])
    • 2021-08-08 a2d44cd Bump ua-parser-js from 0.7.20 to 0.7.28 (dependabot[bot])
    • 2021-08-05 be19319 Bump npm from 6.13.4 to 6.14.14 (dependabot[bot])
    • 2021-06-06 a5ab724 Bump ws from 6.2.1 to 6.2.2 (dependabot[bot])
    • 2021-05-10 ac34e5b Bump hosted-git-info from 2.8.5 to 2.8.9 (dependabot[bot])
    • 2021-05-09 00e7219 Bump lodash from 4.17.15 to 4.17.21 (dependabot[bot])
    • 2021-03-30 6372b33 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 bafecb1 Bump elliptic from 6.5.1 to 6.5.4 (dependabot[bot])
  • symbiote/silverstripe-advancedworkflow (5.4.0 -> 5.5.0-rc1)

    • 2021-08-04 5a86ab1 Bump tar from 2.2.1 to 2.2.2 (dependabot[bot])
    • 2021-05-14 e78b63e Bump ini from 1.3.5 to 1.3.8 (dependabot[bot])
    • 2021-03-30 c90dcad Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 2aa7257 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
  • silverstripe/recipe-form-building (1.8.0 -> 1.9.0-rc1)

    • 2021-09-05 6d5ab6a Update dependency versions (Steve Boyd)
    • 2021-05-18 ac80737 Update dependencies for CMS 4.8 (#11) (Andre Kiste)
  • silverstripe/segment-field (2.3.0 -> 2.4.0-rc1)

    • 2021-06-05 bbadba6 Bump ws from 6.2.1 to 6.2.2 (dependabot[bot])
    • 2021-05-10 b073ad0 Bump hosted-git-info from 2.8.8 to 2.8.9 (dependabot[bot])
    • 2021-05-09 8c9484b Bump lodash from 4.17.20 to 4.17.21 (dependabot[bot])
    • 2021-04-30 b771e34 Bump ssri from 6.0.1 to 6.0.2 (dependabot[bot])
    • 2021-03-30 e834d80 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 f710cbd Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
  • silverstripe/userforms (5.9.0 -> 5.10.0-rc1)

    • 2021-06-05 9c1f935 Bump ws from 6.2.1 to 6.2.2 (dependabot[bot])
    • 2021-05-14 19a185d Bump lodash from 4.17.20 to 4.17.21 (dependabot[bot])
    • 2021-05-14 e866b09 Bump hosted-git-info from 2.8.5 to 2.8.9 (dependabot[bot])
    • 2021-05-14 9fcfe23 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2021-03-30 78a49b9 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-11 f1fb087 Bump npm from 6.13.4 to 6.14.11 (dependabot[bot])
  • silverstripe/recipe-reporting-tools (1.8.0 -> 1.9.0-rc1)

    • 2021-08-29 67a9cfd Update dependency versions (Steve Boyd)
  • silverstripe/recipe-services (1.8.0 -> 1.9.0-rc1)

    • 2021-08-29 c370c86 Update dependency versions (Steve Boyd)
  • silverstripe/recipe-content-blocks (2.8.0 -> 2.9.0-rc1)

    • 2021-08-29 228f0c1 Update dependency versions (Steve Boyd)
    • 2021-08-25 3b9b5ff Update recipe content block to always release Elemental (Maxime Rainville)
    • 2021-05-19 16b88df Update dependencies for CMS 4.8 (#14) (Andre Kiste)
  • dnadesign/silverstripe-elemental (4.6.0 -> 4.7.0)

    • 2021-04-19 bff02b0 Bump ssri from 6.0.1 to 6.0.2 (dependabot[bot])
    • 2020-12-11 058b0ce Bump ini from 1.3.5 to 1.3.7 (dependabot[bot])
  • silverstripe/elemental-fileblock (2.1.2 -> 2.2.0-rc1)

    • 2021-01-26 1958c77 PHP8 Support, remove branch alias (Steve Boyd)
  • silverstripe/elemental-bannerblock (2.2.1 -> 2.3.0-rc1)

    • 2021-03-30 56d3784 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
  • cwp/cwp-recipe-search (2.8.0 -> 2.9.0-rc1)

    • 2021-09-05 653e8d1 Update dependency versions (Steve Boyd)
    • 2021-05-18 5b1b134 Update dependencies for CMS 4.8 (Andre Kiste)
  • silverstripe/totp-authenticator (4.1.1 -> 4.2.0-rc1)

    • 2021-08-05 0b08f28 Bump ws from 5.2.2 to 5.2.3 (dependabot[bot])
    • 2021-05-14 c4f4fe1 Bump lodash from 4.17.20 to 4.17.21 (dependabot[bot])
    • 2021-05-10 58cfa12 Bump hosted-git-info from 2.8.8 to 2.8.9 (dependabot[bot])
    • 2021-05-07 4568894 Bump handlebars from 4.5.1 to 4.7.7 (dependabot[bot])
    • 2021-03-30 8b13f4a Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 09a2e13 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
    • 2020-12-11 5f52065 Bump ini from 1.3.5 to 1.3.7 (dependabot[bot])
    • 2020-11-11 c5fd81f Bump dot-prop from 4.2.0 to 4.2.1 (dependabot[bot])
  • silverstripe/mfa (4.3.0 -> 4.4.0-rc1)

    • 2021-08-05 f31c85a Bump ws from 5.2.2 to 5.2.3 (dependabot[bot])
    • 2021-05-14 5cf337d Bump ini from 1.3.5 to 1.3.8 (dependabot[bot])
    • 2021-05-11 638148f Bump hosted-git-info from 2.8.8 to 2.8.9 (dependabot[bot])
    • 2021-05-11 52ce62f Bump lodash from 4.17.20 to 4.17.21 (dependabot[bot])
    • 2021-05-09 35eb656 Bump handlebars from 4.7.6 to 4.7.7 (dependabot[bot])
    • 2021-05-07 2667e73 Bump ua-parser-js from 0.7.20 to 0.7.28 (dependabot[bot])
    • 2021-04-01 6dadc43 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-10 dfc08a5 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])
  • silverstripe/crontask (2.2.0 -> 2.3.0-rc1)

    • 2021-08-05 2ccad81 php 8 requirement too narrow (Steve Boyd)
  • silverstripe/ckan-registry (1.2.0 -> 1.3.0-rc1)

    • 2021-05-10 66b90b8 Bump hosted-git-info from 2.8.5 to 2.8.9 (dependabot[bot])
    • 2021-05-07 38b6e34 Bump url-parse from 1.4.7 to 1.5.1 (dependabot[bot])
    • 2021-05-07 e75e844 Bump handlebars from 4.5.1 to 4.7.7 (dependabot[bot])
    • 2021-05-06 da3ab3a Bump ua-parser-js from 0.7.20 to 0.7.28 (dependabot[bot])
    • 2021-03-30 973429b Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 adc04ba Bump elliptic from 6.5.1 to 6.5.4 (dependabot[bot])
    • 2020-06-06 8e56dbb Bump websocket-extensions from 0.1.3 to 0.1.4 (dependabot[bot])
  • silverstripe/webauthn-authenticator (4.2.0 -> 4.3.0-rc1)

    • 2021-08-05 6d4eea7 Bump ws from 5.2.2 to 5.2.3 (dependabot[bot])
    • 2021-05-10 4b48b24 Bump hosted-git-info from 2.8.8 to 2.8.9 (dependabot[bot])
    • 2021-05-08 23033b1 Bump lodash from 4.17.20 to 4.17.21 (dependabot[bot])
    • 2021-05-07 32e9eab Bump handlebars from 4.7.6 to 4.7.7 (dependabot[bot])
    • 2021-03-30 5ee0fa1 Bump y18n from 3.2.1 to 3.2.2 (dependabot[bot])
    • 2021-03-09 1414320 Bump elliptic from 6.5.3 to 6.5.4 (dependabot[bot])

Documentation

  • silverstripe/assets (1.8.0 -> 1.9.0-rc1)

    • 2021-03-19 4064bb0 Update PHPDoc for Upload_Validator::setAllowedMaxFileSize to reflect that a string can be provided (Maxime Rainville)
  • silverstripe/framework (4.8.0 -> 4.9.0-rc1)

    • 2021-09-06 00e29758f Add information regarding Security::setCurrentUser() (Steve Boyd)
    • 2021-08-26 b38b27fad Add SwiftMailer to changelog (Steve Boyd)
    • 2021-08-23 a2f850d65 Add email section to server requirements (Steve Boyd)
    • 2021-08-18 c59ef273e incorrect php version reference (brynwhyman)
    • 2021-08-17 2838625a0 Add extra detail to the Image Lazy Loading doc (#10049) (Maxime Rainville)
    • 2021-08-15 e78a93588 Add session-manager to changelog (Steve Boyd)
    • 2021-08-10 0128bbd80 core committer onboarding process (brynwhyman)
    • 2021-08-04 0c998fc5c Add Michal Kleiner as core committer (Aaron Carlino)
    • 2021-07-17 c8c7ee4a0 better docblock for TinyMCEConfig::removeButtons (Nicolaas)
    • 2021-06-30 fdbd89976 Update SilverStripe to Silverstripe CMS (Michael Pritchard)
    • 2021-06-30 29320841c improve graphql inheritance docs (Aaron Carlino)
    • 2021-06-30 0537e769f Fix line break (Aaron Carlino)
    • 2021-06-30 f3e1cd459 new union and interface inheritance pattern (#9912) (Aaron Carlino)
    • 2021-06-24 b5a1024b1 update SilverStripe to Silverstripe (Michael Pritchard)
    • 2021-06-22 53ef257ff update SilverStripe to Silverstripe (Michael Pritchard)
    • 2021-06-08 ecd58cbc6 Remove stray 3.x changelogs (Ingo Schommer)
    • 2021-06-08 f1f946296 Add recipe version (Steve Boyd)
    • 2021-06-08 1fc1e71bb Tweak 4.8.0 changelog GraphQL entry (Maxime Rainville)
    • 2021-06-08 d5d9f4fd4 Changelog for 4.8.0 (Steve Boyd)
    • 2021-06-01 fa3c5e6fe Clearer sysadmin guidance for &quot;packaging&quot; (#9960) (Ingo Schommer)
    • 2021-06-01 6e13600a8 Update pattern library link to point to new repo (Maxime Rainville)
    • 2021-05-20 8c9e203f1 4.9.0 changelog with dot notation changes (Ingo Schommer)
    • 2021-05-20 99c56fc91 Handling nested form data (Ingo Schommer)
  • silverstripe/versioned-admin (1.8.0 -> 1.9.0-rc1)

    • 2020-10-01 936a54f include userhelp link in versioned readme (brynwhyman)
  • silverstripe/session-manager (0.1.1 -> 1.1.0-rc1)

    • 2021-06-27 ad3deb7 Add userhelp for session manager (Andre Kiste)
  • silverstripe/recipe-content-blocks (2.8.0 -> 2.9.0-rc1)

    • 2021-08-25 01fd174 Remove reference to SilverStripe and CWP (Maxime Rainville)

Other changes

  • silverstripe/recipe-kitchen-sink (4.8.0 -> 4.9.0-rc1)

    • 2021-08-25 2361535 Loosen contstrain for release (Maxime Rainville)
    • 2021-08-25 cfeb879 Set up changelog (Maxime Rainville)
  • silverstripe/assets (1.8.0 -> 1.9.0-rc1)

    • 2021-07-16 627be98 PATCH: fix docblock for FIle::find (Nicolaas)
    • 2021-07-08 576fd35 Remove ability to set loading state with &#039;eager&#039;/&#039;lazy&#039; string (Maxime Rainville)
    • 2021-07-06 f0695d2 Update pre-existing test to work with new image syntax (Maxime Rainville)
    • 2021-07-06 bc7a718 Tweak casting settings (Maxime Rainville)
    • 2021-07-06 c0844ea Silly typo fix (Maxime Rainville)
  • silverstripe/config (1.1.0 -> 1.2.0-rc1)

    • 2021-01-21 dbadfe5 Update build status badge (Steve Boyd)
    • 2020-12-06 480475f Use stable for topsort (Steve Boyd)
  • silverstripe/framework (4.8.0 -> 4.9.0-rc1)

    • 2021-08-26 5ee6fa5ef Update translations (Maxime Rainville)
    • 2021-08-22 c8d1b4988 Adding spider food for SEO purposes. (Patrick Nelson)
    • 2021-08-06 6e8a39056 Change SilverStripe to Silverstripe CMS (Michael Pritchard (HEIW))
    • 2021-08-02 cacd76235 Avoid &quot;new&quot; keyword to instantiate CompositeValidator (GuySartorelli)
    • 2021-07-13 3e2ca3027 destroy session on logout instead of restarting it (Florian Thoma)
    • 2021-07-08 03b43227a Update 02_Images.md (Steve Boyd)
    • 2021-07-01 8225b2e89 Update 02_Images.md (Andre Kiste)
    • 2021-06-25 b6d12bc14 Add docs for lazy loading (André Kiste)
    • 2021-06-21 62a74e97c Instructions Memcached change (Remy Vaartjes)
    • 2021-05-31 843671d10 [doc] Add additional information required to run the test (Pen y Fan)
    • 2021-05-31 bba872e02 [doc] Update to Silverstripe 4 convention (Pen y Fan)
    • 2021-05-31 44c30aea2 META: Publish docs on updates to 3 branch, not 3.7 (Aaron Carlino)
    • 2021-05-20 7a0d35452 Linter fixes (Ingo Schommer)
    • 2021-05-20 8806b3bef Fixes required for dot notation support in fields (Ingo Schommer)
    • 2021-05-19 ebdbbfd59 Update 04_Shortcodes.md (chromos33)
    • 2021-05-16 3a49759c0 Update 09_Casting.md (Manuel Thalmann)
    • 2021-05-16 293f7e9d0 Update 06_Themes.md (Manuel Thalmann)
    • 2021-05-16 0d649e0dd Update 05_Template_Inheritance.md (Manuel Thalmann)
    • 2021-05-16 deb767d9f Update 03_Requirements.md (Manuel Thalmann)
    • 2021-05-16 64d569ee0 Update 02_Common_Variables.md (Manuel Thalmann)
    • 2021-05-16 a1ace4229 Update 01_Syntax.md (Manuel Thalmann)
    • 2021-05-16 c3ff7a417 Update index.md (Manuel Thalmann)
    • 2021-05-14 4de89323f Update Grouping_DataObject_Sets.md (Manuel Thalmann)
    • 2021-05-14 e37188da4 Revert unnecessary change (Manuel Thalmann)
    • 2021-05-14 4f57bd94d Apply further suggestion (Manuel Thalmann)
    • 2021-05-14 42f0957bd Update Dynamic_Default_Fields.md (Manuel Thalmann)
    • 2021-05-14 ff7654db1 Update 11_Scaffolding.md (Manuel Thalmann)
    • 2021-05-14 b0cdff361 Apply suggestions (Manuel Thalmann)
    • 2021-05-14 ac7cbef6b Update 10_Versioning.md (Manuel Thalmann)
    • 2021-05-14 ff9fc2846 Update 08_SQL_Select.md (Manuel Thalmann)
    • 2021-05-13 ed50c1b94 Update docs/en/02_Developer_Guides/00_Model/02_Relations.md (Manuel Thalmann)
    • 2021-05-13 8c0efd398 Extension hooks for CsvBulkLoader (Ingo Schommer)
    • 2021-05-11 e7e586b8c Update 01_Validation.md (Daniel Pina)
    • 2021-05-05 b6a31d922 Update 01_ModelAdmin.md (Daniel Pina)
    • 2020-09-21 23ffd2bbd Linting fix (Dan Hensby)
  • silverstripe/mimevalidator (2.1.1 -> 2.2.0-rc1)

    • 2021-08-26 3597100 Update translations (Maxime Rainville)
    • 2021-07-30 0dbebc3 Add PHP-8 support for CSV mime type (Ralph Slooten)
    • 2021-01-21 a998d50 Update build status badge (Steve Boyd)
    • 2020-11-26 a424d03 Revert translation updates (Steve Boyd)
  • silverstripe/admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-26 5610053 Update translations (Maxime Rainville)
    • 2021-07-01 a4a4cbe Update CMSDialog.ss (Thomas Portelange)
    • 2021-05-24 1f9c2fc Remove broken versioneye badgets (Ingo Schommer)
  • silverstripe/asset-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-26 762afeb0 Update translations (Maxime Rainville)
  • silverstripe/campaign-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-05 5733dff Add hook (#205) (Alex Saelens)
  • silverstripe/versioned-admin (1.8.0 -> 1.9.0-rc1)

    • 2021-08-26 b0bb6df Update translations (Maxime Rainville)
  • silverstripe/cms (4.8.0 -> 4.9.0-rc1)

    • 2021-08-26 8cbc6d21 Update translations (Maxime Rainville)
    • 2021-07-16 10e2c1f2 PATCH: docblock for return value fixed for get_by_link (Nicolaas)
    • 2021-05-24 8438bf98 Remove broken versioneye badges (Ingo Schommer)
    • 2021-05-07 ed4ff6ea BUGFIX: Ensure SiteTree is always available in the CMS, along with ancestors (Aaron Carlino)
    • 2021-04-06 85c3b109 UPDATE generate canonical via MetaComponents (Nic Horstmeier)
  • silverstripe/errorpage (1.8.0 -> 1.9.0-rc1)

    • 2021-08-26 8716194 Update translations (Maxime Rainville)
  • silverstripe/siteconfig (4.8.0 -> 4.9.0-rc1)

    • 2021-08-26 7ea7072c Update translations (Maxime Rainville)
    • 2021-07-20 01fc2218 Add an extension point to customise/override returned current site config (Michal Kleiner)
  • silverstripe/versioned (1.8.0 -> 1.9.0-rc1)

    • 2021-09-07 c97131a BUGFIX: Ensure scalar plugin is assigned to Version field (Aaron Carlino)
    • 2021-08-26 ee5b708 Update translations (Maxime Rainville)
    • 2021-06-24 32b7282 Ensure versioning is applied before inheritance (Aaron Carlino)
    • 2021-05-24 c6ca052 Remove broken versioneye badges (Ingo Schommer)
  • silverstripe/graphql (3.5.0 -> 3.6.0-rc1)

    • 2021-08-11 90570dc BUGFIX: Replace graceful failure of field access on dataobjects (#399) (Aaron Carlino)
    • 2021-05-07 f70d296 BUGFIX: Ensure referential equality of two connection types in new GraphQL 4 compatible node/edges implementation (Aaron Carlino)
  • silverstripe/session-manager (0.1.1 -> 1.1.0-rc1)

    • 2021-08-26 f227681 Update translations (Maxime Rainville)
    • 2021-06-28 5e14993 Downscale image (André Kiste)
    • 2021-06-28 cada525 Build docs on 1 instead of master (Andre Kiste)
    • 2021-06-15 268facc Refer to sessions correctly, instead of devices. (#71) (Andre Kiste)
    • 2021-06-08 7852e7a Improve transition when removing login sessions (André Kiste)
  • silverstripe/login-forms (4.4.1 -> 4.5.0-rc1)

    • 2021-08-26 451169f Update translations (Maxime Rainville)
    • 2021-06-17 f0e5dbe Remove the help link (André Kiste)
  • silverstripe/blog (3.7.0 -> 3.8.0-rc1)

    • 2021-08-26 bb574c7 Update translations (Maxime Rainville)
  • silverstripe/contentreview (4.2.0 -> 4.3.0-rc1)

    • 2021-05-14 c89a759 Add test (Daniel Hensby)
  • symbiote/silverstripe-advancedworkflow (5.4.0 -> 5.5.0-rc1)

    • 2021-07-19 9f3a5f8 $this-&amp;gt;extend() doesn&#039;t exist, add extensible (azt3k)
  • silverstripe/userforms (5.9.0 -> 5.10.0-rc1)

    • 2021-08-26 62b726e Update translations (Maxime Rainville)
    • 2021-07-19 63a1d1d BUGFIX: Fixed issue causing the regex on windows to throw an error due to escaping of the parenthesis caused by DIRECTORY_SEPARATOR (UndefinedOffset)
    • 2021-06-22 80c3d2e Update de_DE.yml (chromos33)
    • 2021-04-12 b01d296 Avoids reply to address being set to empty, if reply to field value is empty (James Cocker)
    • 2021-04-06 34883ad Add testing (Bauke Zwaan)
    • 2021-03-12 fad372d Only add attachments when HideFormData-setting is not set for this recipient (Bauke Zwaan)
  • silverstripe/versionfeed (2.0.3 -> 2.1.0-rc1)

    • 2021-08-26 b4ce6ca Update translations (Maxime Rainville)
    • 2021-01-21 42ea538 Update build status badge (Steve Boyd)
    • 2019-12-19 8de3ec1 META: Add github action to build docs (Aaron Carlino)
    • 2018-06-15 9065f82 Add supported module badge to readme (Dylan Wagstaff)
  • dnadesign/silverstripe-elemental (4.6.0 -> 4.7.0)

    • 2021-08-05 cfddd7d Patch 2 (#919) (Nicolaas)
    • 2021-07-04 e8dce69 BUGFIX: Ensure graphql3 compat in type name generation (#912) (Aaron Carlino)
    • 2021-06-17 2ca448b Add config to disable the content search in ElementSiteTreeFilterSearch (Alexandre)
    • 2021-05-19 9035ae4 ADD test for ignored_classes being respected when migrating content. (Guy Sartorelli)
  • silverstripe/elemental-fileblock (2.1.2 -> 2.2.0-rc1)

    • 2021-01-21 239da3b Update build status badge (Steve Boyd)
  • silverstripe/elemental-bannerblock (2.2.1 -> 2.3.0-rc1)

    • 2021-08-26 6e41234 Update translations (Maxime Rainville)
    • 2021-01-21 ffce72b Update build status badge (Steve Boyd)
    • 2021-01-19 42d170b Require minimum recipe of 4.7.x-dev (Steve Boyd)
  • symbiote/silverstripe-queuedjobs (4.7.0 -> 4.8.0)

    • 2021-05-28 c7377a4 Update performance.md (Sam Haftka)
  • silverstripe/totp-authenticator (4.1.1 -> 4.2.0-rc1)

    • 2021-08-26 2250b46 Update translations (Maxime Rainville)
    • 2021-01-21 282eaaa Update build status badge (Steve Boyd)
  • silverstripe/crontask (2.2.0 -> 2.3.0-rc1)

    • 2021-08-05 5c123a9 Update php constraint to ^7.1 || ^8 (Mason Dechaineux)
  • silverstripe/gridfieldqueuedexport (2.4.0 -> 2.5.0-rc1)

    • 2021-06-08 9f5396e Apply filters when exporting (ishan jayamanne)
  • silverstripe/realme (4.1.0 -> 4.1.1)

    • 2021-04-26 c0e1674 Update configuration.md (torleif)
  • silverstripe/hybridsessions (2.2.1 -> 2.3.0-rc1)

    • 2021-01-21 8ab99f7 Update build status badge (Steve Boyd)
    • 2019-11-18 f6a8f2a Update code style in CookieStore (Serge Latyntcev)
  • symbiote/silverstripe-multivaluefield (5.0.2 -> 5.1.0)

    • 2020-10-02 7786f26 Add tests for KeyValueField placeholders (Dan Hensby)
    • 2020-06-22 7408a28 Update MultiValueField.php (Alessandro Marotta)
    • 2020-06-22 8914963 Implementing &quot;ItemsByKey&quot; method (Alessandro Marotta)
    • 2020-06-10 240bbcc PHP 7.4 (Nathan)
    • 2019-07-25 02b8537 Allow a placeholder on the key/value input fields (Elliot Sawyer)