Kohei Suzuki
Kohei Suzuki
言ってる意味がよくわからなかったので日本語で失礼します。 つまり、このパッチが「意図しない挙動 (untoward effects, unexpected behavior)」をしないことを示せということですか? 何ができたら意図しない挙動は無いと言えるんでしょうか。
Created a branch to test breaking changes. https://github.com/eagletmt/hako/tree/v3-dev
AWS recently added a feature to specify sensitive data in ECS. https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html I'm thinking of dropping "env provider" feature in v3.
I don't think it's a good idea to add dynamic values in Hako application definition. In your example, I highly recommend to define two applications like below. ``` % cat...
So... what is your suggested change that you think is correct? I'd like to hear explanation like "with this Jsonnet file, I expect XXX, but actually got YYY". My intended...
@samrocketman Could you have a look?
I'll only provide `preserve` method. Other methods are just short-hands. There's a simple alternative way without Haml::Helpers.
It seems there's no standard on how to render true/false/nil of non-boolean attributes. - Haml, Slim, Faml (before this PR) - `%span{disabled: true, hidden: false, readonly: nil, foo: true, bar:...
This optimization only contributes to the performacne of "dynamic attributes" by removing runtime conditional branching. ## Input ``` haml - url = 'https://wanko.cc' %a{href: url} ``` ## Before ``` ruby...
It looks a good starting point to me, but I have one question; why do you import only latest versions? With only latest versions, we can judge "up-to-date or not",...