Skip to content

Commit 4314f9e

Browse files
thomasgauvinharshil1712
authored andcommitted
add supported authentication modes (#18269)
* add supported authentication modes * Update src/content/docs/hyperdrive/reference/supported-databases.mdx * Update src/content/docs/hyperdrive/reference/supported-databases.mdx
1 parent 51f64fb commit 4314f9e

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

src/content/changelogs/hyperdrive.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ productLink: "/hyperdrive/"
55
productArea: Developer platform
66
productAreaLink: /workers/platform/changelog/platform/
77
entries:
8+
- publish_date: "2024-11-19"
9+
title: Hyperdrive now supports clear-text password authentication
10+
description: |-
11+
When connecting to a database that requires secure clear-text password authentication over TLS, Hyperdrive will now support this authentication method.
12+
13+
Refer to the documentation to see [all PostgreSQL authentication modes supported by Hyperdrive](/hyperdrive/reference/supported-databases#supported-postgresql-authentication-modes).
814
- publish_date: "2024-10-30"
915
title: New Hyperdrive configurations to private databases using Tunnels are validated before creation
1016
description: |-

src/content/docs/hyperdrive/reference/supported-databases.mdx

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ pcx_content_type: concept
33
title: Supported databases
44
sidebar:
55
order: 2
6-
76
---
87

98
## Database support
@@ -12,12 +11,20 @@ Details on which database engines and/or specific database providers are support
1211

1312
| Database Engine | Supported | Known supported versions | Details |
1413
| --------------- | ------------------------ | ------------------------ | ---------------------------------------------------------------------------------------------------- |
15-
| PostgreSQL | | `9.0` to `16.x` | Both self-hosted and managed (AWS, Google Cloud, Oracle) instances are supported. |
16-
| Neon | | All | Neon currently runs Postgres 15.x |
17-
| Supabase | | All | Supabase currently runs Postgres 15.x |
18-
| Timescale | | All | See the [Timescale guide](/hyperdrive/examples/timescale/) to connect. |
19-
| Materialize | | All | Postgres-compatible. Refer to the [Materialize guide](/hyperdrive/examples/materialize/) to connect. |
20-
| CockroachDB | | All | Postgres-compatible. Refer to the [CockroachDB](/hyperdrive/examples/cockroachdb/) guide to connect. |
14+
| PostgreSQL || `9.0` to `16.x` | Both self-hosted and managed (AWS, Google Cloud, Oracle) instances are supported. |
15+
| Neon || All | Neon currently runs Postgres 15.x |
16+
| Supabase || All | Supabase currently runs Postgres 15.x |
17+
| Timescale || All | See the [Timescale guide](/hyperdrive/examples/timescale/) to connect. |
18+
| Materialize || All | Postgres-compatible. Refer to the [Materialize guide](/hyperdrive/examples/materialize/) to connect. |
19+
| CockroachDB || All | Postgres-compatible. Refer to the [CockroachDB](/hyperdrive/examples/cockroachdb/) guide to connect. |
2120
| MySQL | Coming soon | | |
2221
| SQL Server | Not currently supported. | | |
2322
| MongoDB | Not currently supported. | | |
23+
24+
## Supported PostgreSQL authentication modes
25+
26+
Hyperdrive supports the following [authentication modes](https://www.postgresql.org/docs/current/auth-methods.html) for connecting to PostgreSQL databases:
27+
28+
- Password Authentication (`md5`)
29+
- Password Authentication (`password`) (clear-text password)
30+
- SASL Authentication (`SCRAM-SHA-256`)

0 commit comments

Comments
 (0)