You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`ActiveSupport::Gzip.compress` used to include the current timestamp in the gzipped output (the default behavior of Zlib), causing multiple calls with the same input data to output different results depending on when it was called. In many situations (such as caching), ensuring that the output is always the same for a given input is useful, so this helper now always sets the timestamp to `0` instead.
0 commit comments