Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
f5450d9
chore(deps): update actions/checkout action to v6
renovate[bot] Nov 20, 2025
c1cc52d
Merge pull request #54 from kweonminsung/renovate/actions-checkout-6.x
kweonminsung Nov 20, 2025
72ff446
fix: renovate.json
kweonminsung Dec 24, 2025
955e664
feat: migrate to enum based error
kweonminsung Jan 19, 2026
dbc8003
fix: fixed test errors
kweonminsung Jan 19, 2026
2929d3a
fix: fixed code consistency
kweonminsung Jan 19, 2026
431d4c1
fix: fixed bigint dependency warning
kweonminsung Jan 19, 2026
9005375
Merge pull request #58 from kweonminsung/55-bug-error-handling-improv…
kweonminsung Jan 19, 2026
9dd0cf9
chore(deps): update rust crate tempfile to 3.24.0
renovate[bot] Jan 19, 2026
a76ad59
fix(deps): update rust crate axum to 0.8.8
renovate[bot] Jan 19, 2026
af0dc42
Merge pull request #60 from kweonminsung/renovate/axum-monorepo
kweonminsung Jan 19, 2026
6468e1f
Merge pull request #59 from kweonminsung/renovate/tempfile-3.x
kweonminsung Jan 19, 2026
35333e1
fix(deps): update rust crate clap to 4.5.54
renovate[bot] Jan 19, 2026
07ceb23
fix(deps): update rust crate config to 0.15.19
renovate[bot] Jan 19, 2026
0ac2772
Merge pull request #62 from kweonminsung/renovate/config-0.x
kweonminsung Jan 19, 2026
b470f2c
Merge pull request #61 from kweonminsung/renovate/clap-4.x
kweonminsung Jan 19, 2026
13d42a1
fix(deps): update rust crate thiserror to 2.0.18 (#63)
renovate[bot] Jan 20, 2026
9863438
fix(deps): update rust crate tower-http to 0.6.8
renovate[bot] Jan 20, 2026
77f000c
Merge pull request #64 from kweonminsung/renovate/tower-http-0.x
kweonminsung Jan 20, 2026
a31a80a
feat: added dns instance, key table
kweonminsung Jan 20, 2026
8fb5abd
feat: added dns instance, key repositories
kweonminsung Jan 20, 2026
fc3e07e
feat: added zone_dns_config repository
kweonminsung Jan 20, 2026
4d1ed9f
feat: added dns instance APIs
kweonminsung Feb 3, 2026
a065be4
feat: added resource control cli
kweonminsung Feb 5, 2026
967575f
feat: added table view
kweonminsung Feb 5, 2026
06da850
feat: migrate to name based request
kweonminsung Feb 5, 2026
3705641
refactor: rename dns instance to dns
kweonminsung Feb 5, 2026
a684b8a
fix: migrate history to name based
kweonminsung Feb 5, 2026
81a13db
Merge pull request #65 from kweonminsung/56-feature-add-dns-01-tls-ve…
kweonminsung Feb 5, 2026
d56f115
chore: update openapi docs
invalid-email-address Feb 5, 2026
12eb6ed
fix: delete dns module
kweonminsung Mar 1, 2026
40232b4
feat: added xfr server module
kweonminsung Mar 4, 2026
e00247a
feat: added usable AXFR
kweonminsung Mar 4, 2026
b5a50e2
feat: implement IXFR
kweonminsung Mar 4, 2026
4af33f8
fix: remove allowed_transfers
kweonminsung Mar 9, 2026
2ef68b2
feat: update README
kweonminsung Mar 9, 2026
296de08
fix: remove histories API & added update notify
kweonminsung Mar 10, 2026
cb99ce9
chore: remove deleted API test
kweonminsung Mar 10, 2026
0700357
fix(deps): update rust crate clap to 4.6.0 (#69)
renovate[bot] Mar 13, 2026
1054730
fix: fix sqlite index schema creation
kweonminsung Mar 23, 2026
b61f06f
fix: apply soa snapshot to compare nonserial soa data
kweonminsung Mar 23, 2026
13f0c13
fix: zone snapshot rename minimum to minimum_ttl
kweonminsung Mar 23, 2026
a5d223a
fix: remove priamry_ns_ip, ipv6 from zone table
kweonminsung Mar 23, 2026
bcdbb6e
chore: fix typo
kweonminsung Mar 23, 2026
474acc0
Merge pull request #68 from kweonminsung/25-feature-remove-direct-fil…
kweonminsung Mar 23, 2026
4b01965
chore: update openapi docs
invalid-email-address Mar 23, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Build
run: cargo build --verbose
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Ruby and FPM
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Ruby and FPM
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-openapi-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
Loading
Loading