https://dagster.io/ logo
Title
w

Will Ho

03/09/2023, 7:43 PM
Hello! I had a question about Dagster versioning. I am currently running Dagster version 1.0.x for Dagit and Daemon in Kubernetes. I would like to upgrade the Dagster version in my user code deployment to 1.1.x. Is it safe to run with this minor version skew? Are there any concerns I should be aware of with this configuration?
👀 1
g

Gatsby Lee

03/09/2023, 9:18 PM
I am curious about this as well.
c

chris

03/09/2023, 11:42 PM
should be safe - dagster code servers are currently designed to be backwards compatible to 0.12.x
❤️ 2
That said, there might be things that slipped through the cracks of our test suite - the thing to be watching for is serialization issues between the code server and dagit- IE code server attempts to send an object that the outdated dagit server can’t read.
❤️ 2
Another thing to note is that not everything available in
1.1
dagster will be available to you if you are on
1.0
dagit - but it shouldn’t break anything new
❤️ 2
g

Gatsby Lee

03/10/2023, 12:39 AM
@chris thank you for your response.
w

Will Ho

03/10/2023, 1:49 AM
Gotcha, thank you for the information!