Paul Hawxby

Results 19 issues of Paul Hawxby

8 pull requests waiting, 26 issues with little activity and no major code updates in over a year! If the author needs support managing the project how about giving a...

A bug exists in the rich text editor which allows for nodes to exist with undefined content. ``` { data: {}, content: [ { data: { uri: 'https://www.xerox.com/digital-printing/latest/IG5DS-09J.PDF' }, content:...

stale

The codepath for input strings allows for the callback to be invoked. https://github.com/image-size/image-size/blob/master/lib/index.js#L118 But the codepath for buffers does not, it's always a return breaking the promise. https://github.com/image-size/image-size/blob/master/lib/index.js#L96

@addyosmani what is the status of this project? It seems to have been very quiet for a while. If it is no longer in development do you recommend any alternatives?...

https://github.com/contentful/rich-text/blob/aee27857eba0638afd83b0c176eb60b4a7c55c6d/packages/rich-text-links/src/index.ts#L45 This line makes an assumption at the array will not be empty. ``` { data: {}, content: [ { data: { uri: 'https://www.xerox.com/digital-printing/latest/IG5DS-09J.PDF' }, content: [ { data: {},...

In the event that `client.quit();` is called I would expected `client.status` to update to something like `disconnecting` or `closing` and then to `close` once complete. That does not happen. ```...

When an error occurs with the data insertion API invalid XML is returned, multiple root nodes. ``` FAILURE NO account ``` While fixing this would obviously be difficult given it...

# Describe the bug Knex has the following migration code ``` return knex.schema.alterTable('foo', (table) => { table.bigint('bar').alter().notNullable(); table.primary(['bar']); }); ``` This generates the SQL ``` alter table "foo" alter column...