jcapogna

Results 18 comments of jcapogna

Thanks @nataliescottdavidson. I think anything to clarify what is required to fix things will be a nice stopgap improvement.

I had another thought on this. It would be nice to have non-encrypted variables. Many of my secrets are really environment variables for configuration. It would be helpful to be...

I'm now testing the main branch including the webworker support added in #756. Importing the webworker version of Ably as follows does not trigger this problem anymore: `import * as...

Thanks @owenpearson. Do you know if this affects the REST client in addition to the Realtime client?

Good suggestion @owenpearson. Using the REST API might not be too bad for my use case.

@ben-xD I'm able to do the same. I can use the Ably Rest client in a Cloudflare Worker to invoke `ably.auth.createTokenRequest()`, which successfully creates a token request. The Rest client...

I don't think that's the issue. Here's a repository where I've reduced it down to a minimal example of `createTokenRequest` working and `channel.history` failing. https://github.com/jcapogna/ably-cloudflare-worker-example/blob/master/src/handler.ts Note that I'm using ably-js...

I just ran into the same issue. What was not obvious is that I had to explicitly have `@semantic-release/commit-analyzer` as a plugin in my release config. I did not need...

+1 I'm using `oneof` in my code. Decoding works great, but encoding is problematic as it creates a default value for each field sets them all. I have a protobuf...

I realize this is a bigger issue than just `oneOf`. I can't tell if an optional field is set or not. I think it's ok for the fields to be...