-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow additional path extensions on configured hosts #253
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!
Thanks for making these changes so quickly!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking a look @oliverfoggin. I'm not seeing the issue you're describing, and I had added a test case for hosts with trailing Running locally, this is also what I get:
Which is correct, so I'm not sure why the playground is showing something different. Can you try checking out this branch as your Connect dependency and seeing if it solves your problem?
It doesn't look like it's been fully deprecated, but seems like there is a newly preferred version: However, the new version is not available in the target SDK for Connect, and I think it'd be safer to have one implementation rather than |
Hey, I wonder if the URL difference is down to an iOS version or sdk version? I have checked out the branch and I'm using it now but I had to remove the / from my Something to leave in for now but keep in mind maybe. 😊 👍🏻 Thanks |
That'd be a little scary, though not unheard of 😬 what versions are you using today? I'm using Xcode 15.2 on macOS Sonoma 14.2.1. |
CI failures are unrelated, working with @jhump to resolve |
I'm on Xcode 15.3 and Sonoma 14.4 Thanks for the update with this. Will check it out and continue on with the project. 😄 |
Would it be possible to put a release out for this change? I'm pointing at Thanks |
@oliverfoggin yea I think we can create a release once #247 merges |
Great! Thanks 😃 |
This adds support for specifying hosts with additional path extensions, such as
https://connectrpc.com/a/b/c/
. Previously,/a/b/c
would be dropped.Resolves #252.
Also related to #161.