@jsverse/transloco 7.0.0

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 (167) hide show
  1. package/CHANGELOG.md +1005 -0
  2. package/LICENSE +22 -0
  3. package/README.md +44 -0
  4. package/esm2022/index.mjs +20 -0
  5. package/esm2022/jsverse-transloco.mjs +5 -0
  6. package/esm2022/lib/browser-lang.mjs +28 -0
  7. package/esm2022/lib/get-fallbacks-loaders.mjs +13 -0
  8. package/esm2022/lib/helpers.mjs +104 -0
  9. package/esm2022/lib/lang-resolver.mjs +54 -0
  10. package/esm2022/lib/loader-component.component.mjs +21 -0
  11. package/esm2022/lib/resolve-loader.mjs +13 -0
  12. package/esm2022/lib/scope-resolver.mjs +24 -0
  13. package/esm2022/lib/shared.mjs +73 -0
  14. package/esm2022/lib/template-handler.mjs +28 -0
  15. package/esm2022/lib/transloco-fallback-strategy.mjs +26 -0
  16. package/esm2022/lib/transloco-lang.mjs +3 -0
  17. package/esm2022/lib/transloco-loading-template.mjs +3 -0
  18. package/esm2022/lib/transloco-missing-handler.mjs +18 -0
  19. package/esm2022/lib/transloco-scope.mjs +3 -0
  20. package/esm2022/lib/transloco-testing.module.mjs +76 -0
  21. package/esm2022/lib/transloco.config.mjs +37 -0
  22. package/esm2022/lib/transloco.directive.mjs +169 -0
  23. package/esm2022/lib/transloco.interceptor.mjs +17 -0
  24. package/esm2022/lib/transloco.loader.mjs +13 -0
  25. package/esm2022/lib/transloco.module.mjs +18 -0
  26. package/esm2022/lib/transloco.pipe.mjs +97 -0
  27. package/esm2022/lib/transloco.providers.mjs +92 -0
  28. package/esm2022/lib/transloco.service.mjs +579 -0
  29. package/esm2022/lib/transloco.transpiler.mjs +145 -0
  30. package/esm2022/lib/types.mjs +2 -0
  31. package/fesm2022/jsverse-transloco.mjs +1580 -0
  32. package/fesm2022/jsverse-transloco.mjs.map +1 -0
  33. package/index.d.ts +19 -0
  34. package/lib/browser-lang.d.ts +8 -0
  35. package/lib/get-fallbacks-loaders.d.ts +14 -0
  36. package/lib/helpers.d.ts +21 -0
  37. package/lib/lang-resolver.d.ts +32 -0
  38. package/lib/loader-component.component.d.ts +6 -0
  39. package/lib/resolve-loader.d.ts +10 -0
  40. package/lib/scope-resolver.d.ts +12 -0
  41. package/lib/shared.d.ts +17 -0
  42. package/lib/template-handler.d.ts +9 -0
  43. package/lib/transloco-fallback-strategy.d.ts +14 -0
  44. package/lib/transloco-lang.d.ts +2 -0
  45. package/lib/transloco-loading-template.d.ts +3 -0
  46. package/lib/transloco-missing-handler.d.ts +16 -0
  47. package/lib/transloco-scope.d.ts +3 -0
  48. package/lib/transloco-testing.module.d.ts +27 -0
  49. package/lib/transloco.config.d.ts +27 -0
  50. package/lib/transloco.directive.d.ts +50 -0
  51. package/lib/transloco.interceptor.d.ts +14 -0
  52. package/lib/transloco.loader.d.ts +15 -0
  53. package/lib/transloco.module.d.ts +8 -0
  54. package/lib/transloco.pipe.d.ts +23 -0
  55. package/lib/transloco.providers.d.ts +30 -0
  56. package/lib/transloco.service.d.ts +199 -0
  57. package/lib/transloco.transpiler.d.ts +58 -0
  58. package/lib/types.d.ts +45 -0
  59. package/package.json +54 -0
  60. package/schematics/src/assets/i18n/en.json +1 -0
  61. package/schematics/src/collection.json +59 -0
  62. package/schematics/src/component/index.d.ts +2 -0
  63. package/schematics/src/component/index.js +21 -0
  64. package/schematics/src/component/index.js.map +1 -0
  65. package/schematics/src/join/index.d.ts +3 -0
  66. package/schematics/src/join/index.js +79 -0
  67. package/schematics/src/join/index.js.map +1 -0
  68. package/schematics/src/join/schema.d.ts +28 -0
  69. package/schematics/src/join/schema.js +3 -0
  70. package/schematics/src/join/schema.js.map +1 -0
  71. package/schematics/src/join/schema.json +43 -0
  72. package/schematics/src/keys-manager/index.d.ts +5 -0
  73. package/schematics/src/keys-manager/index.js +97 -0
  74. package/schematics/src/keys-manager/index.js.map +1 -0
  75. package/schematics/src/keys-manager/schema.d.ts +19 -0
  76. package/schematics/src/keys-manager/schema.js +3 -0
  77. package/schematics/src/keys-manager/schema.js.map +1 -0
  78. package/schematics/src/keys-manager/schema.json +33 -0
  79. package/schematics/src/migrate/index.d.ts +3 -0
  80. package/schematics/src/migrate/index.js +21 -0
  81. package/schematics/src/migrate/index.js.map +1 -0
  82. package/schematics/src/migrate/ngx-translate-migration.d.ts +3 -0
  83. package/schematics/src/migrate/ngx-translate-migration.js +169 -0
  84. package/schematics/src/migrate/ngx-translate-migration.js.map +1 -0
  85. package/schematics/src/migrate/schema.d.ts +10 -0
  86. package/schematics/src/migrate/schema.js +3 -0
  87. package/schematics/src/migrate/schema.js.map +1 -0
  88. package/schematics/src/migrate/schema.json +23 -0
  89. package/schematics/src/ng-add/files/transloco-loader/transloco-loader.__ts__ +12 -0
  90. package/schematics/src/ng-add/files/transloco-module/transloco-root.module.__ts__ +24 -0
  91. package/schematics/src/ng-add/generators/http-loader.gen.d.ts +4 -0
  92. package/schematics/src/ng-add/generators/http-loader.gen.js +15 -0
  93. package/schematics/src/ng-add/generators/http-loader.gen.js.map +1 -0
  94. package/schematics/src/ng-add/generators/root-module.gen.d.ts +9 -0
  95. package/schematics/src/ng-add/generators/root-module.gen.js +31 -0
  96. package/schematics/src/ng-add/generators/root-module.gen.js.map +1 -0
  97. package/schematics/src/ng-add/generators/translation-files.gen.d.ts +4 -0
  98. package/schematics/src/ng-add/generators/translation-files.gen.js +23 -0
  99. package/schematics/src/ng-add/generators/translation-files.gen.js.map +1 -0
  100. package/schematics/src/ng-add/index.d.ts +3 -0
  101. package/schematics/src/ng-add/index.js +103 -0
  102. package/schematics/src/ng-add/index.js.map +1 -0
  103. package/schematics/src/ng-add/schema.d.ts +42 -0
  104. package/schematics/src/ng-add/schema.js +14 -0
  105. package/schematics/src/ng-add/schema.js.map +1 -0
  106. package/schematics/src/ng-add/schema.json +53 -0
  107. package/schematics/src/ng-migrate/index.d.ts +3 -0
  108. package/schematics/src/ng-migrate/index.js +14 -0
  109. package/schematics/src/ng-migrate/index.js.map +1 -0
  110. package/schematics/src/ng-migrate/ng-migrate.d.ts +5 -0
  111. package/schematics/src/ng-migrate/ng-migrate.js +106 -0
  112. package/schematics/src/ng-migrate/ng-migrate.js.map +1 -0
  113. package/schematics/src/ng-migrate/schema.d.ts +14 -0
  114. package/schematics/src/ng-migrate/schema.js +3 -0
  115. package/schematics/src/ng-migrate/schema.js.map +1 -0
  116. package/schematics/src/ng-migrate/schema.json +27 -0
  117. package/schematics/src/schematics.consts.d.ts +4 -0
  118. package/schematics/src/schematics.consts.js +8 -0
  119. package/schematics/src/schematics.consts.js.map +1 -0
  120. package/schematics/src/scope/index.d.ts +3 -0
  121. package/schematics/src/scope/index.js +101 -0
  122. package/schematics/src/scope/index.js.map +1 -0
  123. package/schematics/src/scope/schema.d.ts +28 -0
  124. package/schematics/src/scope/schema.js +3 -0
  125. package/schematics/src/scope/schema.js.map +1 -0
  126. package/schematics/src/scope/schema.json +84 -0
  127. package/schematics/src/split/index.d.ts +3 -0
  128. package/schematics/src/split/index.js +66 -0
  129. package/schematics/src/split/index.js.map +1 -0
  130. package/schematics/src/split/schema.d.ts +20 -0
  131. package/schematics/src/split/schema.js +3 -0
  132. package/schematics/src/split/schema.js.map +1 -0
  133. package/schematics/src/split/schema.json +35 -0
  134. package/schematics/src/types.d.ts +5 -0
  135. package/schematics/src/types.js +10 -0
  136. package/schematics/src/types.js.map +1 -0
  137. package/schematics/src/upgrade/index.d.ts +3 -0
  138. package/schematics/src/upgrade/index.js +19 -0
  139. package/schematics/src/upgrade/index.js.map +1 -0
  140. package/schematics/src/upgrade/schema.d.ts +6 -0
  141. package/schematics/src/upgrade/schema.js +3 -0
  142. package/schematics/src/upgrade/schema.js.map +1 -0
  143. package/schematics/src/upgrade/schema.json +16 -0
  144. package/schematics/src/upgrade/v2.d.ts +1 -0
  145. package/schematics/src/upgrade/v2.js +89 -0
  146. package/schematics/src/upgrade/v2.js.map +1 -0
  147. package/schematics/src/utils/array.d.ts +3 -0
  148. package/schematics/src/utils/array.js +12 -0
  149. package/schematics/src/utils/array.js.map +1 -0
  150. package/schematics/src/utils/config.d.ts +2 -0
  151. package/schematics/src/utils/config.js +13 -0
  152. package/schematics/src/utils/config.js.map +1 -0
  153. package/schematics/src/utils/find-module.d.ts +23 -0
  154. package/schematics/src/utils/find-module.js +110 -0
  155. package/schematics/src/utils/find-module.js.map +1 -0
  156. package/schematics/src/utils/package.d.ts +5 -0
  157. package/schematics/src/utils/package.js +19 -0
  158. package/schematics/src/utils/package.js.map +1 -0
  159. package/schematics/src/utils/projects.d.ts +8 -0
  160. package/schematics/src/utils/projects.js +56 -0
  161. package/schematics/src/utils/projects.js.map +1 -0
  162. package/schematics/src/utils/translations.d.ts +7 -0
  163. package/schematics/src/utils/translations.js +31 -0
  164. package/schematics/src/utils/translations.js.map +1 -0
  165. package/schematics/src/utils/transloco.d.ts +24 -0
  166. package/schematics/src/utils/transloco.js +93 -0
  167. package/schematics/src/utils/transloco.js.map +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1005 @@
1
+ # Changelog
2
+
3
+ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
+
5
+ # [7.0.0](https://github.com/jsverse/transloco/compare/transloco-6.0.4...transloco-7.0.0) (2024-03-23)
6
+
7
+
8
+ ### chore
9
+
10
+ * **transloco:** πŸ€– update package scope ([f8b6d58](https://github.com/jsverse/transloco/commit/f8b6d58f51d99fcb2912082fbefd95527a57e2e4))
11
+
12
+
13
+ ### Features
14
+
15
+ * **transloco:** 🎸 Improve params algo matching ([8447634](https://github.com/jsverse/transloco/commit/8447634588210771047c45072186f20867fd8a2f))
16
+
17
+
18
+ ### BREAKING CHANGES
19
+
20
+ * **transloco:** 🧨 The package is now published under the jsverse scope
21
+ * **transloco:** 🧨 All breaking changes are listed in the breaking changes document
22
+
23
+
24
+
25
+ ## [6.0.4](https://github.com/jsverse/transloco/compare/transloco-6.0.3...transloco-6.0.4) (2023-12-09)
26
+
27
+ ### Bug Fixes
28
+
29
+ - **transloco:** πŸ› providing the FunctionalTranspiler ([308438f](https://github.com/jsverse/transloco/commit/308438f7ae93ec3f7733b9b2cb2278f3aecacd33)), closes [#733](https://github.com/jsverse/transloco/issues/733)
30
+
31
+ ## [6.0.3](https://github.com/jsverse/transloco/compare/transloco-6.0.2...transloco-6.0.3) (2023-12-09)
32
+
33
+ ### Bug Fixes
34
+
35
+ - **transloco:** πŸ› export TranslocoOptions ([396151f](https://github.com/jsverse/transloco/commit/396151f441d12e3856451377b5c21d3b0310475c)), closes [#709](https://github.com/jsverse/transloco/issues/709)
36
+
37
+ ## [6.0.2](https://github.com/jsverse/transloco/compare/transloco-6.0.1...transloco-6.0.2) (2023-12-08)
38
+
39
+ ## [6.0.1](https://github.com/jsverse/transloco/compare/transloco-6.0.0...transloco-6.0.1) (2023-12-05)
40
+
41
+ - **transloco:** πŸ› Angular 17 ng-add ([b69f61e8](https://github.com/jsverse/transloco/commit/b69f61e8e8bfa406655061ad48f5a3cc8648a1d4)), closes [#729](https://github.com/jsverse/transloco/issues/729)
42
+
43
+ # [6.0.0](https://github.com/jsverse/transloco/compare/transloco-5.0.10...transloco-6.0.0) (2023-09-21)
44
+
45
+ ### BREAKING CHANGES
46
+
47
+ - **transloco:** 🧨 Update to flat v6 which is ESM
48
+
49
+ ## [5.0.10](https://github.com/jsverse/transloco/compare/transloco-5.0.9...transloco-5.0.10) (2023-09-20)
50
+
51
+ This version contains breaking changes, please use 5.0.7 until you are ready to migrate to v6.
52
+
53
+ - **transloco:** πŸ› migrate schematic improve "translate" pipe regex ([1d5cb65](https://github.com/jsverse/transloco/commit/1d5cb6535f86fe7bfd9f8558a9b80f325849a12a)), closes [#701](https://github.com/jsverse/transloco/issues/701)
54
+ - **transloco:** πŸ› split schematic doesn't update subfolders ([841e2def](https://github.com/jsverse/transloco/commit/841e2def5d78319901c27ab6db7b79ffc52bd126)), closes [#695](https://github.com/jsverse/transloco/issues/695)
55
+
56
+ ### BREAKING CHANGES
57
+
58
+ - **transloco:** 🧨 Update to flat v6 which is ESM
59
+
60
+ ## [5.0.9](https://github.com/jsverse/transloco/compare/transloco-5.0.8...transloco-5.0.9) (2023-09-17)
61
+
62
+ ### Bug Fixes
63
+
64
+ - **transloco:** πŸ› split scope schematics ([dfc5373](https://github.com/jsverse/transloco/commit/dfc537302564ec34f4f93bd974541e036d8c6983)), closes [#558](https://github.com/jsverse/transloco/issues/558)
65
+
66
+ This version contains breaking changes, please use 5.0.7 until you are ready to migrate to v6.
67
+
68
+ ### BREAKING CHANGES
69
+
70
+ - **transloco:** 🧨 Update to flat v6 which is ESM
71
+
72
+ ## [5.0.8](https://github.com/jsverse/transloco/compare/transloco-5.0.7...transloco-5.0.8) (2023-09-16)
73
+
74
+ ### Bug Fixes
75
+
76
+ This version contains breaking changes, please use 5.0.7 until you are ready to migrate to v6.
77
+
78
+ - **transloco:** πŸ› update flat to v6 ([7657b3d](https://github.com/jsverse/transloco/commit/7657b3de185b011bd35f815436da759aae33fc26)), closes [#570](https://github.com/jsverse/transloco/issues/570)
79
+
80
+ ### BREAKING CHANGES
81
+
82
+ - **transloco:** 🧨 Update to flat v6 which is ESM
83
+
84
+ ## [5.0.7](https://github.com/jsverse/transloco/compare/transloco-5.0.6...transloco-5.0.7) (2023-08-22)
85
+
86
+ ### Bug Fixes
87
+
88
+ - **transloco:** πŸ› replace structuredClone with json clone ([a76cd05](https://github.com/jsverse/transloco/commit/a76cd05fd71148c79cfc418e996ca908a47aeeb2)), closes [#688](https://github.com/jsverse/transloco/issues/688)
89
+
90
+ ## [5.0.6](https://github.com/jsverse/transloco/compare/transloco-5.0.5...transloco-5.0.6) (2023-08-05)
91
+
92
+ ## [5.0.5](https://github.com/jsverse/transloco/compare/transloco-5.0.4...transloco-5.0.5) (2023-08-05)
93
+
94
+ ### Bug Fixes
95
+
96
+ - **transloco:** πŸ› ng add in NgModule app ([ad7f8bd5](https://github.com/jsverse/transloco/commit/ad7f8bd57f7dd05dd75ab2549ed69ba60948849f))
97
+
98
+ ## [5.0.4](https://github.com/jsverse/transloco/compare/transloco-5.0.3...transloco-5.0.4) (2023-08-04)
99
+
100
+ ### Bug Fixes
101
+
102
+ - **transloco:** πŸ› latest version not installed in fresh project ([c8bb426](https://github.com/jsverse/transloco/commit/c8bb426955f63a862ccb8155f43c635979190931))
103
+
104
+ ## [5.0.3](https://github.com/jsverse/transloco/compare/transloco-5.0.2...transloco-5.0.3) (2023-08-02)
105
+
106
+ ### Bug Fixes
107
+
108
+ - **transloco:** πŸ› allow multiple functions functional transpiler ([#667](https://github.com/jsverse/transloco/issues/667)) ([5095f96](https://github.com/jsverse/transloco/commit/5095f96f7bca90f61902b5d02f18b5a3ce8edf20))
109
+
110
+ ## [5.0.2](https://github.com/jsverse/transloco/compare/transloco-5.0.1...transloco-5.0.2) (2023-07-31)
111
+
112
+ ## [5.0.1](https://github.com/jsverse/transloco/compare/transloco-5.0.0...transloco-5.0.1) (2023-07-31)
113
+
114
+ ### Bug Fixes
115
+
116
+ - **transloco:** πŸ› set transloco-utils dep version to 5 ([#675](https://github.com/jsverse/transloco/issues/675)) ([0463090](https://github.com/jsverse/transloco/commit/046309072d66115f6921019f04192978e7761b5e))
117
+
118
+ # [5.0.0](https://github.com/jsverse/transloco/compare/transloco-4.3.0...transloco-5.0.0) (2023-07-30)
119
+
120
+ ### Bug Fixes
121
+
122
+ - **transloco:** πŸ› add missing provider + make environment ([71d61d7](https://github.com/jsverse/transloco/commit/71d61d7eb0c7dba9bc60185ddd093e57256c6d61))
123
+ - **transloco:** πŸ› move to inject pattern and fix build ([8f9fe59](https://github.com/jsverse/transloco/commit/8f9fe598f6418620d94a73b84778c30ebe3bcc18))
124
+ - **transloco:** πŸ› multi scope handling ([ec96ca6](https://github.com/jsverse/transloco/commit/ec96ca69e6f3ec504c3a398842aa36e2f6c3d1ab))
125
+
126
+ ### chore
127
+
128
+ - πŸ€– upgrade to angular v16 ([#661](https://github.com/jsverse/transloco/issues/661)) ([08db7e7](https://github.com/jsverse/transloco/commit/08db7e7d1f64846fa0b07123dee8ff5bff20b4f0))
129
+
130
+ ### Code Refactoring
131
+
132
+ - **transloco:** πŸ’‘ remove type ([2f61221](https://github.com/jsverse/transloco/commit/2f61221bfe2b6eb5f58457d07f81677cda0b1853))
133
+
134
+ ### Features
135
+
136
+ - **transloco:** 🎸 upgrade to v16 ([72381f5](https://github.com/jsverse/transloco/commit/72381f5bc05d1917a1e0c010d92366a24ae8cc64)), closes [#646](https://github.com/jsverse/transloco/issues/646)
137
+ - **transloco:** 🎸 upgrade to v16 and standalone ([5f9e687](https://github.com/jsverse/transloco/commit/5f9e687d25679829a438de04a0acd255198f2f9b))
138
+
139
+ ### BREAKING CHANGES
140
+
141
+ - **transloco:** 🧨 Remove PersistStorage type
142
+ - **transloco:** 🧨 Minimum Angular version is now 16
143
+ - 🧨 Angular 16
144
+
145
+ # [4.3.0](https://github.com/jsverse/transloco/compare/transloco-4.2.7...transloco-4.3.0) (2023-06-10)
146
+
147
+ ### Bug Fixes
148
+
149
+ - **transloco:** πŸ› providers typings ([38e4981](https://github.com/jsverse/transloco/commit/38e4981db2e2f82dfbf081b27f8eba0b68143fdb)), closes [#658](https://github.com/jsverse/transloco/issues/658)
150
+
151
+ ### Features
152
+
153
+ - **transloco:** 🎸 providers functions ([528e548](https://github.com/jsverse/transloco/commit/528e548f747a76f027044fe4f97198e795872510))
154
+
155
+ ## [4.2.7](https://github.com/jsverse/transloco/compare/transloco-4.2.6...transloco-4.2.7) (2023-05-18)
156
+
157
+ ## [4.2.6](https://github.com/jsverse/transloco/compare/transloco-4.2.5...transloco-4.2.6) (2023-03-04)
158
+
159
+ ### Bug Fixes
160
+
161
+ - **transloco:** πŸ› fix message format delay ([#634](https://github.com/jsverse/transloco/issues/634)) ([aa92418](https://github.com/jsverse/transloco/commit/aa92418ab319b42fc42b32e0884c6054fa7ccf2c))
162
+
163
+ ## [4.2.5](https://github.com/jsverse/transloco/compare/transloco-4.2.4...transloco-4.2.5) (2023-02-21)
164
+
165
+ ### Bug Fixes
166
+
167
+ - **transloco:** update fs-extra and glob dependencies ([#631](https://github.com/jsverse/transloco/issues/631)) ([e19057f](https://github.com/jsverse/transloco/commit/e19057f34e3daddc40dc7059974f721b3ea8a30e))
168
+
169
+ ## [4.2.4](https://github.com/jsverse/transloco/compare/transloco-4.2.3...transloco-4.2.4) (2023-02-19)
170
+
171
+ ## [4.2.3](https://github.com/jsverse/transloco/compare/transloco-4.2.2...transloco-4.2.3) (2023-02-19)
172
+
173
+ ### Bug Fixes
174
+
175
+ - **transloco:** πŸ› add missing schematics deps ([581dda1](https://github.com/jsverse/transloco/commit/581dda1c4955ffa68f43ee0bfdef3ef2afc9f698)), closes [#623](https://github.com/jsverse/transloco/issues/623)
176
+
177
+ ## [4.2.2](https://github.com/jsverse/transloco/compare/transloco-4.2.1...transloco-4.2.2) (2023-01-06)
178
+
179
+ ### Bug Fixes
180
+
181
+ - **transloco:** add overload type in selectTranslateObject method ([#617](https://github.com/jsverse/transloco/issues/617)) ([071ca6b](https://github.com/jsverse/transloco/commit/071ca6b21bea872adaadba917484ca0190d4b051))
182
+
183
+ ## [4.2.1](https://github.com/jsverse/transloco/compare/transloco-4.2.0...transloco-4.2.1) (2022-12-10)
184
+
185
+ ### Bug Fixes
186
+
187
+ - **transloco**: πŸ› replace environment with isDveMode for v15 ([e4bc6c91](https://github.com/jsverse/transloco/commit/e4bc6c91cb04d8e2ff41269abb963f1c6eed0c93))
188
+
189
+ # [4.2.0](https://github.com/jsverse/transloco/compare/transloco-4.1.1...transloco-4.2.0) (2022-12-10)
190
+
191
+ ### Features
192
+
193
+ - **transloco:** 🎸 add translation key to transpile method ([#569](https://github.com/jsverse/transloco/issues/569)) ([3a19ba6](https://github.com/jsverse/transloco/commit/3a19ba6cde6a96c8d4af893b824400dd7217cd71)), closes [jsverse#568](https://github.com/jsverse/issues/568)
194
+ _Note:_ if you are using `@jsverse/transloco-messageformat` You'll need to update to 4.1.0 and above.
195
+
196
+ ## [4.1.2](https://github.com/jsverse/transloco/compare/transloco-4.1.1...transloco-4.1.2) (2022-12-10)
197
+
198
+ ### Bug Fixes
199
+
200
+ - **schematics:** set current directory as default project name ([#582](https://github.com/jsverse/transloco/issues/582)) ([89b213f9](https://github.com/jsverse/transloco/commit/89b213f9f3751d6414fb82aee0031e6863ed585f))
201
+
202
+ ## [4.1.1](https://github.com/jsverse/transloco/compare/transloco-4.1.0...transloco-4.1.1) (2022-07-13)
203
+
204
+ ### Bug Fixes
205
+
206
+ - **transloco:** key as array in translateObject throws ([#577](https://github.com/jsverse/transloco/issues/577)) ([5c8e90b](https://github.com/jsverse/transloco/commit/5c8e90b3ecf67106e3a22c33a9f82f990353d0bd))
207
+
208
+ # [4.1.0](https://github.com/jsverse/transloco/compare/transloco-4.0.0...transloco-4.1.0) (2022-06-04)
209
+
210
+ ### Features
211
+
212
+ - **transloco:** 🎸 export translateObject as a proxy to the TranslocoService.translateObject method ([#565](https://github.com/jsverse/transloco/issues/565)) ([26ef1a0](https://github.com/jsverse/transloco/commit/26ef1a0fb7f9dc564d280ced3290be87ae2fedc8))
213
+
214
+ # [4.0.0](https://github.com/jsverse/transloco/compare/transloco-3.2.0...transloco-4.0.0) (2022-03-23)
215
+
216
+ ### Features
217
+
218
+ - **transloco:** 🎸 upgrade to v13 ([d973668](https://github.com/jsverse/transloco/commit/d9736685caee6959b4af2b3659071e7a553d858c)), closes [#536](https://github.com/jsverse/transloco/issues/536)
219
+
220
+ ### BREAKING CHANGES
221
+
222
+ - **transloco:** 🧨 Minimum Angular version is now 13
223
+
224
+ # [3.2.0](https://github.com/jsverse/transloco/compare/transloco-3.1.4...transloco-3.2.0) (2022-03-19)
225
+
226
+ ### Features
227
+
228
+ - **transloco:** 🎸 add langChanged event ([50e374f](https://github.com/jsverse/transloco/commit/50e374f762665ba5d532cd3bd6e1653fe07420f6))
229
+
230
+ ## [3.1.4](https://github.com/jsverse/transloco/compare/transloco-3.1.3...transloco-3.1.4) (2022-02-15)
231
+
232
+ ### Bug Fixes
233
+
234
+ - **transloco:** πŸ› Add generic type default to Translate<T>() ([#545](https://github.com/jsverse/transloco/issues/545)) ([1a71d90](https://github.com/jsverse/transloco/commit/1a71d90b816a1297b1034dec48650a886a5caec2))
235
+
236
+ ## [3.1.3](https://github.com/jsverse/transloco/compare/transloco-3.1.2...transloco-3.1.3) (2022-01-22)
237
+
238
+ ## [3.1.2](https://github.com/jsverse/transloco/compare/transloco-3.1.1...transloco-3.1.2) (2022-01-20)
239
+
240
+ ### Bug Fixes
241
+
242
+ - **transloco:** πŸ› structural directive redundant calls ([32230d6](https://github.com/jsverse/transloco/commit/32230d640c36c16e71f331451315de78527ceb0c))
243
+
244
+ ## [3.1.1](https://github.com/jsverse/transloco/compare/transloco-3.1.0...transloco-3.1.1) (2021-11-19)
245
+
246
+ ### Bug Fixes
247
+
248
+ - **transloco:** πŸ› regular directive with ssr ([28f14af](https://github.com/jsverse/transloco/commit/28f14affbca431a1017f6f95da9ee2a5d4cdfdb5))
249
+
250
+ # [3.1.0](https://github.com/jsverse/transloco/compare/transloco-3.0.7...transloco-3.1.0) (2021-11-09)
251
+
252
+ ### Features
253
+
254
+ - **transloco:** 🎸 add a template context guard to directive ([#526](https://github.com/jsverse/transloco/issues/526)) ([48f924d](https://github.com/jsverse/transloco/commit/48f924d95b1761bab1cfe00686d96c787c7cf667))
255
+
256
+ ## [3.0.7](https://github.com/jsverse/transloco/compare/transloco-3.0.6...transloco-3.0.7) (2021-10-28)
257
+
258
+ ## [3.0.6](https://github.com/jsverse/transloco/compare/transloco-3.0.5...transloco-3.0.6) (2021-10-14)
259
+
260
+ ## [3.0.5](https://github.com/jsverse/transloco/compare/transloco-3.0.4...transloco-3.0.5) (2021-10-12)
261
+
262
+ ### Bug Fixes
263
+
264
+ - transloco fallback strategy class is not decorated ([#517](https://github.com/jsverse/transloco/issues/517)) ([e922982](https://github.com/jsverse/transloco/commit/e92298226995df953d7f91a3d1ee2cc0bf7b520f))
265
+
266
+ ## [3.0.4](https://github.com/jsverse/transloco/compare/transloco-3.0.3...transloco-3.0.4) (2021-10-12)
267
+
268
+ ## [3.0.3](https://github.com/jsverse/transloco/compare/transloco-3.0.2...transloco-3.0.3) (2021-10-10)
269
+
270
+ ### Bug Fixes
271
+
272
+ - **transloco:** πŸ› fix schematics ([627a565](https://github.com/jsverse/transloco/commit/627a565591ff83bbd504c5d07ee534c7670a2556)), closes [#516](https://github.com/jsverse/transloco/issues/516)
273
+
274
+ ## [3.0.2](https://github.com/jsverse/transloco/compare/transloco-3.0.1...transloco-3.0.2) (2021-10-07)
275
+
276
+ ### Bug Fixes
277
+
278
+ - **transloco:** πŸ› unexpected peerDependencies ([672e529](https://github.com/jsverse/transloco/commit/672e5294fd25e456229c800fd1ebf49e39fc88e4)), closes [#513](https://github.com/jsverse/transloco/issues/513)
279
+
280
+ ## [3.0.1](https://github.com/jsverse/transloco/compare/transloco-3.0.0...transloco-3.0.1) (2021-10-02)
281
+
282
+ ### [3.0.0](https://github.com/jsverse/transloco/compare/v2.23.3...transloco-3.0.0) (2021-09-30)
283
+
284
+ ### Bug Fixes
285
+
286
+ - πŸ› don't call the missing handler when given an empty key ([86fa12d](https://github.com/jsverse/transloco/commit/86fa12d09c235f5c34a81ee049f94b898e198280))
287
+
288
+ ### Features
289
+
290
+ - 🎸 supported passing params when reusing keys ([6db0d74](https://github.com/jsverse/transloco/commit/6db0d74d14e449d4f4f703ef3ee8a7dd97198b81)), closes [#259](https://github.com/jsverse/transloco/issues/259)
291
+ - **messageformat:** 🎸 add cache support ([773bc5c](https://github.com/jsverse/transloco/commit/773bc5c227ba63b556b8277161dc598a0c630010)), closes [#358](https://github.com/jsverse/transloco/issues/358)
292
+
293
+ ### [2.23.3](https://github.com/jsverse/transloco/compare/v2.23.2...v2.23.3) (2021-09-19)
294
+
295
+ ### Bug Fixes
296
+
297
+ - allow classes to be GCd ([#505](https://github.com/jsverse/transloco/issues/505)) ([8dbec56](https://github.com/jsverse/transloco/commit/8dbec56))
298
+
299
+ ### Tests
300
+
301
+ - πŸ’ fix pipe tests ([10c4e25](https://github.com/jsverse/transloco/commit/10c4e25))
302
+
303
+ ### [2.23.2](https://github.com/jsverse/transloco/compare/v2.23.1...v2.23.2) (2021-09-13)
304
+
305
+ ### Bug Fixes
306
+
307
+ - πŸ› load error not reported ([cd92b46](https://github.com/jsverse/transloco/commit/cd92b46)), closes [#290](https://github.com/jsverse/transloco/issues/290)
308
+ - πŸ› static lang is ignored in pipe ([28833b8](https://github.com/jsverse/transloco/commit/28833b8)), closes [#463](https://github.com/jsverse/transloco/issues/463)
309
+ - πŸ› support optional chaining ([e8e92ba](https://github.com/jsverse/transloco/commit/e8e92ba)), closes [#488](https://github.com/jsverse/transloco/issues/488)
310
+
311
+ ### [2.23.1](https://github.com/jsverse/transloco/compare/v2.23.0...v2.23.1) (2021-09-11)
312
+
313
+ ### Bug Fixes
314
+
315
+ - πŸ› ng-add wrong environment path ([75d4bd0](https://github.com/jsverse/transloco/commit/75d4bd0)), closes [#332](https://github.com/jsverse/transloco/issues/332)
316
+
317
+ ## [2.23.0](https://github.com/jsverse/transloco/compare/v2.22.0...v2.23.0) (2021-09-07)
318
+
319
+ ### Bug Fixes
320
+
321
+ - allow `TranslocoService` to be garbage collected ([#473](https://github.com/jsverse/transloco/issues/473)) ([3650240](https://github.com/jsverse/transloco/commit/3650240))
322
+ - parser lang ([#494](https://github.com/jsverse/transloco/issues/494)) ([ffeb05e](https://github.com/jsverse/transloco/commit/ffeb05e))
323
+
324
+ ### Features
325
+
326
+ - add possibility of override `getTranslateFn` ([#492](https://github.com/jsverse/transloco/issues/492)) ([7b49bbd](https://github.com/jsverse/transloco/commit/7b49bbd))
327
+
328
+ ## [2.22.0](https://github.com/jsverse/transloco/compare/v2.21.0...v2.22.0) (2021-07-01)
329
+
330
+ ### Features
331
+
332
+ - 🎸 expose currentLang in structural directive ([#380](https://github.com/jsverse/transloco/issues/380)) ([77b0567](https://github.com/jsverse/transloco/commit/77b0567)), closes [jsverse/transloco#376](https://github.com/jsverse/transloco/issues/376)
333
+ - 🎸 update schematics id to v12 ([86e896d](https://github.com/jsverse/transloco/commit/86e896d))
334
+ - allow to specify options when setting translations by key ([#464](https://github.com/jsverse/transloco/issues/464)) ([e7d97e6](https://github.com/jsverse/transloco/commit/e7d97e6))
335
+
336
+ ## [2.21.0](https://github.com/jsverse/transloco/compare/v2.20.1...v2.21.0) (2021-05-26)
337
+
338
+ ### Bug Fixes
339
+
340
+ - πŸ› update angular peer dep ([6b96f12](https://github.com/jsverse/transloco/commit/6b96f12))
341
+ - directly specify location of package.json missing i18n config ([#401](https://github.com/jsverse/transloco/issues/401)) ([54ee98a](https://github.com/jsverse/transloco/commit/54ee98a))
342
+
343
+ ### Features
344
+
345
+ - **locale:** support default currency config ([#423](https://github.com/jsverse/transloco/issues/423)) ([463b170](https://github.com/jsverse/transloco/commit/463b170))
346
+
347
+ ### [2.20.1](https://github.com/jsverse/transloco/compare/v2.20.0...v2.20.1) (2021-02-28)
348
+
349
+ ### Bug Fixes
350
+
351
+ - language fallback strategy ([#390](https://github.com/jsverse/transloco/issues/390)) ([92a28b4](https://github.com/jsverse/transloco/commit/92a28b4))
352
+
353
+ ## [2.20.0](https://github.com/jsverse/transloco/compare/v2.19.2...v2.20.0) (2020-12-17)
354
+
355
+ ### Bug Fixes
356
+
357
+ - πŸ› service not initialized in testing module ([#382](https://github.com/jsverse/transloco/issues/382)) ([08db253](https://github.com/jsverse/transloco/commit/08db253))
358
+ - πŸ› update peer to support angular 11 ([6f3f973](https://github.com/jsverse/transloco/commit/6f3f973)), closes [#378](https://github.com/jsverse/transloco/issues/378)
359
+ - schematics join ([#348](https://github.com/jsverse/transloco/issues/348)) ([174f178](https://github.com/jsverse/transloco/commit/174f178))
360
+
361
+ ### Features
362
+
363
+ - 🎸 transpile array values ([#383](https://github.com/jsverse/transloco/issues/383)) ([fc139e0](https://github.com/jsverse/transloco/commit/fc139e0))
364
+
365
+ ### [2.19.3](https://github.com/jsverse/transloco/compare/v2.19.2...v2.19.3) (2020-12-06)
366
+
367
+ ### Bug Fixes
368
+
369
+ - πŸ› update peer to support angular 11 ([6f3f973](https://github.com/jsverse/transloco/commit/6f3f973)), closes [#378](https://github.com/jsverse/transloco/issues/378)
370
+
371
+ ### [2.19.2](https://github.com/jsverse/transloco/compare/v2.19.1...v2.19.2) (2020-12-01)
372
+
373
+ ### Bug Fixes
374
+
375
+ - πŸ› schematics keys manager install, support yarn ([d923542](https://github.com/jsverse/transloco/commit/d923542))
376
+ - **tests:** fix failing unit and e2e tests ([#361](https://github.com/jsverse/transloco/issues/361)) ([43ff362](https://github.com/jsverse/transloco/commit/43ff362))
377
+
378
+ ### [2.19.1](https://github.com/jsverse/transloco/compare/v2.19.0...v2.19.1) (2020-08-22)
379
+
380
+ ### Bug Fixes
381
+
382
+ - πŸ› pipe key type in strict mode ([faa58a5](https://github.com/jsverse/transloco/commit/faa58a5)), closes [#311](https://github.com/jsverse/transloco/issues/311)
383
+ - πŸ› select translation on lang change ([f2e5415](https://github.com/jsverse/transloco/commit/f2e5415))
384
+
385
+ ### Tests
386
+
387
+ - πŸ’ update tests ([427c99f](https://github.com/jsverse/transloco/commit/427c99f))
388
+
389
+ ## [2.19.0](https://github.com/jsverse/transloco/compare/v2.18.4...v2.19.0) (2020-08-18)
390
+
391
+ ### Features
392
+
393
+ - 🎸 Add interpolation to configuration ([#330](https://github.com/jsverse/transloco/issues/330)) ([cf07bfc](https://github.com/jsverse/transloco/commit/cf07bfc))
394
+
395
+ ### [2.18.4](https://github.com/jsverse/transloco/compare/v2.18.3...v2.18.4) (2020-08-07)
396
+
397
+ ### Bug Fixes
398
+
399
+ - πŸ› Put transloco.module in its own folder ([#319](https://github.com/jsverse/transloco/issues/319)) ([b54be7e](https://github.com/jsverse/transloco/commit/b54be7e))
400
+
401
+ ### [2.18.3](https://github.com/jsverse/transloco/compare/v2.18.2...v2.18.3) (2020-07-22)
402
+
403
+ ### Bug Fixes
404
+
405
+ - πŸ› remove unused group naming in regex ([0258c07](https://github.com/jsverse/transloco/commit/0258c07)), closes [#313](https://github.com/jsverse/transloco/issues/313)
406
+
407
+ ### [2.18.2](https://github.com/jsverse/transloco/compare/v2.18.1...v2.18.2) (2020-07-16)
408
+
409
+ ### Bug Fixes
410
+
411
+ - πŸ› add injectable decorator ([94bb9ee](https://github.com/jsverse/transloco/commit/94bb9ee))
412
+
413
+ ### [2.18.1](https://github.com/jsverse/transloco/compare/v2.18.0...v2.18.1) (2020-07-16)
414
+
415
+ ### Bug Fixes
416
+
417
+ - πŸ› export the functional transpiler ([2fc1a4f](https://github.com/jsverse/transloco/commit/2fc1a4f))
418
+
419
+ ## [2.18.0](https://github.com/jsverse/transloco/compare/v2.17.5...v2.18.0) (2020-07-16)
420
+
421
+ ### Features
422
+
423
+ - 🎸 functional transpiler ([d3c5262](https://github.com/jsverse/transloco/commit/d3c5262))
424
+
425
+ ### [2.17.5](https://github.com/jsverse/transloco/compare/v2.17.4...v2.17.5) (2020-07-11)
426
+
427
+ ### Bug Fixes
428
+
429
+ - πŸ› update keys manager installation to latest version ([#308](https://github.com/jsverse/transloco/issues/308)) ([d6f6526](https://github.com/jsverse/transloco/commit/d6f6526))
430
+
431
+ ### [2.17.4](https://github.com/jsverse/transloco/compare/v2.17.2...v2.17.4) (2020-07-07)
432
+
433
+ ### Bug Fixes
434
+
435
+ - πŸ› angular cli installing old transloco version ([79f8e10](https://github.com/jsverse/transloco/commit/79f8e10)), closes [#304](https://github.com/jsverse/transloco/issues/304)
436
+ - πŸ› Angular v10 BC fixes ([84ad417](https://github.com/jsverse/transloco/commit/84ad417))
437
+
438
+ ### [2.17.3](https://github.com/jsverse/transloco/compare/v2.17.2...v2.17.3) (2020-06-28)
439
+
440
+ ### Bug Fixes
441
+
442
+ - πŸ› Angular v10 BC fixes ([84ad417](https://github.com/jsverse/transloco/commit/84ad417))
443
+
444
+ ### [2.17.2](https://github.com/jsverse/transloco/compare/v2.17.1...v2.17.2) (2020-06-04)
445
+
446
+ ### Bug Fixes
447
+
448
+ - πŸ› getBrowserLang throws error when browser has no lang ([52c86c0](https://github.com/jsverse/transloco/commit/52c86c0)), closes [#289](https://github.com/jsverse/transloco/issues/289)
449
+
450
+ ### [2.17.1](https://github.com/jsverse/transloco/compare/v2.17.0...v2.17.1) (2020-05-01)
451
+
452
+ ### Bug Fixes
453
+
454
+ - πŸ› migration script throws error when no files found ([db82974](https://github.com/jsverse/transloco/commit/db82974))
455
+
456
+ ## [2.17.0](https://github.com/jsverse/transloco/compare/v2.16.1...v2.17.0) (2020-04-24)
457
+
458
+ ### Bug Fixes
459
+
460
+ - πŸ› don't display loading template if translations were load ([#273](https://github.com/jsverse/transloco/issues/273)) ([c9214ad](https://github.com/jsverse/transloco/commit/c9214ad))
461
+
462
+ ### Features
463
+
464
+ - 🎸 support translating key-params map ([b261688](https://github.com/jsverse/transloco/commit/b261688)), closes [#272](https://github.com/jsverse/transloco/issues/272)
465
+
466
+ ### [2.16.1](https://github.com/jsverse/transloco/compare/v2.15.0...v2.16.1) (2020-04-23)
467
+
468
+ ## [2.14.0](https://github.com/jsverse/transloco/compare/v2.13.5...v2.14.0) (2020-03-14)
469
+
470
+ ### Features
471
+
472
+ - 🎸 Add to missingHandler the translation's parameter(s) ([#255](https://github.com/jsverse/transloco/issues/255)) ([73256ce](https://github.com/jsverse/transloco/commit/73256ce))
473
+
474
+ ### [2.13.5](https://github.com/jsverse/transloco/compare/v2.13.4...v2.13.5) (2020-03-01)
475
+
476
+ ### Bug Fixes
477
+
478
+ - πŸ› ngx migration support new line in pipes ([00f1eae](https://github.com/jsverse/transloco/commit/00f1eae)), closes [#244](https://github.com/jsverse/transloco/issues/244)
479
+ - πŸ› set fallback translation ([ff34773](https://github.com/jsverse/transloco/commit/ff34773)), closes [#232](https://github.com/jsverse/transloco/issues/232)
480
+
481
+ ### [2.13.4](https://github.com/jsverse/transloco/compare/v2.13.3...v2.13.4) (2020-02-29)
482
+
483
+ ### Bug Fixes
484
+
485
+ - **types:** Add additional formatting options ([#247](https://github.com/jsverse/transloco/issues/247)) ([05b6d79](https://github.com/jsverse/transloco/commit/05b6d79))
486
+ - πŸ› update peed dependencies ([a1a813a](https://github.com/jsverse/transloco/commit/a1a813a))
487
+
488
+ ### [2.13.3](https://github.com/jsverse/transloco/compare/v2.13.2...v2.13.3) (2020-02-12)
489
+
490
+ ### [2.13.2](https://github.com/jsverse/transloco/compare/v2.13.1...v2.13.2) (2020-02-03)
491
+
492
+ ### [2.13.1](https://github.com/jsverse/transloco/compare/v2.13.0...v2.13.1) (2020-02-02)
493
+
494
+ ### Bug Fixes
495
+
496
+ - πŸ› testing module should work with ivy ([2a68be7](https://github.com/jsverse/transloco/commit/2a68be7))
497
+
498
+ ## [2.13.0](https://github.com/jsverse/transloco/compare/v2.12.4...v2.13.0) (2020-01-25)
499
+
500
+ ### Features
501
+
502
+ - 🎸 add support for getting config from path ([31c180a](https://github.com/jsverse/transloco/commit/31c180a))
503
+ - 🎸 support inline loader for select translate ([#225](https://github.com/jsverse/transloco/issues/225)) ([a2b1867](https://github.com/jsverse/transloco/commit/a2b1867))
504
+
505
+ ### [2.12.3](https://github.com/jsverse/transloco/compare/v2.12.2...v2.12.3) (2020-01-01)
506
+
507
+ ### Bug Fixes
508
+
509
+ - πŸ› same fallback lang should not load again ([#211](https://github.com/jsverse/transloco/issues/211)) ([5498dee](https://github.com/jsverse/transloco/commit/5498dee)), closes [#210](https://github.com/jsverse/transloco/issues/210)
510
+
511
+ ### [2.12.2](https://github.com/jsverse/transloco/compare/v2.12.1...v2.12.2) (2019-12-24)
512
+
513
+ ### Bug Fixes
514
+
515
+ - πŸ› select translate object not working with scopes ([32e1ad7](https://github.com/jsverse/transloco/commit/32e1ad7)), closes [#207](https://github.com/jsverse/transloco/issues/207)
516
+
517
+ ### [2.12.1](https://github.com/jsverse/transloco/compare/v2.12.0...v2.12.1) (2019-12-12)
518
+
519
+ ### Bug Fixes
520
+
521
+ - πŸ› deprecate provideTranslocoConfig ([#198](https://github.com/jsverse/transloco/issues/198)) ([a8957d2](https://github.com/jsverse/transloco/commit/a8957d2))
522
+
523
+ ## [2.12.0](https://github.com/jsverse/transloco/compare/v2.11.0...v2.12.0) (2019-12-11)
524
+
525
+ ### Bug Fixes
526
+
527
+ - πŸ› pipe return empty string by default ([#192](https://github.com/jsverse/transloco/issues/192)) ([156cd62](https://github.com/jsverse/transloco/commit/156cd62))
528
+ - πŸ› select translations with scope should listen to lang change ([6031046](https://github.com/jsverse/transloco/commit/6031046))
529
+
530
+ ### Features
531
+
532
+ - **transloco:** implement provideTranslocoConfig method ([#196](https://github.com/jsverse/transloco/issues/196)) ([2a755ae](https://github.com/jsverse/transloco/commit/2a755ae)), closes [#195](https://github.com/jsverse/transloco/issues/195)
533
+
534
+ ### [2.11.2](https://github.com/jsverse/transloco/compare/v2.11.0...v2.11.2) (2019-12-09)
535
+
536
+ ### Bug Fixes
537
+
538
+ - πŸ› pipe return empty string by default ([#192](https://github.com/jsverse/transloco/issues/192)) ([156cd62](https://github.com/jsverse/transloco/commit/156cd62))
539
+ - πŸ› select translations with scope should listen to lang change ([6031046](https://github.com/jsverse/transloco/commit/6031046))
540
+
541
+ ### [2.11.1](https://github.com/jsverse/transloco/compare/v2.11.0...v2.11.1) (2019-12-07)
542
+
543
+ ### Bug Fixes
544
+
545
+ - πŸ› select translations with scope should listen to lang change ([6031046](https://github.com/jsverse/transloco/commit/6031046))
546
+
547
+ ## [2.11.0](https://github.com/jsverse/transloco/compare/v2.8.0...v2.11.0) (2019-12-06)
548
+
549
+ ### Bug Fixes
550
+
551
+ - πŸ› preSaveTranslation should get the flattend object ([9174141](https://github.com/jsverse/transloco/commit/9174141)), closes [#145](https://github.com/jsverse/transloco/issues/145)
552
+ - πŸ› schematics scope useValue type ([2a2873c](https://github.com/jsverse/transloco/commit/2a2873c))
553
+ - export TranslocoMissingHandlerData ([#174](https://github.com/jsverse/transloco/issues/174)) ([c32d589](https://github.com/jsverse/transloco/commit/c32d589))
554
+ - Provide multiple values for TRANSLOCO_SCOPE to support lazy loading multiple json files ([#184](https://github.com/jsverse/transloco/issues/184)) ([fa11baa](https://github.com/jsverse/transloco/commit/fa11baa))
555
+
556
+ ### Features
557
+
558
+ - 🎸 add inline loader flag to scope ([#175](https://github.com/jsverse/transloco/issues/175)) ([8c1383e](https://github.com/jsverse/transloco/commit/8c1383e))
559
+ - 🎸 schmeatics:join support ignore/include default lang ([7e48271](https://github.com/jsverse/transloco/commit/7e48271))
560
+
561
+ ## [2.10.0](https://github.com/jsverse/transloco/compare/v2.8.0...v2.10.0) (2019-12-03)
562
+
563
+ ### Bug Fixes
564
+
565
+ - πŸ› preSaveTranslation should get the flattend object ([9174141](https://github.com/jsverse/transloco/commit/9174141)), closes [#145](https://github.com/jsverse/transloco/issues/145)
566
+ - πŸ› schematics scope useValue type ([2a2873c](https://github.com/jsverse/transloco/commit/2a2873c))
567
+ - export TranslocoMissingHandlerData ([#174](https://github.com/jsverse/transloco/issues/174)) ([c32d589](https://github.com/jsverse/transloco/commit/c32d589))
568
+
569
+ ### Features
570
+
571
+ - 🎸 add inline loader flag to scope ([#175](https://github.com/jsverse/transloco/issues/175)) ([8c1383e](https://github.com/jsverse/transloco/commit/8c1383e))
572
+
573
+ ## [2.9.0](https://github.com/jsverse/transloco/compare/v2.8.0...v2.9.0) (2019-11-27)
574
+
575
+ ### Features
576
+
577
+ - 🎸 add inline loader flag to scope ([#175](https://github.com/jsverse/transloco/issues/175)) ([8c1383e](https://github.com/jsverse/transloco/commit/8c1383e))
578
+
579
+ ## [2.8.0](https://github.com/jsverse/transloco/compare/v2.7.0...v2.8.0) (2019-11-26)
580
+
581
+ ### Features
582
+
583
+ - 🎸 pass scope name to loader ([c32b10c](https://github.com/jsverse/transloco/commit/c32b10c))
584
+
585
+ ## [2.7.0](https://github.com/jsverse/transloco/compare/v2.6.0...v2.7.0) (2019-11-25)
586
+
587
+ ### Bug Fixes
588
+
589
+ - πŸ› ng-add: skip translation files creation if exist ([#163](https://github.com/jsverse/transloco/issues/163)) ([a9c1bcf](https://github.com/jsverse/transloco/commit/a9c1bcf))
590
+ - πŸ› remove missing keys warnings in tests ([#169](https://github.com/jsverse/transloco/issues/169)) ([741d356](https://github.com/jsverse/transloco/commit/741d356))
591
+
592
+ ### Features
593
+
594
+ - access to active language and up-to-date config in MissingHandler ([#167](https://github.com/jsverse/transloco/issues/167)) ([30af5c5](https://github.com/jsverse/transloco/commit/30af5c5)), closes [#164](https://github.com/jsverse/transloco/issues/164)
595
+
596
+ ### [2.6.2](https://github.com/jsverse/transloco/compare/v2.6.1...v2.6.2) (2019-11-23)
597
+
598
+ ### Bug Fixes
599
+
600
+ - πŸ› remove missing keys warnings in tests ([#169](https://github.com/jsverse/transloco/issues/169)) ([741d356](https://github.com/jsverse/transloco/commit/741d356))
601
+
602
+ ### [2.6.1](https://github.com/jsverse/transloco/compare/v2.6.0...v2.6.1) (2019-11-20)
603
+
604
+ ### Bug Fixes
605
+
606
+ - πŸ› ng-add: skip translation files creation if exist ([#163](https://github.com/jsverse/transloco/issues/163)) ([a9c1bcf](https://github.com/jsverse/transloco/commit/a9c1bcf))
607
+
608
+ ## [2.6.0](https://github.com/jsverse/transloco/compare/v2.5.2...v2.6.0) (2019-11-17)
609
+
610
+ ### Features
611
+
612
+ - 🎸 add schematics migration script from angular ([#151](https://github.com/jsverse/transloco/issues/151)) ([bc07dfa](https://github.com/jsverse/transloco/commit/bc07dfa))
613
+ - 🎸 allow changing the fallback languages dynamically ([2719981](https://github.com/jsverse/transloco/commit/2719981))
614
+
615
+ ### [2.5.2](https://github.com/jsverse/transloco/compare/v2.5.1...v2.5.2) (2019-11-05)
616
+
617
+ ### Bug Fixes
618
+
619
+ - πŸ› remove default langs ([d9b6b26](https://github.com/jsverse/transloco/commit/d9b6b26))
620
+
621
+ ### [2.5.1](https://github.com/jsverse/transloco/compare/v2.5.0...v2.5.1) (2019-11-05)
622
+
623
+ ### Bug Fixes
624
+
625
+ - πŸ› add utils ([c6233b7](https://github.com/jsverse/transloco/commit/c6233b7))
626
+
627
+ ## [2.5.0](https://github.com/jsverse/transloco/compare/v2.4.0...v2.5.0) (2019-11-05)
628
+
629
+ ### Bug Fixes
630
+
631
+ - πŸ› schematics scope ignore routing.module file ([57dbcd5](https://github.com/jsverse/transloco/commit/57dbcd5))
632
+
633
+ ### Features
634
+
635
+ - 🎸 inline-loader support any kind of promise ([34bc788](https://github.com/jsverse/transloco/commit/34bc788))
636
+ - 🎸 schematics command to install keys manager ([38c885b](https://github.com/jsverse/transloco/commit/38c885b))
637
+
638
+ ## [2.4.0](https://github.com/jsverse/transloco/compare/v2.3.1...v2.4.0) (2019-11-01)
639
+
640
+ ### Features
641
+
642
+ - 🎸 add scope to event payload ([f70db69](https://github.com/jsverse/transloco/commit/f70db69))
643
+
644
+ ### [2.3.1](https://github.com/jsverse/transloco/compare/v2.3.0...v2.3.1) (2019-10-30)
645
+
646
+ ### Bug Fixes
647
+
648
+ - πŸ› predavetranslation should always be flat ([2f12e71](https://github.com/jsverse/transloco/commit/2f12e71)), closes [#145](https://github.com/jsverse/transloco/issues/145)
649
+
650
+ ## [2.3.0](https://github.com/jsverse/transloco/compare/v2.2.2...v2.3.0) (2019-10-25)
651
+
652
+ ### Features
653
+
654
+ - 🎸 add logMissingKey option to missing handler ([c2d368b](https://github.com/jsverse/transloco/commit/c2d368b))
655
+
656
+ ### [2.2.2](https://github.com/jsverse/transloco/compare/v2.2.1...v2.2.2) (2019-10-21)
657
+
658
+ ### Bug Fixes
659
+
660
+ - πŸ› remove redundant dep ([dad9269](https://github.com/jsverse/transloco/commit/dad9269))
661
+
662
+ ### [2.2.1](https://github.com/jsverse/transloco/compare/v2.2.0...v2.2.1) (2019-10-17)
663
+
664
+ ### Bug Fixes
665
+
666
+ - πŸ› protect unsubscribing in pipe ([b55bd59](https://github.com/jsverse/transloco/commit/b55bd59)), closes [#137](https://github.com/jsverse/transloco/issues/137)
667
+
668
+ ## [2.2.0](https://github.com/jsverse/transloco/compare/v2.1.2...v2.2.0) (2019-10-14)
669
+
670
+ ### Features
671
+
672
+ - 🎸 add merge translation files command ([28f1af9](https://github.com/jsverse/transloco/commit/28f1af9))
673
+ - 🎸 add spill schematics command ([f3ad130](https://github.com/jsverse/transloco/commit/f3ad130))
674
+ - 🎸 inline loaders ([1648de4](https://github.com/jsverse/transloco/commit/1648de4))
675
+
676
+ ### Tests
677
+
678
+ - πŸ’ schematics spill command ([d57fa82](https://github.com/jsverse/transloco/commit/d57fa82))
679
+ - πŸ’ test schematics merge command ([5484520](https://github.com/jsverse/transloco/commit/5484520))
680
+
681
+ ### [2.1.2](https://github.com/jsverse/transloco/compare/v2.1.1...v2.1.2) (2019-10-11)
682
+
683
+ ### Bug Fixes
684
+
685
+ - πŸ› inline lang for pipe ([72082c0](https://github.com/jsverse/transloco/commit/72082c0))
686
+
687
+ ### Tests
688
+
689
+ - πŸ’ refactor and add specs ([ae7210a](https://github.com/jsverse/transloco/commit/ae7210a))
690
+
691
+ ### [2.1.1](https://github.com/jsverse/transloco/compare/v2.1.0...v2.1.1) (2019-10-05)
692
+
693
+ ### Bug Fixes
694
+
695
+ - πŸ› add key prefix when translating scope ([#116](https://github.com/jsverse/transloco/issues/116)) ([a84ceb3](https://github.com/jsverse/transloco/commit/a84ceb3))
696
+
697
+ ## [2.1.0](https://github.com/jsverse/transloco/compare/v2.0.4...v2.1.0) (2019-10-04)
698
+
699
+ ### Features
700
+
701
+ - 🎸 alias pr merge fix ([7e3ab3f](https://github.com/jsverse/transloco/commit/7e3ab3f))
702
+
703
+ ### [2.0.4](https://github.com/jsverse/transloco/compare/v2.0.3...v2.0.4) (2019-10-04)
704
+
705
+ ### Bug Fixes
706
+
707
+ - πŸ› fix type in the structural directive ([3144b51](https://github.com/jsverse/transloco/commit/3144b51))
708
+
709
+ ### Tests
710
+
711
+ - πŸ’ fix messageformat spec ([eebd8a4](https://github.com/jsverse/transloco/commit/eebd8a4))
712
+
713
+ ### [2.0.3](https://github.com/jsverse/transloco/compare/v2.0.2...v2.0.3) (2019-10-03)
714
+
715
+ ### [2.0.2](https://github.com/jsverse/transloco/compare/v2.0.1...v2.0.2) (2019-10-03)
716
+
717
+ ### Bug Fixes
718
+
719
+ - πŸ› fix v2 upgrade script ([e390ae4](https://github.com/jsverse/transloco/commit/e390ae4))
720
+
721
+ ### [2.0.1](https://github.com/jsverse/transloco/compare/v2.0.0...v2.0.1) (2019-10-02)
722
+
723
+ ### Bug Fixes
724
+
725
+ - πŸ› missing handler fix allow empty values in pipe ([2efbe6c](https://github.com/jsverse/transloco/commit/2efbe6c))
726
+
727
+ ## [2.0.0](https://github.com/jsverse/transloco/compare/v1.7.8...v2.0.0) (2019-10-02)
728
+
729
+ ### Bug Fixes
730
+
731
+ - πŸ› ng-add: fix hard coded fallbackLang ([#90](https://github.com/jsverse/transloco/issues/90)) ([9b1239f](https://github.com/jsverse/transloco/commit/9b1239f))
732
+ - schematics ng-add availabeLangs ([8b6424d](https://github.com/jsverse/transloco/commit/8b6424d))
733
+
734
+ ### Features
735
+
736
+ - 🎸 change structural to function ([1945686](https://github.com/jsverse/transloco/commit/1945686))
737
+ - 🎸 missing translation fallback ([8151c24](https://github.com/jsverse/transloco/commit/8151c24))
738
+ - 🎸 v2 changes ([430fadf](https://github.com/jsverse/transloco/commit/430fadf))
739
+ - πŸ€– Add schematics for transloco scope ([#79](https://github.com/jsverse/transloco/issues/79)) ([aea9495](https://github.com/jsverse/transloco/commit/aea9495))
740
+
741
+ ### Tests
742
+
743
+ - πŸ’ add fallback specs ([d5d91e6](https://github.com/jsverse/transloco/commit/d5d91e6))
744
+ - πŸ’ update lazy spec ([ab2e627](https://github.com/jsverse/transloco/commit/ab2e627))
745
+
746
+ ### BREAKING CHANGES
747
+
748
+ - See in BREAKING_CHANGES.md file
749
+
750
+ ### [1.7.9](https://github.com/jsverse/transloco/compare/v1.7.8...v1.7.9) (2019-09-17)
751
+
752
+ ### [1.7.8](https://github.com/jsverse/transloco/compare/v1.7.7...v1.7.8) (2019-09-11)
753
+
754
+ ### Bug Fixes
755
+
756
+ - πŸ› update migration script ([c7510f7](https://github.com/jsverse/transloco/commit/c7510f7))
757
+
758
+ ### [1.7.7](https://github.com/jsverse/transloco/compare/v1.7.6...v1.7.7) (2019-09-11)
759
+
760
+ ### Bug Fixes
761
+
762
+ - **testing:** set prodmode to true by default ([5995b75](https://github.com/jsverse/transloco/commit/5995b75))
763
+
764
+ ### [1.7.6](https://github.com/jsverse/transloco/compare/v1.7.5...v1.7.6) (2019-09-09)
765
+
766
+ ### Bug Fixes
767
+
768
+ - πŸ› allow pass config in testing module ([caeaa8c](https://github.com/jsverse/transloco/commit/caeaa8c))
769
+
770
+ ### [1.7.5](https://github.com/jsverse/transloco/compare/v1.7.4...v1.7.5) (2019-09-08)
771
+
772
+ ### Bug Fixes
773
+
774
+ - **core:** lack of unsubscriptions ([#65](https://github.com/jsverse/transloco/issues/65)) ([67f5d3f](https://github.com/jsverse/transloco/commit/67f5d3f))
775
+ - πŸ› pipe should support any type ([bf3f11c](https://github.com/jsverse/transloco/commit/bf3f11c)), closes [#70](https://github.com/jsverse/transloco/issues/70)
776
+
777
+ ### [1.7.4](https://github.com/jsverse/transloco/compare/v1.7.3...v1.7.4) (2019-09-07)
778
+
779
+ ### Bug Fixes
780
+
781
+ - πŸ› scope mapping ([a3545a1](https://github.com/jsverse/transloco/commit/a3545a1)), closes [#69](https://github.com/jsverse/transloco/issues/69)
782
+
783
+ ### [1.7.3](https://github.com/jsverse/transloco/compare/v1.7.2...v1.7.3) (2019-09-06)
784
+
785
+ ### Bug Fixes
786
+
787
+ - πŸ› transpiler protection ([9471f17](https://github.com/jsverse/transloco/commit/9471f17))
788
+
789
+ ### [1.7.2](https://github.com/jsverse/transloco/compare/v1.7.1...v1.7.2) (2019-09-05)
790
+
791
+ ### Bug Fixes
792
+
793
+ - πŸ› update migration script ([b712bd7](https://github.com/jsverse/transloco/commit/b712bd7))
794
+
795
+ ### [1.7.1](https://github.com/jsverse/transloco/compare/v1.7.0...v1.7.1) (2019-09-03)
796
+
797
+ ### Bug Fixes
798
+
799
+ - πŸ› selectTranslate ([a7af5c6](https://github.com/jsverse/transloco/commit/a7af5c6))
800
+
801
+ ## [1.7.0](https://github.com/jsverse/transloco/compare/v1.6.0...v1.7.0) (2019-09-01)
802
+
803
+ ### Bug Fixes
804
+
805
+ - remove extension from missing handler export ([e756079](https://github.com/jsverse/transloco/commit/e756079))
806
+ - **readme:** add missing @ ([#51](https://github.com/jsverse/transloco/issues/51)) ([2216378](https://github.com/jsverse/transloco/commit/2216378))
807
+
808
+ ### Features
809
+
810
+ - 🎸 multi-lang ([8d91b61](https://github.com/jsverse/transloco/commit/8d91b61))
811
+ - 🎸 mutli-langs ([0e58324](https://github.com/jsverse/transloco/commit/0e58324))
812
+ - 🎸 transpilers ([198eb6d](https://github.com/jsverse/transloco/commit/198eb6d))
813
+ - expose missing handler token and interface ([1a56908](https://github.com/jsverse/transloco/commit/1a56908))
814
+
815
+ ## [1.6.0](https://github.com/jsverse/transloco/compare/v1.5.0...v1.6.0) (2019-08-28)
816
+
817
+ ### Features
818
+
819
+ - limit nested translations ([71e5488](https://github.com/jsverse/transloco/commit/71e5488))
820
+ - **directive:** add limit property ([7715deb](https://github.com/jsverse/transloco/commit/7715deb))
821
+ - **directive:** add limit property ([f17f417](https://github.com/jsverse/transloco/commit/f17f417))
822
+ - **directive:** read nested property ([b51359e](https://github.com/jsverse/transloco/commit/b51359e))
823
+ - **directive:** set context to a nested property ([561cba4](https://github.com/jsverse/transloco/commit/561cba4))
824
+
825
+ ## [1.5.0](https://github.com/jsverse/transloco/compare/v1.4.2...v1.5.0) (2019-08-28)
826
+
827
+ ### Bug Fixes
828
+
829
+ - πŸ› translate types ([fe51317](https://github.com/jsverse/transloco/commit/fe51317))
830
+
831
+ ### Features
832
+
833
+ - 🎸 missing-handler ([23da8c5](https://github.com/jsverse/transloco/commit/23da8c5)), closes [#42](https://github.com/jsverse/transloco/issues/42)
834
+ - 🎸 missing-handler ([#43](https://github.com/jsverse/transloco/issues/43)) ([5f082fc](https://github.com/jsverse/transloco/commit/5f082fc))
835
+ - **loader:** allow it to be optional ([2a7fd83](https://github.com/jsverse/transloco/commit/2a7fd83))
836
+ - 🎸 service ([317bfc8](https://github.com/jsverse/transloco/commit/317bfc8)), closes [#46](https://github.com/jsverse/transloco/issues/46)
837
+
838
+ ### Tests
839
+
840
+ - πŸ’ allow-empty ([ba33ea1](https://github.com/jsverse/transloco/commit/ba33ea1))
841
+
842
+ ### [1.4.2](https://github.com/jsverse/transloco/compare/v1.4.0...v1.4.2) (2019-08-27)
843
+
844
+ ### Bug Fixes
845
+
846
+ - πŸ› message-format ([ff835c3](https://github.com/jsverse/transloco/commit/ff835c3)), closes [#40](https://github.com/jsverse/transloco/issues/40)
847
+ - πŸ› migration script support for get function ([67e112d](https://github.com/jsverse/transloco/commit/67e112d))
848
+ - πŸ› translate ([620b151](https://github.com/jsverse/transloco/commit/620b151)), closes [#40](https://github.com/jsverse/transloco/issues/40)
849
+
850
+ ### [1.4.1](https://github.com/jsverse/transloco/compare/v1.4.0...v1.4.1) (2019-08-27)
851
+
852
+ ### Bug Fixes
853
+
854
+ - πŸ› message-format ([ff835c3](https://github.com/jsverse/transloco/commit/ff835c3)), closes [#40](https://github.com/jsverse/transloco/issues/40)
855
+ - πŸ› migration script support for get function ([67e112d](https://github.com/jsverse/transloco/commit/67e112d))
856
+ - πŸ› translate ([620b151](https://github.com/jsverse/transloco/commit/620b151)), closes [#40](https://github.com/jsverse/transloco/issues/40)
857
+
858
+ ## [1.4.0](https://github.com/jsverse/transloco/compare/v1.2.0...v1.4.0) (2019-08-27)
859
+
860
+ ### Bug Fixes
861
+
862
+ - 🎸 support using ng-add for libraries ([8ba6f25](https://github.com/jsverse/transloco/commit/8ba6f25))
863
+ - πŸ› global scoep translations in pipe and directive ([c4d0993](https://github.com/jsverse/transloco/commit/c4d0993))
864
+ - πŸ› global scope might not be loaded when sharing scope ([d094764](https://github.com/jsverse/transloco/commit/d094764))
865
+ - **api:** expose helpers and types ([19e1a7f](https://github.com/jsverse/transloco/commit/19e1a7f))
866
+
867
+ ### Features
868
+
869
+ - 🎸 scope strategy - shared ([84eb7ec](https://github.com/jsverse/transloco/commit/84eb7ec))
870
+
871
+ ### Tests
872
+
873
+ - πŸ’ finish testing ([104ecd3](https://github.com/jsverse/transloco/commit/104ecd3))
874
+ - πŸ’ fix cypress specs ([7fdfe11](https://github.com/jsverse/transloco/commit/7fdfe11))
875
+ - πŸ’ shared scope - update specs ([50f3362](https://github.com/jsverse/transloco/commit/50f3362))
876
+
877
+ ## [1.3.0](https://github.com/jsverse/transloco/compare/v1.2.0...v1.3.0) (2019-08-26)
878
+
879
+ ### Bug Fixes
880
+
881
+ - πŸ› global scoep translations in pipe and directive ([c4d0993](https://github.com/jsverse/transloco/commit/c4d0993))
882
+ - πŸ› global scope might not be loaded when sharing scope ([d094764](https://github.com/jsverse/transloco/commit/d094764))
883
+
884
+ ### Features
885
+
886
+ - 🎸 scope strategy - shared ([84eb7ec](https://github.com/jsverse/transloco/commit/84eb7ec))
887
+
888
+ ### Tests
889
+
890
+ - πŸ’ finish testing ([104ecd3](https://github.com/jsverse/transloco/commit/104ecd3))
891
+ - πŸ’ fix cypress specs ([7fdfe11](https://github.com/jsverse/transloco/commit/7fdfe11))
892
+ - πŸ’ shared scope - update specs ([50f3362](https://github.com/jsverse/transloco/commit/50f3362))
893
+
894
+ ## [1.2.0](https://github.com/jsverse/transloco/compare/v1.0.1...v1.2.0) (2019-08-23)
895
+
896
+ ### Bug Fixes
897
+
898
+ - πŸ› fix format message import ([f8815dc](https://github.com/jsverse/transloco/commit/f8815dc))
899
+ - πŸ› schematics ng-add import-default bug ([#29](https://github.com/jsverse/transloco/issues/29)) ([35229e0](https://github.com/jsverse/transloco/commit/35229e0))
900
+
901
+ ### Build System
902
+
903
+ - add peerDependencies to package.json ([22b0af5](https://github.com/jsverse/transloco/commit/22b0af5))
904
+
905
+ ### Features
906
+
907
+ - **lib:** 🎸 add messageformat support through custom transpiler ([#11](https://github.com/jsverse/transloco/issues/11)) ([1feb309](https://github.com/jsverse/transloco/commit/1feb309))
908
+ - 🎸 added ssr question to ng-add ([#30](https://github.com/jsverse/transloco/issues/30)) ([7bcd15d](https://github.com/jsverse/transloco/commit/7bcd15d))
909
+ - 🎸 lib ([ab5a6fb](https://github.com/jsverse/transloco/commit/ab5a6fb))
910
+
911
+ ### [1.1.3](https://github.com/jsverse/transloco/compare/v1.0.1...v1.1.3) (2019-08-22)
912
+
913
+ ### Bug Fixes
914
+
915
+ - πŸ› fix format message import ([f8815dc](https://github.com/jsverse/transloco/commit/f8815dc))
916
+ - πŸ› schematics ng-add import-default bug ([#29](https://github.com/jsverse/transloco/issues/29)) ([35229e0](https://github.com/jsverse/transloco/commit/35229e0))
917
+
918
+ ### Build System
919
+
920
+ - add peerDependencies to package.json ([22b0af5](https://github.com/jsverse/transloco/commit/22b0af5))
921
+
922
+ ### Features
923
+
924
+ - 🎸 added ssr question to ng-add ([#30](https://github.com/jsverse/transloco/issues/30)) ([7bcd15d](https://github.com/jsverse/transloco/commit/7bcd15d))
925
+ - **lib:** 🎸 add messageformat support through custom transpiler ([#11](https://github.com/jsverse/transloco/issues/11)) ([1feb309](https://github.com/jsverse/transloco/commit/1feb309))
926
+
927
+ ### [1.1.2](https://github.com/jsverse/transloco/compare/v1.0.1...v1.1.2) (2019-08-22)
928
+
929
+ ### Bug Fixes
930
+
931
+ - πŸ› fix format message import ([f8815dc](https://github.com/jsverse/transloco/commit/f8815dc))
932
+ - πŸ› schematics ng-add import-default bug ([#29](https://github.com/jsverse/transloco/issues/29)) ([35229e0](https://github.com/jsverse/transloco/commit/35229e0))
933
+
934
+ ### Build System
935
+
936
+ - add peerDependencies to package.json ([22b0af5](https://github.com/jsverse/transloco/commit/22b0af5))
937
+
938
+ ### Features
939
+
940
+ - 🎸 added ssr question to ng-add ([#30](https://github.com/jsverse/transloco/issues/30)) ([7bcd15d](https://github.com/jsverse/transloco/commit/7bcd15d))
941
+ - **lib:** 🎸 add messageformat support through custom transpiler ([#11](https://github.com/jsverse/transloco/issues/11)) ([1feb309](https://github.com/jsverse/transloco/commit/1feb309))
942
+
943
+ ## [1.1.0](https://github.com/jsverse/transloco/compare/v1.0.1...v1.1.0) (2019-08-16)
944
+
945
+ ### Features
946
+
947
+ - **lib:** 🎸 add messageformat support through custom transpiler ([#11](https://github.com/jsverse/transloco/issues/11)) ([1feb309](https://github.com/jsverse/transloco/commit/1feb309))
948
+
949
+ ## 1.0.0 (2019-08-16)
950
+
951
+ ### Bug Fixes
952
+
953
+ - πŸ› fix ngx-translate migration script ([dfe47bf](https://github.com/jsverse/transloco/commit/dfe47bf))
954
+ - πŸ› get value function ([2a9d0a4](https://github.com/jsverse/transloco/commit/2a9d0a4))
955
+ - πŸ› migration script special chars ([9f9a917](https://github.com/jsverse/transloco/commit/9f9a917))
956
+ - πŸ› missing dependencies, angular schematics path ([fb94489](https://github.com/jsverse/transloco/commit/fb94489))
957
+ - πŸ› missing handler should return the missing key ([05297f1](https://github.com/jsverse/transloco/commit/05297f1))
958
+ - πŸ› service load issues ([82b9321](https://github.com/jsverse/transloco/commit/82b9321))
959
+ - πŸ› update dependencies ([530bb30](https://github.com/jsverse/transloco/commit/530bb30))
960
+ - **migration:** fix script ([6fc9e7b](https://github.com/jsverse/transloco/commit/6fc9e7b))
961
+ - **query:** fix query params getter ([63a8224](https://github.com/jsverse/transloco/commit/63a8224))
962
+ - **schematics:** ng-add schematics fixes ([#35](https://github.com/jsverse/transloco/issues/35)) ([10d4146](https://github.com/jsverse/transloco/commit/10d4146))
963
+ - **schematics:** when the user chose http as loader add HttpClien… ([#54](https://github.com/jsverse/transloco/issues/54)) ([66b07f6](https://github.com/jsverse/transloco/commit/66b07f6))
964
+ - **schematics:** when the user chose http as loader add HttpClientModule ([e5e0766](https://github.com/jsverse/transloco/commit/e5e0766))
965
+ - **transloco-service:** pr fixes ([4f276d1](https://github.com/jsverse/transloco/commit/4f276d1))
966
+ - fix tests ([fc841bd](https://github.com/jsverse/transloco/commit/fc841bd))
967
+ - handle parser error when couldn't parse ([a016030](https://github.com/jsverse/transloco/commit/a016030))
968
+
969
+ ### Build System
970
+
971
+ - **lock file:** update lock file ([f410e17](https://github.com/jsverse/transloco/commit/f410e17))
972
+
973
+ ### Features
974
+
975
+ - **schematics:** added generator for transloco component ([#61](https://github.com/jsverse/transloco/issues/61)) ([82d8df3](https://github.com/jsverse/transloco/commit/82d8df3))
976
+ - **schematics:** added ng-add schematics command ([#32](https://github.com/jsverse/transloco/issues/32)) ([71c53f1](https://github.com/jsverse/transloco/commit/71c53f1))
977
+ - **schematics:** support project in ng-add ([#5](https://github.com/jsverse/transloco/issues/5)) ([3fbdd41](https://github.com/jsverse/transloco/commit/3fbdd41))
978
+ - **specs:** add cypress ([a2605dc](https://github.com/jsverse/transloco/commit/a2605dc))
979
+ - **specs:** add specs coverage ([7016f88](https://github.com/jsverse/transloco/commit/7016f88))
980
+ - **transloco-pipe:** support providerLang ([bc3e809](https://github.com/jsverse/transloco/commit/bc3e809))
981
+ - **transloco-service:** dependentless translate ([9ad22ad](https://github.com/jsverse/transloco/commit/9ad22ad))
982
+ - **transloco-service:** getTranslation should support get all ([e12e5f6](https://github.com/jsverse/transloco/commit/e12e5f6)), closes [#58](https://github.com/jsverse/transloco/issues/58)
983
+ - **transloco-service:** support multiple fallback langs ([0e630bc](https://github.com/jsverse/transloco/commit/0e630bc)), closes [#40](https://github.com/jsverse/transloco/issues/40)
984
+ - **transloco-service:** support translating using a callback ([067ad98](https://github.com/jsverse/transloco/commit/067ad98)), closes [#56](https://github.com/jsverse/transloco/issues/56)
985
+ - added global loading template token ([e4a87eb](https://github.com/jsverse/transloco/commit/e4a87eb))
986
+ - added global loading template token ([#55](https://github.com/jsverse/transloco/issues/55)) ([34183dd](https://github.com/jsverse/transloco/commit/34183dd))
987
+ - added setTranslation && setTranslationKey methods ([fdf2ade](https://github.com/jsverse/transloco/commit/fdf2ade))
988
+ - added support for multi key translation ([#46](https://github.com/jsverse/transloco/issues/46)) ([15378c5](https://github.com/jsverse/transloco/commit/15378c5))
989
+ - lazy load ([6dc1f72](https://github.com/jsverse/transloco/commit/6dc1f72))
990
+ - lazy load ([ee68219](https://github.com/jsverse/transloco/commit/ee68219))
991
+
992
+ ### Tests
993
+
994
+ - πŸ’ add key is path test ([2406bd8](https://github.com/jsverse/transloco/commit/2406bd8))
995
+ - πŸ’ cypress ([fd3622b](https://github.com/jsverse/transloco/commit/fd3622b))
996
+ - πŸ’ update specs ([5f0629c](https://github.com/jsverse/transloco/commit/5f0629c))
997
+ - **transloco-transpiler:** add spec for nested lang keys ([9dc7875](https://github.com/jsverse/transloco/commit/9dc7875))
998
+ - add missing coverage specs ([101f1f1](https://github.com/jsverse/transloco/commit/101f1f1))
999
+ - added e2e test to lazy page ([f06c922](https://github.com/jsverse/transloco/commit/f06c922)), closes [#33](https://github.com/jsverse/transloco/issues/33)
1000
+ - created change-translation e2e tests ([e693c12](https://github.com/jsverse/transloco/commit/e693c12))
1001
+ - cypress prod url ([4c464a6](https://github.com/jsverse/transloco/commit/4c464a6))
1002
+ - **transloco-service:** add specs ([3af51c6](https://github.com/jsverse/transloco/commit/3af51c6))
1003
+ - **transloco-service:** fix pr ([58b6624](https://github.com/jsverse/transloco/commit/58b6624))
1004
+ - test params pipe ([331b7e0](https://github.com/jsverse/transloco/commit/331b7e0))
1005
+ - test params pipe ([#27](https://github.com/jsverse/transloco/issues/27)) ([1ffa3a2](https://github.com/jsverse/transloco/commit/1ffa3a2))