Skip to content

Releases: enablingflow/spring-boot-data-mongo-multitenant

0.0.26

03 Oct 20:28
Compare
Choose a tag to compare

Feature

  • Allowing nesting different tenants
    void itAllowsToNestTenantContext() throws Exception {
        tenants.performAsTenant("tenantA", () -> {
            assertThat(tenants.getScopedTenant()).isEqualTo("tenantA");
            tenants.performAsTenant("tenantB", () -> {
                assertThat(tenants.getScopedTenant()).isEqualTo("tenantB");
            });
            assertThat(tenants.getScopedTenant()).isEqualTo("tenantA");
        });
    }

0.0.25

26 Sep 10:25
Compare
Choose a tag to compare

Fixes:

  • 🐛 Not lose tenant context when nesting calls

0.0.24

26 Sep 10:13
Compare
Choose a tag to compare

Fixes

  • 🐛 Not lose the context when using performAsRoot(Callable<T> callable)

0.0.23

26 Sep 10:07
Compare
Choose a tag to compare

Fixes:

  • 🐛 Fix losing the root context with nested executions

0.0.22

25 Sep 15:55
Compare
Choose a tag to compare
  • Renamed package to com.github.enablingflow

0.0.20

24 Sep 17:38
Compare
Choose a tag to compare
Nullable

0.0.19

24 Sep 15:49
Compare
Choose a tag to compare
supporting objectId as tenant during save operation

0.0.17

20 Sep 20:36
Compare
Choose a tag to compare
adding callable interface

0.0.7

12 Sep 16:29
Compare
Choose a tag to compare
0.0.7

0.0.5

12 Sep 15:37
Compare
Choose a tag to compare
removed -plan at the end of the artifact