Merge branch 'master' into fixes/user-management
This commit is contained in:
commit
e0f22ae934
|
@ -7,12 +7,10 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
- next
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
- next
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -1,34 +1,23 @@
|
||||||
name: Budibase Release
|
name: Budibase Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
name:
|
|
||||||
description: 'Version'
|
|
||||||
required: false
|
|
||||||
default: '0.8'
|
|
||||||
|
|
||||||
# Trigger the workflow on push with tags,
|
|
||||||
# but only for the master branch
|
|
||||||
push:
|
push:
|
||||||
tags:
|
branches:
|
||||||
- 'v*'
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
# Platforms to build on/for
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
||||||
node-version: [12.x]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: 12.x
|
||||||
- run: yarn
|
- run: yarn
|
||||||
- run: yarn lint
|
- run: yarn lint
|
||||||
- run: yarn bootstrap
|
- run: yarn bootstrap
|
||||||
|
@ -39,42 +28,15 @@ jobs:
|
||||||
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
||||||
- run: yarn test
|
- run: yarn test
|
||||||
|
|
||||||
- name: Prepare for app notarization (macOS)
|
# - name: Publish budibase packages to NPM
|
||||||
if: startsWith(matrix.os, 'macos')
|
# env:
|
||||||
# Import Apple API key for app notarization on macOS
|
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
run: |
|
# run: yarn release
|
||||||
xattr -cr *
|
|
||||||
mkdir -p ~/private_keys/
|
|
||||||
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build/release Electron app
|
|
||||||
uses: samuelmeuli/action-electron-builder@v1
|
|
||||||
with:
|
|
||||||
package_root: packages/server
|
|
||||||
|
|
||||||
# GitHub token, automatically provided to the action
|
|
||||||
# (No need to define this secret in the repo settings)
|
|
||||||
github_token: ${{ secrets.github_token }}
|
|
||||||
|
|
||||||
mac_certs: ${{ secrets.mac_certs }}
|
|
||||||
mac_certs_password: ${{ secrets.mac_certs_password }}
|
|
||||||
windows_certs: ${{ secrets.windows_certs }}
|
|
||||||
windows_certs_password: ${{ secrets.windows_certs_password }}
|
|
||||||
|
|
||||||
# release the app after building
|
|
||||||
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
||||||
env:
|
|
||||||
# macOS notarization API key
|
|
||||||
API_KEY_ID: ${{ secrets.api_key_id }}
|
|
||||||
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
|
|
||||||
|
|
||||||
- name: Build/release Docker images
|
- name: Build/release Docker images
|
||||||
# only run the docker image build on linux, easiest way
|
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
|
||||||
env:
|
|
||||||
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
|
||||||
run: |
|
run: |
|
||||||
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
||||||
yarn build:docker
|
yarn build:docker
|
||||||
|
env:
|
||||||
|
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
GITHUB_BASE_URL=https://raw.githubusercontent.com/Budibase/budibase/master/hosting
|
|
||||||
|
|
||||||
if ! [ -x "$(command -v wget)" ]; then
|
|
||||||
echo 'Error: wget is not installed. Please install it for your operating system.' >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
fetch_config_files() {
|
|
||||||
wget $GITHUB_BASE_URL/docker-compose.yaml
|
|
||||||
wget $GITHUB_BASE_URL/envoy.yaml
|
|
||||||
wget $GITHUB_BASE_URL/hosting.properties
|
|
||||||
wget $GITHUB_BASE_URL/start.sh
|
|
||||||
}
|
|
||||||
|
|
||||||
fetch_config_files
|
|
||||||
|
|
||||||
# Start budibase
|
|
||||||
docker-compose --env-file hosting.properties up -d
|
|
|
@ -48,6 +48,7 @@ services:
|
||||||
REDIS_URL: redis-service:6379
|
REDIS_URL: redis-service:6379
|
||||||
REDIS_PASSWORD: ${REDIS_PASSWORD}
|
REDIS_PASSWORD: ${REDIS_PASSWORD}
|
||||||
depends_on:
|
depends_on:
|
||||||
|
- redis-service
|
||||||
- minio-service
|
- minio-service
|
||||||
- couch-init
|
- couch-init
|
||||||
|
|
||||||
|
|
|
@ -3,13 +3,20 @@
|
||||||
tag=$1
|
tag=$1
|
||||||
tag=${tag:-latest}
|
tag=${tag:-latest}
|
||||||
|
|
||||||
|
|
||||||
pushd ../../build
|
pushd ../../build
|
||||||
docker-compose build --force app-service
|
docker-compose build --force app-service
|
||||||
docker-compose build --force worker-service
|
docker-compose build --force worker-service
|
||||||
|
|
||||||
docker tag build_app-service budibase/budibase-apps:$tag
|
echo "Tagging images with SHA: $GITHUB_SHA and version: $BUDIBASE_VERSION"
|
||||||
docker tag build_worker-service budibase/budibase-worker:$tag
|
|
||||||
|
|
||||||
docker push budibase/budibase-apps
|
docker tag build_app-service budibase/apps:$tag
|
||||||
docker push budibase/budibase-worker
|
docker tag build_worker-service budibase/worker:$tag
|
||||||
|
|
||||||
|
# Tag with git sha
|
||||||
|
docker tag build_app-service budibase/apps:$GITHUB_SHA
|
||||||
|
docker tag build_worker-service budibase/worker:$GITHUB_SHA
|
||||||
|
|
||||||
|
docker push budibase/apps
|
||||||
|
docker push budibase/worker
|
||||||
popd
|
popd
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
docker-compose --env-file hosting.properties up
|
|
|
@ -1 +0,0 @@
|
||||||
docker-compose --env-file hosting.properties pull && ./start.sh
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"packages": [
|
"packages": [
|
||||||
"packages/*"
|
"packages/*"
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"initialise": "lerna run initialise",
|
"initialise": "lerna run initialise",
|
||||||
"publishdev": "lerna run publishdev",
|
"publishdev": "lerna run publishdev",
|
||||||
"publishnpm": "yarn build && lerna publish --force-publish",
|
"publishnpm": "yarn build && lerna publish --force-publish",
|
||||||
|
"release": "lerna publish --force-publish --yes",
|
||||||
"restore": "yarn run clean && yarn run bootstrap && yarn run build",
|
"restore": "yarn run clean && yarn run bootstrap && yarn run build",
|
||||||
"nuke": "yarn run nuke:packages && yarn run nuke:docker",
|
"nuke": "yarn run nuke:packages && yarn run nuke:docker",
|
||||||
"nuke:packages": "yarn run restore",
|
"nuke:packages": "yarn run restore",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@budibase/builder",
|
"name": "@budibase/builder",
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -66,9 +66,9 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@budibase/bbui": "^1.58.13",
|
"@budibase/bbui": "^1.58.13",
|
||||||
"@budibase/client": "^0.8.16",
|
"@budibase/client": "^0.8.18",
|
||||||
"@budibase/colorpicker": "1.1.2",
|
"@budibase/colorpicker": "1.1.2",
|
||||||
"@budibase/string-templates": "^0.8.16",
|
"@budibase/string-templates": "^0.8.18",
|
||||||
"@sentry/browser": "5.19.1",
|
"@sentry/browser": "5.19.1",
|
||||||
"@spectrum-css/page": "^3.0.1",
|
"@spectrum-css/page": "^3.0.1",
|
||||||
"@spectrum-css/vars": "^3.0.1",
|
"@spectrum-css/vars": "^3.0.1",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
{query}
|
{query}
|
||||||
schema={fetchQueryDefinition(query)}
|
schema={fetchQueryDefinition(query)}
|
||||||
editable={false}
|
editable={false}
|
||||||
|
{datasource}
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
@ -8,11 +8,11 @@ export function createAuthStore() {
|
||||||
subscribe: store.subscribe,
|
subscribe: store.subscribe,
|
||||||
checkAuth: async () => {
|
checkAuth: async () => {
|
||||||
const response = await api.get("/api/admin/users/self")
|
const response = await api.get("/api/admin/users/self")
|
||||||
const user = await response.json()
|
if (response.status !== 200) {
|
||||||
if (response.status === 200) {
|
|
||||||
store.update(state => ({ ...state, user }))
|
|
||||||
} else {
|
|
||||||
store.update(state => ({ ...state, user: null }))
|
store.update(state => ({ ...state, user: null }))
|
||||||
|
} else {
|
||||||
|
const user = await response.json()
|
||||||
|
store.update(state => ({ ...state, user }))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
login: async creds => {
|
login: async creds => {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "cli",
|
"name": "cli",
|
||||||
"version": "0.8.15",
|
"version": "0.8.18",
|
||||||
"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": {
|
||||||
|
|
|
@ -15,7 +15,7 @@ class AnalyticsClient {
|
||||||
}
|
}
|
||||||
|
|
||||||
capture(event) {
|
capture(event) {
|
||||||
if (this.manager.config.analyticsDisabled) return
|
if (this.configManager.config.analyticsDisabled) return
|
||||||
|
|
||||||
this.client.capture(event)
|
this.client.capture(event)
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,13 +11,13 @@ async function optOut() {
|
||||||
client.disable()
|
client.disable()
|
||||||
console.log(
|
console.log(
|
||||||
success(
|
success(
|
||||||
"Successfully opted out of budibase analytics. You can opt in at any time by running 'budi analytics opt-in'"
|
"Successfully opted out of Budibase analytics. You can opt in at any time by running 'budi analytics opt-in'"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(
|
console.log(
|
||||||
error(
|
error(
|
||||||
"Error opting out of budibase analytics. Please try again later.",
|
"Error opting out of Budibase analytics. Please try again later.",
|
||||||
err
|
err
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -30,12 +30,12 @@ async function optIn() {
|
||||||
client.enable()
|
client.enable()
|
||||||
console.log(
|
console.log(
|
||||||
success(
|
success(
|
||||||
"Successfully opted in to budibase analytics. Thank you for helping us make budibase better!"
|
"Successfully opted in to Budibase analytics. Thank you for helping us make Budibase better!"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(
|
console.log(
|
||||||
error("Error opting in to budibase analytics. Please try again later.")
|
error("Error opting in to Budibase analytics. Please try again later.")
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -51,12 +51,12 @@ async function status() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const command = new Command(`${CommandWords.ANALYTICS}`)
|
const command = new Command(`${CommandWords.ANALYTICS}`)
|
||||||
.addHelp("Control the analytics you send to budibase.")
|
.addHelp("Control the analytics you send to Budibase.")
|
||||||
.addSubOption("--optin", "Opt in to sending analytics to budibase", optIn)
|
.addSubOption("--optin", "Opt in to sending analytics to Budibase", optIn)
|
||||||
.addSubOption("--optout", "Opt out of sending analytics to budibase.", optOut)
|
.addSubOption("--optout", "Opt out of sending analytics to Budibase.", optOut)
|
||||||
.addSubOption(
|
.addSubOption(
|
||||||
"--status",
|
"--status",
|
||||||
"Check whether you are currently opted in to budibase analytics.",
|
"Check whether you are currently opted in to Budibase analytics.",
|
||||||
status
|
status
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -16,4 +16,4 @@ exports.AnalyticsEvents = {
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.BUDIBASE_POSTHOG_URL = "https://posthog.budi.live"
|
exports.BUDIBASE_POSTHOG_URL = "https://posthog.budi.live"
|
||||||
exports.BUDIBASE_POSTHOG_TOKEN = process.env.BUDIBASE_POSTHOG_TOKEN
|
exports.BUDIBASE_POSTHOG_TOKEN = "Oeq9KzIpZYaNsXIvHw5QTZWNpfiG_EOjAOpjTyAiitY"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@budibase/client",
|
"name": "@budibase/client",
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"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",
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
"dev:builder": "rollup -cw"
|
"dev:builder": "rollup -cw"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@budibase/string-templates": "^0.8.16",
|
"@budibase/string-templates": "^0.8.18",
|
||||||
"regexparam": "^1.3.0",
|
"regexparam": "^1.3.0",
|
||||||
"shortid": "^2.2.15",
|
"shortid": "^2.2.15",
|
||||||
"svelte-spa-router": "^3.0.5"
|
"svelte-spa-router": "^3.0.5"
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rollup/plugin-commonjs": "^18.0.0",
|
"@rollup/plugin-commonjs": "^18.0.0",
|
||||||
"@rollup/plugin-node-resolve": "^11.2.1",
|
"@rollup/plugin-node-resolve": "^11.2.1",
|
||||||
"@budibase/standard-components": "^0.8.16",
|
"@budibase/standard-components": "^0.8.18",
|
||||||
"fs-extra": "^8.1.0",
|
"fs-extra": "^8.1.0",
|
||||||
"jsdom": "^16.0.1",
|
"jsdom": "^16.0.1",
|
||||||
"postcss": "^8.2.9",
|
"postcss": "^8.2.9",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@budibase/server",
|
"name": "@budibase/server",
|
||||||
"email": "hi@budibase.com",
|
"email": "hi@budibase.com",
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"description": "Budibase Web Server",
|
"description": "Budibase Web Server",
|
||||||
"main": "src/electron.js",
|
"main": "src/electron.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -80,8 +80,8 @@
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@budibase/auth": "^0.18.6",
|
"@budibase/auth": "^0.18.6",
|
||||||
"@budibase/client": "^0.8.16",
|
"@budibase/client": "^0.8.18",
|
||||||
"@budibase/string-templates": "^0.8.16",
|
"@budibase/string-templates": "^0.8.18",
|
||||||
"@elastic/elasticsearch": "7.10.0",
|
"@elastic/elasticsearch": "7.10.0",
|
||||||
"@koa/router": "8.0.0",
|
"@koa/router": "8.0.0",
|
||||||
"@sendgrid/mail": "7.1.1",
|
"@sendgrid/mail": "7.1.1",
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
"zlib": "1.0.5"
|
"zlib": "1.0.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@budibase/standard-components": "^0.8.16",
|
"@budibase/standard-components": "^0.8.18",
|
||||||
"@jest/test-sequencer": "^24.8.0",
|
"@jest/test-sequencer": "^24.8.0",
|
||||||
"docker-compose": "^0.23.6",
|
"docker-compose": "^0.23.6",
|
||||||
"eslint": "^6.8.0",
|
"eslint": "^6.8.0",
|
||||||
|
|
|
@ -16,7 +16,9 @@ async function redirect(ctx, method) {
|
||||||
body: ctx.request.body,
|
body: ctx.request.body,
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
ctx.body = await response.json()
|
if (response.status !== 200) {
|
||||||
|
ctx.throw(response.status, response.statusText)
|
||||||
|
}
|
||||||
const cookie = response.headers.get("set-cookie")
|
const cookie = response.headers.get("set-cookie")
|
||||||
if (cookie) {
|
if (cookie) {
|
||||||
ctx.set("set-cookie", cookie)
|
ctx.set("set-cookie", cookie)
|
||||||
|
|
|
@ -119,9 +119,8 @@ exports.preview = async function (ctx) {
|
||||||
|
|
||||||
const enrichedQuery = await enrichQueryFields(fields, parameters)
|
const enrichedQuery = await enrichQueryFields(fields, parameters)
|
||||||
|
|
||||||
const rows = formatResponse(
|
const integration = new Integration(datasource.config)
|
||||||
await new Integration(datasource.config)[queryVerb](enrichedQuery)
|
const rows = formatResponse(await integration[queryVerb](enrichedQuery))
|
||||||
)
|
|
||||||
|
|
||||||
// get all the potential fields in the schema
|
// get all the potential fields in the schema
|
||||||
const keys = rows.flatMap(Object.keys)
|
const keys = rows.flatMap(Object.keys)
|
||||||
|
@ -130,6 +129,10 @@ exports.preview = async function (ctx) {
|
||||||
rows,
|
rows,
|
||||||
schemaFields: [...new Set(keys)],
|
schemaFields: [...new Set(keys)],
|
||||||
}
|
}
|
||||||
|
// cleanup
|
||||||
|
if (integration.end) {
|
||||||
|
integration.end()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.execute = async function (ctx) {
|
exports.execute = async function (ctx) {
|
||||||
|
@ -149,10 +152,13 @@ exports.execute = async function (ctx) {
|
||||||
ctx.request.body.parameters
|
ctx.request.body.parameters
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const integration = new Integration(datasource.config)
|
||||||
// call the relevant CRUD method on the integration class
|
// call the relevant CRUD method on the integration class
|
||||||
ctx.body = formatResponse(
|
ctx.body = formatResponse(await integration[query.queryVerb](enrichedQuery))
|
||||||
await new Integration(datasource.config)[query.queryVerb](enrichedQuery)
|
// cleanup
|
||||||
)
|
if (integration.end) {
|
||||||
|
integration.end()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.destroy = async function (ctx) {
|
exports.destroy = async function (ctx) {
|
||||||
|
|
|
@ -2,6 +2,7 @@ let { merge } = require("lodash")
|
||||||
let env = require("../environment")
|
let env = require("../environment")
|
||||||
|
|
||||||
const AWS_REGION = env.AWS_REGION ? env.AWS_REGION : "eu-west-1"
|
const AWS_REGION = env.AWS_REGION ? env.AWS_REGION : "eu-west-1"
|
||||||
|
exports.AWS_REGION = AWS_REGION
|
||||||
|
|
||||||
const TableInfo = {
|
const TableInfo = {
|
||||||
API_KEYS: {
|
API_KEYS: {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
const AWS = require("aws-sdk")
|
const AWS = require("aws-sdk")
|
||||||
const { FIELD_TYPES, QUERY_TYPES } = require("./Integration")
|
const { FIELD_TYPES, QUERY_TYPES } = require("./Integration")
|
||||||
|
const { AWS_REGION } = require("../db/dynamoClient")
|
||||||
|
|
||||||
const SCHEMA = {
|
const SCHEMA = {
|
||||||
docs: "https://github.com/dabit3/dynamodb-documentclient-cheat-sheet",
|
docs: "https://github.com/dabit3/dynamodb-documentclient-cheat-sheet",
|
||||||
|
@ -16,7 +17,7 @@ const SCHEMA = {
|
||||||
type: FIELD_TYPES.PASSWORD,
|
type: FIELD_TYPES.PASSWORD,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
secretKey: {
|
secretAccessKey: {
|
||||||
type: FIELD_TYPES.PASSWORD,
|
type: FIELD_TYPES.PASSWORD,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
@ -114,10 +115,22 @@ class DynamoDBIntegration {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async connect() {
|
end() {
|
||||||
|
this.disconnect()
|
||||||
|
}
|
||||||
|
|
||||||
|
connect() {
|
||||||
AWS.config.update(this.config)
|
AWS.config.update(this.config)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
disconnect() {
|
||||||
|
AWS.config.update({
|
||||||
|
secretAccessKey: undefined,
|
||||||
|
accessKeyId: undefined,
|
||||||
|
region: AWS_REGION,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
async create(query) {
|
async create(query) {
|
||||||
const params = {
|
const params = {
|
||||||
TableName: query.table,
|
TableName: query.table,
|
||||||
|
|
|
@ -306,11 +306,7 @@ class TestConfiguration {
|
||||||
return await this._req(config, null, controllers.layout.save)
|
return await this._req(config, null, controllers.layout.save)
|
||||||
}
|
}
|
||||||
|
|
||||||
async createUser(
|
async createUser(roleId = BUILTIN_ROLE_IDS.POWER) {
|
||||||
email = EMAIL,
|
|
||||||
password = PASSWORD,
|
|
||||||
roleId = BUILTIN_ROLE_IDS.POWER
|
|
||||||
) {
|
|
||||||
const globalId = `us_${Math.random()}`
|
const globalId = `us_${Math.random()}`
|
||||||
const resp = await this.globalUser(
|
const resp = await this.globalUser(
|
||||||
globalId,
|
globalId,
|
||||||
|
|
|
@ -73,6 +73,15 @@ class InMemoryQueue {
|
||||||
this._messages.push(newJob(this._name, msg))
|
this._messages.push(newJob(this._name, msg))
|
||||||
this._emitter.emit("message")
|
this._emitter.emit("message")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This removes a cron which has been implemented, this is part of Bull API.
|
||||||
|
* @param {string} cronJobId The cron which is to be removed.
|
||||||
|
*/
|
||||||
|
removeRepeatableByKey(cronJobId) {
|
||||||
|
// TODO: implement for testing
|
||||||
|
console.log(cronJobId)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = InMemoryQueue
|
module.exports = InMemoryQueue
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"svelte"
|
"svelte"
|
||||||
],
|
],
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"gitHead": "4b6efc42ed3273595c7a129411f4d883733d3321",
|
"gitHead": "4b6efc42ed3273595c7a129411f4d883733d3321",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@budibase/string-templates",
|
"name": "@budibase/string-templates",
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"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",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@budibase/worker",
|
"name": "@budibase/worker",
|
||||||
"email": "hi@budibase.com",
|
"email": "hi@budibase.com",
|
||||||
"version": "0.8.16",
|
"version": "0.8.18",
|
||||||
"description": "Budibase background service",
|
"description": "Budibase background service",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in New Issue