6 Commits

Author SHA1 Message Date
Joel Wetzell b3dd58bdbc bump version 2026-09-05 16:50:54 -05:00
Joel Wetzell f19bc17102 add docs about new database modules 2026-09-05 16:50:36 -05:00
Joel Wetzell 4779d93f3e Merge pull request #87 from jwetzell/renovate/astrojs-starlight-0.x
Update dependency @astrojs/starlight to v0.42.0
2026-09-05 09:46:54 -05:00
renovate[bot] 84230a39e0 Update dependency @astrojs/starlight to v0.42.0 2026-09-05 13:43:18 +00:00
Joel Wetzell 335b04f7f8 Merge pull request #88 from jwetzell/renovate/astro-monorepo
Update dependency astro to v7.3.1
2026-09-05 08:42:40 -05:00
renovate[bot] a28114705c Update dependency astro to v7.3.1 2026-09-03 22:46:39 +00:00
6 changed files with 1788 additions and 3597 deletions
+96 -2023
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@showbridge/docs",
"type": "module",
"version": "0.6.0",
"version": "0.7.0",
"files": [
"dist"
],
@@ -15,9 +15,9 @@
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"@astrojs/starlight": "0.41.10",
"astro": "7.2.10",
"@astrojs/starlight": "0.42.0",
"astro": "7.3.1",
"sharp": "0.35.4",
"typescript": "7.0.2"
"typescript": "6.0.3"
}
}
+24
View File
@@ -0,0 +1,24 @@
---
title: MySQL
sidebar:
order: 1
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `db.mysql` module can open a connection to MySQL databases
<SchemaInfo type="module" id="db.mysql"></SchemaInfo>
This module implements the `DatabaseModule` interface.
### Example
Opens a connection to a MySQL database
```yaml
- id: myDatabase
type: db.mysql
params:
dsn: "user:password@tcp(localhost:3306)/mydatabase"
```
+24
View File
@@ -0,0 +1,24 @@
---
title: PostgreSQL
sidebar:
order: 1
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `db.postgres` module can open a connection to PostgreSQL databases
<SchemaInfo type="module" id="db.postgres"></SchemaInfo>
This module implements the `DatabaseModule` interface.
### Example
Opens a connection to a PostgreSQL database
```yaml
- id: myDatabase
type: db.postgres
params:
url: "postgresql://user:password@localhost:5432/mydatabase"
```
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff