Skip to content

Commit 7860010

Browse files
committed
feat(v4.4.2): version
1 parent ce8b3ed commit 7860010

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
id: runtime-type
1818
attributes:
1919
label: How is Zipline being run?
20-
description:
20+
description:
2121
options:
2222
- On docker (docker, docker compose, etc.)
2323
- Built from source (running it through `pnpm start` or `node`, etc.)
@@ -34,7 +34,7 @@ body:
3434
- If version checking is enabled (it is by default): paste the response from `http://<domain>/api/version`
3535
- If using docker (and can't do the above): specify the tag you are using (`latest`, `trunk`, or a tag digest)
3636
- A simple version number (e.g. "4.2.1") may also suffice
37-
placeholder: "4.2.1"
37+
placeholder: '4.2.1'
3838
validations:
3939
required: true
4040

@@ -68,4 +68,3 @@ body:
6868
description: |
6969
Please list the exact steps required to reproduce the issue.
7070
Include any relevant configuration options, settings, or external services that may affect Zipline’s functionality.
71-

.github/workflows/gen-openapi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
node: [24.x]
1515
arch: [amd64]
16-
16+
1717
runs-on: ubuntu-24.04
1818

1919
services:
@@ -57,7 +57,7 @@ jobs:
5757
restore-keys: |
5858
${{ runner.os }}-${{ matrix.arch }}-${{ matrix.node }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}-
5959
60-
- name: Install
60+
- name: Install
6161
run: pnpm install
6262

6363
- name: Build
@@ -83,7 +83,7 @@ jobs:
8383
DATABASE_URL: postgres://zipline:zipline@localhost:5432/zipline
8484
CORE_SECRET: ${{ steps.secret.outputs.secret }}
8585
ZIPLINE_OUTPUT_OPENAPI: true
86-
86+
8787
run: pnpm start
8888

8989
- name: Verify openapi.json exists

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "zipline",
33
"private": true,
44
"license": "MIT",
5-
"version": "4.4.1",
5+
"version": "4.4.2",
66
"scripts": {
77
"build": "tsx scripts/build.ts",
88
"dev": "cross-env NODE_ENV=development DEBUG=zipline tsx --require dotenv/config --enable-source-maps ./src/server",
@@ -15,10 +15,10 @@
1515
"db:prototype": "prisma db push --skip-generate && prisma generate --no-hints",
1616
"db:migrate": "prisma migrate dev --create-only",
1717
"docker:engine": "colima start --mount $PWD/themes:w --mount $PWD/uploads:w --mount $PWD/public:w",
18-
"docker:compose:dev:build": "docker-compose --file docker-compose.dev.yml build --build-arg ZIPLINE_GIT_SHA=$(git rev-parse HEAD)",
19-
"docker:compose:dev:up": "docker-compose --file docker-compose.dev.yml up -d",
20-
"docker:compose:dev:down": "docker-compose --file docker-compose.dev.yml down",
21-
"docker:compose:dev:logs": "docker-compose --file docker-compose.dev.yml logs -f"
18+
"docker:compose:dev:build": "docker compose --file docker-compose.dev.yml build --build-arg ZIPLINE_GIT_SHA=$(git rev-parse HEAD)",
19+
"docker:compose:dev:up": "docker compose --file docker-compose.dev.yml up -d",
20+
"docker:compose:dev:down": "docker compose --file docker-compose.dev.yml down",
21+
"docker:compose:dev:logs": "docker compose --file docker-compose.dev.yml logs -f"
2222
},
2323
"dependencies": {
2424
"@aws-sdk/client-s3": "3.726.1",

0 commit comments

Comments
 (0)