Gavin Haynes

Results 12 issues of Gavin Haynes

In https://github.com/slembcke/Chipmunk2D/blob/dbc983e3f3f2f7269aca8d21ba64085c00130172/src/cpRotaryLimitJoint.c getImpulse takes a 'joint' argument. This is missing, here: https://github.com/josephg/Chipmunk-js/blob/master/cp.js#L5913

https://github.com/josephg/Chipmunk-js/blob/master/lib/cpBBTree.js#L33 this.count = 0; https://github.com/josephg/Chipmunk-js/blob/master/lib/cpBBTree.js#L617 BBTree.prototype.count = function() I'm sure it can't be both.

Makes the types match the actual code in https://github.com/anthonyjgrove/react-google-login/blob/7db5b9686a70ded6b090a9c01906ca978b00a54d/src/use-google-logout.js#L34 https://github.com/anthonyjgrove/react-google-login/blob/7db5b9686a70ded6b090a9c01906ca978b00a54d/src/use-google-login.js#L136 The elements of GoogleAuthError [don't all seem to be documented](https://developers.google.com/identity/sign-in/web/reference#googleauththenoninit_onerror), but the description field showed up in practice.

elasticsearch_dsl==7.4.0 The script param is assumed to be a string here: https://github.com/elastic/elasticsearch-dsl-py/blob/c089a40ce6566de8a1fb5943501d2e6bfc4c06c7/elasticsearch_dsl/document.py#L391 but there is no way to set the language of the script. It would be more intuitive if...

Closes https://github.com/elastic/elasticsearch-dsl-py/issues/1560

Using elasticsearch_dsl==7.4.0 If I want to update a document by id using a script I need to do ``` doc = MyDocument() doc.meta.id = my_id doc.update(script=my_script) ``` but the new...

In negative floats like -2.5 and -2.004E7, the decimal is not highlighted as part of the number. This is because there is no word boundary before '-', but a word...

version: 1.0.33 With this test ``` package mytest; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.jsontype.NamedType; import com.kjetland.jackson.jsonSchema.JsonSchemaGenerator; import lombok.Value; import lombok.extern.slf4j.Slf4j; import org.junit.Test; @JsonTypeInfo( use = JsonTypeInfo.Id.NAME,...

### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description Optional base-class fields in objects of derived classes are not treated as optional in field assignments...

help wanted
bug V2
good first issue
mypy

I'm seeing some issues with castShape ``` var RAPIER = require("@dimforge/rapier2d-compat") var world; class V { constructor(x, y) {this.x = x; this.y = y;} sub({x, y}) { return V.of(this.x-x, this.y-y);...