Skip to content

Releases: VirtoCommerce/vc-platform

3.829.0

23 May 18:50
f87c135
Compare
Choose a tag to compare

🎯 Development

  • Add UnregisterEventHandler() (#2797)

3.825.1

23 May 09:56
Compare
Choose a tag to compare

🐞 Bug fixes

  • Save only changed localization items (#2796)

3.800.14

23 May 10:04
Compare
Choose a tag to compare

🐞 Bug fixes

  • Save only changed localization items (#2796)

3.452.10

23 May 10:17
Compare
Choose a tag to compare

🐞 Bug fixes

  • Save only changed localization items (#2796)

3.828.0

22 May 16:14
7328697
Compare
Choose a tag to compare

🐞 Bug fixes

  • Save only changed localization items (#2796)

3.827.0

16 May 11:41
24615ba
Compare
Choose a tag to compare

🎯 Development

  • make optional dependencies inactive if no module info is found (#2793)

3.826.0

15 May 06:58
20ddb0e
Compare
Choose a tag to compare

🎯 Development

  • (Bump Azure.Core to 1.37.0 and Azure.Messaging.EventGrid to 4.22 to fit MS modules dependencies that use Azure.Core to 1.37.0)

3.825.0

10 May 12:52
046d812
Compare
Choose a tag to compare

🐞 Bug fixes

  • (Bump Microsoft.Identity.Client to 4.61.0, Npgsql to 8.0.3 and Npgsql.EntityFrameworkCore.PostgreSQL to 8.0.2.)

3.824.0

09 May 20:23
7ef4c19
Compare
Choose a tag to compare

🎯 Development

  • New Platform Background Stable 9 - Summer 2024
  • Optional Dependency between VC Modules

New Platform Background - Summer 2024

image

Optional Dependency between VC Modules

Virto Commerce adds the ability to define optional dependencies between VC modules. This feature allows administrators to install modules based on specific demands and requirements.
By implementing optional dependencies, developers can establish relationships between different VC modules, indicating which modules are needed for the proper functioning of others. This setup provides flexibility during installation, enabling administrators to selectively install modules based on their use cases and preferences. Virto Commerce provides a complete development kit for resolving optional dependencies in C# and AngularJS code.

3.823.0

06 May 13:00
572a5c5
Compare
Choose a tag to compare

🎯 Development

  • Adds SecurityHeaders configuration to configure iframe security policy (#2786)

SecurityHeaders Configuration

  • FrameOptions - for X-Frame-Options header configuration. Allowed values: Deny - default, SameOrigin, or custom uri.
  • FrameAncestors - for FrameAncestors configuration in Content-Security-Header header. Allowed values: None - default, Self, or custom uri.

appsettings.json

  "SecurityHeaders": {
    // X-Frame-Options header configuration. Allowed values: Deny - default, SameOrigin, or custom uri.
    "FrameOptions": "Deny",
    // FrameAncestors configuration in Content-Security-Header header. Allowed values: None - default, Self, or custom uri.
    "FrameAncestors": "None"
  },

image