Curtis Vogt
Curtis Vogt
> > I agree that this is a frustrating problem and not a great solution. > > Unfortunately this has to do with the way Dates formatting was set up...
Thanks for filing this issue. That's definitely a suboptimal behavior. I'll look into possible solutions without just rewriting the Artifacts.toml to contain the current release.
@staticfloat your opinion here would be appreciated. I setup the Arifacts.toml to allow any tzdata file to be used. In reality only the latest tzdata version is needed and typically...
I have briefly looked into this and I think it's a feasible thing to do. My main concern is how this will work with serialization specifically if a user had...
I'll be working on this next week.
Interface-wise I like the idea of a parametric `ZonedDateTime`. Adding the type parameter is definitely breaking which we can do but need to do the experimentation to be sure it's...
Related upstream issue: https://github.com/JuliaLang/julia/issues/29339
You can work around this problem by escaping the characters you want to treat as literals: ```julia julia> using TimeZones, Dates julia> Dates.format(now(), "yyyy-mm-dd\\THH:MM:SS\\Z") "2022-02-25T10:03:06Z" julia> Dates.format(now(), dateformat"yyyy-mm-dd\THH:MM:SS\Z") "2022-02-25T10:03:14Z" ```
> There's an ambiguous situation we'd have to define a convention around: Let's package `A` defines `f`. Package `B` overloads `A.f`, and package `C` overloads `A.f`. Package `D` depends on...
Change to make `Base.Iterators.partition` return views was done in: https://github.com/JuliaLang/julia/pull/33533