Skip to content

Commit f8f8236

Browse files
authored
Merge pull request #192 from plivo/SUP-2852
Sup 2852
2 parents 3220a74 + 9eb504e commit f8f8236

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.github/workflows/unitTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: [ 2.7, 3.5, 3.6, 3.7, 3.8, 3.9 ]
15-
os: [ubuntu-latest, macos-latest, windows-latest]
15+
os: [macos-latest]
1616
runs-on: ${{ matrix.os }}
1717

1818
steps:

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# Change Log
2+
3+
## [4.22.2](https://github.com/plivo/plivo-python/tree/v4.22.2) (2022-02-25)
4+
**Feature - conference_recording**
5+
- Add callback_url parameter to [Record Conference API](https://www.plivo.com/docs/voice/api/conference/record-conference#start-recording-a-conference)
6+
27
## [4.22.1](https://github.com/plivo/plivo-python/tree/v4.22.1) (2022-02-10)
3-
**Features - EndpointUpdated**
8+
**Feature - EndpointUpdated**
49
- neglecting endpoint_id in to_param_dict function
510

611
## [4.22.0](https://github.com/plivo/plivo-python/tree/v4.22.0) (2022-01-27)
7-
**Features - MPCStartCallRecording**
12+
**Feature - MPCStartCallRecording**
813
- parameter change from statusCallback to recordingCallback
914

1015
## [4.21.0](https://github.com/plivo/plivo-python/tree/v4.21.0) (2021-12-14)
11-
**Features - Voice**
16+
**Feature - Voice**
1217
- Routing SDK traffic through Akamai endpoints for all the [Voice APIs](https://www.plivo.com/docs/voice/api/overview/)
1318

1419
## [4.20.0](https://github.com/plivo/plivo-python/tree/v4.20.0) (2021-12-02)

plivo/resources/conferences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def record(self,
165165
callback_url=None,
166166
callback_method=None):
167167
return self.client.request('POST',
168-
('Conference', conference_name, 'Record'), is_voice_request=True)
168+
('Conference', conference_name, 'Record'), to_param_dict(self.record, locals()), is_voice_request=True)
169169

170170
def record_stop(self, conference_name):
171171
return self.client.request('DELETE',

plivo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '4.22.1'
2+
__version__ = '4.22.2'
33

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='plivo',
13-
version='4.22.1',
13+
version='4.22.2',
1414
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
1515
long_description=long_description,
1616
url='https://github.com/plivo/plivo-python',

0 commit comments

Comments
 (0)