fix: OpenAPI broken docs link (#4169)

This commit is contained in:
Taimoor Zaeem
2025-06-27 15:14:34 -05:00
committed by GitHub
parent f295130544
commit 4a0eb7febe
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -12,6 +12,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
+ The exposed schemas are now listed in the `hint` instead of the `message` field.
- Improve error details of `PGRST301` error by @taimoorzaeem in #4051
### Fixed
- Fix OpenAPI broken docs link by @taimoorzaeem in #4080
## [13.0.4] - 2025-06-17
### Fixed
+1 -1
View File
@@ -26,7 +26,7 @@ prettyVersion =
docsVersion :: Text
docsVersion
| isPreRelease = "latest"
| otherwise = "v" <> (T.intercalate "." . map show . take 1 $ version)
| otherwise = "v" <> T.intercalate "." (take 1 version)
-- | Versions with two components (e.g., '1.1') are treated as pre-releases.