dependabot[bot]
9317725352
Bump github.com/prometheus/client_golang from 1.11.0 to 1.11.1 ( #219 )
...
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang ) from 1.11.0 to 1.11.1.
- [Release notes](https://github.com/prometheus/client_golang/releases )
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prometheus/client_golang/compare/v1.11.0...v1.11.1 )
---
updated-dependencies:
- dependency-name: github.com/prometheus/client_golang
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 09:54:56 +01:00
dependabot[bot]
f08fae7f14
Bump golang.org/x/net from 0.0.0-20220114011407-0dd24b26b47d to 0.33.0 ( #313 )
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.0.0-20220114011407-0dd24b26b47d to 0.33.0.
- [Commits](https://github.com/golang/net/commits/v0.33.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 09:51:23 +01:00
Maksim Nabokikh
b7d1b3cad3
More CI fixes ( #321 )
...
Signed-off-by: maksim.nabokikh <max.nabokih@gmail.com>
openvpn-admin-0.0.3
2025-03-04 09:41:47 +01:00
dependabot[bot]
76faf8db73
Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 ( #241 )
...
Bumps gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0.
---
updated-dependencies:
- dependency-name: gopkg.in/yaml.v3
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 09:21:53 +01:00
dependabot[bot]
59a8a91bd7
Bump wangyoucao577/go-release-action from 1.40 to 1.53 ( #305 )
...
Bumps [wangyoucao577/go-release-action](https://github.com/wangyoucao577/go-release-action ) from 1.40 to 1.53.
- [Release notes](https://github.com/wangyoucao577/go-release-action/releases )
- [Commits](https://github.com/wangyoucao577/go-release-action/compare/v1.40...v1.53 )
---
updated-dependencies:
- dependency-name: wangyoucao577/go-release-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 08:18:58 +01:00
dependabot[bot]
69fdc6b094
Bump alpine from 3.16 to 3.21 ( #310 )
...
Bumps alpine from 3.16 to 3.21.
---
updated-dependencies:
- dependency-name: alpine
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 08:10:30 +01:00
Maksim Nabokikh
75a7385d59
More CI fixes ( #311 )
...
Signed-off-by: maksim.nabokikh <max.nabokih@gmail.com>
openvpn-admin-0.0.2
2025-03-04 08:00:52 +01:00
Maksim Nabokikh
1191bf7f9d
Add workflows for the chart to CI ( #302 )
...
Signed-off-by: maksim.nabokikh <max.nabokih@gmail.com>
2025-03-04 07:24:24 +01:00
Paramoshka
a2c41756a5
Added the ability to set the validity period of the client certificate. ( #301 )
...
Signed-off-by: Paramoshka <parfenov_ivan_42a@mail.ru>
2025-03-03 13:45:33 +01:00
Izhikov Matvey
ac96942e1d
Ovpn user call and mgmt fixes + added new flag for init users db ( #296 )
2025-03-03 12:19:53 +01:00
Dmitry Shurupov
39f95e3d2c
Small fixes in the README.md Notes
2025-02-17 12:04:43 +07:00
Dmitry Shurupov
0680b4ff05
Merge pull request #293 from ogumemura/patch-1
...
Fix username validation regex to correctly recognize hyphen (-)
2025-01-10 11:31:42 +07:00
Dmitry Shurupov
a7aab7cb6a
docs: Fixing authors' links in README
...
Signed-off-by: Dmitry Shurupov <dmitry.shurupov@palark.com>
2024-11-14 15:48:12 +07:00
Dmitry Shurupov
3674d003c9
Moving repo to Palark
...
Signed-off-by: Dmitry Shurupov <dmitry.shurupov@palark.com>
2024-11-14 15:16:17 +07:00
Shobu UMEMURA
8fc518dba8
Fix username validation regex to correctly recognize hyphen (-)
...
This pull request corrects the regular expression used for username validation to correctly recognize hyphens (-).
Changes Made:
Changed the regex pattern from ^([a-zA-Z0-9_.-@])+$ to ^([a-zA-Z0-9_.\-@])+$.
Reason for Change:
In the previous regex, the hyphen (-) within the character class was interpreted as a range operator, not as a literal character. This caused usernames with hyphens to be incorrectly marked as invalid.
By escaping the hyphen (\-), the regex now correctly recognizes it as a literal character. This ensures that usernames containing hyphens are validated properly.
Points of Verification:
Confirmed that usernames containing hyphens are now correctly recognized and pass the validation.
Verified that other characters (letters, numbers, underscores, dots, and at signs) are still being properly validated.
2024-09-28 17:57:02 +09:00
Mike Klyuev
7134815ce6
Update README.md ( #291 )
...
Update current project status
2024-09-24 11:54:23 +03:00
Sprait
0c881c81e7
update start.sh
...
using compose v2
https://docs.docker.com/compose/migrate/#docker-compose-vs-docker-compose
2023-12-12 09:58:55 +03:00
Dmitry Shurupov
699cddc908
Fix the announcement blog link in README.md
2023-10-25 11:57:38 +07:00
Sprait
c83c581e21
fix revoke user ( #243 )
...
* fix reuse argument multiple times
* replace whitespace with tab
2.0.2
2023-09-12 11:05:28 +03:00
Sprait
35f76ec3b6
Update actions build binary ( #240 )
...
* disable-386-build
* update versison go-release-action
2023-09-11 09:18:48 +03:00
Sprait
8a35f70364
add variable for prometheus datasource to dashboard ( #239 )
2.0.2-rc0
2023-09-08 17:45:34 +03:00
Sprait
4981dcb919
Multi-platform build ( #234 )
...
* add multi-platform build
2023-09-04 19:24:13 +03:00
Sprait
dbc48ef3f1
Merge pull request #92 from strnk/master
...
listen.base-url parameter to support reverse-proxy setups
2023-08-22 13:40:46 +03:00
vitaliy-sn
f4d0212bfc
Merge pull request #199 from flant/update-user-list-in-ha-mode
...
Fix update user list for kubernetes.secrets backend
2023-04-27 16:04:00 +03:00
Vitaliy Snurnitsin
9024405232
Force update user list for kubernetes.secrets backend
...
Signed-off-by: Vitaliy Snurnitsin <vitaliy.snurnitsin@flant.com>
2023-04-27 15:18:29 +03:00
Christophe Huriaux
dfe2f3d756
Merge branch 'master' into master
2022-11-02 14:29:22 +01:00
Ilya Sosnovsky
a973b88463
Update README.md
...
Fix notes due #165 #166
2022-11-02 14:41:30 +03:00
Ilya Sosnovsky
3f3976ff7a
Add dashboard example
2022-09-06 09:55:02 +03:00
Ilya Sosnovsky
5d41f6d91e
Fix multiarch build
2.0.1
2022-09-05 11:48:34 +03:00
Ilya Sosnovsky
7db35753ad
Merge pull request #137 from miklezzzz/master
...
fix absent labels for secrets
2022-09-01 14:42:26 +03:00
Mikhail Scherba
10f7441c49
fix absent labels for secrets
2022-09-01 13:15:22 +03:00
Ilya Sosnovsky
ca53605554
Merge pull request #132 from flant/rc/2.0.0
...
Release 2.0.0
2.0.0
2022-08-29 12:20:48 +03:00
Ilya Sosnovsky
d012141b51
refactoring
2022-08-12 13:52:45 +03:00
Ilya Sosnovsky
0dfe9f9494
Add example dashboard
2022-08-04 15:13:41 +03:00
Ilya Sosnovsky
3e599eb989
Merge branch 'rc/2.0.0' of github.com:flant/ovpn-admin into rc/2.0.0
2022-08-02 17:19:58 +03:00
Ilya Sosnovsky
67dd4538ad
small refactoring to reduce os.exec calls
2022-08-02 17:19:27 +03:00
Ilya Sosnovsky
5146d04a0d
Merge branch 'master' into rc/2.0.0
2022-07-21 18:40:57 +03:00
Ilya Sosnovsky
a0daf5b4d7
add feature for rotate and delete users; fixes; refactoring
2022-07-21 18:37:34 +03:00
Ilya Sosnovsky
f369639a2a
Merge pull request #126 from sabuhish/master
...
Fix typo error
2022-06-08 13:17:21 +03:00
sabuhish
5a6724bf6a
Fix typo error
2022-05-18 11:37:02 +04:00
vitaliy-sn
53119e17b2
Merge pull request #122 from flant/fix-crl-file-permissions
...
Fix crl.pem file permissions
2022-04-27 23:03:57 +03:00
Vitaliy Snurnitsin
5705d2f60b
Fix crl file permissions
2022-04-27 21:51:43 +03:00
vitaliy-sn
99569daf31
Merge pull request #121 from flant/multiple-lb
...
Add ability to specify multiple --ovpn.service
2022-04-27 15:29:27 +03:00
Vitaliy Snurnitsin
47abe3bc1a
Added ability to specify multiple --ovpn.service
2022-04-27 13:45:43 +03:00
vitaliy-sn
cd746c20b5
Merge pull request #99 from vitaliy-sn/k8s-secrets-storage
...
K8s secrets storage
2022-03-18 17:44:02 +03:00
Vitaliy Snurnitsin
b26d0968e1
add helm chart example
2022-03-18 17:36:57 +03:00
Vitaliy Snurnitsin
7f1da70b9d
kubernetes.secrets storage.backend implementation
2022-03-18 17:36:57 +03:00
Vitaliy Snurnitsin
4b7ef65a66
add storage.backend selection (filesystem or kubernetes.secrets)
2022-03-18 17:36:57 +03:00
Vitaliy Snurnitsin
77adc1108c
openssl binary replaced with golang crypto/x509 library
2022-01-29 03:07:45 +03:00
Vitaliy Snurnitsin
9b1b34d4c4
logs, gofmt
2022-01-29 03:06:35 +03:00