Alex Tomlins
Alex Tomlins
@Solistra I can't reproduce that issue. It downloaded 1.0.3 for me correctly. Additionally, I extracted the function into this test script: ``` bash #! /usr/bin/env bash function vercomp () {...
This looks like #348 - downgrading `paho-mqtt` to the latest 1.x version should solve it.
> how do you do that? If you installed it using pip, then you can downgrade with `pip install 'paho-mqtt
I wonder whether we could push this as an app with 0 instances, and run it in a task to get around CF restarting it repeatedly... I don't know whether...
For gems it's recommended not to include the Gemfile.lock in source control as all the dependencies should be defined in the gemspec. See http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/ for details. Having said that, you...
I agree that the current mock strategies are sub-optimal. For test mode, we could look at moving to use the omniauth test helpers - I took this approach in errbit...
In dev mode, maybe we should move towards not mocking out auth at all, and just make apps auth against signon properly.
@heathd The acceptance spec for gds-sso auth is https://github.com/alphagov/errbit/blob/master/spec/acceptance/auth_with_gds_sso_spec.rb. It uses test helpers defined in https://github.com/alphagov/errbit/blob/master/spec/acceptance/acceptance_helper.rb and https://github.com/alphagov/errbit/blob/master/spec/support/gds_auth_stubs.rb
I've just tested using jinja2 3.1.5 with the changes from #1665 reverted, and this results in the same behaviour as 3.1.4.
I've managed to create a minimal reproduction case. With the following page the font wil disappear from the dynamic block after the update (5 seconds). ```html h1 { font-family: sans-serif;...