Skip to content

Commit

Permalink
fix: 🐛 修复无法查询已关闭的Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohuohumax committed Sep 30, 2024
1 parent 78a6374 commit 78dc7be
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 3 deletions.
7 changes: 7 additions & 0 deletions app/label/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @xiaohuohumax/miaoji-label

## 1.0.1

### Patch Changes

- Updated dependencies []:
- @xiaohuohumax/miaoji-api@0.0.2

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion app/label/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@xiaohuohumax/miaoji-label",
"type": "module",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "MiaoJi Label Tool",
"author": {
Expand Down
7 changes: 7 additions & 0 deletions app/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @xiaohuohumax/miaoji-web

## 1.0.1

### Patch Changes

- Updated dependencies []:
- @xiaohuohumax/miaoji-api@0.0.2

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion app/web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@xiaohuohumax/miaoji-web",
"type": "module",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "MiaoJi web client",
"author": {
Expand Down
7 changes: 7 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @xiaohuohumax/miaoji-api

## 0.0.2

### Patch Changes

- 修复无法查询已关闭的 Issue
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@xiaohuohumax/miaoji-api",
"type": "module",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"description": "MiaoJi API",
"author": {
Expand Down
1 change: 1 addition & 0 deletions packages/api/src/api/issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class IssueApi extends Api {
return (await this.meta.octokit.rest.issues.listForRepo({
owner: this.meta.owner,
repo: this.meta.repo,
state: 'all',
...params,
})).data as Issue[]
}
Expand Down

0 comments on commit 78dc7be

Please sign in to comment.