sendgrid-ruby 1.1.6 → 6.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.env_sample +1 -3
- data/.github/ISSUE_TEMPLATE/config.yml +10 -0
- data/.github/workflows/test-and-deploy.yml +120 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +5 -27
- data/.rubocop_todo.yml +127 -0
- data/CHANGELOG.md +417 -1
- data/CODE_OF_CONDUCT.md +73 -0
- data/CONTRIBUTING.md +202 -0
- data/Dockerfile +14 -0
- data/FIRST_TIMERS.md +79 -0
- data/Gemfile +4 -4
- data/ISSUE_TEMPLATE.md +30 -0
- data/LICENSE +21 -0
- data/Makefile +14 -0
- data/PULL_REQUEST_TEMPLATE.md +31 -0
- data/README.md +153 -229
- data/Rakefile +9 -3
- data/TROUBLESHOOTING.md +151 -0
- data/UPGRADE.md +5 -0
- data/USAGE.md +5144 -0
- data/config.ru +4 -0
- data/examples/accesssettings/accesssettings.rb +80 -0
- data/examples/alerts/alerts.rb +59 -0
- data/examples/apikeys/apikeys.rb +81 -0
- data/examples/asm/asm.rb +170 -0
- data/examples/browsers/browsers.rb +13 -0
- data/examples/campaigns/campaigns.rb +150 -0
- data/examples/categories/categories.rb +33 -0
- data/examples/clients/clients.rb +24 -0
- data/examples/contactdb/contactdb.rb +392 -0
- data/examples/devices/devices.rb +13 -0
- data/examples/emailactivity/emailactivity.rb +52 -0
- data/examples/geo/geo.rb +13 -0
- data/examples/helpers/eventwebhook/example.rb +16 -0
- data/examples/helpers/mail/example.rb +158 -0
- data/examples/helpers/settings/example.rb +23 -0
- data/examples/helpers/stats/example.rb +42 -0
- data/examples/ips/ips.rb +164 -0
- data/examples/mail/mail.rb +170 -0
- data/examples/mailboxproviders/mailboxproviders.rb +13 -0
- data/examples/mailsettings/mailsettings.rb +216 -0
- data/examples/partnersettings/partnersettings.rb +36 -0
- data/examples/scopes/scopes.rb +59 -0
- data/examples/senderauthentication/senderauthentication.rb +307 -0
- data/examples/senders/senders.rb +95 -0
- data/examples/stats/stats.rb +13 -0
- data/examples/subusers/subusers.rb +166 -0
- data/examples/suppression/suppression.rb +198 -0
- data/examples/templates/templates.rb +127 -0
- data/examples/trackingsettings/trackingsettings.rb +107 -0
- data/examples/user/user.rb +290 -0
- data/gemfiles/Sinatra_1.gemfile +6 -0
- data/gemfiles/Sinatra_2.gemfile +6 -0
- data/lib/rack/sendgrid_webhook_verification.rb +55 -0
- data/lib/sendgrid/base_interface.rb +40 -0
- data/lib/sendgrid/helpers/eventwebhook/eventwebhook.rb +50 -0
- data/lib/sendgrid/helpers/inbound/README.md +98 -0
- data/lib/sendgrid/helpers/inbound/app.rb +32 -0
- data/lib/sendgrid/helpers/inbound/config.yml +26 -0
- data/lib/sendgrid/helpers/inbound/public/index.html +10 -0
- data/lib/sendgrid/helpers/inbound/sample_data/default_data.txt +58 -0
- data/lib/sendgrid/helpers/inbound/sample_data/raw_data.txt +57 -0
- data/lib/sendgrid/helpers/inbound/sample_data/raw_data_with_attachments.txt +298 -0
- data/lib/sendgrid/helpers/inbound/send.rb +26 -0
- data/lib/sendgrid/helpers/ip_management/ip_management.rb +17 -0
- data/lib/sendgrid/helpers/mail/README.md +14 -0
- data/lib/sendgrid/helpers/mail/asm.rb +19 -0
- data/lib/sendgrid/helpers/mail/attachment.rb +55 -0
- data/lib/sendgrid/helpers/mail/bcc_settings.rb +19 -0
- data/lib/sendgrid/helpers/mail/bypass_list_management.rb +31 -0
- data/lib/sendgrid/helpers/mail/category.rb +18 -0
- data/lib/sendgrid/helpers/mail/click_tracking.rb +19 -0
- data/lib/sendgrid/helpers/mail/content.rb +19 -0
- data/lib/sendgrid/helpers/mail/custom_arg.rb +18 -0
- data/lib/sendgrid/helpers/mail/email.rb +32 -0
- data/lib/sendgrid/helpers/mail/footer.rb +21 -0
- data/lib/sendgrid/helpers/mail/ganalytics.rb +28 -0
- data/lib/sendgrid/helpers/mail/header.rb +18 -0
- data/lib/sendgrid/helpers/mail/mail.rb +122 -0
- data/lib/sendgrid/helpers/mail/mail_settings.rb +45 -0
- data/lib/sendgrid/helpers/mail/open_tracking.rb +19 -0
- data/lib/sendgrid/helpers/mail/personalization.rb +93 -0
- data/lib/sendgrid/helpers/mail/section.rb +18 -0
- data/lib/sendgrid/helpers/mail/spam_check.rb +21 -0
- data/lib/sendgrid/helpers/mail/subscription_tracking.rb +23 -0
- data/lib/sendgrid/helpers/mail/substitution.rb +18 -0
- data/lib/sendgrid/helpers/mail/tracking_settings.rb +39 -0
- data/lib/sendgrid/helpers/permissions/scope.rb +28 -0
- data/lib/sendgrid/helpers/permissions/scopes.yml +309 -0
- data/lib/sendgrid/helpers/settings/README.md +14 -0
- data/lib/sendgrid/helpers/settings/mail_settings_dto.rb +13 -0
- data/lib/sendgrid/helpers/settings/partner_settings_dto.rb +13 -0
- data/lib/sendgrid/helpers/settings/settings.rb +28 -0
- data/lib/sendgrid/helpers/settings/tracking_settings_dto.rb +22 -0
- data/lib/sendgrid/helpers/settings/user_settings_dto.rb +13 -0
- data/lib/sendgrid/helpers/stats/email_stats.rb +46 -0
- data/lib/sendgrid/helpers/stats/metrics.rb +33 -0
- data/lib/sendgrid/helpers/stats/stats_response.rb +29 -0
- data/lib/sendgrid/sendgrid.rb +21 -0
- data/lib/sendgrid/twilio_email.rb +21 -0
- data/lib/sendgrid/version.rb +1 -1
- data/lib/sendgrid-ruby.rb +32 -7
- data/mail_helper_v3.md +390 -0
- data/sendgrid-ruby.gemspec +16 -20
- data/spec/fixtures/event_webhook.rb +22 -0
- data/spec/rack/sendgrid_webhook_verification_spec.rb +142 -0
- data/spec/sendgrid/helpers/eventwebhook/eventwebhook_spec.rb +105 -0
- data/spec/sendgrid/helpers/ip_management/ip_management_spec.rb +12 -0
- data/spec/sendgrid/helpers/settings/mail_settings_dto_spec.rb +32 -0
- data/spec/sendgrid/helpers/settings/partner_settings_dto_spec.rb +24 -0
- data/spec/sendgrid/helpers/settings/settings_spec.rb +25 -0
- data/spec/sendgrid/helpers/settings/tracking_settings_dto_spec.rb +27 -0
- data/spec/sendgrid/helpers/settings/user_settings_dto_spec.rb +24 -0
- data/spec/sendgrid/helpers/stats/email_stats_spec.rb +111 -0
- data/spec/sendgrid/helpers/stats/metrics_spec.rb +45 -0
- data/spec/sendgrid/helpers/stats/stats_response_spec.rb +75 -0
- data/spec/sendgrid/sendgrid_spec.rb +11 -0
- data/spec/sendgrid/twilio_email_spec.rb +11 -0
- data/spec/spec_helper.rb +12 -1
- data/static/img/github-fork.png +0 -0
- data/static/img/github-sign-up.png +0 -0
- data/test/sendgrid/helpers/mail/test_attachment.rb +33 -0
- data/test/sendgrid/helpers/mail/test_category.rb +25 -0
- data/test/sendgrid/helpers/mail/test_email.rb +41 -0
- data/test/sendgrid/helpers/mail/test_mail.rb +260 -0
- data/test/sendgrid/helpers/mail/test_personalizations.rb +214 -0
- data/test/sendgrid/permissions/test_scopes.rb +36 -0
- data/test/sendgrid/test_sendgrid-ruby.rb +2729 -0
- data/twilio_sendgrid_logo.png +0 -0
- data/use-cases/README.md +17 -0
- data/use-cases/domain-authentication.md +5 -0
- data/use-cases/email-statistics.md +52 -0
- data/use-cases/legacy-templates.md +98 -0
- data/use-cases/personalizations.md +34 -0
- data/use-cases/sms.md +39 -0
- data/use-cases/transactional-templates.md +111 -0
- data/use-cases/twilio-email.md +13 -0
- data/use-cases/twilio-setup.md +54 -0
- metadata +187 -112
- data/.rspec +0 -2
- data/.travis.yml +0 -20
- data/FETCH_HEAD +0 -0
- data/Guardfile +0 -10
- data/LICENSE.txt +0 -22
- data/example.rb +0 -41
- data/lib/sendgrid/client.rb +0 -62
- data/lib/sendgrid/exceptions.rb +0 -7
- data/lib/sendgrid/mail.rb +0 -182
- data/lib/sendgrid/recipient.rb +0 -29
- data/lib/sendgrid/response.rb +0 -14
- data/lib/sendgrid/template.rb +0 -26
- data/lib/sendgrid/template_mailer.rb +0 -59
- data/spec/lib/sendgrid/client_spec.rb +0 -87
- data/spec/lib/sendgrid/mail_spec.rb +0 -151
- data/spec/lib/sendgrid/recipient_spec.rb +0 -91
- data/spec/lib/sendgrid/template_mailer_spec.rb +0 -86
- data/spec/lib/sendgrid/template_spec.rb +0 -61
- data/spec/lib/sendgrid_spec.rb +0 -7
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,422 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
[2022-03-09] Version 6.6.2
|
|
5
|
+
--------------------------
|
|
6
|
+
**Library - Chore**
|
|
7
|
+
- [PR #483](https://github.com/sendgrid/sendgrid-ruby/pull/483): push Datadog Release Metric upon deploy success. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
[2022-02-09] Version 6.6.1
|
|
11
|
+
--------------------------
|
|
12
|
+
**Library - Chore**
|
|
13
|
+
- [PR #482](https://github.com/sendgrid/sendgrid-ruby/pull/482): upgrade supported language versions. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
14
|
+
- [PR #480](https://github.com/sendgrid/sendgrid-ruby/pull/480): add gh release to workflow. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
|
|
15
|
+
- [PR #478](https://github.com/sendgrid/sendgrid-ruby/pull/478): migrate to gh actions. Thanks to [@beebzz](https://github.com/beebzz)!
|
|
16
|
+
|
|
17
|
+
**Library - Fix**
|
|
18
|
+
- [PR #479](https://github.com/sendgrid/sendgrid-ruby/pull/479): set version env var for tests. Thanks to [@beebzz](https://github.com/beebzz)!
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
[2021-11-03] Version 6.6.0
|
|
22
|
+
--------------------------
|
|
23
|
+
**Library - Feature**
|
|
24
|
+
- [PR #473](https://github.com/sendgrid/sendgrid-ruby/pull/473): update tests, use-cases, examples and implementation for From personalization. Thanks to [@beebzz](https://github.com/beebzz)!
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
[2021-10-18] Version 6.5.2
|
|
28
|
+
--------------------------
|
|
29
|
+
**Library - Docs**
|
|
30
|
+
- [PR #472](https://github.com/sendgrid/sendgrid-ruby/pull/472): improve signed webhook event validation docs. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
[2021-09-08] Version 6.5.1
|
|
34
|
+
--------------------------
|
|
35
|
+
**Library - Chore**
|
|
36
|
+
- [PR #470](https://github.com/sendgrid/sendgrid-ruby/pull/470): add support for ruby 3.0. Thanks to [@shwetha-manvinkurke](https://github.com/shwetha-manvinkurke)!
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
[2021-08-11] Version 6.5.0
|
|
40
|
+
--------------------------
|
|
41
|
+
**Library - Feature**
|
|
42
|
+
- [PR #466](https://github.com/sendgrid/sendgrid-ruby/pull/466): Add From address to personalization. Thanks to [@grin](https://github.com/grin)!
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
[2021-02-10] Version 6.4.0
|
|
46
|
+
--------------------------
|
|
47
|
+
**Library - Feature**
|
|
48
|
+
- [PR #455](https://github.com/sendgrid/sendgrid-ruby/pull/455): Add http_options as a param in the SendGrid::API's constructor. Thanks to [@hoangtuanictvn](https://github.com/hoangtuanictvn)!
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
[2021-01-27] Version 6.3.9
|
|
52
|
+
--------------------------
|
|
53
|
+
**Library - Fix**
|
|
54
|
+
- [PR #446](https://github.com/sendgrid/sendgrid-ruby/pull/446): Accurate duplicate checking when adding email to Personalizations. Thanks to [@mito5525](https://github.com/mito5525)!
|
|
55
|
+
- [PR #457](https://github.com/sendgrid/sendgrid-ruby/pull/457): email is required. Thanks to [@luk4s](https://github.com/luk4s)!
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
[2020-12-16] Version 6.3.8
|
|
59
|
+
--------------------------
|
|
60
|
+
**Library - Fix**
|
|
61
|
+
- [PR #448](https://github.com/sendgrid/sendgrid-ruby/pull/448): tests failing on rubocop rule. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
[2020-11-05] Version 6.3.7
|
|
65
|
+
--------------------------
|
|
66
|
+
**Library - Chore**
|
|
67
|
+
- [PR #447](https://github.com/sendgrid/sendgrid-ruby/pull/447): fix rubocop styling errors. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
[2020-10-14] Version 6.3.6
|
|
71
|
+
--------------------------
|
|
72
|
+
**Library - Fix**
|
|
73
|
+
- [PR #440](https://github.com/sendgrid/sendgrid-ruby/pull/440): reading position of a request body. Thanks to [@snaka](https://github.com/snaka)!
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
[2020-09-28] Version 6.3.5
|
|
77
|
+
--------------------------
|
|
78
|
+
**Library - Fix**
|
|
79
|
+
- [PR #437](https://github.com/sendgrid/sendgrid-ruby/pull/437): Raise error when adding duplicate email address in Personalizations. Thanks to [@Pranc1ngPegasus](https://github.com/Pranc1ngPegasus)!
|
|
80
|
+
|
|
81
|
+
**Library - Docs**
|
|
82
|
+
- [PR #322](https://github.com/sendgrid/sendgrid-ruby/pull/322): Update documentation for retrieving a list of all templates. Thanks to [@renshuki](https://github.com/renshuki)!
|
|
83
|
+
- [PR #332](https://github.com/sendgrid/sendgrid-ruby/pull/332): Add Email activity API Documentation. Thanks to [@dhoeric](https://github.com/dhoeric)!
|
|
84
|
+
|
|
85
|
+
**Library - Test**
|
|
86
|
+
- [PR #315](https://github.com/sendgrid/sendgrid-ruby/pull/315): Add rubocop check to CI. Thanks to [@dipil-saud](https://github.com/dipil-saud)!
|
|
87
|
+
|
|
88
|
+
**Library - Chore**
|
|
89
|
+
- [PR #339](https://github.com/sendgrid/sendgrid-ruby/pull/339): Added rubocop configs and changed source files with rubocop "offenses". Thanks to [@douglaslise](https://github.com/douglaslise)!
|
|
90
|
+
- [PR #338](https://github.com/sendgrid/sendgrid-ruby/pull/338): Refactor getters and setters to use ruby accessors. Thanks to [@douglaslise](https://github.com/douglaslise)!
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
[2020-08-19] Version 6.3.4
|
|
94
|
+
--------------------------
|
|
95
|
+
**Library - Docs**
|
|
96
|
+
- [PR #319](https://github.com/sendgrid/sendgrid-ruby/pull/319): Run all the *.md files through grammar.ly service and update accordingly. Thanks to [@Sarthakagarwal22](https://github.com/Sarthakagarwal22)!
|
|
97
|
+
- [PR #344](https://github.com/sendgrid/sendgrid-ruby/pull/344): Update example.rb. Thanks to [@kylearoberts](https://github.com/kylearoberts)!
|
|
98
|
+
|
|
99
|
+
**Library - Chore**
|
|
100
|
+
- [PR #432](https://github.com/sendgrid/sendgrid-ruby/pull/432): update GitHub branch references to use HEAD. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
[2020-07-22] Version 6.3.3
|
|
104
|
+
--------------------------
|
|
105
|
+
**Library - Chore**
|
|
106
|
+
- [PR #431](https://github.com/sendgrid/sendgrid-ruby/pull/431): migrate to new default sendgrid-oai branch. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
|
|
107
|
+
- [PR #366](https://github.com/sendgrid/sendgrid-ruby/pull/366): add Rubocop configuration file. Thanks to [@RolandBurrows](https://github.com/RolandBurrows)!
|
|
108
|
+
|
|
109
|
+
**Library - Test**
|
|
110
|
+
- [PR #429](https://github.com/sendgrid/sendgrid-ruby/pull/429): fix the license test and actually run the test scripts. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
111
|
+
|
|
112
|
+
**Library - Docs**
|
|
113
|
+
- [PR #273](https://github.com/sendgrid/sendgrid-ruby/pull/273): Create a Use Cases Directory and Associated Files. Thanks to [@alanunruh](https://github.com/alanunruh)!
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
[2020-07-08] Version 6.3.2
|
|
117
|
+
--------------------------
|
|
118
|
+
**Library - Test**
|
|
119
|
+
- [PR #368](https://github.com/sendgrid/sendgrid-ruby/pull/368): add Simplecov Local Enhancements. Thanks to [@RolandBurrows](https://github.com/RolandBurrows)!
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
[2020-06-25] Version 6.3.1
|
|
123
|
+
--------------------------
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
[2020-06-24] Version 6.3.0
|
|
127
|
+
--------------------------
|
|
128
|
+
**Library - Feature**
|
|
129
|
+
- [PR #428](https://github.com/sendgrid/sendgrid-ruby/pull/428): adds rack middleware to make request verification easier in rack apps. Thanks to [@philnash](https://github.com/philnash)!
|
|
130
|
+
- [PR #425](https://github.com/sendgrid/sendgrid-ruby/pull/425): verify signature from event webhook. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
|
|
131
|
+
|
|
132
|
+
**Library - Fix**
|
|
133
|
+
- [PR #427](https://github.com/sendgrid/sendgrid-ruby/pull/427): drop the starkbank dependency. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
[2020-05-13] Version 6.2.1
|
|
137
|
+
--------------------------
|
|
138
|
+
**Library - Fix**
|
|
139
|
+
- [PR #421](https://github.com/sendgrid/sendgrid-ruby/pull/421): migrate to common prism setup. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
[2020-04-29] Version 6.2.0
|
|
143
|
+
--------------------------
|
|
144
|
+
**Library - Feature**
|
|
145
|
+
- [PR #417](https://github.com/sendgrid/sendgrid-ruby/pull/417): add support for Twilio Email. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
[2020-04-15] Version 6.1.4
|
|
149
|
+
--------------------------
|
|
150
|
+
**Library - Fix**
|
|
151
|
+
- [PR #416](https://github.com/sendgrid/sendgrid-ruby/pull/416): correct the User-Agent casing. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
[2020-04-01] Version 6.1.3
|
|
155
|
+
--------------------------
|
|
156
|
+
**Library - Docs**
|
|
157
|
+
- [PR #414](https://github.com/sendgrid/sendgrid-ruby/pull/414): support verbiage for login issues. Thanks to [@adamchasetaylor](https://github.com/adamchasetaylor)!
|
|
158
|
+
|
|
159
|
+
**Library - Chore**
|
|
160
|
+
- [PR #413](https://github.com/sendgrid/sendgrid-ruby/pull/413): upgrade rake dev dependency. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
[2020-03-18] Version 6.1.2
|
|
164
|
+
--------------------------
|
|
165
|
+
**Library - Chore**
|
|
166
|
+
- [PR #337](https://github.com/sendgrid/sendgrid-ruby/pull/337): Remove unnecessary require statements. Thanks to [@moutten](https://github.com/moutten)!
|
|
167
|
+
- [PR #354](https://github.com/sendgrid/sendgrid-ruby/pull/354): Update Dockerfile ruby version. Thanks to [@Rovel](https://github.com/Rovel)!
|
|
168
|
+
|
|
169
|
+
**Library - Fix**
|
|
170
|
+
- [PR #412](https://github.com/sendgrid/sendgrid-ruby/pull/412): loosen the ruby_http_client version constraint. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
[2020-03-04] Version 6.1.1
|
|
174
|
+
--------------------------
|
|
175
|
+
**Library - Docs**
|
|
176
|
+
- [PR #375](https://github.com/sendgrid/sendgrid-ruby/pull/375): update bug template URL. Thanks to [@divyanshu-rawat](https://github.com/divyanshu-rawat)!
|
|
177
|
+
- [PR #385](https://github.com/sendgrid/sendgrid-ruby/pull/385): Remove announcements (the job posting is filled?). Thanks to [@deyton](https://github.com/deyton)!
|
|
178
|
+
|
|
179
|
+
**Library - Chore**
|
|
180
|
+
- [PR #409](https://github.com/sendgrid/sendgrid-ruby/pull/409): bump `bundler` version to 2.1.2. Thanks to [@chhhris](https://github.com/chhhris)!
|
|
181
|
+
- [PR #408](https://github.com/sendgrid/sendgrid-ruby/pull/408): add Ruby 2.7 to Travis. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
[2020-02-19] Version 6.1.0
|
|
185
|
+
--------------------------
|
|
186
|
+
**Library - Feature**
|
|
187
|
+
- [PR #405](https://github.com/sendgrid/sendgrid-ruby/pull/405): Use latest SendGrid HTTP Client. Thanks to [@saveav](https://github.com/saveav)!
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
[2020-01-22] Version 6.0.4
|
|
191
|
+
--------------------------
|
|
192
|
+
**Library - Fix**
|
|
193
|
+
- [PR #404](https://github.com/sendgrid/sendgrid-ruby/pull/404): add skip_cleanup flag to fix travis deploy. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
[2020-01-22] Version 6.0.3
|
|
197
|
+
--------------------------
|
|
198
|
+
**Library - Docs**
|
|
199
|
+
- [PR #402](https://github.com/sendgrid/sendgrid-ruby/pull/402): baseline all the templated markdown docs. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
[2020-01-08] Version 6.0.2
|
|
203
|
+
--------------------------
|
|
204
|
+
**Library - Fix**
|
|
205
|
+
- [PR #401](https://github.com/sendgrid/sendgrid-ruby/pull/401): Only try to deploy once to rubygems. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
[2020-01-03] Version 6.0.1
|
|
209
|
+
--------------------------
|
|
210
|
+
**Library - Chore**
|
|
211
|
+
- [PR #400](https://github.com/sendgrid/sendgrid-ruby/pull/400): Add auto-deploy to travis.yml. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
212
|
+
- [PR #399](https://github.com/sendgrid/sendgrid-ruby/pull/399): Add testing to Makefile. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
213
|
+
- [PR #396](https://github.com/sendgrid/sendgrid-ruby/pull/396): Adding Makefile to assist with automation. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
214
|
+
|
|
215
|
+
**Library - Fix**
|
|
216
|
+
- [PR #321](https://github.com/sendgrid/sendgrid-ruby/pull/321): TROUBLESHOOTING.md broken link fix. Thanks to [@arshadkazmi42](https://github.com/arshadkazmi42)!
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
[2019-06-04] Version 6.0.0
|
|
220
|
+
--------------------------
|
|
221
|
+
### BREAKING CHANGE
|
|
222
|
+
- [PR #284](https://github.com/sendgrid/sendgrid-ruby/pull/284): The sinatra gem is no longer specified as a dependency of this gem. If you would like to use the inbound processing, please follow the [upgrade guide](UPGRADE.md). Big thanks to [@jjb](https://github.com/jjb) for the PR!
|
|
223
|
+
|
|
224
|
+
### Added
|
|
225
|
+
- [PR #271](https://github.com/sendgrid/sendgrid-ruby/pull/271): Add ability to impersonate a subuser. Big thanks to [@danilospa](https://github.com/danilospa) for the PR!
|
|
226
|
+
- [PR #278](https://github.com/sendgrid/sendgrid-ruby/pull/278): Make SendGrid permissions management easy. Big thanks to [@sony-mathew](https://github.com/sony-mathew) for the PR!
|
|
227
|
+
- [PR #343](https://github.com/sendgrid/sendgrid-ruby/pull/343) and [PR #345](https://github.com/sendgrid/sendgrid-ruby/pull/345): Update README.md with examples for dynamic templates and corrections to the old legacy template example. Big thanks to [@kylearoberts](https://github.com/kylearoberts) for the PR!
|
|
228
|
+
- [PR #216](https://github.com/sendgrid/sendgrid-ruby/pull/216): Get unassigned IPs example. Big thanks to [@cristianossd](https://github.com/cristianossd) for the PR!
|
|
229
|
+
- [PR #231](https://github.com/sendgrid/sendgrid-ruby/pull/231): Add support for IO objects set as Attachment content. Big thanks to [@awj](https://github.com/awj) for the PR!
|
|
230
|
+
- [PR #232](https://github.com/sendgrid/sendgrid-ruby/pull/232): Add method to check email content for secret keys. Big thanks to [@jaredsilver](https://github.com/jaredsilver) for the PR!
|
|
231
|
+
- [PR #236](https://github.com/sendgrid/sendgrid-ruby/pull/236): Add an IpManagement helper. Big thanks to [@brokenthumbs](https://github.com/brokenthumbs) for the PR!
|
|
232
|
+
- [PR #264](https://github.com/sendgrid/sendgrid-ruby/pull/264): Add Email Statistics helper example. Big thanks to [@jeremyjung](https://github.com/jeremyjung) for the PR!
|
|
233
|
+
- [PR #246](https://github.com/sendgrid/sendgrid-ruby/pull/246): Modified Mail Class calling examples with SendGrid::Mail. Big thanks to [@rohan-techfreak](https://github.com/rohan-techfreak) for the PR!
|
|
234
|
+
- [PR #268](https://github.com/sendgrid/sendgrid-ruby/pull/268): Added Code Review to CONTRIBUTING.md. Big thanks to [@mptap](https://github.com/mptap) for the PR!
|
|
235
|
+
- [PR #276](https://github.com/sendgrid/sendgrid-ruby/pull/276): Codebase Improvement: Use attr_accessor instead of getters and setters. Big thanks to [@rahul26goyal](https://github.com/rahul26goyal) for the PR!
|
|
236
|
+
- [PR #365](https://github.com/sendgrid/sendgrid-ruby/pull/365): Add our Developer Experience Engineer career opportunity to the README. Big thanks to [@mptap](https://github.com/mptap) for the PR!
|
|
237
|
+
|
|
238
|
+
### Fixes
|
|
239
|
+
- [PR #262](https://github.com/sendgrid/sendgrid-ruby/pull/262): Fix CONTRIBUTING.md formatting. Big thanks to [@thepriefy](https://github.com/thepriefy) for the PR!
|
|
240
|
+
- [PR #277](https://github.com/sendgrid/sendgrid-ruby/pull/277): Fix travis warning. Big thanks to [@rahul26goyal](https://github.com/rahul26goyal) for the PR!
|
|
241
|
+
- [PR #303](https://github.com/sendgrid/sendgrid-ruby/pull/303): Update readme tags and fix minor test failures. Big thanks to [@af4ro](https://github.com/af4ro) for the PR!
|
|
242
|
+
- [PR #370](https://github.com/sendgrid/sendgrid-ruby/pull/370): Remove references to "Whitelabel". Big thanks to [@crweiner](https://github.com/crweiner) for the PR!
|
|
243
|
+
- [PR #383](https://github.com/sendgrid/sendgrid-ruby/pull/383): Correct endpoint for single spam report requests. Big thanks to [@bermannoah](https://github.com/bermannoah) for the PR!
|
|
244
|
+
|
|
245
|
+
## [5.3.0] - 2018-10-12 ##
|
|
246
|
+
### Added
|
|
247
|
+
- [PR #300](https://github.com/sendgrid/sendgrid-ruby/pull/300): Support for Dynamic Templates. Big thanks to [@nedcampion](https://github.com/nedcampion) for the PR!
|
|
248
|
+
- [PR #178](https://github.com/sendgrid/sendgrid-ruby/pull/178): Convert key/value arguments to CustomArgs to strings. Big thanks to [@sitaramshelke](https://github.com/sitaramshelke) for the PR!
|
|
249
|
+
- [PR #258](https://github.com/sendgrid/sendgrid-ruby/pull/258): Added unittest to check for specific repo files. Big thanks to [@mptap](https://github.com/mptap) for the PR!
|
|
250
|
+
- [PR #255](https://github.com/sendgrid/sendgrid-ruby/pull/255): Add a unittest to check the license.md file date range. Big thanks to [@prashuchaudhary](https://github.com/prashuchaudhary) for the PR!
|
|
251
|
+
- [PR #181](https://github.com/sendgrid/sendgrid-ruby/pull/181): Add Docker. Big thanks to [@shrivara](https://github.com/shrivara) for the PR!
|
|
252
|
+
- [PR #248](https://github.com/sendgrid/sendgrid-ruby/pull/248): Added .codeclimate.yml. Big thanks to [@proton](https://github.com/proton) for the PR!
|
|
253
|
+
- [PR #260](https://github.com/sendgrid/sendgrid-ruby/pull/260): Update ruby-http-client dependency to support v3.3.0. Big thanks to [@mptap](https://github.com/mptap) for the PR!
|
|
254
|
+
- [PR #304](https://github.com/sendgrid/sendgrid-ruby/pull/304): Readability update for documentation. Big thanks to [@af4ro](https://github.com/af4ro) for the PR!
|
|
255
|
+
- [PR #306](https://github.com/sendgrid/sendgrid-ruby/pull/306): Update example to work in Rails console. Big thanks to [@RogerPodacter](https://github.com/RogerPodacter) for the PR!
|
|
256
|
+
|
|
257
|
+
### Fixes
|
|
258
|
+
- [PR #252](https://github.com/sendgrid/sendgrid-ruby/pull/252): Update LICENSE, set correct year. Big thanks to [@pushkyn](https://github.com/pushkyn) for the PR!
|
|
259
|
+
- [PR #257](https://github.com/sendgrid/sendgrid-ruby/pull/257): README.md typo fix. Big thanks to [@shucon](https://github.com/shucon) for the PR!
|
|
260
|
+
|
|
261
|
+
## [5.2.0] - 2017-10-30 ##
|
|
262
|
+
### Added
|
|
263
|
+
- PR #234: Helpers for email statistics - global, category, subuser
|
|
264
|
+
- Thanks to [Awin Abi](https://github.com/awinabi) for the pull request!
|
|
265
|
+
|
|
266
|
+
## [5.1.0] - 2017-9-1 ##
|
|
267
|
+
### Added
|
|
268
|
+
- #173: Update ruby-http-client dependency
|
|
269
|
+
- [#12](https://github.com/sendgrid/ruby-http-client/pull/12) Add a helper that returns the response body as a hash via the `parsed_body` method in the `Response` object.
|
|
270
|
+
- Thanks to [Diego Camargo](https://github.com/belfazt) for the pull request!
|
|
271
|
+
|
|
272
|
+
## [5.0.0] - 2017-05-27
|
|
273
|
+
### BREAKING CHANGE
|
|
274
|
+
- #108 Fix unexpected `Mail` `#categories`, `#categories=` behavior
|
|
275
|
+
- Fixed Issue #95 Refactor Mail Helper Array Assignments
|
|
276
|
+
- `personalization.to` becomes `personalization.add_to()`
|
|
277
|
+
- `personalization.cc` becomes `personalization.add_cc()`
|
|
278
|
+
- `personalization.bcc` becomes `personalization.add_bcc()`
|
|
279
|
+
- `personalization.headers` becomes `personalization.add_header()`
|
|
280
|
+
- `personalization.substitutions` becomes `personalization.add_substitution()`
|
|
281
|
+
- `personalization.custom_args` becomes `personalization.add_custom_arg()`
|
|
282
|
+
- `mail.personalizations` becomes `mail.add_personalization()`
|
|
283
|
+
- `mail.contents` becomes `mail.add_content()`
|
|
284
|
+
- `mail.attachments` becomes `mail.add_attachment()`
|
|
285
|
+
- `mail.sections` becomes `mail.add_section()`
|
|
286
|
+
- `mail.headers` becomes `mail.add_header()`
|
|
287
|
+
- `mail.categories` becomes `mail.add_category()`
|
|
288
|
+
- `mail.custom_args` becomes `mail.custom_args()`
|
|
289
|
+
- For a full example of usage, please [see here](examples/helpers/mail/example.rb#L21).
|
|
290
|
+
|
|
291
|
+
## [4.3.3] - 2017-5-2
|
|
292
|
+
### Update
|
|
293
|
+
- #157: Specify required ruby version as '>= 2.2'
|
|
294
|
+
- This library does not support [Ruby 2.1 or below](https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/).
|
|
295
|
+
- Thanks to [Ryunosuke Sato](https://github.com/tricknotes) for the pull request!
|
|
296
|
+
|
|
297
|
+
## [4.3.2] - 2017-5-1 ##
|
|
298
|
+
### Fixes
|
|
299
|
+
- #161: Fixed problematic Sinatra dependency
|
|
300
|
+
- Brings back Rails 4 compatibility (and Rack 1.x applications, in general), also removes release candidate version constraint (both broken in #160). Moreover, ensures that tests are run against two major Sinatra versions, which should protect from compatibility issues in the future, somewhat. Related issue: #159.
|
|
301
|
+
- Thanks to [Sebastian Skałacki](https://github.com/skalee) for the pull request!
|
|
302
|
+
|
|
303
|
+
## [4.3.1] - 2017-4-12 ##
|
|
304
|
+
### Fixes
|
|
305
|
+
- #160: Updated sinatra version to 2.0
|
|
306
|
+
- Fixes bundler dependency issues with rails >5.0 and rack 2.0. Solves #159
|
|
307
|
+
- Thanks to [gkats](https://github.com/gkats) for the pull request!
|
|
308
|
+
|
|
309
|
+
## [4.3.0] - 2017-4-12 ##
|
|
310
|
+
### Added
|
|
311
|
+
- #70: Adds an account settings management helper object
|
|
312
|
+
- See the [helper README](lib/sendgrid/helpers/settings) for details
|
|
313
|
+
- Thanks to [Kyle Kern](https://github.com/kernkw) for the pull request!
|
|
314
|
+
|
|
315
|
+
## [4.2.1] - 2017-4-10 ##
|
|
316
|
+
### Fixed
|
|
317
|
+
- #112: Fixes version ambiguity in gemspec
|
|
318
|
+
- Thanks to [Chris McKnight](https://github.com/cmckni3) for the pull request!
|
|
319
|
+
|
|
320
|
+
## [4.2.0] - 2017-4-10 ##
|
|
321
|
+
### Added
|
|
322
|
+
- #148: Set api_key to an empty string
|
|
323
|
+
- This makes creating an API key for a SendGrid sub-user who does not have an API key easier. See #146 for details
|
|
324
|
+
- Thanks to [Adam Beck](https://github.com/Gwash3189) for the pull request!
|
|
325
|
+
|
|
326
|
+
## [4.1.1] - 2017-4-6 ##
|
|
327
|
+
### Fixed
|
|
328
|
+
- #115 #134: Fix typos in initialize methods
|
|
329
|
+
- Thanks to [Ben Jackson](https://github.com/benjackson84) for the pull request!
|
|
330
|
+
|
|
331
|
+
## [4.1.0] - 2017-4-6 ##
|
|
332
|
+
### Add
|
|
333
|
+
- #144: Add [Inbound Email Parse Webhook](https://sendgrid.com/docs/API_Reference/Webhooks/inbound_email.html) support
|
|
334
|
+
- Thanks to [Wataru Sato](https://github.com/awwa) for the pull request!
|
|
335
|
+
|
|
336
|
+
## [4.0.8] - 2017-2-17 ##
|
|
337
|
+
### Add
|
|
338
|
+
- Solves #147: Add User Agent string
|
|
339
|
+
|
|
340
|
+
## [4.0.7] - 2017-1-25 ##
|
|
341
|
+
### Fixes
|
|
342
|
+
- [Pull Request #7](https://github.com/sendgrid/ruby-http-client/pull/7)
|
|
343
|
+
- Fixes [issue #6](https://github.com/sendgrid/ruby-http-client/issues/6): TLS certificates not verified
|
|
344
|
+
- Thanks to [Koen Rouwhorst](https://github.com/koenrh) for the pull request!
|
|
345
|
+
|
|
346
|
+
## [4.0.6] - 2016-10-18 ##
|
|
347
|
+
### Added
|
|
348
|
+
- Pull #113: Fix Travis CI Prism functionality for non-SendGrid contributors, update deprecated File.exists
|
|
349
|
+
|
|
350
|
+
## [4.0.5] - 2016-10-17 ##
|
|
351
|
+
### Added
|
|
352
|
+
- Pull #110, fixed Issue #109
|
|
353
|
+
- Automates StopLight.io Prism mock server locally & on Travis CI
|
|
354
|
+
- Thanks to [KY](https://github.com/tkbky) for the pull request!
|
|
355
|
+
|
|
356
|
+
## [4.0.4] - 2016-09-15 ##
|
|
357
|
+
### Fixed
|
|
358
|
+
- Pull #72: [remove unnecessary ruby 2.2 requirement](https://github.com/sendgrid/sendgrid-ruby/pull/72)
|
|
359
|
+
- Thanks to [Billy Watson](https://github.com/billywatson) for the pull request!
|
|
360
|
+
|
|
361
|
+
## [4.0.3] - 2016-08-24 ##
|
|
362
|
+
### Added
|
|
363
|
+
- Table of Contents in the README
|
|
364
|
+
- Added a [USE_CASES.md](USE_CASES.md) section, with the first use case example for transactional templates
|
|
365
|
+
|
|
366
|
+
## [4.0.2] - 2016-07-26 ##
|
|
367
|
+
### Fixed
|
|
368
|
+
- Example and USAGE DELETE calls were missing example payloads
|
|
369
|
+
|
|
370
|
+
## [4.0.1] - 2016-07-25 ##
|
|
371
|
+
### Added
|
|
372
|
+
- [Troubleshooting](TROUBLESHOOTING.md) section
|
|
373
|
+
|
|
374
|
+
## [4.0.0] - 2016-07-23 ##
|
|
375
|
+
### BREAKING CHANGE
|
|
376
|
+
- Update dependency to [ruby-http-client](https://github.com/sendgrid/ruby-http-client/releases/tag/v3.0.0)
|
|
377
|
+
- Response headers now return a hash instead of a string
|
|
378
|
+
- Thanks to [Chris France](https://github.com/hipsterelitist) for the pull request!
|
|
379
|
+
|
|
380
|
+
## [3.0.7] - 2016-07-20 ##
|
|
381
|
+
### Added
|
|
382
|
+
- README updates
|
|
383
|
+
- Update introduction blurb to include information regarding our forward path
|
|
384
|
+
- Update the v3 /mail/send example to include non-helper usage
|
|
385
|
+
- Update the generic v3 example to include non-fluent interface usage
|
|
386
|
+
|
|
387
|
+
## [3.0.6] - 2016-07-05 ##
|
|
388
|
+
### Added
|
|
389
|
+
- Update docs, unit tests and examples to include Sender ID
|
|
390
|
+
|
|
391
|
+
## [3.0.5] - 2016-07-05 ##
|
|
392
|
+
### Added
|
|
393
|
+
- Accept: application/json header per https://sendgrid.com/docs/API_Reference/Web_API_v3/How_To_Use_The_Web_API_v3/requests.html
|
|
394
|
+
|
|
395
|
+
### Updated
|
|
396
|
+
- Content based on our updated [Swagger/OAI doc](https://github.com/sendgrid/sendgrid-oai)
|
|
397
|
+
|
|
398
|
+
## [3.0.4] - 2016-06-15 ##
|
|
399
|
+
### Added
|
|
400
|
+
- Updated dependency on ruby-http-client
|
|
401
|
+
|
|
402
|
+
## [3.0.3] - 2016-06-15 ##
|
|
403
|
+
### Fixing
|
|
404
|
+
- Import structure
|
|
405
|
+
|
|
406
|
+
## [3.0.2] - 2016-06-15 ##
|
|
407
|
+
### Added
|
|
408
|
+
- Relative import for mail/helper
|
|
409
|
+
|
|
410
|
+
## [3.0.1] - 2016-06-15 ##
|
|
411
|
+
### Added
|
|
412
|
+
- Add mail/send helper to the $LOAD_PATH, updated http client dependency
|
|
413
|
+
|
|
414
|
+
## [3.0.0] - 2016-06-13 ##
|
|
415
|
+
### Added
|
|
416
|
+
- Breaking change to support the v3 Web API
|
|
417
|
+
- New HTTP client
|
|
418
|
+
- v3 Mail Send helper
|
|
419
|
+
|
|
4
420
|
## [1.1.6] - 2015-11-26 ##
|
|
5
421
|
## Added
|
|
6
422
|
Support for cc_name and bcc_name via [#31](https://github.com/sendgrid/sendgrid-ruby/pull/31)
|
|
@@ -24,4 +440,4 @@ Inline content support
|
|
|
24
440
|
|
|
25
441
|
## [1.0.3] - 2015-10-01 ##
|
|
26
442
|
### Fixed
|
|
27
|
-
Payload 'to' attribute fix for smtpapi
|
|
443
|
+
Payload 'to' attribute fix for smtpapi
|
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
- Using welcoming and inclusive language
|
|
18
|
+
- Being respectful of differing viewpoints and experiences
|
|
19
|
+
- Gracefully accepting constructive criticism
|
|
20
|
+
- Focusing on what is best for the community
|
|
21
|
+
- Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
- Public or private harassment
|
|
29
|
+
- Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at open-source@twilio.com. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
+
|
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|