Skip to content

Releases: payrollhero/webhook_system

v2.4.1: Support for Rails 7.1 (#111)

30 Oct 23:14
a8def4f
Compare
Choose a tag to compare
* allow rails 7.1

* Update ci.yml

* Create rails_7.1.gemfile

* Update version.rb

* update rubocop file

* dev branch of active_attr

* bye bye ruby 2.6

* updte rubocop

* bye bye rails 4.2

* oups

* we need this

* one was missing

* fix version check

* ruby 3.0 only for rails 7.1

* rails 7.1 on ruby 3.1+ only

* used released active_attr

v2.4.0 - Rails 7

02 May 09:56
Compare
Choose a tag to compare

v2.4.0 (2022-05-02)

Full Changelog

  • Rails 7.0 Official support.
  • Please read Upgrade notes, a migration is required to rename the encrypt column to encrypted.

Upgrading

If you are upgrading from <= 2.3.1 into >= 2.4, then you must run a migration to rename the encrypt column.
This rename was required for adding support for Rails 7.

You can use this migration.

# db/migrate/20220427113942_rename_encrypt_on_webhook_subscriptions.rb
class RenameEncryptOnWebhookSubscriptions < ActiveRecord::Migration[7.0]
  def change
    rename_column :webhook_subscriptions, :encrypt, :encrypted
  end
end

v2.3.1 - Rails 6.1

27 Apr 11:03
75dffb6
Compare
Choose a tag to compare
Rails 6.1 support (#21)

* allow rails 6.1+

* update Gemfile.lock for Rails 4.2

* add ruby 2.7 to the build matrix, bump version

* bundle update for rails 4.2, remove byebug/pry from dev deps

* moved exception expectation block inside

* Update CHANGELOG.md

* 2.3.1 is sufficient

Co-authored-by: P.T <[email protected]>

v2.3.0 Inline jobs

18 Aug 09:44
696a7c2
Compare
Choose a tag to compare
Add ability to call another job inline (#18)

* draft, add ability to call another job inline, this way we can keep our subscriptions and topics, but remove an external service

* allow straight http, at least for the test suite

* update validation

* validation adjustment
fixed inline job matcher

* update url_domain for inline subscriptions, add specs

* make Job trailing

* update gemfile .lock for rails 4.2

Co-authored-by: P.T <[email protected]>

v2.2.0

11 Nov 03:23
7ba2adc
Compare
Choose a tag to compare
should be able to call dispatch on an event class (#16)

v2.1.6

26 Jul 06:27
8a435d8
Compare
Choose a tag to compare
add account info to error message (#15)

v2.1.5: Merge pull request #14 from payrollhero/url-in-error-exception

24 Jul 06:36
88e731c
Compare
Choose a tag to compare

v2.1.4: Merge pull request #13 from payrollhero/url-in-error-exception

10 May 05:18
52ebb62
Compare
Choose a tag to compare