diff --git a/.changeset/comprehensive-readme-update.md b/.changeset/comprehensive-readme-update.md deleted file mode 100644 index 0d80615d6..000000000 --- a/.changeset/comprehensive-readme-update.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -"@lingo.dev/compiler": patch ---- - -docs: comprehensive README update with LLM configuration, manual overrides, and advanced features - -Added extensive documentation covering: -- Complete LLM provider configuration (OpenAI, Anthropic, Google, Groq, Mistral, OpenRouter, Ollama) -- Environment variables for all supported providers -- Locale-pair model mapping with wildcard patterns -- Custom translation prompts -- Manual translation overrides using data-lingo-override attribute -- Build modes (translate vs cache-only) and recommended workflows -- Custom locale resolvers (server and client) -- Configuration options table with defaults -- Development configuration (pseudotranslator, translation server port) -- Locale persistence configuration (cookie settings) -- Pluralization configuration -- Updated feature list -- Fixed demo app paths in examples diff --git a/.changeset/little-deserts-lay.md b/.changeset/little-deserts-lay.md deleted file mode 100644 index 4c5de9229..000000000 --- a/.changeset/little-deserts-lay.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@compiler/demo-next": patch -"lingo.dev": patch ---- - -Add support for JSONC comments in arrays diff --git a/demo/new-compiler-next16/CHANGELOG.md b/demo/new-compiler-next16/CHANGELOG.md new file mode 100644 index 000000000..633bbf981 --- /dev/null +++ b/demo/new-compiler-next16/CHANGELOG.md @@ -0,0 +1,10 @@ +# @compiler/demo-next + +## 0.1.1 + +### Patch Changes + +- [#1710](https://github.com/lingodotdev/lingo.dev/pull/1710) [`020424f`](https://github.com/lingodotdev/lingo.dev/commit/020424f2601c535e88c66aeeece5a15fb9b66b70) Thanks [@vrcprl](https://github.com/vrcprl)! - Add support for JSONC comments in arrays + +- Updated dependencies [[`b2d335b`](https://github.com/lingodotdev/lingo.dev/commit/b2d335b37af3e300a402d75f0eb2a0112f81e7ee)]: + - @lingo.dev/compiler@0.1.2 diff --git a/demo/new-compiler-next16/package.json b/demo/new-compiler-next16/package.json index 4b81cadb9..564afcb6f 100644 --- a/demo/new-compiler-next16/package.json +++ b/demo/new-compiler-next16/package.json @@ -1,6 +1,6 @@ { "name": "@compiler/demo-next", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "dev": "next dev", diff --git a/demo/next-app/CHANGELOG.md b/demo/next-app/CHANGELOG.md index e6d97f5ac..74487b455 100644 --- a/demo/next-app/CHANGELOG.md +++ b/demo/next-app/CHANGELOG.md @@ -1,5 +1,12 @@ # next-app +## 0.2.114 + +### Patch Changes + +- Updated dependencies [[`020424f`](https://github.com/lingodotdev/lingo.dev/commit/020424f2601c535e88c66aeeece5a15fb9b66b70)]: + - lingo.dev@0.117.22 + ## 0.2.113 ### Patch Changes diff --git a/demo/next-app/package.json b/demo/next-app/package.json index 68e4acf83..918b86d53 100644 --- a/demo/next-app/package.json +++ b/demo/next-app/package.json @@ -1,6 +1,6 @@ { "name": "next-app", - "version": "0.2.113", + "version": "0.2.114", "private": true, "scripts": { "dev": "next dev", diff --git a/demo/react-router-app/CHANGELOG.md b/demo/react-router-app/CHANGELOG.md index f0cd89cbf..007c0a81c 100644 --- a/demo/react-router-app/CHANGELOG.md +++ b/demo/react-router-app/CHANGELOG.md @@ -1,5 +1,12 @@ # react-router-app +## 1.0.23 + +### Patch Changes + +- Updated dependencies [[`020424f`](https://github.com/lingodotdev/lingo.dev/commit/020424f2601c535e88c66aeeece5a15fb9b66b70)]: + - lingo.dev@0.117.22 + ## 1.0.22 ### Patch Changes diff --git a/demo/react-router-app/package.json b/demo/react-router-app/package.json index a52bfdb11..b125a8ac5 100644 --- a/demo/react-router-app/package.json +++ b/demo/react-router-app/package.json @@ -1,6 +1,6 @@ { "name": "react-router-app", - "version": "1.0.22", + "version": "1.0.23", "private": true, "type": "module", "scripts": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 8dab3c16c..921575814 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # lingo.dev +## 0.117.22 + +### Patch Changes + +- [#1710](https://github.com/lingodotdev/lingo.dev/pull/1710) [`020424f`](https://github.com/lingodotdev/lingo.dev/commit/020424f2601c535e88c66aeeece5a15fb9b66b70) Thanks [@vrcprl](https://github.com/vrcprl)! - Add support for JSONC comments in arrays + ## 0.117.21 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index b984888c4..affc4e0cc 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "lingo.dev", - "version": "0.117.21", + "version": "0.117.22", "description": "Lingo.dev CLI", "private": false, "repository": { diff --git a/packages/new-compiler/CHANGELOG.md b/packages/new-compiler/CHANGELOG.md index 535e387b5..b6d54863b 100644 --- a/packages/new-compiler/CHANGELOG.md +++ b/packages/new-compiler/CHANGELOG.md @@ -1,5 +1,29 @@ # @lingo.dev/compiler +## 0.1.2 + +### Patch Changes + +- [#1707](https://github.com/lingodotdev/lingo.dev/pull/1707) [`b2d335b`](https://github.com/lingodotdev/lingo.dev/commit/b2d335b37af3e300a402d75f0eb2a0112f81e7ee) Thanks [@maxprilutskiy](https://github.com/maxprilutskiy)! - docs: comprehensive README update with LLM configuration, manual overrides, and advanced features + + Added extensive documentation covering: + - Complete LLM provider configuration (OpenAI, Anthropic, Google, Groq, Mistral, OpenRouter, Ollama) + - Environment variables for all supported providers + - Locale-pair model mapping with wildcard patterns + - Custom translation prompts + - Manual translation overrides using data-lingo-override attribute + - Build modes (translate vs cache-only) and recommended workflows + - Custom locale resolvers (server and client) + - Configuration options table with defaults + - Development configuration (pseudotranslator, translation server port) + - Locale persistence configuration (cookie settings) + - Pluralization configuration + - Updated feature list + - Fixed demo app paths in examples + +- Updated dependencies [[`020424f`](https://github.com/lingodotdev/lingo.dev/commit/020424f2601c535e88c66aeeece5a15fb9b66b70)]: + - lingo.dev@0.117.22 + ## 0.1.1 ### Patch Changes diff --git a/packages/new-compiler/package.json b/packages/new-compiler/package.json index e6204c8fa..82d4b7dc6 100644 --- a/packages/new-compiler/package.json +++ b/packages/new-compiler/package.json @@ -1,6 +1,6 @@ { "name": "@lingo.dev/compiler", - "version": "0.1.1", + "version": "0.1.2", "description": "Lingo.dev Compiler", "private": false, "repository": { @@ -171,7 +171,7 @@ "dotenv": "^17.2.3", "fast-xml-parser": "^5.3.3", "intl-messageformat": "^11.0.6", - "lingo.dev": "^0.117.0", + "lingo.dev": "^0.117.22", "lodash": "^4.17.21", "proper-lockfile": "^4.1.2", "ws": "^8.18.3"