Compare commits

...

2 Commits

Author SHA1 Message Date
a821aeb129 chore: remove unused test file
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-14 15:42:58 +08:00
0dd939b979 chore(release): 1.7.5 2026-04-14 15:34:52 +08:00
3 changed files with 8 additions and 10 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
## [1.7.5](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.7.4...v1.7.5) (2026-04-14)
### Bug Fixes
* override MIME type for PDF uploads & fix build errors ([38239c5](https://wibugit.wibudev.com/wibu/hipmi/commit/38239c52d6d083d0c6ee6fde94f09e16fa7201dd))
## [1.7.4](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.7.3...v1.7.4) (2026-03-30)
## [1.7.3](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.7.2...v1.7.3) (2026-03-27)

View File

@@ -1,6 +1,6 @@
{
"name": "hipmi",
"version": "1.7.4",
"version": "1.7.5",
"private": true,
"prisma": {
"seed": "bun prisma/seed.ts"

View File

@@ -1,9 +0,0 @@
import { prisma } from "@/lib";
import { describe, test, expect } from "bun:test";
describe("coba test", () => {
test("coba", async () => {
const user = await prisma.user.findMany();
expect(user).not.toBeEmpty();
});
});