Skip to content

Commit c70df73

Browse files
committed
Move changelog back into repository
1 parent 33a7d3a commit c70df73

File tree

1 file changed

+110
-0
lines changed

1 file changed

+110
-0
lines changed

CHANGELOG.md

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Releases
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## 3.0.3 - 2018-07-24
8+
9+
**Fixed**
10+
11+
- Transforming an `Email` object to JSON would cause the encrpyted attributes to stay encrypted. This is now fixed.
12+
13+
## 3.0.2 - 2018-03-22
14+
15+
**Changed**
16+
17+
- Updated README.md
18+
19+
**Added**
20+
21+
- Support for process time limit
22+
23+
---
24+
25+
## 3.0.1 - 2018-03-18
26+
27+
**Changed**
28+
29+
- Updated README.md
30+
- Deprecated `email:retry`, please use `email:resend`
31+
32+
---
33+
34+
## 3.0.0 - 2017-12-22
35+
36+
**Added**
37+
38+
- Support for a custom sender per e-mail.
39+
40+
**Upgrade from 2.x to 3.x**
41+
42+
3.0.0 added support for a custom sender per e-mail. To update please run the following command:
43+
44+
```bash
45+
php artisan migrate
46+
```
47+
48+
---
49+
50+
## 2.0.0 - 2017-12-14
51+
52+
**Added**
53+
54+
- Support for multiple recipients, cc and bcc addresses.
55+
- Support for mailables (*)
56+
- Support for attachments
57+
- New method `later`
58+
59+
*= Only works for Laravel versions 5.5 and up because 5.5 finally introduced a method to read the mailable body.
60+
61+
**Fixed**
62+
- Bug causing failed e-mails not to be resent
63+
64+
**Upgrade from 1.x to 2.x**
65+
Because 2.0.0 introduced support for attachments, the database needs to be updated. Simply run the following two commands after updating your dependencies and running composer update:
66+
67+
```bash
68+
php artisan migrate
69+
```
70+
71+
---
72+
73+
## 1.1.3 - 2017-12-07
74+
75+
**Fixed**
76+
77+
- Created a small backwards compatibility fix for Laravel versions 5.4 and below.
78+
79+
---
80+
81+
## 1.1.2 - 2017-11-18
82+
83+
**Fixed**
84+
85+
- Incorrect auto discovery namespace for Laravel 5.5
86+
87+
---
88+
89+
## 1.1.1 - 2017-08-02
90+
91+
**Changed**
92+
93+
- Only dispatch `before.send` event during unit tests
94+
95+
---
96+
97+
## 1.1.0 - 2017-07-01
98+
99+
**Added**
100+
101+
- PHPUnit tests
102+
- Support for CC and BCC
103+
104+
---
105+
106+
## 1.0.0 - 2017-06-29
107+
108+
**Added**
109+
110+
- Initial release of the package

0 commit comments

Comments
 (0)