Jonathan Haines

Results 15 issues of Jonathan Haines

Was looking at rollbar today, and noticed a message at the top of our dashboard ![rollbar](https://user-images.githubusercontent.com/1351912/88631871-3781b100-d0f6-11ea-8d55-ca3fda2722a5.png) So I thought I'd put together another upgrade PR 😅 I ran `ember-cli-update --to...

**Is your feature request related to a problem? Please describe.** I use the [`graphql-codegen` cli](https://www.graphql-code-generator.com/) to generate TypeScript types, etc, for my GraphQL schema. `graphql-codegen` is able to load the...

Unsure if this is the right approach for mirage.. but I thought I'd see what others think 💭 This code in mirage.. ```js import { Factory } from 'ember-cli-mirage' export...

I've documented a lot of the details over at https://github.com/ehmicky/gulp-execa/issues/2 Opening this issue as `pacote` is referenced in the log output 🙈 When running `npm install gulp-execa` npm will hang...

I added a field and query to the tests that reproduces the issue I've been facing I fixed my original issue by adding a `isList` argument to `resolveInterface()`, similar to...

When a schema defines a list using an interface, it looks like `@miragejs/graphql` fails to build the field for the list ```graphql interface ItemRead { authors: [String!]! id: ID! title:...

I put together a failing test for #672 I might have a go at putting together a fix, just wanted to make this available for others

This PR aims to increase the type safety of the Cloudflare Pages handlers by exposing the type parameters of the `handle` and `handleMiddleware` functions. These types are really only useful...

Cloudflare Pages has it's own concept for middleware functions https://developers.cloudflare.com/pages/functions/middleware/ ```ts export async function onRequest(context) { try { return await context.next(); } catch (err) { return new Response(`${err.message}\n${err.stack}`, { status:...

enhancement

Would it be possible to release a version of `@hono/react-compat` so that it is compatible with packages like `@hono/auth-js`? `@hono/auth-js` has a peer dependency for `react>=18` https://github.com/honojs/middleware/blob/72d591aa359dff50218162c3c479b713c098fe1e/packages/auth-js/package.json#L54-L58 Otherwise installing `@hono/auth-js`...