I'm also experiencing this regression. I'm importing contacts. I have a custom checkbox field with text-based values and nothing gets imported for the given field.
Specifically, for a custom checkbox field, that function passes $value (representing the value being imported) to the CRM_Core_BAO_CustomField::formatCustomField function here.
The problem is that CRM_Core_BAO_CustomField::formatCustomField is defined to expect $value to be an array in which the keys are the real values to be inserted into the database. But instead, it gets an automatically keyed list of values passed in by the user importing the data (in other words, with keys 0, 1, 2 etc).
As a result, CiviCRM will always insert values of 0, 1, 2, etc. depending on how many values you pass in, rather then the actual values that should be inserted.
I can't be sure, but I think this regression was caused by b248c095b12 .
I think the answer is to modify CRM_Contact_Import_Parser_Contact->formatProfileContactParams() before it calls CRM_Core_BAO_CustomField::formatCustomField and change $value. Specifically, we should detect when $value is an array, determine if it's an array of actual values (in which case it should be re-made so that the keys match the values) or if not, lookup matching values and re-make it so that the array keys are the actual values and the array values are whatever is passed in.
I did test this PR and it did seem to work for me, but now I'm getting another problem with checkbox fields on import. I seem to be able to solve it with this:
Closing - there is another probable issue @jamie has found but we don't have steps to replicate at the moment so a new gitlab for that is the way to go IMHO