gt 0.10.0 → 2.6.30-alpha.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 (523) hide show
  1. package/CHANGELOG.md +1255 -0
  2. package/LICENSE.md +105 -0
  3. package/README.md +26 -198
  4. package/dist/api/collectUserEditDiffs.d.ts +9 -0
  5. package/dist/api/collectUserEditDiffs.js +159 -0
  6. package/dist/api/downloadFileBatch.d.ts +23 -0
  7. package/dist/api/downloadFileBatch.js +190 -0
  8. package/dist/api/saveLocalEdits.d.ts +6 -0
  9. package/dist/api/saveLocalEdits.js +38 -0
  10. package/dist/bin/bin-entry.d.ts +1 -0
  11. package/dist/bin/bin-entry.js +9 -0
  12. package/dist/bin/bin-main.d.ts +2 -0
  13. package/dist/bin/bin-main.js +67 -0
  14. package/dist/cli/base.d.ts +59 -0
  15. package/dist/cli/base.js +529 -0
  16. package/dist/cli/commands/download.d.ts +8 -0
  17. package/dist/cli/commands/download.js +51 -0
  18. package/dist/cli/commands/enqueue.d.ts +9 -0
  19. package/dist/cli/commands/enqueue.js +27 -0
  20. package/dist/cli/commands/setupProject.d.ts +7 -0
  21. package/dist/cli/commands/setupProject.js +37 -0
  22. package/dist/cli/commands/stage.d.ts +9 -0
  23. package/dist/cli/commands/stage.js +59 -0
  24. package/dist/cli/commands/translate.d.ts +7 -0
  25. package/dist/cli/commands/translate.js +70 -0
  26. package/dist/cli/commands/upload.d.ts +13 -0
  27. package/dist/cli/commands/upload.js +142 -0
  28. package/dist/cli/commands/utils/validation.d.ts +13 -0
  29. package/dist/cli/commands/utils/validation.js +38 -0
  30. package/dist/cli/flags.d.ts +15 -0
  31. package/dist/cli/flags.js +70 -0
  32. package/dist/cli/inline.d.ts +17 -0
  33. package/dist/cli/inline.js +135 -0
  34. package/dist/cli/next.d.ts +10 -0
  35. package/dist/cli/next.js +12 -0
  36. package/dist/cli/node.d.ts +10 -0
  37. package/dist/cli/node.js +9 -0
  38. package/dist/cli/react.d.ts +12 -0
  39. package/dist/cli/react.js +72 -0
  40. package/dist/config/generateSettings.d.ts +9 -0
  41. package/dist/config/generateSettings.js +214 -0
  42. package/dist/config/optionPresets.d.ts +3 -0
  43. package/dist/config/optionPresets.js +65 -0
  44. package/dist/config/resolveConfig.d.ts +4 -0
  45. package/dist/config/resolveConfig.js +33 -0
  46. package/dist/config/utils.d.ts +2 -0
  47. package/dist/config/utils.js +4 -0
  48. package/dist/config/validateSettings.d.ts +3 -0
  49. package/dist/config/validateSettings.js +32 -0
  50. package/dist/console/colors.d.ts +6 -0
  51. package/dist/console/colors.js +19 -0
  52. package/dist/console/displayTranslateSummary.d.ts +1 -0
  53. package/dist/console/displayTranslateSummary.js +42 -0
  54. package/dist/console/formatting.d.ts +1 -0
  55. package/dist/console/formatting.js +7 -0
  56. package/dist/console/index.d.ts +33 -0
  57. package/dist/console/index.js +44 -0
  58. package/dist/console/logger.d.ts +35 -0
  59. package/dist/console/logger.js +250 -0
  60. package/dist/console/logging.d.ts +52 -0
  61. package/dist/console/logging.js +175 -0
  62. package/dist/formats/files/aggregateFiles.d.ts +4 -0
  63. package/dist/formats/files/aggregateFiles.js +173 -0
  64. package/dist/formats/files/collectFiles.d.ts +6 -0
  65. package/dist/formats/files/collectFiles.js +49 -0
  66. package/dist/formats/files/convertToFileTranslationData.d.ts +15 -0
  67. package/dist/formats/files/convertToFileTranslationData.js +21 -0
  68. package/dist/formats/files/fileMapping.d.ts +11 -0
  69. package/dist/formats/files/fileMapping.js +115 -0
  70. package/dist/formats/files/save.d.ts +5 -0
  71. package/dist/formats/files/save.js +17 -0
  72. package/dist/formats/files/supportedFiles.d.ts +11 -0
  73. package/dist/formats/files/supportedFiles.js +20 -0
  74. package/dist/formats/json/extractJson.d.ts +15 -0
  75. package/dist/formats/json/extractJson.js +101 -0
  76. package/dist/formats/json/flattenJson.d.ts +14 -0
  77. package/dist/formats/json/flattenJson.js +64 -0
  78. package/dist/formats/json/mergeJson.d.ts +13 -0
  79. package/dist/formats/json/mergeJson.js +367 -0
  80. package/dist/formats/json/parseJson.d.ts +2 -0
  81. package/dist/formats/json/parseJson.js +109 -0
  82. package/dist/formats/json/utils.d.ts +47 -0
  83. package/dist/formats/json/utils.js +150 -0
  84. package/dist/formats/utils.d.ts +2 -0
  85. package/dist/formats/utils.js +24 -0
  86. package/dist/formats/yaml/mergeYaml.d.ts +5 -0
  87. package/dist/formats/yaml/mergeYaml.js +61 -0
  88. package/dist/formats/yaml/parseYaml.d.ts +5 -0
  89. package/dist/formats/yaml/parseYaml.js +24 -0
  90. package/dist/formats/yaml/utils.d.ts +2 -0
  91. package/dist/formats/yaml/utils.js +23 -0
  92. package/dist/fs/clearLocaleDirs.d.ts +8 -0
  93. package/dist/fs/clearLocaleDirs.js +126 -0
  94. package/dist/fs/config/downloadedVersions.d.ts +21 -0
  95. package/dist/fs/config/downloadedVersions.js +50 -0
  96. package/dist/fs/config/loadConfig.d.ts +1 -0
  97. package/dist/fs/config/loadConfig.js +9 -0
  98. package/dist/fs/config/parseFilesConfig.d.ts +27 -0
  99. package/dist/fs/config/parseFilesConfig.js +150 -0
  100. package/dist/fs/config/setupConfig.d.ts +17 -0
  101. package/dist/fs/config/setupConfig.js +50 -0
  102. package/dist/fs/config/updateConfig.d.ts +21 -0
  103. package/dist/fs/config/updateConfig.js +57 -0
  104. package/dist/fs/config/updateVersions.d.ts +11 -0
  105. package/dist/fs/config/updateVersions.js +30 -0
  106. package/dist/fs/copyFile.d.ts +7 -0
  107. package/dist/fs/copyFile.js +39 -0
  108. package/dist/fs/createLoadTranslationsFile.d.ts +1 -0
  109. package/dist/fs/createLoadTranslationsFile.js +49 -0
  110. package/dist/fs/determineFramework.d.ts +5 -0
  111. package/dist/fs/determineFramework.js +53 -0
  112. package/dist/fs/findFilepath.d.ts +36 -0
  113. package/dist/fs/findFilepath.js +90 -0
  114. package/dist/fs/index.d.ts +1 -0
  115. package/dist/fs/index.js +1 -0
  116. package/dist/fs/loadJSON.d.ts +6 -0
  117. package/dist/fs/loadJSON.js +17 -0
  118. package/dist/fs/matchFiles.d.ts +1 -0
  119. package/dist/fs/matchFiles.js +8 -0
  120. package/dist/fs/saveJSON.d.ts +1 -0
  121. package/dist/fs/saveJSON.js +7 -0
  122. package/dist/fs/utils.d.ts +1 -0
  123. package/dist/fs/utils.js +16 -0
  124. package/dist/functions.d.ts +7 -0
  125. package/dist/functions.js +6 -0
  126. package/dist/generated/version.d.ts +1 -0
  127. package/dist/generated/version.js +2 -0
  128. package/dist/git/branches.d.ts +7 -0
  129. package/dist/git/branches.js +88 -0
  130. package/dist/hooks/postProcess.d.ts +4 -0
  131. package/dist/hooks/postProcess.js +110 -0
  132. package/dist/index.d.ts +4 -0
  133. package/dist/index.js +27 -0
  134. package/dist/locadex/setupFlow.d.ts +2 -0
  135. package/dist/locadex/setupFlow.js +9 -0
  136. package/dist/main.d.ts +2 -0
  137. package/dist/main.js +10 -0
  138. package/dist/next/config/parseNextConfig.d.ts +10 -0
  139. package/dist/next/config/parseNextConfig.js +53 -0
  140. package/dist/next/jsx/utils.d.ts +7 -0
  141. package/dist/next/jsx/utils.js +42 -0
  142. package/dist/next/parse/handleInitGT.d.ts +7 -0
  143. package/dist/next/parse/handleInitGT.js +157 -0
  144. package/dist/next/parse/wrapContent.d.ts +12 -0
  145. package/dist/next/parse/wrapContent.js +164 -0
  146. package/dist/react/config/createESBuildConfig.d.ts +2 -0
  147. package/dist/react/config/createESBuildConfig.js +119 -0
  148. package/dist/react/jsx/evaluateJsx.d.ts +24 -0
  149. package/dist/react/jsx/evaluateJsx.js +123 -0
  150. package/dist/react/jsx/utils/buildImportMap.d.ts +9 -0
  151. package/dist/react/jsx/utils/buildImportMap.js +30 -0
  152. package/dist/react/jsx/utils/constants.d.ts +13 -0
  153. package/dist/react/jsx/utils/constants.js +46 -0
  154. package/dist/react/jsx/utils/getCalleeNameFromExpression.d.ts +9 -0
  155. package/dist/react/jsx/utils/getCalleeNameFromExpression.js +32 -0
  156. package/dist/react/jsx/utils/getPathsAndAliases.d.ts +21 -0
  157. package/dist/react/jsx/utils/getPathsAndAliases.js +91 -0
  158. package/dist/react/jsx/utils/isNumberLiteral.d.ts +7 -0
  159. package/dist/react/jsx/utils/isNumberLiteral.js +13 -0
  160. package/dist/react/jsx/utils/jsxParsing/addGTIdentifierToSyntaxTree.d.ts +9 -0
  161. package/dist/react/jsx/utils/jsxParsing/addGTIdentifierToSyntaxTree.js +135 -0
  162. package/dist/react/jsx/utils/jsxParsing/handleChildrenWhitespace.d.ts +6 -0
  163. package/dist/react/jsx/utils/jsxParsing/handleChildrenWhitespace.js +197 -0
  164. package/dist/react/jsx/utils/jsxParsing/multiplication/findMultiplicationNode.d.ts +13 -0
  165. package/dist/react/jsx/utils/jsxParsing/multiplication/findMultiplicationNode.js +42 -0
  166. package/dist/react/jsx/utils/jsxParsing/multiplication/multiplyJsxTree.d.ts +5 -0
  167. package/dist/react/jsx/utils/jsxParsing/multiplication/multiplyJsxTree.js +69 -0
  168. package/dist/react/jsx/utils/jsxParsing/parseJsx.d.ts +33 -0
  169. package/dist/react/jsx/utils/jsxParsing/parseJsx.js +912 -0
  170. package/dist/react/jsx/utils/jsxParsing/parseTProps.d.ts +8 -0
  171. package/dist/react/jsx/utils/jsxParsing/parseTProps.js +65 -0
  172. package/dist/react/jsx/utils/jsxParsing/removeNullChildrenFields.d.ts +2 -0
  173. package/dist/react/jsx/utils/jsxParsing/removeNullChildrenFields.js +61 -0
  174. package/dist/react/jsx/utils/jsxParsing/types.d.ts +48 -0
  175. package/dist/react/jsx/utils/jsxParsing/types.js +34 -0
  176. package/dist/react/jsx/utils/mapAttributeName.d.ts +11 -0
  177. package/dist/react/jsx/utils/mapAttributeName.js +12 -0
  178. package/dist/react/jsx/utils/parseAst.d.ts +31 -0
  179. package/dist/react/jsx/utils/parseAst.js +278 -0
  180. package/dist/react/jsx/utils/parseDeclareStatic.d.ts +15 -0
  181. package/dist/react/jsx/utils/parseDeclareStatic.js +540 -0
  182. package/dist/react/jsx/utils/parseString.d.ts +25 -0
  183. package/dist/react/jsx/utils/parseString.js +540 -0
  184. package/dist/react/jsx/utils/parseStringFunction.d.ts +30 -0
  185. package/dist/react/jsx/utils/parseStringFunction.js +348 -0
  186. package/dist/react/jsx/utils/resolveImportPath.d.ts +11 -0
  187. package/dist/react/jsx/utils/resolveImportPath.js +111 -0
  188. package/dist/react/jsx/utils/stringParsing/processTranslationCall/extractStringEntryMetadata.d.ts +29 -0
  189. package/dist/react/jsx/utils/stringParsing/processTranslationCall/extractStringEntryMetadata.js +86 -0
  190. package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleInvalidTranslationCall.d.ts +14 -0
  191. package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleInvalidTranslationCall.js +24 -0
  192. package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleLiteralTranslationCall.d.ts +19 -0
  193. package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleLiteralTranslationCall.js +31 -0
  194. package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleStaticTranslationCall.d.ts +22 -0
  195. package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleStaticTranslationCall.js +51 -0
  196. package/dist/react/jsx/utils/stringParsing/processTranslationCall/index.d.ts +18 -0
  197. package/dist/react/jsx/utils/stringParsing/processTranslationCall/index.js +39 -0
  198. package/dist/react/jsx/utils/stringParsing/processTranslationCall/routeTranslationCall.d.ts +24 -0
  199. package/dist/react/jsx/utils/stringParsing/processTranslationCall/routeTranslationCall.js +68 -0
  200. package/dist/react/jsx/utils/stringParsing/types.d.ts +41 -0
  201. package/dist/react/jsx/utils/stringParsing/types.js +1 -0
  202. package/dist/react/jsx/utils/types.d.ts +14 -0
  203. package/dist/react/jsx/utils/types.js +1 -0
  204. package/dist/react/jsx/utils/validateStringFunction.d.ts +7 -0
  205. package/dist/react/jsx/utils/validateStringFunction.js +31 -0
  206. package/dist/react/jsx/wrapJsx.d.ts +51 -0
  207. package/dist/react/jsx/wrapJsx.js +387 -0
  208. package/dist/react/parse/addVitePlugin/index.d.ts +22 -0
  209. package/dist/react/parse/addVitePlugin/index.js +41 -0
  210. package/dist/react/parse/addVitePlugin/installCompiler.d.ts +8 -0
  211. package/dist/react/parse/addVitePlugin/installCompiler.js +22 -0
  212. package/dist/react/parse/addVitePlugin/updateViteConfig.d.ts +19 -0
  213. package/dist/react/parse/addVitePlugin/updateViteConfig.js +120 -0
  214. package/dist/react/parse/addVitePlugin/utils/addCompilerImport.d.ts +9 -0
  215. package/dist/react/parse/addVitePlugin/utils/addCompilerImport.js +34 -0
  216. package/dist/react/parse/addVitePlugin/utils/addPluginInvocation.d.ts +11 -0
  217. package/dist/react/parse/addVitePlugin/utils/addPluginInvocation.js +48 -0
  218. package/dist/react/parse/addVitePlugin/utils/checkCompilerImport.d.ts +15 -0
  219. package/dist/react/parse/addVitePlugin/utils/checkCompilerImport.js +113 -0
  220. package/dist/react/parse/addVitePlugin/utils/checkPluginInvocation.d.ts +12 -0
  221. package/dist/react/parse/addVitePlugin/utils/checkPluginInvocation.js +32 -0
  222. package/dist/react/parse/createDictionaryUpdates.d.ts +3 -0
  223. package/dist/react/parse/createDictionaryUpdates.js +187 -0
  224. package/dist/react/parse/createInlineUpdates.d.ts +13 -0
  225. package/dist/react/parse/createInlineUpdates.js +161 -0
  226. package/dist/react/parse/wrapContent.d.ts +12 -0
  227. package/dist/react/parse/wrapContent.js +162 -0
  228. package/dist/react/utils/flattenDictionary.d.ts +20 -0
  229. package/dist/react/utils/flattenDictionary.js +75 -0
  230. package/dist/react/utils/getEntryAndMetadata.d.ts +5 -0
  231. package/dist/react/utils/getEntryAndMetadata.js +11 -0
  232. package/dist/react/utils/getVariableName.d.ts +25 -0
  233. package/dist/react/utils/getVariableName.js +37 -0
  234. package/dist/setup/agentInstructions.d.ts +24 -0
  235. package/dist/setup/agentInstructions.js +138 -0
  236. package/dist/setup/detectFramework.d.ts +31 -0
  237. package/dist/setup/detectFramework.js +106 -0
  238. package/dist/setup/frameworkUtils.d.ts +3 -0
  239. package/dist/setup/frameworkUtils.js +30 -0
  240. package/dist/setup/instructions/base.md +29 -0
  241. package/dist/setup/instructions/gt-next.md +107 -0
  242. package/dist/setup/instructions/gt-react.md +98 -0
  243. package/dist/setup/userInput.d.ts +4 -0
  244. package/dist/setup/userInput.js +32 -0
  245. package/dist/setup/wizard.d.ts +3 -0
  246. package/dist/setup/wizard.js +147 -0
  247. package/dist/state/recentDownloads.d.ts +12 -0
  248. package/dist/state/recentDownloads.js +18 -0
  249. package/dist/state/translateWarnings.d.ts +10 -0
  250. package/dist/state/translateWarnings.js +13 -0
  251. package/dist/translation/parse.d.ts +17 -0
  252. package/dist/translation/parse.js +77 -0
  253. package/dist/translation/stage.d.ts +3 -0
  254. package/dist/translation/stage.js +44 -0
  255. package/dist/translation/validate.d.ts +14 -0
  256. package/dist/translation/validate.js +100 -0
  257. package/dist/types/branch.d.ts +14 -0
  258. package/dist/types/branch.js +1 -0
  259. package/dist/types/data/json.d.ts +6 -0
  260. package/dist/types/data/json.js +1 -0
  261. package/dist/types/data.d.ts +37 -0
  262. package/dist/types/data.js +1 -0
  263. package/dist/types/files.d.ts +8 -0
  264. package/dist/types/files.js +1 -0
  265. package/dist/types/index.d.ts +243 -0
  266. package/dist/types/index.js +1 -0
  267. package/dist/types/libraries.d.ts +31 -0
  268. package/dist/types/libraries.js +72 -0
  269. package/dist/types/parsing.d.ts +3 -0
  270. package/dist/types/parsing.js +1 -0
  271. package/dist/utils/addExplicitAnchorIds.d.ts +24 -0
  272. package/dist/utils/addExplicitAnchorIds.js +416 -0
  273. package/dist/utils/constants.d.ts +5 -0
  274. package/dist/utils/constants.js +6 -0
  275. package/dist/utils/credentials.d.ts +12 -0
  276. package/dist/utils/credentials.js +120 -0
  277. package/dist/utils/flattenJsonFiles.d.ts +2 -0
  278. package/dist/utils/flattenJsonFiles.js +36 -0
  279. package/dist/utils/gitDiff.d.ts +8 -0
  280. package/dist/utils/gitDiff.js +34 -0
  281. package/dist/utils/gt.d.ts +2 -0
  282. package/dist/utils/gt.js +2 -0
  283. package/dist/utils/hash.d.ts +6 -0
  284. package/dist/utils/hash.js +11 -0
  285. package/dist/utils/headers.d.ts +1 -0
  286. package/dist/utils/headers.js +14 -0
  287. package/dist/utils/installPackage.d.ts +3 -0
  288. package/dist/utils/installPackage.js +77 -0
  289. package/dist/utils/localizeRelativeAssets.d.ts +8 -0
  290. package/dist/utils/localizeRelativeAssets.js +166 -0
  291. package/dist/utils/localizeStaticImports.d.ts +15 -0
  292. package/dist/utils/localizeStaticImports.js +397 -0
  293. package/dist/utils/localizeStaticUrls.d.ts +19 -0
  294. package/dist/utils/localizeStaticUrls.js +450 -0
  295. package/dist/utils/mintlifyTitleFallback.d.ts +6 -0
  296. package/dist/utils/mintlifyTitleFallback.js +80 -0
  297. package/dist/utils/packageInfo.d.ts +3 -0
  298. package/dist/utils/packageInfo.js +17 -0
  299. package/dist/utils/packageJson.d.ts +6 -0
  300. package/dist/utils/packageJson.js +68 -0
  301. package/dist/utils/packageManager.d.ts +28 -0
  302. package/dist/utils/packageManager.js +269 -0
  303. package/dist/utils/parse/needsCJS.d.ts +20 -0
  304. package/dist/utils/parse/needsCJS.js +72 -0
  305. package/dist/utils/persistPostprocessHashes.d.ts +12 -0
  306. package/dist/utils/persistPostprocessHashes.js +39 -0
  307. package/dist/utils/processAnchorIds.d.ts +6 -0
  308. package/dist/utils/processAnchorIds.js +56 -0
  309. package/dist/utils/processOpenApi.d.ts +8 -0
  310. package/dist/utils/processOpenApi.js +651 -0
  311. package/dist/utils/sanitizeFileContent.d.ts +6 -0
  312. package/dist/utils/sanitizeFileContent.js +29 -0
  313. package/dist/utils/sharedStaticAssets.d.ts +9 -0
  314. package/dist/utils/sharedStaticAssets.js +384 -0
  315. package/dist/utils/validateMdx.d.ts +10 -0
  316. package/dist/utils/validateMdx.js +25 -0
  317. package/dist/workflows/download.d.ts +32 -0
  318. package/dist/workflows/download.js +127 -0
  319. package/dist/workflows/enqueue.d.ts +17 -0
  320. package/dist/workflows/enqueue.js +59 -0
  321. package/dist/workflows/setupProject.d.ts +13 -0
  322. package/dist/workflows/setupProject.js +48 -0
  323. package/dist/workflows/stage.d.ts +18 -0
  324. package/dist/workflows/stage.js +59 -0
  325. package/dist/workflows/steps/BranchStep.d.ts +13 -0
  326. package/dist/workflows/steps/BranchStep.js +161 -0
  327. package/dist/workflows/steps/DownloadStep.d.ts +19 -0
  328. package/dist/workflows/steps/DownloadStep.js +131 -0
  329. package/dist/workflows/steps/EnqueueStep.d.ts +15 -0
  330. package/dist/workflows/steps/EnqueueStep.js +33 -0
  331. package/dist/workflows/steps/PollJobsStep.d.ts +31 -0
  332. package/dist/workflows/steps/PollJobsStep.js +288 -0
  333. package/dist/workflows/steps/SetupStep.d.ts +16 -0
  334. package/dist/workflows/steps/SetupStep.js +72 -0
  335. package/dist/workflows/steps/UploadSourcesStep.d.ts +27 -0
  336. package/dist/workflows/steps/UploadSourcesStep.js +131 -0
  337. package/dist/workflows/steps/UploadTranslationsStep.d.ts +22 -0
  338. package/dist/workflows/steps/UploadTranslationsStep.js +71 -0
  339. package/dist/workflows/steps/UserEditDiffsStep.d.ts +11 -0
  340. package/dist/workflows/steps/UserEditDiffsStep.js +30 -0
  341. package/dist/workflows/steps/WorkflowStep.d.ts +4 -0
  342. package/dist/workflows/steps/WorkflowStep.js +2 -0
  343. package/dist/workflows/upload.d.ts +15 -0
  344. package/dist/workflows/upload.js +47 -0
  345. package/package.json +148 -112
  346. package/.dont-break +0 -6
  347. package/.jshintrc +0 -76
  348. package/.npmignore +0 -9
  349. package/.travis.yml +0 -21
  350. package/Gruntfile.js +0 -65
  351. package/History.md +0 -90
  352. package/MIT-License.txt +0 -21
  353. package/bin/gt.js +0 -58
  354. package/complexity.json +0 -17
  355. package/doc/RequireJsExample.md +0 -10
  356. package/examples/all.js +0 -72
  357. package/examples/altAsserrionSyntax/tests.js +0 -32
  358. package/examples/amd/bar.js +0 -4
  359. package/examples/amd/foo.js +0 -15
  360. package/examples/amd/fooTests.js +0 -8
  361. package/examples/arrays/test.js +0 -15
  362. package/examples/assert/test-assert-object.js +0 -15
  363. package/examples/assert/test-assert-require.js +0 -17
  364. package/examples/async/asyncAll.js +0 -37
  365. package/examples/async/asyncSetup.js +0 -29
  366. package/examples/async/asyncSetupOnce.js +0 -25
  367. package/examples/async/asyncTeardown.js +0 -27
  368. package/examples/async/stopStart.js +0 -22
  369. package/examples/async/test.js +0 -43
  370. package/examples/async/timeoutTests.js +0 -19
  371. package/examples/basic/code.js +0 -50
  372. package/examples/basic/code2.js +0 -9
  373. package/examples/basic/default.js +0 -26
  374. package/examples/basic/definedUndefined.js +0 -28
  375. package/examples/basic/empty.js +0 -24
  376. package/examples/basic/exceptionTests.js +0 -55
  377. package/examples/basic/fullMessage.js +0 -28
  378. package/examples/basic/functions.js +0 -18
  379. package/examples/basic/incomplete.js +0 -16
  380. package/examples/basic/null.js +0 -17
  381. package/examples/basic/optional.js +0 -45
  382. package/examples/basic/tests.js +0 -147
  383. package/examples/bdd/spec.js +0 -67
  384. package/examples/browser/code_coverage_report.json +0 -1
  385. package/examples/browser/index.html +0 -50
  386. package/examples/browser/packages.js +0 -12
  387. package/examples/browser/packagesDefault.js +0 -12
  388. package/examples/browser/qunit/qunit-1.10.0.css +0 -235
  389. package/examples/browser/qunit/qunit-1.10.0.js +0 -1977
  390. package/examples/browser/runTestsWithCoverage.bat +0 -19
  391. package/examples/browser/runner.js +0 -178
  392. package/examples/browser/src/Foo.js +0 -14
  393. package/examples/browser/srcInstrumented/Foo.js +0 -6
  394. package/examples/browser/test/FooTest.js +0 -31
  395. package/examples/browser/testDojo.js +0 -63
  396. package/examples/browser/testInstrumented/FooTest.js +0 -6
  397. package/examples/coffee/coffeeTestsCoffee/foo.coffee +0 -4
  398. package/examples/coffee/coffeeTestsCoffee/tests.coffee +0 -7
  399. package/examples/coffee/coffeeTestsJs/foo.js +0 -9
  400. package/examples/coffee/coffeeTestsJs/tests.coffee +0 -9
  401. package/examples/coffee/jsTestsCoffee/foo.coffee +0 -4
  402. package/examples/coffee/jsTestsCoffee/tests.js +0 -8
  403. package/examples/coverage.png +0 -0
  404. package/examples/crash/foo.js +0 -8
  405. package/examples/crashOnLoading/foo.js +0 -3
  406. package/examples/crashStackSize/foo.js +0 -8
  407. package/examples/crashStackSize/test.js +0 -7
  408. package/examples/doh/foo.js +0 -15
  409. package/examples/doh/fooTests.js +0 -28
  410. package/examples/dohDefine/foo.js +0 -14
  411. package/examples/dohDefine/fooTests.js +0 -24
  412. package/examples/dojo/src/Foo.js +0 -12
  413. package/examples/dojo/test/FooTest.js +0 -9
  414. package/examples/dojo/testDojo.js +0 -69
  415. package/examples/equiv/equiv.js +0 -22
  416. package/examples/example.png +0 -0
  417. package/examples/exec/foo.js +0 -5
  418. package/examples/exec/tests.js +0 -50
  419. package/examples/expect/test.js +0 -53
  420. package/examples/extend/extend-through-api.js +0 -40
  421. package/examples/extend/test.js +0 -18
  422. package/examples/faster/fibonacci.js +0 -18
  423. package/examples/faster/test.js +0 -89
  424. package/examples/fluent/foo.js +0 -38
  425. package/examples/funcAndArity/test.js +0 -15
  426. package/examples/gtAndQUnit/gtTests.js +0 -6
  427. package/examples/gtAndQUnit/qunitTests.js +0 -5
  428. package/examples/jsUnity/foo.js +0 -10
  429. package/examples/jsUnity/fooTests.js +0 -19
  430. package/examples/lodash/totalLength.js +0 -19
  431. package/examples/longStrings/test.js +0 -27
  432. package/examples/moduleSetupTeardown/test.js +0 -115
  433. package/examples/namedTest/foo.js +0 -9
  434. package/examples/overrideGt/test.js +0 -11
  435. package/examples/quickFail/test.js +0 -22
  436. package/examples/qunit/foo.js +0 -13
  437. package/examples/reporting/tests.coffee +0 -9
  438. package/examples/requirejs/lib/Foo.js +0 -11
  439. package/examples/requirejs/lib/Rectangle.js +0 -13
  440. package/examples/requirejs/runTests.js +0 -5
  441. package/examples/requirejs/test/RectangleTest.js +0 -22
  442. package/examples/silent/foo.js +0 -7
  443. package/examples/silent/fooTest.js +0 -18
  444. package/examples/skipTest/tests.js +0 -15
  445. package/examples/testsFromOtherTests/parentTests.js +0 -7
  446. package/examples/testsFromOtherTests/tests.js +0 -5
  447. package/examples/throws/test.js +0 -17
  448. package/examples/use-gt-as-module/fooTest.js +0 -8
  449. package/examples/use-gt-as-module/test-code.js +0 -7
  450. package/gt.js +0 -11
  451. package/lib/coverage.js +0 -234
  452. package/src/JUnitReporter.js +0 -30
  453. package/src/QUnitBrowserAdapter.js +0 -15
  454. package/src/Reporter.js +0 -127
  455. package/src/TestRunInfo.js +0 -25
  456. package/src/TestRunner.js +0 -223
  457. package/src/UnitTest/CollectionMethods.js +0 -97
  458. package/src/UnitTest/ModuleTests.js +0 -104
  459. package/src/UnitTest/Test.js +0 -85
  460. package/src/UnitTest/TestAsync.js +0 -78
  461. package/src/UnitTest/TestBaseInfo.js +0 -21
  462. package/src/UnitTest/TestCollection.js +0 -206
  463. package/src/UnitTest/TestInfo.js +0 -30
  464. package/src/UnitTest/TestReport.js +0 -27
  465. package/src/assertions/PrimaryAssertions.js +0 -163
  466. package/src/assertions/SecondaryAssertions.js +0 -262
  467. package/src/assertions/TertiaryAssertions.js +0 -99
  468. package/src/bddInterface.js +0 -39
  469. package/src/covered.js +0 -156
  470. package/src/dohAdapter.js +0 -79
  471. package/src/dohInterface.js +0 -20
  472. package/src/equiv.js +0 -11
  473. package/src/jsunityAdapter.js +0 -66
  474. package/src/jsunityInterface.js +0 -13
  475. package/src/options.js +0 -116
  476. package/src/shiv.js +0 -16
  477. package/src/sure.js +0 -226
  478. package/src/test/ConsoleHider.js +0 -26
  479. package/src/test/JUnitReporter.js +0 -12
  480. package/src/test/ModuleTests.js +0 -37
  481. package/src/test/Test.js +0 -18
  482. package/src/test/TestCollection.js +0 -21
  483. package/src/test/TestRunInfo.js +0 -15
  484. package/src/test/TestRunner.js +0 -9
  485. package/src/test/utils.js +0 -43
  486. package/src/utils/ConsoleHider.js +0 -27
  487. package/src/utils/WatchFiles.js +0 -13
  488. package/src/utils/discoverFiles.js +0 -18
  489. package/src/utils/joinArguments.js +0 -13
  490. package/src/utils/not.js +0 -14
  491. package/src/utils/pluckFunction.js +0 -15
  492. package/src/utils/test/joinArgumentsTest.js +0 -24
  493. package/src/utils/test/not.js +0 -70
  494. package/src/utils/test/pluckFunctionLoDashTest.js +0 -51
  495. package/src/utils/test/pluckFunctionTest.js +0 -41
  496. package/src/utils/test/pluckObjects.js +0 -20
  497. package/src/utils/utils.js +0 -146
  498. package/tests/all.js +0 -24
  499. package/tests/large/bddTest.js +0 -9
  500. package/tests/large/expectedCrash.js +0 -3
  501. package/tests/large/expectedCrashTest.js +0 -9
  502. package/tests/large/filterCLI.js +0 -10
  503. package/tests/large/filterCLITest.js +0 -18
  504. package/tests/large/loadingCrash.js +0 -1
  505. package/tests/large/loadingCrashTest.js +0 -9
  506. package/tests/large/skip.js +0 -11
  507. package/tests/large/skipTest.js +0 -9
  508. package/tests/large/twoFailing.js +0 -9
  509. package/tests/large/twoFailingTest.js +0 -9
  510. package/tests/mocha/.npmignore +0 -1
  511. package/tests/mocha/basic.js +0 -12
  512. package/tests/mocha/gt-as-module.js +0 -65
  513. package/tests/mocha/test-collection.js +0 -67
  514. package/tests/small/errorInAsync.js +0 -6
  515. package/tests/small/errorInAsyncTest.js +0 -14
  516. package/tests/small/oneFails.js +0 -7
  517. package/tests/small/oneFailsTest.js +0 -18
  518. package/tests/small/pluckObjects.js +0 -20
  519. package/tests/small/pluckTest.js +0 -51
  520. package/tests/small/setupException.js +0 -8
  521. package/tests/small/setupExceptionTest.js +0 -9
  522. package/tests/small/teardownException.js +0 -8
  523. package/tests/small/teardownExceptionTest.js +0 -9
package/CHANGELOG.md ADDED
@@ -0,0 +1,1255 @@
1
+ # gtx-cli
2
+
3
+ ## 2.6.29
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`21b3304`](https://github.com/generaltranslation/gt/commit/21b33040774f9638fdf7edcfcf7170246a36fbec)]:
8
+ - generaltranslation@8.1.13
9
+
10
+ ## 2.6.28
11
+
12
+ ### Patch Changes
13
+
14
+ - [#1063](https://github.com/generaltranslation/gt/pull/1063) [`e7b1bb0`](https://github.com/generaltranslation/gt/commit/e7b1bb079145809d66296c0ad6628079f784b88e) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding CJK parser to gt-remark, bumping CLI
15
+
16
+ - Updated dependencies [[`e7b1bb0`](https://github.com/generaltranslation/gt/commit/e7b1bb079145809d66296c0ad6628079f784b88e)]:
17
+ - gt-remark@1.0.5
18
+
19
+ ## 2.6.27
20
+
21
+ ### Patch Changes
22
+
23
+ - [#1051](https://github.com/generaltranslation/gt/pull/1051) [`d36d4b8`](https://github.com/generaltranslation/gt/commit/d36d4b8459626c552c143fbdfa6d01f647a66533) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: string list registration
24
+
25
+ ## 2.6.26
26
+
27
+ ### Patch Changes
28
+
29
+ - [#1046](https://github.com/generaltranslation/gt/pull/1046) [`47918b7`](https://github.com/generaltranslation/gt/commit/47918b7a4c38967fe2148d972f0a3c740e0bc25d) Thanks [@brian-lou](https://github.com/brian-lou)! - Update /translate endpoint
30
+
31
+ - Updated dependencies [[`47918b7`](https://github.com/generaltranslation/gt/commit/47918b7a4c38967fe2148d972f0a3c740e0bc25d)]:
32
+ - generaltranslation@8.1.12
33
+
34
+ ## 2.6.25
35
+
36
+ ### Patch Changes
37
+
38
+ - [#1040](https://github.com/generaltranslation/gt/pull/1040) [`d7bc63f`](https://github.com/generaltranslation/gt/commit/d7bc63f497534eede92138c8836bc84169600ff1) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - chore: expose enqueue and upload commands
39
+
40
+ ## 2.6.24
41
+
42
+ ### Patch Changes
43
+
44
+ - [#1036](https://github.com/generaltranslation/gt/pull/1036) [`5fc08d0`](https://github.com/generaltranslation/gt/commit/5fc08d0028b7936b5916a048786bedc3b13e0042) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fix: Update composite JSONs when non-translatable content changes, fix bug where `save-local` update composite key index
45
+
46
+ ## 2.6.23
47
+
48
+ ### Patch Changes
49
+
50
+ - [#1034](https://github.com/generaltranslation/gt/pull/1034) [`7cd02ba`](https://github.com/generaltranslation/gt/commit/7cd02ba200c8645de01527a88f7cf32346e67d12) Thanks [@brian-lou](https://github.com/brian-lou)! - Modularize API logic; add retry for 5XX errors
51
+
52
+ - Updated dependencies [[`7cd02ba`](https://github.com/generaltranslation/gt/commit/7cd02ba200c8645de01527a88f7cf32346e67d12)]:
53
+ - generaltranslation@8.1.11
54
+
55
+ ## 2.6.22
56
+
57
+ ### Patch Changes
58
+
59
+ - [#1029](https://github.com/generaltranslation/gt/pull/1029) [`c3dcd6f`](https://github.com/generaltranslation/gt/commit/c3dcd6f9390e8516c6c0c1eee373e587b38c4772) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: compatability interface issue with types
60
+
61
+ ## 2.6.21
62
+
63
+ ### Patch Changes
64
+
65
+ - [#1021](https://github.com/generaltranslation/gt/pull/1021) [`4cbf7da`](https://github.com/generaltranslation/gt/commit/4cbf7da4bb0d202e2b7c8a6995566538b71856e9) Thanks [@brian-lou](https://github.com/brian-lou)! - Use default branch name instead of placeholder
66
+
67
+ - Updated dependencies [[`9e99e94`](https://github.com/generaltranslation/gt/commit/9e99e945cbf9e31990930e3428468f64d7240da5)]:
68
+ - generaltranslation@8.1.10
69
+
70
+ ## 2.6.20
71
+
72
+ ### Patch Changes
73
+
74
+ - [#1019](https://github.com/generaltranslation/gt/pull/1019) [`4dd02f0`](https://github.com/generaltranslation/gt/commit/4dd02f00309bfdbc8a2d49c1d4986ead1f28ac8b) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: default branch fallback
75
+
76
+ ## 2.6.19
77
+
78
+ ### Patch Changes
79
+
80
+ - [#1014](https://github.com/generaltranslation/gt/pull/1014) [`e421292`](https://github.com/generaltranslation/gt/commit/e421292739807db8696d7912da8b92731fb34b2b) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - refactor: library names
81
+
82
+ - [#1018](https://github.com/generaltranslation/gt/pull/1018) [`3ac2e30`](https://github.com/generaltranslation/gt/commit/3ac2e30dcd76bf5819f1a385397eb59bcc158732) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: gt-react-native inline tx
83
+
84
+ ## 2.6.18
85
+
86
+ ### Patch Changes
87
+
88
+ - [#1009](https://github.com/generaltranslation/gt/pull/1009) [`ffd6995`](https://github.com/generaltranslation/gt/commit/ffd6995d57e5444157071696e533ee29abcc2df4) Thanks [@pie575](https://github.com/pie575)! - added ai instructions on how to use the gt library
89
+
90
+ - [#1013](https://github.com/generaltranslation/gt/pull/1013) [`d01b29c`](https://github.com/generaltranslation/gt/commit/d01b29c0f5a4442f49a1ab6d8d5ee72403c6fa17) Thanks [@pie575](https://github.com/pie575)! - added flag to update-instructions add comments to ai files even if they weren't there before
91
+
92
+ - [#1007](https://github.com/generaltranslation/gt/pull/1007) [`7aaac80`](https://github.com/generaltranslation/gt/commit/7aaac80b67f4f6ffa8d9ef9aa00f6fc669596003) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - chore: add gt-node support
93
+
94
+ ## 2.6.17
95
+
96
+ ### Patch Changes
97
+
98
+ - [#1005](https://github.com/generaltranslation/gt/pull/1005) [`ca125b3`](https://github.com/generaltranslation/gt/commit/ca125b3212675b27fa756b8cad80b7a1f21f8306) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add handling of `openapi` field in group nodes for Mintlify docs
99
+
100
+ ## 2.6.16
101
+
102
+ ### Patch Changes
103
+
104
+ - [#1002](https://github.com/generaltranslation/gt/pull/1002) [`8f8368a`](https://github.com/generaltranslation/gt/commit/8f8368a8723f79c4ebe56129bac03cb6cb33eec8) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: branch detection vercel
105
+
106
+ ## 2.6.15
107
+
108
+ ### Patch Changes
109
+
110
+ - [#999](https://github.com/generaltranslation/gt/pull/999) [`09f3e68`](https://github.com/generaltranslation/gt/commit/09f3e6829243decffa795251d46c9e6a0d1ed878) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Allow `sharedStaticAssets` configuration to mirror shared asset structure
111
+
112
+ ## 2.6.14
113
+
114
+ ### Patch Changes
115
+
116
+ - [#996](https://github.com/generaltranslation/gt/pull/996) [`13714ba`](https://github.com/generaltranslation/gt/commit/13714ba951bd56e7b897e81ee529661da3dec01a) Thanks [@brian-lou](https://github.com/brian-lou)! - Change pino transport
117
+
118
+ - [#998](https://github.com/generaltranslation/gt/pull/998) [`9661270`](https://github.com/generaltranslation/gt/commit/966127076152d8a6d911324947942a05bd31cf6e) Thanks [@brian-lou](https://github.com/brian-lou)! - Disable branching by default
119
+
120
+ ## 2.6.13
121
+
122
+ ### Patch Changes
123
+
124
+ - [#995](https://github.com/generaltranslation/gt/pull/995) [`b33e1fd`](https://github.com/generaltranslation/gt/commit/b33e1fd3073b23c2cc5db900619fb4c8d4a64c1f) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Improve warning display for CLI
125
+
126
+ - Updated dependencies [[`4a66903`](https://github.com/generaltranslation/gt/commit/4a669031f74a0b20783709752ab7fc0ab40869df)]:
127
+ - generaltranslation@8.1.9
128
+
129
+ ## 2.6.12
130
+
131
+ ### Patch Changes
132
+
133
+ - [#992](https://github.com/generaltranslation/gt/pull/992) [`776a12f`](https://github.com/generaltranslation/gt/commit/776a12f5ac2fbc3bb832d96ca337fcbadbf1fd49) Thanks [@brian-lou](https://github.com/brian-lou)! - Enable branching for default; graceful fallback
134
+
135
+ ## 2.6.11
136
+
137
+ ### Patch Changes
138
+
139
+ - [#988](https://github.com/generaltranslation/gt/pull/988) [`efdf632`](https://github.com/generaltranslation/gt/commit/efdf632acab7cdd4d1819408d808bd4ac05bc7c8) Thanks [@pie575](https://github.com/pie575)! - Added function to export errors as json from running validate
140
+
141
+ ## 2.6.10
142
+
143
+ ### Patch Changes
144
+
145
+ - [#986](https://github.com/generaltranslation/gt/pull/986) [`b943ac2`](https://github.com/generaltranslation/gt/commit/b943ac200d8ec41219b3c09a669f94590fec0f65) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - chore: include branchid in gt config
146
+
147
+ ## 2.6.9
148
+
149
+ ### Patch Changes
150
+
151
+ - [#984](https://github.com/generaltranslation/gt/pull/984) [`bfd90d5`](https://github.com/generaltranslation/gt/commit/bfd90d596f925ce0ab56d856994d1fb11cd55dc2) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix versionid calculation
152
+
153
+ ## 2.6.8
154
+
155
+ ### Patch Changes
156
+
157
+ - [#981](https://github.com/generaltranslation/gt/pull/981) [`fca3a25`](https://github.com/generaltranslation/gt/commit/fca3a2583eb7f21bc3ef13516351d479f7bef882) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Handling source file movement to persist existing translations instead of retranslating
158
+
159
+ - Updated dependencies [[`fca3a25`](https://github.com/generaltranslation/gt/commit/fca3a2583eb7f21bc3ef13516351d479f7bef882)]:
160
+ - generaltranslation@8.1.8
161
+
162
+ ## 2.6.7
163
+
164
+ ### Patch Changes
165
+
166
+ - [#975](https://github.com/generaltranslation/gt/pull/975) [`18d6672`](https://github.com/generaltranslation/gt/commit/18d6672c45d1cafe93817aec67fa60c70a1c7567) Thanks [@brian-lou](https://github.com/brian-lou)! - Add branch config options
167
+
168
+ - [#978](https://github.com/generaltranslation/gt/pull/978) [`73238cf`](https://github.com/generaltranslation/gt/commit/73238cf4d55e8b42c10c870c6a525df9ff36c338) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fixing `save-local` behavior for composite JSONs
169
+
170
+ ## 2.6.6
171
+
172
+ ### Patch Changes
173
+
174
+ - [#974](https://github.com/generaltranslation/gt/pull/974) [`ba07f07`](https://github.com/generaltranslation/gt/commit/ba07f078079a4ae0d07231fb98fee1a4668a5a39) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fixing `save-local` behavior for composite JSONs
175
+
176
+ ## 2.6.5
177
+
178
+ ### Patch Changes
179
+
180
+ - [#971](https://github.com/generaltranslation/gt/pull/971) [`821b0f0`](https://github.com/generaltranslation/gt/commit/821b0f05bab247e4d4c91cabc3ccfd45d672d25f) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding `experimentalLocalizeRelativeAssets` config option to handle asset paths
181
+
182
+ ## 2.6.4
183
+
184
+ ### Patch Changes
185
+
186
+ - [#969](https://github.com/generaltranslation/gt/pull/969) [`0fef5cb`](https://github.com/generaltranslation/gt/commit/0fef5cb5266a0aa6ccdf2dc8778ee913eb145b5d) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add flag for Mintlify docs to infer title from source file name when missing title in YAML frontmatter
187
+
188
+ ## 2.6.3
189
+
190
+ ### Patch Changes
191
+
192
+ - [#967](https://github.com/generaltranslation/gt/pull/967) [`bc52a1d`](https://github.com/generaltranslation/gt/commit/bc52a1ddc8ef11540681215b8a9b0ab54e1b3bca) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Reverting Mintlify-specific `docs.json` file filtering
193
+
194
+ ## 2.6.2
195
+
196
+ ### Patch Changes
197
+
198
+ - [#964](https://github.com/generaltranslation/gt/pull/964) [`e0da677`](https://github.com/generaltranslation/gt/commit/e0da677827434c5bfda945557f643c4468a2dac6) Thanks [@pie575](https://github.com/pie575)! - Refactor parseJSX and parseStringFunction
199
+
200
+ - [#966](https://github.com/generaltranslation/gt/pull/966) [`f446e01`](https://github.com/generaltranslation/gt/commit/f446e01754671d3586feb811c036d317a8693039) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add config flag to filter Mintlify files based on `docs.json` pages
201
+
202
+ ## 2.6.1
203
+
204
+ ### Patch Changes
205
+
206
+ - [#960](https://github.com/generaltranslation/gt/pull/960) [`eb07e8c`](https://github.com/generaltranslation/gt/commit/eb07e8ce1b610551437b40f96c72ac76d0af7b67) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - chore: upload shared id for static content
207
+
208
+ - Updated dependencies [[`eb07e8c`](https://github.com/generaltranslation/gt/commit/eb07e8ce1b610551437b40f96c72ac76d0af7b67)]:
209
+ - generaltranslation@8.1.7
210
+
211
+ ## 2.6.0
212
+
213
+ ### Minor Changes
214
+
215
+ - [#958](https://github.com/generaltranslation/gt/pull/958) [`c64d5d1`](https://github.com/generaltranslation/gt/commit/c64d5d1bc7fda78294e09b93c4a4e08d576409fc) Thanks [@pie575](https://github.com/pie575)! - CLI New Default Workflow
216
+
217
+ ## 2.5.49
218
+
219
+ ### Patch Changes
220
+
221
+ - [#953](https://github.com/generaltranslation/gt/pull/953) [`4fca112`](https://github.com/generaltranslation/gt/commit/4fca1123d797883b8ad73a770ad177b5068a4707) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add handling for OpenAPI configurations via Mintlify's `docs.json`
222
+
223
+ ## 2.5.48
224
+
225
+ ### Patch Changes
226
+
227
+ - Updated dependencies [[`feada39`](https://github.com/generaltranslation/gt/commit/feada3918ad78a1584f07245ac158c2d994a38da)]:
228
+ - generaltranslation@8.1.6
229
+
230
+ ## 2.5.47
231
+
232
+ ### Patch Changes
233
+
234
+ - [#947](https://github.com/generaltranslation/gt/pull/947) [`5dccb20`](https://github.com/generaltranslation/gt/commit/5dccb20c94080aba17685d0ef623882b446cb39b) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fix to avoid anchor ID double escaping during parse fallback on MDX
235
+
236
+ ## 2.5.46
237
+
238
+ ### Patch Changes
239
+
240
+ - [#945](https://github.com/generaltranslation/gt/pull/945) [`3f0da49`](https://github.com/generaltranslation/gt/commit/3f0da498beaff2fe697cbf785bd1cc5fa069d93d) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add escaping of anchor ID syntax to all files passed in as MDX via gt.config.json
241
+
242
+ ## 2.5.45
243
+
244
+ ### Patch Changes
245
+
246
+ - [#944](https://github.com/generaltranslation/gt/pull/944) [`0a58f13`](https://github.com/generaltranslation/gt/commit/0a58f13c9d25938a5e12644349248ce18aebb796) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add option to skip file validation when passing for translation
247
+
248
+ - [#942](https://github.com/generaltranslation/gt/pull/942) [`0cb890b`](https://github.com/generaltranslation/gt/commit/0cb890b84d775b360de0d8f6ed2b1ec8aeaa0af2) Thanks [@archie-mckenzie](https://github.com/archie-mckenzie)! - Refreshed CLI setup wizard flow
249
+
250
+ ## 2.5.44
251
+
252
+ ### Patch Changes
253
+
254
+ - [#936](https://github.com/generaltranslation/gt/pull/936) [`45ee200`](https://github.com/generaltranslation/gt/commit/45ee20016ff82ea07008e053e296146a0e925841) Thanks [@brian-lou](https://github.com/brian-lou)! - Create Locadex AI Agent link in gtx-cli init command
255
+
256
+ ## 2.5.43
257
+
258
+ ### Patch Changes
259
+
260
+ - [#933](https://github.com/generaltranslation/gt/pull/933) [`a9aae8c`](https://github.com/generaltranslation/gt/commit/a9aae8c7d22a074ef490b4f4a563a64ae50cd444) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fixing handling of [locale] placeholder in blob patterns
261
+
262
+ ## 2.5.42
263
+
264
+ ### Patch Changes
265
+
266
+ - [#932](https://github.com/generaltranslation/gt/pull/932) [`dcdd751`](https://github.com/generaltranslation/gt/commit/dcdd7516edfe2e51ed633c79bc2045fb14fd938b) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: compiler cli deps when installed at the same time caused an bug in npm with the esbuild version
267
+
268
+ ## 2.5.41
269
+
270
+ ### Patch Changes
271
+
272
+ - [#929](https://github.com/generaltranslation/gt/pull/929) [`ca7b778`](https://github.com/generaltranslation/gt/commit/ca7b7785cc28817c154900933ac7be2098a10faf) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Auto-update OpenAPI spec paths when specs are modified
273
+
274
+ ## 2.5.40
275
+
276
+ ### Patch Changes
277
+
278
+ - [#927](https://github.com/generaltranslation/gt/pull/927) [`f0f86f3`](https://github.com/generaltranslation/gt/commit/f0f86f3c2dbb90d43029f64def2b3dc43584bad7) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding YAML support for Mintlify OpenAPI configurations
279
+
280
+ ## 2.5.39
281
+
282
+ ### Patch Changes
283
+
284
+ - [#920](https://github.com/generaltranslation/gt/pull/920) [`3071d23`](https://github.com/generaltranslation/gt/commit/3071d2396f67e1e0a907878ec4555c314b2e5c52) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: bin release
285
+
286
+ ## 2.5.38
287
+
288
+ ### Patch Changes
289
+
290
+ - [#921](https://github.com/generaltranslation/gt/pull/921) [`1aece7c`](https://github.com/generaltranslation/gt/commit/1aece7c23081a0b26d6d0e58e0fc76ba18b80b47) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Bumping CLI minor version to avoid npm release conflict
291
+
292
+ ## 2.5.37
293
+
294
+ ### Patch Changes
295
+
296
+ - [#911](https://github.com/generaltranslation/gt/pull/911) [`6af64c0`](https://github.com/generaltranslation/gt/commit/6af64c04fa6e3d6332a206d9b68fa1a46de1c002) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding `experimentalCanonicalLocaleKeys` option to `gt.config.json`. It overrides alias configurations when setting keys in a JSON schema
297
+
298
+ - [#908](https://github.com/generaltranslation/gt/pull/908) [`1e7e52f`](https://github.com/generaltranslation/gt/commit/1e7e52f3a77835887ff187ffeb99d6e3dc2a9e6c) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix timeout logic; Refactor upload command
299
+
300
+ - Updated dependencies [[`1e7e52f`](https://github.com/generaltranslation/gt/commit/1e7e52f3a77835887ff187ffeb99d6e3dc2a9e6c)]:
301
+ - generaltranslation@8.1.5
302
+
303
+ ## 2.5.36
304
+
305
+ ### Patch Changes
306
+
307
+ - [#806](https://github.com/generaltranslation/gt/pull/806) [`d59dd40`](https://github.com/generaltranslation/gt/commit/d59dd40e7b042e2bb4e718f17f3b2e764165151f) Thanks [@archie-mckenzie](https://github.com/archie-mckenzie)! - feat: declareStatic()
308
+
309
+ - Updated dependencies [[`d59dd40`](https://github.com/generaltranslation/gt/commit/d59dd40e7b042e2bb4e718f17f3b2e764165151f)]:
310
+ - generaltranslation@8.1.4
311
+
312
+ ## 2.5.35
313
+
314
+ ### Patch Changes
315
+
316
+ - [#905](https://github.com/generaltranslation/gt/pull/905) [`e73bf82`](https://github.com/generaltranslation/gt/commit/e73bf820422771a59408eb643e22ef7f99682b9f) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix CLI failure handling
317
+
318
+ ## 2.5.34
319
+
320
+ ### Patch Changes
321
+
322
+ - [#904](https://github.com/generaltranslation/gt/pull/904) [`51d412f`](https://github.com/generaltranslation/gt/commit/51d412f503bbb838daaaca47fc8165873ce1857e) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Assign `save-local` changes to most recent download
323
+
324
+ ## 2.5.33
325
+
326
+ ### Patch Changes
327
+
328
+ - [#901](https://github.com/generaltranslation/gt/pull/901) [`6320663`](https://github.com/generaltranslation/gt/commit/6320663e032aa4b8a337e08423a5be7215260e87) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: release error
329
+
330
+ ## 2.5.32
331
+
332
+ ### Patch Changes
333
+
334
+ - [#899](https://github.com/generaltranslation/gt/pull/899) [`94edf07`](https://github.com/generaltranslation/gt/commit/94edf07fb5a05130da967ffb1e76577667e9dff0) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: bin release
335
+
336
+ ## 2.5.31
337
+
338
+ ### Patch Changes
339
+
340
+ - [#895](https://github.com/generaltranslation/gt/pull/895) [`a64277c`](https://github.com/generaltranslation/gt/commit/a64277cd1d633899f4ac0977b389ccfa00660512) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: support for cli execution independent of package resolution
341
+
342
+ ## 2.5.30
343
+
344
+ ### Patch Changes
345
+
346
+ - [#896](https://github.com/generaltranslation/gt/pull/896) [`443ee73`](https://github.com/generaltranslation/gt/commit/443ee73395a514eec448b03810cb871062bf5b2a) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix dry-run error conditions
347
+
348
+ ## 2.5.29
349
+
350
+ ### Patch Changes
351
+
352
+ - [#892](https://github.com/generaltranslation/gt/pull/892) [`48b2771`](https://github.com/generaltranslation/gt/commit/48b2771aa7666e8f94f485f86acf32525d26bd3f) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fixing handling of OpenAPI paths for Mintlify
353
+
354
+ ## 2.5.28
355
+
356
+ ### Patch Changes
357
+
358
+ - [#883](https://github.com/generaltranslation/gt/pull/883) [`e113d8d`](https://github.com/generaltranslation/gt/commit/e113d8d8fb5e37f45a4aa77544e8f4666519bfe8) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Send file paths in translation metadata
359
+
360
+ - [#885](https://github.com/generaltranslation/gt/pull/885) [`22ef3ec`](https://github.com/generaltranslation/gt/commit/22ef3ecb9c2a41a5d982684cc2d45834be11ae5b) Thanks [@brian-lou](https://github.com/brian-lou)! - Add shared flags to CLI save-local command
361
+
362
+ - [#886](https://github.com/generaltranslation/gt/pull/886) [`8ba1edf`](https://github.com/generaltranslation/gt/commit/8ba1edfa838fe9209ae6fa5fe154e7c991be9aa6) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Handle Mintlify anchor IDs containing escaped characters
363
+
364
+ - Updated dependencies [[`e113d8d`](https://github.com/generaltranslation/gt/commit/e113d8d8fb5e37f45a4aa77544e8f4666519bfe8)]:
365
+ - generaltranslation@8.1.3
366
+
367
+ ## 2.5.27
368
+
369
+ ### Patch Changes
370
+
371
+ - [#880](https://github.com/generaltranslation/gt/pull/880) [`3dc7b64`](https://github.com/generaltranslation/gt/commit/3dc7b6460cd05ddcb656a247602f4f50b06312fd) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Hotfix: sending format metadata to the API during build time translation
372
+
373
+ - Updated dependencies [[`3dc7b64`](https://github.com/generaltranslation/gt/commit/3dc7b6460cd05ddcb656a247602f4f50b06312fd)]:
374
+ - generaltranslation@8.1.2
375
+
376
+ ## 2.5.26
377
+
378
+ ### Patch Changes
379
+
380
+ - [#878](https://github.com/generaltranslation/gt/pull/878) [`5624f1c`](https://github.com/generaltranslation/gt/commit/5624f1c074ff9cb2065ed85dbb30fae24939f53e) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Updating Mintlify preset to include `experimentalSort`
381
+
382
+ ## 2.5.25
383
+
384
+ ### Patch Changes
385
+
386
+ - [#876](https://github.com/generaltranslation/gt/pull/876) [`28bd6d5`](https://github.com/generaltranslation/gt/commit/28bd6d5f1ed50658da2e3adc5b59a40804b00b02) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding experimental alphabetical sort for JSONs with locales as keys
387
+
388
+ ## 2.5.24
389
+
390
+ ### Patch Changes
391
+
392
+ - [#860](https://github.com/generaltranslation/gt/pull/860) [`37bac4c`](https://github.com/generaltranslation/gt/commit/37bac4ce11689a2f729efbcb2e052205447a7f71) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - chore: support for max char
393
+
394
+ - Updated dependencies [[`37bac4c`](https://github.com/generaltranslation/gt/commit/37bac4ce11689a2f729efbcb2e052205447a7f71)]:
395
+ - generaltranslation@8.1.1
396
+
397
+ ## 2.5.23
398
+
399
+ ### Patch Changes
400
+
401
+ - Updated dependencies [[`3e8ceb4`](https://github.com/generaltranslation/gt/commit/3e8ceb4526530d38eae469b05e8bf273d5ca05ac)]:
402
+ - generaltranslation@8.1.0
403
+
404
+ ## 2.5.22
405
+
406
+ ### Patch Changes
407
+
408
+ - [#870](https://github.com/generaltranslation/gt/pull/870) [`4291258`](https://github.com/generaltranslation/gt/commit/42912587a51da045c0b578ac71699fda4a8fcc26) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Persist style of YAML frontmatter when applying Mintlify OpenAPI postprocessing
409
+
410
+ ## 2.5.21
411
+
412
+ ### Patch Changes
413
+
414
+ - [#868](https://github.com/generaltranslation/gt/pull/868) [`34499ce`](https://github.com/generaltranslation/gt/commit/34499ce8407d4b96dea1b4db7a92225e8118fc56) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Removing `"openapi"` top level config, adding as option under `"options.mintlify.openapi"`. Also adding a `jsonSchema` preset for `openapi`.
415
+
416
+ ## 2.5.20
417
+
418
+ ### Patch Changes
419
+
420
+ - Updated dependencies [[`997a5df`](https://github.com/generaltranslation/gt/commit/997a5df6ac355b49a77e768935f9017af689de21)]:
421
+ - generaltranslation@8.0.6
422
+
423
+ ## 2.5.19
424
+
425
+ ### Patch Changes
426
+
427
+ - [#853](https://github.com/generaltranslation/gt/pull/853) [`02abd0a`](https://github.com/generaltranslation/gt/commit/02abd0a970a09c514744982f06169f385dfdd972) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Including hash of post-processed files in `gt-lock.json` to avoid unnecessary saves when calling `save-local`
428
+
429
+ ## 2.5.18
430
+
431
+ ### Patch Changes
432
+
433
+ - [#851](https://github.com/generaltranslation/gt/pull/851) [`cf5f0e3`](https://github.com/generaltranslation/gt/commit/cf5f0e3f1537c304b7ea5703714ffb4956a7f6f4) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Skip anchor ID fallback in codeblocks to avoid adding anchors to comments
434
+
435
+ ## 2.5.17
436
+
437
+ ### Patch Changes
438
+
439
+ - [#848](https://github.com/generaltranslation/gt/pull/848) [`db4ab5c`](https://github.com/generaltranslation/gt/commit/db4ab5cad2726d78dc7c4e4dd7f3a83adaa1fcfb) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding OpenAPI handling via `gt.config.json`
440
+
441
+ ## 2.5.16
442
+
443
+ ### Patch Changes
444
+
445
+ - [#843](https://github.com/generaltranslation/gt/pull/843) [`b135cbe`](https://github.com/generaltranslation/gt/commit/b135cbed44b259619697d9a429ba61c434bed7b5) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Job polling correctly resolves locale aliases
446
+
447
+ ## 2.5.15
448
+
449
+ ### Patch Changes
450
+
451
+ - [#838](https://github.com/generaltranslation/gt/pull/838) [`3a3d45b`](https://github.com/generaltranslation/gt/commit/3a3d45be0b454fb017ad4b75a772df1c8aaee65e) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding fallback when localizing static imports
452
+
453
+ ## 2.5.14
454
+
455
+ ### Patch Changes
456
+
457
+ - [#837](https://github.com/generaltranslation/gt/pull/837) [`0772b57`](https://github.com/generaltranslation/gt/commit/0772b5714f1cfe8af5f5edcdf6bcb28125a1536f) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Making experimentalAddHeaderAnchorIds independent of experimentalLocalizeStaticUrls and fetching anchor IDs from source files when present
458
+
459
+ - [#835](https://github.com/generaltranslation/gt/pull/835) [`79225fb`](https://github.com/generaltranslation/gt/commit/79225fb3bbea3bb7a453cc237c619b67dd0dd3da) Thanks [@brian-lou](https://github.com/brian-lou)! - When using --force translate, also force files to re-download
460
+
461
+ ## 2.5.13
462
+
463
+ ### Patch Changes
464
+
465
+ - [#833](https://github.com/generaltranslation/gt/pull/833) [`30a04f9`](https://github.com/generaltranslation/gt/commit/30a04f955c64013daf2a32480fb33b3d4e08d678) Thanks [@brian-lou](https://github.com/brian-lou)! - Add txt file translation support
466
+
467
+ - Updated dependencies [[`30a04f9`](https://github.com/generaltranslation/gt/commit/30a04f955c64013daf2a32480fb33b3d4e08d678)]:
468
+ - generaltranslation@8.0.5
469
+
470
+ ## 2.5.12
471
+
472
+ ### Patch Changes
473
+
474
+ - [#816](https://github.com/generaltranslation/gt/pull/816) [`e42a442`](https://github.com/generaltranslation/gt/commit/e42a44280442e588b82b3fe1aff52f1e53aa8605) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add gt-i18n, a pure js library for translation
475
+
476
+ - Updated dependencies [[`e42a442`](https://github.com/generaltranslation/gt/commit/e42a44280442e588b82b3fe1aff52f1e53aa8605)]:
477
+ - generaltranslation@8.0.4
478
+
479
+ ## 2.5.11
480
+
481
+ ### Patch Changes
482
+
483
+ - [#827](https://github.com/generaltranslation/gt/pull/827) [`35197d0`](https://github.com/generaltranslation/gt/commit/35197d075670411dcdd2ddc93fd5eaf021cd924b) Thanks [@brian-lou](https://github.com/brian-lou)! - Pin @clack/prompts version
484
+
485
+ ## 2.5.10
486
+
487
+ ### Patch Changes
488
+
489
+ - [#825](https://github.com/generaltranslation/gt/pull/825) [`a9bdf21`](https://github.com/generaltranslation/gt/commit/a9bdf21d9ec80edc190b32b963dfe19c5fe2ea33) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix init write files
490
+
491
+ ## 2.5.9
492
+
493
+ ### Patch Changes
494
+
495
+ - [#823](https://github.com/generaltranslation/gt/pull/823) [`afbd29a`](https://github.com/generaltranslation/gt/commit/afbd29a34b051c76fce387269c4eb4a2e00a5831) Thanks [@brian-lou](https://github.com/brian-lou)! - Deprecate old 'setup' command -> Use 'init' instead. New 'setup' command runs project setup
496
+
497
+ - Updated dependencies [[`afbd29a`](https://github.com/generaltranslation/gt/commit/afbd29a34b051c76fce387269c4eb4a2e00a5831)]:
498
+ - generaltranslation@8.0.3
499
+
500
+ ## 2.5.8
501
+
502
+ ### Patch Changes
503
+
504
+ - [#821](https://github.com/generaltranslation/gt/pull/821) [`321854a`](https://github.com/generaltranslation/gt/commit/321854ad881ca07b6a0207b3b0cbc004c6c0f5a4) Thanks [@brian-lou](https://github.com/brian-lou)! - Refactor CLI Logging behavior
505
+
506
+ ## 2.5.7
507
+
508
+ ### Patch Changes
509
+
510
+ - [#819](https://github.com/generaltranslation/gt/pull/819) [`50338d2`](https://github.com/generaltranslation/gt/commit/50338d2192e2882a4192273a7bbf12d39939c209) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding sorting by locale order
511
+
512
+ ## 2.5.6
513
+
514
+ ### Patch Changes
515
+
516
+ - [#817](https://github.com/generaltranslation/gt/pull/817) [`80eef0e`](https://github.com/generaltranslation/gt/commit/80eef0e0f61d5a07ed850aa39b25e81bddd12b34) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: Static component resolution edge cases
517
+
518
+ ## 2.5.5
519
+
520
+ ### Patch Changes
521
+
522
+ - [#815](https://github.com/generaltranslation/gt/pull/815) [`e7d25b0`](https://github.com/generaltranslation/gt/commit/e7d25b06a3e1d7ca404d64257570b88e7b0d1915) Thanks [@brian-lou](https://github.com/brian-lou)! - Batch enqueue jobs
523
+
524
+ - Updated dependencies [[`e7d25b0`](https://github.com/generaltranslation/gt/commit/e7d25b06a3e1d7ca404d64257570b88e7b0d1915)]:
525
+ - generaltranslation@8.0.2
526
+
527
+ ## 2.5.4
528
+
529
+ ### Patch Changes
530
+
531
+ - [#807](https://github.com/generaltranslation/gt/pull/807) [`293a5a3`](https://github.com/generaltranslation/gt/commit/293a5a3ceba2321eed7b1271ca955331995f40a7) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Add handling of shared static assets
532
+
533
+ ## 2.5.3
534
+
535
+ ### Patch Changes
536
+
537
+ - Updated dependencies [[`f98c504`](https://github.com/generaltranslation/gt/commit/f98c504f1e025024b3e1e5e16a0271e86ed095fa)]:
538
+ - generaltranslation@8.0.1
539
+
540
+ ## 2.5.2
541
+
542
+ ### Patch Changes
543
+
544
+ - [#798](https://github.com/generaltranslation/gt/pull/798) [`cf475e4`](https://github.com/generaltranslation/gt/commit/cf475e4db92199cf61f9179b7d678ed3aa116c98) Thanks [@brian-lou](https://github.com/brian-lou)! - Test OIDC
545
+
546
+ ## 2.5.1
547
+
548
+ ### Patch Changes
549
+
550
+ - [#796](https://github.com/generaltranslation/gt/pull/796) [`855a653`](https://github.com/generaltranslation/gt/commit/855a6538e2a080fc73d97585df2a838f02a3d00a) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: remove null vals from jsx children
551
+
552
+ ## 2.5.0
553
+
554
+ ### Minor Changes
555
+
556
+ - [#788](https://github.com/generaltranslation/gt/pull/788) [`99e4648`](https://github.com/generaltranslation/gt/commit/99e46486ae2046c689e0045372d63c4eb3dc5d48) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - More information: https://https://generaltranslation.com/en-US/blog/gt-next_v6_8_0
557
+
558
+ feat: static component
559
+
560
+ - [#791](https://github.com/generaltranslation/gt/pull/791) [`fee5d4a`](https://github.com/generaltranslation/gt/commit/fee5d4a3d0fd20e0928eebb83201a87289265719) Thanks [@brian-lou](https://github.com/brian-lou)! - Update Notes:
561
+ https://generaltranslation.com/blog/generaltranslation_v8
562
+
563
+ Please update the following packages to the latest version:
564
+ - generaltranslation: `7.9.1` or later
565
+ - gtx-cli: `2.4.15` or later
566
+ - gt-sanity: `1.0.11` or later
567
+
568
+ Older versions of these packages may not be compatible with the latest version of the General Translation API and may require updating.
569
+
570
+ ### Patch Changes
571
+
572
+ - Updated dependencies [[`fee5d4a`](https://github.com/generaltranslation/gt/commit/fee5d4a3d0fd20e0928eebb83201a87289265719)]:
573
+ - generaltranslation@8.0.0
574
+
575
+ ## 2.4.15
576
+
577
+ ### Patch Changes
578
+
579
+ - [#792](https://github.com/generaltranslation/gt/pull/792) [`b6d6869`](https://github.com/generaltranslation/gt/commit/b6d686917316f6ed44130a54509459a7f9ee35fa) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Skipping over JSON and YAML files with failing parse to avoid crashing
580
+
581
+ ## 2.4.14
582
+
583
+ ### Patch Changes
584
+
585
+ - Updated dependencies [[`3da05a1`](https://github.com/generaltranslation/gt/commit/3da05a12a37a62ace3c7e321aa2fed5a4af52ad9)]:
586
+ - generaltranslation@7.9.1
587
+
588
+ ## 2.4.13
589
+
590
+ ### Patch Changes
591
+
592
+ - Updated dependencies [[`93881f1`](https://github.com/generaltranslation/gt/commit/93881f159455a9bbc13d14e7fec9befa60998ba3)]:
593
+ - generaltranslation@7.9.0
594
+
595
+ ## 2.4.12
596
+
597
+ ### Patch Changes
598
+
599
+ - [#782](https://github.com/generaltranslation/gt/pull/782) [`155fc2c`](https://github.com/generaltranslation/gt/commit/155fc2c987078b2ffc12c55abb65bb7ff16eb09b) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: only throw errors in development for invalid icu strings
600
+
601
+ ## 2.4.11
602
+
603
+ ### Patch Changes
604
+
605
+ - [#780](https://github.com/generaltranslation/gt/pull/780) [`c048320`](https://github.com/generaltranslation/gt/commit/c048320ae0daf91bebf65145aba6fb15c2f3612d) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - Fix CLI parsing for nbsp characters
606
+
607
+ ## 2.4.10
608
+
609
+ ### Patch Changes
610
+
611
+ - [#778](https://github.com/generaltranslation/gt/pull/778) [`0d8f414`](https://github.com/generaltranslation/gt/commit/0d8f4144696873b15f0aaa6744bdb7390d472279) Thanks [@SamEggert](https://github.com/SamEggert)! - skip dynamic expressions for HTML content props in parseJSX
612
+
613
+ ## 2.4.9
614
+
615
+ ### Patch Changes
616
+
617
+ - [#774](https://github.com/generaltranslation/gt/pull/774) [`87dab40`](https://github.com/generaltranslation/gt/commit/87dab40efc9469d6ba3b3dc143d7d7a27422f7b0) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Hiding saving local translations behind the --save-local flag
618
+
619
+ ## 2.4.8
620
+
621
+ ### Patch Changes
622
+
623
+ - Updated dependencies [[`7434c15`](https://github.com/generaltranslation/gt/commit/7434c1503c2a62bdb90d4058f903a56331276365)]:
624
+ - generaltranslation@7.8.0
625
+
626
+ ## 2.4.7
627
+
628
+ ### Patch Changes
629
+
630
+ - [#767](https://github.com/generaltranslation/gt/pull/767) [`b27a947`](https://github.com/generaltranslation/gt/commit/b27a947a46d2ad802278d79d45d25cdccd7193d5) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix monorepo in-line string resolution
631
+
632
+ ## 2.4.6
633
+
634
+ ### Patch Changes
635
+
636
+ - [#763](https://github.com/generaltranslation/gt/pull/763) [`b6a79a8`](https://github.com/generaltranslation/gt/commit/b6a79a868630725eb1106faaa2c385c305891e9c) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Allow lists for overrides in gt.config.json
637
+
638
+ ## 2.4.5
639
+
640
+ ### Patch Changes
641
+
642
+ - [#759](https://github.com/generaltranslation/gt/pull/759) [`cf04026`](https://github.com/generaltranslation/gt/commit/cf04026df7072af60999f281ba342a1baa58f7ff) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Migrating downloaded-versions.json to gt-lock.json, make .gt and .locadex interchangable
643
+
644
+ ## 2.4.4
645
+
646
+ ### Patch Changes
647
+
648
+ - Updated dependencies [[`7ba2e84`](https://github.com/generaltranslation/gt/commit/7ba2e8412b608aa3415f4865dc26adbbd3daa236)]:
649
+ - generaltranslation@7.7.3
650
+
651
+ ## 2.4.3
652
+
653
+ ### Patch Changes
654
+
655
+ - [#755](https://github.com/generaltranslation/gt/pull/755) [`20ec920`](https://github.com/generaltranslation/gt/commit/20ec920ecf3fb04e464f281400429c68f3c1a701) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Passing project locales as part of translation setup process
656
+
657
+ - Updated dependencies [[`20ec920`](https://github.com/generaltranslation/gt/commit/20ec920ecf3fb04e464f281400429c68f3c1a701)]:
658
+ - generaltranslation@7.7.2
659
+
660
+ ## 2.4.2
661
+
662
+ ### Patch Changes
663
+
664
+ - [#753](https://github.com/generaltranslation/gt/pull/753) [`bd0bc26`](https://github.com/generaltranslation/gt/commit/bd0bc265192d5b51618a537a92122cd6eeae6e4d) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: avoid downloading files when using --publish flag
665
+
666
+ ## 2.4.1
667
+
668
+ ### Patch Changes
669
+
670
+ - [#751](https://github.com/generaltranslation/gt/pull/751) [`7114780`](https://github.com/generaltranslation/gt/commit/71147803bf3e4cf21556ffb9b5f77756e283a32a) Thanks [@SamEggert](https://github.com/SamEggert)! - transform for yaml files -- retrieve file format in downloadFileBatch
671
+
672
+ - Updated dependencies [[`7114780`](https://github.com/generaltranslation/gt/commit/71147803bf3e4cf21556ffb9b5f77756e283a32a)]:
673
+ - generaltranslation@7.7.1
674
+
675
+ ## 2.4.0
676
+
677
+ ### Minor Changes
678
+
679
+ - [#745](https://github.com/generaltranslation/gt/pull/745) [`5208937`](https://github.com/generaltranslation/gt/commit/520893719480b40774ccd749fe73727cf490f46c) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding local translation editing. Local user edits to translation will now be saved and used to inform future translations of the same file.
680
+
681
+ ### Patch Changes
682
+
683
+ - Updated dependencies [[`5208937`](https://github.com/generaltranslation/gt/commit/520893719480b40774ccd749fe73727cf490f46c)]:
684
+ - generaltranslation@7.7.0
685
+
686
+ ## 2.3.15
687
+
688
+ ### Patch Changes
689
+
690
+ - [#741](https://github.com/generaltranslation/gt/pull/741) [`559c0bf`](https://github.com/generaltranslation/gt/commit/559c0bfa7ff9e6664f65317eddbab419682a3c95) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Avoid localizing relative MDX links
691
+
692
+ ## 2.3.14
693
+
694
+ ### Patch Changes
695
+
696
+ - [#739](https://github.com/generaltranslation/gt/pull/739) [`7afed0b`](https://github.com/generaltranslation/gt/commit/7afed0bda5be08d83bbe75cca9fb657ff5a50dae) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Only post-process files downloaded by gtx-cli on current run
697
+
698
+ ## 2.3.13
699
+
700
+ ### Patch Changes
701
+
702
+ - Updated dependencies [[`ed93e41`](https://github.com/generaltranslation/gt/commit/ed93e419e9547e6f2353d99f896702016f8ba751)]:
703
+ - generaltranslation@7.6.5
704
+
705
+ ## 2.3.12
706
+
707
+ ### Patch Changes
708
+
709
+ - [#735](https://github.com/generaltranslation/gt/pull/735) [`8e4612e`](https://github.com/generaltranslation/gt/commit/8e4612e0b2c426d64153b6ca460e619fa29cb8e8) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: auto enable gt compiler in default config
710
+
711
+ ## 2.3.11
712
+
713
+ ### Patch Changes
714
+
715
+ - [#732](https://github.com/generaltranslation/gt/pull/732) [`bcd8272`](https://github.com/generaltranslation/gt/commit/bcd8272576ff02432e39cf1887a48b4f566eb752) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Added freezing when fetching translations for unmodified source files. This will keep any local changes until retranslation is triggered or --force-download is used
716
+
717
+ ## 2.3.10
718
+
719
+ ### Patch Changes
720
+
721
+ - [#731](https://github.com/generaltranslation/gt/pull/731) [`6896570`](https://github.com/generaltranslation/gt/commit/68965708f43f1bdd0315aa96ce69b6ef6d68260d) Thanks [@SamEggert](https://github.com/SamEggert)! - check for gt.config.json in the .locadex directory
722
+
723
+ ## 2.3.9
724
+
725
+ ### Patch Changes
726
+
727
+ - [#715](https://github.com/generaltranslation/gt/pull/715) [`cc6c06a`](https://github.com/generaltranslation/gt/commit/cc6c06abf0ad0f00f55825e85d59d199ffbec263) Thanks [@brian-lou](https://github.com/brian-lou)! - Instead of throwing errors, CLI will now call process.exit
728
+
729
+ ## 2.3.8
730
+
731
+ ### Patch Changes
732
+
733
+ - [#713](https://github.com/generaltranslation/gt/pull/713) [`b8feb26`](https://github.com/generaltranslation/gt/commit/b8feb2638613f54b76b5f3768edc6039db512c53) Thanks [@SamEggert](https://github.com/SamEggert)! - rename clearLocaleFolders to clearLocaleDirs
734
+
735
+ ## 2.3.7
736
+
737
+ ### Patch Changes
738
+
739
+ - [#710](https://github.com/generaltranslation/gt/pull/710) [`8325bae`](https://github.com/generaltranslation/gt/commit/8325bae9a8661a0b269131ac6dadefab327c5b2c) Thanks [@SamEggert](https://github.com/SamEggert)! - add clearLocaleFolders option
740
+
741
+ ## 2.3.6
742
+
743
+ ### Patch Changes
744
+
745
+ - [#698](https://github.com/generaltranslation/gt/pull/698) [`9eefc14`](https://github.com/generaltranslation/gt/commit/9eefc14577013fcfa699344c4a950c12d3b3350b) Thanks [@brian-lou](https://github.com/brian-lou)! - Switch monorepo package manager to pnpm (no new features or bugs fixed). Please report issues to https://github.com/generaltranslation/gt
746
+
747
+ - Updated dependencies [[`9eefc14`](https://github.com/generaltranslation/gt/commit/9eefc14577013fcfa699344c4a950c12d3b3350b)]:
748
+ - gt-remark@1.0.2
749
+ - generaltranslation@7.6.4
750
+
751
+ ## 2.3.5
752
+
753
+ ### Patch Changes
754
+
755
+ - [#687](https://github.com/generaltranslation/gt/pull/687) [`99a1958`](https://github.com/generaltranslation/gt/commit/99a1958124d532bb3817f76a69d5232d9eb26f76) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: showing superfluous warning for composite json paths
756
+
757
+ ## 2.3.4
758
+
759
+ ### Patch Changes
760
+
761
+ - [#671](https://github.com/generaltranslation/gt/pull/671) [`b8c19d1`](https://github.com/generaltranslation/gt/commit/b8c19d13c0ab18a3f9376ebb940d9985cee6d961) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Fixing --force command in gtx-cli
762
+
763
+ ## 2.3.3
764
+
765
+ ### Patch Changes
766
+
767
+ - [#665](https://github.com/generaltranslation/gt/pull/665) [`814cb12`](https://github.com/generaltranslation/gt/commit/814cb122e68a51ea1a513e9f6e51249af345db64) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Migrating CLI to gt-remark plugin, updating plugin
768
+
769
+ - Updated dependencies [[`814cb12`](https://github.com/generaltranslation/gt/commit/814cb122e68a51ea1a513e9f6e51249af345db64)]:
770
+ - gt-remark@1.0.1
771
+
772
+ ## 2.3.2
773
+
774
+ ### Patch Changes
775
+
776
+ - [#660](https://github.com/generaltranslation/gt/pull/660) [`2ddff43`](https://github.com/generaltranslation/gt/commit/2ddff430817ad61e996b516c539b6b7b944e618e) Thanks [@brian-lou](https://github.com/brian-lou)! - Update API utility functions
777
+
778
+ - Updated dependencies [[`2ddff43`](https://github.com/generaltranslation/gt/commit/2ddff430817ad61e996b516c539b6b7b944e618e)]:
779
+ - generaltranslation@7.6.2
780
+
781
+ ## 2.3.1
782
+
783
+ ### Patch Changes
784
+
785
+ - [#655](https://github.com/generaltranslation/gt/pull/655) [`26a296c`](https://github.com/generaltranslation/gt/commit/26a296c113666dde77165c260dfb692bb8611ade) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Addng literal braces ('{' and '}') to list of characters to escape during AST stringify
786
+
787
+ ## 2.3.0
788
+
789
+ ### Minor Changes
790
+
791
+ - [#651](https://github.com/generaltranslation/gt/pull/651) [`3e5705b`](https://github.com/generaltranslation/gt/commit/3e5705bc96005441798619fec97574fa15a5a2bd) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Split up file upload into source/translation specific uploads; added project setup visibility
792
+
793
+ ### Patch Changes
794
+
795
+ - Updated dependencies [[`3e5705b`](https://github.com/generaltranslation/gt/commit/3e5705bc96005441798619fec97574fa15a5a2bd)]:
796
+ - generaltranslation@7.6.0
797
+
798
+ ## 2.2.0
799
+
800
+ ### Minor Changes
801
+
802
+ - [#638](https://github.com/generaltranslation/gt/pull/638) [`16bf30d`](https://github.com/generaltranslation/gt/commit/16bf30d70a0599ec863305f4f7a5a0852dd07e5d) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add locale aliasing
803
+
804
+ ### Patch Changes
805
+
806
+ - Updated dependencies [[`16bf30d`](https://github.com/generaltranslation/gt/commit/16bf30d70a0599ec863305f4f7a5a0852dd07e5d)]:
807
+ - generaltranslation@7.5.0
808
+
809
+ ## 2.1.21
810
+
811
+ ### Patch Changes
812
+
813
+ - [#645](https://github.com/generaltranslation/gt/pull/645) [`58cfaee`](https://github.com/generaltranslation/gt/commit/58cfaee5cc1dcd187f0b72b2761f96c19b4f313e) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Escaping HTML to avoid parsing issues from MDX consumers
814
+
815
+ ## 2.1.20
816
+
817
+ ### Patch Changes
818
+
819
+ - [#643](https://github.com/generaltranslation/gt/pull/643) [`4f553c0`](https://github.com/generaltranslation/gt/commit/4f553c00c119f272edc5ccb3616f2d0effec8586) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Removing custom configuration on remarkStringify
820
+
821
+ ## 2.1.19
822
+
823
+ ### Patch Changes
824
+
825
+ - [#641](https://github.com/generaltranslation/gt/pull/641) [`4c67f77`](https://github.com/generaltranslation/gt/commit/4c67f775ee892b47eebcc3178c00ad6547a84d84) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Encoding placeholders that break MDX parse
826
+
827
+ ## 2.1.18
828
+
829
+ ### Patch Changes
830
+
831
+ - [#637](https://github.com/generaltranslation/gt/pull/637) [`9c40a3c`](https://github.com/generaltranslation/gt/commit/9c40a3c729bf690381959679078c11c9c29bcdf2) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Skipping over empty files when sending for translation
832
+
833
+ ## 2.1.17
834
+
835
+ ### Patch Changes
836
+
837
+ - [#635](https://github.com/generaltranslation/gt/pull/635) [`10aa051`](https://github.com/generaltranslation/gt/commit/10aa051592cea43f772615da200c8615d4dd1a78) Thanks [@brian-lou](https://github.com/brian-lou)! - Create dictionary with uuid to reduce flakiness
838
+
839
+ ## 2.1.16
840
+
841
+ ### Patch Changes
842
+
843
+ - [#630](https://github.com/generaltranslation/gt/pull/630) [`1f0dc1b`](https://github.com/generaltranslation/gt/commit/1f0dc1b17f22737263938998f5c516e0aa136b1a) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding localization of import paths to MDX files
844
+
845
+ ## 2.1.15
846
+
847
+ ### Patch Changes
848
+
849
+ - [#622](https://github.com/generaltranslation/gt/pull/622) [`f5f888d`](https://github.com/generaltranslation/gt/commit/f5f888d79319ac79f3cde12588d1e24ec2003b25) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Skipping invalid (cannot be parsed by AST) MDX files when generating translations
850
+
851
+ ## 2.1.14
852
+
853
+ ### Patch Changes
854
+
855
+ - [#623](https://github.com/generaltranslation/gt/pull/623) [`288d2c6`](https://github.com/generaltranslation/gt/commit/288d2c657ff46eb5f4a5cdbc76ecc3f9be85228f) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add --force flag for overwriting cached translations
856
+
857
+ - Updated dependencies [[`288d2c6`](https://github.com/generaltranslation/gt/commit/288d2c657ff46eb5f4a5cdbc76ecc3f9be85228f)]:
858
+ - generaltranslation@7.4.2
859
+
860
+ ## 2.1.13
861
+
862
+ ### Patch Changes
863
+
864
+ - [#620](https://github.com/generaltranslation/gt/pull/620) [`1404b8f`](https://github.com/generaltranslation/gt/commit/1404b8feda21acdfba42483d496c61816babd327) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Display warning on MDX header mismatch instead of failure
865
+
866
+ ## 2.1.12
867
+
868
+ ### Patch Changes
869
+
870
+ - [#618](https://github.com/generaltranslation/gt/pull/618) [`195b65f`](https://github.com/generaltranslation/gt/commit/195b65fcbdebc027156ba04409b48f3ad175e20f) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: src sepcification
871
+
872
+ ## 2.1.11
873
+
874
+ ### Patch Changes
875
+
876
+ - [#610](https://github.com/generaltranslation/gt/pull/610) [`bfb4f53`](https://github.com/generaltranslation/gt/commit/bfb4f53658c785520373af53a1e9fadb6eca2d0b) Thanks [@SamEggert](https://github.com/SamEggert)! - create loadTranslations.js when user specifies local translations in gtx-cli init
877
+
878
+ ## 2.1.10
879
+
880
+ ### Patch Changes
881
+
882
+ - [#600](https://github.com/generaltranslation/gt/pull/600) [`e94aac2`](https://github.com/generaltranslation/gt/commit/e94aac2b2554a279245d090b0872f6f64eb71c62) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Added handling of fragment URLs (i.e. href="#my-mdx-id") for correct routing across locales.
883
+
884
+ ## 2.1.9
885
+
886
+ ### Patch Changes
887
+
888
+ - [#604](https://github.com/generaltranslation/gt/pull/604) [`43c6a76`](https://github.com/generaltranslation/gt/commit/43c6a76be3d3be420e892b86188ef41c45ae8ffe) Thanks [@archie-mckenzie](https://github.com/archie-mckenzie)! - Refactored useGT and useMessages in order to make useMessages function like an unlintable useGT
889
+
890
+ ## 2.1.8
891
+
892
+ ### Patch Changes
893
+
894
+ - [#599](https://github.com/generaltranslation/gt/pull/599) [`5950592`](https://github.com/generaltranslation/gt/commit/5950592ca44197915216ec5c8e26f9714cb4f55c) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: msg() function
895
+
896
+ ## 2.1.8
897
+
898
+ ### Patch Changes
899
+
900
+ - [#594](https://github.com/generaltranslation/gt/pull/594) [`3fa9c41`](https://github.com/generaltranslation/gt/commit/3fa9c41e2e37933b04e6c3d6c0f94271a07d0ff6) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix <GTProvider> wizard scan behavior
901
+
902
+ ## 2.1.7
903
+
904
+ ### Patch Changes
905
+
906
+ - [#579](https://github.com/generaltranslation/gt/pull/579) [`a485533`](https://github.com/generaltranslation/gt/commit/a4855336dfe5242cfdb24fd2e981f86b0bffdf05) Thanks [@SamEggert](https://github.com/SamEggert)! - fix localize static urls, add baseDomain functionality
907
+
908
+ ## 2.1.6
909
+
910
+ ### Patch Changes
911
+
912
+ - [#584](https://github.com/generaltranslation/gt/pull/584) [`fd3d958`](https://github.com/generaltranslation/gt/commit/fd3d958dab3d14a7f1f9b49c5c49fba191077a57) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix version
913
+
914
+ ## 2.1.5
915
+
916
+ ### Patch Changes
917
+
918
+ - [#580](https://github.com/generaltranslation/gt/pull/580) [`9b05fda`](https://github.com/generaltranslation/gt/commit/9b05fda9959f9e24491c02f357bc2a2c49ba0276) Thanks [@brian-lou](https://github.com/brian-lou)! - Update API schema, combine files and JSX translation endpoints
919
+
920
+ - Updated dependencies [[`9b05fda`](https://github.com/generaltranslation/gt/commit/9b05fda9959f9e24491c02f357bc2a2c49ba0276)]:
921
+ - generaltranslation@7.4.1
922
+
923
+ ## 2.1.5
924
+
925
+ ### Patch Changes
926
+
927
+ - [#576](https://github.com/generaltranslation/gt/pull/576) [`be9c1ff`](https://github.com/generaltranslation/gt/commit/be9c1ff24c9a15a35e3f0da26e9ec941e5b41eea) Thanks [@SamEggert](https://github.com/SamEggert)! - Fix url localization
928
+
929
+ ## 2.1.4
930
+
931
+ ### Patch Changes
932
+
933
+ - [#536](https://github.com/generaltranslation/gt/pull/536) [`468b0b7`](https://github.com/generaltranslation/gt/commit/468b0b7c660fd1ab9e8c2611a26ade63ba268e80) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - Added locale selection based on region
934
+ Added compile time hashing
935
+ Added es lint plugin for gt-next (in alpha)
936
+ Fix CLI validation (used to error for {<JSX/>} inside <T>)
937
+ - Updated dependencies [[`468b0b7`](https://github.com/generaltranslation/gt/commit/468b0b7c660fd1ab9e8c2611a26ade63ba268e80)]:
938
+ - generaltranslation@7.4.0
939
+
940
+ ## 2.1.3
941
+
942
+ ### Patch Changes
943
+
944
+ - [#564](https://github.com/generaltranslation/gt/pull/564) [`7251fc5`](https://github.com/generaltranslation/gt/commit/7251fc5d2474ad71b2da9ae5b71e37aed8199bce) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix CLI validation (used to error for {<JSX/>} inside <T>)
945
+
946
+ ## 2.1.2
947
+
948
+ ### Patch Changes
949
+
950
+ - [#562](https://github.com/generaltranslation/gt/pull/562) [`8461c5e`](https://github.com/generaltranslation/gt/commit/8461c5ee2ca25cf50d4e366cb4d1e765107851fd) Thanks [@SamEggert](https://github.com/SamEggert)! - localStaticImports gracefully handles invalid MDX
951
+
952
+ ## 2.1.1
953
+
954
+ ### Patch Changes
955
+
956
+ - [#554](https://github.com/generaltranslation/gt/pull/554) [`77fb048`](https://github.com/generaltranslation/gt/commit/77fb048ab2e4432739df1c4fbabe165712e84fb3) Thanks [@SamEggert](https://github.com/SamEggert)! - use MDX AST for static imports/urls
957
+
958
+ ## 2.1.0
959
+
960
+ ### Minor Changes
961
+
962
+ - [#556](https://github.com/generaltranslation/gt/pull/556) [`c52d896`](https://github.com/generaltranslation/gt/commit/c52d896f83fb4f6e58921286320a524885c8a52d) Thanks [@fernando-aviles](https://github.com/fernando-aviles)! - Adding modelProvider field to gt.config
963
+
964
+ ### Patch Changes
965
+
966
+ - Updated dependencies [[`c52d896`](https://github.com/generaltranslation/gt/commit/c52d896f83fb4f6e58921286320a524885c8a52d)]:
967
+ - generaltranslation@7.3.0
968
+
969
+ ## 2.0.24
970
+
971
+ ### Patch Changes
972
+
973
+ - [#552](https://github.com/generaltranslation/gt/pull/552) [`65acf00`](https://github.com/generaltranslation/gt/commit/65acf0085a2b2c89f46b6b4685d94815a16467e6) Thanks [@brian-lou](https://github.com/brian-lou)! - Remove wizard auto-add T components
974
+
975
+ ## 2.0.23
976
+
977
+ ### Patch Changes
978
+
979
+ - [#539](https://github.com/generaltranslation/gt/pull/539) [`b88e468`](https://github.com/generaltranslation/gt/commit/b88e4684be9cd82a7d23e38fc893c2a8b7f0165f) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add ability to exclude import paths and url paths from localization
980
+
981
+ ## 2.0.22
982
+
983
+ ### Patch Changes
984
+
985
+ - [#527](https://github.com/generaltranslation/gt/pull/527) [`d209aa9`](https://github.com/generaltranslation/gt/commit/d209aa99dbae8627ea85b240b60d4bbb5a53dbd6) Thanks [@brian-lou](https://github.com/brian-lou)! - Bump form-data version to address CVE-2025-7783
986
+
987
+ ## 2.0.21
988
+
989
+ ### Patch Changes
990
+
991
+ - [#524](https://github.com/generaltranslation/gt/pull/524) [`39b36e5`](https://github.com/generaltranslation/gt/commit/39b36e56f50fff663826c66022d798147a622898) Thanks [@brian-lou](https://github.com/brian-lou)! - Add support for translating YAML files via the General Translation API
992
+
993
+ ## 2.0.20
994
+
995
+ ### Patch Changes
996
+
997
+ - [#521](https://github.com/generaltranslation/gt/pull/521) [`6b137bc`](https://github.com/generaltranslation/gt/commit/6b137bcf0b2aaf50adacd5fb03ed64525fb12473) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - refactor: add support for experimental flags in config file
998
+
999
+ ## 2.0.19
1000
+
1001
+ ### Patch Changes
1002
+
1003
+ - [#519](https://github.com/generaltranslation/gt/pull/519) [`2ba4848`](https://github.com/generaltranslation/gt/commit/2ba48486603ef5e8e4026d89dc36311ce6505b81) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: exclude files with the [locales] tag
1004
+
1005
+ ## 2.0.18
1006
+
1007
+ ### Patch Changes
1008
+
1009
+ - [#507](https://github.com/generaltranslation/gt/pull/507) [`8f80795`](https://github.com/generaltranslation/gt/commit/8f80795daf862f769be728c044d48e5e28d7b126) Thanks [@SamEggert](https://github.com/SamEggert)! - Setup wizard detects and matches your module system when modifying the next.config
1010
+
1011
+ - [#517](https://github.com/generaltranslation/gt/pull/517) [`452da1e`](https://github.com/generaltranslation/gt/commit/452da1e1f0f6d7825b82bc66fb5d3dd6e7a6ad92) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add support for yaml
1012
+
1013
+ ## 2.0.17
1014
+
1015
+ ### Patch Changes
1016
+
1017
+ - [#514](https://github.com/generaltranslation/gt/pull/514) [`4beab58`](https://github.com/generaltranslation/gt/commit/4beab58142fa014bed5dbfc0acab03a1d1536b05) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix jsonSchema conflict with transform option
1018
+
1019
+ ## 2.0.16
1020
+
1021
+ ### Patch Changes
1022
+
1023
+ - [#512](https://github.com/generaltranslation/gt/pull/512) [`7c01ee8`](https://github.com/generaltranslation/gt/commit/7c01ee8af1e882d222fc3b0224b17f459ec5243b) Thanks [@brian-lou](https://github.com/brian-lou)! - Add new CLI command 'upload', add additional transform options for file translations
1024
+
1025
+ ## 2.0.15
1026
+
1027
+ ### Patch Changes
1028
+
1029
+ - [#510](https://github.com/generaltranslation/gt/pull/510) [`e69c23b`](https://github.com/generaltranslation/gt/commit/e69c23bb55062e91804f52379e231626573df30f) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: backwards compatability
1030
+
1031
+ ## 2.0.14
1032
+
1033
+ ### Patch Changes
1034
+
1035
+ - [#508](https://github.com/generaltranslation/gt/pull/508) [`5375e2c`](https://github.com/generaltranslation/gt/commit/5375e2c1b17fba3ca52291e7d79f8d78a585ed49) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add zh-Hans and zh-Hant
1036
+
1037
+ ## 2.0.13
1038
+
1039
+ ### Patch Changes
1040
+
1041
+ - [#505](https://github.com/generaltranslation/gt/pull/505) [`e8c5650`](https://github.com/generaltranslation/gt/commit/e8c5650c163119301d2f9d6b946c0ed8383c57e1) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: json translation for composite arrays where there are multiple default locale items
1042
+
1043
+ ## 2.0.12
1044
+
1045
+ ### Patch Changes
1046
+
1047
+ - [#503](https://github.com/generaltranslation/gt/pull/503) [`9549d88`](https://github.com/generaltranslation/gt/commit/9549d88485af4dc57fb19847016d53aa3375b380) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix path resolution mechanism for useGT/getGT usage scanning
1048
+
1049
+ ## 2.0.11
1050
+
1051
+ ### Patch Changes
1052
+
1053
+ - [#501](https://github.com/generaltranslation/gt/pull/501) [`d353c84`](https://github.com/generaltranslation/gt/commit/d353c84aaa159dbc77cff3ac29953adef4c64597) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add localization for href
1054
+
1055
+ ## 2.0.10
1056
+
1057
+ ### Patch Changes
1058
+
1059
+ - [#499](https://github.com/generaltranslation/gt/pull/499) [`0793ef7`](https://github.com/generaltranslation/gt/commit/0793ef7f0d5b391805d072ff0c251fe43fa58b29) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add localization for imports
1060
+
1061
+ ## 2.0.9
1062
+
1063
+ ### Patch Changes
1064
+
1065
+ - [#497](https://github.com/generaltranslation/gt/pull/497) [`0f44ba0`](https://github.com/generaltranslation/gt/commit/0f44ba0eb1b31f339a43854efe4c64ca2df7e4ca) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add customizability for localize static url
1066
+
1067
+ ## 2.0.8
1068
+
1069
+ ### Patch Changes
1070
+
1071
+ - [#495](https://github.com/generaltranslation/gt/pull/495) [`a7eca74`](https://github.com/generaltranslation/gt/commit/a7eca74677356b392c7c1a431f664c8e28adbf0c) Thanks [@brian-lou](https://github.com/brian-lou)! - Add support for translating arbitrary JSON files (all strings). Add support for partially translating JSON files via jsonSchema config setting. Add support for composite JSON files (where there is a single JSON containing data for all translated languages). Add support for preset jsonSchemas.
1072
+
1073
+ - Updated dependencies [[`a7eca74`](https://github.com/generaltranslation/gt/commit/a7eca74677356b392c7c1a431f664c8e28adbf0c)]:
1074
+ - generaltranslation@7.1.4
1075
+
1076
+ ## 2.0.7
1077
+
1078
+ ### Patch Changes
1079
+
1080
+ - [#490](https://github.com/generaltranslation/gt/pull/490) [`03b3367`](https://github.com/generaltranslation/gt/commit/03b3367e98b155a21a723f0a645999f3efb40d18) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fix: add internal header when necessary
1081
+
1082
+ - Updated dependencies [[`03b3367`](https://github.com/generaltranslation/gt/commit/03b3367e98b155a21a723f0a645999f3efb40d18)]:
1083
+ - generaltranslation@7.1.2
1084
+
1085
+ ## 2.0.6
1086
+
1087
+ ### Patch Changes
1088
+
1089
+ - [#444](https://github.com/generaltranslation/gt/pull/444) [`c206a11`](https://github.com/generaltranslation/gt/commit/c206a1158516a0d815b1570d77e6dd62acdcedc4) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add translation interface for generaltranslation
1090
+
1091
+ - Updated dependencies [[`c206a11`](https://github.com/generaltranslation/gt/commit/c206a1158516a0d815b1570d77e6dd62acdcedc4)]:
1092
+ - generaltranslation@7.1.0
1093
+
1094
+ ## 2.0.5
1095
+
1096
+ ### Patch Changes
1097
+
1098
+ - [#467](https://github.com/generaltranslation/gt/pull/467) [`e043f07`](https://github.com/generaltranslation/gt/commit/e043f07decb426c2b275b67ad955b4ddca7d20ee) Thanks [@brian-lou](https://github.com/brian-lou)! - Add async errors for useGT/getGT to translate
1099
+
1100
+ ## 2.0.4
1101
+
1102
+ ### Patch Changes
1103
+
1104
+ - [#464](https://github.com/generaltranslation/gt/pull/464) [`a10331c`](https://github.com/generaltranslation/gt/commit/a10331c6854d60f3328d4ce6c307acc0c28e8ef4) Thanks [@brian-lou](https://github.com/brian-lou)! - Add success message for validate
1105
+
1106
+ - [#464](https://github.com/generaltranslation/gt/pull/464) [`a10331c`](https://github.com/generaltranslation/gt/commit/a10331c6854d60f3328d4ce6c307acc0c28e8ef4) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix glob pattern for validate files
1107
+
1108
+ ## 2.0.3
1109
+
1110
+ ### Patch Changes
1111
+
1112
+ - [#462](https://github.com/generaltranslation/gt/pull/462) [`678e9e7`](https://github.com/generaltranslation/gt/commit/678e9e70dd57a38ee10dcf9deb78cdd5dcfb759b) Thanks [@brian-lou](https://github.com/brian-lou)! - Revert adding version to cli tool
1113
+
1114
+ ## 2.0.2
1115
+
1116
+ ### Patch Changes
1117
+
1118
+ - [#458](https://github.com/generaltranslation/gt/pull/458) [`aff4b95`](https://github.com/generaltranslation/gt/commit/aff4b95f582ec9fcb28f1395d2eba907c93e4e31) Thanks [@brian-lou](https://github.com/brian-lou)! - Add individual file support to validate
1119
+
1120
+ ## 2.0.1
1121
+
1122
+ ### Patch Changes
1123
+
1124
+ - [#440](https://github.com/generaltranslation/gt/pull/440) [`e6fdedf`](https://github.com/generaltranslation/gt/commit/e6fdedffcdfbac5d257ea35140cbb81de6aa2729) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - fixes to breaking changes
1125
+
1126
+ - Updated dependencies [[`e6fdedf`](https://github.com/generaltranslation/gt/commit/e6fdedffcdfbac5d257ea35140cbb81de6aa2729)]:
1127
+ - generaltranslation@7.0.1
1128
+
1129
+ ## 2.0.0
1130
+
1131
+ ### Major Changes
1132
+
1133
+ - [#436](https://github.com/generaltranslation/gt/pull/436) [`08377f3`](https://github.com/generaltranslation/gt/commit/08377f3b5b3b600efb1e232a7b9361e8c85ea4ae) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - Breaking changes
1134
+
1135
+ ### Patch Changes
1136
+
1137
+ - Updated dependencies [[`08377f3`](https://github.com/generaltranslation/gt/commit/08377f3b5b3b600efb1e232a7b9361e8c85ea4ae)]:
1138
+ - generaltranslation@7.0.0
1139
+
1140
+ ## 1.2.34
1141
+
1142
+ ### Patch Changes
1143
+
1144
+ - [#428](https://github.com/generaltranslation/gt/pull/428) [`54036f5`](https://github.com/generaltranslation/gt/commit/54036f54308bdb9f9e6dcec93871e004dcf1be4c) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - feat: add experimental options to translate
1145
+
1146
+ ## 1.2.33
1147
+
1148
+ ### Patch Changes
1149
+
1150
+ - [#426](https://github.com/generaltranslation/gt/pull/426) [`ce57545`](https://github.com/generaltranslation/gt/commit/ce575454301185c663cfb93345d3058c9ceb25dd) Thanks [@brian-lou](https://github.com/brian-lou)! - Improve file pattern matching
1151
+
1152
+ ## 1.2.31
1153
+
1154
+ ### Patch Changes
1155
+
1156
+ - [#423](https://github.com/generaltranslation/gt/pull/423) [`0ed08c7`](https://github.com/generaltranslation/gt/commit/0ed08c7bb1e63c99296b74138e4d44b718681fc8) Thanks [@brian-lou](https://github.com/brian-lou)! - Add setting configuration options
1157
+
1158
+ ## 1.2.30
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - [#409](https://github.com/generaltranslation/gt/pull/409) [`557f74d`](https://github.com/generaltranslation/gt/commit/557f74da58ebd84ca50c1961fc6dfecd63bb7797) Thanks [@brian-lou](https://github.com/brian-lou)! - Make locadex more reliable + improve validation
1163
+
1164
+ ## 1.2.29
1165
+
1166
+ ### Patch Changes
1167
+
1168
+ - [#400](https://github.com/generaltranslation/gt/pull/400) [`cf9c724`](https://github.com/generaltranslation/gt/commit/cf9c72488f74db5ccd7c4dca2650d75e3484d1f2) Thanks [@brian-lou](https://github.com/brian-lou)! - Reorder linter detection preference
1169
+
1170
+ ## 1.2.28
1171
+
1172
+ ### Patch Changes
1173
+
1174
+ - [#397](https://github.com/generaltranslation/gt/pull/397) [`80a1395`](https://github.com/generaltranslation/gt/commit/80a13955db9ff46e5883ac8b0909ab294c63d001) Thanks [@brian-lou](https://github.com/brian-lou)! - Run translate after i18n
1175
+
1176
+ ## 1.2.27
1177
+
1178
+ ### Patch Changes
1179
+
1180
+ - [#392](https://github.com/generaltranslation/gt/pull/392) [`cebc905`](https://github.com/generaltranslation/gt/commit/cebc905cb5364bdcc218d4e93a6aee606d804419) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix require not being present in ESM package
1181
+
1182
+ ## 1.2.26
1183
+
1184
+ ### Patch Changes
1185
+
1186
+ - [#391](https://github.com/generaltranslation/gt/pull/391) [`dd41343`](https://github.com/generaltranslation/gt/commit/dd413435742930d995c9fdb84368a91381da3d65) Thanks [@brian-lou](https://github.com/brian-lou)! - Improve logs for cli; Improve QOL setup for locadex
1187
+
1188
+ ## 1.2.25
1189
+
1190
+ ### Patch Changes
1191
+
1192
+ - [#368](https://github.com/generaltranslation/gt/pull/368) [`86f5a18`](https://github.com/generaltranslation/gt/commit/86f5a188439864244b74d590d07bfd6a52c193f9) Thanks [@brian-lou](https://github.com/brian-lou)! - Add new 'validate' command to gtx-cli
1193
+
1194
+ ## 1.2.24
1195
+
1196
+ ### Patch Changes
1197
+
1198
+ - [#358](https://github.com/generaltranslation/gt/pull/358) [`b0ea226`](https://github.com/generaltranslation/gt/commit/b0ea226310abb04ef5aa9ef1af23ee37b9e18cd1) Thanks [@brian-lou](https://github.com/brian-lou)! - Release Locadex (Beta) version
1199
+
1200
+ ## 1.2.23
1201
+
1202
+ ### Patch Changes
1203
+
1204
+ - [#336](https://github.com/generaltranslation/gt/pull/336) [`d22c287`](https://github.com/generaltranslation/gt/commit/d22c2871f1b474bc6cf981621a37400a92b4bbff) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix string translation fallback function tracing when translating
1205
+
1206
+ ## 1.2.22
1207
+
1208
+ ### Patch Changes
1209
+
1210
+ - [#316](https://github.com/generaltranslation/gt/pull/316) [`274a88e`](https://github.com/generaltranslation/gt/commit/274a88e2ac2e4d60360bf950f56c4ee2850804fe) Thanks [@michellee-wang](https://github.com/michellee-wang)! - updated localeselector
1211
+
1212
+ - Updated dependencies [[`274a88e`](https://github.com/generaltranslation/gt/commit/274a88e2ac2e4d60360bf950f56c4ee2850804fe)]:
1213
+ - generaltranslation@6.2.10
1214
+
1215
+ ## 1.2.21
1216
+
1217
+ ### Patch Changes
1218
+
1219
+ - [#324](https://github.com/generaltranslation/gt/pull/324) [`34a8c97`](https://github.com/generaltranslation/gt/commit/34a8c97a9d4c9efb3b441eecf0f7ea77ccc1ad7a) Thanks [@brian-lou](https://github.com/brian-lou)! - Add support for passing useGT and getGT function callback into other functions
1220
+
1221
+ ## 1.2.20
1222
+
1223
+ ### Patch Changes
1224
+
1225
+ - [#318](https://github.com/generaltranslation/gt/pull/318) [`5e6fabd`](https://github.com/generaltranslation/gt/commit/5e6fabdecd692ea26b1e709cc9a3dc5d22387410) Thanks [@brian-lou](https://github.com/brian-lou)! - Fix wrapping behavior for JSX fragments
1226
+
1227
+ ## 1.2.19
1228
+
1229
+ ### Patch Changes
1230
+
1231
+ - [#311](https://github.com/generaltranslation/gt/pull/311) [`d2bb9f5`](https://github.com/generaltranslation/gt/commit/d2bb9f5caa5b7366af3d3f8110a9f1586c9f58e7) Thanks [@michellee-wang](https://github.com/michellee-wang)! - added qbr and emojis + bumped verison
1232
+
1233
+ - Updated dependencies [[`d2bb9f5`](https://github.com/generaltranslation/gt/commit/d2bb9f5caa5b7366af3d3f8110a9f1586c9f58e7)]:
1234
+ - generaltranslation@6.2.9
1235
+
1236
+ ## 1.2.18
1237
+
1238
+ ### Patch Changes
1239
+
1240
+ - [#305](https://github.com/generaltranslation/gt/pull/305) [`5991569`](https://github.com/generaltranslation/gt/commit/59915699154fa0b442c4460c7c8d586fdc8020f9) Thanks [@ErnestM1234](https://github.com/ErnestM1234)! - Bump downstream
1241
+
1242
+ - Updated dependencies [[`5991569`](https://github.com/generaltranslation/gt/commit/59915699154fa0b442c4460c7c8d586fdc8020f9)]:
1243
+ - generaltranslation@6.2.8
1244
+
1245
+ ## 1.2.17
1246
+
1247
+ ### Patch Changes
1248
+
1249
+ - [#302](https://github.com/generaltranslation/gt/pull/302) [`1b4a90c`](https://github.com/generaltranslation/gt/commit/1b4a90c60c1d8c974de3f098f95a20e88a55edb7) Thanks [@archie-mckenzie](https://github.com/archie-mckenzie)! - bump version
1250
+
1251
+ ## 1.2.15
1252
+
1253
+ ### Patch Changes
1254
+
1255
+ - [#289](https://github.com/generaltranslation/gt/pull/289) [`0a5f385`](https://github.com/generaltranslation/gt/commit/0a5f38560a2ef175b5f01e6e9e75538be3962f0a) Thanks [@brian-lou](https://github.com/brian-lou)! - Test Changesets