-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
URL encoding #76
Comments
I have the same issue. |
I have the same issue. The connectionstring to a sql database that gets a '%25' inserted in the middle of the password. Changed the version to 4.* and that works. |
Yes, looks like changing to 4.* worked. But, it was giving a deprecated usage warning. |
Same issue here. Using 4.* is comparatively slower and deprecated. |
In version 6 the problem seems to still exist. However as mentioned earlier, version 4 is ok. |
Agree!! |
I see it's more internal change in Azure DevOps code than changes in the vsts-arm-outputs task. The fix will be automatically used in March 2021. Conclusion: |
We use ARM Outputs in several Azure DevOps Release Pipelines.
This week we've noticed that our trigger URLs for Logic Apps get "double encoded".
Expected output:
https://prod-57.westeurope.logic.azure.com:443/workflows/GUID/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=CODE
Actual output:
https://prod-57.westeurope.logic.azure.com:443/workflows/GUID/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%252Ftriggers%252Fmanual%252Frun&sv=1.0&sig=CODE
As you can see
%2F
becomes%252F
I noticed that there was a 5.3 release made just recently. I guess we get that automatically because we use Task version 5.*
Can it be a bug introduced in the latest release?
The text was updated successfully, but these errors were encountered: