File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes for Craft CMS 3.x
2
2
3
+ ## 3.7.55.2 - 2022-09-22
4
+
5
+ ### Security
6
+ - Fixed an XSS vulnerability.
7
+
3
8
## 3.7.55.1 - 2022-09-21
4
9
5
10
### Fixed
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " craftcms/cms" ,
3
3
"description" : " Craft CMS" ,
4
- "version" : " 3.7.55.1 " ,
4
+ "version" : " 3.7.55.2 " ,
5
5
"keywords" : [
6
6
" cms" ,
7
7
" craftcms" ,
Original file line number Diff line number Diff line change @@ -4086,7 +4086,10 @@ public function getMetadata(): array
4086
4086
}
4087
4087
/** @var RevisionBehavior $behavior */
4088
4088
$ behavior = $ revision ->getBehavior ('revision ' );
4089
- return $ behavior ->revisionNotes ?: false ;
4089
+ if ($ behavior ->revisionNotes === null || $ behavior ->revisionNotes === '' ) {
4090
+ return false ;
4091
+ }
4092
+ return Html::encode ($ behavior ->revisionNotes );
4090
4093
},
4091
4094
]);
4092
4095
}
Original file line number Diff line number Diff line change 3
3
return [
4
4
'id ' => 'CraftCMS ' ,
5
5
'name ' => 'Craft CMS ' ,
6
- 'version ' => '3.7.55.1 ' ,
6
+ 'version ' => '3.7.55.2 ' ,
7
7
'schemaVersion ' => '3.7.33 ' ,
8
8
'minVersionRequired ' => '2.6.2788 ' ,
9
9
'basePath ' => dirname (__DIR__ ), // Defines the @app alias
You can’t perform that action at this time.
0 commit comments