Releases: Ashok-Varma/Gander
3.1.0
3.0.0
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
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
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
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
Merge pull request #5 from shanmugasanthosh7/master Update compile to implementation
1.2.0
- Added formatting for JsonArray.
- Added formatting for URLEncodedParams.
- More Accurate response times (without interceptors delay).
- Search in Request and Response UI enhancements.
Gander No Op fix
Major Bug Fix
Gander No Op package name change
New Search in Response, Request
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
Fix for header with no/empty values