Skip to content

Commit 8040bfd

Browse files
authored
Adding new version 3.6.1 (#432)
1 parent d4dbf8d commit 8040bfd

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This version of the gem is compatible with `Ruby 2.1` and above.
2222

2323
Using bundler:
2424

25-
gem 'intercom', '~> 3.6.0'
25+
gem 'intercom', '~> 3.6.1'
2626

2727
## Basic Usage
2828

changes.txt

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
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+
123
3.5.23
224
- New type of error (ResourceNotUniqueError). Thrown when trying to create a resource that already exists in Intercom
325

lib/intercom/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Intercom #:nodoc:
2-
VERSION = "3.6.0"
2+
VERSION = "3.6.1"
33
end

0 commit comments

Comments
 (0)