Skip to content

Commit

Permalink
Merge pull request #752 from nextcloud-libraries/chore/3-0-0
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored May 2, 2024
2 parents ecf8e08 + 436fae5 commit d5e0897
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 4 deletions.
41 changes: 40 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,46 @@
# Changelog

All notable changes to this project will be documented in this file.

## 3.0.0 - 2024-05-02
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-l10n/compare/v2.2.0...v3.0.0)

### Breaking changes
Instead of also sanitizing the replacing variables, now only the result is sanitized, see [pull request #648](https://github.com/nextcloud-libraries/nextcloud-l10n/pull/648).

This will improve the performance if multiple placeholders are used and it allows this,
while the string is still sanitized:
```js
t(
'See {linkstart}documentation{linkend}',
{
linkstart: '<a ...>',
linkend: '</a>',
},
// No number
undefined,
{
// Do not escape the result as we want the HTML anchor element
escape: false,
}
)
```

### Added
* feat: export aliases `t` and `n` for `translate` and `translatePlural`

### Fixed
* fix!: Only sanitize the result string when replacing variables

### Changed
* Update NPM to latest LTS v10
* Migrate to vite for transpiling and vitest for testing
* chore: Added more tests for special cases on plural forms
* chore(deps): Bump tough-cookie to 4.1.3
* chore(deps): Bump postcss to 8.4.31
* chore(deps): Bump @nextcloud/typings to 1.8.0
* chore(deps): Bump dompurify to 3.1.1
* chore(deps): Bump @nextcloud/router to 3.0.1

## 2.2.0 - 2023-06-26

[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-l10n/compare/v2.1.0...v2.2.0)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nextcloud/l10n",
"version": "2.2.0",
"version": "3.0.0",
"description": "Nextcloud L10n helpers for apps and libraries",
"type": "module",
"main": "dist/index.cjs",
Expand Down

0 comments on commit d5e0897

Please sign in to comment.