Skip to content

Commit b657daa

Browse files
committed
Improve changelog entry
1 parent c05459c commit b657daa

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,21 @@ _Full changeset and discussions: [#1137](https://github.com/OpenTermsArchive/eng
1010
1111
### Changed
1212

13-
- **Breaking:** Rename `documents` key to `terms` in service declarations for vocabulary consistency; update your service declarations accordingly. You can update your declarations by executing the following command at the root of your declarations folder: `find . -name "*.json" -type f -exec sed -i 's/"documents":/"terms":/g' {} +` for Unix-like systems, or `find . -name "*.json" -type f -exec sed -i '' 's/"documents":/"terms":/g' {} +` for macOS
13+
- **Breaking:** Rename `documents` key to `terms` in service declarations for vocabulary consistency; to update your declarations:
14+
15+
For Unix-like systems:
16+
17+
```bash
18+
find . -name "*.json" -type f -exec sed -i 's/"documents":/"terms":/g' {} +
19+
```
20+
21+
For macOS:
22+
23+
```bash
24+
find . -name "*.json" -type f -exec sed -i '' 's/"documents":/"terms":/g' {} +
25+
```
26+
27+
⚠️ Note: When updating the engine on your declarations repositories, the validation of modified declarations will fail once. This is expected and can be safely ignored
1428

1529
## 4.2.0 - 2025-02-17
1630

0 commit comments

Comments
 (0)