Abstra

Latest version: v2.15.0

Safety actively analyzes 629855 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 66

2.6.1

- 🐛 Fix stage icons size in Kanban view
- 🐛 Fix .py file being overwritten when creating new stage with existing file name
- 🐛 Fix last character from stage title could not be deleted when editing from Workflow Editor
- 🐛 Fix .py file path settings not being saved correctly on Workflow Editor

2.6.0

- 🐛 Fix offline mode
- ✨ Grid snap on workflow editor
- 💅 Better looking transitions
<p align="center">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/90128558-20e1-4898-ae46-ea2a3be8045a">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/6a745da9-522a-4394-8e78-7f1c4a2ce10f">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/d45ee834-5c56-4a0e-870c-ff86038d6c2f">
</p>

- ✨ Standarized title on settings pages
<p align="center">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/0d133470-81fe-4ca3-a915-bb61260afa9e">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/563f40c9-552c-4418-a5c1-aec234179795">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/1265889f-8124-492a-8c05-3f359ef02096">
</p>


- 🐛 Fix threads page scroll
- ✨ Preview home page on sidebar settings page
<p align="center">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/d9fff463-570a-4e09-a8d5-6fc641d8b062">
</p>


- ✨ Connect VS Code is now a page on the sidebar
<p align="center">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/34acb693-3122-46f2-833c-3f6a85d62d19">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/29ccaf47-7ced-4f8e-8a99-d1098e178130">
</p>


- ✨ The titles of 'Condition' and 'Iterator' are now assigned to the variable name
<p align="center">
<img width="600" alt="image" src="https://github.com/abstra-app/abstracloud/assets/8538337/3834cdfa-db7f-4d8c-a163-603b9cc17fba">
</p>


- 🐛 Fix threads page scroll area height
- 🐛 Fix: kanban link was being shown to non-logged users
- ✨ Improve project's navbar layout
- ✨ Improve project's unauthorized page layout

2.5.5

- 🐛 Fix: form editor was not showing end and error screens

2.5.4

- ✨ Add support for using nested values from thread data with condition and iterator stages
- ✨ Add support for using nested values from thread data with form notifications
- ✨ Better icons
- 🐛 Fix description text when creating a Stage
- 🐛 Fix icons disappearing from Kanban

2.5.3

✨ Comparators

You can use comparators like `is_ne`, `is_gt`, `is_lt`, `is_gte`, `is_lte`, etc..

python
from abstra.tables import select

users = select("users", where={"age": is_gt(18)}) age > 18
users = select("users", where={"age": is_between(18, 30)}) 18 <= age <= 30


Here is the full list of comparators:

| Function Name | SQL Equivalent | Description |
|---------------------|----------------------|-------------|
| `is_eq(value)` | `... = value` | Is equal to the value |
| `is_neq(value)` | `... <> value` | Is not equal to the value |
| `is_gt(value)` | `... > value` | Is greater than the value |
| `is_between(value1, value2)` | `... BETWEEN value1 AND value2` | Is between value1 and value2 |
| `is_gte(value)` | `... >= value` | Is greater than or equal to the value |
| `is_in(value)` | `... IN value` | Is in the list of values |
| `is_lt(value)` | `... < value` | Is less than the value |
| `is_like(value)` | `... LIKE value` | Matches the pattern in value |
| `is_lte(value)` | `... <= value` | Is less than or equal to the value |
| `is_not_in(value)` | `... NOT IN value` | Is not in the list of values |
| `is_not_like(value)`| `... NOT LIKE value` | Does not match the pattern in value |
| `is_null()` | `... IS NULL` | Is null |
| `is_not_null()` | `... IS NOT NULL` | Is not null |
| `is_ilike(value)` | `... ILIKE value` | Case-insensitive version of `is_like` |
| `is_not_ilike(value)`| `... NOT ILIKE value`| Case-insensitive version of `is_not_like` |


Also, this release includes a few extra features and bug fixes:
- Deprecate `abstra serve` in favor of `abstra editor`
- Improve logo field description
- Improve transition labels
- Update links with on brand color

2.5.2

- Require minimum dependency versions instead of exact ones, preventing downgrades and conflicts

Page 5 of 66

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.