Probably all golang versions are affected (any os and arch combination).
https://www.ietf.org/rfc/rfc822.txt
2.4. *RULE: REPETITION
The character "*" preceding an element indicates repetition.
The full form is:
<l>*<m>element
indicating at least <l> and at most <m> occurrences of element.
RFC822 date = 1*2DIGIT month 2DIGIT
expected to work:
"4 Feb 09 21:00 PST"
"04 Feb 09 21:00 PST"
actually working:
RFC1123 date = 1*2DIGIT month 2*4DIGIT
expected to work:
"Wed, 4 Feb 09 21:00:57 PST"
"Wed, 4 Feb 2009 21:00:57 PST"
"Wed, 04 Feb 2009 21:00:57 PST"
actually working:
"Wed, 04 Feb 2009 21:00:57 PST"
These examples also apply to the Z version constants (with numeric zone).