File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,12 @@ Write the date in place of the "Unreleased" in the case a new version is release
2020- Do not require SQL database URIs to specify a "driver" (Python
2121 library to be used for connecting).
2222
23+ ### Fixed
24+
25+ - A regression in the container broke support for ` tiled register ... ` and
26+ ` tiled serve directory ... ` . When these became client-side operations, the
27+ container needed to add the client-side dependencies to support them.
28+
2329## v0.1.0b10 (2024-10-11)
2430
2531- Add kwarg to client logout to auto-clear default identity.
Original file line number Diff line number Diff line change @@ -37,7 +37,10 @@ COPY . .
3737
3838# Skip building the UI here because we already did it in the stage
3939# above using a node container.
40- RUN TILED_BUILD_SKIP_UI=1 pip install '.[server]'
40+ # Include server and client depedencies here because this container may be used
41+ # for `tiled register ...` and `tiled server directory ...` which invokes
42+ # client-side code.
43+ RUN TILED_BUILD_SKIP_UI=1 pip install '.[all]'
4144
4245# FROM base as test
4346#
You can’t perform that action at this time.
0 commit comments