File: History.txt

package info (click to toggle)
ruby-mail-gpg 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 316 kB
  • ctags: 150
  • sloc: ruby: 2,014; makefile: 3
file content (120 lines) | stat: -rw-r--r-- 2,757 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
== 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