Skip to content

Commit d149383

Browse files
committed
Merge branch 'dev_v0.2.5' into v0.2.5
- fix issue #122 cant delete user - updated deps - moved to new eslint config
2 parents bc87dcd + 34b995f commit d149383

File tree

16 files changed

+691
-766
lines changed

16 files changed

+691
-766
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,33 @@ on:
55
branches:
66
- 'v[0-9]+.[0-9]+.[0-9]+'
77

8+
permissions:
9+
contents: write
10+
811
jobs:
12+
create_release:
13+
name: Create Release
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v2
18+
- name: Extract branch name
19+
shell: bash
20+
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
21+
id: extract_branch
22+
- name: Create Release
23+
id: create_release
24+
uses: actions/create-release@v1
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
with:
28+
tag_name: ${{ steps.extract_branch.outputs.branch }}
29+
release_name: ${{ steps.extract_branch.outputs.branch }}
30+
body: |
31+
Please see usage on [readme](https://github.com/gtsteffaniak/filebrowser).
32+
Docker repo: https://hub.docker.com/r/gtstef/filebrowser/tags
33+
draft: false
34+
prerelease: false
935
test-backend:
1036
runs-on: ubuntu-latest
1137
steps:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file. For commit guidelines, please refer to [Standard Version](https://github.com/conventional-changelog/standard-version).
44

5+
## v0.2.5
6+
7+
- Fix: delete user prompt works using native hovers.
8+
59
## v0.2.4
610

711
- Faature: [create-folder-feature](https://github.com/gtsteffaniak/filebrowser/pull/105)

backend/go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ require (
1313
github.com/gorilla/mux v1.8.1
1414
github.com/marusama/semaphore/v2 v2.5.0
1515
github.com/mholt/archiver/v3 v3.5.1
16-
github.com/shirou/gopsutil/v3 v3.24.1
16+
github.com/shirou/gopsutil/v3 v3.24.5
1717
github.com/spf13/afero v1.11.0
1818
github.com/spf13/cobra v1.8.0
1919
github.com/spf13/pflag v1.0.5
20-
github.com/stretchr/testify v1.8.4
20+
github.com/stretchr/testify v1.9.0
2121
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce
22-
golang.org/x/crypto v0.18.0
23-
golang.org/x/image v0.15.0
24-
golang.org/x/text v0.14.0
22+
golang.org/x/crypto v0.24.0
23+
golang.org/x/image v0.17.0
24+
golang.org/x/text v0.16.0
2525
)
2626

2727
require (
@@ -30,26 +30,26 @@ require (
3030
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
3131
github.com/dsoprea/go-logging v0.0.0-20200710184922-b02d349568dd // indirect
3232
github.com/dsoprea/go-utility/v2 v2.0.0-20221003172846-a3e1774ef349 // indirect
33-
github.com/fatih/color v1.16.0 // indirect
33+
github.com/fatih/color v1.17.0 // indirect
3434
github.com/go-errors/errors v1.5.1 // indirect
3535
github.com/go-ole/go-ole v1.3.0 // indirect
3636
github.com/golang/geo v0.0.0-20230421003525-6adc56603217 // indirect
3737
github.com/golang/snappy v0.0.4 // indirect
3838
github.com/inconshreveable/mousetrap v1.1.0 // indirect
39-
github.com/klauspost/compress v1.17.6 // indirect
39+
github.com/klauspost/compress v1.17.9 // indirect
4040
github.com/klauspost/pgzip v1.2.6 // indirect
4141
github.com/mattn/go-colorable v0.1.13 // indirect
4242
github.com/mattn/go-isatty v0.0.20 // indirect
4343
github.com/nwaples/rardecode v1.1.3 // indirect
4444
github.com/pierrec/lz4/v4 v4.1.21 // indirect
4545
github.com/pmezard/go-difflib v1.0.0 // indirect
46-
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
47-
github.com/ulikunitz/xz v0.5.11 // indirect
46+
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
47+
github.com/ulikunitz/xz v0.5.12 // indirect
4848
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
4949
github.com/yusufpapurcu/wmi v1.2.4 // indirect
50-
go.etcd.io/bbolt v1.3.8 // indirect
51-
golang.org/x/net v0.20.0 // indirect
52-
golang.org/x/sys v0.16.0 // indirect
50+
go.etcd.io/bbolt v1.3.10 // indirect
51+
golang.org/x/net v0.26.0 // indirect
52+
golang.org/x/sys v0.21.0 // indirect
5353
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
5454
gopkg.in/yaml.v2 v2.4.0 // indirect
5555
gopkg.in/yaml.v3 v3.0.1 // indirect

backend/go.sum

Lines changed: 26 additions & 67 deletions
Large diffs are not rendered by default.

frontend/.eslintrc.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

frontend/eslint.config.js

Whitespace-only changes.

0 commit comments

Comments
 (0)