pylego 0.1.24__tar.gz → 0.1.31__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pylego
3
- Version: 0.1.24
3
+ Version: 0.1.31
4
4
  Summary: A python wrapper package for the lego application written in Golang
5
5
  Author-email: Canonical <telco-engineers@lists.canonical.com>
6
6
  Project-URL: Homepage, https://github.com/canonical/pylego
@@ -8,7 +8,7 @@ Project-URL: Issues, https://github.com/canonical/pylego/issues
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
10
  Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.13.3
11
+ Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Dynamic: license-file
@@ -34,27 +34,34 @@ You can import the lego command and run any function that you can run from the C
34
34
  ```python
35
35
  from pylego import run_lego_command
36
36
  test_env = {"NAMECHEAP_API_USER": "user", "NAMECHEAP_API_KEY": "key"}
37
- run_lego_command("something@gmail.com", "https://localhost/directory", "-----BEGIN CERTIFICATE REQUEST----- ...", "namecheap", test_env, "-----BEGIN RSA PRIVATE KEY-----")
37
+ run_lego_command(
38
+ "something@gmail.com",
39
+ "https://localhost/directory",
40
+ b"-----BEGIN CERTIFICATE REQUEST----- ...",
41
+ env=test_env,
42
+ plugin="namecheap",
43
+ private_key="-----BEGIN RSA PRIVATE KEY-----",
44
+ )
38
45
  ```
39
46
 
40
- | Argument | Description |
41
- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
42
- | `email` | The provided email will be registered to the ACME server. It may receive some emails notifying the user about certificate expiry. |
43
- | `server` | This is the full URL of a server that implements the ACME protocol. While letsencrypt is the most common one, there are other programs that provide this facility like Vault. |
44
- | `csr` | This must be a PEM string in bytes that is user generated and valid as according to the ACME server that is being provided above. Many providers have different requirements for what is allowed to be in the fields of the CSR. |
45
- | `plugin` | The plugin is a string that's supported by LEGO. The full list is located [here](https://go-acme.github.io/lego/dns/). On top of the LEGO provided ones, we have an extra plugin called `http` that will allow users to use HTTP01 and TLSALPN01 challenges. |
46
- | `env` | The env is a dictionary mapping of strings to strings that will be loaded into the environment for LEGO to use. All plugins require some configuration values loaded into the environment. You can find them [here](https://go-acme.github.io/lego/dns/) |
47
- | `private_key` | The provided private key will be used to register the user to the ACME server (not the key that signed the CSR), if not provided pylego will generate a new one |
47
+ | Argument | Description |
48
+ | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
49
+ | `email` | The provided email will be registered to the ACME server. It may receive some emails notifying the user about certificate expiry. |
50
+ | `server` | This is the full URL of a server that implements the ACME protocol. While letsencrypt is the most common one, there are other programs that provide this facility like Vault. |
51
+ | `csr` | This must be a PEM string in bytes that is user generated and valid as according to the ACME server that is being provided above. Many providers have different requirements for what is allowed to be in the fields of the CSR. |
52
+ | `plugin` | Provider to use: `http` (HTTP-01), `tls` (TLS-ALPN-01), or any LEGO DNS provider from [here](https://go-acme.github.io/lego/dns/). If no plugin is provided, pylego uses HTTP-01 by default. |
53
+ | `env` | The env is a dictionary mapping of strings to strings that will be loaded into the environment for LEGO to use. All plugins require some configuration values loaded into the environment. You can find them [here](https://go-acme.github.io/lego/dns/) |
54
+ | `private_key` | The provided private key will be used to register the user to the ACME server (not the key that signed the CSR), if not provided pylego will generate a new one |
48
55
 
49
56
  On top of the environment variables that LEGO supports, we have some extra ones that we use to configure the library:
50
57
 
51
58
  | Key | Description |
52
59
  | ----------------- | ----------------------------------------------------------------------------------------------------------------------------- |
53
60
  | `SSL_CERT_FILE` | Path to a CA certificate file for pylego to trust. This can be used for trusting the certificate of the ACME server provided. |
54
- | `HTTP01_IFACE` | The interface to be used for the HTTP01 challenge if the plugin is chosen. Any interface by default. |
55
- | `HTTP01_PORT` | The port to be used for the HTTP01 challenge if the plugin is chosen. 80 by default. |
56
- | `TLSALPN01_IFACE` | The interface to be used for the TLSALPN01 challenge if the plugin is chosen. Any interface by default. |
57
- | `TLSALPN01_PORT` | The port to be used for the TLSALPN01 challenge if the plugin is chosen. 443 by default. |
61
+ | `HTTP01_IFACE` | Interface for the HTTP-01 challenge (when no DNS plugin is used or when `plugin=http`). Any interface by default. |
62
+ | `HTTP01_PORT` | Port for the HTTP-01 challenge (when no DNS plugin is used or when `plugin=http`). 80 by default. |
63
+ | `TLSALPN01_IFACE` | Interface for the TLS-ALPN-01 challenge (when `plugin=tls`). Any interface by default. |
64
+ | `TLSALPN01_PORT` | Port for the TLS-ALPN-01 challenge (when `plugin=tls`). 443 by default. |
58
65
 
59
66
  ## How does it work?
60
67
 
@@ -19,27 +19,34 @@ You can import the lego command and run any function that you can run from the C
19
19
  ```python
20
20
  from pylego import run_lego_command
21
21
  test_env = {"NAMECHEAP_API_USER": "user", "NAMECHEAP_API_KEY": "key"}
22
- run_lego_command("something@gmail.com", "https://localhost/directory", "-----BEGIN CERTIFICATE REQUEST----- ...", "namecheap", test_env, "-----BEGIN RSA PRIVATE KEY-----")
22
+ run_lego_command(
23
+ "something@gmail.com",
24
+ "https://localhost/directory",
25
+ b"-----BEGIN CERTIFICATE REQUEST----- ...",
26
+ env=test_env,
27
+ plugin="namecheap",
28
+ private_key="-----BEGIN RSA PRIVATE KEY-----",
29
+ )
23
30
  ```
24
31
 
25
- | Argument | Description |
26
- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
27
- | `email` | The provided email will be registered to the ACME server. It may receive some emails notifying the user about certificate expiry. |
28
- | `server` | This is the full URL of a server that implements the ACME protocol. While letsencrypt is the most common one, there are other programs that provide this facility like Vault. |
29
- | `csr` | This must be a PEM string in bytes that is user generated and valid as according to the ACME server that is being provided above. Many providers have different requirements for what is allowed to be in the fields of the CSR. |
30
- | `plugin` | The plugin is a string that's supported by LEGO. The full list is located [here](https://go-acme.github.io/lego/dns/). On top of the LEGO provided ones, we have an extra plugin called `http` that will allow users to use HTTP01 and TLSALPN01 challenges. |
31
- | `env` | The env is a dictionary mapping of strings to strings that will be loaded into the environment for LEGO to use. All plugins require some configuration values loaded into the environment. You can find them [here](https://go-acme.github.io/lego/dns/) |
32
- | `private_key` | The provided private key will be used to register the user to the ACME server (not the key that signed the CSR), if not provided pylego will generate a new one |
32
+ | Argument | Description |
33
+ | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
34
+ | `email` | The provided email will be registered to the ACME server. It may receive some emails notifying the user about certificate expiry. |
35
+ | `server` | This is the full URL of a server that implements the ACME protocol. While letsencrypt is the most common one, there are other programs that provide this facility like Vault. |
36
+ | `csr` | This must be a PEM string in bytes that is user generated and valid as according to the ACME server that is being provided above. Many providers have different requirements for what is allowed to be in the fields of the CSR. |
37
+ | `plugin` | Provider to use: `http` (HTTP-01), `tls` (TLS-ALPN-01), or any LEGO DNS provider from [here](https://go-acme.github.io/lego/dns/). If no plugin is provided, pylego uses HTTP-01 by default. |
38
+ | `env` | The env is a dictionary mapping of strings to strings that will be loaded into the environment for LEGO to use. All plugins require some configuration values loaded into the environment. You can find them [here](https://go-acme.github.io/lego/dns/) |
39
+ | `private_key` | The provided private key will be used to register the user to the ACME server (not the key that signed the CSR), if not provided pylego will generate a new one |
33
40
 
34
41
  On top of the environment variables that LEGO supports, we have some extra ones that we use to configure the library:
35
42
 
36
43
  | Key | Description |
37
44
  | ----------------- | ----------------------------------------------------------------------------------------------------------------------------- |
38
45
  | `SSL_CERT_FILE` | Path to a CA certificate file for pylego to trust. This can be used for trusting the certificate of the ACME server provided. |
39
- | `HTTP01_IFACE` | The interface to be used for the HTTP01 challenge if the plugin is chosen. Any interface by default. |
40
- | `HTTP01_PORT` | The port to be used for the HTTP01 challenge if the plugin is chosen. 80 by default. |
41
- | `TLSALPN01_IFACE` | The interface to be used for the TLSALPN01 challenge if the plugin is chosen. Any interface by default. |
42
- | `TLSALPN01_PORT` | The port to be used for the TLSALPN01 challenge if the plugin is chosen. 443 by default. |
46
+ | `HTTP01_IFACE` | Interface for the HTTP-01 challenge (when no DNS plugin is used or when `plugin=http`). Any interface by default. |
47
+ | `HTTP01_PORT` | Port for the HTTP-01 challenge (when no DNS plugin is used or when `plugin=http`). 80 by default. |
48
+ | `TLSALPN01_IFACE` | Interface for the TLS-ALPN-01 challenge (when `plugin=tls`). Any interface by default. |
49
+ | `TLSALPN01_PORT` | Port for the TLS-ALPN-01 challenge (when `plugin=tls`). 443 by default. |
43
50
 
44
51
  ## How does it work?
45
52
 
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "pylego"
3
- version = "0.1.24"
3
+ version = "0.1.31"
4
4
  authors = [
5
5
  { name="Canonical", email="telco-engineers@lists.canonical.com" },
6
6
  ]
7
7
  description = "A python wrapper package for the lego application written in Golang"
8
8
  readme = "README.md"
9
- requires-python = ">=3.13.3"
9
+ requires-python = ">=3.10"
10
10
  classifiers = [
11
11
  "Programming Language :: Python :: 3",
12
12
  "License :: OSI Approved :: Apache Software License",
@@ -25,7 +25,7 @@ Homepage = "https://github.com/canonical/pylego"
25
25
  Issues = "https://github.com/canonical/pylego/issues"
26
26
 
27
27
  [build-system]
28
- requires = ["setuptools>=80.8.0"]
28
+ requires = ["setuptools>=80.9.0"]
29
29
  build-backend = "setuptools.build_meta"
30
30
 
31
31
  [tool.setuptools]
@@ -1,20 +1,20 @@
1
1
  module github.com/canonical/pylego
2
2
 
3
- go 1.23.0
3
+ go 1.24.0
4
4
 
5
- toolchain go1.24.3
5
+ toolchain go1.25.1
6
6
 
7
- require github.com/go-acme/lego/v4 v4.23.1
7
+ require github.com/go-acme/lego/v4 v4.26.0
8
8
 
9
9
  require (
10
- cloud.google.com/go/auth v0.15.0 // indirect
11
- cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
12
- cloud.google.com/go/compute/metadata v0.6.0 // indirect
10
+ cloud.google.com/go/auth v0.16.5 // indirect
11
+ cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
12
+ cloud.google.com/go/compute/metadata v0.8.0 // indirect
13
13
  github.com/AdamSLevy/jsonrpc2/v14 v14.1.0 // indirect
14
14
  github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
15
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.1 // indirect
16
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.2 // indirect
17
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
15
+ github.com/Azure/azure-sdk-for-go/sdk/azcore v1.19.1 // indirect
16
+ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.11.0 // indirect
17
+ github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 // indirect
18
18
  github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/dns/armdns v1.2.0 // indirect
19
19
  github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/privatedns/armprivatedns v1.3.0 // indirect
20
20
  github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resourcegraph/armresourcegraph v0.9.0 // indirect
@@ -27,172 +27,202 @@ require (
27
27
  github.com/Azure/go-autorest/autorest/to v0.4.1 // indirect
28
28
  github.com/Azure/go-autorest/logger v0.2.1 // indirect
29
29
  github.com/Azure/go-autorest/tracing v0.6.0 // indirect
30
- github.com/AzureAD/microsoft-authentication-library-for-go v1.3.3 // indirect
30
+ github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2 // indirect
31
31
  github.com/OpenDNS/vegadns2client v0.0.0-20180418235048-a3fa4a771d87 // indirect
32
32
  github.com/akamai/AkamaiOPEN-edgegrid-golang v1.2.2 // indirect
33
+ github.com/akamai/AkamaiOPEN-edgegrid-golang/v11 v11.1.0 // indirect
34
+ github.com/alibabacloud-go/alibabacloud-gateway-spi v0.0.5 // indirect
35
+ github.com/alibabacloud-go/darabonba-openapi/v2 v2.1.12 // indirect
36
+ github.com/alibabacloud-go/debug v1.0.1 // indirect
37
+ github.com/alibabacloud-go/endpoint-util v1.1.0 // indirect
38
+ github.com/alibabacloud-go/openapi-util v0.1.1 // indirect
39
+ github.com/alibabacloud-go/tea v1.3.12 // indirect
40
+ github.com/alibabacloud-go/tea-utils/v2 v2.0.7 // indirect
33
41
  github.com/aliyun/alibaba-cloud-sdk-go v1.63.100 // indirect
34
- github.com/aws/aws-sdk-go-v2 v1.36.3 // indirect
35
- github.com/aws/aws-sdk-go-v2/config v1.29.9 // indirect
36
- github.com/aws/aws-sdk-go-v2/credentials v1.17.62 // indirect
37
- github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.30 // indirect
38
- github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 // indirect
39
- github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
42
+ github.com/aliyun/credentials-go v1.4.7 // indirect
43
+ github.com/aws/aws-sdk-go-v2 v1.39.0 // indirect
44
+ github.com/aws/aws-sdk-go-v2/config v1.31.8 // indirect
45
+ github.com/aws/aws-sdk-go-v2/credentials v1.18.12 // indirect
46
+ github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.7 // indirect
47
+ github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.7 // indirect
48
+ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.7 // indirect
40
49
  github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
41
- github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
42
- github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
43
- github.com/aws/aws-sdk-go-v2/service/lightsail v1.43.1 // indirect
44
- github.com/aws/aws-sdk-go-v2/service/route53 v1.50.0 // indirect
45
- github.com/aws/aws-sdk-go-v2/service/sso v1.25.1 // indirect
46
- github.com/aws/aws-sdk-go-v2/service/ssooidc v1.29.1 // indirect
47
- github.com/aws/aws-sdk-go-v2/service/sts v1.33.17 // indirect
48
- github.com/aws/smithy-go v1.22.2 // indirect
49
- github.com/baidubce/bce-sdk-go v0.9.223 // indirect
50
- github.com/benbjohnson/clock v1.3.0 // indirect
50
+ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.1 // indirect
51
+ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.7 // indirect
52
+ github.com/aws/aws-sdk-go-v2/service/lightsail v1.48.4 // indirect
53
+ github.com/aws/aws-sdk-go-v2/service/route53 v1.58.2 // indirect
54
+ github.com/aws/aws-sdk-go-v2/service/sso v1.29.3 // indirect
55
+ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.34.4 // indirect
56
+ github.com/aws/aws-sdk-go-v2/service/sts v1.38.4 // indirect
57
+ github.com/aws/smithy-go v1.23.0 // indirect
58
+ github.com/aziontech/azionapi-go-sdk v0.142.0 // indirect
59
+ github.com/baidubce/bce-sdk-go v0.9.243 // indirect
60
+ github.com/benbjohnson/clock v1.3.5 // indirect
51
61
  github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
52
62
  github.com/cenkalti/backoff/v4 v4.3.0 // indirect
53
63
  github.com/civo/civogo v0.3.11 // indirect
64
+ github.com/clbanning/mxj/v2 v2.7.0 // indirect
54
65
  github.com/cloudflare/cloudflare-go v0.115.0 // indirect
55
66
  github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
56
67
  github.com/dimchansky/utfbom v1.1.1 // indirect
57
68
  github.com/dnsimple/dnsimple-go v1.7.0 // indirect
58
- github.com/exoscale/egoscale/v3 v3.1.13 // indirect
69
+ github.com/dnsimple/dnsimple-go/v4 v4.0.0 // indirect
70
+ github.com/exoscale/egoscale/v3 v3.1.26 // indirect
71
+ github.com/fatih/color v1.16.0 // indirect
59
72
  github.com/fatih/structs v1.1.0 // indirect
60
73
  github.com/felixge/httpsnoop v1.0.4 // indirect
61
- github.com/fsnotify/fsnotify v1.8.0 // indirect
62
- github.com/gabriel-vasile/mimetype v1.4.2 // indirect
74
+ github.com/fsnotify/fsnotify v1.9.0 // indirect
75
+ github.com/gabriel-vasile/mimetype v1.4.3 // indirect
63
76
  github.com/ghodss/yaml v1.0.0 // indirect
77
+ github.com/go-acme/alidns-20150109/v4 v4.6.0 // indirect
78
+ github.com/go-acme/tencentclouddnspod v1.1.10 // indirect
79
+ github.com/go-acme/tencentedgdeone v1.1.19 // indirect
64
80
  github.com/go-errors/errors v1.0.1 // indirect
65
- github.com/go-jose/go-jose/v4 v4.0.5 // indirect
66
- github.com/go-logr/logr v1.4.2 // indirect
81
+ github.com/go-jose/go-jose/v4 v4.1.2 // indirect
82
+ github.com/go-logr/logr v1.4.3 // indirect
67
83
  github.com/go-logr/stdr v1.2.2 // indirect
84
+ github.com/go-ozzo/ozzo-validation/v4 v4.3.0 // indirect
68
85
  github.com/go-playground/locales v0.14.1 // indirect
69
86
  github.com/go-playground/universal-translator v0.18.1 // indirect
70
- github.com/go-playground/validator/v10 v10.16.0 // indirect
87
+ github.com/go-playground/validator/v10 v10.23.0 // indirect
71
88
  github.com/go-resty/resty/v2 v2.16.5 // indirect
72
- github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
89
+ github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
73
90
  github.com/goccy/go-json v0.10.5 // indirect
91
+ github.com/goccy/go-yaml v1.9.8 // indirect
74
92
  github.com/gofrs/flock v0.12.1 // indirect
75
93
  github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
76
- github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
94
+ github.com/golang-jwt/jwt/v5 v5.3.0 // indirect
95
+ github.com/golang/protobuf v1.5.4 // indirect
77
96
  github.com/google/go-querystring v1.1.0 // indirect
78
97
  github.com/google/s2a-go v0.1.9 // indirect
79
98
  github.com/google/uuid v1.6.0 // indirect
80
99
  github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
81
- github.com/googleapis/gax-go/v2 v2.14.1 // indirect
100
+ github.com/googleapis/gax-go/v2 v2.15.0 // indirect
82
101
  github.com/gophercloud/gophercloud v1.14.1 // indirect
83
102
  github.com/gophercloud/utils v0.0.0-20231010081019-80377eca5d56 // indirect
84
103
  github.com/hashicorp/errwrap v1.0.0 // indirect
85
104
  github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
86
105
  github.com/hashicorp/go-multierror v1.1.1 // indirect
87
- github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
106
+ github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
88
107
  github.com/hashicorp/go-uuid v1.0.3 // indirect
89
108
  github.com/hashicorp/hcl v1.0.0 // indirect
90
- github.com/huaweicloud/huaweicloud-sdk-go-v3 v0.1.141 // indirect
109
+ github.com/huaweicloud/huaweicloud-sdk-go-v3 v0.1.168 // indirect
91
110
  github.com/iij/doapi v0.0.0-20190504054126-0bbf12d6d7df // indirect
92
111
  github.com/infobloxopen/infoblox-go-client v1.1.1 // indirect
93
- github.com/infobloxopen/infoblox-go-client/v2 v2.9.0 // indirect
112
+ github.com/infobloxopen/infoblox-go-client/v2 v2.10.0 // indirect
94
113
  github.com/jmespath/go-jmespath v0.4.0 // indirect
95
- github.com/json-iterator/go v1.1.12 // indirect
114
+ github.com/json-iterator/go v1.1.13-0.20220915233716-71ac16282d12 // indirect
96
115
  github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213 // indirect
97
116
  github.com/kolo/xmlrpc v0.0.0-20220921171641-a4b6fa1dd06b // indirect
98
117
  github.com/kylelemons/godebug v1.1.0 // indirect
99
118
  github.com/labbsr0x/bindman-dns-webhook v1.0.2 // indirect
100
119
  github.com/labbsr0x/goh v1.0.1 // indirect
101
- github.com/leodido/go-urn v1.2.4 // indirect
102
- github.com/linode/linodego v1.48.1 // indirect
120
+ github.com/leodido/go-urn v1.4.0 // indirect
121
+ github.com/linode/linodego v1.57.0 // indirect
103
122
  github.com/liquidweb/liquidweb-cli v0.6.9 // indirect
104
123
  github.com/liquidweb/liquidweb-go v1.6.4 // indirect
105
124
  github.com/magiconair/properties v1.8.7 // indirect
125
+ github.com/mattn/go-colorable v0.1.13 // indirect
106
126
  github.com/mattn/go-isatty v0.0.20 // indirect
107
- github.com/miekg/dns v1.1.64 // indirect
127
+ github.com/miekg/dns v1.1.68 // indirect
108
128
  github.com/mimuret/golang-iij-dpf v0.9.1 // indirect
109
129
  github.com/mitchellh/go-homedir v1.1.0 // indirect
110
130
  github.com/mitchellh/mapstructure v1.5.0 // indirect
111
131
  github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
112
132
  github.com/modern-go/reflect2 v1.0.2 // indirect
113
133
  github.com/namedotcom/go v0.0.0-20180403034216-08470befbe04 // indirect
134
+ github.com/namedotcom/go/v4 v4.0.2 // indirect
114
135
  github.com/nrdcg/auroradns v1.1.0 // indirect
115
- github.com/nrdcg/bunny-go v0.0.0-20240207213615-dde5bf4577a3 // indirect
116
- github.com/nrdcg/desec v0.10.0 // indirect
136
+ github.com/nrdcg/bunny-go v0.0.0-20250327222614-988a091fc7ea // indirect
137
+ github.com/nrdcg/desec v0.11.0 // indirect
117
138
  github.com/nrdcg/dnspod-go v0.4.0 // indirect
118
139
  github.com/nrdcg/freemyip v0.3.0 // indirect
119
140
  github.com/nrdcg/goacmedns v0.2.0 // indirect
120
- github.com/nrdcg/goinwx v0.10.0 // indirect
141
+ github.com/nrdcg/goinwx v0.11.0 // indirect
121
142
  github.com/nrdcg/mailinabox v0.2.0 // indirect
122
- github.com/nrdcg/namesilo v0.2.1 // indirect
143
+ github.com/nrdcg/namesilo v0.5.0 // indirect
123
144
  github.com/nrdcg/nodion v0.1.0 // indirect
145
+ github.com/nrdcg/oci-go-sdk/common/v1065 v1065.100.0 // indirect
146
+ github.com/nrdcg/oci-go-sdk/dns/v1065 v1065.100.0 // indirect
124
147
  github.com/nrdcg/porkbun v0.4.0 // indirect
125
148
  github.com/nzdjb/go-metaname v1.0.0 // indirect
126
149
  github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
127
150
  github.com/oracle/oci-go-sdk/v65 v65.87.0 // indirect
128
- github.com/ovh/go-ovh v1.7.0 // indirect
151
+ github.com/ovh/go-ovh v1.9.0 // indirect
129
152
  github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
130
153
  github.com/pelletier/go-toml/v2 v2.1.0 // indirect
131
154
  github.com/peterhellberg/link v1.2.0 // indirect
132
155
  github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
133
156
  github.com/pkg/errors v0.9.1 // indirect
134
157
  github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
135
- github.com/pquerna/otp v1.4.0 // indirect
158
+ github.com/pquerna/otp v1.5.0 // indirect
136
159
  github.com/regfish/regfish-dnsapi-go v0.1.1 // indirect
137
- github.com/sacloud/api-client-go v0.2.10 // indirect
138
- github.com/sacloud/go-http v0.1.8 // indirect
139
- github.com/sacloud/iaas-api-go v1.14.0 // indirect
140
- github.com/sacloud/packages-go v0.0.10 // indirect
160
+ github.com/sacloud/api-client-go v0.3.3 // indirect
161
+ github.com/sacloud/go-http v0.1.9 // indirect
162
+ github.com/sacloud/iaas-api-go v1.17.1 // indirect
163
+ github.com/sacloud/packages-go v0.0.11 // indirect
141
164
  github.com/sagikazarmark/locafero v0.4.0 // indirect
142
165
  github.com/sagikazarmark/slog-shim v0.1.0 // indirect
143
- github.com/scaleway/scaleway-sdk-go v1.0.0-beta.32 // indirect
166
+ github.com/scaleway/scaleway-sdk-go v1.0.0-beta.34 // indirect
144
167
  github.com/selectel/domains-go v1.1.0 // indirect
145
168
  github.com/selectel/go-selvpcclient/v3 v3.2.1 // indirect
146
- github.com/shopspring/decimal v1.3.1 // indirect
169
+ github.com/selectel/go-selvpcclient/v4 v4.1.0 // indirect
170
+ github.com/shopspring/decimal v1.4.0 // indirect
147
171
  github.com/sirupsen/logrus v1.9.3 // indirect
148
172
  github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9 // indirect
149
- github.com/softlayer/softlayer-go v1.1.7 // indirect
173
+ github.com/softlayer/softlayer-go v1.2.1 // indirect
150
174
  github.com/softlayer/xmlrpc v0.0.0-20200409220501-5f089df7cb7e // indirect
151
- github.com/sony/gobreaker v0.5.0 // indirect
175
+ github.com/sony/gobreaker v1.0.0 // indirect
152
176
  github.com/sourcegraph/conc v0.3.0 // indirect
153
177
  github.com/spf13/afero v1.11.0 // indirect
154
- github.com/spf13/cast v1.6.0 // indirect
155
- github.com/spf13/pflag v1.0.5 // indirect
178
+ github.com/spf13/cast v1.7.0 // indirect
179
+ github.com/spf13/pflag v1.0.7 // indirect
156
180
  github.com/spf13/viper v1.18.2 // indirect
157
- github.com/stretchr/testify v1.10.0 // indirect
181
+ github.com/stretchr/objx v0.5.2 // indirect
182
+ github.com/stretchr/testify v1.11.1 // indirect
158
183
  github.com/subosito/gotenv v1.6.0 // indirect
159
- github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.1128 // indirect
184
+ github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.1.26 // indirect
160
185
  github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod v1.0.1128 // indirect
161
186
  github.com/tjfoc/gmsm v1.4.1 // indirect
162
187
  github.com/transip/gotransip/v6 v6.26.0 // indirect
163
- github.com/ultradns/ultradns-go-sdk v1.8.0-20241010134910-243eeec // indirect
188
+ github.com/ultradns/ultradns-go-sdk v1.8.1-20250722213956-faef419 // indirect
164
189
  github.com/vinyldns/go-vinyldns v0.9.16 // indirect
165
- github.com/volcengine/volc-sdk-golang v1.0.199 // indirect
166
- github.com/vultr/govultr/v3 v3.17.0 // indirect
167
- github.com/yandex-cloud/go-genproto v0.0.0-20250319153614-fb9d3e5eb01a // indirect
190
+ github.com/volcengine/volc-sdk-golang v1.0.219 // indirect
191
+ github.com/vultr/govultr/v3 v3.23.0 // indirect
192
+ github.com/yandex-cloud/go-genproto v0.23.0 // indirect
168
193
  github.com/yandex-cloud/go-sdk v0.0.0-20250320143332-9cbcfc5de4ae // indirect
194
+ github.com/yandex-cloud/go-sdk/services/dns v0.0.12 // indirect
195
+ github.com/yandex-cloud/go-sdk/v2 v2.11.0 // indirect
196
+ github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
169
197
  go.mongodb.org/mongo-driver v1.13.1 // indirect
170
198
  go.opentelemetry.io/auto/sdk v1.1.0 // indirect
171
- go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
172
- go.opentelemetry.io/otel v1.34.0 // indirect
173
- go.opentelemetry.io/otel/metric v1.34.0 // indirect
174
- go.opentelemetry.io/otel/trace v1.34.0 // indirect
199
+ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
200
+ go.opentelemetry.io/otel v1.37.0 // indirect
201
+ go.opentelemetry.io/otel/metric v1.37.0 // indirect
202
+ go.opentelemetry.io/otel/trace v1.37.0 // indirect
175
203
  go.uber.org/atomic v1.9.0 // indirect
176
- go.uber.org/multierr v1.9.0 // indirect
177
- go.uber.org/ratelimit v0.3.0 // indirect
178
- golang.org/x/crypto v0.36.0 // indirect
204
+ go.uber.org/multierr v1.11.0 // indirect
205
+ go.uber.org/ratelimit v0.3.1 // indirect
206
+ go.uber.org/zap v1.27.0 // indirect
207
+ golang.org/x/crypto v0.42.0 // indirect
179
208
  golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect
180
- golang.org/x/mod v0.23.0 // indirect
181
- golang.org/x/net v0.38.0 // indirect
182
- golang.org/x/oauth2 v0.28.0 // indirect
183
- golang.org/x/sync v0.12.0 // indirect
184
- golang.org/x/sys v0.31.0 // indirect
185
- golang.org/x/text v0.23.0 // indirect
186
- golang.org/x/time v0.11.0 // indirect
187
- golang.org/x/tools v0.30.0 // indirect
188
- google.golang.org/api v0.227.0 // indirect
189
- google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38 // indirect
190
- google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
191
- google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
192
- google.golang.org/grpc v1.71.0 // indirect
193
- google.golang.org/protobuf v1.36.5 // indirect
209
+ golang.org/x/mod v0.27.0 // indirect
210
+ golang.org/x/net v0.44.0 // indirect
211
+ golang.org/x/oauth2 v0.31.0 // indirect
212
+ golang.org/x/sync v0.17.0 // indirect
213
+ golang.org/x/sys v0.36.0 // indirect
214
+ golang.org/x/text v0.29.0 // indirect
215
+ golang.org/x/time v0.13.0 // indirect
216
+ golang.org/x/tools v0.36.0 // indirect
217
+ golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
218
+ google.golang.org/api v0.249.0 // indirect
219
+ google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirect
220
+ google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect
221
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
222
+ google.golang.org/grpc v1.75.0 // indirect
223
+ google.golang.org/protobuf v1.36.8 // indirect
194
224
  gopkg.in/ini.v1 v1.67.0 // indirect
195
- gopkg.in/ns1/ns1-go.v2 v2.13.0 // indirect
225
+ gopkg.in/ns1/ns1-go.v2 v2.15.0 // indirect
196
226
  gopkg.in/yaml.v2 v2.4.0 // indirect
197
227
  gopkg.in/yaml.v3 v3.0.1 // indirect
198
228
  )