Skip to content

Commit

Permalink
fix: address unhandled promise rejections & bump node to v16.13 (#2398)
Browse files Browse the repository at this point in the history
* fix: unhandled promise rejections

* build(deps): bump node from 14.18 to 16.13

* fix: unhandled promise rejection in new Plex users endpoint

* fix: build error

Co-authored-by: Ryan Cohen <ryan@sct.dev>
  • Loading branch information
TheCatLady and sct committed Jan 27, 2022
1 parent ca18472 commit 8cba486
Show file tree
Hide file tree
Showing 20 changed files with 1,323 additions and 901 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
name: Lint & Test Build
runs-on: ubuntu-20.04
container: node:14.18-alpine
container: node:16.13-alpine
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
name: Lint & Test Build
runs-on: ubuntu-20.04
container: node:14.18-alpine
container: node:16.13-alpine
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Lint & Test Build
needs: jobs
runs-on: ubuntu-20.04
container: node:14.18-alpine
container: node:16.13-alpine
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.18-alpine AS BUILD_IMAGE
FROM node:16.13-alpine AS BUILD_IMAGE

WORKDIR /app

Expand Down Expand Up @@ -33,7 +33,7 @@ RUN touch config/DOCKER
RUN echo "{\"commitTag\": \"${COMMIT_TAG}\"}" > committag.json


FROM node:14.18-alpine
FROM node:16.13-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.18-alpine
FROM node:16.13-alpine

COPY . /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion server/api/servarr/radarr.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logger from '../../logger';
import ServarrBase from './base';

interface RadarrMovieOptions {
export interface RadarrMovieOptions {
title: string;
qualityProfileId: number;
minimumAvailability: string;
Expand Down
2 changes: 1 addition & 1 deletion server/api/servarr/sonarr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export interface SonarrSeries {
};
}

interface AddSeriesOptions {
export interface AddSeriesOptions {
tvdbid: number;
title: string;
profileId: number;
Expand Down

0 comments on commit 8cba486

Please sign in to comment.