@feathersjs/cli 4.8.0 → 5.0.0-pre.24

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 (163) hide show
  1. package/CHANGELOG.md +10 -946
  2. package/LICENSE +1 -1
  3. package/README.md +9 -34
  4. package/bin/feathers +9 -0
  5. package/lib/app/index.d.ts +29 -0
  6. package/lib/app/index.js +123 -0
  7. package/lib/app/index.js.map +1 -0
  8. package/lib/app/index.ts +198 -0
  9. package/lib/app/static/.gitignore +121 -0
  10. package/lib/app/templates/app.test.tpl.d.ts +2 -0
  11. package/lib/app/templates/app.test.tpl.js +48 -0
  12. package/lib/app/templates/app.test.tpl.js.map +1 -0
  13. package/lib/app/templates/app.test.tpl.ts +48 -0
  14. package/lib/app/templates/app.tpl.d.ts +2 -0
  15. package/lib/app/templates/app.tpl.js +110 -0
  16. package/lib/app/templates/app.tpl.js.map +1 -0
  17. package/lib/app/templates/app.tpl.ts +119 -0
  18. package/lib/app/templates/channels.tpl.d.ts +2 -0
  19. package/lib/app/templates/channels.tpl.js +76 -0
  20. package/lib/app/templates/channels.tpl.js.map +1 -0
  21. package/lib/app/templates/channels.tpl.ts +81 -0
  22. package/lib/app/templates/client.tpl.d.ts +2 -0
  23. package/lib/app/templates/client.tpl.js +22 -0
  24. package/lib/app/templates/client.tpl.js.map +1 -0
  25. package/lib/app/templates/client.tpl.ts +27 -0
  26. package/lib/app/templates/config.tpl.d.ts +2 -0
  27. package/lib/app/templates/config.tpl.js +21 -0
  28. package/lib/app/templates/config.tpl.js.map +1 -0
  29. package/lib/app/templates/config.tpl.ts +21 -0
  30. package/lib/app/templates/configuration.tpl.d.ts +2 -0
  31. package/lib/app/templates/configuration.tpl.js +36 -0
  32. package/lib/app/templates/configuration.tpl.js.map +1 -0
  33. package/lib/app/templates/configuration.tpl.ts +41 -0
  34. package/lib/app/templates/declarations.tpl.d.ts +2 -0
  35. package/lib/app/templates/declarations.tpl.js +23 -0
  36. package/lib/app/templates/declarations.tpl.js.map +1 -0
  37. package/lib/app/templates/declarations.tpl.ts +31 -0
  38. package/lib/app/templates/index.html.tpl.d.ts +2 -0
  39. package/lib/app/templates/index.html.tpl.js +85 -0
  40. package/lib/app/templates/index.html.tpl.js.map +1 -0
  41. package/lib/app/templates/index.html.tpl.ts +85 -0
  42. package/lib/app/templates/index.tpl.d.ts +2 -0
  43. package/lib/app/templates/index.tpl.js +18 -0
  44. package/lib/app/templates/index.tpl.js.map +1 -0
  45. package/lib/app/templates/index.tpl.ts +23 -0
  46. package/lib/app/templates/logger.tpl.d.ts +2 -0
  47. package/lib/app/templates/logger.tpl.js +33 -0
  48. package/lib/app/templates/logger.tpl.js.map +1 -0
  49. package/lib/app/templates/logger.tpl.ts +38 -0
  50. package/lib/app/templates/package.json.tpl.d.ts +2 -0
  51. package/lib/app/templates/package.json.tpl.js +53 -0
  52. package/lib/app/templates/package.json.tpl.js.map +1 -0
  53. package/lib/app/templates/package.json.tpl.ts +65 -0
  54. package/lib/app/templates/readme.md.tpl.d.ts +2 -0
  55. package/lib/app/templates/readme.md.tpl.js +50 -0
  56. package/lib/app/templates/readme.md.tpl.js.map +1 -0
  57. package/lib/app/templates/readme.md.tpl.ts +50 -0
  58. package/lib/app/templates/services.tpl.d.ts +2 -0
  59. package/lib/app/templates/services.tpl.js +14 -0
  60. package/lib/app/templates/services.tpl.js.map +1 -0
  61. package/lib/app/templates/services.tpl.ts +19 -0
  62. package/lib/app/templates/tsconfig.json.tpl.d.ts +2 -0
  63. package/lib/app/templates/tsconfig.json.tpl.js +20 -0
  64. package/lib/app/templates/tsconfig.json.tpl.js.map +1 -0
  65. package/lib/app/templates/tsconfig.json.tpl.ts +26 -0
  66. package/lib/authentication/index.d.ts +71 -0
  67. package/lib/authentication/index.js +94 -0
  68. package/lib/authentication/index.js.map +1 -0
  69. package/lib/authentication/index.ts +103 -0
  70. package/lib/authentication/templates/authentication.tpl.d.ts +2 -0
  71. package/lib/authentication/templates/authentication.tpl.js +40 -0
  72. package/lib/authentication/templates/authentication.tpl.js.map +1 -0
  73. package/lib/authentication/templates/authentication.tpl.ts +53 -0
  74. package/lib/authentication/templates/config.tpl.d.ts +2 -0
  75. package/lib/authentication/templates/config.tpl.js +46 -0
  76. package/lib/authentication/templates/config.tpl.js.map +1 -0
  77. package/lib/authentication/templates/config.tpl.ts +51 -0
  78. package/lib/authentication/templates/declarations.tpl.d.ts +2 -0
  79. package/lib/authentication/templates/declarations.tpl.js +19 -0
  80. package/lib/authentication/templates/declarations.tpl.js.map +1 -0
  81. package/lib/authentication/templates/declarations.tpl.ts +29 -0
  82. package/lib/authentication/templates/knex.tpl.d.ts +2 -0
  83. package/lib/authentication/templates/knex.tpl.js +41 -0
  84. package/lib/authentication/templates/knex.tpl.js.map +1 -0
  85. package/lib/authentication/templates/knex.tpl.ts +59 -0
  86. package/lib/authentication/templates/test.tpl.d.ts +2 -0
  87. package/lib/authentication/templates/test.tpl.js +43 -0
  88. package/lib/authentication/templates/test.tpl.js.map +1 -0
  89. package/lib/authentication/templates/test.tpl.ts +50 -0
  90. package/lib/authentication/templates/user.resolver.tpl.d.ts +2 -0
  91. package/lib/authentication/templates/user.resolver.tpl.js +96 -0
  92. package/lib/authentication/templates/user.resolver.tpl.js.map +1 -0
  93. package/lib/authentication/templates/user.resolver.tpl.ts +109 -0
  94. package/lib/authentication/templates/user.schema.tpl.d.ts +2 -0
  95. package/lib/authentication/templates/user.schema.tpl.js +85 -0
  96. package/lib/authentication/templates/user.schema.tpl.js.map +1 -0
  97. package/lib/authentication/templates/user.schema.tpl.ts +93 -0
  98. package/lib/commons.d.ts +120 -0
  99. package/lib/commons.js +137 -0
  100. package/lib/commons.js.map +1 -0
  101. package/lib/commons.ts +187 -0
  102. package/lib/connection/index.d.ts +53 -0
  103. package/lib/connection/index.js +86 -0
  104. package/lib/connection/index.js.map +1 -0
  105. package/lib/connection/index.ts +109 -0
  106. package/lib/connection/templates/knex.tpl.d.ts +2 -0
  107. package/lib/connection/templates/knex.tpl.js +59 -0
  108. package/lib/connection/templates/knex.tpl.js.map +1 -0
  109. package/lib/connection/templates/knex.tpl.ts +79 -0
  110. package/lib/connection/templates/mongodb.tpl.d.ts +2 -0
  111. package/lib/connection/templates/mongodb.tpl.js +39 -0
  112. package/lib/connection/templates/mongodb.tpl.js.map +1 -0
  113. package/lib/connection/templates/mongodb.tpl.ts +51 -0
  114. package/lib/hook/index.d.ts +22 -0
  115. package/lib/hook/index.js +40 -0
  116. package/lib/hook/index.js.map +1 -0
  117. package/lib/hook/index.ts +45 -0
  118. package/lib/hook/templates/hook.tpl.d.ts +2 -0
  119. package/lib/hook/templates/hook.tpl.js +21 -0
  120. package/lib/hook/templates/hook.tpl.js.map +1 -0
  121. package/lib/hook/templates/hook.tpl.ts +28 -0
  122. package/lib/index.d.ts +16 -0
  123. package/lib/index.js +24 -62
  124. package/lib/index.js.map +1 -0
  125. package/lib/index.ts +27 -0
  126. package/lib/service/index.d.ts +130 -0
  127. package/lib/service/index.js +84 -0
  128. package/lib/service/index.js.map +1 -0
  129. package/lib/service/index.ts +150 -0
  130. package/lib/service/templates/client.tpl.d.ts +2 -0
  131. package/lib/service/templates/client.tpl.js +16 -0
  132. package/lib/service/templates/client.tpl.js.map +1 -0
  133. package/lib/service/templates/client.tpl.ts +27 -0
  134. package/lib/service/templates/resolver.tpl.d.ts +2 -0
  135. package/lib/service/templates/resolver.tpl.js +73 -0
  136. package/lib/service/templates/resolver.tpl.js.map +1 -0
  137. package/lib/service/templates/resolver.tpl.ts +78 -0
  138. package/lib/service/templates/schema.tpl.d.ts +2 -0
  139. package/lib/service/templates/schema.tpl.js +75 -0
  140. package/lib/service/templates/schema.tpl.js.map +1 -0
  141. package/lib/service/templates/schema.tpl.ts +80 -0
  142. package/lib/service/templates/service.tpl.d.ts +2 -0
  143. package/lib/service/templates/service.tpl.js +92 -0
  144. package/lib/service/templates/service.tpl.js.map +1 -0
  145. package/lib/service/templates/service.tpl.ts +117 -0
  146. package/lib/service/templates/test.tpl.d.ts +2 -0
  147. package/lib/service/templates/test.tpl.js +24 -0
  148. package/lib/service/templates/test.tpl.js.map +1 -0
  149. package/lib/service/templates/test.tpl.ts +29 -0
  150. package/lib/service/type/custom.tpl.d.ts +4 -0
  151. package/lib/service/type/custom.tpl.js +79 -0
  152. package/lib/service/type/custom.tpl.js.map +1 -0
  153. package/lib/service/type/custom.tpl.ts +81 -0
  154. package/lib/service/type/knex.tpl.d.ts +5 -0
  155. package/lib/service/type/knex.tpl.js +50 -0
  156. package/lib/service/type/knex.tpl.js.map +1 -0
  157. package/lib/service/type/knex.tpl.ts +62 -0
  158. package/lib/service/type/mongodb.tpl.d.ts +4 -0
  159. package/lib/service/type/mongodb.tpl.js +29 -0
  160. package/lib/service/type/mongodb.tpl.js.map +1 -0
  161. package/lib/service/type/mongodb.tpl.ts +34 -0
  162. package/package.json +55 -35
  163. package/bin/feathers.js +0 -5
package/CHANGELOG.md CHANGED
@@ -1,951 +1,15 @@
1
- # Changelog
1
+ # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/feathersjs/cli/tree/HEAD)
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
4
5
 
5
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.7.0...HEAD)
6
+ # [5.0.0-pre.24](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.23...v5.0.0-pre.24) (2022-06-21)
6
7
 
7
- **Merged pull requests:**
8
8
 
9
- - chore\(dependencies\): Update all dependencies [\#284](https://github.com/feathersjs/cli/pull/284) ([daffl](https://github.com/daffl))
9
+ ### Features
10
10
 
11
- ## [v4.7.0](https://github.com/feathersjs/cli/tree/v4.7.0) (2022-01-10)
12
-
13
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.6.2...v4.7.0)
14
-
15
- **Closed issues:**
16
-
17
- - Feathers CLI command producing strange output. [\#285](https://github.com/feathersjs/cli/issues/285)
18
-
19
- ## [v4.6.2](https://github.com/feathersjs/cli/tree/v4.6.2) (2021-12-15)
20
-
21
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.6.1...v4.6.2)
22
-
23
- **Closed issues:**
24
-
25
- - Exception when generating hooks [\#234](https://github.com/feathersjs/cli/issues/234)
26
-
27
- **Merged pull requests:**
28
-
29
- - chore\(dependencies\): Update all dependencies [\#283](https://github.com/feathersjs/cli/pull/283) ([daffl](https://github.com/daffl))
30
- - chore\(dependencies\): Update all dependencies [\#282](https://github.com/feathersjs/cli/pull/282) ([daffl](https://github.com/daffl))
31
-
32
- ## [v4.6.1](https://github.com/feathersjs/cli/tree/v4.6.1) (2021-11-24)
33
-
34
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.6.0...v4.6.1)
35
-
36
- ## [v4.6.0](https://github.com/feathersjs/cli/tree/v4.6.0) (2021-11-23)
37
-
38
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.5.0...v4.6.0)
39
-
40
- **Closed issues:**
41
-
42
- - CLI service generation crash when the name start by a number [\#279](https://github.com/feathersjs/cli/issues/279)
43
-
44
- **Merged pull requests:**
45
-
46
- - chore\(dependencies\): Update all dependencies [\#281](https://github.com/feathersjs/cli/pull/281) ([daffl](https://github.com/daffl))
47
- - chore\(dependencies\): Update all dependencies [\#280](https://github.com/feathersjs/cli/pull/280) ([daffl](https://github.com/daffl))
48
- - chore\(dependencies\): Update all dependencies [\#277](https://github.com/feathersjs/cli/pull/277) ([daffl](https://github.com/daffl))
49
- - chore\(dependencies\): Update all dependencies [\#275](https://github.com/feathersjs/cli/pull/275) ([daffl](https://github.com/daffl))
50
- - chore\(dependencies\): Update all dependencies [\#274](https://github.com/feathersjs/cli/pull/274) ([daffl](https://github.com/daffl))
51
- - Improve dependency update action [\#273](https://github.com/feathersjs/cli/pull/273) ([daffl](https://github.com/daffl))
52
- - Bump commander from 6.2.1 to 7.0.0 [\#261](https://github.com/feathersjs/cli/pull/261) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
53
- - Bump update-notifier from 5.0.1 to 5.1.0 [\#259](https://github.com/feathersjs/cli/pull/259) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
54
- - Bump npm-check-updates from 11.0.2 to 11.1.1 [\#258](https://github.com/feathersjs/cli/pull/258) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
55
-
56
- ## [v4.5.0](https://github.com/feathersjs/cli/tree/v4.5.0) (2021-01-22)
57
-
58
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.4.3...v4.5.0)
59
-
60
- ## [v4.4.3](https://github.com/feathersjs/cli/tree/v4.4.3) (2021-01-01)
61
-
62
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.4.2...v4.4.3)
63
-
64
- **Security fixes:**
65
-
66
- - \[Security\] Bump ini from 1.3.5 to 1.3.7 [\#255](https://github.com/feathersjs/cli/pull/255) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
67
-
68
- **Merged pull requests:**
69
-
70
- - Update dependencies [\#256](https://github.com/feathersjs/cli/pull/256) ([daffl](https://github.com/daffl))
71
- - Bump npm-check-updates from 9.2.4 to 10.2.2 [\#254](https://github.com/feathersjs/cli/pull/254) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
72
-
73
- ## [v4.4.2](https://github.com/feathersjs/cli/tree/v4.4.2) (2020-11-08)
74
-
75
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.4.1...v4.4.2)
76
-
77
- **Merged pull requests:**
78
-
79
- - Update dependencies and generator [\#252](https://github.com/feathersjs/cli/pull/252) ([daffl](https://github.com/daffl))
80
-
81
- ## [v4.4.1](https://github.com/feathersjs/cli/tree/v4.4.1) (2020-10-07)
82
-
83
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.4.0...v4.4.1)
84
-
85
- **Closed issues:**
86
-
87
- - `feathers generate app` does not generate users services files [\#241](https://github.com/feathersjs/cli/issues/241)
88
- - gen chat app issue [\#235](https://github.com/feathersjs/cli/issues/235)
89
- - feathers generate app failed with @feathersjs/transport-commons@^4.5.5 [\#232](https://github.com/feathersjs/cli/issues/232)
90
- - Error with version 4.4.0 [\#231](https://github.com/feathersjs/cli/issues/231)
91
-
92
- **Merged pull requests:**
93
-
94
- - Remove dependency task and update all dependencies [\#246](https://github.com/feathersjs/cli/pull/246) ([daffl](https://github.com/daffl))
95
- - Bump update-notifier from 4.1.0 to 4.1.1 [\#240](https://github.com/feathersjs/cli/pull/240) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
96
- - Bump lodash from 4.17.19 to 4.17.20 [\#239](https://github.com/feathersjs/cli/pull/239) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
97
- - Bump mocha from 8.0.1 to 8.1.3 [\#238](https://github.com/feathersjs/cli/pull/238) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
98
- - Bump npm-check-updates from 7.0.1 to 8.1.0 [\#237](https://github.com/feathersjs/cli/pull/237) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
99
- - Bump commander from 5.1.0 to 6.1.0 [\#236](https://github.com/feathersjs/cli/pull/236) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
100
-
101
- ## [v4.4.0](https://github.com/feathersjs/cli/tree/v4.4.0) (2020-07-08)
102
-
103
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.3.0...v4.4.0)
104
-
105
- **Closed issues:**
106
-
107
- - Build tools in typescript throw error in Node 14.1 [\#227](https://github.com/feathersjs/cli/issues/227)
108
- - Deprecation warnings [\#222](https://github.com/feathersjs/cli/issues/222)
109
- - Trouble install on macOS after zsh update [\#211](https://github.com/feathersjs/cli/issues/211)
110
- - default.json contains wrong entity/service if a different user model is used during app generation [\#199](https://github.com/feathersjs/cli/issues/199)
111
-
112
- **Merged pull requests:**
113
-
114
- - Update to latest generator-feathers and @feathersjs/tools [\#230](https://github.com/feathersjs/cli/pull/230) ([daffl](https://github.com/daffl))
115
- - Update all dependencies [\#229](https://github.com/feathersjs/cli/pull/229) ([github-actions[bot]](https://github.com/apps/github-actions))
116
- - Update all dependencies [\#228](https://github.com/feathersjs/cli/pull/228) ([github-actions[bot]](https://github.com/apps/github-actions))
117
- - Update all dependencies [\#226](https://github.com/feathersjs/cli/pull/226) ([github-actions[bot]](https://github.com/apps/github-actions))
118
- - Add GitHub actions for CI and auto-updates [\#223](https://github.com/feathersjs/cli/pull/223) ([daffl](https://github.com/daffl))
119
-
120
- ## [v4.3.0](https://github.com/feathersjs/cli/tree/v4.3.0) (2020-02-13)
121
-
122
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.2.5...v4.3.0)
123
-
124
- **Closed issues:**
125
-
126
- - feather cli v4 upgrade error [\#209](https://github.com/feathersjs/cli/issues/209)
127
- - Feathers generate hook returns Cannot read property 'files' of undefined [\#206](https://github.com/feathersjs/cli/issues/206)
128
-
129
- **Merged pull requests:**
130
-
131
- - Update generator-feathers to the latest version šŸš€ [\#210](https://github.com/feathersjs/cli/pull/210) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
132
- - Update mocha to the latest version šŸš€ [\#207](https://github.com/feathersjs/cli/pull/207) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
133
-
134
- ## [v4.2.5](https://github.com/feathersjs/cli/tree/v4.2.5) (2019-12-31)
135
-
136
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.2.4...v4.2.5)
137
-
138
- **Closed issues:**
139
-
140
- - feathers generate connection [\#203](https://github.com/feathersjs/cli/issues/203)
141
-
142
- **Merged pull requests:**
143
-
144
- - Update generator-feathers to the latest version šŸš€ [\#205](https://github.com/feathersjs/cli/pull/205) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
145
- - Update semver to the latest version šŸš€ [\#204](https://github.com/feathersjs/cli/pull/204) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
146
-
147
- ## [v4.2.4](https://github.com/feathersjs/cli/tree/v4.2.4) (2019-12-13)
148
-
149
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.2.3...v4.2.4)
150
-
151
- **Closed issues:**
152
-
153
- - Secret generator removed? [\#200](https://github.com/feathersjs/cli/issues/200)
154
-
155
- **Merged pull requests:**
156
-
157
- - Update generator-feathers to the latest version šŸš€ [\#202](https://github.com/feathersjs/cli/pull/202) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
158
- - Update update-notifier to the latest version šŸš€ [\#201](https://github.com/feathersjs/cli/pull/201) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
159
- - Update commander to the latest version šŸš€ [\#198](https://github.com/feathersjs/cli/pull/198) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
160
-
161
- ## [v4.2.3](https://github.com/feathersjs/cli/tree/v4.2.3) (2019-10-31)
162
-
163
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.2.2...v4.2.3)
164
-
165
- **Merged pull requests:**
166
-
167
- - Update generator-feathers to the latest version šŸš€ [\#197](https://github.com/feathersjs/cli/pull/197) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
168
-
169
- ## [v4.2.2](https://github.com/feathersjs/cli/tree/v4.2.2) (2019-10-23)
170
-
171
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.2.1...v4.2.2)
172
-
173
- **Closed issues:**
174
-
175
- - Creating a model with name "model" causes issues [\#195](https://github.com/feathersjs/cli/issues/195)
176
- - feathersjs v4 after upgrade to typescript getting services\index.js doesn't exist error [\#194](https://github.com/feathersjs/cli/issues/194)
177
- - MongoDB no longer offered in feather cli [\#193](https://github.com/feathersjs/cli/issues/193)
178
-
179
- **Merged pull requests:**
180
-
181
- - Update generator-feathers to the latest version šŸš€ [\#196](https://github.com/feathersjs/cli/pull/196) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
182
-
183
- ## [v4.2.1](https://github.com/feathersjs/cli/tree/v4.2.1) (2019-09-20)
184
-
185
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.2.0...v4.2.1)
186
-
187
- **Closed issues:**
188
-
189
- - Type error test/authentication.test.ts [\#187](https://github.com/feathersjs/cli/issues/187)
190
-
191
- **Merged pull requests:**
192
-
193
- - Update generator-feathers to the latest version šŸš€ [\#192](https://github.com/feathersjs/cli/pull/192) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
194
-
195
- ## [v4.2.0](https://github.com/feathersjs/cli/tree/v4.2.0) (2019-09-19)
196
-
197
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.1.1...v4.2.0)
198
-
199
- **Closed issues:**
200
-
201
- - Generate service error with JS default config [\#190](https://github.com/feathersjs/cli/issues/190)
202
- - feathers cli v4 upgrade error [\#189](https://github.com/feathersjs/cli/issues/189)
203
-
204
- **Merged pull requests:**
205
-
206
- - Update generator-feathers to the latest version šŸš€ [\#191](https://github.com/feathersjs/cli/pull/191) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
207
-
208
- ## [v4.1.1](https://github.com/feathersjs/cli/tree/v4.1.1) (2019-09-04)
209
-
210
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.1.0...v4.1.1)
211
-
212
- **Merged pull requests:**
213
-
214
- - Update generator-feathers to the latest version šŸš€ [\#188](https://github.com/feathersjs/cli/pull/188) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
215
-
216
- ## [v4.1.0](https://github.com/feathersjs/cli/tree/v4.1.0) (2019-08-27)
217
-
218
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0...v4.1.0)
219
-
220
- **Merged pull requests:**
221
-
222
- - Update generator-feathers to the latest version šŸš€ [\#186](https://github.com/feathersjs/cli/pull/186) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
223
- - Update semistandard to the latest version šŸš€ [\#185](https://github.com/feathersjs/cli/pull/185) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
224
-
225
- ## [v4.0.0](https://github.com/feathersjs/cli/tree/v4.0.0) (2019-08-27)
226
-
227
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0-pre.6...v4.0.0)
228
-
229
- ## [v4.0.0-pre.6](https://github.com/feathersjs/cli/tree/v4.0.0-pre.6) (2019-08-19)
230
-
231
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0-pre.5...v4.0.0-pre.6)
232
-
233
- **Closed issues:**
234
-
235
- - 4.0.0pre4 cli initial an project with mongoose with an error [\#183](https://github.com/feathersjs/cli/issues/183)
236
-
237
- **Merged pull requests:**
238
-
239
- - Update commander to the latest version šŸš€ [\#184](https://github.com/feathersjs/cli/pull/184) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
240
-
241
- ## [v4.0.0-pre.5](https://github.com/feathersjs/cli/tree/v4.0.0-pre.5) (2019-07-31)
242
-
243
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0-pre.4...v4.0.0-pre.5)
244
-
245
- **Closed issues:**
246
-
247
- - feathers generate for sequelize service throws unhandled 'error' event [\#176](https://github.com/feathersjs/cli/issues/176)
248
- - OverwriteModelError and Mocha watch on generated models [\#173](https://github.com/feathersjs/cli/issues/173)
249
- - The generated test command is not working in windows os [\#172](https://github.com/feathersjs/cli/issues/172)
250
-
251
- ## [v4.0.0-pre.4](https://github.com/feathersjs/cli/tree/v4.0.0-pre.4) (2019-07-17)
252
-
253
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0-pre.3...v4.0.0-pre.4)
254
-
255
- ## [v4.0.0-pre.3](https://github.com/feathersjs/cli/tree/v4.0.0-pre.3) (2019-07-12)
256
-
257
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0-pre.2...v4.0.0-pre.3)
258
-
259
- **Closed issues:**
260
-
261
- - Missing uws dependency in engine.io server.js feathers dependency [\#182](https://github.com/feathersjs/cli/issues/182)
262
- - EINVAL Error on npm install @feathers/cli [\#181](https://github.com/feathersjs/cli/issues/181)
263
- - `feathers generate app` fails to generate the project with an AssertionError [\#179](https://github.com/feathersjs/cli/issues/179)
264
-
265
- ## [v4.0.0-pre.2](https://github.com/feathersjs/cli/tree/v4.0.0-pre.2) (2019-06-22)
266
-
267
- [Full Changelog](https://github.com/feathersjs/cli/compare/v4.0.0-pre.1...v4.0.0-pre.2)
268
-
269
- ## [v4.0.0-pre.1](https://github.com/feathersjs/cli/tree/v4.0.0-pre.1) (2019-06-05)
270
-
271
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.9.0...v4.0.0-pre.1)
272
-
273
- **Closed issues:**
274
-
275
- - An in-range update of update-notifier is breaking the build 🚨 [\#177](https://github.com/feathersjs/cli/issues/177)
276
-
277
- **Merged pull requests:**
278
-
279
- - Add v4 upgrade command and update dependencies [\#180](https://github.com/feathersjs/cli/pull/180) ([daffl](https://github.com/daffl))
280
- - Update semver to the latest version šŸš€ [\#175](https://github.com/feathersjs/cli/pull/175) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
281
- - Update mocha to the latest version šŸš€ [\#174](https://github.com/feathersjs/cli/pull/174) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
282
-
283
- ## [v3.9.0](https://github.com/feathersjs/cli/tree/v3.9.0) (2018-12-30)
284
-
285
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.8.10...v3.9.0)
286
-
287
- **Merged pull requests:**
288
-
289
- - Update generator-feathers to the latest version šŸš€ [\#170](https://github.com/feathersjs/cli/pull/170) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
290
-
291
- ## [v3.8.10](https://github.com/feathersjs/cli/tree/v3.8.10) (2018-12-29)
292
-
293
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.8.9...v3.8.10)
294
-
295
- **Merged pull requests:**
296
-
297
- - Update generator-feathers to the latest version šŸš€ [\#169](https://github.com/feathersjs/cli/pull/169) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
298
-
299
- ## [v3.8.9](https://github.com/feathersjs/cli/tree/v3.8.9) (2018-12-26)
300
-
301
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.8.8...v3.8.9)
302
-
303
- **Merged pull requests:**
304
-
305
- - Update generator-feathers to the latest version šŸš€ [\#168](https://github.com/feathersjs/cli/pull/168) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
306
-
307
- ## [v3.8.8](https://github.com/feathersjs/cli/tree/v3.8.8) (2018-12-15)
308
-
309
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.8.0...v3.8.8)
310
-
311
- **Closed issues:**
312
-
313
- - \[Neat\] Interactive shell [\#148](https://github.com/feathersjs/cli/issues/148)
314
- - .sequelizerc could be evaluated before generating a service based on Sequelize [\#146](https://github.com/feathersjs/cli/issues/146)
315
- - Feature Request: Typescript Support [\#114](https://github.com/feathersjs/cli/issues/114)
316
- - Generating a sequelize service backed by NeDB causes app to throw. [\#109](https://github.com/feathersjs/cli/issues/109)
317
- - Feature Request for feathersrc [\#88](https://github.com/feathersjs/cli/issues/88)
318
-
319
- **Merged pull requests:**
320
-
321
- - Update generator-feathers to the latest version šŸš€ [\#167](https://github.com/feathersjs/cli/pull/167) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
322
- - Add Greenkeeper badge 🌓 [\#166](https://github.com/feathersjs/cli/pull/166) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
323
- - Back merge with changes from monorepo to put back into own repository [\#165](https://github.com/feathersjs/cli/pull/165) ([daffl](https://github.com/daffl))
324
-
325
- ## [v3.8.0](https://github.com/feathersjs/cli/tree/v3.8.0) (2018-08-13)
326
-
327
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.6...v3.8.0)
328
-
329
- **Closed issues:**
330
-
331
- - dev mode with watcher [\#163](https://github.com/feathersjs/cli/issues/163)
332
- - couchDB not visible in feathersJs when creating service [\#162](https://github.com/feathersjs/cli/issues/162)
333
-
334
- **Merged pull requests:**
335
-
336
- - Update generator-feathers to the latest version šŸš€ [\#164](https://github.com/feathersjs/cli/pull/164) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
337
-
338
- ## [v3.7.6](https://github.com/feathersjs/cli/tree/v3.7.6) (2018-07-26)
339
-
340
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.5...v3.7.6)
341
-
342
- **Closed issues:**
343
-
344
- - undesired hook renaming [\#160](https://github.com/feathersjs/cli/issues/160)
345
-
346
- **Merged pull requests:**
347
-
348
- - Update generator-feathers to the latest version šŸš€ [\#161](https://github.com/feathersjs/cli/pull/161) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
349
-
350
- ## [v3.7.5](https://github.com/feathersjs/cli/tree/v3.7.5) (2018-07-10)
351
-
352
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.4...v3.7.5)
353
-
354
- **Closed issues:**
355
-
356
- - Error when using NodeJS 10.6.0 [\#157](https://github.com/feathersjs/cli/issues/157)
357
-
358
- **Merged pull requests:**
359
-
360
- - Update generator-feathers to the latest version šŸš€ [\#159](https://github.com/feathersjs/cli/pull/159) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
361
-
362
- ## [v3.7.4](https://github.com/feathersjs/cli/tree/v3.7.4) (2018-07-10)
363
-
364
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.3...v3.7.4)
365
-
366
- **Merged pull requests:**
367
-
368
- - Update generator-feathers to the latest version šŸš€ [\#158](https://github.com/feathersjs/cli/pull/158) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
369
-
370
- ## [v3.7.3](https://github.com/feathersjs/cli/tree/v3.7.3) (2018-07-04)
371
-
372
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.2...v3.7.3)
373
-
374
- **Merged pull requests:**
375
-
376
- - Update generator-feathers to the latest version šŸš€ [\#156](https://github.com/feathersjs/cli/pull/156) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
377
-
378
- ## [v3.7.2](https://github.com/feathersjs/cli/tree/v3.7.2) (2018-06-19)
379
-
380
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.1...v3.7.2)
381
-
382
- **Closed issues:**
383
-
384
- - generate always creates files inside src. What if i want to change that default? [\#153](https://github.com/feathersjs/cli/issues/153)
385
-
386
- **Merged pull requests:**
387
-
388
- - Update generator-feathers to the latest version šŸš€ [\#155](https://github.com/feathersjs/cli/pull/155) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
389
-
390
- ## [v3.7.1](https://github.com/feathersjs/cli/tree/v3.7.1) (2018-06-16)
391
-
392
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.7.0...v3.7.1)
393
-
394
- **Merged pull requests:**
395
-
396
- - Update generator-feathers to the latest version šŸš€ [\#154](https://github.com/feathersjs/cli/pull/154) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
397
-
398
- ## [v3.7.0](https://github.com/feathersjs/cli/tree/v3.7.0) (2018-05-30)
399
-
400
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.6.4...v3.7.0)
401
-
402
- **Merged pull requests:**
403
-
404
- - Update generator-feathers [\#152](https://github.com/feathersjs/cli/pull/152) ([daffl](https://github.com/daffl))
405
-
406
- ## [v3.6.4](https://github.com/feathersjs/cli/tree/v3.6.4) (2018-05-21)
407
-
408
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.6.3...v3.6.4)
409
-
410
- **Closed issues:**
411
-
412
- - CLI switch for version number does not work. Possible bug [\#150](https://github.com/feathersjs/cli/issues/150)
413
-
414
- **Merged pull requests:**
415
-
416
- - Update generator-feathers to the latest version šŸš€ [\#151](https://github.com/feathersjs/cli/pull/151) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
417
-
418
- ## [v3.6.3](https://github.com/feathersjs/cli/tree/v3.6.3) (2018-05-09)
419
-
420
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.6.2...v3.6.3)
421
-
422
- **Closed issues:**
423
-
424
- - CLI lists suggested database name when instead a custom name is specified [\#142](https://github.com/feathersjs/cli/issues/142)
425
-
426
- **Merged pull requests:**
427
-
428
- - Update and lock generator-feathers to 2.4.3 [\#149](https://github.com/feathersjs/cli/pull/149) ([daffl](https://github.com/daffl))
429
-
430
- ## [v3.6.2](https://github.com/feathersjs/cli/tree/v3.6.2) (2018-04-24)
431
-
432
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.6.1...v3.6.2)
433
-
434
- **Closed issues:**
435
-
436
- - Unhandled 'error' event [\#145](https://github.com/feathersjs/cli/issues/145)
437
- - Generate Service stops responding at "What is the database connection string" [\#144](https://github.com/feathersjs/cli/issues/144)
438
- - Feature: List updated/new files [\#143](https://github.com/feathersjs/cli/issues/143)
439
- - Duplicate passport users in users table [\#141](https://github.com/feathersjs/cli/issues/141)
440
- - Add elasticsearch support when generating a database service [\#77](https://github.com/feathersjs/cli/issues/77)
441
-
442
- **Merged pull requests:**
443
-
444
- - Update generator-feathers to latest version [\#147](https://github.com/feathersjs/cli/pull/147) ([daffl](https://github.com/daffl))
445
- - Add basic shell command [\#138](https://github.com/feathersjs/cli/pull/138) ([zaro](https://github.com/zaro))
446
-
447
- ## [v3.6.1](https://github.com/feathersjs/cli/tree/v3.6.1) (2018-02-10)
448
-
449
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.6.0...v3.6.1)
450
-
451
- **Merged pull requests:**
452
-
453
- - Update generator-feathers to the latest version šŸš€ [\#140](https://github.com/feathersjs/cli/pull/140) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
454
-
455
- ## [v3.6.0](https://github.com/feathersjs/cli/tree/v3.6.0) (2018-01-27)
456
-
457
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.4.0...v3.6.0)
458
-
459
- **Closed issues:**
460
-
461
- - The `useMongoClient` option is no longer necessary in mongoose 5.x [\#136](https://github.com/feathersjs/cli/issues/136)
462
- - Add .env for SECRET in authentication [\#111](https://github.com/feathersjs/cli/issues/111)
463
- - Automated testing environment [\#27](https://github.com/feathersjs/cli/issues/27)
464
-
465
- **Merged pull requests:**
466
-
467
- - Update generator-feathers to the latest version šŸš€ [\#137](https://github.com/feathersjs/cli/pull/137) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
468
- - Update mocha to the latest version šŸš€ [\#135](https://github.com/feathersjs/cli/pull/135) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
469
-
470
- ## [v2.4.0](https://github.com/feathersjs/cli/tree/v2.4.0) (2018-01-11)
471
-
472
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.5.0...v2.4.0)
473
-
474
- ## [v3.5.0](https://github.com/feathersjs/cli/tree/v3.5.0) (2018-01-04)
475
-
476
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.4.1...v3.5.0)
477
-
478
- **Merged pull requests:**
479
-
480
- - Update generator-feathers-plugin to the latest version šŸš€ [\#134](https://github.com/feathersjs/cli/pull/134) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
481
- - Update semistandard to the latest version šŸš€ [\#133](https://github.com/feathersjs/cli/pull/133) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
482
-
483
- ## [v3.4.1](https://github.com/feathersjs/cli/tree/v3.4.1) (2017-12-21)
484
-
485
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.4.0...v3.4.1)
486
-
487
- **Merged pull requests:**
488
-
489
- - Update generator-feathers to the latest version šŸš€ [\#132](https://github.com/feathersjs/cli/pull/132) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
490
-
491
- ## [v3.4.0](https://github.com/feathersjs/cli/tree/v3.4.0) (2017-12-20)
492
-
493
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.3.0...v3.4.0)
494
-
495
- **Merged pull requests:**
496
-
497
- - Update generator-feathers to the latest version šŸš€ [\#131](https://github.com/feathersjs/cli/pull/131) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
498
-
499
- ## [v3.3.0](https://github.com/feathersjs/cli/tree/v3.3.0) (2017-12-14)
500
-
501
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.2.1...v3.3.0)
502
-
503
- **Fixed bugs:**
504
-
505
- - \[3.0\] CLI is not respecting directory [\#39](https://github.com/feathersjs/cli/issues/39)
506
-
507
- **Closed issues:**
508
-
509
- - \[3.0\] Allow plugins [\#62](https://github.com/feathersjs/cli/issues/62)
510
- - \[3.0\] Support file conflicts [\#40](https://github.com/feathersjs/cli/issues/40)
511
- - \[3.0\] Be able to install templates from Github repos [\#38](https://github.com/feathersjs/cli/issues/38)
512
- - \[3.0\] Have a basic "doctor" command [\#24](https://github.com/feathersjs/cli/issues/24)
513
-
514
- **Merged pull requests:**
515
-
516
- - Update generator-feathers to the latest version šŸš€ [\#130](https://github.com/feathersjs/cli/pull/130) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
517
-
518
- ## [v3.2.1](https://github.com/feathersjs/cli/tree/v3.2.1) (2017-12-07)
519
-
520
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.2.0...v3.2.1)
521
-
522
- **Merged pull requests:**
523
-
524
- - Update generator-feathers to the latest version šŸš€ [\#129](https://github.com/feathersjs/cli/pull/129) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
525
-
526
- ## [v3.2.0](https://github.com/feathersjs/cli/tree/v3.2.0) (2017-11-20)
527
-
528
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.1.0...v3.2.0)
529
-
530
- **Merged pull requests:**
531
-
532
- - Update generator-feathers to the latest version šŸš€ [\#128](https://github.com/feathersjs/cli/pull/128) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
533
-
534
- ## [v3.1.0](https://github.com/feathersjs/cli/tree/v3.1.0) (2017-11-05)
535
-
536
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.0.0...v3.1.0)
537
-
538
- **Merged pull requests:**
539
-
540
- - Add update notifier [\#127](https://github.com/feathersjs/cli/pull/127) ([daffl](https://github.com/daffl))
541
-
542
- ## [v3.0.0](https://github.com/feathersjs/cli/tree/v3.0.0) (2017-11-05)
543
-
544
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.0.0-pre.2...v3.0.0)
545
-
546
- **Merged pull requests:**
547
-
548
- - Update generator-feathers to the latest version šŸš€ [\#126](https://github.com/feathersjs/cli/pull/126) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
549
-
550
- ## [v3.0.0-pre.2](https://github.com/feathersjs/cli/tree/v3.0.0-pre.2) (2017-10-30)
551
-
552
- [Full Changelog](https://github.com/feathersjs/cli/compare/v3.0.0-pre.1...v3.0.0-pre.2)
553
-
554
- ## [v3.0.0-pre.1](https://github.com/feathersjs/cli/tree/v3.0.0-pre.1) (2017-10-28)
555
-
556
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.9...v3.0.0-pre.1)
557
-
558
- **Merged pull requests:**
559
-
560
- - Prepare prerelease [\#125](https://github.com/feathersjs/cli/pull/125) ([daffl](https://github.com/daffl))
561
- - Add upgrade functionality [\#124](https://github.com/feathersjs/cli/pull/124) ([daffl](https://github.com/daffl))
562
- - Rename repository to use npm scope [\#121](https://github.com/feathersjs/cli/pull/121) ([daffl](https://github.com/daffl))
563
- - Update to new plugin infrastructure [\#120](https://github.com/feathersjs/cli/pull/120) ([daffl](https://github.com/daffl))
564
-
565
- ## [v2.3.9](https://github.com/feathersjs/cli/tree/v2.3.9) (2017-10-26)
566
-
567
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.8...v2.3.9)
568
-
569
- **Closed issues:**
570
-
571
- - A mongoose way to handle the createAt and updateAt [\#118](https://github.com/feathersjs/cli/issues/118)
572
-
573
- ## [v2.3.8](https://github.com/feathersjs/cli/tree/v2.3.8) (2017-10-11)
574
-
575
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.7...v2.3.8)
576
-
577
- **Merged pull requests:**
578
-
579
- - Update generator-feathers to the latest version šŸš€ [\#119](https://github.com/feathersjs/cli/pull/119) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
580
- - Update mocha to the latest version šŸš€ [\#117](https://github.com/feathersjs/cli/pull/117) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
581
-
582
- ## [v2.3.7](https://github.com/feathersjs/cli/tree/v2.3.7) (2017-09-13)
583
-
584
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.6...v2.3.7)
585
-
586
- **Merged pull requests:**
587
-
588
- - Update generator-feathers to the latest version šŸš€ [\#116](https://github.com/feathersjs/cli/pull/116) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
589
-
590
- ## [v2.3.6](https://github.com/feathersjs/cli/tree/v2.3.6) (2017-09-10)
591
-
592
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.5...v2.3.6)
593
-
594
- **Closed issues:**
595
-
596
- - use semistandard instead of eslint:recommended with tweaks? [\#113](https://github.com/feathersjs/cli/issues/113)
597
-
598
- **Merged pull requests:**
599
-
600
- - Update generator-feathers to the latest version šŸš€ [\#115](https://github.com/feathersjs/cli/pull/115) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
601
-
602
- ## [v2.3.5](https://github.com/feathersjs/cli/tree/v2.3.5) (2017-08-23)
603
-
604
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.4...v2.3.5)
605
-
606
- **Merged pull requests:**
607
-
608
- - Update generator-feathers-plugin to the latest version šŸš€ [\#112](https://github.com/feathersjs/cli/pull/112) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
609
-
610
- ## [v2.3.4](https://github.com/feathersjs/cli/tree/v2.3.4) (2017-08-14)
611
-
612
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.3...v2.3.4)
613
-
614
- **Merged pull requests:**
615
-
616
- - Update generator-feathers to the latest version šŸš€ [\#110](https://github.com/feathersjs/cli/pull/110) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
617
-
618
- ## [v2.3.3](https://github.com/feathersjs/cli/tree/v2.3.3) (2017-07-31)
619
-
620
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.2...v2.3.3)
621
-
622
- **Merged pull requests:**
623
-
624
- - update generator versions [\#108](https://github.com/feathersjs/cli/pull/108) ([marshallswain](https://github.com/marshallswain))
625
-
626
- ## [v2.3.2](https://github.com/feathersjs/cli/tree/v2.3.2) (2017-07-20)
627
-
628
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.1...v2.3.2)
629
-
630
- **Merged pull requests:**
631
-
632
- - Update generator-feathers to the latest version šŸš€ [\#107](https://github.com/feathersjs/cli/pull/107) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
633
-
634
- ## [v2.3.1](https://github.com/feathersjs/cli/tree/v2.3.1) (2017-07-18)
635
-
636
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.3.0...v2.3.1)
637
-
638
- **Merged pull requests:**
639
-
640
- - Update generator-feathers to the latest version šŸš€ [\#106](https://github.com/feathersjs/cli/pull/106) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
641
-
642
- ## [v2.3.0](https://github.com/feathersjs/cli/tree/v2.3.0) (2017-07-16)
643
-
644
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.2.4...v2.3.0)
645
-
646
- **Merged pull requests:**
647
-
648
- - Update generator-feathers-plugin to the latest version šŸš€ [\#105](https://github.com/feathersjs/cli/pull/105) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
649
-
650
- ## [v2.2.4](https://github.com/feathersjs/cli/tree/v2.2.4) (2017-07-12)
651
-
652
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.2.3...v2.2.4)
653
-
654
- **Closed issues:**
655
-
656
- - No model file when creating service \(bug or feature?\) [\#103](https://github.com/feathersjs/cli/issues/103)
657
- - Could not find a valid package.json - feathers generate service [\#102](https://github.com/feathersjs/cli/issues/102)
658
-
659
- **Merged pull requests:**
660
-
661
- - Update generator-feathers to the latest version šŸš€ [\#104](https://github.com/feathersjs/cli/pull/104) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
662
-
663
- ## [v2.2.3](https://github.com/feathersjs/cli/tree/v2.2.3) (2017-07-02)
664
-
665
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.2.2...v2.2.3)
666
-
667
- **Closed issues:**
668
-
669
- - Can not create service on postgres if default.json already has the connection string [\#100](https://github.com/feathersjs/cli/issues/100)
670
-
671
- **Merged pull requests:**
672
-
673
- - Update generator-feathers to the latest version šŸš€ [\#101](https://github.com/feathersjs/cli/pull/101) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
674
-
675
- ## [v2.2.2](https://github.com/feathersjs/cli/tree/v2.2.2) (2017-06-26)
676
-
677
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.2.1...v2.2.2)
678
-
679
- **Merged pull requests:**
680
-
681
- - Update generator-feathers to the latest version šŸš€ [\#99](https://github.com/feathersjs/cli/pull/99) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
682
-
683
- ## [v2.2.1](https://github.com/feathersjs/cli/tree/v2.2.1) (2017-06-22)
684
-
685
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.2.0...v2.2.1)
686
-
687
- **Merged pull requests:**
688
-
689
- - fix\(package\): update generator-feathers to version 1.2.2 [\#98](https://github.com/feathersjs/cli/pull/98) ([daffl](https://github.com/daffl))
690
-
691
- ## [v2.2.0](https://github.com/feathersjs/cli/tree/v2.2.0) (2017-06-21)
692
-
693
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.1.1...v2.2.0)
694
-
695
- **Closed issues:**
696
-
697
- - Support ES-Next [\#91](https://github.com/feathersjs/cli/issues/91)
698
- - automatically migrate from prev versions to 2.0 [\#75](https://github.com/feathersjs/cli/issues/75)
699
-
700
- **Merged pull requests:**
701
-
702
- - Update generator-feathers to the latest version šŸš€ [\#96](https://github.com/feathersjs/cli/pull/96) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
703
-
704
- ## [v2.1.1](https://github.com/feathersjs/cli/tree/v2.1.1) (2017-06-16)
705
-
706
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.1.0...v2.1.1)
707
-
708
- **Closed issues:**
709
-
710
- - Can not generate services with Node 8.1.0 [\#94](https://github.com/feathersjs/cli/issues/94)
711
- - Whitespace handling [\#92](https://github.com/feathersjs/cli/issues/92)
712
-
713
- **Merged pull requests:**
714
-
715
- - Update generator-feathers to the latest version šŸš€ [\#95](https://github.com/feathersjs/cli/pull/95) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
716
-
717
- ## [v2.1.0](https://github.com/feathersjs/cli/tree/v2.1.0) (2017-06-10)
718
-
719
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.5...v2.1.0)
720
-
721
- **Closed issues:**
722
-
723
- - Does not add all needed Feathers dependencies [\#90](https://github.com/feathersjs/cli/issues/90)
724
- - File postgres.js is overwritten when generating new service [\#87](https://github.com/feathersjs/cli/issues/87)
725
-
726
- **Merged pull requests:**
727
-
728
- - Update generator-feathers to the latest version šŸš€ [\#93](https://github.com/feathersjs/cli/pull/93) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
729
- - Update yeoman-environment to the latest version šŸš€ [\#89](https://github.com/feathersjs/cli/pull/89) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
730
-
731
- ## [v2.0.5](https://github.com/feathersjs/cli/tree/v2.0.5) (2017-04-23)
732
-
733
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.4...v2.0.5)
734
-
735
- **Closed issues:**
736
-
737
- - Generated tests don't use the path passed to the generator [\#85](https://github.com/feathersjs/cli/issues/85)
738
- - Generated sequelize service does not use the username and password correctly [\#84](https://github.com/feathersjs/cli/issues/84)
739
-
740
- **Merged pull requests:**
741
-
742
- - Update generator-feathers to the latest version šŸš€ [\#86](https://github.com/feathersjs/cli/pull/86) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
743
-
744
- ## [v2.0.4](https://github.com/feathersjs/cli/tree/v2.0.4) (2017-04-19)
745
-
746
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.3...v2.0.4)
747
-
748
- **Merged pull requests:**
749
-
750
- - Update generator-feathers to the latest version šŸš€ [\#83](https://github.com/feathersjs/cli/pull/83) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
751
-
752
- ## [v2.0.3](https://github.com/feathersjs/cli/tree/v2.0.3) (2017-04-18)
753
-
754
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.2...v2.0.3)
755
-
756
- **Closed issues:**
757
-
758
- - Rename 2.0 branch to 3.0 [\#73](https://github.com/feathersjs/cli/issues/73)
759
-
760
- ## [v2.0.2](https://github.com/feathersjs/cli/tree/v2.0.2) (2017-04-17)
761
-
762
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.1...v2.0.2)
763
-
764
- **Closed issues:**
765
-
766
- - Check for Node 6+ [\#79](https://github.com/feathersjs/cli/issues/79)
767
- - Generate stand alone micro-services not hard-linked to app/route [\#68](https://github.com/feathersjs/cli/issues/68)
768
-
769
- **Merged pull requests:**
770
-
771
- - Update generator-feathers to the latest version šŸš€ [\#81](https://github.com/feathersjs/cli/pull/81) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
772
- - Check for Node v6 or later [\#80](https://github.com/feathersjs/cli/pull/80) ([daffl](https://github.com/daffl))
773
- - Add Greenkeeper badge 🌓 [\#78](https://github.com/feathersjs/cli/pull/78) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
774
-
775
- ## [v2.0.1](https://github.com/feathersjs/cli/tree/v2.0.1) (2017-04-12)
776
-
777
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.0...v2.0.1)
778
-
779
- ## [v2.0.0](https://github.com/feathersjs/cli/tree/v2.0.0) (2017-04-11)
780
-
781
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.0-pre.3...v2.0.0)
782
-
783
- **Closed issues:**
784
-
785
- - One-file-per-service [\#76](https://github.com/feathersjs/cli/issues/76)
786
- - feathers not recognized as an internal or external command [\#74](https://github.com/feathersjs/cli/issues/74)
787
- - The CLI is using a feathers-authentication version \< v0.8.0, which is causing issues with mongodb + oatuh0 [\#72](https://github.com/feathersjs/cli/issues/72)
788
-
789
- ## [v2.0.0-pre.3](https://github.com/feathersjs/cli/tree/v2.0.0-pre.3) (2017-03-16)
790
-
791
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.0-pre.2...v2.0.0-pre.3)
792
-
793
- **Merged pull requests:**
794
-
795
- - Use generator-feathers 1.0.0-pre.6 [\#71](https://github.com/feathersjs/cli/pull/71) ([daffl](https://github.com/daffl))
796
- - update all badges [\#67](https://github.com/feathersjs/cli/pull/67) ([OmgImAlexis](https://github.com/OmgImAlexis))
797
-
798
- ## [v2.0.0-pre.2](https://github.com/feathersjs/cli/tree/v2.0.0-pre.2) (2017-03-16)
799
-
800
- [Full Changelog](https://github.com/feathersjs/cli/compare/v2.0.0-pre.1...v2.0.0-pre.2)
801
-
802
- **Closed issues:**
803
-
804
- - Single line commands \(skipping the feathers terminal\) [\#70](https://github.com/feathersjs/cli/issues/70)
805
- - Trailing whitespace in a few files [\#69](https://github.com/feathersjs/cli/issues/69)
806
- - Add support for version argument [\#66](https://github.com/feathersjs/cli/issues/66)
807
- - Add support for rethinkdb [\#65](https://github.com/feathersjs/cli/issues/65)
808
- - Feathers generate fails on node 7.5.0 [\#64](https://github.com/feathersjs/cli/issues/64)
809
- - \[2.0\] Ability to generate/rotate secrets [\#46](https://github.com/feathersjs/cli/issues/46)
810
-
811
- ## [v2.0.0-pre.1](https://github.com/feathersjs/cli/tree/v2.0.0-pre.1) (2017-02-08)
812
-
813
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.3.0-pre.1...v2.0.0-pre.1)
814
-
815
- **Closed issues:**
816
-
817
- - Support Heroku deployments [\#1](https://github.com/feathersjs/cli/issues/1)
818
-
819
- **Merged pull requests:**
820
-
821
- - Updating to major pre version [\#63](https://github.com/feathersjs/cli/pull/63) ([daffl](https://github.com/daffl))
822
-
823
- ## [v1.3.0-pre.1](https://github.com/feathersjs/cli/tree/v1.3.0-pre.1) (2017-02-08)
824
-
825
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.7...v1.3.0-pre.1)
826
-
827
- **Fixed bugs:**
828
-
829
- - Won't install on NodeJS v6.x [\#26](https://github.com/feathersjs/cli/issues/26)
830
- - feathers generate hook fails when some hooks are commented out [\#25](https://github.com/feathersjs/cli/issues/25)
831
-
832
- **Closed issues:**
833
-
834
- - Use eslint instead of jshint to allow auto fix from the generator [\#58](https://github.com/feathersjs/cli/issues/58)
835
- - Add Knex driver support when generating a database service with the CLI [\#57](https://github.com/feathersjs/cli/issues/57)
836
- - Cannot create 'user' service [\#56](https://github.com/feathersjs/cli/issues/56)
837
- - Services become plural? [\#55](https://github.com/feathersjs/cli/issues/55)
838
- - support new feathers-authentication 1.0 and feathers-configuration 0.4? [\#54](https://github.com/feathersjs/cli/issues/54)
839
- - Support yarn for generating app [\#53](https://github.com/feathersjs/cli/issues/53)
840
- - Ability to add properties to existing models [\#52](https://github.com/feathersjs/cli/issues/52)
841
- - Ability to add properties to existing models [\#51](https://github.com/feathersjs/cli/issues/51)
842
- - Add option for creating application without static content \[Feature Request\] [\#49](https://github.com/feathersjs/cli/issues/49)
843
- - Error on Node version 7.1.0 [\#48](https://github.com/feathersjs/cli/issues/48)
844
- - Error when generating new service [\#47](https://github.com/feathersjs/cli/issues/47)
845
- - Removing services with the CLI [\#45](https://github.com/feathersjs/cli/issues/45)
846
- - jshint errors failing tests [\#43](https://github.com/feathersjs/cli/issues/43)
847
- - add slack hooks for \#activity [\#42](https://github.com/feathersjs/cli/issues/42)
848
- - Update dependencies: feathers-configuration [\#37](https://github.com/feathersjs/cli/issues/37)
849
- - Add service to manage file uploads [\#36](https://github.com/feathersjs/cli/issues/36)
850
- - Feathers doesn't exit when generating a Generic Service [\#35](https://github.com/feathersjs/cli/issues/35)
851
- - CamelCase service name variable if service name is a dash-separated string [\#34](https://github.com/feathersjs/cli/issues/34)
852
- - Don't run a continuous process, be transactional [\#33](https://github.com/feathersjs/cli/issues/33)
853
- - toLowerCase error [\#32](https://github.com/feathersjs/cli/issues/32)
854
- - Add default filters for real-time events if service is generated with authentication required [\#31](https://github.com/feathersjs/cli/issues/31)
855
- - Add command to list existing services [\#30](https://github.com/feathersjs/cli/issues/30)
856
- - Add command to generate auth secret [\#29](https://github.com/feathersjs/cli/issues/29)
857
- - Can't generate a new service \(Node 6.2.0 on Mac OS X 10.11.5\) [\#28](https://github.com/feathersjs/cli/issues/28)
858
- - Add rethinkdb support [\#23](https://github.com/feathersjs/cli/issues/23)
859
- - Check for latest version of the generator [\#22](https://github.com/feathersjs/cli/issues/22)
860
- - Remove Yeoman dependency [\#17](https://github.com/feathersjs/cli/issues/17)
861
- - Support update notifications [\#15](https://github.com/feathersjs/cli/issues/15)
862
- - Remove the "generate" command shortcut [\#14](https://github.com/feathersjs/cli/issues/14)
863
- - Generate a directory for the app [\#10](https://github.com/feathersjs/cli/issues/10)
864
- - Running a Feathers app isn't clear when in interactive mode [\#9](https://github.com/feathersjs/cli/issues/9)
865
- - Generate and run database migrations [\#6](https://github.com/feathersjs/cli/issues/6)
866
-
867
- **Merged pull requests:**
868
-
869
- - Update all dependencies 🌓 [\#61](https://github.com/feathersjs/cli/pull/61) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
870
- - Refactoring to use commander instead of Vorpal [\#59](https://github.com/feathersjs/cli/pull/59) ([daffl](https://github.com/daffl))
871
- - add alias `feathers g` for `feathers generate` [\#21](https://github.com/feathersjs/cli/pull/21) ([jeremyjs](https://github.com/jeremyjs))
872
-
873
- ## [v1.2.7](https://github.com/feathersjs/cli/tree/v1.2.7) (2016-05-18)
874
-
875
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.6...v1.2.7)
876
-
877
- **Closed issues:**
878
-
879
- - Throw a warning if someone tries to use a dependency name for the project [\#20](https://github.com/feathersjs/cli/issues/20)
880
- - Using a hyphen in service name silently fails. [\#19](https://github.com/feathersjs/cli/issues/19)
881
- - Generate Hooks [\#18](https://github.com/feathersjs/cli/issues/18)
882
-
883
- ## [v1.2.6](https://github.com/feathersjs/cli/tree/v1.2.6) (2016-04-12)
884
-
885
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.5...v1.2.6)
886
-
887
- **Fixed bugs:**
888
-
889
- - Can't generate a project on Linux Mint [\#11](https://github.com/feathersjs/cli/issues/11)
890
-
891
- ## [v1.2.5](https://github.com/feathersjs/cli/tree/v1.2.5) (2016-04-07)
892
-
893
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.4...v1.2.5)
894
-
895
- ## [v1.2.4](https://github.com/feathersjs/cli/tree/v1.2.4) (2016-04-03)
896
-
897
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.3...v1.2.4)
898
-
899
- ## [v1.2.3](https://github.com/feathersjs/cli/tree/v1.2.3) (2016-04-03)
900
-
901
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.2...v1.2.3)
902
-
903
- **Fixed bugs:**
904
-
905
- - UNMET PEER DEPENDENCY yo@\>=1.0.0 [\#13](https://github.com/feathersjs/cli/issues/13)
906
- - Disable yeoman updates [\#12](https://github.com/feathersjs/cli/issues/12)
907
-
908
- **Merged pull requests:**
909
-
910
- - Passing disableNotifyUpdate: true to generator options [\#16](https://github.com/feathersjs/cli/pull/16) ([derek-watson](https://github.com/derek-watson))
911
-
912
- ## [v1.2.2](https://github.com/feathersjs/cli/tree/v1.2.2) (2016-03-30)
913
-
914
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.2.1...v1.2.2)
915
-
916
- **Merged pull requests:**
917
-
918
- - bumping generator version [\#8](https://github.com/feathersjs/cli/pull/8) ([ekryski](https://github.com/ekryski))
919
-
920
- ## [v1.2.1](https://github.com/feathersjs/cli/tree/v1.2.1) (2016-03-29)
921
-
922
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.1.1...v1.2.1)
923
-
924
- **Closed issues:**
925
-
926
- - Support the plugin generator [\#4](https://github.com/feathersjs/cli/issues/4)
927
-
928
- **Merged pull requests:**
929
-
930
- - Process exits after running single commands issued from the command l… [\#7](https://github.com/feathersjs/cli/pull/7) ([derek-watson](https://github.com/derek-watson))
931
- - supporting "generate plugin" command via generator-feathers-plugin [\#5](https://github.com/feathersjs/cli/pull/5) ([derek-watson](https://github.com/derek-watson))
932
-
933
- ## [v1.1.1](https://github.com/feathersjs/cli/tree/v1.1.1) (2016-03-26)
934
-
935
- [Full Changelog](https://github.com/feathersjs/cli/compare/v1.1.0...v1.1.1)
936
-
937
- ## [v1.1.0](https://github.com/feathersjs/cli/tree/v1.1.0) (2016-03-26)
938
-
939
- [Full Changelog](https://github.com/feathersjs/cli/compare/05e52437fc3fe2b20bf7a2f2158445cf33f84d99...v1.1.0)
940
-
941
- **Fixed bugs:**
942
-
943
- - Fixing yeoman generator registration [\#3](https://github.com/feathersjs/cli/pull/3) ([derek-watson](https://github.com/derek-watson))
944
-
945
- **Closed issues:**
946
-
947
- - Errors when running generate [\#2](https://github.com/feathersjs/cli/issues/2)
948
-
949
-
950
-
951
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
11
+ * **cli:** Add generators for new Knex SQL database adapter ([#2673](https://github.com/feathersjs/feathers/issues/2673)) ([0fb2c0f](https://github.com/feathersjs/feathers/commit/0fb2c0f629116f71184b8698c383af8cfd149688))
12
+ * **cli:** Add hook generator ([#2667](https://github.com/feathersjs/feathers/issues/2667)) ([24e4bc0](https://github.com/feathersjs/feathers/commit/24e4bc04a67fadee0e6a96a8389d788faba5c305))
13
+ * **cli:** Add support for JavaScript to the new CLI ([#2668](https://github.com/feathersjs/feathers/issues/2668)) ([ebac587](https://github.com/feathersjs/feathers/commit/ebac587f7d00dc7607c3f546352d79f79b89a5d4))
14
+ * **cli:** Add typed client to a generated app ([#2669](https://github.com/feathersjs/feathers/issues/2669)) ([5b801b5](https://github.com/feathersjs/feathers/commit/5b801b5017ddc3eaa95622b539f51d605916bc86))
15
+ * **cli:** Initial Feathers v5 CLI and Pinion generator ([#2578](https://github.com/feathersjs/feathers/issues/2578)) ([7f59ae7](https://github.com/feathersjs/feathers/commit/7f59ae7f1471895ba8a82aa4702f1a23f71b7682))