Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/commit-api-spec-change-log.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
echo "Running update changelog script"
changeLog="$1"
versionType="$2"
changeLog="${CHANGE_LOG}"
versionType="${VERSION_TYPE}"
echo "$changeLog"
node .github/scripts/update-change-log.js "$changeLog"
echo "Git configurations"
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,17 @@ jobs:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
- name: Update Changelog
run: |
bash .github/scripts/commit-api-spec-change-log.sh '${{ github.event.inputs.change-log }}' ${{ github.event.inputs.version-type }}
bash .github/scripts/commit-api-spec-change-log.sh
make install
node .github/scripts/update-cli-core-release-version.js
git add package.json package-lock.json
git commit -m "chore: update cli-core version"
git push origin HEAD
env:
CLI_CORE_TAG: ${{ github.event.inputs.tag-name }}
CHANGE_LOG: ${{ github.event.inputs.change-log }}
VERSION_TYPE: ${{ github.event.inputs.version-type }}

release:
runs-on: ubuntu-latest
needs: [ update-api-definitions-changelog ]
Expand Down
65 changes: 65 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,68 @@
--------------------------
**Api**
- Change DependentPhoneNumber `capabilities` type `object` and `date_created`, `date_updated` to `date_time<rfc2822>`
- Updated the `Default` value from 0 to 1 in the Recordings Resource `channels` property

**Serverless**
- Update `ienum` type level in Logs api

**Verify**
- Update Channel list in Verify Attempst API
- Update `ienum` type for Conversion_Status in Verify Attempts API

**Twiml**
- Add `us2` to the list of supported values for the region attribute in the `<Conference>` TwiML noun.


--------------------------
**Api**
- Added several usage category enums to `usage_record` API

**Numbers**
- Update the porting documentation

**Verify**
- Update `ienum` type for Channels in Verify Attempts API


--------------------------
**Accounts**
- Changes to add date_of_consent param in Bulk Consent API

**Api**
- Change `friendly_name`, `date_created` and `date_updated` properties to type `string`.

**Twiml**
- Update twiml definition for `<ConversationRelay>` and `<Assistant>`


--------------------------
**Api**
- Add `response_key` for `Usage Triggers` fetch endpoint.

**Flex**
- Add Update Interaction API
- Adding `webhook_ttid` as optional parameter in Interactions API

**Serverless**
- Add node22 as a valid Build runtime
- Add node20 as a valid Build runtime

**Video**
- removed `transcribe_participants_on_connect` and `transcriptions_configuration` from the room resource **(breaking change)**
- Added `transcribe_participants_on_connect` and `transcriptions_configuration` to the room resource


--------------------------
**Library - Chore**
- [PR #131](https://github.com/twilio/twilio-oai/pull/131): Trigger cli core release. Thanks to [@sbansla](https://github.com/sbansla)!

**Library - Fix**
- [PR #130](https://github.com/twilio/twilio-oai/pull/130): added a commit to trigger cli-core release. Thanks to [@sbansla](https://github.com/sbansla)!

**Studio**
- Add documentation for parent_step_sid field in Step resource

## [5.23.1](https://github.com/twilio/twilio-cli/compare/5.23.0...5.23.1) (2025-03-28)


Expand Down
Loading
Loading