-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #213 from RDPerera/master
Remove GraalVM check & update templates
- Loading branch information
Showing
4 changed files
with
53 additions
and
55 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,12 @@ | ||
# Description | ||
## Purpose | ||
|
||
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
Fixes: | ||
|
||
Fixes # (issue) | ||
## Examples | ||
|
||
Related Pull Requests (remove if not relevant) | ||
- Pull request 1 | ||
- Pull request 2 | ||
|
||
One line release note: | ||
- One line describing the feature/improvement/fix made by this PR | ||
|
||
## Type of change | ||
|
||
Please delete options that are not relevant. | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
# How Has This Been Tested? | ||
|
||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration | ||
|
||
- [ ] Test A | ||
- [ ] Test B | ||
|
||
**Test Configuration**: | ||
* Ballerina Version: | ||
* Operating System: | ||
|
||
# Checklist: | ||
|
||
### Security checks | ||
- [ ] Followed secure coding standards in http://wso2.com/technical-reports/wso2-secure-engineering-guidelines? | ||
- [ ] Confirmed that this PR doesn't commit any keys, passwords, tokens, usernames, or other secrets? | ||
## Checklist | ||
- [ ] Linked to an issue | ||
- [ ] Updated the specification | ||
- [ ] Updated the changelog | ||
- [ ] Added tests | ||
- [ ] Checked native-image compatibility |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: GraalVM Check | ||
|
||
on: | ||
schedule: | ||
- cron: "30 18 * * *" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Changelog | ||
This file contains all the notable changes done to the Ballerina Twilio Connector through the releases. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
- Following functionalities are added to the Twilio connector. | ||
- Create a new Twilio subaccount | ||
- Retrieve a collection of accounts linked to the requester's account | ||
- Modify account properties | ||
- Handle addresses: create, list, delete, fetch, update | ||
- Manage applications: create, retrieve list, delete, fetch, update properties | ||
- Work with authorized connect apps: fetch instance, retrieve list | ||
- List available phone number countries and types | ||
- Fetch account balance | ||
- Manage outgoing calls and recordings | ||
- Handle conferences: fetch instance, update, retrieve list | ||
- Manage connect apps: fetch instance, update, delete, retrieve list | ||
- Handle incoming phone numbers: update, fetch, delete, list, purchase | ||
- Manage add-ons, keys, and media resources | ||
- Handle messages: send, retrieve list, delete, fetch, update, create feedback | ||
- Manage signing keys and notifications | ||
- Handle outgoing caller IDs: fetch instance, update, delete, retrieve list | ||
- Manage participants in a conference: fetch instance, update properties, kick, create, retrieve list | ||
- Handle payments and queues: create session, update, remove empty queue, retrieve list | ||
- Manage recordings: fetch instance, delete, retrieve list | ||
- Handle add-on results and payloads: fetch instance, delete, retrieve list | ||
- Manage recording transcriptions: fetch, delete, list | ||
- Handle phone number SafeList: add, check, remove | ||
- Manage short codes: fetch instance, update, retrieve list | ||
- Manage credential list mappings and IP Access Control Lists | ||
- Handle domains: create, fetch instance, update attributes, delete | ||
- Manage usage records and triggers: fetch instance, update, delete, create, retrieve list | ||
- Manage user-defined messages: create, subscribe, delete subscription | ||
|
||
### Changed | ||
- getAccountDetails() changed to fetchAccount() | ||
- sendSms() changed to createMessage() | ||
- getMessage() changed to fetchMessage() | ||
- sendWhatsAppMessage() available under createMessage() with channel type as whatsapp | ||
- makeVoiceCall() changed to createCall() |