Commit Graph

500 Commits

Author SHA1 Message Date
Budibase Staging Release Bot de1b2c3476 v1.0.105-alpha.36 2022-04-25 11:19:53 +00:00
Rory Powell f6284cc697 Sync versions of pro and backend-core 2022-04-25 12:19:36 +01:00
Budibase Release Bot 650cf2a82f v1.0.120 2022-04-25 10:50:20 +00:00
Martin McKeaveney bbce5a9c7f Merge branch 'master' into gsheets-updates 2022-04-25 09:27:38 +01:00
Martin McKeaveney 46b424308f only save refresh token in google auth 2022-04-24 23:33:50 +01:00
Martin McKeaveney 84d2bb3cf5 auto fetch access token in gsheets integration 2022-04-24 23:32:47 +01:00
Budibase Release Bot 00078b6cad v1.0.119 2022-04-23 12:20:38 +00:00
Budibase Release Bot 81adeafd52 v1.0.118 2022-04-23 12:13:13 +00:00
mike12345567 7627230be6 Fixing an issue we've experienced with couch, using a base64 cookie that we control manually. 2022-04-22 17:24:50 +01:00
Budibase Release Bot f7e5afab79 v1.0.117 2022-04-22 15:57:50 +00:00
Dean 9ece75082f Merge remote-tracking branch 'origin/develop' into feature/new-app-publish-workflow 2022-04-22 16:39:59 +01:00
Budibase Staging Release Bot 17f5261b68 v1.0.105-alpha.35 2022-04-22 15:27:20 +00:00
Budibase Release Bot 272e4fe959 v1.0.116 2022-04-22 14:39:34 +00:00
Michael Drury 94419024a4 Merge pull request #5510 from Budibase/fix/pouch-leak
PouchDB memory leak protection
2022-04-22 15:32:51 +01:00
Budibase Staging Release Bot 894bcdaca2 v1.0.105-alpha.34 2022-04-22 13:43:43 +00:00
Budibase Staging Release Bot 30cdd57ab3 v1.0.105-alpha.33 2022-04-22 11:52:44 +00:00
Budibase Staging Release Bot d91558486c v1.0.105-alpha.32 2022-04-22 10:58:15 +00:00
Budibase Staging Release Bot a8b963083c v1.0.105-alpha.31 2022-04-22 10:11:20 +00:00
Budibase Release Bot ab6473dfb7 v1.0.115 2022-04-22 09:55:33 +00:00
Budibase Staging Release Bot 7bf32ddcb2 v1.0.105-alpha.30 2022-04-22 09:55:26 +00:00
Budibase Staging Release Bot e2e5f73549 v1.0.105-alpha.29 2022-04-22 09:30:17 +00:00
Budibase Staging Release Bot 21735dae0a v1.0.105-alpha.28 2022-04-22 08:54:21 +00:00
Budibase Staging Release Bot f0eaf68a5e v1.0.105-alpha.27 2022-04-22 08:11:17 +00:00
Budibase Staging Release Bot 1a9e89c211 v1.0.105-alpha.26 2022-04-22 07:56:32 +00:00
Budibase Release Bot 980c9d1444 v1.0.114 2022-04-21 14:31:17 +00:00
mike12345567 7083470baa Adding a dep:clean function, cleaning up lock files and fixing backend-core test which did not utilise tenancy (no global db). 2022-04-21 15:20:23 +01:00
mike12345567 345bbf603c Fixing issues with test cases - a lot of test cases didn't setup tenancy in any format, which now means that the API endpoints they call would not have access to a Global DB instance. Also had to disable the closing of the database in test as this was removing the database from memory, meaning future calls would find an empty database when they opened it. 2022-04-21 14:56:14 +01:00
Dean bfce5ccf3f Merge remote-tracking branch 'origin/develop' into feature/new-app-publish-workflow 2022-04-21 14:46:17 +01:00
Budibase Staging Release Bot 851c62d71a v1.0.105-alpha.25 2022-04-21 13:36:43 +00:00
Dean 61150c82cf Merge remote-tracking branch 'origin/develop' into feature/new-app-publish-workflow 2022-04-21 14:10:58 +01:00
Budibase Staging Release Bot 389221a58e v1.0.105-alpha.24 2022-04-21 11:52:07 +00:00
mike12345567 13cb5f7f7c Adding another check to make sure context is the same. 2022-04-20 23:13:08 +01:00
mike12345567 151ed604f8 Fixing some issues detected by the test cases, making the in-use mechanism for context more clear to complete avoid stack up of contexts (leading to loss of knowledge around previous databases. 2022-04-20 23:10:39 +01:00
mike12345567 6afe3a28ef Closing global DB using the standard function - not directly. 2022-04-20 18:07:48 +01:00
mike12345567 9899781fc5 Some updates, making sure databases will always close directly using finally checks around the actual tasks, updating how replication works to have a close statement (to make sure it is controlled correctly) and then updating to PouchDB 7.3.0 for one of the memory leak fixes. 2022-04-20 17:33:42 +01:00
Rory Powell d2a4e0a934 Merge branch 'develop' into feature/licensing 2022-04-20 14:59:36 +01:00
Dean 0305719fe3 Merge remote-tracking branch 'origin/develop' into feature/new-app-publish-workflow 2022-04-20 12:54:58 +01:00
Budibase Staging Release Bot 282d2b73cc v1.0.105-alpha.23 2022-04-20 11:45:43 +00:00
Dean 04b4ee7a51 Merge remote-tracking branch 'origin/develop' into feature/new-app-publish-workflow 2022-04-20 09:10:09 +01:00
Budibase Staging Release Bot b18c47a586 v1.0.105-alpha.22 2022-04-20 07:47:53 +00:00
mike12345567 192fb1307e Initial version of memory leak protection, making sure that PouchDB databases are closed correctly after use, using a combination of closures wrapping DB gets (this replaces the getDB, leaving only a dangerousGetDB function which can be used in very very specific scenarios) and then closing the DB as part of CLS hooked functions finishing. Also moving the GlobalDB init to the tenancy middleware as this is used everywhere in the worker/app services - means that not all getGlobalDB calls require an async closure around them. 2022-04-19 19:42:52 +01:00
Rory Powell 41144db055 Remove remaining direct usage of CouchDB. Add common pouch config to backend-core 2022-04-19 16:45:27 +01:00
Dean f78aaa640f Code style check 2022-04-19 14:56:56 +01:00
Dean c7b6453862 Merge remote-tracking branch 'origin/develop' into feature/new-app-publish-workflow 2022-04-19 14:45:46 +01:00
Dean 26c19891bb Unpublish refactored to stop development applications being mistakenly deleted. Minor updates to the modal content component to allow the replacement of the header. Further work to implement the publishing workflow changes 2022-04-19 14:38:09 +01:00
Budibase Staging Release Bot c8d3c9ded4 v1.0.105-alpha.21 2022-04-19 12:05:43 +00:00
Budibase Staging Release Bot d1c6aaa245 v1.0.105-alpha.20 2022-04-19 08:48:18 +00:00
Budibase Staging Release Bot c53c350879 v1.0.105-alpha.19 2022-04-14 19:50:11 +00:00
Budibase Staging Release Bot 8c613db188 v1.0.105-alpha.18 2022-04-14 16:55:46 +00:00
Budibase Staging Release Bot 3b7a03c7a9 v1.0.105-alpha.17 2022-04-14 12:05:50 +00:00
Andrew Kingston f6eef900ad Merge pull request #5272 from Budibase/cheeks-lab-day-devtools
DevTools
2022-04-14 12:57:01 +01:00
Budibase Staging Release Bot b37dd1c229 v1.0.105-alpha.16 2022-04-14 09:14:11 +00:00
Budibase Staging Release Bot 5044094fb0 v1.0.105-alpha.15 2022-04-14 07:49:18 +00:00
Rory Powell 03c3ebbbbf Handle no developers on first time startup migration 2022-04-13 23:14:36 +01:00
Rory Powell fa1f9ad6cc Merge branch 'develop' into feature/licensing 2022-04-13 21:24:07 +01:00
Budibase Staging Release Bot 06f22413cb v1.0.105-alpha.14 2022-04-13 13:20:56 +00:00
Budibase Release Bot f2abbc8377 v1.0.113 2022-04-13 12:21:10 +00:00
Budibase Staging Release Bot 0197b96be4 v1.0.105-alpha.13 2022-04-13 11:22:17 +00:00
Budibase Staging Release Bot 69904fd870 v1.0.105-alpha.12 2022-04-13 10:40:51 +00:00
Budibase Staging Release Bot b8042b60fe v1.0.105-alpha.11 2022-04-13 09:19:50 +00:00
Rory Powell 03ba6d914f Merge branch 'develop' into feature/licensing 2022-04-12 16:18:41 +01:00
Budibase Release Bot c717273996 v1.0.112 2022-04-12 11:03:43 +00:00
Budibase Staging Release Bot 4340a46fe7 v1.0.105-alpha.10 2022-04-12 09:14:08 +00:00
Budibase Release Bot 37d723fa07 v1.0.111 2022-04-11 08:38:36 +00:00
Budibase Staging Release Bot 6fce5fce89 v1.0.105-alpha.9 2022-04-11 08:16:09 +00:00
Budibase Release Bot 7eb13151f3 v1.0.110 2022-04-08 09:34:45 +00:00
Budibase Staging Release Bot 404ec5cec1 v1.0.105-alpha.8 2022-04-07 13:27:06 +00:00
Dean 352c021955 Refactored the invalidate session functionality. 2022-04-07 12:32:00 +01:00
Budibase Staging Release Bot 50729710c5 v1.0.105-alpha.7 2022-04-06 21:25:19 +00:00
Martin McKeaveney bff43d37d5 Merge pull request #5151 from mslourens/prevent_multiple_sessions
invalidate sessions before login
2022-04-06 22:18:17 +01:00
Budibase Staging Release Bot bb7c4e1d41 v1.0.105-alpha.6 2022-04-06 20:15:30 +00:00
Budibase Release Bot d0773466d3 v1.0.109 2022-04-06 14:17:15 +00:00
Budibase Staging Release Bot 9746ac3ac6 v1.0.105-alpha.5 2022-04-06 13:05:51 +00:00
Andrew Kingston c2d61d8ebc Merge branch 'develop' of github.com:Budibase/budibase into cheeks-lab-day-devtools 2022-04-06 11:50:43 +01:00
Budibase Staging Release Bot 57f5f5731a v1.0.105-alpha.4 2022-04-06 10:38:23 +00:00
Budibase Release Bot 496b582538 v1.0.108 2022-04-06 10:32:58 +00:00
Budibase Release Bot d1ea717bdd v1.0.107 2022-04-06 09:48:21 +00:00
Budibase Staging Release Bot 1660c3372a v1.0.105-alpha.3 2022-04-06 08:58:34 +00:00
Budibase Release Bot b9bf678770 v1.0.106 2022-04-05 13:38:48 +00:00
Budibase Staging Release Bot 43b6714a98 v1.0.105-alpha.2 2022-04-05 11:56:35 +00:00
Michael Drury 9ca989936b Merge pull request #5256 from Budibase/dep/2022-05-04
Minimist 1.2.6 dependency update
2022-04-05 12:50:08 +01:00
Budibase Staging Release Bot 3725fa4ca5 v1.0.105-alpha.1 2022-04-05 11:22:24 +00:00
mike12345567 f67f923e4a Merge branch 'dependabot/npm_and_yarn/minimist-1.2.6' of github.com:Budibase/budibase into dep/2022-05-04 2022-04-05 12:20:38 +01:00
Budibase Release Bot 6840d8d166 v1.0.105 2022-04-05 11:16:17 +00:00
Budibase Staging Release Bot 476386f35a v1.0.105-alpha.0 2022-04-05 10:46:38 +00:00
dependabot[bot] b0ee581f9e Bump minimist from 1.2.5 to 1.2.6
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-05 10:41:37 +00:00
Budibase Release Bot defd0a29a7 v1.0.104 2022-04-04 09:54:00 +00:00
Budibase Release Bot db768fa6f6 v1.0.103 2022-03-31 09:27:58 +00:00
Budibase Release Bot b94a48eac3 v1.0.102 2022-03-31 08:47:33 +00:00
Budibase Release Bot 42c82f30fe v1.0.101 2022-03-30 16:29:43 +00:00
Martin McKeaveney cd8188a800 bump versions 2022-03-30 17:19:41 +01:00
Budibase Staging Release Bot 733b20c0b4 v1.0.98-alpha.9 2022-03-30 15:25:14 +00:00
Martin McKeaveney 034408b3c2 merge with master 2022-03-30 15:44:22 +01:00
Budibase Release Bot f5e10d7a96 v1.0.100 2022-03-30 14:30:40 +00:00
Budibase Staging Release Bot 96ed7abf85 v1.0.98-alpha.8 2022-03-30 12:21:32 +00:00
Budibase Staging Release Bot be20424695 v1.0.98-alpha.7 2022-03-30 11:45:01 +00:00
Budibase Staging Release Bot f8f8d3c9cb v1.0.98-alpha.6 2022-03-29 12:03:54 +00:00
Budibase Staging Release Bot 21f7599509 v1.0.98-alpha.5 2022-03-29 10:18:40 +00:00
Maurits Lourens 5f91841a26 move invalidation to the creation of a session 2022-03-29 11:59:16 +02:00
Budibase Release Bot 04b8886ce8 v1.0.99 2022-03-29 09:23:26 +00:00
Maurits Lourens 65b3561244 invalidate sessions before login 2022-03-29 10:06:54 +02:00
Budibase Staging Release Bot be02c8be94 v1.0.98-alpha.4 2022-03-29 07:24:22 +00:00
Martin McKeaveney 56b1d1dbc1 Merge pull request #5135 from Budibase/feature/googlesheets-release
Feature/googlesheets release
2022-03-29 08:18:11 +01:00
Budibase Staging Release Bot 866965c02c v1.0.98-alpha.3 2022-03-29 06:59:36 +00:00
Michael Drury 9890b45d71 Merge pull request #5134 from Budibase/fix/5103
Fix for RBAC on apps built from templates containing public screens
2022-03-28 17:17:19 +01:00
Martin McKeaveney aed9bfc728 fixing google sheets bug, respect google configuration hierarchy 2022-03-28 16:44:33 +01:00
mike12345567 88437e11d0 Fix for #5103 - some templates are built on an older version that stored permissions differently, we can't migrate these as they will keep being added, easiest to just support the old method (apply the old rule and convert to the new format when retrieving roles). 2022-03-28 16:34:50 +01:00
Budibase Staging Release Bot 52b33fce2e v1.0.98-alpha.2 2022-03-28 13:07:09 +00:00
Martin McKeaveney dc940d33db fix launch.json 2022-03-28 12:03:44 +01:00
Budibase Staging Release Bot 7ee95962e1 v1.0.98-alpha.1 2022-03-25 17:00:35 +00:00
Budibase Release Bot aeee34cb7c v1.0.98 2022-03-25 16:59:39 +00:00
Rory Powell 7db6075f82 Fixes 2022-03-25 16:08:12 +00:00
Budibase Staging Release Bot 3776c8b8d4 v1.0.98-alpha.0 2022-03-25 14:13:59 +00:00
Budibase Release Bot dc292a072c v1.0.97 2022-03-25 12:22:30 +00:00
Budibase Release Bot afb1dc5210 v1.0.96 2022-03-25 12:04:42 +00:00
Rory Powell 36a7323676 Merge branch 'master' into fix/cross-tenant-apps-with-session 2022-03-25 10:53:10 +00:00
Budibase Release Bot 79f6f92dd4 v1.0.95 2022-03-24 18:31:41 +00:00
Rory Powell 819f9b75de Link app context with tenancy, remove app tenancy middleware 2022-03-24 13:04:49 +00:00
Rory Powell 5851525c88 Merge branch 'master' into fix/cross-tenant-apps-with-session 2022-03-23 16:45:36 +00:00
Rory Powell a68abf2730 Fix cross tenant apps with session 2022-03-23 16:45:06 +00:00
Budibase Release Bot 8f4a335a84 v1.0.94 2022-03-22 13:08:40 +00:00
Rory Powell 0a4b1eb552 Tests complete + backwards compatibility for deployment 2022-03-22 00:23:22 +00:00
Budibase Release Bot 29021b4600 v1.0.93 2022-03-21 17:15:53 +00:00
Rory Powell 715d42d3e6 Merge branch 'develop' into feature/licensing 2022-03-21 17:13:16 +00:00
Budibase Release Bot 4ee5256ad3 v1.0.92 2022-03-21 14:34:43 +00:00
Budibase Staging Release Bot 69532f59ce v1.0.91-alpha.6 2022-03-21 08:42:06 +00:00
Budibase Staging Release Bot 4d7ad2b541 v1.0.91-alpha.5 2022-03-21 08:32:22 +00:00
Budibase Staging Release Bot 572abdd0a9 v1.0.91-alpha.4 2022-03-21 08:13:27 +00:00
Rory Powell 795b48bfb0 Published apps, automations and query count quotas 2022-03-20 01:13:54 +00:00
Budibase Release Bot 01fd1f3124 v1.0.91 2022-03-18 16:05:00 +00:00
Budibase Staging Release Bot b0f33de743 v1.0.91-alpha.3 2022-03-18 10:13:46 +00:00
Budibase Staging Release Bot c9afb9e074 v1.0.91-alpha.2 2022-03-18 09:56:54 +00:00
Rory Powell 661367333d Add developer usage restrictions to SSO user creation 2022-03-18 08:01:31 +00:00
Budibase Staging Release Bot 05607adccb v1.0.91-alpha.1 2022-03-18 07:23:08 +00:00
Rory Powell e695a57853 Better error handling around license errors 2022-03-16 17:29:47 +00:00
Budibase Staging Release Bot 6ef4e4840a v1.0.91-alpha.0 2022-03-16 12:34:44 +00:00
Budibase Release Bot ac32c2ee5f v1.0.90 2022-03-16 11:37:15 +00:00
Budibase Release Bot eb747c98b1 v1.0.89 2022-03-15 11:26:55 +00:00
Budibase Release Bot 243838898a v1.0.88 2022-03-14 21:51:54 +00:00
Michael Drury fd824f70ae Merge pull request #4905 from Budibase/fix/public-api-tenancy
Various release fixes (Public API)
2022-03-14 21:45:46 +00:00
mike12345567 5b79126dbf Fixing an issue with the public API loading for the first time in a multi-tenant environment, also fixing an issue in self host when switching between environments with different secrets. 2022-03-14 19:05:02 +00:00
Budibase Release Bot 5b0a5f8dc1 v1.0.87 2022-03-14 17:13:11 +00:00
mike12345567 d4e9e9d522 Merge branch 'master' of github.com:Budibase/budibase 2022-03-14 17:06:40 +00:00
mike12345567 d55a385072 Fixing an issue with detecting fully qualified Redis URL despite not in use. 2022-03-14 16:50:01 +00:00
Budibase Release Bot 4d8578b785 v1.0.86 2022-03-14 16:01:47 +00:00
Budibase Release Bot 48abc23302 v1.0.85 2022-03-14 12:09:21 +00:00
Budibase Release Bot eab8f86793 v1.0.84 2022-03-13 10:52:05 +00:00
Budibase Release Bot 92bf490066 v1.0.83 2022-03-10 17:45:17 +00:00
mike12345567 30651e81d5 Making the URL optional for application creation/update in OpenAPI spec, removing unused parameter and fixing getRedisOptions function to work with fully qualified URLs. 2022-03-10 15:53:23 +00:00
Budibase Release Bot ff11d0ed02 v1.0.82 2022-03-10 01:06:14 +00:00