Christian Clauss
58001f367a
🐛 Fix undefined name RuntimeException on manage.py script
...
Python defines [`RuntimeError`](https://docs.python.org/3.7/library/exceptions.html#RuntimeError )
but it does not define `RuntimeException` so a `NameError` will be raised when any of these lines
are executed.
% `python3 -c "RuntimeException('This is a test...')"`
```
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'RuntimeException' is not defined
```
% `flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics`
```
./backend/scripts/manage.py:22:15: F821 undefined name 'RuntimeException'
raise RuntimeException(f"invalid PREPL_URI: {PREPL_URI}")
^
./backend/scripts/manage.py:25:15: F821 undefined name 'RuntimeException'
raise RuntimeException(f"invalid PREPL_URI: {PREPL_URI}")
^
./backend/scripts/manage.py:49:23: F821 undefined name 'RuntimeException'
raise RuntimeException("unexpected response from PREPL")
^
3 F821 undefined name 'RuntimeException'
3
```
2023-02-05 11:18:01 +01:00
Alejandro Alonso
2ea81c0114
Merge remote-tracking branch 'origin/staging' into develop
2023-02-02 18:06:59 +01:00
Andrey Antukh
1325e46192
✨ Improve internal state validation on db module
2023-02-02 14:20:13 +01:00
Andrey Antukh
071ecca875
🐛 Fix internal executor naming issue
2023-02-02 13:38:04 +01:00
Andrey Antukh
d91e6e381e
🔧 Do not compile clj source (allow dynamic instrumentation on runtime)
2023-02-02 13:38:04 +01:00
Andrey Antukh
b54bf2bba4
📎 Add helpers for instrumenting vars
2023-02-02 13:38:04 +01:00
Andrey Antukh
32b8a2c243
⬆️ Update dependencies on backend and common
2023-02-02 13:38:04 +01:00
Andrey Antukh
bb055a3c84
♻️ Refactor logging subsystem and error reporting
2023-02-02 13:38:04 +01:00
Pablo Alba
cc5f245209
🐛 Fix social links broken
2023-02-02 13:13:24 +01:00
Andrés Moya
dd2321a37b
🐛 Fix weird numeration creating elements in dashboard
2023-02-02 10:19:36 +01:00
Andrey Antukh
50ee0ad3fd
Merge remote-tracking branch 'origin/staging' into develop
2023-02-01 23:25:25 +01:00
Andrey Antukh
86712f977d
🐛 Skip unnecesary mutation events from audit log
2023-02-01 18:06:12 +01:00
Andrey Antukh
d666564112
🐛 Fix loading issue on app.rpc ns
2023-02-01 16:39:59 +01:00
Andrey Antukh
f4d4559cd4
💄 Add cosmetic improvemnts on http client validation
2023-02-01 16:39:59 +01:00
Alejandro Alonso
e9c3b0567b
Merge remote-tracking branch 'origin/staging' into develop
2023-02-01 13:24:39 +01:00
Andrey Antukh
e8ea61ee78
🐛 Fix incorrect state management on webhooks crud
2023-02-01 10:15:25 +01:00
Andrey Antukh
56cf7064f5
Merge remote-tracking branch 'origin/staging' into develop
2023-01-31 23:04:26 +01:00
Alejandro Alonso
5a8f8ba349
🐛 Fix create team and invite
2023-01-31 12:09:13 +01:00
Alejandro Alonso
11db7590eb
Merge remote-tracking branch 'origin/staging' into develop
2023-01-30 15:39:17 +01:00
Andrey Antukh
f0386ef7b0
⬆️ Update yetti to v9.12
...
Fixes encoding bug on multipart uploads
2023-01-30 15:29:53 +01:00
Alejandro Alonso
2c38f31aa9
🐛 Fix clean archived auditlog
2023-01-30 13:11:50 +01:00
Andrés Moya
e1d1ecbc24
Merge remote-tracking branch 'origin/staging' into develop
2023-01-30 12:47:20 +01:00
Alejandro Alonso
c59fc87fc4
🐛 Fix styling info at the libraries modal
2023-01-30 12:22:50 +01:00
Pablo Alba
6e698110d6
🐛 Fix resend invitation doesn't reset the expiration date
2023-01-27 16:56:19 +01:00
Andrés Moya
506c2b8d7b
🔧 Add script to rename some layout attrs in existing files
2023-01-27 13:11:46 +01:00
Andrey Antukh
504f75a1cf
🐛 Fix health check http endpoint
2023-01-23 09:59:55 +01:00
Andrey Antukh
fa17ce5d40
📎 Avoid email index change on profile indexes migration
2023-01-23 09:56:21 +01:00
Andrey Antukh
14f39b8028
🎉 Add unit tests for access tokens rpc methods
2023-01-23 09:56:21 +01:00
Andrey Antukh
7e9a5c4a8f
Merge remote-tracking branch 'origin/staging' into develop
2023-01-23 09:55:50 +01:00
Andrey Antukh
231ac00934
🎉 Add manage.py script for docker images
2023-01-20 17:14:32 +01:00
Andrey Antukh
bf8a514871
✨ Add more flexible prepl api for external tools
2023-01-20 16:52:58 +01:00
Andrey Antukh
8d60b3fc3e
🐛 Add missing hint on duplicate profile exception
2023-01-20 16:52:58 +01:00
Andrey Antukh
8468e7af24
🎉 Add admin example service to default docker compose file
2023-01-20 16:52:58 +01:00
Andrey Antukh
62aa6569f2
Merge remote-tracking branch 'origin/staging' into develop
2023-01-20 09:59:56 +01:00
Andrey Antukh
73658c47f3
🐛 Fix issues on rlimit module
2023-01-19 15:41:12 +01:00
Andrey Antukh
d98fd76032
🎉 Add namespace with a set of helpers for access throught the BREPL
2023-01-19 15:41:12 +01:00
Andrey Antukh
2fef3dc881
🎉 Add prepl support
...
And rename the current repl to urepl (user-repl).
2023-01-19 15:41:12 +01:00
Andrey Antukh
9a407ab714
🎉 Add namespace with a set of helpers for access throught the BREPL
2023-01-19 12:42:39 +01:00
Andrey Antukh
8a5afefc1c
🎉 Add prepl support
...
And rename the current repl to urepl (user-repl).
2023-01-18 17:14:22 +01:00
Andrey Antukh
3dd65db651
✨ Use commands instead of mutations for assets upload
...
And properly deprecate media rpc mutations
2023-01-18 11:20:36 +01:00
Andrey Antukh
1e1f551383
✨ Move share link mutations to commands
2023-01-18 10:51:58 +01:00
Andrey Antukh
4258a840ac
♻️ Use proper namespace qualified access to pool
2023-01-18 10:51:58 +01:00
Andrey Antukh
bca98f91e4
🎉 Add rpc methods for access tokens
2023-01-18 10:51:58 +01:00
Andrey Antukh
a79d2cf899
🔥 Remove deprecated teams mutations and queries
2023-01-18 10:51:58 +01:00
Andrey Antukh
6a699d7f09
✨ Properly move viewer queries to commands
...
And change deprecation version on viewer queries
2023-01-18 10:51:58 +01:00
Andrey Antukh
ba2729fa4a
✨ Move fonts queries and mutations to commands
2023-01-18 10:51:58 +01:00
Andrey Antukh
dba7a9d424
✨ Move projects queries and mutations to commands
2023-01-18 10:51:58 +01:00
Andrey Antukh
dc77c6b655
✨ Remove deprecated code and reoganize file related methods
2023-01-18 10:51:58 +01:00
Andrey Antukh
ed87814f50
🐛 Properly handle storage features on binfile import
2023-01-18 10:51:58 +01:00
Andrey Antukh
d8faff47a8
♻️ Move profile queries and mutations to commands
2023-01-18 10:51:58 +01:00