Releases: payrollhero/webhook_system
Releases · payrollhero/webhook_system
v2.4.1: Support for Rails 7.1 (#111)
* 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
v2.4.0 (2022-05-02)
- Rails 7.0 Official support.
- Please read Upgrade notes, a migration is required to rename the
encrypt
column toencrypted
.
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
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
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
should be able to call dispatch on an event class (#16)
v2.1.6
add account info to error message (#15)
v2.1.5: Merge pull request #14 from payrollhero/url-in-error-exception
response body error message in exception
v2.1.4: Merge pull request #13 from payrollhero/url-in-error-exception
display url in error exception