This repository was archived by the owner on Jan 31, 2022. It is now read-only.
File tree 3 files changed +8
-2
lines changed
src/main/java/com/algolia/search/saas
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## 3.12.1 (2017-07-26)
5
+
6
+ ### Bug fixes
7
+
8
+ - Avoid passing large API keys inside HTTP headers
9
+
4
10
## 3.12.0 (2017-06-14)
5
11
6
12
## New features
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ apply plugin: 'com.android.library'
26
26
ext {
27
27
PUBLISH_GROUP_ID = rootProject. properties[" PUBLISH_GROUP_ID" ] ?: " com.algolia"
28
28
// NOTE: This is the official version number used during publication.
29
- PUBLISH_VERSION = ' 3.12.0 '
29
+ PUBLISH_VERSION = ' 3.12.1 '
30
30
APPCOMPAT_VERSION = ' 25.3.0'
31
31
BUILD_TOOLS_VERSION = ' 25.0.2'
32
32
}
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ private static class HostStatus {
105
105
// ----------------------------------------------------------------------
106
106
107
107
/** This library's version. */
108
- private final static String version = "3.12.0 " ;
108
+ private final static String version = "3.12.1 " ;
109
109
110
110
/** Maximum size for an API key to be sent in the HTTP headers. Bigger keys will go inside the body. */
111
111
private final static int MAX_API_KEY_LENGTH = 500 ;
You can’t perform that action at this time.
0 commit comments