Releases: 2600hz/kazoo
4.3.82
Changes for 4.3.82
Changes to branch 4.3
after version 4.3.81
.
Commits
-
Sleep less during testing - by James Aimonetti
-
PISTON-837: Added transcription to metadata & updated docs - by Dustin Brett
Transcriptions are being saved outside of the metadata key which is what is returned when information about a voicemail is pulled from crossbar. I had originally considered changing the way transcriptions are saved to move them into metadata but decided on the approach of adding it to the return data upon request so that this will work with pre-existing transcriptions. I’ve updated the crossbar api doc also because now this data will be returned when applicable.
4.3.81
Changes for 4.3.81
Changes to branch 4.3
after version 4.3.80
.
Commits
-
HELP-12897: properly paginate directory's users - by James Aimonetti
Prior, the view only indexed by the directory IDs on a user's
doc. When
paginate=false
was included on a fetch of the directory,the directory/users_listing view did not interact nicely with the
internal pagination protections added.
The view arguments used
[{key, DirectoryId}, {limit, 50}]
; the first page wouldbe returned and since the next
startkey
would beDirectoryId
again, crossbar_doc gets stuck in a loop as there was no way to
"increment" the startkey.
Instead, the view now emits
[DirectoryId, UserId]
to allowdifferentiation between rows, and view options are now passed in as
[{startkey, [DirectoryId]}]
. This plays much nicer with paginationregardless of whether pagination has been disabled or not.
4.3.80
Changes for 4.3.80
Changes to branch 4.3
after version 4.3.79
.
Commits
-
Ensure trunkstore uses account doc's realm - by James Aimonetti
Connectivity docs should not include an auth_realm as it leads users
to confusion thinking they can set an realm separate from the
account's - this is not the case!
Ensure connectivity docs have the account's realm (just in case) and
ensure Trunkstore sets the account's realm when processing calls.
4.3.79
Changes for 4.3.79
Changes to branch 4.3
after version 4.3.78
.
Commits
- update metaflows schema - by James Aimonetti
- backport mask/unmask arity 2 - by James Aimonetti
4.3.78
Changes for 4.3.78
Changes to branch 4.3
after version 4.3.77
.
Commits
-
Added configuration parameters to control cluster alerts - by Karl Anderson
Create the following parameters on the crossbar.alerts document in system config, each is a boolean value that when false suppresses that alert category or specific type:
-
check_financials
-
check_low_balance
-
check_payment_token
-
check_port_requests
-
check_port_action_required
-
check_port_suspended
-
check_system_alerts
For example, setting "check_financials" to false will disable both low balance and payment token alerts. To disable low balance alerts only, leave "check_financials" and set "check_low_balance" to false.
-
-
Update config.yml - by bitbashing
-
bump 2020 - by James Aimonetti
4.3.77
Changes for 4.3.77
Changes to branch 4.3
after version 4.3.76
.
Commits
-
pusher unique pm apps - 4.3 - by lazedo
- applications with same id for fcm/apns
would only work for the first to be triggered
because fcm/apns register the apps with {local', Name}
-
HELP-12140: Reseller ID should be found on service plan - by James Aimonetti
-
replace google with firebase - 4.3 - by lazedo
-
Configurable timeout on Pivot requests - by James Aimonetti
It can be advantageous to timeout the Pivot request and allow the
callflow to progress to the failure branch.
Validated client-supplied URLs
-
deprecate gcm - 4.3 - by lazedo
- google deprecated gcm in favour of firebase
-
fcm/gcm expect a string as key - by lazedo
4.3.76
Changes for 4.3.76
Changes to branch 4.3
after version 4.3.75
.
Commits
-
change mime types url to github - by lazedo
apache.org sometimes goes down when we need it.
this is backport from master
-
add a list of device types to process messages - by lazedo
-
encode message_id in routing key - by lazedo
-
set account_id in the payload before processing it - by lazedo
4.3.75
Changes for 4.3.75
Changes to branch 4.3
after version 4.3.74
.
Commits
-
endpoint id/type accessor - by lazedo
-
kapi_sms on-net/off-net renamed to onnet/offnet - by lazedo
inbound
was already fixed
-
fix return in distribute_event - by lazedo
in master the return is correct, 4.3 expects
State
-
Allow webhooks to be sent using PUT - by James Aimonetti
-
PISTON-979: fix migrating templates from system into accounts - by Daniel Finke
Backport of #6189
4.3.74
Changes for 4.3.74
Changes to branch 4.3
after version 4.3.73
.
Commits
- use single knm feature module - by lazedo
4.3.73
Changes for 4.3.73
Changes to branch 4.3
after version 4.3.72
.
Commits
- export register_views/0 - by lazedo