All Versions
10
Latest Version
Avg Release Cycle
16 days
Latest Release
1126 days ago
Changelog History
Changelog History
-
v1.5.0 Changes
February 21, 2022- ๐ Support Rails >= 6.1 only
- โ Test with matrixeval-ruby
-
v1.4.0 Changes
October 13, 2021โ Add
MultiTenantSupport.set_current_tenant
MultiTenantSupport.without_current_tenant
- ๐
MultiTenantSupport.full_protected?
- ๐
MultiTenantSupport.unprotected?
MultiTenantSupport.turn_off_protection
MultiTenantSupport.turn_on_full_protection
โ Remove
MultiTenantSupport.disallow_read_across_tenant?
-
v1.3.1 Changes
October 10, 2021- ๐ Make ViewHelper work in both controller and view
-
v1.3.0 Changes
October 10, 2021- โ Integrate with Rails default testing toolchain (Minitest + Capybara)
- โ Integrate with RSpec + Capybara
-
v1.2.0 Changes
October 08, 2021- โ Keep current tenant unchange around job perform with SiekiqAdapter,TestAdapter,InlineAdapter,AsyncAdapter
- Add a new console config
allow_read_across_tenant_by_default
- Add an environment varialbe
ALLOW_READ_ACROSS_TENANT
-
v1.1.1 Changes
October 07, 2021- ๐ท Make sure all four job delivery ways work as expected
- MyJob.perform_now('hi')
- MyJob.perform_later('hi')
- MyJob.set(queue: 'high').perform_now('hi')
- MyJob.set(queue: 'high').perform_later('hi')
- ๐ท Make sure all four job delivery ways work as expected
-
v1.1.0 Changes
October 07, 2021- ๐ Make tenant finding strategy customizable
- Override
find_current_tenant_account
in controller
- Override
- ๐ Make tenant finding strategy customizable
-
v1.0.5 Changes
October 06, 2021- ๐ Fix an error caused by call
helper_method
on ActionController::API
- ๐ Fix an error caused by call
-
v1.0.4 Changes
October 05, 2021- Rename "lib/multi_tenant_support.rb" to "lib/multi-tenant-support.rb"
- Breaking: please remove
require 'multi_tenant_support'
from theconfig/initializers/multi_tenant_support.rb
-
v1.0.3 Changes
October 04, 2021- Prevent most ActiveRecord CRUD methods from acting across tenants.
- ๐ Support Row-level Multitenancy
- ๐ Build on ActiveSupport::CurrentAttributes offered by rails
- Auto set current tenant through subdomain and domain in controller
- ๐ Support ActiveJob and Sidekiq