Skip to content

Commit ca30225

Browse files
authored
chore: update go versions (#265)
* chore: update go versions * chore: fix cluster test * chore: add README.md * chore: edit typo
1 parent 5e95fa8 commit ca30225

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
20-
go: [ '1.15', '1.16', '1.17', '1.18', '1.19' ]
20+
go: [ '1.18.10', '1.19.13', '1.20', '1.21', '1.22', '1.23', '1.24' ]
2121
steps:
2222
- name: Setup Go environment
2323
uses: actions/setup-go@v3

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ twilio-go changelog
1414
**Twiml**
1515
- Convert Twiml Attribute `speechModel` of type enum to string **(breaking change)**
1616

17+
**DataType Changes**
18+
- Some attributes in multiple APIs has changed from Dictionary to Object **(breaking change)**. Please refer to the [API documentation](https://github.com/twilio/twilio-oai]) for more details.
19+
1720

1821
[2025-02-20] Version 1.23.13
1922
----------------------------

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ The Go library documentation can be found [here][libdocs].
2424

2525
This library supports the following Go implementations:
2626

27-
- Go 1.15
28-
- Go 1.16
29-
- Go 1.17
3027
- Go 1.18
3128
- Go 1.19
3229
- Go 1.20
30+
- Go 1.21
31+
- Go 1.22
32+
- Go 1.23
33+
- Go 1.24
3334

3435
## Installation
3536

cluster_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ func TestListParams(t *testing.T) {
9797
assert.Nil(t, err)
9898
assert.NotNil(t, sink)
9999

100-
types := []interface{}{
101-
map[string]interface{}{
100+
types := []map[string]interface{}{
101+
{
102102
"type": "com.twilio.messaging.message.delivered",
103103
},
104-
map[string]interface{}{
104+
{
105105
"type": "com.twilio.messaging.message.sent",
106106
},
107107
}

0 commit comments

Comments
 (0)