Skip to content

Commit 2b4db77

Browse files
authored
Pimcore 6.9 Compatibility | 3.3 Release (#155)
* follow up for #154: backport to b3 layout * adjust test branch, adjust upgrade docs * update readme
1 parent 09a9536 commit 2b4db77

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

.github/workflows/codeception.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Codeception
22
on:
33
push:
4-
branches: [ 'master' ]
4+
branches: [ '3.x' ]
55
pull_request:
6-
branches: [ 'master' ]
6+
branches: [ '3.x' ]
77

88
jobs:
99
codeception:
@@ -43,7 +43,7 @@ jobs:
4343
matrix:
4444
php: [7.4]
4545
symfony: [^4.4]
46-
pimcore: [~6.6.0, ~6.7.0, ~6.8.0]
46+
pimcore: [~6.6.0, ~6.7.0, ~6.8.0, ~6.9.0]
4747
include:
4848
- pimcore: ~6.6.0
4949
template_tag: v2.6.0
@@ -55,6 +55,8 @@ jobs:
5555
symfony: ^3.4
5656
php: 7.4
5757
template_tag: v2.8.0
58+
- pimcore: ~6.9.0
59+
template_tag: v2.8.19
5860
steps:
5961
- uses: actions/checkout@v2
6062

.github/workflows/ecs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Easy Coding Standards
22
on:
33
push:
4-
branches: [ 'master' ]
4+
branches: [ '3.x' ]
55
pull_request:
6-
branches: [ 'master' ]
6+
branches: [ '3.x' ]
77

88
jobs:
99
ecs:

.github/workflows/php-stan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: PHP Stan
22
on:
33
push:
4-
branches: [ 'master' ]
4+
branches: [ '3.x' ]
55
pull_request:
6-
branches: [ 'master' ]
6+
branches: [ '3.x' ]
77

88
jobs:
99
stan:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ The Toolbox is a Kickstarter for your every day project. It provides some import
1414

1515
| Release | Supported Pimcore Versions | Supported Symfony Versions | Release Date | Maintained | Branch |
1616
|---------|-----------------------------------|----------------------------|--------------|----------------|------------|
17-
| **3.x** | `6.0` - `6.8` | `3.4`, `^4.4` | 16.07.2019 | Feature Branch | master |
17+
| **3.x** | `6.0` - `6.9` | `3.4`, `^4.4` | 16.07.2019 | Feature Branch | 3.x |
1818
| **2.8** | `5.4`, `5.5`, `5.6`, `5.7`, `5.8` | `3.4` | 30.06.2019 | Bugfix only | 2.8 |
1919
| **1.8** | `4.0` | -- | 28.04.2017 | Unsupported | pimcore4 |
2020

2121
### Installation
2222

2323
```json
2424
"require" : {
25-
"dachcom-digital/toolbox" : "~3.2.0"
25+
"dachcom-digital/toolbox" : "~3.3.0"
2626
}
2727
```
2828

UPGRADE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
After every update you should check the pimcore extension manager.
77
Just click the "update" button or execute the migration command to finish the bundle update.
88

9+
#### Update from Version 3.2.5 to Version 3.3.0
10+
- **[NEW FEATURE]**: Pimcore 6.9.0 ready
11+
- **[IMPROVEMENT]**: use no-cookie domain for youtube videos [@ghettopro](https://github.com/dachcom-digital/pimcore-toolbox/pull/153)
12+
- **[BUG FIX]**: Fix invalid asset video markup[@gpalmisano](https://github.com/dachcom-digital/pimcore-toolbox/pull/154)
13+
914
#### Update from Version 3.2.4 to Version 3.2.5
1015
- **[BUG FIX]**: Fix column adjuster column_store availability check
1116

src/ToolboxBundle/Resources/views/Toolbox/Bootstrap3/Video/type-asset.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="player" data-poster-path="{{ posterPath }}" data-play-in-lightbox="{{ playInLightbox }}" data-video-uri="{{ videoId }}"></div>
1+
<div class="player" data-poster-path="{{ posterPath }}" data-play-in-lightbox="{{ playInLightbox }}" data-video-uri="{{ videoId }}">
22
{{ pimcore_vhs('video', {
33
'attributes': {
44
'class': 'video-js vjs-default-skin vjs-big-play-centered',

0 commit comments

Comments
 (0)