Paths do not display legends by default

Just got bit by this again: hv.Path(data, label='set_1' ) dows not display the legend.

There is a show_legend option that must be set explicitely.

hv.Path(data, label='set_1').opts( show_legend=True)

Path does not set show_legend=True by default.