Skip to content

Commit 222d303

Browse files
committed
Merge branch 'master' into feature/channel_access_token_v21
2 parents ee676ac + e5c3488 commit 222d303

18 files changed

+689
-26
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: bundler
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "20:00"
8+
open-pull-requests-limit: 10

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
10+
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0' ]
1111
name: Ruby v${{ matrix.ruby }}
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: actions/setup-ruby@v1
14+
- uses: ruby/setup-ruby@v1
1515
with:
1616
ruby-version: ${{ matrix.ruby }}
1717
- run: gem install bundler

.rubocop.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
AllCops:
2-
TargetRubyVersion: 2.1
2+
TargetRubyVersion: 2.4
33
Exclude:
44
- 'examples/**/*'
5+
NewCops: disable
56

67
Gemspec/RequiredRubyVersion:
78
Enabled: false
@@ -32,32 +33,42 @@ Style/Semicolon:
3233
Enabled: false
3334
Style/EachWithObject:
3435
Enabled: false
36+
Style/FrozenStringLiteralComment:
37+
Enabled: false
38+
Style/StringConcatenation:
39+
Enabled: false
40+
Style/RedundantAssignment:
41+
Enabled: false
3542

3643
Naming/HeredocDelimiterNaming:
3744
Enabled: false
38-
Naming/UncommunicativeMethodParamName:
45+
Naming/MethodParameterName:
3946
Enabled: false
4047
Naming/ConstantName:
4148
Enabled: false
4249
Naming/AccessorMethodName:
4350
Enabled: false
4451
Naming/MethodName:
4552
Enabled: false
53+
Naming/FileName:
54+
Enabled: false
4655

47-
Metrics/LineLength:
48-
Max: 200
4956
Metrics/BlockLength:
5057
Enabled: false
5158
Metrics/MethodLength:
5259
Enabled: false
5360
Metrics/ClassLength:
5461
Enabled: false
5562

63+
Layout/LineLength:
64+
Max: 200
5665
Layout/SpaceInsideBlockBraces:
5766
Enabled: false
67+
Layout/HashAlignment:
68+
Enabled: false
5869
Layout/SpaceInsideHashLiteralBraces:
5970
Enabled: false
60-
Layout/IndentHeredoc:
71+
Layout/HeredocIndentation:
6172
Enabled: false
6273
Layout/ExtraSpacing:
6374
Enabled: false

CHANGELOG.md

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,90 @@
11
# Change Log
22

3+
## [v1.20.0](https://github.com/line/line-bot-sdk-ruby/tree/v1.20.0) (2021-07-19)
4+
[Full Changelog](https://github.com/line/line-bot-sdk-ruby/compare/v1.19.0...v1.20.0)
5+
6+
**Closed issues:**
7+
8+
- Dependabot can't resolve your Ruby dependency files [\#227](https://github.com/line/line-bot-sdk-ruby/issues/227)
9+
- Dependabot can't resolve your Ruby dependency files [\#226](https://github.com/line/line-bot-sdk-ruby/issues/226)
10+
- Dependabot can't resolve your Ruby dependency files [\#225](https://github.com/line/line-bot-sdk-ruby/issues/225)
11+
- Dependabot can't resolve your Ruby dependency files [\#224](https://github.com/line/line-bot-sdk-ruby/issues/224)
12+
- Dependabot can't resolve your Ruby dependency files [\#223](https://github.com/line/line-bot-sdk-ruby/issues/223)
13+
- Dependabot can't resolve your Ruby dependency files [\#222](https://github.com/line/line-bot-sdk-ruby/issues/222)
14+
- Support follower IDs API [\#216](https://github.com/line/line-bot-sdk-ruby/issues/216)
15+
- Support Redelivery object for narrowcast messages [\#200](https://github.com/line/line-bot-sdk-ruby/issues/200)
16+
17+
**Merged pull requests:**
18+
19+
- create set\_rich\_menu\_alias and unset\_rich\_menu\_alias method [\#233](https://github.com/line/line-bot-sdk-ruby/pull/233) ([4geru](https://github.com/4geru))
20+
- Update rubocop 0.56.0 -\> 1.12.1 [\#231](https://github.com/line/line-bot-sdk-ruby/pull/231) ([tokuhirom](https://github.com/tokuhirom))
21+
- Upgrade to GitHub-native Dependabot [\#230](https://github.com/line/line-bot-sdk-ruby/pull/230) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
22+
- Upgrade minimum ruby version to 2.4 [\#228](https://github.com/line/line-bot-sdk-ruby/pull/228) ([toduq](https://github.com/toduq))
23+
- Release 1.19.0 [\#221](https://github.com/line/line-bot-sdk-ruby/pull/221) ([kimoto](https://github.com/kimoto))
24+
25+
## [v1.19.0](https://github.com/line/line-bot-sdk-ruby/tree/v1.19.0) (2021-03-22)
26+
[Full Changelog](https://github.com/line/line-bot-sdk-ruby/compare/v1.18.0...v1.19.0)
27+
28+
**Closed issues:**
29+
30+
- Messaging API - October 2020 update [\#201](https://github.com/line/line-bot-sdk-ruby/issues/201)
31+
32+
**Merged pull requests:**
33+
34+
- \[proposal\] Make src accessible from event object [\#220](https://github.com/line/line-bot-sdk-ruby/pull/220) ([Yuki-Inoue](https://github.com/Yuki-Inoue))
35+
- Remove unneeded before block [\#218](https://github.com/line/line-bot-sdk-ruby/pull/218) ([chocoby](https://github.com/chocoby))
36+
- Support follower IDs API [\#217](https://github.com/line/line-bot-sdk-ruby/pull/217) ([chocoby](https://github.com/chocoby))
37+
38+
## [v1.18.0](https://github.com/line/line-bot-sdk-ruby/tree/v1.18.0) (2021-01-13)
39+
[Full Changelog](https://github.com/line/line-bot-sdk-ruby/compare/v1.17.0...v1.18.0)
40+
41+
**Closed issues:**
42+
43+
- Run github actions CI with ruby 3.0 [\#210](https://github.com/line/line-bot-sdk-ruby/issues/210)
44+
- keywords property added to Sticker event object [\#204](https://github.com/line/line-bot-sdk-ruby/issues/204)
45+
- Support Flex Message Update 2 [\#202](https://github.com/line/line-bot-sdk-ruby/issues/202)
46+
47+
**Merged pull requests:**
48+
49+
- Release 1.18.0 [\#214](https://github.com/line/line-bot-sdk-ruby/pull/214) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
50+
- support test webhook endpoint [\#213](https://github.com/line/line-bot-sdk-ruby/pull/213) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
51+
- support set webhook endpoint [\#212](https://github.com/line/line-bot-sdk-ruby/pull/212) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
52+
- Add ruby v3.0 for pull request CI [\#211](https://github.com/line/line-bot-sdk-ruby/pull/211) ([toduq](https://github.com/toduq))
53+
- support get webhook endpoint [\#209](https://github.com/line/line-bot-sdk-ruby/pull/209) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
54+
55+
## [v1.17.0](https://github.com/line/line-bot-sdk-ruby/tree/v1.17.0) (2020-12-18)
56+
[Full Changelog](https://github.com/line/line-bot-sdk-ruby/compare/v1.16.0...v1.17.0)
57+
58+
**Implemented enhancements:**
59+
60+
- Support Audience apis [\#172](https://github.com/line/line-bot-sdk-ruby/issues/172)
61+
62+
**Closed issues:**
63+
64+
- Messaging API - September 2020 update [\#198](https://github.com/line/line-bot-sdk-ruby/issues/198)
65+
66+
**Merged pull requests:**
67+
68+
- Release 1.17.0 [\#208](https://github.com/line/line-bot-sdk-ruby/pull/208) ([kimoto](https://github.com/kimoto))
69+
- Introduce github actions for CI [\#207](https://github.com/line/line-bot-sdk-ruby/pull/207) ([toduq](https://github.com/toduq))
70+
- disallow actual net connection during unit test [\#206](https://github.com/line/line-bot-sdk-ruby/pull/206) ([yskkin](https://github.com/yskkin))
71+
- Support LIFF v1 Server API [\#205](https://github.com/line/line-bot-sdk-ruby/pull/205) ([yskkin](https://github.com/yskkin))
72+
- Support bot info api [\#203](https://github.com/line/line-bot-sdk-ruby/pull/203) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
73+
- Add audience API endpoints [\#183](https://github.com/line/line-bot-sdk-ruby/pull/183) ([toduq](https://github.com/toduq))
74+
375
## [v1.16.0](https://github.com/line/line-bot-sdk-ruby/tree/v1.16.0) (2020-08-13)
476
[Full Changelog](https://github.com/line/line-bot-sdk-ruby/compare/v1.15.0...v1.16.0)
577

678
**Closed issues:**
779

880
- The endpoint to get statistics is now available in Indonesia \(ID\) [\#194](https://github.com/line/line-bot-sdk-ruby/issues/194)
81+
- Messaging API update for June 2020 [\#186](https://github.com/line/line-bot-sdk-ruby/issues/186)
82+
- Messaging API - May 2020 update [\#184](https://github.com/line/line-bot-sdk-ruby/issues/184)
83+
- Support LINE emoji in messages [\#180](https://github.com/line/line-bot-sdk-ruby/issues/180)
984

1085
**Merged pull requests:**
1186

87+
- Release 1.16.0 [\#197](https://github.com/line/line-bot-sdk-ruby/pull/197) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
1288
- Add videoPlayComplete event and spec [\#196](https://github.com/line/line-bot-sdk-ruby/pull/196) ([ryota-sakamoto](https://github.com/ryota-sakamoto))
1389
- Add example for unsend [\#195](https://github.com/line/line-bot-sdk-ruby/pull/195) ([gom](https://github.com/gom))
1490
- Add unsend event and spec [\#193](https://github.com/line/line-bot-sdk-ruby/pull/193) ([dlackty](https://github.com/dlackty))
@@ -476,4 +552,4 @@
476552

477553

478554

479-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
555+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ gemspec
44

55
group :development, :test do
66
# ref: http://docs.rubocop.org/en/latest/installation/
7-
gem 'rubocop', '~> 0.56.0', require: false
7+
gem 'rubocop', '~> 1.12.1', require: false
88
gem 'yard', '~> 0.9.20'
99
end

lib/line/bot/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
module Line
1616
module Bot
1717
module API
18-
VERSION = "1.16.0"
18+
VERSION = "1.20.0"
1919
end
2020
end
2121
end

0 commit comments

Comments
 (0)