dash 3.1.2 → 3.1.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f055523340c3a10172a6a7b0d701bfa8d7591727005e6bb42b86a1e20feb5cc2
4
- data.tar.gz: 4b07129c7bb287b216d426137eab83fc438a1ec0bfc2a010ac7333bdae94a75e
3
+ metadata.gz: f4a83d0c755177ff76a6adbe519a705cff0c2fa32ea8a5dc4c71fbd2b10a74b3
4
+ data.tar.gz: c80e2fedd3a5fb8b7e6949f384698e461b1073172ed9d99c8ccd1d7f0391d4a3
5
5
  SHA512:
6
- metadata.gz: ec9eecf2779edb62d27c5bb3cb19b2e9f8febbcacb6f6e65a68d9f83e6f88d71763265c2d32e4612c437242a8a4e5ecd052d21fbd23f91b909bca7e7c2d5fc80
7
- data.tar.gz: 19a72b9aa01b82a945dcea77a66a9ebeb1145d02e2434a06d43d65b8006b5a7082400f5052c48616ac6b2704399d878a21c036e9e6d618b2052545307e3356a7
6
+ metadata.gz: e6ea280741d6c78b1b0ed7e6762f536dd4968fb2d9575dd347d07376cfc1128f4bbed91a2c3dc2d09a1620b8a24202385854c1ded2f74d7a6093fa8955ac7b21
7
+ data.tar.gz: f3e9e2f1946fd99356a349a4d6148c4aa457ae4227ce08171f69f9811c27b8572bf8f4524f63631c533c4b01ba26ef5e4033be738fc1bd7f282a3e961d7eb4db
@@ -834,7 +834,7 @@ proxy:
834
834
  # below already embeds its ghcr.io host
835
835
  repository: ghcr.io/zoolutions/kamal-proxy # Container repository for the
836
836
  # kamal-proxy image (this is the default)
837
- version: v1.0.0.4 # Version tag of the kamal-proxy image to use.
837
+ version: v1.0.0.5 # Version tag of the kamal-proxy image to use.
838
838
  # Defaults to the minimum version this gem
839
839
  # requires - only pin it to roll forward early,
840
840
  # never below the default
@@ -851,10 +851,14 @@ proxy:
851
851
  # These are proxy-wide, not per-app: every service on this proxy shares the
852
852
  # ACME account and the DNS provider.
853
853
  #
854
- # `dns_provider` names the provider that answers DNS-01 challenges. Leave it
855
- # at `auto` to let the proxy pick from the credentials it can see. An
856
- # unsupported name is rejected here, at config time - kamal-proxy would only
857
- # log a warning and then never issue a certificate.
854
+ # `dns_provider` names the provider that answers DNS-01 challenges. DNS-01
855
+ # activates only when this is set (proxy v1.0.0.5+): unset means HTTP-01
856
+ # only, so credentials visible in the proxy's environment can never arm
857
+ # DNS-01 on their own. `auto` is an explicit opt-in that picks the provider
858
+ # from the credentials it can see and logs at boot which one it armed;
859
+ # `none` says "no DNS-01" explicitly. An unsupported name is rejected here,
860
+ # at config time - kamal-proxy would only log a warning and then never
861
+ # issue a certificate.
858
862
  #
859
863
  # A plain string (`dns_provider: cloudflare`) uses one provider for every
860
864
  # zone. The hash form pins zones to the DNS host that actually serves them,
@@ -878,7 +882,7 @@ proxy:
878
882
  #
879
883
  # `credentials` names entries in `.kamal/secrets` to pass to the proxy
880
884
  # container as environment variables - the API credentials your DNS provider
881
- # needs (`CF_API_TOKEN`, `LOOPIA_API_USER`, ...). Name them exactly as the
885
+ # needs (`CF_DNS_API_TOKEN`, `LOOPIA_API_USER`, ...). Name them exactly as the
882
886
  # provider expects them, since the name is what reaches the container.
883
887
  #
884
888
  # They are written to a 0600 env file on the proxy host and passed with
@@ -897,7 +901,7 @@ proxy:
897
901
  http_fallback: false
898
902
  directory: https://acme-staging-v02.api.letsencrypt.org/directory
899
903
  credentials:
900
- - CF_API_TOKEN
904
+ - CF_DNS_API_TOKEN
901
905
  # Logging and tracing
902
906
  #
903
907
  # `log_format` is the shape of every line the proxy writes, the access log
@@ -13,7 +13,7 @@ class Kamal::Configuration::Proxy::Acme
13
13
  # step with the proxy by test/proxy_flag_coverage_test.rb, which compares this
14
14
  # list against the manifest bin/sync-proxy-flags generates from the image.
15
15
  DNS_PROVIDERS = %w[
16
- auto cloudflare digitalocean gcloud godaddy hetzner namecheap route53 vultr
16
+ auto cloudflare digitalocean gcloud godaddy hetzner namecheap none route53 vultr
17
17
  ].freeze
18
18
 
19
19
  # Short forms kamal-proxy's ParseProviderName accepts but does not advertise,
@@ -1,5 +1,5 @@
1
1
  class Kamal::Configuration::Proxy::Run
2
- MINIMUM_VERSION = "v1.0.0.4"
2
+ MINIMUM_VERSION = "v1.0.0.5"
3
3
  DEFAULT_HTTP_PORT = 80
4
4
  DEFAULT_HTTPS_PORT = 443
5
5
  DEFAULT_LOG_MAX_SIZE = "10m"
data/lib/kamal/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Kamal
2
- VERSION = "3.1.2"
2
+ VERSION = "3.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dash
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.2
4
+ version: 3.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson