Skip to content

Commit 9b1f71f

Browse files
committedDec 18, 2024·
chore: update experimental db warning
1 parent 749cea0 commit 9b1f71f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎docs/2.drivers/database.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ icon: ph:database
1111
This driver stores KV data in any SQL database using [db0](https://db0.unjs.io).
1212

1313
::warning
14-
Database driver is experimental, please report any issues [here](https://github.com/unjs/unstorage/issues/400).
14+
Database driver is experimental and behavior may change in the future.
1515
::
1616

1717
To use, you will need to install `db0` in your project:

‎src/drivers/db0.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default defineDriver((opts: DB0DriverOptions) => {
3232
if (!setupPromise) {
3333
if (!(globalThis as any)[kExperimentalWarning]) {
3434
console.warn(
35-
"[unstorage]: Database driver is experimental! Please report any issues via https://github.com/unjs/unstorage/issues/400"
35+
"[unstorage]: Database driver is experimental and behavior may change in the future."
3636
);
3737
(globalThis as any)[kExperimentalWarning] = true;
3838
}

0 commit comments

Comments
 (0)
Please sign in to comment.