Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.1.0 #1416

Merged
merged 45 commits into from
Aug 27, 2017
Merged

4.1.0 #1416

merged 45 commits into from
Aug 27, 2017

Commits on Oct 3, 2016

  1. Split view and table creation in order to run migration after table c…

    …reation but before view creation
    dwayne-roadhouse committed Oct 3, 2016
    Configuration menu
    Copy the full SHA
    c4bc810 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2016

  1. Update KotlinSupport.md

    agrosner authored and dwayne-roadhouse committed Oct 17, 2016
    Configuration menu
    Copy the full SHA
    9b39dd9 View commit details
    Browse the repository at this point in the history
  2. Split view and table creation in order to run migration after table c…

    …reation but before view creation
    dwayne-roadhouse committed Oct 17, 2016
    Configuration menu
    Copy the full SHA
    c20d8b5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ba284e8 View commit details
    Browse the repository at this point in the history
  4. Merge

    dwayne-roadhouse committed Oct 17, 2016
    Configuration menu
    Copy the full SHA
    fb16c3b View commit details
    Browse the repository at this point in the history

Commits on May 15, 2017

  1. Fix broken IndexMigration

    Properly use the getName() method that subclasses have the implement.
    No need to keep a 'name' member around for this purpose. Re-enable
    previously broken test.
    saschpe committed May 15, 2017
    Configuration menu
    Copy the full SHA
    fe52267 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2017

  1. [models] add ColumnMap annotation to embed objects into current table…

    … if they reference a QueryModel. Will work on making that not a requirement at a later time.
    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    441aa08 View commit details
    Browse the repository at this point in the history
  2. [models] add ability to arbitrarily add model classes as @ColumnMap o…

    …bjects. Dont need annotation on class if don't want.
    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    926115d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9bb2602 View commit details
    Browse the repository at this point in the history
  4. [database] move database name to builder instead of annotation, so dy…

    …namic is possible.
    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    3cde1ba View commit details
    Browse the repository at this point in the history
  5. [database] deprecate use of generatedClass separator.

    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    aee3fc7 View commit details
    Browse the repository at this point in the history
  6. [database] simplify and consolidate methods for closing + reopening d…

    …b with destroying the file. Allow applying new DB config to manager.
    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    6315844 View commit details
    Browse the repository at this point in the history
  7. [usage] update usage to newest.

    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    3d66aca View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8b46b3a View commit details
    Browse the repository at this point in the history
  9. [models] add non null clause for foreign key references.

    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    23ffad0 View commit details
    Browse the repository at this point in the history
  10. [processor] if generated annotation is on classpath, put it into gene…

    …rated code for DBFlow.
    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    745e68d View commit details
    Browse the repository at this point in the history
  11. Merge pull request #1086 from saschpe/indexmigration

    Fix broken IndexMigration
    agrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    032923d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d6e52e3 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #1017 from dwaynehoy/feature/split_view_and_table_…

    …creation
    
    Fixed bug where migration would fail due to a new view referencing a migrated column
    agrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    fa2fee7 View commit details
    Browse the repository at this point in the history
  14. [modelviews] sort by priority here.

    fuzzagrosner committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    624652b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    97b6f7e View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2017

  1. [database] restore and deprecate old mechanisms for specifying name a…

    …nd extension. also database definition.reset(context). move processor away from autoservice and just define service file.
    fuzzagrosner committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    c54d0cd View commit details
    Browse the repository at this point in the history
  2. [processor] remove autoservice competely, replace guava calls with ko…

    …tlin stdlib calls.
    fuzzagrosner committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    dfdf87e View commit details
    Browse the repository at this point in the history
  3. [warnings] fix two warnings.

    fuzzagrosner committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    d25d217 View commit details
    Browse the repository at this point in the history
  4. [one to many] auto detect visibility of field and throw compile time …

    …error if field does not exist in class.
    fuzzagrosner committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    5bb3405 View commit details
    Browse the repository at this point in the history
  5. [one to many] better detection of private variable if setter exists, …

    …getter must exist. add oneTomany delegate to make super concise one to many.
    fuzzagrosner committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    b75ba4a View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2017

  1. [builder] add static factory methods to table and flow config for uni…

    …formity.
    fuzzagrosner committed Jul 20, 2017
    Configuration menu
    Copy the full SHA
    1cb15aa View commit details
    Browse the repository at this point in the history
  2. [database] better error messages for tables pointing to not registere…

    …d databases. add kaptAndroidTest to project.
    fuzzagrosner committed Jul 20, 2017
    Configuration menu
    Copy the full SHA
    7fefc64 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c42bf6 View commit details
    Browse the repository at this point in the history
  4. [usage] update linked usage version.

    fuzzagrosner committed Jul 20, 2017
    Configuration menu
    Copy the full SHA
    345fa30 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2017

  1. [models] provide autoincrement model saver for autoincrementing ids t…

    …o check if model has id specified. If not specified, assigns it an id, otherwise uses the id in the insert.
    fuzzagrosner committed Jul 21, 2017
    Configuration menu
    Copy the full SHA
    a3f1f77 View commit details
    Browse the repository at this point in the history
  2. [tests] fix broken instrumentated tests.

    fuzzagrosner committed Jul 21, 2017
    Configuration menu
    Copy the full SHA
    6c75d29 View commit details
    Browse the repository at this point in the history
  3. [columnmap] add references so you can specify custom names for column…

    …s. add readme on @ColumnMap
    fuzzagrosner committed Jul 21, 2017
    Configuration menu
    Copy the full SHA
    c794f36 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2017

  1. Configuration menu
    Copy the full SHA
    5faed0d View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2017

  1. [query] rename count() to longValue() to show that long results is ca…

    …lled. Not confused with count() operator. Simplify base transformable overrides.
    fuzzagrosner committed Jul 25, 2017
    Configuration menu
    Copy the full SHA
    55b462a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    16a2c04 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2017

  1. Configuration menu
    Copy the full SHA
    0865adf View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2017

  1. Configuration menu
    Copy the full SHA
    8b5337b View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2017

  1. Merge pull request #1402 from danvwells/bugfix/converter-withtable

    fix to #1401: withTable now works for TypeConvertedProperty
    agrosner committed Aug 18, 2017
    Configuration menu
    Copy the full SHA
    ff84b04 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2017

  1. Configuration menu
    Copy the full SHA
    8e693fd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2ca1a17 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    45b9762 View commit details
    Browse the repository at this point in the history
  4. [table] turn off automatic creation of tables with a flag. write test…

    … to ensure it stays off.
    agrosner committed Aug 26, 2017
    Configuration menu
    Copy the full SHA
    32dd5e1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d624e8f View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2017

  1. Configuration menu
    Copy the full SHA
    d1be504 View commit details
    Browse the repository at this point in the history