Browse Source

Merge pull request #2694 from nocodb/release/0.92.4

pull/2705/head
github-actions[bot] 2 years ago committed by GitHub
parent
commit
34ce077607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 46
      packages/nc-gui/package-lock.json
  2. 2
      packages/nc-gui/package.json
  3. 2
      packages/nc-lib-gui/package.json
  4. 4
      packages/nocodb-sdk/package-lock.json
  5. 2
      packages/nocodb-sdk/package.json
  6. 1
      packages/nocodb-sdk/src/lib/Api.ts
  7. 64
      packages/nocodb/package-lock.json
  8. 6
      packages/nocodb/package.json

46
packages/nc-gui/package-lock.json generated

@ -28,7 +28,7 @@
"monaco-editor": "^0.19.3",
"monaco-themes": "^0.2.5",
"nano-assign": "^1.0.1",
"nocodb-sdk": "file:../nocodb-sdk",
"nocodb-sdk": "0.92.4",
"nuxt": "^2.14.0",
"odometer": "^0.4.8",
"papaparse": "^5.3.1",
@ -75,7 +75,8 @@
}
},
"../nocodb-sdk": {
"version": "0.92.3",
"version": "0.92.4",
"extraneous": true,
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
@ -10898,8 +10899,16 @@
}
},
"node_modules/nocodb-sdk": {
"resolved": "../nocodb-sdk",
"link": true
"version": "0.92.4",
"resolved": "https://registry.npmjs.org/nocodb-sdk/-/nocodb-sdk-0.92.4.tgz",
"integrity": "sha512-wAcTBM+ugG52zBaJ6eiAqDmigT5W2JWJVpUEvVtXXcWTl+fF9BPG9QGeYLJLgaqsqtuvR2RJlFiBbRub/3ttTQ==",
"dependencies": {
"axios": "^0.21.1",
"jsep": "^1.3.6"
},
"engines": {
"node": ">=10"
}
},
"node_modules/node-fetch": {
"version": "2.6.7",
@ -26317,33 +26326,12 @@
}
},
"nocodb-sdk": {
"version": "file:../nocodb-sdk",
"version": "0.92.4",
"resolved": "https://registry.npmjs.org/nocodb-sdk/-/nocodb-sdk-0.92.4.tgz",
"integrity": "sha512-wAcTBM+ugG52zBaJ6eiAqDmigT5W2JWJVpUEvVtXXcWTl+fF9BPG9QGeYLJLgaqsqtuvR2RJlFiBbRub/3ttTQ==",
"requires": {
"@ava/typescript": "^1.1.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"ava": "^3.12.1",
"axios": "^0.21.1",
"codecov": "^3.5.0",
"cspell": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.1.0",
"jsep": "^1.3.6",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typedoc": "^0.22.17",
"typescript": "^4.0.2"
"jsep": "^1.3.6"
}
},
"node-fetch": {

2
packages/nc-gui/package.json

@ -32,7 +32,7 @@
"monaco-editor": "^0.19.3",
"monaco-themes": "^0.2.5",
"nano-assign": "^1.0.1",
"nocodb-sdk": "file:../nocodb-sdk",
"nocodb-sdk": "0.92.4",
"nuxt": "^2.14.0",
"odometer": "^0.4.8",
"papaparse": "^5.3.1",

2
packages/nc-lib-gui/package.json

@ -1,6 +1,6 @@
{
"name": "nc-lib-gui",
"version": "0.92.3",
"version": "0.92.4",
"description": "> TODO: description",
"author": "“pranavxc” <pranavxc@gmail.com>",
"homepage": "https://gitlab.com/xgenecloud-ts/xgenecloud-ts#readme",

4
packages/nocodb-sdk/package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "nocodb-sdk",
"version": "0.92.3",
"version": "0.92.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "nocodb-sdk",
"version": "0.92.3",
"version": "0.92.4",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",

2
packages/nocodb-sdk/package.json

@ -1,6 +1,6 @@
{
"name": "nocodb-sdk",
"version": "0.92.3",
"version": "0.92.4",
"description": "NocoDB SDK",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",

1
packages/nocodb-sdk/src/lib/Api.ts

@ -724,6 +724,7 @@ export class HttpClient<SecurityDataType = unknown> {
formData.append(key, property);
} else if (typeof property === 'object' && property !== null) {
if (Array.isArray(property)) {
// eslint-disable-next-line functional/no-loop-statement
for (const prop of property) {
formData.append(`${key}[]`, prop);
}

64
packages/nocodb/package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "nocodb",
"version": "0.92.3",
"version": "0.92.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "nocodb",
"version": "0.92.3",
"version": "0.92.4",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@google-cloud/storage": "^5.7.2",
@ -71,10 +71,10 @@
"nanoid": "^3.1.20",
"nc-common": "0.0.6",
"nc-help": "0.2.67",
"nc-lib-gui": "0.92.3",
"nc-lib-gui": "0.92.4",
"nc-plugin": "0.1.2",
"ncp": "^2.0.0",
"nocodb-sdk": "file:../nocodb-sdk",
"nocodb-sdk": "0.92.4",
"nodemailer": "^6.4.10",
"object-hash": "^3.0.0",
"ora": "^4.0.4",
@ -159,7 +159,8 @@
}
},
"../nocodb-sdk": {
"version": "0.92.3",
"version": "0.92.4",
"extraneous": true,
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
@ -15288,9 +15289,9 @@
}
},
"node_modules/nc-lib-gui": {
"version": "0.92.3",
"resolved": "https://registry.npmjs.org/nc-lib-gui/-/nc-lib-gui-0.92.3.tgz",
"integrity": "sha512-am6HAc9Yc6BeE2/51UeTGCp66za2gJHyt5MuLLsfijWLRtOKDB1hVBnwBufnzeAWAqrlwoUyQl10kcl1LZ8VNQ==",
"version": "0.92.4",
"resolved": "https://registry.npmjs.org/nc-lib-gui/-/nc-lib-gui-0.92.4.tgz",
"integrity": "sha512-Sozs8w9fQN0WscoxKDGsMqviM/6wasqaag3dRPZ+SISu+bhOnogWUuZXM8Ivl6+dcj3RkXR0n4llF0Z+NvJW/A==",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
@ -15440,8 +15441,16 @@
}
},
"node_modules/nocodb-sdk": {
"resolved": "../nocodb-sdk",
"link": true
"version": "0.92.4",
"resolved": "https://registry.npmjs.org/nocodb-sdk/-/nocodb-sdk-0.92.4.tgz",
"integrity": "sha512-wAcTBM+ugG52zBaJ6eiAqDmigT5W2JWJVpUEvVtXXcWTl+fF9BPG9QGeYLJLgaqsqtuvR2RJlFiBbRub/3ttTQ==",
"dependencies": {
"axios": "^0.21.1",
"jsep": "^1.3.6"
},
"engines": {
"node": ">=10"
}
},
"node_modules/node-addon-api": {
"version": "2.0.0",
@ -36649,9 +36658,9 @@
}
},
"nc-lib-gui": {
"version": "0.92.3",
"resolved": "https://registry.npmjs.org/nc-lib-gui/-/nc-lib-gui-0.92.3.tgz",
"integrity": "sha512-am6HAc9Yc6BeE2/51UeTGCp66za2gJHyt5MuLLsfijWLRtOKDB1hVBnwBufnzeAWAqrlwoUyQl10kcl1LZ8VNQ==",
"version": "0.92.4",
"resolved": "https://registry.npmjs.org/nc-lib-gui/-/nc-lib-gui-0.92.4.tgz",
"integrity": "sha512-Sozs8w9fQN0WscoxKDGsMqviM/6wasqaag3dRPZ+SISu+bhOnogWUuZXM8Ivl6+dcj3RkXR0n4llF0Z+NvJW/A==",
"requires": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
@ -36788,33 +36797,12 @@
}
},
"nocodb-sdk": {
"version": "file:../nocodb-sdk",
"version": "0.92.4",
"resolved": "https://registry.npmjs.org/nocodb-sdk/-/nocodb-sdk-0.92.4.tgz",
"integrity": "sha512-wAcTBM+ugG52zBaJ6eiAqDmigT5W2JWJVpUEvVtXXcWTl+fF9BPG9QGeYLJLgaqsqtuvR2RJlFiBbRub/3ttTQ==",
"requires": {
"@ava/typescript": "^1.1.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"ava": "^3.12.1",
"axios": "^0.21.1",
"codecov": "^3.5.0",
"cspell": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.1.0",
"jsep": "^1.3.6",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typedoc": "^0.22.17",
"typescript": "^4.0.2"
"jsep": "^1.3.6"
}
},
"node-addon-api": {

6
packages/nocodb/package.json

@ -1,6 +1,6 @@
{
"name": "nocodb",
"version": "0.92.3",
"version": "0.92.4",
"description": "NocoDB",
"main": "dist/bundle.js",
"repository": "https://github.com/nocodb/nocodb",
@ -157,10 +157,10 @@
"nanoid": "^3.1.20",
"nc-common": "0.0.6",
"nc-help": "0.2.67",
"nc-lib-gui": "0.92.3",
"nc-lib-gui": "0.92.4",
"nc-plugin": "0.1.2",
"ncp": "^2.0.0",
"nocodb-sdk": "file:../nocodb-sdk",
"nocodb-sdk": "0.92.4",
"nodemailer": "^6.4.10",
"object-hash": "^3.0.0",
"ora": "^4.0.4",

Loading…
Cancel
Save