mirror of https://github.com/tidwall/tile38.git
1.9.1
This commit is contained in:
parent
bb7b6411b8
commit
9cdbea19c1
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -2,6 +2,24 @@
|
|||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [1.9.1] - 2017-08-16
|
||||
### Added
|
||||
- cd05708: Spatial index optimizations
|
||||
- #208: Debug message for failed webhook notifications (@karnivas)
|
||||
- #201: New ECHO command (@yorkxiao)
|
||||
- #183: Include tile38-cli in Docker image (@jchamberlain)
|
||||
- #121: Allow reads for disconnected followers (@octete)
|
||||
|
||||
### Fixed
|
||||
- 3fae3f7: Allow cursors for kNN queries
|
||||
- #211: Crash when shrinking AOF on Windows (@icewukong)
|
||||
- #203: Lifted LIMIT restriction all queries and COUNT keyword (@yorkxiao, @FX-HAO)
|
||||
- #207: Send empty results for queries on nonexistent keys (@FX-HAO)
|
||||
- #195: Added kNN overscan ordering (@rshura)
|
||||
- #199: Apply LIMIT after WHERE clause (@rshura)
|
||||
- #199: Require Go 1.7 (@rshura)
|
||||
- #198: Omit fields for Resp when NOFIELDS is used (@rshura)
|
||||
|
||||
## [1.9.0] - 2017-04-13
|
||||
### Added
|
||||
- #159: AMQP/RabbitMQ webhook support (@m1ome, @paavalan)
|
||||
|
@ -11,7 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- #20: Ability to specify pidfile via args (@olevole)
|
||||
|
||||
### Fixed
|
||||
- #b1c76d: tile38-cli auto doesn't auto reconnect
|
||||
- b1c76d7: tile38-cli auto doesn't auto reconnect
|
||||
- #156: Use redis-style TTL implementation (@Lars-Meijer, @m1ome)
|
||||
- #150: Live "inside" fence event not triggering for new object (@phulst)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
</p>
|
||||
<p align="center">
|
||||
<a href="https://gitter.im/tile38/tile38?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"><img src="https://badges.gitter.im/Join%20Chat.svg" alt="Gitter"></a>
|
||||
<a href="https://github.com/tidwall/tile38/releases"><img src="https://img.shields.io/badge/version-1.9.0-green.svg?" alt="Version"></a>
|
||||
<a href="https://github.com/tidwall/tile38/releases"><img src="https://img.shields.io/badge/version-1.9.1-green.svg?" alt="Version"></a>
|
||||
<a href="https://travis-ci.org/tidwall/tile38"><img src="https://travis-ci.org/tidwall/tile38.svg?branch=master" alt="Build Status"></a>
|
||||
<a href="https://hub.docker.com/r/tile38/tile38"><img src="https://img.shields.io/badge/docker-ready-blue.svg" alt="Docker Ready"></a>
|
||||
</p>
|
||||
|
|
2
build.sh
2
build.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
VERSION="1.9.0"
|
||||
VERSION="1.9.1"
|
||||
PROTECTED_MODE="no"
|
||||
|
||||
# Hardcode some values to the core package
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM alpine:3.4
|
||||
|
||||
ENV TILE38_VERSION 1.9.0
|
||||
ENV TILE38_VERSION 1.9.1
|
||||
ENV TILE38_DOWNLOAD_URL https://github.com/tidwall/tile38/releases/download/$TILE38_VERSION/tile38-$TILE38_VERSION-linux-amd64.tar.gz
|
||||
|
||||
RUN addgroup -S tile38 && adduser -S -G tile38 tile38
|
||||
|
|
Loading…
Reference in New Issue