mifos-mobile icon indicating copy to clipboard operation
mifos-mobile copied to clipboard

chore(deps): bump rootProject.dbflowVersion from 4.1.2 to 4.2.4

Open dependabot[bot] opened this issue 4 years ago • 0 comments

Bumps rootProject.dbflowVersion from 4.1.2 to 4.2.4. Updates dbflow-processor from 4.1.2 to 4.2.4

Release notes

Sourced from dbflow-processor's releases.

4.2.4

  1. dropTrigger from SqlUtils takes in a DatabaseWrapper.
  2. Fix broken annotation processor code output tests. #1437
  3. Fix issues where DatabaseStatement in library in wrapper statements were not closed properly. #1497
  4. Fix issue where single reference (non table object) used wrong name for property in the primary condition clause, causing compile issue. #1504

4.2.3

  1. update Issue template
  2. fix pom file generation on jitpack #1487
  3. fix issue where save(DatabaseWrapper) would leave open insert or update statment. #1496
  4. Allow (but still warn) about autoincrementing ids being null. if null, they are treated as if they are 0 meaning that they will get inserted rather than updated in the DB during a save operation. #1490
  5. Update warning on wrong type passed in operator class for value #1488

4.2.2

Fix critical issue where TypeConverter always appear as SQLiteType.TEXT in the DB even if its type did not match up.

Adds a test to ensure it stays true.

Raizlabs/DBFlow#1481

4.2.1

Add FlowQueryList.Builder.contentAuthority() parameter to go in conjunction with 4.2.0 changes.

4.2.0

Support for Android O Content Providers. Simply add this line to your AndroidManifest.xml:

<provider
            android:name="com.raizlabs.android.dbflow.runtime.StubContentProvider"
            android:authorities="com.dbflow.authority"/>

Which will allow normal content observing to continue. It is highly recommended to supply your own authority: use your own package name. so for com.grosner.example app I would add:

<provider
            android:name="com.raizlabs.android.dbflow.runtime.StubContentProvider"
            android:authorities="com.grosner.example"/>
FlowManager.init(FlowConfig.Builder(context)
            .addDatabaseConfig(DatabaseConfig.Builder(MyDatabase.class)
                .modelNotifier(new ContentResolverNotifier("com.grosner.example"))
                .build()).build());
Commits
  • 0e06ea8 Merge pull request #1505 from Raizlabs/develop
  • e8330fc Merge branch 'saschpe-deletetrigger' into develop
  • 7ff338d Merge branch 'develop' into deletetrigger
  • db2caad Merge pull request #1437 from danvwells/tests
  • c6decde [version] 4.2.4
  • 904a667 [foreign key] fix issue where single reference non table column definition is...
  • 3f3d0b4 [query] fix issue where sqlitestatement werre not closed internally.
  • eb5ed84 Merge pull request #1498 from Raizlabs/develop
  • 1175f66 [version] 4.2.3
  • 61e7a65 [readme] update issue template.
  • Additional commits viewable in compare view

Updates dbflow-core from 4.1.2 to 4.2.4

Release notes

Sourced from dbflow-core's releases.

4.2.4

  1. dropTrigger from SqlUtils takes in a DatabaseWrapper.
  2. Fix broken annotation processor code output tests. #1437
  3. Fix issues where DatabaseStatement in library in wrapper statements were not closed properly. #1497
  4. Fix issue where single reference (non table object) used wrong name for property in the primary condition clause, causing compile issue. #1504

4.2.3

  1. update Issue template
  2. fix pom file generation on jitpack #1487
  3. fix issue where save(DatabaseWrapper) would leave open insert or update statment. #1496
  4. Allow (but still warn) about autoincrementing ids being null. if null, they are treated as if they are 0 meaning that they will get inserted rather than updated in the DB during a save operation. #1490
  5. Update warning on wrong type passed in operator class for value #1488

4.2.2

Fix critical issue where TypeConverter always appear as SQLiteType.TEXT in the DB even if its type did not match up.

Adds a test to ensure it stays true.

Raizlabs/DBFlow#1481

4.2.1

Add FlowQueryList.Builder.contentAuthority() parameter to go in conjunction with 4.2.0 changes.

4.2.0

Support for Android O Content Providers. Simply add this line to your AndroidManifest.xml:

<provider
            android:name="com.raizlabs.android.dbflow.runtime.StubContentProvider"
            android:authorities="com.dbflow.authority"/>

Which will allow normal content observing to continue. It is highly recommended to supply your own authority: use your own package name. so for com.grosner.example app I would add:

<provider
            android:name="com.raizlabs.android.dbflow.runtime.StubContentProvider"
            android:authorities="com.grosner.example"/>
FlowManager.init(FlowConfig.Builder(context)
            .addDatabaseConfig(DatabaseConfig.Builder(MyDatabase.class)
                .modelNotifier(new ContentResolverNotifier("com.grosner.example"))
                .build()).build());
Commits
  • 0e06ea8 Merge pull request #1505 from Raizlabs/develop
  • e8330fc Merge branch 'saschpe-deletetrigger' into develop
  • 7ff338d Merge branch 'develop' into deletetrigger
  • db2caad Merge pull request #1437 from danvwells/tests
  • c6decde [version] 4.2.4
  • 904a667 [foreign key] fix issue where single reference non table column definition is...
  • 3f3d0b4 [query] fix issue where sqlitestatement werre not closed internally.
  • eb5ed84 Merge pull request #1498 from Raizlabs/develop
  • 1175f66 [version] 4.2.3
  • 61e7a65 [readme] update issue template.
  • Additional commits viewable in compare view

Updates dbflow from 4.1.2 to 4.2.4

Release notes

Sourced from dbflow's releases.

4.2.4

  1. dropTrigger from SqlUtils takes in a DatabaseWrapper.
  2. Fix broken annotation processor code output tests. #1437
  3. Fix issues where DatabaseStatement in library in wrapper statements were not closed properly. #1497
  4. Fix issue where single reference (non table object) used wrong name for property in the primary condition clause, causing compile issue. #1504

4.2.3

  1. update Issue template
  2. fix pom file generation on jitpack #1487
  3. fix issue where save(DatabaseWrapper) would leave open insert or update statment. #1496
  4. Allow (but still warn) about autoincrementing ids being null. if null, they are treated as if they are 0 meaning that they will get inserted rather than updated in the DB during a save operation. #1490
  5. Update warning on wrong type passed in operator class for value #1488

4.2.2

Fix critical issue where TypeConverter always appear as SQLiteType.TEXT in the DB even if its type did not match up.

Adds a test to ensure it stays true.

Raizlabs/DBFlow#1481

4.2.1

Add FlowQueryList.Builder.contentAuthority() parameter to go in conjunction with 4.2.0 changes.

4.2.0

Support for Android O Content Providers. Simply add this line to your AndroidManifest.xml:

<provider
            android:name="com.raizlabs.android.dbflow.runtime.StubContentProvider"
            android:authorities="com.dbflow.authority"/>

Which will allow normal content observing to continue. It is highly recommended to supply your own authority: use your own package name. so for com.grosner.example app I would add:

<provider
            android:name="com.raizlabs.android.dbflow.runtime.StubContentProvider"
            android:authorities="com.grosner.example"/>
FlowManager.init(FlowConfig.Builder(context)
            .addDatabaseConfig(DatabaseConfig.Builder(MyDatabase.class)
                .modelNotifier(new ContentResolverNotifier("com.grosner.example"))
                .build()).build());
Commits
  • 0e06ea8 Merge pull request #1505 from Raizlabs/develop
  • e8330fc Merge branch 'saschpe-deletetrigger' into develop
  • 7ff338d Merge branch 'develop' into deletetrigger
  • db2caad Merge pull request #1437 from danvwells/tests
  • c6decde [version] 4.2.4
  • 904a667 [foreign key] fix issue where single reference non table column definition is...
  • 3f3d0b4 [query] fix issue where sqlitestatement werre not closed internally.
  • eb5ed84 Merge pull request #1498 from Raizlabs/develop
  • 1175f66 [version] 4.2.3
  • 61e7a65 [readme] update issue template.
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

dependabot[bot] avatar Jul 22 '21 10:07 dependabot[bot]