Skip to content

Releases: bitmagnet-io/bitmagnet

v0.8.0

30 Apr 17:52
b711325
Compare
Choose a tag to compare

Classifier reimplementation

The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed, and a preparatory database migration for search ordering has been added.

The classifier documentation can be found at https://bitmagnet.io/tutorials/classifier.html.

Build reimplementation

The build has been re-implemented using https://github.com/goreleaser/goreleaser, thanks to @KyleSanderson. A number of new platform-specific build artifacts are now available.

Seeders/Leechers bug

There has somehow been a bug present, since day 1, whereby seeders and leechers were being swapped by the DHT crawler! This is fixed in 0.8.x. The first beta included a migration that would fix existing data, but the query just takes too long (for larger indexes), and so it has been removed from the migration.

Until now, no-one noticed - but If you care and would like to fix this in your index, you can run the following query, replacing the time with the time at which you did the 0.8.x upgrade. Be warned, this query may take a while for larger indexes! In time, much of the data will naturally fix itself anyway as the S/L numbers get re-scraped by the crawler when the torrent is re-discovered.

update torrents_torrent_sources set seeders = leechers, leechers = seeders where source = 'dht' and  updated_at < '2024-04-30 00:00:00+00';

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0

v0.8.0-beta.7

30 Apr 17:20
d9ad409
Compare
Choose a tag to compare
v0.8.0-beta.7 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.7

v0.8.0-beta.6

30 Apr 13:15
Compare
Choose a tag to compare
v0.8.0-beta.6 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.6

v0.8.0-beta.5

30 Apr 13:10
Compare
Choose a tag to compare
v0.8.0-beta.5 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.5

v0.8.0-beta.4

21 Apr 21:46
5255926
Compare
Choose a tag to compare
v0.8.0-beta.4 Pre-release
Pre-release

The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed.

During the beta phase, the classifier documentation can be found at https://github.com/bitmagnet-io/bitmagnet/blob/main/bitmagnet.io/tutorials/classifier.md.

Beta 4 aims to reduce the migration time vs beta 3. Migration now takes just a few minutes for larger indexes. If you've already started an earlier migration, either kill it or wait for it. As it runs in a transaction there's no risk of data loss

Confession time

There has somehow been a bug present, since day 1, whereby seeders and leechers were being swapped by the DHT crawler! This is fixed in 0.8.x. The first beta included a migration that would fix existing data, but the query just takes too long (for larger indexes), and so it has been removed from the migration.

Until now, no-one noticed - but If you care and would like to fix this in your index, you can run the following query, replacing the time with the time at which you did the 0.8.x upgrade. Be warned, this query may take a while for larger indexes! In time, much of the data will naturally fix itself anyway as the S/L numbers get re-scraped by the crawler when the torrent is re-discovered.

update torrents_torrent_sources set seeders = leechers, leechers = seeders where source = 'dht' and  updated_at < '2024-04-22 00:00:00+00';

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.4

v0.8.0-beta.3

21 Apr 17:27
a161144
Compare
Choose a tag to compare
v0.8.0-beta.3 Pre-release
Pre-release

The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed.

Beta 3 aims to reduce the migration time vs beta 2. If you've already started the beta 2 migration, either kill it or wait for it. As it runs in a transaction there's no risk of data loss

During the beta phase, the classifier documentation can be found at https://github.com/bitmagnet-io/bitmagnet/blob/main/bitmagnet.io/tutorials/classifier.md.

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.3

v0.8.0-beta.2

21 Apr 16:52
ccbefc1
Compare
Choose a tag to compare
v0.8.0-beta.2 Pre-release
Pre-release

The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed.

Beta 2 aims to reduce the migration time vs beta 1. If you've already started the beta 1 migration, either kill it or wait for it. As it runs in a transaction there's no risk of data loss

During the beta phase, the classifier documentation can be found at https://github.com/bitmagnet-io/bitmagnet/blob/main/bitmagnet.io/tutorials/classifier.md.

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.2

v0.8.0-beta.1

21 Apr 15:31
c16f761
Compare
Choose a tag to compare
v0.8.0-beta.1 Pre-release
Pre-release

The classifier has been re-implemented and now uses a DSL allowing for full customisation. Several bugs have also been fixed.

IMPORTANT: This release includes a database migration that may take around 30 minutes to run for larger indexes.

During the beta phase, the classifier documentation can be found at https://github.com/bitmagnet-io/bitmagnet/blob/main/bitmagnet.io/tutorials/classifier.md.

What's Changed

New Contributors

Full Changelog: v0.7.14...v0.8.0-beta.1

v0.7.14

11 Mar 10:29
2fff99d
Compare
Choose a tag to compare

What's Changed

  • Fix missing table for condition by @mgdigital in #215
  • Windows fixes: Implement Windows Socket interface and recover from socket read error by @mgdigital in #203

Full Changelog: v0.7.12...v0.7.14

v0.7.12

10 Mar 12:01
faac85d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.10...v0.7.12