Faktory v1.1.0 Release Notes

    • ⬆️ Upgrade Go runtime from 1.10 to 1.13.
    • 👷 Faktory, Faktory Pro and faktory_worker_go are now using Go modules [#216, ClaytonNorthey92]
    • 🛠 Fix "Add to Queue" button on the Scheduled page [#236]
    • 👷 Rework fetching jobs from queues to be more efficient. [#235]
    • ➕ Add several helper APIs to configure Faktory Pro features. [#251, tylerb]
    • 💻 You can now put nginx in front of Faktory's Web UI using proxy_pass: ```nginx location /faktory { proxy_set_header X-Script-Name /faktory;

    proxy_pass http://127.0.0.1:7420; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Scheme $scheme; proxy_set_header X-Real-IP $remote_addr; }