You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #93 there was a misalignment between the declared minor and the actual pg version installed in the container. This was caused by the container release happening after the pgdg package release, with our rebuild happening in between.
PostgreSQL 16.2 was out on 2024-02-08. The postgresql community image was out on 2024-02-12. pgvector 0.6.0 was packaged on 2024-02-09, with the following dependencies on bullseye:
When building a system image, we start from a community postgres image.
There is the chance that newer postgres packages are released, and they
could be upgraded when installing the supported extensions. We want to
prevent this scenario, as it could lead to unexpected versions in the
container image.
Closescloudnative-pg#186
Signed-off-by: Francesco Canovai <[email protected]>
fcanovai
added a commit
to fcanovai/postgres-containers
that referenced
this issue
May 12, 2025
When building a system image, we start from a community postgres image.
There is the chance that newer postgres packages are released, and they
could be upgraded when installing the supported extensions. We want to
prevent this scenario, as it could lead to unexpected versions in the
container image.
Closescloudnative-pg#186
Signed-off-by: Francesco Canovai <[email protected]>
When building a system image, we start from a community postgres image.
There is the chance that newer postgres packages are released, and they
could be upgraded when installing the supported extensions. We want to
prevent this scenario, as it could lead to unexpected versions in the
container image.
Closes#186
Signed-off-by: Francesco Canovai <[email protected]>
In #93 there was a misalignment between the declared minor and the actual pg version installed in the container. This was caused by the container release happening after the pgdg package release, with our rebuild happening in between.
PostgreSQL 16.2 was out on 2024-02-08. The postgresql community image was out on 2024-02-12. pgvector 0.6.0 was packaged on 2024-02-09, with the following dependencies on bullseye:
However, that dependency wasn't satisfied by postgresql-16.1
And 16.2 was already available, so it upgraded.
This can happen on every minor upgrade. We should prevent unwanted minor upgrades.
The text was updated successfully, but these errors were encountered: