From 01b9dcc25ce1da27977eabf07fb04e97b7d4db1d Mon Sep 17 00:00:00 2001 From: Francesco Ciannavei <64163256+Franky5831@users.noreply.github.com> Date: Mon, 28 Apr 2025 12:35:49 +0200 Subject: [PATCH 1/5] fix: added "application/octet-stream" to the "stl" mime type in the Mimes config class --- app/Config/Mimes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Config/Mimes.php b/app/Config/Mimes.php index b5da1a0cb62e..800d73c3061c 100644 --- a/app/Config/Mimes.php +++ b/app/Config/Mimes.php @@ -478,6 +478,7 @@ class Mimes 'application/sla', 'application/vnd.ms-pki.stl', 'application/x-navistyle', + 'application/octet-stream', ], ]; From c5f7f5ad3923d497a43558538bdcad29c1ffe6d3 Mon Sep 17 00:00:00 2001 From: Francesco Ciannavei <64163256+Franky5831@users.noreply.github.com> Date: Tue, 29 Apr 2025 14:19:28 +0200 Subject: [PATCH 2/5] Update v4.6.1.rst --- user_guide_src/source/changelogs/v4.6.1.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/user_guide_src/source/changelogs/v4.6.1.rst b/user_guide_src/source/changelogs/v4.6.1.rst index 8a327aea5f9e..35cc95b4354a 100644 --- a/user_guide_src/source/changelogs/v4.6.1.rst +++ b/user_guide_src/source/changelogs/v4.6.1.rst @@ -21,6 +21,7 @@ Message Changes ******* Changes ******* +- Added the ``application/octet-stream`` type for the ``stl`` mime inside the ``Config\Mimes`` class. ************ Deprecations From 78484ba0ac85449871720e5c69fe944f6ff72282 Mon Sep 17 00:00:00 2001 From: Francesco Ciannavei <64163256+Franky5831@users.noreply.github.com> Date: Tue, 29 Apr 2025 15:29:35 +0200 Subject: [PATCH 3/5] Update user_guide_src/source/changelogs/v4.6.1.rst Co-authored-by: Michal Sniatala --- user_guide_src/source/changelogs/v4.6.1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/changelogs/v4.6.1.rst b/user_guide_src/source/changelogs/v4.6.1.rst index 35cc95b4354a..a18a5c951ef3 100644 --- a/user_guide_src/source/changelogs/v4.6.1.rst +++ b/user_guide_src/source/changelogs/v4.6.1.rst @@ -21,7 +21,7 @@ Message Changes ******* Changes ******* -- Added the ``application/octet-stream`` type for the ``stl`` mime inside the ``Config\Mimes`` class. +- **Mimes**: Added the ``application/octet-stream`` mime type for the ``stl`` extension inside the ``Config\Mimes`` class. ************ Deprecations From 39323a9445be45d453db14ea9eef6e7982655f0c Mon Sep 17 00:00:00 2001 From: Francesco Ciannavei <64163256+Franky5831@users.noreply.github.com> Date: Wed, 30 Apr 2025 19:17:32 +0200 Subject: [PATCH 4/5] Update user_guide_src/source/changelogs/v4.6.1.rst Co-authored-by: Michal Sniatala --- user_guide_src/source/changelogs/v4.6.1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/changelogs/v4.6.1.rst b/user_guide_src/source/changelogs/v4.6.1.rst index a18a5c951ef3..6de76dd0e5c9 100644 --- a/user_guide_src/source/changelogs/v4.6.1.rst +++ b/user_guide_src/source/changelogs/v4.6.1.rst @@ -21,7 +21,7 @@ Message Changes ******* Changes ******* -- **Mimes**: Added the ``application/octet-stream`` mime type for the ``stl`` extension inside the ``Config\Mimes`` class. +- **Mimes**: Added the ``model/stl`` and ``application/octet-stream`` mime types for the ``stl`` extension inside the ``Config\Mimes`` class. ************ Deprecations From 59ed847a12f26d852b132faec98ce2747673adb1 Mon Sep 17 00:00:00 2001 From: Francesco Ciannavei <64163256+Franky5831@users.noreply.github.com> Date: Wed, 30 Apr 2025 19:18:43 +0200 Subject: [PATCH 5/5] Update app/Config/Mimes.php Co-authored-by: Michal Sniatala --- app/Config/Mimes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Config/Mimes.php b/app/Config/Mimes.php index 800d73c3061c..c2db7340cd7e 100644 --- a/app/Config/Mimes.php +++ b/app/Config/Mimes.php @@ -478,6 +478,7 @@ class Mimes 'application/sla', 'application/vnd.ms-pki.stl', 'application/x-navistyle', + 'model/stl', 'application/octet-stream', ], ];