Brandon Bloom
Brandon Bloom
These keywords are defined in the JSON Schema 2020-12 dialect. Release notes: https://json-schema.org/draft/2020-12/release-notes These are useful for representing generics: https://json-schema.org/blog/posts/dynamicref-and-generics Specification of dynamic scope rules: https://json-schema.org/draft/2020-12/json-schema-core#name-lexical-scope-and-dynamic-s
Working on a fix, but providing failing test case until then.
``` package openapi3 import ( "testing" "github.com/stretchr/testify/require" ) func TestIssueXXX(t *testing.T) { spec := ` openapi: 3.0.0 components: schemas: NullableString: type: string nullable: true NullableRef: $ref: "#/components/schemas/String" nullable: true String:...
Working on a potential fix & will update this PR if I do fix it.
> Only a subset of instaparse is exposed. If you are missing functionality, please create an issue. I'd like to use `isnta/add-line-and-column-info-to-metadata` in one of my scripts for better error...
Presently, the retry loop is hard coded to 10 attempts with 100ms between attempts. Even without accounting for some of the configurable delays, builds can exceed 1 second. In that...
This: ```yaml components: schemas: String: type: string Thing: type: object properties: x: $ref: "#/components/schemas/String" nullable: true required: - x ``` Produces a structure with a non-pointer field, but the nullable...
## Environment - Platform (select one): - [x] Anthropic API - [ ] AWS Bedrock - [ ] Google Vertex AI - [ ] Other: - Claude CLI version: 1.0.33...
**Bug Description** Claude Code's bash tool does not preserve interleaving of stdout and stderr. If you print to unbuffered stdout and stderr from Go with out1/err1/out2/err2 pattern, you get out1/out2/err1/err2,...