From 8b4909a2906c843283af1a2649ad825ce8b27af7 Mon Sep 17 00:00:00 2001 From: Pedro Figueiredo Date: Mon, 7 Oct 2024 18:12:05 +0100 Subject: [PATCH] chore: update versions --- CHANGELOG.md | 4 ++++ dist/jsr/jsr.json | 2 +- dist/npm/CHANGELOG.md | 4 ++++ dist/npm/CONFIG.md | 16 ++++++++++++++++ dist/npm/package-lock.json | 4 ++-- dist/npm/package.json | 2 +- 6 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79fbdb2..dadebbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.10.1 (2024-10-07) + +Fix `CONFIG.MD` documentation. + ## 0.10.0 (2024-10-07) Capture stack traces in `NeonDbError`, if `Error.captureStackTrace` is available. diff --git a/dist/jsr/jsr.json b/dist/jsr/jsr.json index 353a36f..431fb1d 100644 --- a/dist/jsr/jsr.json +++ b/dist/jsr/jsr.json @@ -1,6 +1,6 @@ { "name": "@neon/serverless", - "version": "0.9.5", + "version": "0.10.1", "exports": "./index.js", "imports": { "pg": "npm:@types/pg@8.11.6" diff --git a/dist/npm/CHANGELOG.md b/dist/npm/CHANGELOG.md index 79fbdb2..dadebbc 100644 --- a/dist/npm/CHANGELOG.md +++ b/dist/npm/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.10.1 (2024-10-07) + +Fix `CONFIG.MD` documentation. + ## 0.10.0 (2024-10-07) Capture stack traces in `NeonDbError`, if `Error.captureStackTrace` is available. diff --git a/dist/npm/CONFIG.md b/dist/npm/CONFIG.md index 7a32643..3a5fe70 100644 --- a/dist/npm/CONFIG.md +++ b/dist/npm/CONFIG.md @@ -108,6 +108,22 @@ const rows = await sql('SELECT * FROM posts WHERE id = $1', [postId], { clearTimeout(timeout); ``` +### `authToken: string | (() => Promise | string)` + +The `authToken` option can be passed to `neon(...)` to set the `Authorization` header for the `fetch` request. This allows you to authenticate database requests against third-party authentication providers. So, this mechanism can be used to ensure that access control and authorization are managed effectively across different systems. + +Example of usage: + +```typescript +import { neon } from '@neondatabase/serverless'; +// Retrieve the JWT token (implementation depends on your auth system) +const authToken = getAuthToken(); +// Initialize the Neon client with a connection string and auth token +const sql = neon(process.env.DATABASE_URL, { authToken }); +// Run a query +const posts = await sql('SELECT * FROM posts'); +``` + ## `transaction(...)` function The `transaction(queriesOrFn, options)` function is exposed as a property on the query function. It allows multiple queries to be executed within a single, non-interactive transaction. diff --git a/dist/npm/package-lock.json b/dist/npm/package-lock.json index 0acbd88..bf765bf 100644 --- a/dist/npm/package-lock.json +++ b/dist/npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@neondatabase/serverless", - "version": "0.10.0", + "version": "0.10.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@neondatabase/serverless", - "version": "0.10.0", + "version": "0.10.1", "license": "MIT", "dependencies": { "@types/pg": "^8.6.6" diff --git a/dist/npm/package.json b/dist/npm/package.json index b8b1221..c2ac194 100644 --- a/dist/npm/package.json +++ b/dist/npm/package.json @@ -1,6 +1,6 @@ { "name": "@neondatabase/serverless", - "version": "0.9.5", + "version": "0.10.1", "author": "Neon", "description": "node-postgres for serverless environments from neon.tech", "exports": {