Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/control-panel/settings/security-privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ Similar to the previous setting, when turned on, this setting requires IP addres

Checks all file uploads for code injection attempts before finalizing the upload. Superadmins are exempt from image XSS filtering.

### Strip Image Metadata?

This setting will remove all metadata from an image during upload, including GPS data. This requires the Imagick PHP extension.

### Enable Rank Denial to submitted links?

When enabled, all outgoing links are sent to a redirect page. This prevents spammers from [gaining page rank](https://support.google.com/webmasters/answer/96569?hl=en).
Expand Down
36 changes: 36 additions & 0 deletions docs/installation/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,42 @@
-->
# ExpressionEngine v7 Change Log

# Version 7.5.3
(Release: November 6th, 2024)

NOTE: **Important:** This version includes important security updates.

- **Contributors** 🙌
<div class="max-w-7xl mx-autotext-center">
<div class="space-y-8 sm:space-y-12">
<ul role="list" class="mx-auto grid grid-cols-2 gap-x-4 gap-y-1 sm:grid-cols-4 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-1 xl:grid-cols-5">

<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/563996?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Bryan Nielsen</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=bryannielsen" target="_BLANK">@bryannielsen</a></p></div></div></div></li>
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/11818941?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Matt Johnson</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=matthewjohns0n" target="_BLANK">@matthewjohns0n</a></p></div></div></div></li>
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/422821?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Tom Jaeger</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=TomJaeger" target="_BLANK">@TomJaeger</a></p></div></div></div></li>
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/23382425?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Yulya Lebed</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=Yulyaswan" target="_BLANK">@Yulyaswan</a></p></div></div></div></li>
<li><div class="space-y-4 text-center"><img class="mx-auto h-20 w-20 rounded-full lg:w-24 lg:h-24" src="https://avatars.githubusercontent.com/u/752126?v=4" /><div class="space-y-2"><div class="text-xs font-medium lg:text-sm"><p class="mb-1">Yuri Salimovskiy</p><p class="text-indigo-600"><a href="https://github.com/ExpressionEngine/ExpressionEngine/commits?author=intoeetive" target="_BLANK">@intoeetive</a></p></div></div></div></li>
</ul>
</div>
</div>

**Enhancements** 🚀

- Added image metadata stripping as an option on upload (requires Image Magic PHP extension when enabled)
- Removed unnecessary white line at the bottom of the version area
- Moblog Set the socket to non-blocking before checking the socket response
- Added ability to pass filename through to channel set export in code

**Bug Fixes** 💃🐛
- Resolved [#4569](https://github.com/ExpressionEngine/ExpressionEngine/issues/4569) where older versions of PHP might throw an error during Pro access checks
- Resolved [#4559](https://github.com/ExpressionEngine/ExpressionEngine/issues/4559) where template export could raise a PHP warning
- Resolved [#4543](https://github.com/ExpressionEngine/ExpressionEngine/issues/4543) where a PHP notice could be shown during relationship sorting
- Resolved [#4511](https://github.com/ExpressionEngine/ExpressionEngine/issues/4511) where PHP warning was shown in the cache file was already cleared
- Resolved [#4504](https://github.com/ExpressionEngine/ExpressionEngine/issues/4504) where POSTed Channel Form values were sometimes not populated correctly in case of validation error
- Resolved [#4489](https://github.com/ExpressionEngine/ExpressionEngine/issues/4489) where Upload Location filter in the File Picker did not work correctly after going into a subdirectory
- Fixed [icon position](https://github.com/ExpressionEngine/ExpressionEngine/pull/4541) for required field in grid field body
- Fixed frontedit js error (contentWindow is undefined)

# Version 7.5.2
(Release: October 29, 2024)

Expand Down