Sam Sullivan
Sam Sullivan
### Describe the bug If you use `beforeColumnResize` to return a number, it is [supposed to](https://handsontable.com/docs/javascript-data-grid/api/hooks/#beforecolumnresize) represent the new width. Currently, this only works when double clicking and not when...
RE: https://github.com/itchyny/gojq/issues/236 I don't love the naming decisions of this implementation, but the main idea is that I needed a way to run normalize numbers once for a JSON payload....
https://github.com/itchyny/gojq/blob/111b6efe91ed9356ad160d7c4822a897ec9ccb39/query.go#L22-L23 In addition to this preventing reusing JSON data in `gojq` queries across goroutines, it also becomes an unnecessary performance hit for the use case of executing multiple different queries...
### What does this PR do? The `gqlgen` middleware was missing the ability to customize tags on the created spans. Implement a `WithCustomTag` option that follows the pattern of other...
Most contrib tracer packages expose a `WithCustomTags` option: https://github.com/search?q=repo%3ADataDog%2Fdd-trace-go+WithCustomTag+path%3Acontrib&type=code One exception is the `gqlgen` package: https://github.com/DataDog/dd-trace-go/blob/63d7047cfd4d8e3d078dc5460fb385e544c2eb1d/contrib/99designs/gqlgen/option.go This seems super easy to add, so I'm happy to open a PR; however,...
For example... - expected:`example_ids` -> `ExampleIDs` - actual: `example_ids` -> `ExampleIds` Doesn't look like you can fix this with the lint's initialisms setting, either.
This solves #313 by only prepending `this._baseSite` to URLs if they don't start with `/https?:/`. For example, Facebook uses differing domains for these requests: - `getAuthorizeUrl`: https://facebook.com/dialog/oauth - `getAccessTokenUrl`: https://graph.facebook.com/oauth/access_token
Added Sort component for Script Based Sorting. Source: [ElasticSearch Script Based Sorting](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-sort.html#_script_based_sorting)
With the `rewrite` parameter outside of the `query_string` model, I would receive the following error: ``` [_na] query malformed, must start with start_object ``` Moving that parameter into the model...
Followup now that I've implemented https://github.com/DataDog/dd-trace-go/issues/2597 and started using this middleware; also somewhat related to https://github.com/DataDog/dd-trace-go/issues/2610 in that we're both aiming to reduce overly verbose traces from the same contrib...