Skip to content

Commit

Permalink
Added: 1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenorzz committed Oct 23, 2023
1 parent ecc50fb commit 3685888
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to the "goploy" extension will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## [1.15.3] - 2023-10-23

### Bug fixed

- ldap validate password
- deploy page duplicate item

## [1.15.2] - 2023-08-17

### Added
Expand Down
4 changes: 2 additions & 2 deletions cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var (
s string
)

const appVersion = "1.15.2"
const appVersion = "1.15.3"

func init() {
flag.StringVar(&config.AssetDir, "asset-dir", "", "default: ./")
Expand All @@ -64,7 +64,7 @@ func init() {
}

// @title Goploy
// @version 1.15.2
// @version 1.15.3
// @description A web deployment system tool!
// @contact.name zhenorzz
// @contact.url https://github.com/zhenorzz/goploy
Expand Down
2 changes: 1 addition & 1 deletion database/goploy.sql
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ CREATE TABLE IF NOT EXISTS `terminal_log` (
INSERT IGNORE INTO `user`(`id`, `account`, `password`, `name`, `contact`, `state`, `super_manager`) VALUES (1, 'admin', '$2a$10$89ZJ2xeJj35GOw11Qiucr.phaEZP4.kBX6aKTs7oWFp1xcGBBgijm', '超管', '', 1, 1);
INSERT IGNORE INTO `namespace`(`id`, `name`) VALUES (1, 'goploy');
INSERT IGNORE INTO `namespace_user`(`id`, `namespace_id`, `user_id`, `role_id`) VALUES (1, 1, 1, 0);
INSERT IGNORE INTO `system_config` (`id`, `key`, `value`) VALUES (1, 'version', '1.15.2');
INSERT IGNORE INTO `system_config` (`id`, `key`, `value`) VALUES (1, 'version', '1.15.3');
INSERT IGNORE INTO `role`(`id`, `name`, `description`) VALUES (1, 'manager', '');
INSERT IGNORE INTO `role`(`id`, `name`, `description`) VALUES (2, 'member', '');
INSERT IGNORE INTO `permission`(`id`, `pid`, `name`, `sort`, `description`) VALUES (1, 0, 'Log', 0, '');
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Import sql manually https://github.com/zhenorzz/goploy/blob/master/model/sql/goploy.sql
FROM alpine
LABEL maintainer="zhenorzz@gmail.com"
ARG GOPLOY_VER=v1.15.2
ARG GOPLOY_VER=v1.15.3
ENV GOPLOY_VER=${GOPLOY_VER}

ENV MYSQL_PORT=3306
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "goploy",
"version": "1.15.2",
"version": "1.15.3",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "vite",
Expand Down

0 comments on commit 3685888

Please sign in to comment.