Skip to content

Commit

Permalink
Bump changelog version
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewmeyer committed Dec 16, 2024
1 parent 29f6337 commit 865eb5b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2024-12-16

### Added

- Added additional context to IP fetch errors

### Changed

- Updated to rust 1.83.0
- Updated default ttl, proxied, and comment values for Cloudflare
- Refactored Cloudflare provider update operations into separate functions

### Fixed

- Fixed a bug where an empty update could make it though to provider updates
- Fixed pluralized domain struct

## [0.1.0] - 2024-11-09

### Added
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,29 +66,36 @@ type = "stun"
* `type` - The provider type. Must be `cloudflare`
* `zone` - The zone root domain to update
* `api_token` - Cloudflare API token with the `Zone.DNS Edit` permission
* `api_url` - Optional API URL, default is `https://api.cloudflare.com/client/v4`
* `domains` - A list of domains to update
* `name` - The full domain name to update (Required)
* `ttl` - The TTL for the record, default is `1` (Auto)
* `proxied` - Whether the record is proxied through Cloudflare, default is `false`
* `comment` - A comment to add to the record
* `comment` - A comment to add to the record, default is `Created by DDRS`

```toml
[[providers]]
type = "cloudflare"
zone = "domain.com"
api_token = "TOKEN"

[[providers.domains]]
name = "domain.com"
ttl = 1
proxied = false
comment = "Root domain"

[[providers.domains]]
name = "*.domain.com"
ttl = 1
proxied = false
comment = "Wildcard subdomain"

[[providers.domains]]
name = "domain.com"
name = "sub.domain.com"
ttl = 1
proxied = false
comment = "Root domain"
comment = "Subdomain"
```

## Deployment
Expand Down

0 comments on commit 865eb5b

Please sign in to comment.