1.1.11
(chore): Change default rubocopVariableNumberStyle from snake_case to normalcase,
so field names with embedded digits (e.g., recaptcha_v2, office365) no longer
trigger RuboCop warnings by default.
1.1.10
(fix): Add explicit return in Boolean.coerce for TrueClass/FalseClass
branch and suppress RuboCop Lint/Void warnings on bare value
expressions in the utils coerce fallback paths.
1.1.9
(chore): Add rubocopVariableNumberStyle config option to control RuboCop Naming/VariableNumber style.
Supported values: snake_case (default, requires underscores before numbers like recaptcha_v_2),
normalcase (allows numbers without underscores like recaptcha_v2, office365), or disabled.
This allows APIs with field names containing embedded digits to configure the appropriate style.