Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neondatabase/serverless
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: eac7be63bdafed0d6edef48bfa161146e4bdab58
Choose a base ref
...
head repository: neondatabase/serverless
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c2c501093274b729b5179bff416a86473be7117c
Choose a head ref
  • 8 commits
  • 9 files changed
  • 2 contributors

Commits on Feb 7, 2024

  1. Revert single domain for ws

    Anna Khanova committed Feb 7, 2024
    Copy the full SHA
    d5f28c2 View commit details
  2. Merge pull request #62 from neondatabase/revert-single-domain-ws

    Revert single domain for ws
    jawj authored Feb 7, 2024
    Copy the full SHA
    51fbc53 View commit details
  3. Fix pooled connection

    Anna Khanova committed Feb 7, 2024
    Copy the full SHA
    d4a0b87 View commit details
  4. Merge pull request #63 from neondatabase/fox-pooled-connection

    Fix pooled connection
    jawj authored Feb 7, 2024
    Copy the full SHA
    af4678b View commit details
  5. Replace everything before the first dot.

    Anna Khanova committed Feb 7, 2024
    Copy the full SHA
    15a3d50 View commit details
  6. Merge branch 'main' of github.com:neondatabase/serverless into fox-po…

    …oled-connection
    Anna Khanova committed Feb 7, 2024
    Copy the full SHA
    74bcb72 View commit details
  7. Merge pull request #64 from neondatabase/replace-before-dot

    Replace before the first dot
    jawj authored Feb 7, 2024
    Copy the full SHA
    f55fc40 View commit details
  8. Tweaks

    jawj committed Feb 7, 2024
    Copy the full SHA
    c2c5010 View commit details
Showing with 1,702 additions and 1,733 deletions.
  1. +4 −0 CHANGELOG.md
  2. +4 −0 dist/npm/CHANGELOG.md
  3. +540 −546 dist/npm/index.js
  4. +542 −548 dist/npm/index.mjs
  5. +2 −2 dist/npm/package-lock.json
  6. +1 −1 dist/npm/package.json
  7. +606 −612 dist/serverless.mjs
  8. +1 −16 export/index.ts
  9. +2 −8 shims/net/index.ts
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.8.1 (2024-02-07)

Revert single per-region domain for WebSockets. Fix treatment of -pooler connection hosts.

## 0.8.0 (2024-02-06)

Use a single (per-region) domain name for all connections to Neon databases. Intended to help with connection caching in V8. Passes the endpoint ID inside connection options for WebSocket connections.
4 changes: 4 additions & 0 deletions dist/npm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.8.1 (2024-02-07)

Revert single per-region domain for WebSockets. Fix treatment of -pooler connection hosts.

## 0.8.0 (2024-02-06)

Use a single (per-region) domain name for all connections to Neon databases. Intended to help with connection caching in V8. Passes the endpoint ID inside connection options for WebSocket connections.
Loading