Skip to content

Commit 0c074e5

Browse files
committed
Copy generic CI/CD files
1 parent 9262087 commit 0c074e5

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/integration-tests/etc/mysql-client-config.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<?php
1+
<?php // phpcs:ignoreFile
2+
23
return [
34
'client-mariadb' => [
45
'disable-ssl',

.github/workflows/static-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313

1414
- name: Run Magento 2 PHPCS Tests
1515
run: |
16-
export PHPCS_LEVEL=$(jq -r '.phpcs_severity // 10' MODULE.json)
16+
PHPCS_LEVEL=${{ env.PHPCS_LEVEL }}
17+
test -z "$PHPCS_LEVEL" && PHPCS_LEVEL=$(jq -r '.phpcs_severity // 10' MODULE.json)
1718
test -z "$PHPCS_LEVEL" && PHPCS_LEVEL=10
1819
echo "Testing for PHPCS severity $PHPCS_LEVEL"
1920
cd /tmp/magento

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.4] - 12 January 2026
10+
### Fixed
11+
- Add new GitHub Action workflows
12+
- Copy generic CI/CD files
13+
- Implement required fields in a simple way
14+
- Implement filtering for array grids
15+
- Allow using searchable_fields to *restrict* which fields are searched by the ArrayHandler
16+
917
## [0.4.3] - 30 December 2025
1018
### Fixed
1119
- Default unknown field types to `input`

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "loki/magento2-admin-components",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "N/A",
55
"type": "magento2-module",
66
"keywords": [

0 commit comments

Comments
 (0)