Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: enable event duplication for service migrations #711

Merged
merged 6 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ jobs:
uses: swrlab/node-utils/.github/workflows/linter.yml@main
with:
install-all: false
log-level: "NOTICE"
log-level: 'NOTICE'
validate-all-codebase: false
javascript-es-config-file: /.eslintrc.json
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.9.0] - 2024-08-19

- feat: enable event duplication for service migrations

## [1.8.1] - 2024-07-23

- feat: extend contributor roles
Expand Down
Binary file modified bun.lockb
Binary file not shown.
11 changes: 11 additions & 0 deletions config/event-duplication.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"old-id-here": "new-id-here",
"crid://wdr.de/Sendung-165805": "crid://wdr.de/Beitrag-8b3f11ae-cf15-47e4-9f68-e4e9b83013f5",
"crid://wdr.de/Sendung-165804": "crid://wdr.de/Beitrag-9b18478d-ce15-4c4d-a2d3-02cd951a4cec",
"crid://wdr.de/Sendung-befbdb6d-3d1c-403d-8936-061abbd919fe": "crid://wdr.de/Beitrag-0bdc0be4-d331-4248-9e40-4374d16d9541",
"crid://wdr.de/Sendung-5893ad38-ab6a-48bc-ba8c-d4a14763e857": "crid://wdr.de/Beitrag-d775524e-54ba-4ecd-9814-3f324fd0a891",
"crid://wdr.de/Sendung-3c5b688d-5f31-4bb1-91f0-41d72a2e7cd3": "crid://wdr.de/Beitrag-7a56249f-4f7e-4ff4-aaf0-27d7cf50ba13",
"crid://wdr.de/Sendung-165961": "crid://wdr.de/Beitrag-99ed97df-550b-48a4-a544-dcaf03e59c44",
"crid://wdr.de/Sendung-165960": "crid://wdr.de/Beitrag-5552666a-b5e0-48b2-a500-47a58ad2d457",
"crid://wdr.de/Sendung-165959": "crid://wdr.de/Beitrag-78a782d9-d557-4c01-a2f9-99866279190e"
}
5 changes: 3 additions & 2 deletions docs/PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ This plugin makes it possible to send data to their system. It is currently set
}
```

There are also a couple of additional properties that can be set:
There are also a couple of properties that can be set:

- `delay` (int, default: `0`) - if there is an offset to wait until this data is shown
- `isDeactivated` (boolean, default `false`) - if `true`, the data will not be sent to the external system
- `delay` (int, default `0`) - if there is an offset to wait until this data is shown
- `album` (string, default `null`) - album title, if available
- `composer` (string, default `null`) - composer, if available
- `program` (string, default `null`) - program title, if available
Expand Down
2 changes: 1 addition & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "European Union Public License 1.2",
"url": "https://spdx.org/licenses/EUPL-1.2.html"
},
"version": "1.8.1"
"version": "1.9.0"
},
"externalDocs": {
"description": "ARD Eventhub Documentation",
Expand Down
Loading