1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

Merge branch 'master' of github.com:Budibase/budibase into develop

This commit is contained in:
mike12345567 2023-02-07 09:54:39 +00:00
commit fb8a5c7878
19 changed files with 78 additions and 75 deletions

View file

@ -1,5 +1,5 @@
{ {
"version": "2.2.27-alpha.1", "version": "2.3.1",
"npmClient": "yarn", "npmClient": "yarn",
"packages": [ "packages": [
"packages/*" "packages/*"

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/backend-core", "name": "@budibase/backend-core",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase backend core libraries used in server and worker", "description": "Budibase backend core libraries used in server and worker",
"main": "dist/src/index.js", "main": "dist/src/index.js",
"types": "dist/src/index.d.ts", "types": "dist/src/index.d.ts",
@ -23,7 +23,7 @@
}, },
"dependencies": { "dependencies": {
"@budibase/nano": "10.1.1", "@budibase/nano": "10.1.1",
"@budibase/types": "2.2.27-alpha.1", "@budibase/types": "^2.3.1",
"@shopify/jest-koa-mocks": "5.0.1", "@shopify/jest-koa-mocks": "5.0.1",
"@techpass/passport-openidconnect": "0.3.2", "@techpass/passport-openidconnect": "0.3.2",
"aws-cloudfront-sign": "2.2.0", "aws-cloudfront-sign": "2.2.0",

View file

@ -1,7 +1,7 @@
{ {
"name": "@budibase/bbui", "name": "@budibase/bbui",
"description": "A UI solution used in the different Budibase projects.", "description": "A UI solution used in the different Budibase projects.",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"license": "MPL-2.0", "license": "MPL-2.0",
"svelte": "src/index.js", "svelte": "src/index.js",
"module": "dist/bbui.es.js", "module": "dist/bbui.es.js",
@ -38,7 +38,7 @@
], ],
"dependencies": { "dependencies": {
"@adobe/spectrum-css-workflow-icons": "1.2.1", "@adobe/spectrum-css-workflow-icons": "1.2.1",
"@budibase/string-templates": "2.2.27-alpha.1", "@budibase/string-templates": "^2.3.1",
"@spectrum-css/accordion": "3.0.24", "@spectrum-css/accordion": "3.0.24",
"@spectrum-css/actionbutton": "1.0.1", "@spectrum-css/actionbutton": "1.0.1",
"@spectrum-css/actiongroup": "1.0.1", "@spectrum-css/actiongroup": "1.0.1",

View file

@ -25,7 +25,7 @@
let open = false let open = false
//eslint-disable-next-line //eslint-disable-next-line
const STRIP_NAME_REGEX = /(?<=\.)(.*?)(?=\ })/g const STRIP_NAME_REGEX = /(\w+?)(?=\ })/g
// Strips the name out of the value which is {{ env.Variable }} resulting in an array like ["Variable"] // Strips the name out of the value which is {{ env.Variable }} resulting in an array like ["Variable"]
$: hbsValue = String(value)?.match(STRIP_NAME_REGEX) || [] $: hbsValue = String(value)?.match(STRIP_NAME_REGEX) || []

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/builder", "name": "@budibase/builder",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"license": "GPL-3.0", "license": "GPL-3.0",
"private": true, "private": true,
"scripts": { "scripts": {
@ -58,10 +58,10 @@
} }
}, },
"dependencies": { "dependencies": {
"@budibase/bbui": "2.2.27-alpha.1", "@budibase/bbui": "^2.3.1",
"@budibase/client": "2.2.27-alpha.1", "@budibase/client": "^2.3.1",
"@budibase/frontend-core": "2.2.27-alpha.1", "@budibase/frontend-core": "^2.3.1",
"@budibase/string-templates": "2.2.27-alpha.1", "@budibase/string-templates": "^2.3.1",
"@fortawesome/fontawesome-svg-core": "^6.2.1", "@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1", "@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1", "@fortawesome/free-solid-svg-icons": "^6.2.1",

View file

@ -70,7 +70,7 @@
return Number(value) return Number(value)
} }
if (type === "options") { if (type === "options") {
return [value] return value
} }
if (type === "array") { if (type === "array") {
if (Array.isArray(value)) { if (Array.isArray(value)) {

View file

@ -169,7 +169,7 @@
if (saveColumn.type === AUTO_TYPE) { if (saveColumn.type === AUTO_TYPE) {
saveColumn = buildAutoColumn( saveColumn = buildAutoColumn(
$tables.draft.name, $tables.selected.name,
saveColumn.name, saveColumn.name,
saveColumn.subtype saveColumn.subtype
) )

View file

@ -1,6 +1,7 @@
import { writable } from "svelte/store" import { writable, get } from "svelte/store"
import { API } from "api" import { API } from "api"
import { Constants } from "@budibase/frontend-core" import { Constants } from "@budibase/frontend-core"
import { licensing } from "stores/portal"
export function createEnvironmentStore() { export function createEnvironmentStore() {
const { subscribe, update } = writable({ const { subscribe, update } = writable({
@ -17,6 +18,7 @@ export function createEnvironmentStore() {
} }
async function loadVariables() { async function loadVariables() {
if (get(licensing).environmentVariablesEnabled) {
const envVars = await API.fetchEnvironmentVariables() const envVars = await API.fetchEnvironmentVariables()
const mappedVars = envVars.variables.map(name => ({ name })) const mappedVars = envVars.variables.map(name => ({ name }))
update(store => { update(store => {
@ -24,6 +26,7 @@ export function createEnvironmentStore() {
return store return store
}) })
} }
}
async function createVariable(data) { async function createVariable(data) {
await API.createEnvironmentVariable(data) await API.createEnvironmentVariable(data)

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/cli", "name": "@budibase/cli",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase CLI, for developers, self hosting and migrations.", "description": "Budibase CLI, for developers, self hosting and migrations.",
"main": "src/index.js", "main": "src/index.js",
"bin": { "bin": {
@ -26,9 +26,9 @@
"outputPath": "build" "outputPath": "build"
}, },
"dependencies": { "dependencies": {
"@budibase/backend-core": "2.2.27-alpha.1", "@budibase/backend-core": "^2.3.1",
"@budibase/string-templates": "2.2.27-alpha.1", "@budibase/string-templates": "^2.3.1",
"@budibase/types": "2.2.27-alpha.1", "@budibase/types": "^2.3.1",
"axios": "0.21.2", "axios": "0.21.2",
"chalk": "4.1.0", "chalk": "4.1.0",
"cli-progress": "3.11.2", "cli-progress": "3.11.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/client", "name": "@budibase/client",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"license": "MPL-2.0", "license": "MPL-2.0",
"module": "dist/budibase-client.js", "module": "dist/budibase-client.js",
"main": "dist/budibase-client.js", "main": "dist/budibase-client.js",
@ -19,9 +19,9 @@
"dev:builder": "rollup -cw" "dev:builder": "rollup -cw"
}, },
"dependencies": { "dependencies": {
"@budibase/bbui": "2.2.27-alpha.1", "@budibase/bbui": "^2.3.1",
"@budibase/frontend-core": "2.2.27-alpha.1", "@budibase/frontend-core": "^2.3.1",
"@budibase/string-templates": "2.2.27-alpha.1", "@budibase/string-templates": "^2.3.1",
"@spectrum-css/button": "^3.0.3", "@spectrum-css/button": "^3.0.3",
"@spectrum-css/card": "^3.0.3", "@spectrum-css/card": "^3.0.3",
"@spectrum-css/divider": "^1.0.3", "@spectrum-css/divider": "^1.0.3",

View file

@ -1,12 +1,12 @@
{ {
"name": "@budibase/frontend-core", "name": "@budibase/frontend-core",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase frontend core libraries used in builder and client", "description": "Budibase frontend core libraries used in builder and client",
"author": "Budibase", "author": "Budibase",
"license": "MPL-2.0", "license": "MPL-2.0",
"svelte": "src/index.js", "svelte": "src/index.js",
"dependencies": { "dependencies": {
"@budibase/bbui": "2.2.27-alpha.1", "@budibase/bbui": "^2.3.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"svelte": "^3.46.2" "svelte": "^3.46.2"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/sdk", "name": "@budibase/sdk",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase Public API SDK", "description": "Budibase Public API SDK",
"author": "Budibase", "author": "Budibase",
"license": "MPL-2.0", "license": "MPL-2.0",

View file

@ -1,7 +1,7 @@
{ {
"name": "@budibase/server", "name": "@budibase/server",
"email": "hi@budibase.com", "email": "hi@budibase.com",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase Web Server", "description": "Budibase Web Server",
"main": "src/index.ts", "main": "src/index.ts",
"repository": { "repository": {
@ -43,11 +43,11 @@
"license": "GPL-3.0", "license": "GPL-3.0",
"dependencies": { "dependencies": {
"@apidevtools/swagger-parser": "10.0.3", "@apidevtools/swagger-parser": "10.0.3",
"@budibase/backend-core": "2.2.27-alpha.1", "@budibase/backend-core": "^2.3.1",
"@budibase/client": "2.2.27-alpha.1", "@budibase/client": "^2.3.1",
"@budibase/pro": "2.2.27-alpha.1", "@budibase/pro": "2.3.1",
"@budibase/string-templates": "2.2.27-alpha.1", "@budibase/string-templates": "^2.3.1",
"@budibase/types": "2.2.27-alpha.1", "@budibase/types": "^2.3.1",
"@bull-board/api": "3.7.0", "@bull-board/api": "3.7.0",
"@bull-board/koa": "3.9.4", "@bull-board/koa": "3.9.4",
"@elastic/elasticsearch": "7.10.0", "@elastic/elasticsearch": "7.10.0",

View file

@ -1278,13 +1278,13 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
"@budibase/backend-core@2.2.27-alpha.1": "@budibase/backend-core@2.3.1":
version "2.2.27-alpha.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/@budibase/backend-core/-/backend-core-2.2.27-alpha.1.tgz#aa6bc24e4fbf3afa59fd09cbf6184e465a864cef" resolved "https://registry.yarnpkg.com/@budibase/backend-core/-/backend-core-2.3.1.tgz#9dc2effb3d62c4a2de5934a5ac712be1b402266a"
integrity sha512-FDoK5L9FS5Ee7fhE8EcuSPYztuo0jydvvmLqbq9ExI4yIzgALsa395X5sxD+Z+4mVNZ6iQMArE14+1rdM8MGUQ== integrity sha512-IXwSPJ/6yTCJAocpgw2aZznb7T3YeYspL3DfriwCL67tHZRq3zkq/uYYCAs9uYQObBr7OMKPJPTFOuh2MJk12w==
dependencies: dependencies:
"@budibase/nano" "10.1.1" "@budibase/nano" "10.1.1"
"@budibase/types" "2.2.27-alpha.1" "@budibase/types" "^2.3.1"
"@shopify/jest-koa-mocks" "5.0.1" "@shopify/jest-koa-mocks" "5.0.1"
"@techpass/passport-openidconnect" "0.3.2" "@techpass/passport-openidconnect" "0.3.2"
aws-cloudfront-sign "2.2.0" aws-cloudfront-sign "2.2.0"
@ -1379,13 +1379,13 @@
qs "^6.11.0" qs "^6.11.0"
tough-cookie "^4.1.2" tough-cookie "^4.1.2"
"@budibase/pro@2.2.27-alpha.1": "@budibase/pro@2.3.1":
version "2.2.27-alpha.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-2.2.27-alpha.1.tgz#7f1cffbc432790028f69229e2e1bf76006e787a7" resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-2.3.1.tgz#24d0bac89aee0270d92bab7bb7e2c987914ef902"
integrity sha512-D92oOM/L3H6QnqA5hi/KT+Pbm4tDrlbUe42WYZ0Dc602Ai2qSCn1vtOkBHjMKTtJh9yGkYp0qQuskEm1hnMO8g== integrity sha512-vdpMAZbowrUEmdCxEvc7If0REK/9Q6KHPLJ6K99SYtS6STprYaAcO4Sa5GmmluHxuFnQjpYxF4R0CNS8C+C6xA==
dependencies: dependencies:
"@budibase/backend-core" "2.2.27-alpha.1" "@budibase/backend-core" "2.3.1"
"@budibase/types" "2.2.27-alpha.1" "@budibase/types" "2.3.1"
"@koa/router" "8.0.8" "@koa/router" "8.0.8"
bull "4.10.1" bull "4.10.1"
joi "17.6.0" joi "17.6.0"
@ -1411,10 +1411,10 @@
svelte-apexcharts "^1.0.2" svelte-apexcharts "^1.0.2"
svelte-flatpickr "^3.1.0" svelte-flatpickr "^3.1.0"
"@budibase/types@2.2.27-alpha.1": "@budibase/types@2.3.1", "@budibase/types@^2.3.1":
version "2.2.27-alpha.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/@budibase/types/-/types-2.2.27-alpha.1.tgz#7b859f2b5bdf3d48a72c37b7e3d2d4a162ceaee6" resolved "https://registry.yarnpkg.com/@budibase/types/-/types-2.3.1.tgz#5f8fb84f4273b920619a6308e956ca176ead4304"
integrity sha512-XRx826XIOSwxnfIkJnzpe6BXkpJukUwF/ZZKOos7lTi6I9K/NUKgLQ/i7iqXdmz2NZ05pWOgSb+0mtBdBNXrYg== integrity sha512-8+Qo7JPGnPv9FWx3AdOScWSElBsYcC7zZFFLeoqBy6y8a4UjtEEDIUZHpRf5gpcSUXuqbzAPbC+CpYJ6NVEvPw==
"@bull-board/api@3.7.0": "@bull-board/api@3.7.0":
version "3.7.0" version "3.7.0"

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/string-templates", "name": "@budibase/string-templates",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Handlebars wrapper for Budibase templating.", "description": "Handlebars wrapper for Budibase templating.",
"main": "src/index.cjs", "main": "src/index.cjs",
"module": "dist/bundle.mjs", "module": "dist/bundle.mjs",

View file

@ -1,6 +1,6 @@
{ {
"name": "@budibase/types", "name": "@budibase/types",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase types", "description": "Budibase types",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View file

@ -1,7 +1,7 @@
{ {
"name": "@budibase/worker", "name": "@budibase/worker",
"email": "hi@budibase.com", "email": "hi@budibase.com",
"version": "2.2.27-alpha.1", "version": "2.3.1",
"description": "Budibase background service", "description": "Budibase background service",
"main": "src/index.ts", "main": "src/index.ts",
"repository": { "repository": {
@ -36,10 +36,10 @@
"author": "Budibase", "author": "Budibase",
"license": "GPL-3.0", "license": "GPL-3.0",
"dependencies": { "dependencies": {
"@budibase/backend-core": "2.2.27-alpha.1", "@budibase/backend-core": "^2.3.1",
"@budibase/pro": "2.2.27-alpha.1", "@budibase/pro": "2.3.1",
"@budibase/string-templates": "2.2.27-alpha.1", "@budibase/string-templates": "^2.3.1",
"@budibase/types": "2.2.27-alpha.1", "@budibase/types": "^2.3.1",
"@koa/router": "8.0.8", "@koa/router": "8.0.8",
"@sentry/node": "6.17.7", "@sentry/node": "6.17.7",
"@techpass/passport-openidconnect": "0.3.2", "@techpass/passport-openidconnect": "0.3.2",

View file

@ -475,13 +475,13 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
"@budibase/backend-core@2.2.27-alpha.1": "@budibase/backend-core@2.3.1":
version "2.2.27-alpha.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/@budibase/backend-core/-/backend-core-2.2.27-alpha.1.tgz#aa6bc24e4fbf3afa59fd09cbf6184e465a864cef" resolved "https://registry.yarnpkg.com/@budibase/backend-core/-/backend-core-2.3.1.tgz#9dc2effb3d62c4a2de5934a5ac712be1b402266a"
integrity sha512-FDoK5L9FS5Ee7fhE8EcuSPYztuo0jydvvmLqbq9ExI4yIzgALsa395X5sxD+Z+4mVNZ6iQMArE14+1rdM8MGUQ== integrity sha512-IXwSPJ/6yTCJAocpgw2aZznb7T3YeYspL3DfriwCL67tHZRq3zkq/uYYCAs9uYQObBr7OMKPJPTFOuh2MJk12w==
dependencies: dependencies:
"@budibase/nano" "10.1.1" "@budibase/nano" "10.1.1"
"@budibase/types" "2.2.27-alpha.1" "@budibase/types" "^2.3.1"
"@shopify/jest-koa-mocks" "5.0.1" "@shopify/jest-koa-mocks" "5.0.1"
"@techpass/passport-openidconnect" "0.3.2" "@techpass/passport-openidconnect" "0.3.2"
aws-cloudfront-sign "2.2.0" aws-cloudfront-sign "2.2.0"
@ -526,13 +526,13 @@
qs "^6.11.0" qs "^6.11.0"
tough-cookie "^4.1.2" tough-cookie "^4.1.2"
"@budibase/pro@2.2.27-alpha.1": "@budibase/pro@2.3.1":
version "2.2.27-alpha.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-2.2.27-alpha.1.tgz#7f1cffbc432790028f69229e2e1bf76006e787a7" resolved "https://registry.yarnpkg.com/@budibase/pro/-/pro-2.3.1.tgz#24d0bac89aee0270d92bab7bb7e2c987914ef902"
integrity sha512-D92oOM/L3H6QnqA5hi/KT+Pbm4tDrlbUe42WYZ0Dc602Ai2qSCn1vtOkBHjMKTtJh9yGkYp0qQuskEm1hnMO8g== integrity sha512-vdpMAZbowrUEmdCxEvc7If0REK/9Q6KHPLJ6K99SYtS6STprYaAcO4Sa5GmmluHxuFnQjpYxF4R0CNS8C+C6xA==
dependencies: dependencies:
"@budibase/backend-core" "2.2.27-alpha.1" "@budibase/backend-core" "2.3.1"
"@budibase/types" "2.2.27-alpha.1" "@budibase/types" "2.3.1"
"@koa/router" "8.0.8" "@koa/router" "8.0.8"
bull "4.10.1" bull "4.10.1"
joi "17.6.0" joi "17.6.0"
@ -540,10 +540,10 @@
lru-cache "^7.14.1" lru-cache "^7.14.1"
node-fetch "^2.6.1" node-fetch "^2.6.1"
"@budibase/types@2.2.27-alpha.1": "@budibase/types@2.3.1", "@budibase/types@^2.3.1":
version "2.2.27-alpha.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/@budibase/types/-/types-2.2.27-alpha.1.tgz#7b859f2b5bdf3d48a72c37b7e3d2d4a162ceaee6" resolved "https://registry.yarnpkg.com/@budibase/types/-/types-2.3.1.tgz#5f8fb84f4273b920619a6308e956ca176ead4304"
integrity sha512-XRx826XIOSwxnfIkJnzpe6BXkpJukUwF/ZZKOos7lTi6I9K/NUKgLQ/i7iqXdmz2NZ05pWOgSb+0mtBdBNXrYg== integrity sha512-8+Qo7JPGnPv9FWx3AdOScWSElBsYcC7zZFFLeoqBy6y8a4UjtEEDIUZHpRf5gpcSUXuqbzAPbC+CpYJ6NVEvPw==
"@cspotcode/source-map-support@^0.8.0": "@cspotcode/source-map-support@^0.8.0":
version "0.8.1" version "0.8.1"

View file

@ -112,7 +112,7 @@ export default class AppApi {
async delete(appId: string): Promise<Response> { async delete(appId: string): Promise<Response> {
const response = await this.api.del(`/applications/${appId}`) const response = await this.api.del(`/applications/${appId}`)
expect(response).toHaveStatusCode(204) expect(response).toHaveStatusCode(200)
return response return response
} }