Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/db-client-hardening.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/skill-storage-database-client.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/cli-darwin-arm64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-darwin-arm64

## 0.16.1

## 0.16.0

## 0.15.1
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-darwin-arm64",
"version": "0.16.0",
"version": "0.16.1",
"description": "bunny.net CLI binary for macOS arm64",
"os": [
"darwin"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-darwin-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-darwin-x64

## 0.16.1

## 0.16.0

## 0.15.1
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-darwin-x64",
"version": "0.16.0",
"version": "0.16.1",
"description": "bunny.net CLI binary for macOS x64",
"os": [
"darwin"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-linux-arm64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-linux-arm64

## 0.16.1

## 0.16.0

## 0.15.1
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-linux-arm64",
"version": "0.16.0",
"version": "0.16.1",
"description": "bunny.net CLI binary for Linux arm64",
"os": [
"linux"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-linux-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-linux-x64

## 0.16.1

## 0.16.0

## 0.15.1
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-linux-x64",
"version": "0.16.0",
"version": "0.16.1",
"description": "bunny.net CLI binary for Linux x64",
"os": [
"linux"
Expand Down
2 changes: 2 additions & 0 deletions packages/cli-windows-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/cli-windows-x64

## 0.16.1

## 0.16.0

## 0.15.1
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-windows-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli-windows-x64",
"version": "0.16.0",
"version": "0.16.1",
"description": "bunny.net CLI binary for Windows x64",
"os": [
"win32"
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @bunny.net/cli

## 0.16.1

### Patch Changes

- [#206](https://github.com/BunnyWay/cli/pull/206) [`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - Harden `@bunny.net/database-client`: `batch()` takes a `mode`, guards its ROLLBACK, rejects transaction statements, and reports the failing statement as `error.batchIndex`; invalid `timeout` values and malformed responses become `DatabaseError`, transport errors keep their `cause`, integer-valued doubles past 2^53 bind as REAL, and `db.sql` carries a row type. Migrations apply with `BEGIN IMMEDIATE`.

- [#204](https://github.com/BunnyWay/cli/pull/204) [`a00a867`](https://github.com/BunnyWay/cli/commit/a00a867b210a72730338d719aa8c83a5bb644ae7) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - `bunny skills install` now ships references for Bunny Storage (`bunny storage` zones, files, connection credentials, custom domains) and for querying a database from application code with `@bunny.net/database-client`.

## 0.16.0

### Minor Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/cli",
"version": "0.16.0",
"version": "0.16.1",
"type": "module",
"module": "src/index.ts",
"bin": {
Expand Down Expand Up @@ -29,11 +29,11 @@
"@bunny.net/database-client": "workspace:*"
},
"optionalDependencies": {
"@bunny.net/cli-linux-x64": "0.16.0",
"@bunny.net/cli-linux-arm64": "0.16.0",
"@bunny.net/cli-darwin-x64": "0.16.0",
"@bunny.net/cli-darwin-arm64": "0.16.0",
"@bunny.net/cli-windows-x64": "0.16.0"
"@bunny.net/cli-linux-x64": "0.16.1",
"@bunny.net/cli-linux-arm64": "0.16.1",
"@bunny.net/cli-darwin-x64": "0.16.1",
"@bunny.net/cli-darwin-arm64": "0.16.1",
"@bunny.net/cli-windows-x64": "0.16.1"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 8 additions & 0 deletions packages/database-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @bunny.net/database-adapter

## 0.1.5

### Patch Changes

- Updated dependencies [[`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da)]:
- @bunny.net/database-client@0.0.3
- @bunny.net/database-rest@0.1.2

## 0.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/database-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-adapter",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"type": "module",
"module": "src/index.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/database-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @bunny.net/database-client

## 0.0.3

### Patch Changes

- [#206](https://github.com/BunnyWay/cli/pull/206) [`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - Harden `@bunny.net/database-client`: `batch()` takes a `mode`, guards its ROLLBACK, rejects transaction statements, and reports the failing statement as `error.batchIndex`; invalid `timeout` values and malformed responses become `DatabaseError`, transport errors keep their `cause`, integer-valued doubles past 2^53 bind as REAL, and `db.sql` carries a row type. Migrations apply with `BEGIN IMMEDIATE`.

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/database-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-client",
"version": "0.0.2",
"version": "0.0.3",
"description": "Dependency-free SQL client for Bunny Database. Runs anywhere fetch does: Bunny Edge Scripting, Bun, Node, and Deno.",
"license": "MIT",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/database-shell-darwin-arm64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/database-shell-darwin-arm64

## 0.2.7

## 0.2.6

## 0.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/database-shell-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-shell-darwin-arm64",
"version": "0.2.6",
"version": "0.2.7",
"description": "Bunny Database shell binary for macOS arm64",
"os": [
"darwin"
Expand Down
2 changes: 2 additions & 0 deletions packages/database-shell-darwin-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/database-shell-darwin-x64

## 0.2.7

## 0.2.6

## 0.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/database-shell-darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-shell-darwin-x64",
"version": "0.2.6",
"version": "0.2.7",
"description": "Bunny Database shell binary for macOS x64",
"os": [
"darwin"
Expand Down
2 changes: 2 additions & 0 deletions packages/database-shell-linux-arm64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/database-shell-linux-arm64

## 0.2.7

## 0.2.6

## 0.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/database-shell-linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-shell-linux-arm64",
"version": "0.2.6",
"version": "0.2.7",
"description": "Bunny Database shell binary for Linux arm64",
"os": [
"linux"
Expand Down
2 changes: 2 additions & 0 deletions packages/database-shell-linux-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/database-shell-linux-x64

## 0.2.7

## 0.2.6

## 0.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/database-shell-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-shell-linux-x64",
"version": "0.2.6",
"version": "0.2.7",
"description": "Bunny Database shell binary for Linux x64",
"os": [
"linux"
Expand Down
2 changes: 2 additions & 0 deletions packages/database-shell-windows-x64/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @bunny.net/database-shell-windows-x64

## 0.2.7

## 0.2.6

## 0.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/database-shell-windows-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-shell-windows-x64",
"version": "0.2.6",
"version": "0.2.7",
"description": "Bunny Database shell binary for Windows x64",
"os": [
"win32"
Expand Down
7 changes: 7 additions & 0 deletions packages/database-shell/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @bunny.net/database-shell

## 0.2.7

### Patch Changes

- Updated dependencies [[`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da)]:
- @bunny.net/database-client@0.0.3

## 0.2.6

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/database-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-shell",
"version": "0.2.6",
"version": "0.2.7",
"type": "module",
"module": "src/index.ts",
"bin": {
Expand All @@ -18,11 +18,11 @@
"cli-table3": "^0.6.5"
},
"optionalDependencies": {
"@bunny.net/database-shell-linux-x64": "0.2.6",
"@bunny.net/database-shell-linux-arm64": "0.2.6",
"@bunny.net/database-shell-darwin-x64": "0.2.6",
"@bunny.net/database-shell-darwin-arm64": "0.2.6",
"@bunny.net/database-shell-windows-x64": "0.2.6"
"@bunny.net/database-shell-linux-x64": "0.2.7",
"@bunny.net/database-shell-linux-arm64": "0.2.7",
"@bunny.net/database-shell-darwin-x64": "0.2.7",
"@bunny.net/database-shell-darwin-arm64": "0.2.7",
"@bunny.net/database-shell-windows-x64": "0.2.7"
},
"publishConfig": {
"access": "public"
Expand Down
9 changes: 9 additions & 0 deletions packages/database-studio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @bunny.net/database-studio

## 0.2.3

### Patch Changes

- Updated dependencies [[`d6b68a7`](https://github.com/BunnyWay/cli/commit/d6b68a7d0f058d035171f10e0398428f5b6410da)]:
- @bunny.net/database-client@0.0.3
- @bunny.net/database-adapter@0.1.5
- @bunny.net/database-rest@0.1.2

## 0.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/database-studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bunny.net/database-studio",
"version": "0.2.2",
"version": "0.2.3",
"private": true,
"type": "module",
"module": "src/index.ts",
Expand Down