···2828- Add option for forcing a specific language ([#742](https://github.com/TecharoHQ/anubis/pull/742))
2929- Add translation for Turkish language ([#751](https://github.com/TecharoHQ/anubis/pull/751))
3030- Allow [Common Crawl](https://commoncrawl.org/) by default so scrapers have less incentive to scrape
3131+- The [bbolt storage backend](./admin/policies.mdx#bbolt) now runs its cleanup every hour instead of every five minutes.
31323233### Potentially breaking changes
3334
+1-1
lib/store/bbolt/bbolt.go
···151151}
152152153153func (s *Store) cleanupThread(ctx context.Context) {
154154- t := time.NewTicker(5 * time.Minute)
154154+ t := time.NewTicker(time.Hour)
155155 defer t.Stop()
156156157157 for {