mirror of https://github.com/tidwall/tile38.git
1.12.0
This commit is contained in:
parent
2e68024e39
commit
bf1d04d7a5
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -2,10 +2,24 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [1.12.0] - 2018-04-12
|
||||||
|
### Added
|
||||||
|
- 11b42c0: Option to disable AOF or to use a custom path: #220 #223 #297 (@sign0, @umpc, @fmr683, @zhangfeng158)
|
||||||
|
- #296: Add Meta data to hooks command (@tobilg)
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- 11b42c0: Updated help menu and show more options
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- #295: Intersects returning nothing in some cases (@fils)
|
||||||
|
- #294: HTTP requests stopped working (@zhangfeng158)
|
||||||
|
- 0aa04a1: Lotsa package not vendored
|
||||||
|
|
||||||
## [1.11.1] - 2018-03-16
|
## [1.11.1] - 2018-03-16
|
||||||
### Added
|
### Added
|
||||||
- #272: Preserve Docker image tag history (@gechr)
|
- #272: Preserve Docker image tag history (@gechr)
|
||||||
- 9428b84: Added cpu and threads to SERVER stats
|
- 9428b84: Added cpu and threads to SERVER stats
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- #281: Linestring intersection failure (@contra)
|
- #281: Linestring intersection failure (@contra)
|
||||||
- #280: Filter id match before kNN results (@sweco-semtne)
|
- #280: Filter id match before kNN results (@sweco-semtne)
|
||||||
|
@ -15,6 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
## [1.11.0] - 2018-03-05
|
## [1.11.0] - 2018-03-05
|
||||||
### Added
|
### Added
|
||||||
- #221: Add WHEREEVAL clause to scan/search commands (@rshura)
|
- #221: Add WHEREEVAL clause to scan/search commands (@rshura)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- #254: Add maxmemory protection to FSET (@rshura)
|
- #254: Add maxmemory protection to FSET (@rshura)
|
||||||
- #258: Clear expires on reset (@zycbobby)
|
- #258: Clear expires on reset (@zycbobby)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</p>
|
</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="http://tile38.com/slack"><img src="https://img.shields.io/badge/slack-channel-orange.svg" alt="Slack Channel"></a>
|
<a href="http://tile38.com/slack"><img src="https://img.shields.io/badge/slack-channel-orange.svg" alt="Slack Channel"></a>
|
||||||
<a href="https://github.com/tidwall/tile38/releases"><img src="https://img.shields.io/badge/version-1.11.1-green.svg?" alt="Version"></a>
|
<a href="https://github.com/tidwall/tile38/releases"><img src="https://img.shields.io/badge/version-1.12.0-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://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>
|
<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>
|
</p>
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.11.1"
|
VERSION="1.12.0"
|
||||||
PROTECTED_MODE="no"
|
PROTECTED_MODE="no"
|
||||||
|
|
||||||
# Hardcode some values to the core package
|
# Hardcode some values to the core package
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM alpine:3.4
|
FROM alpine:3.4
|
||||||
|
|
||||||
ENV TILE38_VERSION 1.11.1
|
ENV TILE38_VERSION 1.12.0
|
||||||
ENV TILE38_DOWNLOAD_URL https://github.com/tidwall/tile38/releases/download/$TILE38_VERSION/tile38-$TILE38_VERSION-linux-amd64.tar.gz
|
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
|
RUN addgroup -S tile38 && adduser -S -G tile38 tile38
|
||||||
|
|
Loading…
Reference in New Issue