Skip to content

Commit 31811ff

Browse files
Merge branch 'release/0.3.14'
2 parents 689408f + abc17ad commit 31811ff

File tree

9 files changed

+42
-10
lines changed

9 files changed

+42
-10
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
3+
# Configuration: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
4+
updates:
5+
- package-ecosystem: github-actions
6+
directory: '/'
7+
schedule:
8+
interval: daily
9+
commit-message:
10+
prefix: '[TASK]'
11+
target-branch: develop
12+
labels:
13+
- dependencies
14+
open-pull-requests-limit: 10

.github/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ changelog:
2020
- title: 🚑 Fixed
2121
labels:
2222
- bug
23+
- title: 👷 Changed
24+
labels:
25+
- maintenance
2326
- title: Other changes
2427
labels:
2528
- "*"

.github/workflows/cgl.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: CGL
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- develop
7+
pull_request:
8+
branches:
9+
- '**'
310

411
jobs:
512
cgl:
613
runs-on: ubuntu-20.04
7-
strategy:
8-
fail-fast: false
914
steps:
1015
- uses: actions/checkout@v3
1116
with:
@@ -15,7 +20,7 @@ jobs:
1520
- name: Setup PHP
1621
uses: shivammathur/setup-php@v2
1722
with:
18-
php-version: 8.0
23+
php-version: 8.1
1924
tools: composer:v2, composer-require-checker, composer-unused
2025

2126
# Validation

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Setup PHP
6262
uses: shivammathur/setup-php@v2
6363
with:
64-
php-version: 8.0
64+
php-version: 8.1
6565
extensions: intl, mbstring, json, zip, curl
6666
tools: composer:v2
6767

.github/workflows/tests.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
name: Tests
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- develop
7+
pull_request:
8+
branches:
9+
- '**'
310

411
jobs:
512
tests:
@@ -17,6 +24,8 @@ jobs:
1724
php-version: "7.4"
1825
- typo3-version: "11.5"
1926
php-version: "8.0"
27+
- typo3-version: "11.5"
28+
php-version: "8.1"
2029
coverage: true
2130
steps:
2231
- uses: actions/checkout@v3
@@ -88,6 +97,8 @@ jobs:
8897
php-version: "7.4"
8998
- typo3-version: "11.5"
9099
php-version: "8.0"
100+
- typo3-version: "11.5"
101+
php-version: "8.1"
91102
steps:
92103
- uses: actions/checkout@v3
93104
with:

Resources/Private/Frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eliashaeussler/typo3-warming",
33
"description": "Frontend for EXT:warming, an extension for TYPO3 CMS that warms up Frontend caches based on an XML sitemap",
4-
"version": "0.3.13",
4+
"version": "0.3.14",
55
"license": "GPL-2.0-or-later",
66
"scripts": {
77
"build": "cross-env NODE_ENV=production webpack",

codecov.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
comment:
2-
behavior: new
32
require_changes: true

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">= 7.1 < 8.1",
15+
"php": ">= 7.1 < 8.2",
1616
"ext-json": "*",
1717
"eliashaeussler/cache-warmup": ">= 0.4.0 < 0.7.0",
1818
"guzzlehttp/guzzle": ">= 6.3.0 < 8.0.0",

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'title' => 'Warming',
2525
'description' => 'Warms up Frontend caches based on an XML sitemap. Cache warmup can be triggered via TYPO3 backend or using a console command. Supports multiple languages and custom crawler implementations.',
2626
'category' => 'be',
27-
'version' => '0.3.13',
27+
'version' => '0.3.14',
2828
'state' => 'beta',
2929
'clearCacheOnLoad' => true,
3030
'author' => 'Elias Häußler',

0 commit comments

Comments
 (0)