-
-
Notifications
You must be signed in to change notification settings - Fork 332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 0.1.4 #3429
Release 0.1.4 #3429
Conversation
Translate /src/systems, support passing arguments to RichText slots
Signed-off-by: Sahil Suman <[email protected]>
Signed-off-by: Sahil Suman <[email protected]>
…er-error [Bugfix:API] Fix DatetimeFieldOverflow error handling
Also fix user permissions to use mathesar system schemata
…mas within a database
filter and create schemas using connection_id
Update Installation Documentation for Release 0.1.4
Add release notes helper script
Version 0.1.4
except BadInstallationTarget: | ||
raise UnsupportedInstallationDatabase() | ||
except IntegrityError as e: | ||
raise IntegrityAPIException(e, status_code=status.HTTP_400_BAD_REQUEST) |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
except BadInstallationTarget: | ||
raise UnsupportedInstallationDatabase() | ||
except IntegrityError as e: | ||
raise IntegrityAPIException(e, status_code=status.HTTP_400_BAD_REQUEST) |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
except BadInstallationTarget: | ||
raise UnsupportedInstallationDatabase() | ||
except IntegrityError as e: | ||
raise IntegrityAPIException(e, status_code=status.HTTP_400_BAD_REQUEST) |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
@@ -53,6 +53,12 @@ | |||
e, | |||
status_code=status.HTTP_400_BAD_REQUEST | |||
) | |||
elif type(e.orig) is ExclusionViolation: | |||
raise database_api_exceptions.ExclusionViolationAPIException( | |||
e, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
@@ -80,6 +86,12 @@ | |||
e, | |||
status_code=status.HTTP_400_BAD_REQUEST | |||
) | |||
elif type(e.orig) is ExclusionViolation: | |||
raise database_api_exceptions.ExclusionViolationAPIException( | |||
e, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
@@ -108,6 +106,16 @@ | |||
e, | |||
status_code=status.HTTP_400_BAD_REQUEST, | |||
) | |||
elif isinstance(e.orig, DatetimeFieldOverflow): | |||
raise database_api_exceptions.InvalidDateAPIException( | |||
e, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
) | ||
else: | ||
raise database_api_exceptions.MathesarAPIException( | ||
e, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
…odel Migration to copy `MATHESAR_DATABASES` credentials
Release PR for 0.1.4
Checklist
Update index.md
).develop
branch of the repositoryvisible errors.
Developer Certificate of Origin
Developer Certificate of Origin