chore: bump version to 1.14.2

This commit is contained in:
Viren070
2025-03-18 14:07:42 +00:00
parent e7ea9d23c8
commit 467da5365f
11 changed files with 2431 additions and 24 deletions
+14
View File
@@ -0,0 +1,14 @@
# Changelog
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
## [1.14.2](https://github.com/Viren070/aiostreams/compare/v1.14.1...v1.14.2) (2025-03-18)
### Bug Fixes
* attempt to fix release.yml ([960de88](https://github.com/Viren070/aiostreams/commit/960de88cc59304bde772be86d75e2ab88b48d1b6))
* **easynews-plus:** encode easynews credentials ([71f2ad4](https://github.com/Viren070/aiostreams/commit/71f2ad434fa0bbbfaf93ec489b48752d8ee6f3a1))
* **easynews:** encode easynews credentials ([e8cd4a4](https://github.com/Viren070/aiostreams/commit/e8cd4a49a058f1b4035b23824cde490c2c598013))
* extract config string for custom configs when determining whether to encrypt sensitive information ([57649f0](https://github.com/Viren070/aiostreams/commit/57649f07f657941abe3fefd01a2c5b7462b11382))
* filter out zero counts from skip reasons in logs ([d0db4db](https://github.com/Viren070/aiostreams/commit/d0db4dbf91c415405702f8e64af901f97a60f5b4))
+2406 -15
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -1,10 +1,11 @@
{
"name": "aiostreams",
"version": "1.14.1",
"version": "1.14.2",
"description": "Stremio addon to combine streams into one addon",
"main": "dist/server.js",
"scripts": {
"test": "npm run test --workspaces",
"release": "commit-and-tag-version",
"format": "prettier --write .",
"build": "npm -w packages/types run build && npm -w packages/utils run build && npm -w packages/parser run build && npm -w packages/formatters run build && npm -w packages/wrappers run build && npm -w packages/addon run build && npm -w packages/frontend run build",
"build:watch": "tsc --build --watch",
@@ -24,6 +25,7 @@
"devDependencies": {
"@types/node": "^20.14.10",
"beamup-cli": "^1.3.0",
"commit-and-tag-version": "^12.5.0",
"cross-env": "^7.0.3",
"prettier": "^3.3.2",
"tsx": "^4.16.2",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/addon",
"version": "1.14.1",
"version": "1.14.2",
"main": "dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/cloudflare-worker",
"version": "1.14.1",
"version": "1.14.2",
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/formatters",
"version": "1.14.1",
"version": "1.14.2",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/frontend",
"version": "1.14.1",
"version": "1.14.2",
"private": true,
"scripts": {
"dev": "next dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/parser",
"version": "1.14.1",
"version": "1.14.2",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/types",
"version": "1.14.1",
"version": "1.14.2",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/utils",
"version": "1.14.1",
"version": "1.14.2",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@aiostreams/wrappers",
"version": "1.14.1",
"version": "1.14.2",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run --passWithNoTests",