seems that the shipping_method callback methods now (as of alpha7c) expect a slightly different return value. i had to patch my ratequote module in the uc_ratequote_quote and uc_ratequote_quote_order functions, making this simple change:
<?php
- return drupal_to_js($quotes);
-}
+ return $quotes;
+}
?>
