
2 Jan
2023
2 Jan
'23
12:50 p.m.
Issue #19295 has been reported by akostadinov (Aleksandar Kostadinov). ---------------------------------------- Bug #19295: Time#wday returns 7 https://bugs.ruby-lang.org/issues/19295 * Author: akostadinov (Aleksandar Kostadinov) * Status: Open * Priority: Normal * ruby -v: ruby 3.1.3p185 (2022-11-24 revision 1a6b16756e) [x86_64-linux] * Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN ---------------------------------------- This issue happens since Ruby 2.7, since `Z` and `UTC` are allowed for a zone. ``` ruby [1] pry(main)> Time.new(2023, 1,3,0,0,0,"UTC").wday => 7 [2] pry(main)> Time.new(2023, 1,3,0,0,0,"Z").wday => 7 ``` This also breaks all weekday `Time#monday?`, etc. methods. -- https://bugs.ruby-lang.org/