Robbie Mackay

Results 14 comments of Robbie Mackay

@developit whats needed to get this or #100 merged?

I've worked around this issue by overriding methods for now: ``` Offline.syncWithAuth = function(method, model, options, error) { var settings = model.settings || model.collection.settings; // Add username / password if...

My solution works when you're always passing the same parameters. However with standard ajaxSync parameters passed to fetch() would be forwarded to jquery.ajax() It would be good to preserve this...

I think you may be able to inject the agent by doing something like this: ``` import fetch from 'node-fetch' import { GraphQLClient } from 'graphql-request' const agent = new...

I'd argue sanitize should default to enabled, as best practice to to have secure defaults.

It's possible this is related to an interaction with ModelCluster and/or taggit. The traceback seemed to be getting stuck on my `allergens` field, which is a tag field. If I...

This is the relevant CDK issue FYI https://github.com/aws/aws-cdk/issues/18470

For anyone needing a workaround in the interrim, this works: ```js project.github!.tryFindWorkflow('build')!.file!.patch( JsonPatch.add('/jobs/package-js/steps/1', { name: 'Setup NPM Token', run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc', env: { NPM_TOKEN: '${{ secrets.NPM_TOKEN }}', },...

This same issue still exists for the `release_npm` job, since `yarn install` will fail if you have any private dependencies. Should I open a new issue or could you reopen...

I had similar issue with labels.replace_all() got `ValueError: too many values to unpack`