File: History.txt

package info (click to toggle)
ruby-mail-gpg 0.4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 328 kB
  • sloc: ruby: 2,465; makefile: 6
file content (176 lines) | stat: -rw-r--r-- 4,566 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
== 0.4.5 2026-01-20

* fix HKP client for Ruby 3.0+ (replaced deprecated URI.escape/decode)
* change default keyserver from defunct pool.sks-keyservers.net to
  keyserver.ubuntu.com
* fix HKP client redirect handling

== 0.4.4 2020-07-30

* preserve Content-ID header of signed parts (relevant for inline images in
  HTML mails)

== 0.4.3 2020-02-12

* fix bad signatures of some mails with Mail 2.7.1 by always enforcing
  base64 encoding for signed content

== 0.4.2 2019-09-02

* do not die on invalid content-transfer encodings when checking if a message
  is inline-signed or encrypted

== 0.4.1 2019-07-08

* do not modify argument hash #61
* fix tests on travis and run them with both gpg < 2.0 and >= 2.1
* gpg 2.0.x apparently has no way of preseeding passphrases and thus will only
  ever work with passphraseless keys.

== 0.4.0 2018-05-19

* [MIGHT BREAK THINGS] changes to the way keys are looked up #55
  Previously, keys that were not explicitly mentioned but already present in
  the key chain for one of the recipient addresses would have been used
  silently. This is no longer the case, if the :keys option is given, all
  necessary keys have to be specified as either key data, key id, fingerprint
  or GPGME::Key object.
* fix error when calling encrypt with actual key objects #60

== 0.3.3 2018-04-01

* fix broken GpgmeHelper#keys_for_data #59

== 0.3.2 2018-03-30

* do not attempt to decrypt inline-encrypted HTML parts #52
* fixes possible double decoding of quoted printable bodies #57
* fixes a bug which occured in some environments that led to encryption with
  all available public keys (#31, #55)


== 0.3.1 2017-04-13

* fixes a bug with signature verification that only surfaced in environments
  where ActiveSupport isn't loaded. Thanks @mashedcode for pointing this out.

== 0.3.0 2016-12-27

* [MIGHT BREAK THINGS] All mail headers will preserved now, if you want to
  suppress headers you'll have to remove them yourself from now on.
* Strip "headers" when stripping inline signature (patch by @duckdalbe)
* support hkps URI scheme
* bugfix for verifying the "encapsulated" variant of pgp/mime (patch by @duckdalbe)

== 0.2.9 2016-11-15

* add missing require to test case (patch by @ge-fa)

== 0.2.8 2016-10-26

* fix tests with gnupg2 (patch by @duckdalbe)

== 0.2.7 2016-09-28

* fix replying to message objects #35
* remove usage of deprecated alias_method_chain
* fix tests with Rails >= 4
* run tests with Rails 5, bump versions in travis config

== 0.2.6 2015-10-20

* fix handling of inline encrypted messages

== 0.2.5 2015-09-30

* allow overriding of encrypted attachment name (patch by @chrislewis60)

== 0.2.4 2015-04-20

* preserve List-Id and List-Unsubscribe headers
* run tests on travis under Ruby 2.2.2

== 0.2.3 2015-02-18

* inline pgp detection now ignores signature.asc attachments

== 0.2.2 2014-09-03

* add option to import missing keys for signature verification
* better Hkp error handling

== 0.2.1 2014-07-23

* keep original message id if set

== 0.2.0 2014-07-16

* implement signature verification for inline signed messages
* make signature verification more consistent with decryption by providing
  Mail::Message#verify which strips raw signature data and initializes verify_result member.
* add Mail::Message#signatures as an easy way to retrieve all signatures on a Message

== 0.1.7 2014-06-03

* preserve References: header

== 0.1.6 2014-05-30

* preserve names in mail headers (i.e. Jane Doe <user@host.com>)

== 0.1.5 2014-05-28

* signing refactoring so the signed part only contains the necessary headers
* preserve Auto-Submitted header

== 0.1.4 2014-05-26

* preserve return path headers and message id
* fix signature verification

== 0.1.3 2014-02-17

* Signature checking implemented, thanks to Morten Andersen

== 0.1.2 2013-11-19

* bugfix release

== 0.1.1 2013-11-14

* bugfix release

== 0.1.0 2013-11-06

* decryption support (thanks to Morten Andersen)
* sign-only operation (thanks to FewKinG)
* keyserver url lookup (thanks to FewKinG)

== 0.0.6 2013-08-28

* bugfix: only encrypt to specified keys if :keys option is present

== 0.0.5 2013-08-28

* add some docs to the Hkp client
* also add convenience method to fetch and import keys

== 0.0.4 2013-08-27

* better ActionMailer integration

== 0.0.3 2013-08-20

* better ActionMailer integration
* 'gpg encrypt: true' instead of 'gpg true'
* test coverage

== 0.0.2 2013-08-19

* ActionMailer integration
* add gpg method to Mail::Message
* support importing of public keys

== 0.0.1 2013-08-18

* Initial release