Skip to content

Releases: webgriffe/esb

2.8.1

Choose a tag to compare

@mmenozzi mmenozzi released this 09 Jan 13:18

What's Changed

  • Avoid race condition when ProducerInstance is called multiple times for the same flow by @mmenozzi in #45

Full Changelog: 2.8.0...2.8.1

2.8.0

Choose a tag to compare

@mmenozzi mmenozzi released this 02 Dec 13:24

What's Changed

  • Add job error stack trace by @mmenozzi in #43
  • Upgrade to Twig 3 and drop support for PHP 7.4 and 8.1 by @mmenozzi in #44

Full Changelog: 2.7.2...2.8.0

2.7.2

Choose a tag to compare

@lruozzi9 lruozzi9 released this 05 Aug 14:44

Full Changelog: 2.7.1...2.7.2

2.7.1

Choose a tag to compare

@lruozzi9 lruozzi9 released this 24 Jul 08:34

Updated dashboard style

Full Changelog: 2.7.0...2.7.1

2.7.0

Choose a tag to compare

@lruozzi9 lruozzi9 released this 03 Jul 13:02

What's Changed

New Contributors

Full Changelog: 2.6.2...2.7.0

2.6.2

Choose a tag to compare

@mmenozzi mmenozzi released this 22 Nov 15:54

Full Changelog: 2.6.1...2.6.2

2.6.1

Choose a tag to compare

@mmenozzi mmenozzi released this 22 Nov 14:50

⚠️ BC Break

There's a BC break with previous version 2.6.0. In that version, in the esb.yml file, we specified a single es_index key to be populated with the Elasticsearch index create API body. Now, to properly support index updates, we had to move up settings, mappings and aliases into their own first-level key. See the README for more info.

Before:

flows:
  sample_flow: 
    # ...
    es_index:
      settings: 
        index:
          mapping:
            total_fields:
              limit: 2000
      mapping:
        properties:
          title:
            type: text
      aliases:
        my_alias:
          is_hidden: true

After:

flows:
  sample_flow: 
    # ...
    es_index_settings:
      index:
        mapping:
          total_fields:
            limit: 2000
    es_index_mapping:
      properties:
        title:
          type: text
    es_index_aliases:
      my_alias:
        is_hidden: true

What's Changed

Full Changelog: 2.6.0...2.7.0

2.6.0

Choose a tag to compare

@mmenozzi mmenozzi released this 07 Nov 14:24

What's Changed

Full Changelog: 2.5.1...2.6.0

2.5.1

Choose a tag to compare

@fabianaromagnoli fabianaromagnoli released this 19 Jul 12:51

What's Changed

  • Fix: max body size option should actually be passed to HttpServer by @youwe-petervanderwal in #34
  • Fix JobNotFoundException message in QueueManager

Full Changelog: 2.5.0...2.5.1

2.5.0

Choose a tag to compare

@fabianaromagnoli fabianaromagnoli released this 10 Jul 15:36

What's Changed

Full Changelog: 2.4.0...2.5.0