File tree 3 files changed +24
-2
lines changed
3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ This version of the gem is compatible with `Ruby 2.1` and above.
22
22
23
23
Using bundler:
24
24
25
- gem 'intercom', '~> 3.6.0 '
25
+ gem 'intercom', '~> 3.6.1 '
26
26
27
27
## Basic Usage
28
28
Original file line number Diff line number Diff line change
1
+ 3.6.1
2
+ #430 Allow all conversations to be listed
3
+ You can now iterate over all conversations for your app via:
4
+ intercom.conversations.all.each { |convo| ... }
5
+
6
+ 3.6.0
7
+ BREAKING CHANGE companies
8
+ We updated companies to be able to list users via company_id as well as id (#428 )
9
+ Note that this is a breaking change as we had to remove the old way of listing users via company.
10
+
11
+ Previously it was:
12
+ intercom.companies.users(company.id)
13
+
14
+ Now you get a list of users in a company by Intercom Company ID
15
+ intercom.companies.users_by_intercom_company_id(company.id)
16
+
17
+ Now you get a list of users in a company by external company_id
18
+ intercom.companies.users_by_company_id(company.company_id)
19
+
20
+ Rate limit handling
21
+ We also improved the way we handle rate limits in PR #409 which was related to issue #405
22
+
1
23
3.5.23
2
24
- New type of error (ResourceNotUniqueError). Thrown when trying to create a resource that already exists in Intercom
3
25
Original file line number Diff line number Diff line change 1
1
module Intercom #:nodoc:
2
- VERSION = "3.6.0 "
2
+ VERSION = "3.6.1 "
3
3
end
You can’t perform that action at this time.
0 commit comments