From 95a142a9deae8fbb931fb164a0ef7174f8827fb3 Mon Sep 17 00:00:00 2001 From: Ed Wilde Date: Thu, 11 Feb 2021 11:25:24 +1300 Subject: [PATCH 1/3] DOC complete first sentence describing middleware To me, the existing sentence did not look complete. --- docs/en/02_Developer_Guides/02_Controllers/05_Middlewares.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/02_Controllers/05_Middlewares.md b/docs/en/02_Developer_Guides/02_Controllers/05_Middlewares.md index 632597cbb..95eefb454 100644 --- a/docs/en/02_Developer_Guides/02_Controllers/05_Middlewares.md +++ b/docs/en/02_Developer_Guides/02_Controllers/05_Middlewares.md @@ -5,7 +5,7 @@ summary: Create objects for modifying request and response objects across contro # HTTP Middlewares -HTTP Middlewares allow you to put code that will run before or after. These might be used for +HTTP Middlewares allow you to add code that will run before or after a request has been delegated to the router. These might be used for authentication, logging, caching, request processing, and many other purposes. Note this interface replaces the SilverStripe 3 interface [RequestFilter](api:SilverStripe\Control\RequestFilter), which still works but is deprecated. From cf50aa71b57a8d2643416971b581f453a5a27614 Mon Sep 17 00:00:00 2001 From: Ed Wilde Date: Thu, 11 Feb 2021 12:18:36 +1300 Subject: [PATCH 2/3] DOC: fix missing closing backtick for code display, add required alt attribute Otherwise the code is output as html, and displays as a missing image. The alt attribute is required for image tags, whereas self closing is no longer required for html5. --- docs/en/02_Developer_Guides/01_Templates/02_Common_Variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/01_Templates/02_Common_Variables.md b/docs/en/02_Developer_Guides/01_Templates/02_Common_Variables.md index 4de467e8e..fb12cdef2 100644 --- a/docs/en/02_Developer_Guides/01_Templates/02_Common_Variables.md +++ b/docs/en/02_Developer_Guides/01_Templates/02_Common_Variables.md @@ -41,7 +41,7 @@ functionality may not be included. ``` The `<% base_tag %>` placeholder is replaced with the HTML base element. Relative links within a document (such as `) will become relative to the URI specified in the base tag. This ensures the browser knows where +src="someimage.jpg" alt="">`) will become relative to the URI specified in the base tag. This ensures the browser knows where to locate your site’s images and css files. It renders in the template as `` From 651e5e205aa2fa09f2f05cb68ddf479e5d4c530c Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Fri, 12 Feb 2021 15:28:19 +1300 Subject: [PATCH 3/3] MNT Added 4.7.2 changelog --- docs/en/04_Changelogs/4.7.2.md | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 docs/en/04_Changelogs/4.7.2.md diff --git a/docs/en/04_Changelogs/4.7.2.md b/docs/en/04_Changelogs/4.7.2.md new file mode 100644 index 000000000..890c44011 --- /dev/null +++ b/docs/en/04_Changelogs/4.7.2.md @@ -0,0 +1,51 @@ +# 4.7.2 + +## Overview + +A full list of module versions included in CMS Recipe 4.7.2 is provided below. We recommend referencing recipes in your dependencies, rather than individual modules, to simplify version tracking. See [Recipes](/getting_started/). + +
+Included module versions + +| Module | Version | +| ------ | ------- | +| silverstripe/admin | **1.7.2** | +| silverstripe/asset-admin | 1.7.1 | +| silverstripe/assets | 1.7.0 | +| silverstripe/campaign-admin | 1.7.1 | +| silverstripe/cms | 4.7.1 | +| silverstripe/config | 1.1.0 | +| silverstripe/errorpage | 1.7.0 | +| silverstripe/framework | 4.7.2 | +| silverstripe/graphql | 3.4.1 | +| silverstripe/mimevalidator | 2.1.1 | +| silverstripe/reports | 4.7.0 | +| silverstripe/siteconfig | 4.7.0 | +| silverstripe/versioned |1.7.1 | +| silverstripe/versioned-admin | **1.7.2** | + +
+ +Upgrading to Recipe 4.7.2 is recommended for all sites. This upgrade can be carried out by any development team familiar with Silverstripe CMS. + + + +## Change Log + + +### Bugfixes + + + * silverstripe/admin (1.7.1 -> 1.7.2) + * 2021-02-11 [5059533](https://github.com/silverstripe/silverstripe-admin/commit/5059533971fa87e32d2caf23770814e40e1d5812) Reinstate tab validation icons (Steve Boyd) + * 2021-02-05 [a2b043a](https://github.com/silverstripe/silverstripe-admin/commit/a2b043a85807b0274bf832affcec3ed509d42421) Tweak Legacy Toast Container to wait for Injector to be ready (Maxime Rainville) + * 2021-02-04 [dc1c7ce](https://github.com/silverstripe/silverstripe-admin/commit/dc1c7cef00c1b6cce0dba861cc041e5c470f52a7) Update getManagedModelTabs so it can still work with the old output format of getManagedModels (#1172) (Maxime Rainville) + * 2021-02-03 [2c9a9ef](https://github.com/silverstripe/silverstripe-admin/commit/2c9a9ef1981a08fdec010a3db06e1c5830a85921) Set min-width of popover (Steve Boyd) + * 2021-02-03 [edf13ad](https://github.com/silverstripe/silverstripe-admin/commit/edf13adbad752c465cb40185f7decbae1fde4ad7) Prevent PopoverOptionSet input from clipping border radius of container (#1176) (Maxime Rainville) + + * silverstripe/versioned-admin (1.7.1 -> 1.7.2) + * 2021-02-09 [05da462](https://github.com/silverstripe/silverstripe-versioned-admin/commit/05da4626890798590a116fe3112c9864dd0c7706) Avoid attempting to diff object-based field values (Garion Herman) + + + +