Skip to content

Commit

Permalink
[Release] 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sispheor committed Apr 4, 2022
1 parent 2404e9f commit 18d8d47
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 39 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# 1.5.2 2022-04-04

## Fix

- Remove hardcoded url in email template
- Mails were not send to user after receiving a new message

## Enhancement

- Instance serializer used User serializer instead of id
- Supports list can be filtered by Service
- Global hook can be linked to an operation
- Instance can be deleted by an admin from API

## Feature

- Message can be edited
- Operations can be disabled

# 1.5.1 2022-03-01

## Fix
Expand Down
2 changes: 1 addition & 1 deletion Squest/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.5.2b"
__version__ = "1.5.2"
VERSION = __version__
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated by Django 3.2.12 on 2022-03-02 17:19
# Generated by Django 3.2.12 on 2022-04-04 12:59

from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone


Expand All @@ -21,6 +22,16 @@ class Migration(migrations.Migration):
old_name='date_message',
new_name='creation_date',
),
migrations.AddField(
model_name='globalhook',
name='operation',
field=models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, to='service_catalog.operation'),
),
migrations.AddField(
model_name='operation',
name='enabled',
field=models.BooleanField(blank=True, default=True),
),
migrations.AddField(
model_name='requestmessage',
name='last_update_date',
Expand Down
19 changes: 0 additions & 19 deletions service_catalog/migrations/0006_globalhook_operation.py

This file was deleted.

18 changes: 0 additions & 18 deletions service_catalog/migrations/0007_operation_enabled.py

This file was deleted.

0 comments on commit 18d8d47

Please sign in to comment.