Skip to content

Commit cde5965

Browse files
author
Andrew Welch
committed
Merge branch 'release/2.2.6' into craft-webpack
2 parents 36c4a64 + febb9a7 commit cde5965

File tree

5 files changed

+9
-15
lines changed

5 files changed

+9
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# nystudio107/craft Change Log
22

3+
## 2.2.6 - 2020.03.27
4+
### Changed
5+
* Remove Craft & Plugin Licenses from .env — not necessary except for public repos
6+
37
## 2.2.5 - 2020.03.27
48
### Changed
59
* Synced up the `project.yaml` with the `seed_db.sql` so it can properly propagate

cms/config/project.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ plugins:
8383
image-optimize:
8484
edition: standard
8585
enabled: true
86-
licenseKey: $PLUGIN_IMAGEOPTIMIZE_LICENSE
86+
licenseKey: null
8787
schemaVersion: 1.0.0
8888
settings:
8989
allowUpScaledImageVariants: false
@@ -131,12 +131,12 @@ plugins:
131131
retour:
132132
edition: standard
133133
enabled: true
134-
licenseKey: $PLUGIN_RETOUR_LICENSE
134+
licenseKey: null
135135
schemaVersion: 3.0.9
136136
seomatic:
137137
edition: standard
138138
enabled: true
139-
licenseKey: $PLUGIN_SEOMATIC_LICENSE
139+
licenseKey: null
140140
schemaVersion: 3.0.8
141141
twigpack:
142142
edition: standard
@@ -149,7 +149,7 @@ plugins:
149149
webperf:
150150
edition: standard
151151
enabled: true
152-
licenseKey: $PLUGIN_WEBPERF_LICENSE
152+
licenseKey: null
153153
schemaVersion: 1.0.1
154154
sections:
155155
54e60257-f31a-44aa-960e-bbd364197e28:

cms/example.env

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,6 @@ ASSETS_URL=http://localhost:8000
2525
SITE_URL=http://localhost:8000
2626
WEB_ROOT_PATH=/var/www/project/cms/web
2727

28-
# Craft & Plugin Licenses
29-
LICENSE_KEY=
30-
PLUGIN_RETOUR_LICENSE=
31-
PLUGIN_SEOMATIC_LICENSE=
32-
PLUGIN_TRANSCODER_LICENSE=
33-
PLUGIN_WEBPERF_LICENSE=
34-
3528
# S3 settings
3629
S3_KEY_ID=
3730
S3_SECRET=

cms/web/index.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
Dotenv\Dotenv::create(CRAFT_BASE_PATH)->load();
1616
}
1717

18-
// Set license key via .env
19-
define('CRAFT_LICENSE_KEY', getenv('LICENSE_KEY'));
20-
2118
// Load and run Craft
2219
define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production');
2320
$app = require CRAFT_VENDOR_PATH.'/craftcms/cms/bootstrap/web.php';

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "craftcms/craft",
33
"description": "nystudio107 Craft 3.4 CMS scaffolding project",
4-
"version": "2.2.5",
4+
"version": "2.2.6",
55
"keywords": [
66
"craft",
77
"cms",

0 commit comments

Comments
 (0)