After the release of version 10.7.2, values of query params in the expression will be encoded twice.
Following URL will be generated when I provide the string :§$%&/()= as parameter value:
https://www.abc.com/foo?bar=%253A%25C2%25A7%2524%2525%2526%2F%2528%2529%253D
When I decode the URL I get following result:
https://www.abc.com/foo?bar=%3A%C2%A7%24%25%26/%28%29%3D
And exactly this result shows a URL that is encoded, so therefore when I decode the result again, I get following string:
https://www.abc.com/foo?bar=:§$%&/()=
Unfortunatly, changing the HTTP client did not help. Am I the only one who got this problem?