Skip to content

Releases: Ashok-Varma/Gander

3.1.0

15 Jul 14:40
94077c4
Compare
Choose a tag to compare

ChangeLog

  • Support for Okhttp4
  • Support UI for Notches

3.0.0

22 Jun 01:56
5ff0f9f
Compare
Choose a tag to compare

Breaking changes

Gander now needs to specify Storage it is using in on create of application

  @Override
    public void onCreate() {
        super.onCreate();
        // For Persistence (Uses Room to store the calls in DB)
        Gander.setGanderStorage(GanderPersistence.getInstance(this));
        // For In Memory DB (Data retained in memory lost on app close)
        Gander.setGanderStorage(GanderIMDB.getInstance());
    }

ChangeLog

  • Added Different types of storages (Persistence or IMDB)
  • Separated packages for both to avoid unnecessary dependencies for users
  • Added travis check and new code is with 100 % test coverage
  • isolates and separated the code from data model to clear data models from the clutter

2.0.3

09 Jun 00:54
Compare
Choose a tag to compare

Fixed gradle issue in library verions 2.0.0, 2.0.1, 2.0.2 where the library dependencies are not bundled in the aar.

Fixes

updated bintray and maven plugins to support gradle changes implementation and api

2.0.0

09 Jun 00:51
Compare
Choose a tag to compare

Gander is now Moved to AndroidX dependencies

Change Log

Moved to AndroidX
Other plugin updates android_tools => 3.4.0, gradle => 5.4.1,..etc
Other optimisations

1.4.0

21 Dec 05:49
Compare
Choose a tag to compare

Breaking change showNotification is now separate call not a constructor parameter

Change Log

Add sticky Notification support and redact Header support
Updated Okhttp and Retrofit
Added dismiss as option to notifications (Sticky Notification handling)
Updated documentation
Show notification moved separately from constructor

1.3.3

27 Nov 10:55
4055e3e
Compare
Choose a tag to compare
Merge pull request #5 from shanmugasanthosh7/master

Update compile to implementation

1.2.0

23 Jul 03:12
Compare
Choose a tag to compare
  1. Added formatting for JsonArray.
  2. Added formatting for URLEncodedParams.
  3. More Accurate response times (without interceptors delay).
  4. Search in Request and Response UI enhancements.

Gander No Op fix

11 Jun 04:15
Compare
Choose a tag to compare

Major Bug Fix

Gander No Op package name change

New Search in Response, Request

09 Jun 03:45
Compare
Choose a tag to compare

New Powerful Search in Response, Request
Performance increase in Search Highlight
New Sampler to block many ui updates at same time
Complete Code Refactor => naming scheme changed

1.0.6.1

06 Jun 13:42
Compare
Choose a tag to compare

Fix for header with no/empty values