@@ -12,96 +12,107 @@ Bugfixes:
12
12
13
13
Other improvements:
14
14
15
+ ## [ v6.0.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v6.0.0 ) - 2021-MONTH-DAY
16
+
17
+ Breaking changes:
18
+ - Added support for PureScript 0.14 and dropped support for all previous versions (#31 )
19
+
20
+ New features:
21
+ - Added ` onUpgrade ` to allow users to listen to and respond to HTTP upgrades (#33 )
22
+
23
+ Other improvements:
24
+ - Migrated CI to GitHub Actions, updated installation instructions to use Spago, and migrated from ` jshint ` to ` eslint ` (#30 )
25
+ - Added a changelog and pull request template (#34 )
26
+
27
+ ## [ v5.0.2] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v5.0.2 ) - 2019-07-24
28
+
29
+ - Relaxed upper bounds on ` node-buffer `
30
+
15
31
## [ v5.0.1] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v5.0.1 ) - 2019-05-28
16
32
17
- * Relax upper bounds on ` foreign-object ` and ` options `
33
+ - Relaxed upper bounds on ` foreign-object ` and ` options `
18
34
19
35
## [ v5.0.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v5.0.0 ) - 2018-05-29
20
36
21
- Updates for 0.12
37
+ - Updated for 0.12
22
38
23
39
## [ v4.2.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v4.2.0 ) - 2017-11-06
24
40
25
- Add ` Node.HTTP.close ` (@lpil )
41
+ - Added ` Node.HTTP.close ` (@lpil )
26
42
27
43
## [ v4.1.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v4.1.0 ) - 2017-08-02
28
44
29
- Bindings to node's ` https ` module (@cprussin ).
45
+ - Added bindings to node's ` https ` module (@cprussin ).
30
46
31
47
## [ v4.0.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v4.0.0 ) - 2017-04-05
32
48
33
- Updates for 0.11 compiler (@anilanar )
49
+ - Updated for 0.11 compiler (@anilanar )
34
50
35
51
## [ v3.0.1] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v3.0.1 ) - 2016-11-10
36
52
37
- Fix an accidentally exported function (` listenImpl ` ).
53
+ - Fixed an accidentally exported function (` listenImpl ` ).
38
54
39
55
## [ v3.0.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v3.0.0 ) - 2016-11-10
40
56
41
57
- Allow specifying a hostname and backlog when calling ` Node.HTTP.listen `
42
- - Add ` listenSocket ` .
58
+ - Added ` listenSocket ` .
43
59
44
60
## [ v2.0.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v2.0.0 ) - 2016-10-22
45
61
46
62
- Updated dependencies
47
63
48
64
## [ v1.2.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v1.2.0 ) - 2016-09-06
49
65
50
- Add IP address family option (@kika )
66
+ - Added IP address family option (@kika )
51
67
52
68
## [ v1.1.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v1.1.0 ) - 2016-08-14
53
69
54
- Separate headers and cookies to avoid type errors (@kika )
70
+ - Separated headers and cookies to avoid type errors (@kika )
55
71
56
72
## [ v1.0.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v1.0.0 ) - 2016-06-10
57
73
58
- Updates for 1.0/0.9.1
74
+ - Updated for 1.0/0.9.1
59
75
60
76
## [ v0.4.1] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.4.1 ) - 2016-05-02
61
77
62
- Fix license in bower.json for Pursuit
78
+ - Fixed license in bower.json for Pursuit
63
79
64
80
## [ v0.4.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.4.0 ) - 2016-05-02
65
81
66
82
- Bump dependency on ` purescript-node-streams `
67
83
68
84
## [ v0.3.1] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.3.1 ) - 2016-02-28
69
85
70
- Support HTTPS (@hdgarrood )
86
+ - Added support for HTTPS (@hdgarrood )
71
87
72
88
## [ v0.2.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.2.0 ) - 2016-01-12
73
89
74
- Bump ` streams ` dependency (@hdgarrood )
90
+ - Bumped ` streams ` dependency (@hdgarrood )
75
91
76
92
## [ v0.1.7] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.7 ) - 2015-11-12
77
93
78
- Add ` setTimeout `
79
-
80
- ## [ v0.1.6] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.6 ) - 2015-09-29
81
-
82
-
94
+ - Added ` setTimeout `
83
95
84
96
## [ v0.1.5] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.5 ) - 2015-09-29
85
97
86
- Fix type of ` headers ` .
98
+ - Fixed type of ` headers ` .
87
99
88
100
## [ v0.1.4] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.4 ) - 2015-09-28
89
101
90
- Add ` requestFromURI ` .
102
+ - Added ` requestFromURI ` .
91
103
92
104
## [ v0.1.3] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.3 ) - 2015-09-28
93
105
94
- Add client module.
106
+ - Added client module.
95
107
96
108
## [ v0.1.2] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.2 ) - 2015-09-23
97
109
98
- Fix ` bower.json `
110
+ - Fixed ` bower.json `
99
111
100
112
## [ v0.1.1] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.1 ) - 2015-09-23
101
113
102
- Pursuit
114
+ - Deployed to Pursuit
103
115
104
116
## [ v0.1.0] ( https://github.com/purescript-node/purescript-node-http/releases/tag/v0.1.0 ) - 2015-09-23
105
117
106
- Initial release
107
-
118
+ - Initial release
0 commit comments