dash 4.1.1 → 4.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: bb6c271cec9b9ab118649ffeaf503aa5ba31bd8d0f8057ce0a61adb93e130ef4
4
- data.tar.gz: ce7f60b8e4a764e06ab868663f825134d8f73cac0e11f663793e6a12471ab490
3
+ metadata.gz: 17c99f41669956c79ffd4272e4fd524171c4ff9a37f26d885bd4b4cdc084be85
4
+ data.tar.gz: 8fa42e665988fd8d343b0d0141438096635e6059566767bb3d63375fe975e324
5
5
  SHA512:
6
- metadata.gz: 35204403e1680a42ce0b0726225d68c55119a74b387a9cd45189822499e5aa225c250ad82190944cbd4a5ff7aa976b3dcf02600e44b92a8a4ed165f86123c96b
7
- data.tar.gz: cb520eb7f9028fad75e4537afcdcc1c7aea71aa6cb58c35a33b9c8d185781a4de9ad7a9f3d1f1f8daba8b73390b279bbd292ac1a82d531a303f34086c69c28d3
6
+ metadata.gz: c12f97e422182fba7128f2c27094dc824b0c76825273b89f70d10563c4acc6a59a1d22fe10c22c47b7e0456a6a50c30de0343a6c42de1e0ebd677e5a602c19f7
7
+ data.tar.gz: 897652d67bb727025f490d7ee8ca1b719c77c13a2fb896826742c6fc34f5ff3968384925dccd01e00d6493a07c98e75212e76933c97d36323e03c20fb3436d46
@@ -328,11 +328,13 @@ proxy:
328
328
  # `interval` is the poll interval in seconds (proxy default 300, minimum 10).
329
329
  #
330
330
  # Authentication tokens live in the PROXY's environment, not the app's: polls
331
- # send `KAMAL_PROXY_REDIRECTS_TOKEN` as a bearer token when set, and
331
+ # send `DASH_PROXY_REDIRECTS_TOKEN` as a bearer token when set, and
332
332
  # `POST /.dash-proxy/redirects/refresh` nudges an immediate re-poll when
333
- # authenticated with `KAMAL_PROXY_REFRESH_TOKEN`. Set both via
334
- # `proxy.run.options.env`, next to `KAMAL_PROXY_DOMAINS_TOKEN` — never as
335
- # deploy flags, which leak into process listings and audit logs.
333
+ # authenticated with `DASH_PROXY_REFRESH_TOKEN`. Set both via
334
+ # `proxy.run.options.env`, next to `DASH_PROXY_DOMAINS_TOKEN` — never as
335
+ # deploy flags, which leak into process listings and audit logs. The
336
+ # `KAMAL_PROXY_`-prefixed names are still read as a fallback, so a proxy
337
+ # container that already carries them keeps working.
336
338
  #
337
339
  # When a loadbalancer is configured the map answers at the loadbalancer, same
338
340
  # as `ssl_domains` and `canonical_host` — the per-host proxies never see it.
@@ -422,10 +424,11 @@ proxy:
422
424
  # proxy default) issues per-domain certs; 2-25 enables stable SAN batching.
423
425
  #
424
426
  # Authentication tokens for the poll endpoint and the refresh nudge are
425
- # read by the proxy from the `KAMAL_PROXY_DOMAINS_TOKEN` and
426
- # `KAMAL_PROXY_REFRESH_TOKEN` environment variables. Set them on the proxy
427
- # container via `proxy.run.options.env` never as deploy flags, which
428
- # leak into process listings and audit logs.
427
+ # read by the proxy from the `DASH_PROXY_DOMAINS_TOKEN` and
428
+ # `DASH_PROXY_REFRESH_TOKEN` environment variables (the `KAMAL_PROXY_`
429
+ # names are still read as a fallback). Set them on the proxy container via
430
+ # `proxy.run.options.env` never as deploy flags, which leak into process
431
+ # listings and audit logs.
429
432
  ssl_domains:
430
433
  source: /api/v1/kamal/domains
431
434
  interval: 300
@@ -834,7 +837,7 @@ proxy:
834
837
  # below already embeds its ghcr.io host
835
838
  repository: ghcr.io/zoolutions/dash-proxy # Container repository for the
836
839
  # dash-proxy image (this is the default)
837
- version: v1.1.0.1 # Version tag of the dash-proxy image to use.
840
+ version: v1.1.0.3 # Version tag of the dash-proxy image to use.
838
841
  # Defaults to the minimum version this gem
839
842
  # requires - only pin it to roll forward early,
840
843
  # never below the default
@@ -876,6 +879,16 @@ proxy:
876
879
  # supports one, and `http_fallback` falls back to an HTTP-01 challenge when
877
880
  # DNS-01 fails. Both default to true in the proxy.
878
881
  #
882
+ # For `host`/`hosts` names the proxy infers the zone from the name itself.
883
+ # Names learned from `ssl_domains` are tenant-owned and may sit in a zone you
884
+ # do not run DNS for, so from proxy v1.1.0.2 they collapse into a wildcard
885
+ # only where the hash form of `dns_provider` maps their zone explicitly -
886
+ # mapping a zone is you asserting DNS control over it. Under a mapped zone
887
+ # every single-label name is ordered as that zone's wildcard, while the apex
888
+ # and deeper names ride the same order as concrete identifiers. `default` and
889
+ # `auto` assert nothing about a specific zone, so they never collapse a
890
+ # dynamic name.
891
+ #
879
892
  # `directory` overrides the ACME directory URL - point it at Let's Encrypt's
880
893
  # staging environment while you are working out a DNS setup, so you do not
881
894
  # burn production rate limits on failed attempts.
@@ -1,5 +1,5 @@
1
1
  class Dash::Configuration::Proxy::Run
2
- MINIMUM_VERSION = "v1.1.0.1"
2
+ MINIMUM_VERSION = "v1.1.0.3"
3
3
  DEFAULT_HTTP_PORT = 80
4
4
  DEFAULT_HTTPS_PORT = 443
5
5
  DEFAULT_LOG_MAX_SIZE = "10m"
data/lib/dash/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Dash
2
- VERSION = "4.1.1"
2
+ VERSION = "4.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: 4.1.1
4
+ version: 4.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson