@nocobase/server 0.7.3-alpha.1 → 0.7.4-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -393,13 +393,13 @@ class Application extends _koa().default {
393
393
  return _asyncToGenerator(function* () {
394
394
  yield _this9.emitAsync('beforeInstall', _this9, options);
395
395
  const r = yield _this9.db.version.satisfies({
396
- mysql: '8.x',
396
+ mysql: '>=8.0.17',
397
397
  sqlite: '3.x',
398
398
  postgres: '>=10'
399
399
  });
400
400
 
401
401
  if (!r) {
402
- console.log('The database only supports MySQL 8.x, SQLite 3.x and PostgreSQL 10+');
402
+ console.log('The database only supports MySQL 8.0.17 and above, SQLite 3.x and PostgreSQL 10+');
403
403
  return;
404
404
  }
405
405
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/server",
3
- "version": "0.7.3-alpha.1",
3
+ "version": "0.7.4-alpha.1",
4
4
  "main": "lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -13,10 +13,10 @@
13
13
  "dependencies": {
14
14
  "@koa/cors": "^3.1.0",
15
15
  "@koa/router": "^9.4.0",
16
- "@nocobase/acl": "0.7.3-alpha.1",
17
- "@nocobase/actions": "0.7.3-alpha.1",
18
- "@nocobase/database": "0.7.3-alpha.1",
19
- "@nocobase/resourcer": "0.7.3-alpha.1",
16
+ "@nocobase/acl": "0.7.4-alpha.1",
17
+ "@nocobase/actions": "0.7.4-alpha.1",
18
+ "@nocobase/database": "0.7.4-alpha.1",
19
+ "@nocobase/resourcer": "0.7.4-alpha.1",
20
20
  "chalk": "^4.1.1",
21
21
  "commander": "^9.2.0",
22
22
  "find-package-json": "^1.2.0",
@@ -30,5 +30,5 @@
30
30
  "devDependencies": {
31
31
  "@types/semver": "^7.3.9"
32
32
  },
33
- "gitHead": "09597f41800ec567f64000e928cd68c28bb927e3"
33
+ "gitHead": "543eb1c0308bb72a5ba54f208586cd78bfda8fa9"
34
34
  }