chore(release): release v0.7.1 #32
5 changed files with 15 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
".": "0.7.0"
|
".": "0.7.1"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.7.1](https://github.com/webstreamr/webstreamr/compare/v0.7.0...v0.7.1) (2025-05-12)
|
||||||
|
|
||||||
|
|
||||||
|
### Code Refactoring
|
||||||
|
|
||||||
|
* drop logging helper in favor of winston using DI ([fc02420](https://github.com/webstreamr/webstreamr/commit/fc024209a7887fa4562d33a407d2ec662d2a5b56))
|
||||||
|
* make cache ttl configurable per embed extractor ([09ee685](https://github.com/webstreamr/webstreamr/commit/09ee685d22f1b6e79075ff60a5ac8f6865e927f6))
|
||||||
|
* simplify resolving of promises ([8d003dd](https://github.com/webstreamr/webstreamr/commit/8d003dd1740c9fcb5be582469156b199d3373fc4))
|
||||||
|
* use country-emoji library instead of custom helper ([89e5bb1](https://github.com/webstreamr/webstreamr/commit/89e5bb1978e1aec00aba4a25a8245f809cbb5033))
|
||||||
|
|
||||||
## [0.7.0](https://github.com/webstreamr/webstreamr/compare/v0.6.0...v0.7.0) (2025-05-12)
|
## [0.7.0](https://github.com/webstreamr/webstreamr/compare/v0.6.0...v0.7.0) (2025-05-12)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.7.0",
|
"version": "0.7.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"version": "0.7.0",
|
"version": "0.7.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@isaacs/ttlcache": "^1.4.1",
|
"@isaacs/ttlcache": "^1.4.1",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "webstreamr",
|
"name": "webstreamr",
|
||||||
"description": "Provides HTTP URLs from streaming websites.",
|
"description": "Provides HTTP URLs from streaming websites.",
|
||||||
"version": "0.7.0",
|
"version": "0.7.1",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"analyse": "tsc --noEmit",
|
"analyse": "tsc --noEmit",
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import { Config, ManifestWithConfig } from '../types';
|
||||||
export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => {
|
export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => {
|
||||||
const manifest: ManifestWithConfig = {
|
const manifest: ManifestWithConfig = {
|
||||||
id: process.env['MANIFEST_ID'] || 'webstreamr',
|
id: process.env['MANIFEST_ID'] || 'webstreamr',
|
||||||
version: '0.7.0', // x-release-please-version
|
version: '0.7.1', // x-release-please-version
|
||||||
name: process.env['MANIFEST_NAME'] || 'WebStreamr',
|
name: process.env['MANIFEST_NAME'] || 'WebStreamr',
|
||||||
description: 'Provides HTTP URLs from streaming websites.',
|
description: 'Provides HTTP URLs from streaming websites.',
|
||||||
resources: [
|
resources: [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue