Skip to content

Commit 3b9051b

Browse files
authored
Merge pull request #2 from vaimo/release/1.1.3
Release/1.1.3
2 parents 06e1fb5 + 2498b2a commit 3b9051b

File tree

4 files changed

+78
-9
lines changed

4 files changed

+78
-9
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
.DS_Store

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
1.1.3 / 2026-03-19
2+
==================
3+
4+
* KUSTOM-52 Disable Sign in with Klarna (SIWK) - [DEPRECATED] - admin-settings:1.1.3
5+
* KUSTOM-54 Fixed a type error that could cause checkout to fail when address prefill was used. - kco:12.0.21
6+
* KUSTOM-55 Fixed an issue where no error message was shown when a Klarna API exception occurred - base:11.0.17
7+
* KUSTOM-56 Fixed sanitization of merchant checkbox labels to preserve spaces and special characters - admin-settings:1.1.3
8+
* KUSTOM-57 Cleanup leftover debugging code - backend:11.0.18
9+
* KUSTOM-63 Fixed compatibility with PKSA-y2cr-5h3j-g3ys Security Advisory - siwk:1.0.15
10+
* KUSTOM-68 Fixed guzzlehttp/guzzle compatibility for Magento versions earlier than 2.4.5 - base:11.0.17, klarna-api:1.0.8
11+
12+
1.1.2 / 2026-02-24
13+
==================
14+
15+
* KUSTOM-42 Removed obsolete "Client identifier" field from API credentials in admin configuration panel
16+
* KUSTOM-49 Fixed critical error around logging address data into file when updating logged in user address
17+
* KUSTOM-51 Changed the direct linking to Kustom's merchant portal on the admin panel

README.md

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,52 @@
1-
# kustom-m2-checkout
2-
# kustom-m2-checkout
1+
# Kustom M2 Checkout
2+
3+
## Overview
4+
5+
`kustom-m2-checkout` is a metapackage for Magento 2 that orchestrates a comprehensive checkout solution for e-commerce platforms. It aggregates multiple specialized modules designed to enhance and streamline the checkout experience, payments processing, and order management within Magento 2.
6+
7+
## Purpose
8+
9+
This metapackage serves as a unified checkout ecosystem for Magento 2, combining the following key functionalities:
10+
11+
- **Payment Processing**: Comprehensive payment methods support including Klarna and Klarna Checkout (KCO)
12+
- **Order Management**: Advanced order line management and order status management
13+
- **GraphQL Support**: GraphQL API endpoints for modern headless commerce implementations
14+
- **Logging & Debugging**: Centralized logging for monitoring and troubleshooting
15+
- **Admin Settings**: Customizable admin configuration panel for checkout features
16+
- **API Integrations**: Plugin API support and Klarna API integrations
17+
- **Sign-In Workflows**: Kustom Sign In With Klarna (SIWK) functionality
18+
- **Knowledge Base System**: Kustom Service Support (KSS) module
19+
- **Core Infrastructure**: Base modules for module support and interoperability
20+
21+
## Included Modules
22+
23+
The metapackage includes the following dependencies:
24+
25+
- `vaimo/kustom-module-support` - Core support functionality
26+
- `vaimo/kustom-module-siwk` - Sign In With Klarna
27+
- `vaimo/kustom-module-plugins-api` - Plugins API framework
28+
- `vaimo/kustom-module-orderlines` - Order line management
29+
- `vaimo/kustom-module-osm` - Order status management
30+
- `vaimo/kustom-module-kss` - Kustom Service Support
31+
- `vaimo/kustom-module-payments-graph-ql` - GraphQL payment APIs
32+
- `vaimo/kustom-module-payments` - Payment processing
33+
- `vaimo/kustom-module-klarna-api` - Klarna API integration
34+
- `vaimo/kustom-module-kco` - Klarna Checkout integration
35+
- `vaimo/kustom-module-base` - Base module utilities
36+
- `vaimo/kustom-module-backend` - Backend services
37+
- `vaimo/kustom-module-admin-settings` - Admin configuration
38+
- `vaimo/kustom-module-logger` - Logging utilities
39+
40+
## Installation
41+
42+
This is a metapackage and should be installed via Composer as part of your Magento 2 project:
43+
44+
```bash
45+
composer require vaimo/kustom-m2-checkout
46+
```
47+
48+
## Requirements
49+
50+
- Magento 2.x
51+
- Composer
52+
- Access to Magento Composer repository and Vaimo GitHub repositories

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"name": "vaimo/kustom-m2-checkout",
33
"type": "metapackage",
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"require": {
66
"vaimo/kustom-module-support": "3.0.15",
7-
"vaimo/kustom-module-siwk": "1.0.14",
7+
"vaimo/kustom-module-siwk": "1.0.15",
88
"vaimo/kustom-module-plugins-api": "1.0.6",
99
"vaimo/kustom-module-orderlines": "3.0.17",
1010
"vaimo/kustom-module-osm": "4.0.17",
1111
"vaimo/kustom-module-kss": "3.0.17",
1212
"vaimo/kustom-module-payments-graph-ql": "3.0.19",
1313
"vaimo/kustom-module-payments": "10.0.19",
14-
"vaimo/kustom-module-klarna-api": "1.0.7",
15-
"vaimo/kustom-module-kco": "12.0.20",
16-
"vaimo/kustom-module-base": "11.0.16",
17-
"vaimo/kustom-module-backend": "11.0.17",
18-
"vaimo/kustom-module-admin-settings": "1.1.2",
14+
"vaimo/kustom-module-klarna-api": "1.0.8",
15+
"vaimo/kustom-module-kco": "12.0.21",
16+
"vaimo/kustom-module-base": "11.0.17",
17+
"vaimo/kustom-module-backend": "11.0.18",
18+
"vaimo/kustom-module-admin-settings": "1.1.3",
1919
"vaimo/kustom-module-logger": "3.0.9"
2020
},
2121
"repositories": [

0 commit comments

Comments
 (0)