0.2.3 (2021/05/21)
Deprecations/Changes
- The behavior when
cors_enabled
is not specified for a listener is changing
to be equivalent to acors_allowed_origins
value of*
; that is, accept all
origins. This allows Boundary, by default, to have the admin UI and desktop
client work without further specification of origins by the operator. This is
only affecting default behavior; ifcors_enabled
is explicitly set to
true
, the behavior will be the same as before. This had been changed in
v0.2.1 due to a bug found in v0.2.0 that caused all origins to always be
allowed, but fixing that bug exposed that the default behavior was difficult
for users to configure to simply get up and running. - If a
cancel
operation is run on a session already in a canceling or
terminated state, a200
and the session information will be returned instead
of an error.
New and Improved
- sessions: Return a
200
and session information when canceling an
already-canceled or terminated session
(PR)
Bug Fixes
- cors: Change the default allowed origins when
cors_enabled
is not specified
to be*
. (PR)