Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/i18n
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.3.3
Choose a base ref
...
head repository: nuxt-modules/i18n
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.3.4
Choose a head ref
  • 8 commits
  • 33 files changed
  • 2 contributors

Commits on Mar 20, 2025

  1. chore: generate changelog

    BobbieGoede authored and github-actions[bot] committed Mar 20, 2025
    Copy the full SHA
    846387a View commit details

Commits on Mar 21, 2025

  1. chore: improve test description and cleanup fixture deps (#3429)

    BobbieGoede authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    258b179 View commit details
  2. fix: transform ts locale files with esbuild (#3428)

    * fix: transform ts locale files including their imports using `esbuild`
    
    * test: add ts locale file with type annotation
    BobbieGoede authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b9e008c View commit details
  3. fix: only optimize configured locale files (#3433)

    BobbieGoede authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0355466 View commit details
  4. chore: remove deprecated and unused compilation.jit option (#3434)

    BobbieGoede authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f5a47da View commit details
  5. fix: warning to recommend disabling `bundle.optimizeTranslationDirect…

    …ive` (#3436)
    BobbieGoede authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3f55ab2 View commit details
  6. chore: remove v7 branch from renovate config

    BobbieGoede committed Mar 21, 2025
    Copy the full SHA
    be29b25 View commit details
  7. release: v9.3.4

    BobbieGoede committed Mar 21, 2025
    Copy the full SHA
    9f6eebb View commit details
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# v9.3.3 (2025-03-20T18:49:36Z)

This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v9.3.3)

###    🐞 Bug Fixes

- Ensure unique imports in generated options &nbsp;-&nbsp; by @BobbieGoede in https://github.com/nuxt-modules/i18n/issues/3423 [<samp>(91ead)</samp>](https://github.com/nuxt-modules/i18n/commit/91eadc81)
- Respect `detectBrowserLanguage: false` in SSG plugin &nbsp;-&nbsp; by @ap-arto in https://github.com/nuxt-modules/i18n/issues/3410 [<samp>(5f56b)</samp>](https://github.com/nuxt-modules/i18n/commit/5f56bba2)

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/nuxt-modules/i18n/compare/v9.3.2...v9.3.3)

# v9.3.2 (2025-03-19T08:56:12Z)

This changelog is generated by [GitHub Releases](https://github.com/nuxt-modules/i18n/releases/tag/v9.3.2)
1 change: 1 addition & 0 deletions build.config.ts
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@ export default defineBuildConfig({
'node:url',
'webpack',
'@rspack/core',
'oxc-parser',
'@babel/parser',
'unplugin-vue-router',
'unplugin-vue-router/options'
4 changes: 0 additions & 4 deletions docs/content/docs/04.api/00.options.md
Original file line number Diff line number Diff line change
@@ -422,10 +422,6 @@ Whether to install the full set of APIs, components, etc. By default, all of the

Whether to tree-shake message compiler when bundling.

::callout{icon="i-heroicons-light-bulb"}
If you use this option, you need to enable the `compilation.jit` option.
::

::callout{icon="i-heroicons-exclamation-triangle" color="warning"}
If you enable this option, **you should check that resources in your application are pre-compiled with nuxt i18n module**. If you will be loading resources dynamically from the back-end via the API, enabling this option will not work because there is no message compiler.
::
1 change: 0 additions & 1 deletion docs/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -55,7 +55,6 @@ export default defineNuxtConfig({

css: ['~/assets/css/main.css'],

devtools: { enabled: true },
typescript: { strict: false },
compatibilityDate: '2024-09-26'
})
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nuxtjs/i18n",
"type": "module",
"version": "9.3.3",
"version": "9.3.4",
"packageManager": "pnpm@10.1.0",
"description": "Internationalization for Nuxt",
"contributors": [
@@ -108,12 +108,13 @@
"@vue/compiler-sfc": "^3.5.13",
"debug": "^4.3.5",
"defu": "^6.1.4",
"esbuild": "^0.25.1",
"estree-walker": "^3.0.3",
"is-https": "^4.0.0",
"knitwork": "^1.2.0",
"magic-string": "^0.30.17",
"mlly": "^1.7.4",
"oxc-parser": "^0.53.0",
"oxc-parser": "^0.61.0",
"pathe": "^2.0.3",
"ufo": "^1.5.4",
"unplugin": "^2.2.1",
1 change: 0 additions & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@
},
"devDependencies": {
"@nuxtjs/i18n": "latest",
"@nuxt/devtools": "latest",
"nuxt": "latest"
}
}
Loading