Skip to content

Commit

Permalink
Merge pull request #4007 from getkirby/develop
Browse files Browse the repository at this point in the history
3.6.1
  • Loading branch information
bastianallgeier authored Dec 7, 2021
2 parents 9ea05e3 + 23da449 commit 0a1f15d
Show file tree
Hide file tree
Showing 462 changed files with 28,095 additions and 5,209 deletions.
38 changes: 22 additions & 16 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,43 @@ about: Create a report to help us improve

---

**Describe the bug**
<!-- A clear and concise description of what the bug is. -->
## Description
<!-- Describe what the bug is in a clear and concise way. -->

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
<!-- A clear and concise description of what you expected to happen. -->

**Screenshots**
<!-- If applicable, add screenshots to help explain your problem. -->


## To reproduce
<!-- Please help us by otulining step by step how to reproduce the bug. -->

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

<!--
For more complicated bugs, sample code makes it a lot easier for us to reproduce and fix a bug.
Please clone our https://github.com/getkirby/starterkit or https://github.com/getkirby/plainkit as base to create a minimal verifable setup that repoduces the bug.
-->


## Your setup
**Kirby Version**
<!-- Add the Kirby version you are using. You can find the version number in `kirby/composer.json` or in the settings view of the Panel. -->

**Console output**
<!-- If you are working with the Panel, please check the browser console for errors and send the output. -->

**Desktop (please complete the following information):**
- OS: <!-- e.g. macOS -->
- Browser: <!-- e.g. Chrome, Safari -->
- Version: <!-- e.g. 22 -->

**Smartphone (please complete the following information):**
**Your system (please complete the following information)**
- Device: <!-- e.g. iPhone 11 -->
- OS: <!-- e.g. iOS 13.3 -->
- Browser: <!-- e.g. stock browser, Safari -->
- OS: <!-- e.g. macOS, iOS 15.1 -->
- Browser: <!-- e.g. Chrome, Safari -->
- Version: <!-- e.g. 22 -->

**Additional context**
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 5
strategy:
matrix:
php: [ "7.4", "8.0" ]
php: [ "7.4", "8.0", "8.1" ]
env:
extensions: mbstring, ctype, curl, gd, apcu, memcached
ini: apc.enabled=1, apc.enable_cli=1, pcov.directory=., "pcov.exclude=\"~(vendor|tests)~\""
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
# editors
*.sublime-project
*.sublime-workspace
/.vscode
/.idea

# tests
Expand Down
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
2 changes: 1 addition & 1 deletion bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
if (
version_compare(PHP_VERSION, '7.4.0', '>=') === false ||
version_compare(PHP_VERSION, '8.1.0', '<') === false
version_compare(PHP_VERSION, '8.2.0', '<') === false
) {
die(include __DIR__ . '/views/php.php');
}
Expand Down
15 changes: 12 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"core"
],
"homepage": "https://getkirby.com",
"version": "3.6.0",
"version": "3.6.1",
"license": "proprietary",
"authors": [
{
Expand All @@ -21,20 +21,29 @@
"php": ">=7.4.0 <8.1.0",
"ext-ctype": "*",
"ext-mbstring": "*",
"claviska/simpleimage": "3.6.3",
"claviska/simpleimage": "3.6.4",
"filp/whoops": "2.14.4",
"getkirby/composer-installer": "^1.2.1",
"laminas/laminas-escaper": "2.9.0",
"michelf/php-smartypants": "1.8.1",
"mustangostang/spyc": "0.6.3",
"phpmailer/phpmailer": "6.5.1",
"psr/log": "1.1.4",
"true/punycode": "2.1.1"
"symfony/polyfill-intl-idn": "1.23.0",
"symfony/polyfill-mbstring": "1.23.1"
},
"replace": {
"symfony/polyfill-php72": "*"
},
"config": {
"optimize-autoloader": true,
"platform-check": false
},
"extra": {
"unused": [
"symfony/polyfill-intl-idn"
]
},
"autoload": {
"psr-4": {
"Kirby\\": "src/"
Expand Down
Loading

0 comments on commit 0a1f15d

Please sign in to comment.