Differences in the behaviour of Lowpass.filt() in Nengo 2.8.0 and 3.0.0

While debugging some code implementing a modified version of BCM I came about something that I wasn’t expecting: the behaviour of Lowpass.filt() in Nengo 2.8.0 and 3.0.0 seems to be different.
Specifically, in Nengo 3.0.0 the method returns values that are scaled of a factor of 100, as can be seen by running the same exact model with the two different backends.

As an example and proof of this, observe the theta variable that is the given by:

self.lowpass = nengo.Lowpass( 1.0 )
theta = self.lowpass.filt( out_rates )

in Nengo 2.8.0


and in Nengo 3.0.0

I guess that this is by design, having seen the following commit:

In any case, this is causing problems with my BCM implementation because my algorithm now thinks that post-synaptic activations are always over threshold.
Which would be the best, cleanest, most logical way to deal with the issue? Divide my theta by a factor of 100, which I imagine is due to the simulation step being dt=0.001?

This is the relevant commit that changed this behaviour https://github.com/nengo/nengo/commit/c23930fed165483e6c46f35d8f04ee439e8db521, which introduces this change

The default value of y0 in Synapse.filt is now 0 instead of
the initial value of the input signal. This allows unstable filters
(e.g., integrators) to be used with filt.

So you can reproduce the Nengo 2.8 behaviour, if desired, by doing nengo.Lowpass(1.0).filt(out_rates, y0=out_rates[0]).