Skip to content

Commit 4761ef6

Browse files
authored
Merge pull request #96 from acelaya-forks/feature/update-deps
Feature/update deps
2 parents f1703d6 + b2598ec commit 4761ef6

File tree

6 files changed

+3419
-1248
lines changed

6 files changed

+3419
-1248
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
ci:
1111
uses: shlinkio/github-actions/.github/workflows/web-app-ci.yml@main
1212
with:
13-
node-version: 18.12
13+
node-version: 20.2
1414
with-unit-tests: false
1515
force-install: true

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [2.2.0] - 2023-06-18
8+
### Added
9+
* *Nothing*
10+
11+
### Changed
12+
* Update to Swagger UI 5.0.0 and other dependencies
13+
14+
### Deprecated
15+
* *Nothing*
16+
17+
### Removed
18+
* *Nothing*
19+
20+
### Fixed
21+
* *Nothing*
22+
23+
724
## [2.1.0] - 2023-03-05
825
### Added
926
* *Nothing*

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM node:18.12-alpine as node
1+
FROM node:20.2-alpine as node
22
COPY . /shlink-api-spec
33
RUN cd /shlink-api-spec && \
44
npm ci --force && \
55
npm run build
66

7-
FROM nginx:1.23-alpine
7+
FROM nginx:1.25-alpine
88
LABEL maintainer="Alejandro Celaya <[email protected]>"
99
RUN rm -r /usr/share/nginx/html && rm /etc/nginx/conf.d/default.conf
1010
COPY config/docker/nginx.conf /etc/nginx/conf.d/default.conf

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
shlink_api_spec_ui:
55
container_name: shlink_api_spec_ui
6-
image: node:18.12-alpine
6+
image: node:20.2-alpine
77
command: /bin/sh -c "cd /shlink-api-spec && npm install -f && npm run start"
88
volumes:
99
- ./:/shlink-api-spec

0 commit comments

Comments
 (0)