Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5.15 #64

Merged
merged 2 commits into from Feb 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions .travis.yml
@@ -1,6 +1,9 @@
language: ruby

jdk: oraclejdk8
dist: trusty

jdk: openjdk8

sudo: false

addons:
Expand All @@ -15,9 +18,9 @@ before_install:
ruby -v
rvm get head
rvm use jruby-9.0.5.0 --install
gem install bundler
gem install bundler -v '< 2'
ruby -v
- gem i bundler
- gem install bundler -v '< 2'

rvm:
- jruby-9.0.5.0
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 0.5.15 - 2020-01-22

* [enhancement] Update the authentication method to latest [#63](https://github.com/treasure-data/embulk-input-mixpanel/pull/63)

## 0.5.14 - 2018-10-22

* [enhancement] Handle the wrong period during transition from standard to daylight saving time exception [#62](https://github.com/treasure-data/embulk-input-mixpanel/pull/62)
Expand Down
3 changes: 0 additions & 3 deletions README.md
Expand Up @@ -31,7 +31,6 @@ To get it, you should log in mixpanel website, and click gear icon at the lower

### Configuration

- **api_key**: project API Key (string, required)
- **api_secret**: project API Secret (string, required)
- **export_endpoint**: the Data Export API's endpoint (string, default to "http://data.mixpanel.com/api/2.0/export")
- **timezone**: project timezone(string, required)
Expand Down Expand Up @@ -69,7 +68,6 @@ If you have such data and set config.yml as below.
```yaml
in:
type: mixpanel
api_key: "API_KEY"
api_secret: "API_SECRET"
timezone: "US/Pacific"
from_date: "2015-07-19"
Expand Down Expand Up @@ -102,7 +100,6 @@ in:
```yaml
in:
type: mixpanel
api_key: "API_KEY"
api_secret: "API_SECRET"
timezone: "US/Pacific"
from_date: "2015-07-19"
Expand Down
4 changes: 2 additions & 2 deletions embulk-input-mixpanel.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "embulk-input-mixpanel"
spec.version = "0.5.14"
spec.version = "0.5.15"
spec.authors = ["yoshihara", "uu59"]
spec.summary = "Mixpanel input plugin for Embulk"
spec.description = "Loads records from Mixpanel."
Expand All @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency 'httpclient', '>= 2.8.3' # To use tcp_keepalive
spec.add_dependency 'tzinfo'
spec.add_dependency 'tzinfo', '1.2.5' # to avoid failure in when upgrade to 1.2.6 https://github.com/tzinfo/tzinfo/issues/114
spec.add_dependency 'perfect_retry', ["~> 0.5"]
spec.add_dependency 'activesupport'
spec.add_development_dependency 'bundler', ['~> 1.0']
Expand Down