dash 4.1.2 → 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: 1ca6079b920059c7ba0b4740c7a6a992dbecd3538320aadcada8bea2534fd4ae
4
- data.tar.gz: '089e317ce48dfb5b21f0848d170f5c7db6e15aa2181be2c560c11be0b2ef4847'
3
+ metadata.gz: 17c99f41669956c79ffd4272e4fd524171c4ff9a37f26d885bd4b4cdc084be85
4
+ data.tar.gz: 8fa42e665988fd8d343b0d0141438096635e6059566767bb3d63375fe975e324
5
5
  SHA512:
6
- metadata.gz: a3da6d3bdb662672fdeb2f8c3e8c58e2f651720b11434ad2782eee6516372f0979f0a427267282e166367710ac274e4f4b10b617a9b6cb540e529c212c1de97b
7
- data.tar.gz: fd2d74330b16950bffa86eecbdf1f00bae67d6264aa664a4a7465c195248f70fe477e2f19a69503c0147c7070cb87c445db0d4bd76f41778ce3348279e207874
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.2 # 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
@@ -1,5 +1,5 @@
1
1
  class Dash::Configuration::Proxy::Run
2
- MINIMUM_VERSION = "v1.1.0.2"
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.2"
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.2
4
+ version: 4.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson