Skip to content

Releases: bluesky/tiled

v0.1.0b11

14 Nov 16:14
Compare
Choose a tag to compare
v0.1.0b11 Pre-release
Pre-release

What's Changed

Full Changelog: v0.1.0b10...v0.1.0b11

v0.1.0b10

11 Oct 13:39
fca3ddd
Compare
Choose a tag to compare
v0.1.0b10 Pre-release
Pre-release

What's Changed

  • Work on not auto-filling username by @jwlodek in #792
  • 🔑->🗑️ Enable Tiled Admins to delete API Keys belonging to other user's principals by @Kezzsim in #786
  • FIX: Remove deprecated sphinx API. by @danielballan in #795

Full Changelog: v0.1.0b9...v0.1.0b10

v0.1.0b9

19 Sep 19:58
Compare
Choose a tag to compare
v0.1.0b9 Pre-release
Pre-release

What's Changed

Full Changelog: v0.1.0b8...v0.1.0b9

v0.1.0b8

06 Sep 12:08
c44f3e2
Compare
Choose a tag to compare
v0.1.0b8 Pre-release
Pre-release

What's Changed

Full Changelog: v0.1.0b7...v0.1.0b8

v0.1.0b7

20 Aug 18:43
7f7329d
Compare
Choose a tag to compare
v0.1.0b7 Pre-release
Pre-release

What's Changed

  • Accept Python dict from client "write_dataframe" and TableAdapter by @nmaytan in #771
  • Remove old pytest warning ignores by @nmaytan in #773
  • Add arrow adapter by @skarakuzu in #755
  • Rename path argument to "dataset" in hdf5_lookup by @jwlodek in #775

New Contributors

Full Changelog: v0.1.0b6...v0.1.0b7

💉 Add OCI standard container health checks to run Tiled on Kubernetes

17 Jul 19:21
2e392d6
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.0b5...v0.1.0b6

v0.1.0b5

27 Jun 12:08
07c8925
Compare
Choose a tag to compare
v0.1.0b5 Pre-release
Pre-release

Added

Fixed

  • When authenticated as a Service Principal, display the SP's uuid in
    the client Context repr.
  • The dependency json-merge-patch, introduced in v0.1.0b4, was missing from
    some pip selectors.

v0.1.0b4

18 Jun 16:01
Compare
Choose a tag to compare
v0.1.0b4 Pre-release
Pre-release

Changed

  • Minor implementation changes were necessary to make Tiled compatible with
    Numpy 2.0.
  • For improved security, the server-side array slicing function has been
    refactored to avoid using eval(). To be clear: there were no known
    exploitable vulnerabilities in the eval() approach. The input was validated
    against a regular expression before being passed to eval(). However,
    avoiding eval() altogether is better practice for defense-in-depth against
    potential code injection attacks due to current or future bugs in Tiled or
    its upstream dependencies.

v0.1.0b3

05 Jun 00:37
f5c8a5e
Compare
Choose a tag to compare
v0.1.0b3 Pre-release
Pre-release

Added

  • Added a new HTTP endpoint, PATCH /api/v1/metadata/{path} supporting modifying
    existing metadata using a application/json-patch+json or a
    application/merge-patch+json patch.
  • Added client-side methods for replacing, updating (similar to dict.update()),
    and patching metadata.

Fixed

  • Fixed regression introduced in the previous release (v0.1.0b1) where exceptions
    raised in the server sent no response instead of properly sending a 500
    response. (This presents in the client as, "Server disconnected without
    sending a response.") A test now protects against this class of regression.

v0.1.0b2

28 May 20:44
Compare
Choose a tag to compare
v0.1.0b2 Pre-release
Pre-release

Changed

  • Customized default logging configuration to include correlation ID and username
    of authenticated user.
  • Added --log-timestamps CLI flag to tiled serve ... to opt in to including
    timestamp prefix in log messages.