Skip to content

Commit 7342389

Browse files
usariseliuruibinldezdmkefhemberger
authored
up to v4.20.2+ (#2)
* volcengine: set API information within the default configuration (go-acme#2308) Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com> * limacity: fix error message (go-acme#2310) * Add DNS provider for Core-Networks (go-acme#2101) * chore: update readme generator (go-acme#2311) * chore: fix readme generator (go-acme#2312) * chore: embed templates for internal commands (go-acme#2314) * chore: improve internal release command (go-acme#2315) * fix: parse printf verbs in log line output (go-acme#2317) * Add DNS provider for Regfish (go-acme#2320) * chore: update dependencies (go-acme#2321) * selectelv2: fix non-ASCII domain (go-acme#2322) Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com> * brandit: provider deprecation (go-acme#2116) * cloudxns: provider deprecation (go-acme#2324) * chore: update issue templates * docs: use homogenous examples (go-acme#2328) * regru: update authentication method (go-acme#2325) * rfc2136: add support for tsig-keygen generated file (go-acme#2330) Co-authored-by: Dominik Menke <git@dmke.org> * Add DNS provider for Technitium (go-acme#2332) * feat: skip the TLS verification of the ACME server (go-acme#2335) * docs: add documentation for env var only options (go-acme#2337) * docs: update least privilege instructions for Cloudflare (go-acme#2339) * feat: attempt to check ARI unless explicitly disabled (go-acme#2298) Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com> * chore: domain merge simplification (go-acme#2340) * chore: update linter (go-acme#2341) * Prepare release v4.20.0 * Detach v4.20.0 * Prepare release v4.20.1 * Detach v4.20.1 * Prepare release v4.20.2 * Detach v4.20.2 * fix: HTTP server IPv6 matching (go-acme#2345) * docs: improve changelog style (go-acme#2346) * docs: fix typos --------- Co-authored-by: 刘瑞斌 <bin@fit2cloud.com> Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com> Co-authored-by: Dominik Menke <dom@digineo.de> Co-authored-by: Frederic Hemberger <fhemberger@users.noreply.github.com> Co-authored-by: Artem Chirkov <45077592+Archirk@users.noreply.github.com> Co-authored-by: Maksim Kamanin <79706809+tcaty@users.noreply.github.com> Co-authored-by: Dominik Menke <git@dmke.org> Co-authored-by: Josh McKinney <joshka@users.noreply.github.com> Co-authored-by: Samantha Frank <hello@entropy.cat>
1 parent 7356254 commit 7342389

File tree

355 files changed

+4074
-1907
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

355 files changed

+4074
-1907
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ body:
4242
- Through Caddy
4343
- Through Terraform ACME provider
4444
- Through Bitnami
45+
- Through 1Panel
4546
- Through Zoraxy
4647
- Other
4748
validations:

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ body:
2121
- Through Caddy
2222
- Through Terraform ACME provider
2323
- Through Bitnami
24+
- Through 1Panel
2425
- Through Zoraxy
2526
- Other
2627
validations:

.github/ISSUE_TEMPLATE/new_dns_provider.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ body:
3131
- Through Caddy
3232
- Through Terraform ACME provider
3333
- Through Bitnami
34+
- Through 1Panel
35+
- Through Zoraxy
3436
- Other
3537
validations:
3638
required: true

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
env:
1515
GO_VERSION: stable
16-
GOLANGCI_LINT_VERSION: v1.60.1
16+
GOLANGCI_LINT_VERSION: v1.62.0
1717
HUGO_VERSION: 0.131.0
1818
CGO_ENABLED: 0
1919
LEGO_E2E_TESTS: CI

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
# https://goreleaser.com/ci/actions/
6666
- name: Run GoReleaser
67-
uses: goreleaser/goreleaser-action@v5
67+
uses: goreleaser/goreleaser-action@v6
6868
with:
6969
version: latest
7070
args: release -p 1 --clean --timeout=90m

.golangci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
linters:
22
enable-all: true
33
disable:
4-
- gomnd # deprecated
54
- cyclop # duplicate of gocyclo
65
- sqlclosecheck # not relevant (SQL)
76
- rowserrcheck # not relevant (SQL)
8-
- execinquery # not relevant (SQL)
97
- lll
108
- gosec
119
- dupl # not relevant
@@ -255,6 +253,10 @@ issues:
255253
text: 'cyclomatic complexity 13 of func `\(\*DNSProvider\)\.CleanUp` is high'
256254
linters:
257255
- gocyclo
256+
- path: providers/dns/servercow/internal/types.go
257+
text: 'the methods of "Value" use pointer receiver and non-pointer receiver.'
258+
linters:
259+
- recvcheck
258260

259261
# Those elements have been replaced by non-exposed structures.
260262
- path: providers/dns/linode/linode_test.go

.goreleaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project_name: lego
55
builds:
66
- binary: lego
77

8-
main: ./cmd/lego/main.go
8+
main: ./cmd/lego/
99
env:
1010
- CGO_ENABLED=0
1111
flags:
@@ -14,9 +14,9 @@ builds:
1414
- -s -w -X main.version={{.Version}}
1515

1616
goos:
17-
- windows
18-
- darwin
1917
- linux
18+
- darwin
19+
- windows
2020
- freebsd
2121
- openbsd
2222
- solaris

0 commit comments

Comments
 (0)