Skip to content

Releases: Unleash/unleash-edge

unleash-edge v4.0.3

18 May 12:52
fee159c
Compare
Choose a tag to compare

Bug Fixes

  • allow multiple client tokens at startup

Commit Statistics

  • 1 commit contributed to the release.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #188

Commit Details

view details
  • #188
    • Allow multiple client tokens at startup (808db80)

unleash-edge v4.0.2

17 May 13:24
940bb5b
Compare
Choose a tag to compare

Chore

  • bump yggdrasil to pull through fix for rollout not working with random

Commit Statistics

  • 1 commit contributed to the release.
  • 4 days passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #187

Commit Details

view details
  • #187
    • Bump yggdrasil to pull through fix for rollout not working with random (447baab)

unleash-edge v4.0.1

12 May 13:48
c28ca3f
Compare
Choose a tag to compare

Chore

  • allow output from bad requests to respond with the error rather than just the status code
  • output logs for any response from feature query in debug output

Commit Statistics

  • 2 commits contributed to the release.
  • 1 day passed between releases.
  • 2 commits were understood as conventional.
  • 2 unique issues were worked on: #184, #185

Commit Details

view details
  • #184
    • Allow output from bad requests to respond with the error rather than just the status code (4984c3e)
  • #185
    • Output logs for any response from feature query in debug output (5b821f8)

unleash-edge v4.0.0

11 May 10:26
7d43885
Compare
Choose a tag to compare

New Features

  • Add more visible info and warn logging for http errors

Bug Fixes

  • update rust crate clap to 4.2.7

Other

  • Prepare for 4.0.0 release

Commit Statistics

  • 3 commits contributed to the release.
  • 6 days passed between releases.
  • 3 commits were understood as conventional.
  • 2 unique issues were worked on: #171, #182

Commit Details

view details
  • #171
    • Update rust crate clap to 4.2.7 (bb09da9)
  • #182
    • Add more visible info and warn logging for http errors (7265628)
  • Uncategorized
    • Prepare for 4.0.0 release (b5930bc)

unleash-edge v3.0.0

05 May 08:24
a6779cd
Compare
Choose a tag to compare

Documentation

  • Prepare README for 3.0

New Features

  • Client TLS Identification

Commit Statistics

  • 2 commits contributed to the release.
  • 2 days passed between releases.
  • 2 commits were understood as conventional.
  • 1 unique issue was worked on: #176

Commit Details

view details

unleash-edge v2.0.2

02 May 09:43
357b407
Compare
Choose a tag to compare

Bug Fixes

  • Handle both upper and lowercase of apitokentype.
    Unleash has suddenly started returning token type with uppercase.
    This PR makes us handle both UPPER and lower case for token type.

    The real fix would be for Unleash to obey its own contract with
    lowercase for token types, but this fix makes us more tolerant to
    mistakes in Unleash code.

Other

  • prepare for release

Commit Statistics

  • 2 commits contributed to the release.
  • 11 days passed between releases.
  • 2 commits were understood as conventional.
  • 1 unique issue was worked on: #174

Commit Details

view details
  • #174
    • Handle both upper and lowercase of apitokentype. (dfb1910)
  • Uncategorized

unleash-edge v2.0.1

20 Apr 11:52
6c7316b
Compare
Choose a tag to compare

Bug Fixes

  • Use split_once.
    We had forgotten that : is a valid part of a header value, so
    splitting on : ended up splitting into too many parts and thus failing
    the parser. This PR changes to use split_once, which splits on first
    occurrence. Since Header Names are not allowed to contains : this will
    be fine
  • update rust crate clap to 4.2.4

Commit Statistics

  • 3 commits contributed to the release over the course of 1 calendar day.
  • 1 day passed between releases.
  • 2 commits were understood as conventional.
  • 2 unique issues were worked on: #140, #164

Commit Details

view details

unleash-edge v2.0.0

19 Apr 08:16
7438b56
Compare
Choose a tag to compare

Bug Fixes

  • Building context parameters using map syntax

Commit Statistics

  • 1 commit contributed to the release.
  • 1 day passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #160

Commit Details

view details
  • #160
    • Building context parameters using map syntax (33d412a)

unleash-edge v1.4.0

17 Apr 13:02
0847f7d
Compare
Choose a tag to compare

New Features

  • allow cli option to disable ssl verification

Commit Statistics

  • 1 commit contributed to the release.
  • 2 days passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #157

Commit Details

view details
  • #157
    • Allow cli option to disable ssl verification (b740273)

unleash-edge v1.3.1

14 Apr 13:46
845aa17
Compare
Choose a tag to compare

Bug Fixes

  • Fixes incorrect parsing of extra arguments.
    Currently we do not parse extra parameters into the properties holder
    for the context. This PR updates to make sure that overflows (properties
    we haven't explicitly defined) get parsed into the properties map

Commit Statistics

  • 1 commit contributed to the release.
  • 1 day passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #156

Commit Details

view details
  • #156
    • Fixes incorrect parsing of extra arguments. (a4930e6)