Why is Go 1.24 disabled for all Go katas (that I tried)? #3503
|
Apart from the fact that 1.24 is already two versions behind and we should be able to code in Go 1.26, I can't find a single kata that will let me submit a Go 1.24 solution. I tried 5 or 6 random katas, and each time, Go 1.24 and Go 1.20 are in the version dropdown, but 1.24 is explicitly greyed out. I mean, come on, I'm not going to hand-code my slice and map comparisons like it's 1.20 again, I've done that way too often in my life before 1.21. What's up with this? |
Replies: 1 comment 5 replies
|
The problem is that after Golang 1.24 got enabled on the platform, it was made available only for new kata and new golang translations. There is a handful of kata with 1.24 enabled, but there is few of them, and they are not easy to find. When a language gains a new version, existing kata do not magically gain possibility to use it. To enable new language version for existing kata, such kata has to be either updated manually (forked, changed "version" dropdown, saved, published, and approved), or updated by admins with a tool. Back in the day, when language versions were added, admins bumped up existing kata with an automated script, but, for some reason, it did not happen on last update of languages. |
The problem is that after Golang 1.24 got enabled on the platform, it was made available only for new kata and new golang translations. There is a handful of kata with 1.24 enabled, but there is few of them, and they are not easy to find.
When a language gains a new version, existing kata do not magically gain possibility to use it. To enable new language version for existing kata, such kata has to be either updated manually (forked, changed "version" dropdown, saved, published, and approved), or updated by admins with a tool. Back in the day, when language versions were added, admins bumped up existing kata with an automated script, but, for some reason, it did not happen on last update …