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
5 changes: 0 additions & 5 deletions .changeset/dns-argument-handling.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dns-update-editor-link-records.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.9.1

## 0.9.0

## 0.8.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.9.0",
"version": "0.9.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.9.1

## 0.9.0

## 0.8.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.9.0",
"version": "0.9.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.9.1

## 0.9.0

## 0.8.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.9.0",
"version": "0.9.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.9.1

## 0.9.0

## 0.8.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.9.0",
"version": "0.9.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.9.1

## 0.9.0

## 0.8.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.9.0",
"version": "0.9.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.9.1

### Patch Changes

- [#116](https://github.com/BunnyWay/cli/pull/116) [`aaba878`](https://github.com/BunnyWay/cli/commit/aaba8782b15bdcadf1ffd9a891317c7061a48d33) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - fix(dns): never prompt non-interactively, add an interactive field editor to records update, prompt for missing record values, and reject extra positional values

- [#118](https://github.com/BunnyWay/cli/pull/118) [`93ffdbc`](https://github.com/BunnyWay/cli/commit/93ffdbc2de1833d144d4b0e4ce1f31184d28cf1a) Thanks [@jamie-at-bunny](https://github.com/jamie-at-bunny)! - fix(dns): offer Pull zone/Script ID instead of Value for link records in the records update editor, and pre-select the current CAA tag

## 0.9.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.9.0",
"version": "0.9.1",
"type": "module",
"module": "src/index.ts",
"bin": {
Expand Down Expand Up @@ -29,11 +29,11 @@
"zod": "^4.3.6"
},
"optionalDependencies": {
"@bunny.net/cli-linux-x64": "0.9.0",
"@bunny.net/cli-linux-arm64": "0.9.0",
"@bunny.net/cli-darwin-x64": "0.9.0",
"@bunny.net/cli-darwin-arm64": "0.9.0",
"@bunny.net/cli-windows-x64": "0.9.0"
"@bunny.net/cli-linux-x64": "0.9.1",
"@bunny.net/cli-linux-arm64": "0.9.1",
"@bunny.net/cli-darwin-x64": "0.9.1",
"@bunny.net/cli-darwin-arm64": "0.9.1",
"@bunny.net/cli-windows-x64": "0.9.1"
},
"publishConfig": {
"access": "public"
Expand Down
Loading