Skip to content

Commit 946b441

Browse files
authored
Merge pull request #101 from cosmo0920/upgrade-activesupport-to-6.1
Upgrade activesupport to 6.1
2 parents 0ed1f33 + 7496d87 commit 946b441

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

.github/workflows/linux.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,36 @@ on:
66
jobs:
77
build:
88
runs-on: ${{ matrix.os }}
9+
continue-on-error: ${{ matrix.experimental }}
910
strategy:
1011
fail-fast: false
1112
matrix:
12-
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
13+
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
1314
postgres: [ '9', '10', '11', '12', '13' ]
1415
os:
1516
- ubuntu-latest
17+
experimental: [false]
18+
include:
19+
- ruby: head
20+
postgres: '9'
21+
os: ubuntu-latest
22+
experimental: true
23+
- ruby: head
24+
postgres: '10'
25+
os: ubuntu-latest
26+
experimental: true
27+
- ruby: head
28+
postgres: '11'
29+
os: ubuntu-latest
30+
experimental: true
31+
- ruby: head
32+
postgres: '12'
33+
os: ubuntu-latest
34+
experimental: true
35+
- ruby: head
36+
postgres: '13'
37+
os: ubuntu-latest
38+
experimental: true
1639
services:
1740
postgres:
1841
image: postgres:${{ matrix.postgres }}

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ addons:
55
postgresql: "9.4"
66

77
rvm:
8-
- 2.4.10
98
- 2.5.8
109
- 2.6.6
1110
- 2.7.1

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ We recommend that mysql2 gem is higher than `0.3.12` and pg gem is higher than `
2727

2828
If you use ruby 2.1, use pg gem 0.21.0 (< 1.0.0) because ActiveRecord 5.1.4 or earlier doesn't support Ruby 2.1.
2929

30-
### Resolve tzinfo version conflict
31-
32-
If you want to use fluent-plugin-sql with recent fluentd/td-agent, you need to downgrade tzinfo to v1.x manually.
33-
See also this comment: https://github.com/fluent/fluent-plugin-sql/issues/87#issuecomment-614552292
34-
3530
## Input: How It Works
3631

3732
This plugin runs following SQL periodically:

fluent-plugin-sql.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Gem::Specification.new do |gem|
1717
gem.license = "Apache-2.0"
1818

1919
gem.add_dependency "fluentd", [">= 0.12.17", "< 2"]
20-
gem.add_dependency 'activerecord', "~> 5.1"
21-
gem.add_dependency 'activerecord-import', "~> 0.7"
20+
gem.add_dependency 'activerecord', "~> 6.1"
21+
gem.add_dependency 'activerecord-import', "~> 1.0"
2222
gem.add_development_dependency "rake", ">= 0.9.2"
2323
gem.add_development_dependency "test-unit", "> 3.1.0"
2424
gem.add_development_dependency "test-unit-rr"

0 commit comments

Comments
 (0)