Skip to content

Commit cd610e2

Browse files
authored
Release 0.8.0 (#556)
* Upgrade client packages to latest minor * Upgrade to node 22 * Bump version to 0.8.0 * Update github actions node version
1 parent b380431 commit cd610e2

File tree

5 files changed

+507
-473
lines changed

5 files changed

+507
-473
lines changed

.github/workflows/nodelint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
16-
- run: npm install -g npm@8
15+
node-version: 22
16+
- run: npm install -g npm@10
1717
- run: npm ci
1818
- run: npm run ci-lint

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM node:18.13.0-buster AS node_build
2-
RUN npm install npm@8 -g
1+
FROM node:22-bookworm AS node_build
2+
RUN npm install npm@10 -g
33

44
COPY /client /client
55
WORKDIR /client
66
RUN npm ci
77
COPY /server /server
88
RUN npm run build
99

10-
FROM python:3.10-buster
10+
FROM python:3.10-bookworm
1111

1212
COPY /server/requirements.txt ./requirements.txt
1313
RUN pip install -r requirements.txt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A digital script project for cueing theatrical shows
1515

1616
### Requirements
1717

18-
* Node v18.13.x (npm 8.11.x)
18+
* Node v22.x (npm 10.x)
1919
* Python 3.10.x
2020

2121
### Client

0 commit comments

Comments
 (0)