chore(release): release v0.26.1 #130
5 changed files with 22 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.26.0"
|
||||
".": "0.26.1"
|
||||
}
|
||||
|
|
|
|||
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,22 @@
|
|||
# Changelog
|
||||
|
||||
## [0.26.1](https://github.com/webstreamr/webstreamr/compare/v0.26.0...v0.26.1) (2025-06-10)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **extractor:** support dooodster links via DoodStream ([141c737](https://github.com/webstreamr/webstreamr/commit/141c737cf3ae1b4dfafbd4621570d5369df5816d))
|
||||
* **extractor:** support embed-only SuperVideo URLs ([dd1b3a1](https://github.com/webstreamr/webstreamr/commit/dd1b3a1f1d7d6573ec3423fcea71732f637ca46f))
|
||||
* **handler:** generalize KinoGer to support more (external) URLs ([42950bc](https://github.com/webstreamr/webstreamr/commit/42950bc2a38bb880a4c272ba87deb2c68655450a))
|
||||
|
||||
|
||||
### Code Refactoring
|
||||
|
||||
* **extractor:** add return type to all extract methods ([4da121d](https://github.com/webstreamr/webstreamr/commit/4da121d094343c499982877b1544445ac2e15be6))
|
||||
* **extractor:** introduce URL normalization ([2d615ce](https://github.com/webstreamr/webstreamr/commit/2d615ce5821985d98ba4e2ec04c5664b3f8ce7c3))
|
||||
* **handler:** improve KinoGer readability ([73ea091](https://github.com/webstreamr/webstreamr/commit/73ea091b83d65790b736b2c40a4fa5813f20ea11))
|
||||
* remove always true conditional ([7b933bf](https://github.com/webstreamr/webstreamr/commit/7b933bfbac3862f5a4b0152587bf421a2623ed92))
|
||||
|
||||
## [0.26.0](https://github.com/webstreamr/webstreamr/compare/v0.25.3...v0.26.0) (2025-06-09)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.26.0",
|
||||
"version": "0.26.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.26.0",
|
||||
"version": "0.26.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.26.0",
|
||||
"version": "0.26.1",
|
||||
"type": "commonjs",
|
||||
"scripts": {
|
||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ const typedEntries = <T extends object>(obj: T): [keyof T, T[keyof T]][] => (Obj
|
|||
export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => {
|
||||
const manifest: ManifestWithConfig = {
|
||||
id: envGetAppId(),
|
||||
version: '0.26.0', // x-release-please-version
|
||||
version: '0.26.1', // x-release-please-version
|
||||
name: envGetAppName(),
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue