Release v3.2.3

pull/586/head v3.2.3
vapao 2022-07-25 09:34:49 +08:00
parent 71f6450f36
commit e4fa088915
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ class ExecHistory(models.Model, ModelMixin):
digest = models.CharField(max_length=32, db_index=True)
interpreter = models.CharField(max_length=20)
command = models.TextField()
params = models.CharField(max_length=500, default='{}')
params = models.TextField(default='{}')
host_ids = models.TextField()
updated_at = models.CharField(max_length=20, default=human_datetime)

View File

@ -133,7 +133,7 @@ AUTHENTICATION_EXCLUDES = (
re.compile('/apis/.*'),
)
SPUG_VERSION = 'v3.2.2'
SPUG_VERSION = 'v3.2.3'
# override default config
try:

View File

@ -10,4 +10,4 @@ export * from './functools';
export * from './router';
export const http = _http;
export const history = _history;
export const VERSION = 'v3.2.2';
export const VERSION = 'v3.2.3';