Merge pull request #217 from sambartik/fix-dependencies
fix(deps): do not list email-validator as a devDependency
This commit is contained in:
14
.github/workflows/private_registery_push.yml
vendored
14
.github/workflows/private_registery_push.yml
vendored
@@ -3,31 +3,27 @@ name: 'create docker image on pull request and push to private registery'
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- develop
|
||||
- develop
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-image:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
-
|
||||
name: Login to private registery
|
||||
- name: Login to private registery
|
||||
uses: docker/login-action@v2.0.0
|
||||
with:
|
||||
registry: ${{ secrets.REGISTRY_URL }}
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||
|
||||
-
|
||||
name: Build and push
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./
|
||||
|
||||
1845
CHANGELOG.md
1845
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@@ -15,7 +15,7 @@ _The original Overseerr team have been busy and Jellyfin/Emby support aren't on
|
||||
|
||||
- Jellyfin Support
|
||||
- Emby Support
|
||||
|
||||
|
||||
(Upcoming Features include: Multiple Server Instances, Music Support, Ability to change email address and much more!)
|
||||
|
||||
Along with all the existing Overseerr features:
|
||||
|
||||
@@ -50,6 +50,7 @@
|
||||
"csurf": "1.11.0",
|
||||
"date-fns": "2.29.1",
|
||||
"email-templates": "9.0.0",
|
||||
"email-validator": "2.0.4",
|
||||
"express": "4.18.1",
|
||||
"express-openapi-validator": "4.13.8",
|
||||
"express-rate-limit": "6.5.1",
|
||||
@@ -134,7 +135,6 @@
|
||||
"copyfiles": "2.4.1",
|
||||
"cypress": "10.6.0",
|
||||
"cz-conventional-changelog": "3.3.0",
|
||||
"email-validator": "2.0.4",
|
||||
"eslint": "8.22.0",
|
||||
"eslint-config-next": "12.2.5",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||
import axios, { AxiosInstance } from 'axios';
|
||||
import logger from '../logger';
|
||||
import logger from '@server/logger';
|
||||
import type { AxiosInstance } from 'axios';
|
||||
import axios from 'axios';
|
||||
|
||||
export interface JellyfinUserResponse {
|
||||
Name: string;
|
||||
@@ -16,7 +17,7 @@ export interface JellyfinLoginResponse {
|
||||
}
|
||||
|
||||
export interface JellyfinUserListResponse {
|
||||
users: Array<JellyfinUserResponse>;
|
||||
users: JellyfinUserResponse[];
|
||||
}
|
||||
|
||||
export interface JellyfinLibrary {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { MigrationInterface, QueryRunner } from 'typeorm';
|
||||
import type { MigrationInterface, QueryRunner } from 'typeorm';
|
||||
|
||||
export class AddJellyfinUserParams1613379909641 implements MigrationInterface {
|
||||
name = 'AddJellyfinUserParams1613379909641';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { MigrationInterface, QueryRunner } from 'typeorm';
|
||||
import type { MigrationInterface, QueryRunner } from 'typeorm';
|
||||
|
||||
export class ServerTypeEnum1613412948344 implements MigrationInterface {
|
||||
name = 'ServerTypeEnum1613412948344';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { MigrationInterface, QueryRunner } from 'typeorm';
|
||||
import type { MigrationInterface, QueryRunner } from 'typeorm';
|
||||
|
||||
export class AddJellyfinDeviceId1613670041760 implements MigrationInterface {
|
||||
name = 'AddJellyfinDeviceId1613670041760';
|
||||
|
||||
Reference in New Issue
Block a user