Breaking Changes
Batch methods: stop accepting a tuple of keys and bins
For the following functions:
* `client.get_many()`
* `client.exists_many()`
The `keys` parameter no longer takes in a tuple of keys. It only takes in a list of keys.
In addition, `client.select_many()` no longer takes in a tuple for the `keys` and `bins` parameters. Those parameters only take in a list of keys and bins, respectively.
Course of action:
Change code such as this:
python
keys = (("test", "demo", 1), ("test", "demo", 2))
bins = ("bin1", "bin2")
client.select_many(keys, bins)
...to this instead:
python
keys = [("test", "demo", 1), ("test", "demo", 2)]
bins = ["bin1", "bin2"]
client.select_many(keys, bins)
Expressions: add support for comparing KeyOrderedDicts (new server feature)