- Apr 23, 2025
-
-
Matt authored
The Postgresql varient caused MySQL migrations to throw the following: ``` sqlalchemy.exc.UnsupportedCompilationError: Compiler <sqlalchemy.dialects.mysql.base.MySQLDDLCompiler object at 0x7f47b1a89220> can't render element of type <class 'sqlalchemy.dialects.postgresql.base.CreateEnumType'> (Background on this error at: https://sqlalche.me/e/14/l7de) ``` Issue #562
-
- Apr 22, 2025
-
- Apr 21, 2025
-
-
Matt authored
fix: Fix sql query, where table is being selected, which treats first argument as a where clause, resulting in the column being added to "WHERE" without an operator. This resulted in: ``` sqlalchemy.exc.ProgrammingError: (psycopg2.errors.DatatypeMismatch) argument of AND must be type boolean, not type character varying ``` Issue #562
-
Matt authored
fix: Include all selected fields that are grouped by in analytics base and module usage count queries This avoids Postgres errors, similar to: ``` sqlalchemy.exc.ProgrammingError: (psycopg2.errors.GroupingError) column "namespace.namespace" must appear in the GROUP BY clause or be used in an aggregate function ``` Issue #562
-
- Apr 20, 2025
-
- Apr 19, 2025
-
-
Matt authored
-
semantic-release-ci authored
# [4.0.0](v3.13.5...v4.0.0) (2025-04-19) * feat(build)!: Switch to Poetry for dependency management ([4365ac1a](4365ac1a)), closes [#565](#565) ### BREAKING CHANGES * Moving package management to poetry, meaning that binaries/scripts must be executed with `poetry run`. This may break integrations where scripts are being run within the container. Ensure any pre-existing configuration that executes scripts within the container are prepended with `poetry run`. NOTE: The use of requirements-*.txt files is now **deprecated** and will be removed in future minor/patch versions. Merge branch '565-move-from-pip-file-to-alternative-depdency-locking' into 'main' Resolve "Move from pip file to alternative dependency locking"
-
Matt authored
BREAKING CHANGE: Moving package management to poetry, meaning that binaries/scripts must be executed with `poetry run`. This may break integrations where scripts are being run within the container. Ensure any pre-existing configuration that executes scripts within the container are prepended with `poetry run`. NOTE: The use of requirements-*.txt files is now **deprecated** and will be removed in future minor/patch versions. Merge branch '565-move-from-pip-file-to-alternative-depdency-locking' into 'main' Resolve "Move from pip file to alternative dependency locking" Closes #565 See merge request !445
- Apr 17, 2025
-
- Apr 16, 2025
-