Sam Rose
edb3b685b5
Remove node-fetch mock from backend-core and replace with nock.
2024-08-07 15:26:04 +01:00
Adria Navarro
5df0c85a9b
Merge branch 'master' into BUDI-8064/doc-writethrough
2024-03-07 10:31:33 +01:00
Adria Navarro
d06f9e0a1c
Add bulk delete
2024-03-07 00:25:12 +01:00
Adria Navarro
ee86cd30d6
Merge branch 'master' into BUDI-8046/redis-delete-if-value
2024-03-06 15:46:16 +01:00
Adria Navarro
baa58990c8
Merge branch 'master' into BUDI-8046/redis-increment
2024-03-06 12:32:51 +01:00
Adria Navarro
c198a5ae03
Update packages/backend-core/src/redis/redis.ts
...
Co-authored-by: Sam Rose <hello@samwho.dev>
2024-03-06 12:23:04 +01:00
Adria Navarro
4baadadaa8
Use pipeline instead of eval
2024-03-06 12:22:20 +01:00
Adria Navarro
355dea5b05
Add deleteIfValue
2024-03-06 00:33:53 +01:00
Adria Navarro
192d7deb2a
Handle errors
2024-03-05 22:52:44 +01:00
Adria Navarro
339ca403bf
Add redis.increment
2024-03-05 22:43:28 +01:00
Adria Navarro
de0527384a
Support complex objects
2024-03-05 18:10:45 +01:00
Adria Navarro
f2330144de
Clean
2024-03-05 17:57:28 +01:00
Adria Navarro
8f9e8b60c3
Fix types
2024-03-05 17:19:26 +01:00
Adria Navarro
1b0a943e13
Atomic expires
2024-03-05 17:04:46 +01:00
Adria Navarro
49db47e1fd
Add bulk store
2024-03-05 16:46:33 +01:00
Adria Navarro
56870bed5b
Typings
2024-03-05 16:30:45 +01:00
Adria Navarro
e076c0e5f5
Use typed redis clients
2024-03-05 15:10:51 +01:00
mike12345567
3cfe641486
Fixing issue with Redis disconnection - this should correctly reconnect the service when Redis service becomes available again.
2023-12-22 18:28:07 +00:00
mike12345567
a427d990a1
Quick addition - if the object has been deleted but the key is still known, then CouchDB will alert us to the fact that it is deleted, leaving the response in a weird state.
2023-11-10 11:58:07 +00:00
mike12345567
08c4ba0097
Updating redis option functions usage, as it is no longer returned as a part of the getRedisOptions response.
2023-11-03 18:06:12 +00:00
mike12345567
f8f1ec4ce9
Removing old redisProtocol string - it is causing confusion and should not be necessary.
2023-11-03 17:17:20 +00:00
Sam Rose
767900aec6
Remove type information from JSDoc in .ts files, it's redundant.
2023-10-17 16:46:32 +01:00
Adria Navarro
9cd7ef7827
Typing redis
2023-09-19 14:32:05 +02:00
Adria Navarro
10fe86e30d
Type
2023-09-18 12:44:58 +02:00
mike12345567
c13530ef32
Stop attempt at bundling ioredis-mock, only need to check at runtime.
2023-06-02 13:59:33 +01:00
mike12345567
ddeb25b68d
Updating mock redis to only import if it is needed.
2023-06-02 11:52:50 +01:00
Michael Drury
a3f9759a47
Reverting ioredis-mock removal for test cases - will come back to this in future as it currently breaks pro tests.
2023-06-01 00:02:55 +01:00
mike12345567
fba3ec987e
Merge branch 'develop' of github.com:Budibase/budibase into fix/datasource-info-endpoint
2023-05-31 17:37:17 +01:00
mike12345567
249625ad1a
Updating backend tests to actually utilise the redis container which is spun up as part of the tests, doing away with the somewhat problematic ioredis-mock which was breaking some tests due to the addition of the changes for multi-dev collab.
2023-05-31 17:18:01 +01:00
Andrew Kingston
e3b5d711df
Disable redis select command in tests
2023-05-31 16:27:49 +01:00
Andrew Kingston
05e34076f7
Fully rewrite websocket redis integration to use individual keys per session, enable TTLs on sesisons, prune sessions when users connect and add a heartbeat to sockets
2023-05-31 15:13:22 +01:00
Andrew Kingston
d926650232
Add back in functionality to select different redis DB's per client
2023-05-31 10:52:39 +01:00
Martin McKeaveney
167dfd39d7
fix ts build
2023-05-04 13:32:17 +01:00
Martin McKeaveney
e75e91e248
control all redis clustering through env var
2023-04-28 19:53:15 +01:00
Martin McKeaveney
f73af919a7
attaching clustered mode to an env var
2023-04-28 19:09:22 +01:00
mike12345567
cf5316ec8d
General fixes for open handles, attempting to find and close all issues in server which are stopping shutdown of Jest suite.
2023-03-27 19:38:49 +01:00
Rory Powell
940de8b6a0
Run CI steps in parallel ( #9760 )
...
* Parallel CI
* Add build to integration test
* Add checkout to top of each run
* Revert branch update for ci job
* Experiment with --runInBand for CI
* Fix intermittent backend-core migration test failure
* Fix hanging worker redis connection
* Update naming from reset to newTenant
2023-02-21 17:13:24 +00:00
Rory Powell
07e5598538
Enable use of redis container in worker tests
2023-02-13 12:09:16 +00:00
Rory Powell
fba7ef26ad
Replace ts-jest with swc/jest ( #9289 )
...
- Add swc dependencies
- Add transform change to jest.config.ts
- Replace `export =` with `export default` in src code to enable code coverage to work with swc transformer
- Restructure backend-core errors package to allow for exporting error classes with ESM syntax
- Update backend-core to no longer use `export =`, export individual packages instead of replacing with `export default` for backwards compatibility
- Update event publishers to use `export default` - this was required for the `jest.spyOn` usage inside backend-core common mocks
- Restructure some jest.mock usages where declaring the jest.fn as a variable outside of the package mock threw an error
2023-01-11 09:37:37 +00:00
mike12345567
d3c4c99e16
Complete conversion of backend-core to Typescript.
2022-11-24 18:48:51 +00:00