Skip to content

Commit 26bd00a

Browse files
committed
Release v12.0.0
1 parent 2e6e3a8 commit 26bd00a

8 files changed

Lines changed: 32 additions & 26 deletions

File tree

.github/oxid-esales/graphql-base.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ install:
1111
transform: |
1212
{
1313
"require": {
14-
"oxid-esales/oxideshop-ce": "{{ .Data.install.composer.dev_ref }}",
15-
"oxid-esales/twig-component": "{{ .Data.install.composer.dev_ref }}",
16-
"oxid-esales/twig-admin-theme": "{{ .Data.install.composer.dev_ref }}",
17-
"oxid-esales/apex-theme": "{{ .Data.install.composer.dev_ref }}",
18-
"oxid-esales/developer-tools": "{{ .Data.install.composer.dev_ref }}"
14+
"oxid-esales/oxideshop-ce": "v7.4.0",
15+
"oxid-esales/twig-component": "v2.7.0",
16+
"oxid-esales/twig-admin-theme": "v3.0.0",
17+
"oxid-esales/apex-theme": "v3.0.0",
18+
"oxid-esales/developer-tools": "v2.5.0"
1919
}
2020
}
2121
custom_script_container: |

.github/workflows/schema_trigger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
github_user: ${{ secrets.CI_USER }}
1717
github_token: ${{ secrets.GH_CI_JENKINS_TOKEN }}
1818
workflow_file_name: schema.yaml
19-
ref: "11.0-en"
19+
ref: "12.0-en"

CHANGELOG-v11.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [11.1.0] - 2025-10-27
8-
9-
### Changed
10-
- Update module to work with OXID eShop 7.4
11-
12-
### Added
13-
- A `matches` method was added to `FilterInterface` (and it's implementations) to allow checking if a filter matches a given value.
14-
157
## [11.0.0] - 2025-06-11
168
This is stable release for v11.0.0. No changes have been made since v11.0.0-rc.1.
179

@@ -28,6 +20,5 @@ This is stable release for v11.0.0. No changes have been made since v11.0.0-rc.1
2820
- Updated `MissingSignatureKey` exception to use a constructor instead of a static factory method
2921
- Upgrade GraphQLite to 7.0
3022

31-
[11.1.0]: https://github.com/OXID-eSales/graphql-base-module/compare/v11.0.0...v11.1.0
3223
[11.0.0]: https://github.com/OXID-eSales/graphql-base-module/compare/v11.0.0-rc.1...v11.0.0
3324
[11.0.0-rc.1]: https://github.com/OXID-eSales/graphql-base-module/compare/v10.0.0...v11.0.0-rc.1

CHANGELOG-v12.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [12.0.0] - 2025-10-28
8+
9+
### Changed
10+
- Update module to work with OXID eShop 7.4
11+
12+
### Added
13+
- A `matches` method was added to `FilterInterface` (and it's implementations) to allow checking if a filter matches a given value.
14+
15+
[12.0.0]: https://github.com/OXID-eSales/graphql-base-module/compare/v11.0.0...v12.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This assumes you have OXID eShop (at least `OXID-eSales/oxideshop_ce: v7.4.0` co
2424

2525
## Branch Compatibility
2626

27-
* 11.1.x versions (or b-7.4.x branch) are compatible with latest shop compilation 7.4.x resp. b-7.4.x shop compilation branches
27+
* 12.0.x versions (or b-7.4.x branch) are compatible with latest shop compilation 7.4.x resp. b-7.4.x shop compilation branches
2828
* 11.0.x versions (or b-7.3.x branch) are compatible with latest shop compilation 7.3.x resp. b-7.3.x shop compilation branches
2929
* 10.0.x versions (or b-7.2.x branch) are compatible with latest shop compilation 7.2.x resp. b-7.2.x shop compilation branches
3030
* 9.x versions (or b-7.1.x branch) are compatible with latest shop compilation 7.1.x resp. b-7.1.x shop compilation branches
@@ -37,7 +37,7 @@ This assumes you have OXID eShop (at least `OXID-eSales/oxideshop_ce: v7.4.0` co
3737

3838
```bash
3939
# Install desired version of oxid-esales/graphql-base module, in this case - latest released 11.x version, While updating the version you should add additional flag --with-all-dependencies with below command.
40-
$ composer require oxid-esales/graphql-base ^11.1.0 --with-all-dependencies
40+
$ composer require oxid-esales/graphql-base ^12.0.0 --with-all-dependencies
4141
```
4242

4343
You should run migrations both after installing the module and after each module update:

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require-dev": {
1919
"phpunit/phpunit": "^11.4",
2020
"ext-xdebug": "*",
21-
"oxid-esales/oxideshop-ce": "dev-b-7.4.x",
21+
"oxid-esales/oxideshop-ce": "v7.4.0",
2222
"phpstan/phpstan": "^1.10",
2323
"squizlabs/php_codesniffer": "3.*",
2424
"phpmd/phpmd": "^2.11",
@@ -28,12 +28,12 @@
2828
"codeception/module-db": "*",
2929
"codeception/codeception": "^5.0",
3030
"codeception/module-asserts": "^3.0",
31-
"oxid-esales/codeception-modules": "dev-b-7.4.x",
32-
"oxid-esales/codeception-page-objects": "dev-b-7.4.x",
33-
"oxid-esales/developer-tools": "dev-b-7.4.x",
34-
"oxid-esales/oxideshop-db-views-generator": "dev-b-7.4.x",
35-
"oxid-esales/oxideshop-doctrine-migration-wrapper": "dev-b-7.4.x",
36-
"oxid-esales/oxideshop-unified-namespace-generator": "dev-b-7.4.x"
31+
"oxid-esales/codeception-modules": "v4.3.0",
32+
"oxid-esales/codeception-page-objects": "v5.0.0",
33+
"oxid-esales/developer-tools": "v2.5.0",
34+
"oxid-esales/oxideshop-db-views-generator": "v2.2.0",
35+
"oxid-esales/oxideshop-doctrine-migration-wrapper": "v5.4.0",
36+
"oxid-esales/oxideshop-unified-namespace-generator": "v5.2.0"
3737
},
3838
"conflict": {
3939
"oxid-esales/oxideshop-ce": "<7.4"

metadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'en' => '<span>OXID GraphQL API Framework</span>',
2727
],
2828
'thumbnail' => 'logo.png',
29-
'version' => '11.1.0',
29+
'version' => '12.0.0',
3030
'author' => 'OXID eSales',
3131
'url' => 'www.oxid-esales.com',
3232
'email' => 'info@oxid-esales.com',

recipes/setup-development.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $SCRIPT_PATH/parts/shared/require.sh -n"oxid-esales/developer-tools" -v"dev-b-7.
4343
$SCRIPT_PATH/parts/shared/require.sh -n"oxid-esales/oxideshop-doctrine-migration-wrapper" -v"dev-b-7.4.x"
4444
$SCRIPT_PATH/parts/shared/require_theme.sh -t"apex" -b"b-7.4.x"
4545

46-
git clone -b 11.0-en https://github.com/OXID-eSales/oxapi-documentation source/documentation/oxapi-documentation
46+
git clone -b 12.0-en https://github.com/OXID-eSales/oxapi-documentation source/documentation/oxapi-documentation
4747
make docpath=./source/documentation/oxapi-documentation addsphinxservice
4848

4949
make up

0 commit comments

Comments
 (0)