I've upgraded one of my projects to 2.1 and have b...
# plugins-general
j
I've upgraded one of my projects to 2.1 and have been poking around the new lockfiles. From my reading, these are intended to ensure version stability for plugins, but I can't see version numbers in the loader's lockfiles. Prely for my own curiosity, how does this work?
a
We have plans to add a date-based version to those files themselves. As of now, these simply lock the definition (presumably from hub.meltano.com) to be exactly the definition at that point in time when
meltano add
was run. Running
poetry lock --update ...
will pull a new version.
j
Thanks!