Skip to content

Commit 8d61dfd

Browse files
committed
Merge branch 'main' into built-in-filters
# By Nicolas Dupont (4) and Open Terms Archive Release Bot (1) # Via GitHub (1) and Open Terms Archive Release Bot (1) * main: Release v7.1.0 Improve wording Add missing funder Add changelog entry Visually separate combined documents # Conflicts: # CHANGELOG.md
2 parents 279d4be + 927b58c commit 8d61dfd

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ All changes that impact users of this module are documented in this file, in the
88
99
### Added
1010

11+
- Improve readability of multi-document terms
12+
13+
## 7.1.0 - 2025-09-10
14+
15+
_Full changeset and discussions: [#1188](https://github.com/OpenTermsArchive/engine/pull/1188)._
16+
17+
> Development of this release was supported by the [French Ministry for Foreign Affairs](https://www.diplomatie.gouv.fr/fr/politique-etrangere-de-la-france/diplomatie-numerique/) through its ministerial [State Startups incubator](https://beta.gouv.fr/startups/open-terms-archive.html) under the aegis of the Ambassador for Digital Affairs.
18+
19+
### Added
20+
1121
- Add support for parameters in filters; see more in the [filters documentation](https://docs.opentermsarchive.org/terms/how-to/apply-filters/)
1222
- Add `removeQueryParams` built-in filter to remove query parameters from links and images; see more in the [built-in filters documentation](https://docs.opentermsarchive.org/terms/reference/built-in-filters/)
1323

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opentermsarchive/engine",
3-
"version": "7.0.0",
3+
"version": "7.1.0",
44
"description": "Tracks and makes visible changes to the terms of online services",
55
"homepage": "https://opentermsarchive.org",
66
"bugs": {

src/archivist/recorder/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Record from './record.js';
55
export default class Version extends Record {
66
static REQUIRED_PARAMS = Object.freeze([ ...Record.REQUIRED_PARAMS, 'snapshotIds' ]);
77

8-
static SOURCE_DOCUMENTS_SEPARATOR = '\n\n';
8+
static SOURCE_DOCUMENTS_SEPARATOR = '\n\n- - -\n\n'; // Separator used to delimit source documents when concatenating them. The "- - -" produces a horizontal ruler in Markdown
99

1010
constructor(params) {
1111
super(params);

0 commit comments

Comments
 (0)