The following code seems to have stopped working in dplyr 1.1.0.
Sorting by version number was useful and I hope this will work again.
library(dplyr, warn.conflicts = FALSE)
tibble(a = numeric_version(c("1.2.3", "1.2.2"))) |>
arrange(a)
#> Error: This type is not supported by `vec_order()`.
Created on 2023-02-02 with reprex v2.0.2