Gunnar Kreitz
Gunnar Kreitz
### Current behavior Using `cy.get` to select a `` where the `placeholder` (and presumably other attributes) contains the substring `"` causes the error `(uncaught exception)Error: Syntax error, unrecognized expression: TEXTAREA[placeholder="""]`....
It would be nice to be able to see the state of and control garden sprinkler mode from home assistant. Consider if there's a good way to support this. The...
Stops appending a fixed (afaict, non-standard) query string to the userinfo endpoint. Fixes #448 Fixes #388 **List of common tasks a pull request require complete** - [x] Changelog entry is...
The function `requestUserInfo` appends `?schema=openid` to the userinfo endpoint URL. I'm unsure why, I've tried googling a bit and cannot find a reason but haven't found anything (for instance, https://openid.net/specs/openid-connect-core-1_0.html...
In `pip==25.1`, the implementation of caching for `find_all_candidates` changed, and it no longer exposes any method in its public interface to clear its cache. This causes `pip-compile --generate-hashes` to crash...
Fixes the regression in Smarty 5 where a compiler function using unnamed arguments threw a "Too many shorthand attributes" error, and adds unit test coverage. Fixes #1085
The following code runs fine in Smarty 4, but gives a "Too many shorthand attributes" error in Smarty 5: ```php $this->smarty->registerPlugin(Smarty::PLUGIN_COMPILER, 'testcompilerfunction', 'foo'); $this->assertEquals('1', $this->smarty->fetch('eval:{testcompilerfunction 1}')); function foo($params, $smarty) {...