Skip to content

Commit e5d3c52

Browse files
authored
Release 4.6.8
2 parents adb574f + 22f21b9 commit e5d3c52

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [v4.6.8](https://github.com/userfrosting/UserFrosting/compare/v4.6.7...v4.6.8)
9+
### Fix
10+
- Fix missing render context arg ([#1226](https://github.com/userfrosting/UserFrosting/pull/1226)) - Thanks [@phillmac](https://github.com/phillmac) !
11+
- Fix [#1227](https://github.com/userfrosting/UserFrosting/issues/1227) - HTML in page_description block bleed in the template
12+
813
## [v4.6.7](https://github.com/userfrosting/UserFrosting/compare/v4.6.5...v4.6.7)
914

1015
### Fix

app/sprinkles/account/src/Error/Handler/AuthCompromisedExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ public function renderGenericResponse()
3333
return $this->response
3434
->withStatus($this->statusCode)
3535
->withHeader('Content-type', $this->contentType)
36-
->write($template->render());
36+
->write($template->render([]));
3737
}
3838
}

app/sprinkles/core/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
}
2828
],
2929
"require": {
30-
"composer/semver": "^3.2.4",
30+
"carbonphp/carbon-doctrine-types": "^1.0.0",
31+
"composer/semver": "^3.2.4",
3132
"doctrine/dbal": "^2.5",
3233
"filp/whoops": "^2.14.0",
3334
"psr/log": "^1.0.1",

app/sprinkles/core/templates/pages/abstract/base.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta charset="utf-8">
1010
<meta name="generator" content="UserFrosting" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
12-
<meta name="description" content="{% block page_description %}This page has not yet been configured.{% endblock %}">
12+
<meta name="description" content="{{ block('page_description')|e }}">
1313
<meta name="author" content="{% block page_author %}{{ site.author }}{% endblock %}">
1414

1515
<title>{{ site.title }} | {% block page_title %}New Page{% endblock %}</title>

0 commit comments

Comments
 (0)