Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Releases: Sammyjo20/laravel-haystack

Version v2.2.0

14 May 17:53
10c07c6
Compare
Choose a tag to compare

What's Changed

  • Fix | Do Not Delete Haystack On Failure by @cognitus in #86

New Contributors

Full Changelog: v2.1.0...v2.2.0

Version v2.1.0

14 May 17:46
377dd6b
Compare
Choose a tag to compare

What's Changed

  • Add initial resume_at date support to HaystackBuilder by @viicslen in #83
  • Feature | Added Support For Laravel 11 & PHP 8.3 by @Sammyjo20 in #89

Full Changelog: v2.0.1...v2.1.0

Version v2.0.1

08 Oct 09:00
33ef2bc
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.0...v2.0.1

Version v2.0.0

22 Aug 13:21
fc108b3
Compare
Choose a tag to compare

What's Changed

Upgrade from v1

You should add the following migration to your Laravel application to support the new "retryUntil" feature.

<?php

use Sammyjo20\LaravelHaystack\Models\Haystack;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
    public function up()
    {
        Schema::table('haystack_bales', function (Blueprint $table) {
             $table->integer('retry_until')->after('attempts')->nullable();
        });
    }

    public function down()
    {
        Schema::table('haystack_bales', function (Blueprint $table) {
            $table->dropColumn('retry_until');
        });
    }
};

Full Changelog: v0.12.0...v2.0.0

Version v1.0.0

08 May 20:16
84a2332
Compare
Choose a tag to compare

What's Changed

  • Feature | Postgres Support by @ksimenic in #69
  • Stable Release

New Contributors

Full Changelog: v0.11.0...v1.0.0

Version v0.12.0

03 Mar 18:01
84a2332
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.11.0...v0.12.0

Version v0.11.0

03 Mar 17:52
7e4ea0e
Compare
Choose a tag to compare
  • Remove support for Laravel 8
  • Add support for Laravel 10
  • Add support for PHP 8.2

What's Changed

New Contributors

Full Changelog: v0.10.1...v0.11.0

Version v0.10.1

30 Oct 09:36
3739c8a
Compare
Choose a tag to compare

What's Changed

  • Fix typo command output on clearing haystacks by @faisuc in #58

Full Changelog: v0.10.0...v0.10.1

Version v0.10.0

07 Oct 19:31
e0f8744
Compare
Choose a tag to compare

What's Changed

Breaking Changes

Migrations

The migrations have changed again in this release, as Haystack gets closer to v1 these migration changes should happen less and less but to make it easy, just download this migration file and run it in your application.

https://gist.github.com/Sammyjo20/279707a8f7849a44e5aab445726b1ed4

Middleware

The method name to add middleware when building Haystacks has changed from withMiddleware to addMiddleware

Full Changelog: v0.9.0...v0.10.0

Version v0.9.0

04 Oct 22:24
0c4ebc8
Compare
Choose a tag to compare

What's Changed

  • Fix | Removed Spatie Laravel Package Tools by @Sammyjo20 in #47

Full Changelog: v0.8.5...v0.9.0