Browse Source

Finish 3.7.17.1

pull/10007/head
brandonkelly 4 years ago
parent
commit
bf274908df
No known key found for this signature in database GPG Key ID: 5E86D0CED64C7093
  1. 6
      CHANGELOG.md
  2. 2
      composer.json
  3. 2
      src/config/app.php

6
CHANGELOG.md

@ -1,10 +1,10 @@
# Release Notes for Craft CMS 3.x
## Unreleased
## 3.7.17.1 - 2021-10-20
### Fixed
- Fixed a bug where database backups could error on some Windows servers. ([#9978](https://github.com/craftcms/cms/issues/9978))
- Fixed a bug where you couldn’t upload assets if your storage folder was symlinked. ([#9980](https://github.com/craftcms/cms/issues/9980))
- Fixed an error that could occur when creating database backups on Windows. ([#9978](https://github.com/craftcms/cms/issues/9978))
- Fixed a bug where it wasn’t possible to upload assets if the `storage/` folder was symlinked. ([#9980](https://github.com/craftcms/cms/issues/9980))
## 3.7.17 - 2021-10-19

2
composer.json

@ -1,7 +1,7 @@
{
"name": "craftcms/cms",
"description": "Craft CMS",
"version": "3.7.17",
"version": "3.7.17.1",
"keywords": [
"cms",
"craftcms",

2
src/config/app.php

@ -3,7 +3,7 @@
return [
'id' => 'CraftCMS',
'name' => 'Craft CMS',
'version' => '3.7.17',
'version' => '3.7.17.1',
'schemaVersion' => '3.7.8',
'minVersionRequired' => '2.6.2788',
'basePath' => dirname(__DIR__), // Defines the @app alias

Loading…
Cancel
Save