Procházet zdrojové kódy

Merge pull request #846 from weseek/support/mongo36-es6

Support/mongo36 es6
Yuki Takei před 7 roky
rodič
revize
f3ad3bc11d
3 změnil soubory, kde provedl 11 přidání a 3 odebrání
  1. 3 0
      CHANGES.md
  2. 2 2
      README.md
  3. 6 1
      app.json

+ 3 - 0
CHANGES.md

@@ -5,6 +5,9 @@ CHANGES
 
 * Improvement: Restrict to access attachments when the user is not allowed to see page
 * Fix: Profile image is not displayed when `FILE_UPLOAD=mongodb`
+* Support: Launch with Node.js v10
+* Support: Launch with MongoDB 3.6
+* Support: Launch with Elasticsearch 6.6
 
 ## 3.3.10
 

+ 2 - 2
README.md

@@ -79,7 +79,7 @@ On-premise
 
 ### Dependencies
 
-- node 8.x (DON'T USE 9.x)
+- Node.js v10.x (DON'T USE 11.x)
 - npm 6.x
 - yarn
 - MongoDB 3.x
@@ -89,7 +89,7 @@ See [confirmed versions](https://docs.growi.org/dev/startup/dev-env.html#version
 #### Optional Dependencies
 
 - Redis 3.x
-- ElasticSearch 5.x (needed when using Full-text search)
+- ElasticSearch 6.x (needed when using Full-text search)
   - **CAUTION: Following plugins are required**
       - [Japanese (kuromoji) Analysis plugin](https://www.elastic.co/guide/en/elasticsearch/plugins/current/analysis-kuromoji.html)
       - [ICU Analysis Plugin](https://www.elastic.co/guide/en/elasticsearch/plugins/current/analysis-icu.html)

+ 6 - 1
app.json

@@ -12,6 +12,11 @@
       "description": "DO NOT CHANGE - 'yarn' needs this to install devDependencies",
       "value": "development"
     },
+    "FILE_UPLOAD": {
+      "description": "Attached files storage. - mongodb | aws | local | none",
+      "value": "mongodb",
+      "required": false
+    },
     "SECRET_TOKEN": {
       "description": "A secret key for verifying the integrity of signed cookies.",
       "generator": "secret"
@@ -31,7 +36,7 @@
     {
       "plan": "bonsai:sandbox-6",
       "options": {
-        "version": "5.4.3"
+        "version": "6.5.4"
       }
     }
   ]