You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The encoding of branch names in API v4 has changed from unencoded slashes to encoded as "%2f". As such, getting branch information for a branch like "env/production" is broken in the latest version.
Ironically this means #86 basically needs to be reverted.
Removing the str_replace call in Repositories fixes the issue for me but I'm not sure if there are any other places where this needs to be done.
The text was updated successfully, but these errors were encountered:
The encoding of branch names in API v4 has changed from unencoded slashes to encoded as "%2f". As such, getting branch information for a branch like "env/production" is broken in the latest version.
Ironically this means #86 basically needs to be reverted.
Removing the
str_replace
call in Repositories fixes the issue for me but I'm not sure if there are any other places where this needs to be done.The text was updated successfully, but these errors were encountered: