v13: fix: loading utf-8 config files with ascii locale set#4424
Merged
Conversation
Updates configurator-pg to version 0.2.11. This resolves PostgREST#4386. Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
Member
Author
|
@wolfgangwalther Is it worth backporting this one considering we would probably not be doing |
Member
|
Doesn't hurt to do it. |
Member
|
I tried to release this as usual with But it created a diff --git a/CHANGELOG.md b/CHANGELOG.md
index bb906da4..de59b2f1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
+## [13.1] - 2025-10-24
+
### Fixed
- Fix loading utf-8 config files with `ASCII` locale set by @taimoorzaeem in #4386
diff --git a/docs/conf.py b/docs/conf.py
index 5b2f9469..4dde65b6 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -50,7 +50,7 @@ source_suffix = ".rst"
master_doc = "index"
# This is overriden by readthedocs with the version tag anyway
-version = "13.0"
+version = "13"
# To avoid repetition in <title> we set this to an empty string.
release = ""
diff --git a/postgrest.cabal b/postgrest.cabal
index 521b88b6..edf8e168 100644
--- a/postgrest.cabal
+++ b/postgrest.cabal
@@ -1,5 +1,5 @@
name: postgrest
-version: 13.0.7
+version: 13.1
synopsis: REST API for any Postgres database
description: Reads the schema of a PostgreSQL database and creates RESTful routes
for tables, views, and functions, supporting all HTTP methods that security@wolfgangwalther Was this intentional when updating |
Member
|
You need to enter |
Member
|
Right, I think this was intentional #4392 since we'll no longer have patch versions with the new |
Member
|
No, this is not intentional. v13 should not be released as (for future versions, this will be intentional, yes) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backport for #4398.