If you are migrating from Achilles 4.x to Achilles 5.x, below are the changes and how to transition:
where().xxx_Eq(...): replaced by where().xxx().Eq(...)where().xxx_Gt(...): replaced by where().xxx().Gt(...) and similarly for all other inequality relationsselect().udt().allColumns() or select().udt().sub-column()update().fromBaseTable().xxx_Set(...): replaced by update().fromBaseTable().xxx().Set(...)update().fromBaseTable().list_AppendTo(...): replaced by update().fromBaseTable().list().AppendTo(...) and similarly for all other operations on listupdate().fromBaseTable().set_Add(...): replaced by update().fromBaseTable().set().Add(...) and similarly for all other operations on setupdate().fromBaseTable().map_PutTo(...): replaced by update().fromBaseTable().map().PutTo(...) and similarly for all other operations on mapwhere().xxx_Eq(...): replaced by where().xxx().Eq(...)IN clause for all clustering columnswhere().xxx_Eq(...): replaced by where().xxx().Eq(...) and similarly for all other inequality relationsIN clause for all clustering columnsmanager.query() has been renamed to manager.raw()