Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit e6046f6

Browse files
author
Clément Le Provost
committed
Version 3.12.1
1 parent 18a2bcb commit e6046f6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

ChangeLog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log
22
==========
33

4+
## 3.12.1 (2017-07-26)
5+
6+
### Bug fixes
7+
8+
- Avoid passing large API keys inside HTTP headers
9+
410
## 3.12.0 (2017-06-14)
511

612
## New features

algoliasearch/common.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'com.android.library'
2626
ext {
2727
PUBLISH_GROUP_ID = rootProject.properties["PUBLISH_GROUP_ID"] ?: "com.algolia"
2828
// NOTE: This is the official version number used during publication.
29-
PUBLISH_VERSION = '3.12.0'
29+
PUBLISH_VERSION = '3.12.1'
3030
APPCOMPAT_VERSION = '25.3.0'
3131
BUILD_TOOLS_VERSION = '25.0.2'
3232
}

algoliasearch/src/main/java/com/algolia/search/saas/AbstractClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private static class HostStatus {
105105
// ----------------------------------------------------------------------
106106

107107
/** This library's version. */
108-
private final static String version = "3.12.0";
108+
private final static String version = "3.12.1";
109109

110110
/** Maximum size for an API key to be sent in the HTTP headers. Bigger keys will go inside the body. */
111111
private final static int MAX_API_KEY_LENGTH = 500;

0 commit comments

Comments
 (0)