@feathersjs/transport-commons 5.0.0-pre.3 → 5.0.0-pre.31

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +187 -200
  2. package/LICENSE +1 -1
  3. package/README.md +2 -2
  4. package/client.d.ts +1 -1
  5. package/lib/channels/channel/base.js +2 -2
  6. package/lib/channels/channel/base.js.map +1 -1
  7. package/lib/channels/channel/combined.js +2 -2
  8. package/lib/channels/channel/combined.js.map +1 -1
  9. package/lib/channels/index.d.ts +12 -10
  10. package/lib/channels/index.js +15 -10
  11. package/lib/channels/index.js.map +1 -1
  12. package/lib/channels/mixins.d.ts +3 -3
  13. package/lib/channels/mixins.js +3 -3
  14. package/lib/channels/mixins.js.map +1 -1
  15. package/lib/client.d.ts +2 -2
  16. package/lib/client.js +10 -12
  17. package/lib/client.js.map +1 -1
  18. package/lib/http.d.ts +35 -0
  19. package/lib/http.js +77 -0
  20. package/lib/http.js.map +1 -0
  21. package/lib/index.d.ts +3 -2
  22. package/lib/index.js +27 -1
  23. package/lib/index.js.map +1 -1
  24. package/lib/routing/index.d.ts +9 -4
  25. package/lib/routing/index.js +26 -16
  26. package/lib/routing/index.js.map +1 -1
  27. package/lib/routing/router.d.ts +8 -3
  28. package/lib/routing/router.js +64 -22
  29. package/lib/routing/router.js.map +1 -1
  30. package/lib/socket/index.js +10 -10
  31. package/lib/socket/index.js.map +1 -1
  32. package/lib/socket/utils.js +43 -53
  33. package/lib/socket/utils.js.map +1 -1
  34. package/package.json +19 -15
  35. package/src/channels/channel/base.ts +28 -28
  36. package/src/channels/channel/combined.ts +31 -31
  37. package/src/channels/index.ts +67 -61
  38. package/src/channels/mixins.ts +49 -46
  39. package/src/client.ts +70 -70
  40. package/src/http.ts +95 -0
  41. package/src/index.ts +5 -4
  42. package/src/routing/index.ts +45 -28
  43. package/src/routing/router.ts +91 -42
  44. package/src/socket/index.ts +44 -44
  45. package/src/socket/utils.ts +64 -57
package/CHANGELOG.md CHANGED
@@ -3,470 +3,426 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
7
-
6
+ # [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
8
7
 
9
- ### Bug Fixes
8
+ ### Features
10
9
 
11
- * **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
10
+ - **cli:** Generate full client test suite and improve typed client ([#2788](https://github.com/feathersjs/feathers/issues/2788)) ([57119b6](https://github.com/feathersjs/feathers/commit/57119b6bb2797f7297cf054268a248c093ecd538))
12
11
 
12
+ # [5.0.0-pre.30](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.29...v5.0.0-pre.30) (2022-10-07)
13
13
 
14
14
  ### Features
15
15
 
16
- * **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
16
+ - **core:** Allow to unregister services at runtime ([#2756](https://github.com/feathersjs/feathers/issues/2756)) ([d16601f](https://github.com/feathersjs/feathers/commit/d16601f2277dca5357866ffdefba2a611f6dc7fa))
17
17
 
18
+ # [5.0.0-pre.29](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.28...v5.0.0-pre.29) (2022-09-16)
18
19
 
20
+ **Note:** Version bump only for package @feathersjs/transport-commons
19
21
 
22
+ # [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
20
23
 
24
+ ### Bug Fixes
21
25
 
22
- # [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
26
+ - **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
23
27
 
24
- **Note:** Version bump only for package @feathersjs/transport-commons
28
+ # [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
25
29
 
30
+ ### Bug Fixes
26
31
 
32
+ - **socketio-client:** Make Socket.io client event target compatible ([#2686](https://github.com/feathersjs/feathers/issues/2686)) ([716c49a](https://github.com/feathersjs/feathers/commit/716c49a270e4be5e5276192092c292f72ffcfa19))
27
33
 
34
+ # [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
28
35
 
36
+ **Note:** Version bump only for package @feathersjs/transport-commons
29
37
 
30
- # [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
38
+ # [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
31
39
 
32
40
  **Note:** Version bump only for package @feathersjs/transport-commons
33
41
 
42
+ # [5.0.0-pre.24](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.23...v5.0.0-pre.24) (2022-06-21)
34
43
 
44
+ **Note:** Version bump only for package @feathersjs/transport-commons
35
45
 
46
+ # [5.0.0-pre.23](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.22...v5.0.0-pre.23) (2022-06-06)
36
47
 
48
+ ### Features
37
49
 
38
- # [5.0.0-beta.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
50
+ - **client:** Improve client side custom method support ([#2654](https://github.com/feathersjs/feathers/issues/2654)) ([c138acf](https://github.com/feathersjs/feathers/commit/c138acf50affbe6b66177d084d3c7a3e9220f09f))
39
51
 
52
+ # [5.0.0-pre.22](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.21...v5.0.0-pre.22) (2022-05-24)
40
53
 
41
- ### Bug Fixes
54
+ **Note:** Version bump only for package @feathersjs/transport-commons
42
55
 
43
- * **transport-commons:** Do not error when adding an undefined connection to a channel ([#2268](https://github.com/feathersjs/feathers/issues/2268)) ([28114c4](https://github.com/feathersjs/feathers/commit/28114c495d6564868bb3ffbf619bf80b774dce4b))
44
- * Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
45
- * **socketio-client:** Fix client transport-commons reference ([#2164](https://github.com/feathersjs/feathers/issues/2164)) ([3a42c54](https://github.com/feathersjs/feathers/commit/3a42c544058456b19c7e21827226541bfa6ad621))
56
+ # [5.0.0-pre.21](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.20...v5.0.0-pre.21) (2022-05-23)
46
57
 
58
+ **Note:** Version bump only for package @feathersjs/transport-commons
47
59
 
48
- ### Features
60
+ # [5.0.0-pre.20](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.19...v5.0.0-pre.20) (2022-05-04)
61
+
62
+ ### Bug Fixes
49
63
 
50
- * **core:** Public custom service methods ([#2270](https://github.com/feathersjs/feathers/issues/2270)) ([e65abfb](https://github.com/feathersjs/feathers/commit/e65abfb5388df6c19a11c565cf1076a29f32668d))
51
- * Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
52
- * Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
53
- * **transport-commons:** New built-in high performance radix router ([#2177](https://github.com/feathersjs/feathers/issues/2177)) ([6d18065](https://github.com/feathersjs/feathers/commit/6d180651b4eb40289ecea3df3575f207aa6c5d1f))
64
+ - **dependencies:** Lock monorepo package version numbers ([#2623](https://github.com/feathersjs/feathers/issues/2623)) ([5640c10](https://github.com/feathersjs/feathers/commit/5640c1020cc139994e695d658c08bad3494db507))
54
65
 
66
+ # [5.0.0-pre.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)
55
67
 
68
+ ### Bug Fixes
56
69
 
70
+ - **transport-commons:** Ensure socket queries are always plain objects ([#2597](https://github.com/feathersjs/feathers/issues/2597)) ([97313e1](https://github.com/feathersjs/feathers/commit/97313e121cfee4199f10012e95b8507557aa507e))
57
71
 
72
+ # [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)
58
73
 
59
- # [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
74
+ ### Features
60
75
 
76
+ - **transport-commons:** add `context.http.response` ([#2524](https://github.com/feathersjs/feathers/issues/2524)) ([5bc9d44](https://github.com/feathersjs/feathers/commit/5bc9d447043c2e2b742c73ed28ecf3b3264dd9e5))
61
77
 
78
+ # [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
62
79
 
63
- # [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
80
+ **Note:** Version bump only for package @feathersjs/transport-commons
64
81
 
82
+ # [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
65
83
 
66
84
  ### Features
67
85
 
68
- * **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
69
- * **transport-commons:** Remove legacy message format and unnecessary client timeouts ([#1939](https://github.com/feathersjs/feathers/issues/1939)) ([5538881](https://github.com/feathersjs/feathers/commit/5538881a08bc130de42c5984055729d8336f8615))
86
+ - **express, koa:** make transports similar ([#2486](https://github.com/feathersjs/feathers/issues/2486)) ([26aa937](https://github.com/feathersjs/feathers/commit/26aa937c114fb8596dfefc599b1f53cead69c159))
70
87
 
88
+ # [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
71
89
 
72
- ### BREAKING CHANGES
90
+ ### Bug Fixes
73
91
 
74
- * **transport-commons:** Removes the old message format and client service timeout
92
+ - **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
75
93
 
94
+ ### Features
76
95
 
96
+ - **core:** add `context.http` and move `statusCode` there ([#2496](https://github.com/feathersjs/feathers/issues/2496)) ([b701bf7](https://github.com/feathersjs/feathers/commit/b701bf77fb83048aa1dffa492b3d77dd53f7b72b))
97
+ - **transport-commons:** Ability to register routes with custom params ([#2482](https://github.com/feathersjs/feathers/issues/2482)) ([497990a](https://github.com/feathersjs/feathers/commit/497990ae4a980e5a52a1f0f932db12cd0e6e254a))
77
98
 
99
+ # [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
78
100
 
101
+ **Note:** Version bump only for package @feathersjs/transport-commons
79
102
 
80
- # [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
103
+ # [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
81
104
 
105
+ **Note:** Version bump only for package @feathersjs/transport-commons
82
106
 
83
- ### Features
107
+ # [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
84
108
 
85
- * **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
86
- * **transport-commons:** Remove legacy message format and unnecessary client timeouts ([#1939](https://github.com/feathersjs/feathers/issues/1939)) ([5538881](https://github.com/feathersjs/feathers/commit/5538881a08bc130de42c5984055729d8336f8615))
109
+ **Note:** Version bump only for package @feathersjs/transport-commons
87
110
 
111
+ # [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
88
112
 
89
- ### BREAKING CHANGES
113
+ **Note:** Version bump only for package @feathersjs/transport-commons
90
114
 
91
- * **transport-commons:** Removes the old message format and client service timeout
115
+ # [5.0.0-pre.10](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.9...v5.0.0-pre.10) (2021-09-19)
92
116
 
117
+ **Note:** Version bump only for package @feathersjs/transport-commons
93
118
 
119
+ # [5.0.0-pre.9](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.8...v5.0.0-pre.9) (2021-08-09)
94
120
 
95
- ## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
121
+ **Note:** Version bump only for package @feathersjs/transport-commons
96
122
 
123
+ # [5.0.0-pre.8](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.7...v5.0.0-pre.8) (2021-08-09)
97
124
 
98
- ### Bug Fixes
125
+ **Note:** Version bump only for package @feathersjs/transport-commons
99
126
 
100
- * **socketio-client:** Throw an error and show a warning if someone tries to use socket.io-client v3 ([#2135](https://github.com/feathersjs/feathers/issues/2135)) ([cc3521c](https://github.com/feathersjs/feathers/commit/cc3521c935a1cbd690e29b7057998e3898f282db))
127
+ # [5.0.0-pre.7](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.6...v5.0.0-pre.7) (2021-08-09)
101
128
 
129
+ **Note:** Version bump only for package @feathersjs/transport-commons
102
130
 
131
+ # [5.0.0-pre.6](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.5...v5.0.0-pre.6) (2021-08-08)
103
132
 
133
+ **Note:** Version bump only for package @feathersjs/transport-commons
104
134
 
135
+ # [5.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.4...v5.0.0-pre.5) (2021-06-23)
105
136
 
106
- ## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
137
+ ### Bug Fixes
107
138
 
108
- **Note:** Version bump only for package @feathersjs/transport-commons
139
+ - **koa:** Use extended query parser for compatibility ([#2397](https://github.com/feathersjs/feathers/issues/2397)) ([b2944ba](https://github.com/feathersjs/feathers/commit/b2944bac3ec6d5ecc80dc518cd4e58093692db74))
109
140
 
141
+ # [5.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.3...v5.0.0-pre.4) (2021-05-13)
110
142
 
143
+ ### Bug Fixes
111
144
 
145
+ - **transport-commons:** Fix route placeholder registration and improve radix router performance ([#2336](https://github.com/feathersjs/feathers/issues/2336)) ([4d84dfd](https://github.com/feathersjs/feathers/commit/4d84dfd092ce0510312e975d5cd57e04973fb311))
112
146
 
147
+ ### Features
113
148
 
114
- ## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
149
+ - **koa:** KoaJS transport adapter ([#2315](https://github.com/feathersjs/feathers/issues/2315)) ([2554b57](https://github.com/feathersjs/feathers/commit/2554b57cf05731df58feeba9c12faab18e442107))
115
150
 
116
- **Note:** Version bump only for package @feathersjs/transport-commons
151
+ # [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
117
152
 
153
+ ### Bug Fixes
118
154
 
155
+ - **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
119
156
 
157
+ ### Features
120
158
 
159
+ - **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
121
160
 
122
- ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
161
+ # [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
123
162
 
124
163
  **Note:** Version bump only for package @feathersjs/transport-commons
125
164
 
165
+ # [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
126
166
 
167
+ **Note:** Version bump only for package @feathersjs/transport-commons
127
168
 
169
+ # [5.0.0-beta.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
128
170
 
171
+ ### Bug Fixes
129
172
 
130
- ## [4.5.7](https://github.com/feathersjs/feathers/compare/v4.5.6...v4.5.7) (2020-07-24)
131
-
132
- **Note:** Version bump only for package @feathersjs/transport-commons
173
+ - **transport-commons:** Do not error when adding an undefined connection to a channel ([#2268](https://github.com/feathersjs/feathers/issues/2268)) ([28114c4](https://github.com/feathersjs/feathers/commit/28114c495d6564868bb3ffbf619bf80b774dce4b))
174
+ - Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
175
+ - **socketio-client:** Fix client transport-commons reference ([#2164](https://github.com/feathersjs/feathers/issues/2164)) ([3a42c54](https://github.com/feathersjs/feathers/commit/3a42c544058456b19c7e21827226541bfa6ad621))
133
176
 
177
+ ### Features
134
178
 
179
+ - **core:** Public custom service methods ([#2270](https://github.com/feathersjs/feathers/issues/2270)) ([e65abfb](https://github.com/feathersjs/feathers/commit/e65abfb5388df6c19a11c565cf1076a29f32668d))
180
+ - Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
181
+ - Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
182
+ - **transport-commons:** New built-in high performance radix router ([#2177](https://github.com/feathersjs/feathers/issues/2177)) ([6d18065](https://github.com/feathersjs/feathers/commit/6d180651b4eb40289ecea3df3575f207aa6c5d1f))
135
183
 
184
+ # [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
136
185
 
186
+ # [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
137
187
 
138
- ## [4.5.5](https://github.com/feathersjs/feathers/compare/v4.5.4...v4.5.5) (2020-07-11)
188
+ ### Features
139
189
 
140
- **Note:** Version bump only for package @feathersjs/transport-commons
190
+ - **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
191
+ - **transport-commons:** Remove legacy message format and unnecessary client timeouts ([#1939](https://github.com/feathersjs/feathers/issues/1939)) ([5538881](https://github.com/feathersjs/feathers/commit/5538881a08bc130de42c5984055729d8336f8615))
141
192
 
193
+ ### BREAKING CHANGES
142
194
 
195
+ - **transport-commons:** Removes the old message format and client service timeout
143
196
 
197
+ # [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)
144
198
 
199
+ ### Features
145
200
 
146
- ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)
201
+ - **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))
202
+ - **transport-commons:** Remove legacy message format and unnecessary client timeouts ([#1939](https://github.com/feathersjs/feathers/issues/1939)) ([5538881](https://github.com/feathersjs/feathers/commit/5538881a08bc130de42c5984055729d8336f8615))
147
203
 
148
- **Note:** Version bump only for package @feathersjs/transport-commons
204
+ ### BREAKING CHANGES
149
205
 
206
+ - **transport-commons:** Removes the old message format and client service timeout
150
207
 
208
+ ## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
151
209
 
210
+ ### Bug Fixes
152
211
 
212
+ - **socketio-client:** Throw an error and show a warning if someone tries to use socket.io-client v3 ([#2135](https://github.com/feathersjs/feathers/issues/2135)) ([cc3521c](https://github.com/feathersjs/feathers/commit/cc3521c935a1cbd690e29b7057998e3898f282db))
153
213
 
154
- ## [4.5.2](https://github.com/feathersjs/feathers/compare/v4.5.1...v4.5.2) (2020-03-04)
214
+ ## [4.5.10](https://github.com/feathersjs/feathers/compare/v4.5.9...v4.5.10) (2020-11-08)
155
215
 
156
216
  **Note:** Version bump only for package @feathersjs/transport-commons
157
217
 
218
+ ## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09)
158
219
 
220
+ **Note:** Version bump only for package @feathersjs/transport-commons
159
221
 
222
+ ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12)
160
223
 
224
+ **Note:** Version bump only for package @feathersjs/transport-commons
161
225
 
162
- ## [4.5.1](https://github.com/feathersjs/feathers/compare/v4.5.0...v4.5.1) (2020-01-24)
226
+ ## [4.5.7](https://github.com/feathersjs/feathers/compare/v4.5.6...v4.5.7) (2020-07-24)
163
227
 
164
228
  **Note:** Version bump only for package @feathersjs/transport-commons
165
229
 
230
+ ## [4.5.5](https://github.com/feathersjs/feathers/compare/v4.5.4...v4.5.5) (2020-07-11)
166
231
 
232
+ **Note:** Version bump only for package @feathersjs/transport-commons
167
233
 
234
+ ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)
168
235
 
236
+ **Note:** Version bump only for package @feathersjs/transport-commons
169
237
 
170
- # [4.5.0](https://github.com/feathersjs/feathers/compare/v4.4.3...v4.5.0) (2020-01-18)
238
+ ## [4.5.2](https://github.com/feathersjs/feathers/compare/v4.5.1...v4.5.2) (2020-03-04)
171
239
 
172
240
  **Note:** Version bump only for package @feathersjs/transport-commons
173
241
 
242
+ ## [4.5.1](https://github.com/feathersjs/feathers/compare/v4.5.0...v4.5.1) (2020-01-24)
174
243
 
244
+ **Note:** Version bump only for package @feathersjs/transport-commons
175
245
 
246
+ # [4.5.0](https://github.com/feathersjs/feathers/compare/v4.4.3...v4.5.0) (2020-01-18)
176
247
 
248
+ **Note:** Version bump only for package @feathersjs/transport-commons
177
249
 
178
250
  ## [4.4.3](https://github.com/feathersjs/feathers/compare/v4.4.1...v4.4.3) (2019-12-06)
179
251
 
180
252
  **Note:** Version bump only for package @feathersjs/transport-commons
181
253
 
182
-
183
-
184
-
185
-
186
254
  ## [4.4.1](https://github.com/feathersjs/feathers/compare/v4.4.0...v4.4.1) (2019-11-27)
187
255
 
188
-
189
256
  ### Bug Fixes
190
257
 
191
- * Gracefully handle errors in publishers ([#1710](https://github.com/feathersjs/feathers/issues/1710)) ([0616306](https://github.com/feathersjs/feathers/commit/061630696762e9dbf1dc4e738094992ba16989fc))
192
-
193
-
194
-
195
-
258
+ - Gracefully handle errors in publishers ([#1710](https://github.com/feathersjs/feathers/issues/1710)) ([0616306](https://github.com/feathersjs/feathers/commit/061630696762e9dbf1dc4e738094992ba16989fc))
196
259
 
197
260
  # [4.4.0](https://github.com/feathersjs/feathers/compare/v4.3.11...v4.4.0) (2019-11-27)
198
261
 
199
-
200
262
  ### Bug Fixes
201
263
 
202
- * **transport-commons:** Allow to properly chain SocketIo client.off ([#1706](https://github.com/feathersjs/feathers/issues/1706)) ([a4aecbc](https://github.com/feathersjs/feathers/commit/a4aecbcd3578c1cf4ecffb3a58fb6d26e15ee513))
203
-
204
-
205
-
206
-
264
+ - **transport-commons:** Allow to properly chain SocketIo client.off ([#1706](https://github.com/feathersjs/feathers/issues/1706)) ([a4aecbc](https://github.com/feathersjs/feathers/commit/a4aecbcd3578c1cf4ecffb3a58fb6d26e15ee513))
207
265
 
208
266
  ## [4.3.11](https://github.com/feathersjs/feathers/compare/v4.3.10...v4.3.11) (2019-11-11)
209
267
 
210
268
  **Note:** Version bump only for package @feathersjs/transport-commons
211
269
 
212
-
213
-
214
-
215
-
216
270
  ## [4.3.10](https://github.com/feathersjs/feathers/compare/v4.3.9...v4.3.10) (2019-10-26)
217
271
 
218
272
  **Note:** Version bump only for package @feathersjs/transport-commons
219
273
 
220
-
221
-
222
-
223
-
224
274
  ## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26)
225
275
 
226
276
  **Note:** Version bump only for package @feathersjs/transport-commons
227
277
 
228
-
229
-
230
-
231
-
232
278
  ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14)
233
279
 
234
280
  **Note:** Version bump only for package @feathersjs/transport-commons
235
281
 
236
-
237
-
238
-
239
-
240
282
  ## [4.3.4](https://github.com/feathersjs/feathers/compare/v4.3.3...v4.3.4) (2019-10-03)
241
283
 
242
284
  **Note:** Version bump only for package @feathersjs/transport-commons
243
285
 
244
-
245
-
246
-
247
-
248
286
  ## [4.3.3](https://github.com/feathersjs/feathers/compare/v4.3.2...v4.3.3) (2019-09-21)
249
287
 
250
288
  **Note:** Version bump only for package @feathersjs/transport-commons
251
289
 
252
-
253
-
254
-
255
-
256
290
  ## [4.3.2](https://github.com/feathersjs/feathers/compare/v4.3.1...v4.3.2) (2019-09-16)
257
291
 
258
292
  **Note:** Version bump only for package @feathersjs/transport-commons
259
293
 
260
-
261
-
262
-
263
-
264
294
  ## [4.3.1](https://github.com/feathersjs/feathers/compare/v4.3.0...v4.3.1) (2019-09-09)
265
295
 
266
-
267
296
  ### Bug Fixes
268
297
 
269
- * Fix regression in transport commons ([#1551](https://github.com/feathersjs/feathers/issues/1551)) ([ed9e934](https://github.com/feathersjs/feathers/commit/ed9e934))
270
-
271
-
272
-
273
-
298
+ - Fix regression in transport commons ([#1551](https://github.com/feathersjs/feathers/issues/1551)) ([ed9e934](https://github.com/feathersjs/feathers/commit/ed9e934))
274
299
 
275
300
  # [4.3.0](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.4...v4.3.0) (2019-08-27)
276
301
 
277
302
  **Note:** Version bump only for package @feathersjs/transport-commons
278
303
 
279
-
280
-
281
-
282
-
283
304
  # [4.3.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.3...v4.3.0-pre.4) (2019-08-22)
284
305
 
285
306
  **Note:** Version bump only for package @feathersjs/transport-commons
286
307
 
287
-
288
-
289
-
290
-
291
308
  # [4.3.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.2...v4.3.0-pre.3) (2019-08-19)
292
309
 
293
-
294
310
  ### Bug Fixes
295
311
 
296
- * Expire and remove authenticated real-time connections ([#1512](https://github.com/feathersjs/feathers/issues/1512)) ([2707c33](https://github.com/feathersjs/feathers/commit/2707c33))
297
- * Update all dependencies ([7d53a00](https://github.com/feathersjs/feathers/commit/7d53a00))
298
- * Use WeakMap to connect socket to connection ([#1509](https://github.com/feathersjs/feathers/issues/1509)) ([64807e3](https://github.com/feathersjs/feathers/commit/64807e3))
299
-
300
-
301
-
302
-
312
+ - Expire and remove authenticated real-time connections ([#1512](https://github.com/feathersjs/feathers/issues/1512)) ([2707c33](https://github.com/feathersjs/feathers/commit/2707c33))
313
+ - Update all dependencies ([7d53a00](https://github.com/feathersjs/feathers/commit/7d53a00))
314
+ - Use WeakMap to connect socket to connection ([#1509](https://github.com/feathersjs/feathers/issues/1509)) ([64807e3](https://github.com/feathersjs/feathers/commit/64807e3))
303
315
 
304
316
  # [4.3.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.3.0-pre.1...v4.3.0-pre.2) (2019-08-02)
305
317
 
306
-
307
318
  ### Bug Fixes
308
319
 
309
- * Add getEntityId to JWT strategy and fix legacy Socket authentication ([#1488](https://github.com/feathersjs/feathers/issues/1488)) ([9a3b324](https://github.com/feathersjs/feathers/commit/9a3b324))
310
- * Improve Params typing ([#1474](https://github.com/feathersjs/feathers/issues/1474)) ([54a3aa7](https://github.com/feathersjs/feathers/commit/54a3aa7))
311
-
312
-
313
-
314
-
320
+ - Add getEntityId to JWT strategy and fix legacy Socket authentication ([#1488](https://github.com/feathersjs/feathers/issues/1488)) ([9a3b324](https://github.com/feathersjs/feathers/commit/9a3b324))
321
+ - Improve Params typing ([#1474](https://github.com/feathersjs/feathers/issues/1474)) ([54a3aa7](https://github.com/feathersjs/feathers/commit/54a3aa7))
315
322
 
316
323
  # [4.3.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.5...v4.3.0-pre.1) (2019-07-11)
317
324
 
318
325
  **Note:** Version bump only for package @feathersjs/transport-commons
319
326
 
320
-
321
-
322
-
323
-
324
327
  # [4.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.4...v4.0.0-pre.5) (2019-07-10)
325
328
 
326
329
  **Note:** Version bump only for package @feathersjs/transport-commons
327
330
 
328
-
329
-
330
-
331
-
332
331
  # [4.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.3...v4.0.0-pre.4) (2019-07-05)
333
332
 
334
-
335
333
  ### Bug Fixes
336
334
 
337
- * Clean up hooks code ([#1407](https://github.com/feathersjs/feathers/issues/1407)) ([f25c88b](https://github.com/feathersjs/feathers/commit/f25c88b))
338
- * Improve transport-commons types ([#1396](https://github.com/feathersjs/feathers/issues/1396)) ([f9d8536](https://github.com/feathersjs/feathers/commit/f9d8536))
339
-
340
-
341
-
342
-
335
+ - Clean up hooks code ([#1407](https://github.com/feathersjs/feathers/issues/1407)) ([f25c88b](https://github.com/feathersjs/feathers/commit/f25c88b))
336
+ - Improve transport-commons types ([#1396](https://github.com/feathersjs/feathers/issues/1396)) ([f9d8536](https://github.com/feathersjs/feathers/commit/f9d8536))
343
337
 
344
338
  # [4.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.2...v4.0.0-pre.3) (2019-06-01)
345
339
 
346
-
347
340
  ### Bug Fixes
348
341
 
349
- * Make oAuth paths more consistent and improve authentication client ([#1377](https://github.com/feathersjs/feathers/issues/1377)) ([adb2543](https://github.com/feathersjs/feathers/commit/adb2543))
350
- * Update dependencies and fix tests ([#1373](https://github.com/feathersjs/feathers/issues/1373)) ([d743a7f](https://github.com/feathersjs/feathers/commit/d743a7f))
351
-
352
-
353
-
354
-
342
+ - Make oAuth paths more consistent and improve authentication client ([#1377](https://github.com/feathersjs/feathers/issues/1377)) ([adb2543](https://github.com/feathersjs/feathers/commit/adb2543))
343
+ - Update dependencies and fix tests ([#1373](https://github.com/feathersjs/feathers/issues/1373)) ([d743a7f](https://github.com/feathersjs/feathers/commit/d743a7f))
355
344
 
356
345
  # [4.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.1...v4.0.0-pre.2) (2019-05-15)
357
346
 
358
-
359
347
  ### Bug Fixes
360
348
 
361
- * Add fallback for legacy socket authenticate event ([#1356](https://github.com/feathersjs/feathers/issues/1356)) ([61b1056](https://github.com/feathersjs/feathers/commit/61b1056))
362
- * Throw NotAuthenticated on token verification errors ([#1357](https://github.com/feathersjs/feathers/issues/1357)) ([e0120df](https://github.com/feathersjs/feathers/commit/e0120df))
363
-
349
+ - Add fallback for legacy socket authenticate event ([#1356](https://github.com/feathersjs/feathers/issues/1356)) ([61b1056](https://github.com/feathersjs/feathers/commit/61b1056))
350
+ - Throw NotAuthenticated on token verification errors ([#1357](https://github.com/feathersjs/feathers/issues/1357)) ([e0120df](https://github.com/feathersjs/feathers/commit/e0120df))
364
351
 
365
352
  ### Features
366
353
 
367
- * Add global disconnect event ([#1355](https://github.com/feathersjs/feathers/issues/1355)) ([85afcca](https://github.com/feathersjs/feathers/commit/85afcca))
368
-
369
-
370
-
371
-
354
+ - Add global disconnect event ([#1355](https://github.com/feathersjs/feathers/issues/1355)) ([85afcca](https://github.com/feathersjs/feathers/commit/85afcca))
372
355
 
373
356
  # [4.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.0.0-pre.0...v4.0.0-pre.1) (2019-05-08)
374
357
 
375
-
376
358
  ### Bug Fixes
377
359
 
378
- * Add registerPublisher alias for .publish ([#1302](https://github.com/feathersjs/feathers/issues/1302)) ([98fe8f8](https://github.com/feathersjs/feathers/commit/98fe8f8))
379
-
380
-
381
-
382
-
360
+ - Add registerPublisher alias for .publish ([#1302](https://github.com/feathersjs/feathers/issues/1302)) ([98fe8f8](https://github.com/feathersjs/feathers/commit/98fe8f8))
383
361
 
384
362
  # [4.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v3.2.0-pre.1...v4.0.0-pre.0) (2019-04-21)
385
363
 
386
-
387
364
  ### Bug Fixes
388
365
 
389
- * Compare socket event data using lodash's isEqual instead of indexOf ([#1061](https://github.com/feathersjs/feathers/issues/1061)) ([f706db3](https://github.com/feathersjs/feathers/commit/f706db3))
390
- * Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
391
- * Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
392
- * Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
393
- * **package:** update debug to version 3.0.0 ([#45](https://github.com/feathersjs/feathers/issues/45)) ([9b9bde5](https://github.com/feathersjs/feathers/commit/9b9bde5))
394
-
366
+ - Compare socket event data using lodash's isEqual instead of indexOf ([#1061](https://github.com/feathersjs/feathers/issues/1061)) ([f706db3](https://github.com/feathersjs/feathers/commit/f706db3))
367
+ - Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
368
+ - Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
369
+ - Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
370
+ - **package:** update debug to version 3.0.0 ([#45](https://github.com/feathersjs/feathers/issues/45)) ([9b9bde5](https://github.com/feathersjs/feathers/commit/9b9bde5))
395
371
 
396
372
  ### Features
397
373
 
398
- * Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
399
- * Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
400
-
401
-
402
-
403
-
374
+ - Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
375
+ - Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
404
376
 
405
377
  ## [4.2.1](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.2.0...@feathersjs/transport-commons@4.2.1) (2019-01-02)
406
378
 
407
-
408
379
  ### Bug Fixes
409
380
 
410
- * Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
411
-
412
-
413
-
414
-
381
+ - Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
415
382
 
416
383
  <a name="4.2.0"></a>
417
- # [4.2.0](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.6...@feathersjs/transport-commons@4.2.0) (2018-12-16)
418
384
 
385
+ # [4.2.0](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.6...@feathersjs/transport-commons@4.2.0) (2018-12-16)
419
386
 
420
387
  ### Features
421
388
 
422
- * Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
423
-
424
-
425
-
426
-
389
+ - Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
427
390
 
428
391
  <a name="4.1.6"></a>
429
- ## [4.1.6](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.5...@feathersjs/transport-commons@4.1.6) (2018-10-25)
430
392
 
393
+ ## [4.1.6](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.5...@feathersjs/transport-commons@4.1.6) (2018-10-25)
431
394
 
432
395
  ### Bug Fixes
433
396
 
434
- * Compare socket event data using lodash's isEqual instead of indexOf ([#1061](https://github.com/feathersjs/feathers/issues/1061)) ([f706db3](https://github.com/feathersjs/feathers/commit/f706db3))
435
- * Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
436
-
437
-
438
-
439
-
397
+ - Compare socket event data using lodash's isEqual instead of indexOf ([#1061](https://github.com/feathersjs/feathers/issues/1061)) ([f706db3](https://github.com/feathersjs/feathers/commit/f706db3))
398
+ - Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
440
399
 
441
400
  <a name="4.1.5"></a>
401
+
442
402
  ## [4.1.5](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.4...@feathersjs/transport-commons@4.1.5) (2018-09-21)
443
403
 
444
404
  **Note:** Version bump only for package @feathersjs/transport-commons
445
405
 
446
-
447
-
448
-
449
-
450
406
  <a name="4.1.4"></a>
407
+
451
408
  ## [4.1.4](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.3...@feathersjs/transport-commons@4.1.4) (2018-09-17)
452
409
 
453
410
  **Note:** Version bump only for package @feathersjs/transport-commons
454
411
 
455
-
456
-
457
-
458
-
459
412
  <a name="4.1.3"></a>
413
+
460
414
  ## [4.1.3](https://github.com/feathersjs/feathers/compare/@feathersjs/transport-commons@4.1.2...@feathersjs/transport-commons@4.1.3) (2018-09-02)
461
415
 
462
416
  **Note:** Version bump only for package @feathersjs/transport-commons
463
417
 
464
418
  <a name="4.1.2"></a>
419
+
465
420
  ## 4.1.2
466
421
 
467
422
  - Migrate to Monorepo ([feathers#462](https://github.com/feathersjs/feathers/issues/462))
468
423
 
469
424
  ## [v4.1.1](https://github.com/feathersjs/transport-commons/tree/v4.1.1) (2018-07-03)
425
+
470
426
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v4.1.0...v4.1.1)
471
427
 
472
428
  **Merged pull requests:**
@@ -474,6 +430,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
474
430
  - Properly dispatch arrays that do not come from Feathers hook events [\#77](https://github.com/feathersjs/transport-commons/pull/77) ([daffl](https://github.com/daffl))
475
431
 
476
432
  ## [v4.1.0](https://github.com/feathersjs/transport-commons/tree/v4.1.0) (2018-06-28)
433
+
477
434
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v4.0.2...v4.1.0)
478
435
 
479
436
  **Merged pull requests:**
@@ -481,6 +438,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
481
438
  - Remove empty channels [\#75](https://github.com/feathersjs/transport-commons/pull/75) ([daffl](https://github.com/daffl))
482
439
 
483
440
  ## [v4.0.2](https://github.com/feathersjs/transport-commons/tree/v4.0.2) (2018-06-12)
441
+
484
442
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v4.0.1...v4.0.2)
485
443
 
486
444
  **Merged pull requests:**
@@ -488,6 +446,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
488
446
  - Fix looking up invalid path names through sockets [\#76](https://github.com/feathersjs/transport-commons/pull/76) ([daffl](https://github.com/daffl))
489
447
 
490
448
  ## [v4.0.1](https://github.com/feathersjs/transport-commons/tree/v4.0.1) (2018-05-30)
449
+
491
450
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v4.0.0...v4.0.1)
492
451
 
493
452
  **Merged pull requests:**
@@ -495,6 +454,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
495
454
  - Update Codeclimate settings [\#74](https://github.com/feathersjs/transport-commons/pull/74) ([daffl](https://github.com/daffl))
496
455
 
497
456
  ## [v4.0.0](https://github.com/feathersjs/transport-commons/tree/v4.0.0) (2018-02-09)
457
+
498
458
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.2.0...v4.0.0)
499
459
 
500
460
  **Closed issues:**
@@ -508,6 +468,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
508
468
  - Move socket handling into its own file [\#70](https://github.com/feathersjs/transport-commons/pull/70) ([daffl](https://github.com/daffl))
509
469
 
510
470
  ## [v3.2.0](https://github.com/feathersjs/transport-commons/tree/v3.2.0) (2018-01-30)
471
+
511
472
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.1.5...v3.2.0)
512
473
 
513
474
  **Closed issues:**
@@ -523,9 +484,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
523
484
  - Update semistandard to the latest version 🚀 [\#63](https://github.com/feathersjs/transport-commons/pull/63) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
524
485
 
525
486
  ## [v3.1.5](https://github.com/feathersjs/transport-commons/tree/v3.1.5) (2017-12-12)
487
+
526
488
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.1.4...v3.1.5)
527
489
 
528
490
  ## [v3.1.4](https://github.com/feathersjs/transport-commons/tree/v3.1.4) (2017-12-12)
491
+
529
492
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.1.3...v3.1.4)
530
493
 
531
494
  **Merged pull requests:**
@@ -533,6 +496,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
533
496
  - Fix dispatching of arrays [\#62](https://github.com/feathersjs/transport-commons/pull/62) ([daffl](https://github.com/daffl))
534
497
 
535
498
  ## [v3.1.3](https://github.com/feathersjs/transport-commons/tree/v3.1.3) (2017-12-12)
499
+
536
500
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.1.2...v3.1.3)
537
501
 
538
502
  **Merged pull requests:**
@@ -540,6 +504,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
540
504
  - Make sure that each entry in an array is dispatched as its own even [\#61](https://github.com/feathersjs/transport-commons/pull/61) ([daffl](https://github.com/daffl))
541
505
 
542
506
  ## [v3.1.2](https://github.com/feathersjs/transport-commons/tree/v3.1.2) (2017-12-06)
507
+
543
508
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.1.1...v3.1.2)
544
509
 
545
510
  **Merged pull requests:**
@@ -547,6 +512,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
547
512
  - Fix another error when there are no results [\#60](https://github.com/feathersjs/transport-commons/pull/60) ([daffl](https://github.com/daffl))
548
513
 
549
514
  ## [v3.1.1](https://github.com/feathersjs/transport-commons/tree/v3.1.1) (2017-12-06)
515
+
550
516
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.1.0...v3.1.1)
551
517
 
552
518
  **Merged pull requests:**
@@ -554,6 +520,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
554
520
  - Always use a combined channel [\#59](https://github.com/feathersjs/transport-commons/pull/59) ([daffl](https://github.com/daffl))
555
521
 
556
522
  ## [v3.1.0](https://github.com/feathersjs/transport-commons/tree/v3.1.0) (2017-12-06)
523
+
557
524
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.1...v3.1.0)
558
525
 
559
526
  **Merged pull requests:**
@@ -561,6 +528,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
561
528
  - Give channel dispatchers a precedence [\#58](https://github.com/feathersjs/transport-commons/pull/58) ([daffl](https://github.com/daffl))
562
529
 
563
530
  ## [v3.0.1](https://github.com/feathersjs/transport-commons/tree/v3.0.1) (2017-11-03)
531
+
564
532
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0...v3.0.1)
565
533
 
566
534
  **Closed issues:**
@@ -572,9 +540,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
572
540
  - Allow socket calls without query and callback [\#55](https://github.com/feathersjs/transport-commons/pull/55) ([daffl](https://github.com/daffl))
573
541
 
574
542
  ## [v3.0.0](https://github.com/feathersjs/transport-commons/tree/v3.0.0) (2017-11-01)
543
+
575
544
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.7...v3.0.0)
576
545
 
577
546
  ## [v3.0.0-pre.7](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.7) (2017-10-25)
547
+
578
548
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.6...v3.0.0-pre.7)
579
549
 
580
550
  **Merged pull requests:**
@@ -582,6 +552,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
582
552
  - Update to better returnHook handling [\#53](https://github.com/feathersjs/transport-commons/pull/53) ([daffl](https://github.com/daffl))
583
553
 
584
554
  ## [v3.0.0-pre.6](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.6) (2017-10-21)
555
+
585
556
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.5...v3.0.0-pre.6)
586
557
 
587
558
  **Closed issues:**
@@ -595,6 +566,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
595
566
  - Rename repository and use npm scope [\#51](https://github.com/feathersjs/transport-commons/pull/51) ([daffl](https://github.com/daffl))
596
567
 
597
568
  ## [v3.0.0-pre.5](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.5) (2017-10-18)
569
+
598
570
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.4...v3.0.0-pre.5)
599
571
 
600
572
  **Merged pull requests:**
@@ -602,6 +574,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
602
574
  - Pass events property to the client [\#50](https://github.com/feathersjs/transport-commons/pull/50) ([daffl](https://github.com/daffl))
603
575
 
604
576
  ## [v3.0.0-pre.4](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.4) (2017-10-17)
577
+
605
578
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.3...v3.0.0-pre.4)
606
579
 
607
580
  **Merged pull requests:**
@@ -609,6 +582,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
609
582
  - Fix the event name and add some channel debug statements [\#49](https://github.com/feathersjs/transport-commons/pull/49) ([daffl](https://github.com/daffl))
610
583
 
611
584
  ## [v3.0.0-pre.3](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.3) (2017-10-16)
585
+
612
586
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.2...v3.0.0-pre.3)
613
587
 
614
588
  **Merged pull requests:**
@@ -616,6 +590,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
616
590
  - Update mocha to the latest version 🚀 [\#48](https://github.com/feathersjs/transport-commons/pull/48) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
617
591
 
618
592
  ## [v3.0.0-pre.2](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.2) (2017-09-28)
593
+
619
594
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v3.0.0-pre.1...v3.0.0-pre.2)
620
595
 
621
596
  **Merged pull requests:**
@@ -623,6 +598,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
623
598
  - Add feathers-channels [\#47](https://github.com/feathersjs/transport-commons/pull/47) ([daffl](https://github.com/daffl))
624
599
 
625
600
  ## [v3.0.0-pre.1](https://github.com/feathersjs/transport-commons/tree/v3.0.0-pre.1) (2017-09-08)
601
+
626
602
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.4.0...v3.0.0-pre.1)
627
603
 
628
604
  **Fixed bugs:**
@@ -642,6 +618,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
642
618
  - Update dependencies to enable Greenkeeper 🌴 [\#41](https://github.com/feathersjs/transport-commons/pull/41) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
643
619
 
644
620
  ## [v2.4.0](https://github.com/feathersjs/transport-commons/tree/v2.4.0) (2017-01-07)
621
+
645
622
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.3.1...v2.4.0)
646
623
 
647
624
  **Implemented enhancements:**
@@ -663,6 +640,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
663
640
  - Code coverage [\#29](https://github.com/feathersjs/transport-commons/pull/29) ([ekryski](https://github.com/ekryski))
664
641
 
665
642
  ## [v2.3.1](https://github.com/feathersjs/transport-commons/tree/v2.3.1) (2016-09-02)
643
+
666
644
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.3.0...v2.3.1)
667
645
 
668
646
  **Merged pull requests:**
@@ -671,6 +649,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
671
649
  - Update mocha to version 3.0.0 🚀 [\#25](https://github.com/feathersjs/transport-commons/pull/25) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
672
650
 
673
651
  ## [v2.3.0](https://github.com/feathersjs/transport-commons/tree/v2.3.0) (2016-07-24)
652
+
674
653
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.2.1...v2.3.0)
675
654
 
676
655
  **Fixed bugs:**
@@ -682,9 +661,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
682
661
  - Skip subsequent filters instead of rejecting the promise [\#24](https://github.com/feathersjs/transport-commons/pull/24) ([daffl](https://github.com/daffl))
683
662
 
684
663
  ## [v2.2.1](https://github.com/feathersjs/transport-commons/tree/v2.2.1) (2016-07-05)
664
+
685
665
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.2.0...v2.2.1)
686
666
 
687
667
  ## [v2.2.0](https://github.com/feathersjs/transport-commons/tree/v2.2.0) (2016-07-05)
668
+
688
669
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.1.0...v2.2.0)
689
670
 
690
671
  **Implemented enhancements:**
@@ -705,6 +686,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
705
686
  - Pass all EventEmitter methods to the client connection [\#23](https://github.com/feathersjs/transport-commons/pull/23) ([daffl](https://github.com/daffl))
706
687
 
707
688
  ## [v2.1.0](https://github.com/feathersjs/transport-commons/tree/v2.1.0) (2016-05-29)
689
+
708
690
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v2.0.0...v2.1.0)
709
691
 
710
692
  **Closed issues:**
@@ -716,6 +698,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
716
698
  - Make client convert to feathers-errors [\#20](https://github.com/feathersjs/transport-commons/pull/20) ([daffl](https://github.com/daffl))
717
699
 
718
700
  ## [v2.0.0](https://github.com/feathersjs/transport-commons/tree/v2.0.0) (2016-05-23)
701
+
719
702
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v1.0.0...v2.0.0)
720
703
 
721
704
  **Merged pull requests:**
@@ -725,6 +708,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
725
708
  - babel-polyfill@6.7.4 breaks build 🚨 [\#16](https://github.com/feathersjs/transport-commons/pull/16) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
726
709
 
727
710
  ## [v1.0.0](https://github.com/feathersjs/transport-commons/tree/v1.0.0) (2016-04-28)
711
+
728
712
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v0.2.3...v1.0.0)
729
713
 
730
714
  **Implemented enhancements:**
@@ -742,6 +726,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
742
726
  - Convert errors in socket callbacks [\#14](https://github.com/feathersjs/transport-commons/pull/14) ([daffl](https://github.com/daffl))
743
727
 
744
728
  ## [v0.2.3](https://github.com/feathersjs/transport-commons/tree/v0.2.3) (2016-04-16)
729
+
745
730
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v0.2.2...v0.2.3)
746
731
 
747
732
  **Merged pull requests:**
@@ -749,6 +734,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
749
734
  - Remove connection setMaxListeners [\#11](https://github.com/feathersjs/transport-commons/pull/11) ([daffl](https://github.com/daffl))
750
735
 
751
736
  ## [v0.2.2](https://github.com/feathersjs/transport-commons/tree/v0.2.2) (2016-03-22)
737
+
752
738
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v0.2.1...v0.2.2)
753
739
 
754
740
  **Merged pull requests:**
@@ -756,6 +742,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
756
742
  - Allow chaining event listeners. [\#6](https://github.com/feathersjs/transport-commons/pull/6) ([joshuajabbour](https://github.com/joshuajabbour))
757
743
 
758
744
  ## [v0.2.1](https://github.com/feathersjs/transport-commons/tree/v0.2.1) (2016-03-08)
745
+
759
746
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v0.2.0...v0.2.1)
760
747
 
761
748
  **Merged pull requests:**
@@ -763,6 +750,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
763
750
  - Set connection max listeners and better debug messages [\#3](https://github.com/feathersjs/transport-commons/pull/3) ([daffl](https://github.com/daffl))
764
751
 
765
752
  ## [v0.2.0](https://github.com/feathersjs/transport-commons/tree/v0.2.0) (2016-02-08)
753
+
766
754
  [Full Changelog](https://github.com/feathersjs/transport-commons/compare/v0.1.0...v0.2.0)
767
755
 
768
756
  **Merged pull requests:**
@@ -772,5 +760,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
772
760
 
773
761
  ## [v0.1.0](https://github.com/feathersjs/transport-commons/tree/v0.1.0) (2016-01-21)
774
762
 
775
-
776
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
763
+ \* _This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)_