Matthew Olenik

Results 11 issues of Matthew Olenik

I'm trying to implement a range check that allows any major or minor version change, but never a major change. So that anything starting with `1` but never anything starting...

This Go module (and maybe others) do not actually have the latest version available, despite the last modified date. This package: https://search.gocenter.io/github.com/monochromegane/go-gitignore Was updated on June 26th (the page says...

type: question
priority: low
component: downloads
stage: in-progress

I have a g8 template with a .gitignore that includes the line `var/`. It turns out that if `var` is present anywhere in .gitignore, the template fails. Here's a repro...

# Description This change enables the fix for https://github.com/pulumi/crd2pulumi/issues/43, wherein hyphens `-` were mishandled and led to generation of invalid Go and Python. For example, code such as `func My-Thing()...

impact/no-changelog-required
kind/engineering

HCL2 lands with Terraform 0.12.

enhancement

Messages like: ```key 'foo' found but is of wrong type, query requested key/literal, found list``` Are a bit confusing and could be cleared up with examples, e.g. "did you mean...

Test rows are hard to read in code, refactor them to a more convenient external form.

Cobra is restrictive in terms of expressing option dependencies and enforcing ordering. mow.cli solves this problem with spec strings. It's also overall more powerful, based on my experience with a...

Given the following: ``` // This is some description // of the object below. data "machine" { foo = 123 } ``` Users should be able to query something like:...

Given the following HCL: ``` data "foo" { //... } data "bar" { //... } ``` The command `hclq get keys 'data.*'` would return `["foo", "bar"]`