Skip to content

Latest commit

 

History

History
297 lines (247 loc) · 32.4 KB

CHANGELOG-1.5.md

File metadata and controls

297 lines (247 loc) · 32.4 KB

CHANGELOG FOR 1.5.X

v1.5.9 (2020-01-27)

CVE-2020-5218: Ability to switch channels via GET parameter enabled in production environments

Please refer to the original security advisory for the most updated information.

Impact:

This vulnerability gives the ability to switch channels via the _channel_code GET parameter in production environments. This was meant to be enabled only when %kernel.debug% is set to true.

However, if no sylius_channel.debug is set explicitly in the configuration, the default value which is %kernel.debug% will be not resolved and cast to boolean, enabling this debug feature even if that parameter is set to false.

Patches:

Patch has been provided for Sylius 1.3.x and newer - 1.3.16, 1.4.12, 1.5.9, 1.6.5. Versions older than 1.3 are not covered by our security support anymore.

Workarounds:

Unsupported versions could be patched by adding the following configuration to run in production:

sylius_channel:
    debug: false

Details

v1.5.7, v1.5.8 (2019-12-03, 2019-12-05)

CVE-2019-16768: Internal exception message exposure in login action.

Details:

Exception messages from internal exceptions (like database exception) are wrapped by \Symfony\Component\Security\Core\Exception\AuthenticationServiceException and propagated through the system to UI. Therefore, some internal system information may leak and be visible to the customer.

A validation message with the exception details will be presented to the user when one will try to log into the shop.

Solution:

This release patches the reported vulnerability. The src/Sylius/Bundle/UiBundle/Resources/views/Security/_login.html.twig file from Sylius should be overridden and {{ messages.error(last_error.message) }} changed to {{ messages.error(last_error.messageKey) }}.

Details

v1.5.6 (2019-11-11)

Details

v1.5.5 (2019-10-08)

Details

v1.5.4 (2019-08-27)

Details

v1.5.3 (2019-07-25)

Details

v1.5.2 (2019-06-20)

Details

v1.5.1 (2019-05-29)

Details

v1.5.0 (2019-05-15)

TL;DR

  • Extracted packages from the core (#10325, #10326, #10327)
  • Added order index API endpoint (#10161)
  • Added ability to customise whether coupons should be reusable after canceling an order using them (#10310)
  • Added shipments list view in the admin panel (#10249)
  • Added ability to define locale used by Sylius during the installation (#10240)

Details

v1.5.0-RC.1 (2019-05-07)

TL;DR

Will be provided for the stable release.

Details