Skip to content

Commit

Permalink
[Release] 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EliasBoulharts authored and Sispheor committed Feb 28, 2022
1 parent 1734a90 commit bc8687f
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 51 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# 1.5.0 2022-02-28

## Breaking changes

- API: Service and Operation creation split.

## Fix

- Patch a resource without "text_attribute" field filled.
- Fix Squest logo not shown in maintenance page for non-root URLs.
- Resource group and Resource pool with the same name was not displayed in the graph.
- Add missing swagger doc for operation survey.

## Enhancement

- Performance: cache + calculation + asynchronous call.
- API : Create a Service return full Service Serializer.
- Catch all Tower exceptions when processing a request.
- Remove role binding from team details.
- Global hook can be linked to a service.
- Admin can set to blank a non required field with default value in Tower survey.
- Split Service and Operation form.
- API: Split Service and Operation serializer.

## Feature

- Jinja template on survey default field value.

# 1.4.1 2022-02-02

## Breaking changes
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.5b"
__version__ = "1.5.0"
VERSION = __version__
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.2.12 on 2022-02-17 08:35
# Generated by Django 3.2.12 on 2022-02-28 15:38

from django.db import migrations, models
import django.db.models.deletion
Expand All @@ -19,7 +19,26 @@ class Migration(migrations.Migration):
]

operations = [

migrations.AddField(
model_name='globalhook',
name='service',
field=models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, to='service_catalog.service'),
),
migrations.AlterField(
model_name='operation',
name='auto_accept',
field=models.BooleanField(blank=True, default=False),
),
migrations.AlterField(
model_name='operation',
name='auto_process',
field=models.BooleanField(blank=True, default=False),
),
migrations.AlterField(
model_name='service',
name='enabled',
field=models.BooleanField(blank=True, default=False),
),
migrations.CreateModel(
name='TowerSurveyField',
fields=[
Expand All @@ -38,5 +57,4 @@ class Migration(migrations.Migration):
model_name='operation',
name='enabled_survey_fields',
),

]
19 changes: 0 additions & 19 deletions service_catalog/migrations/0005_globalhook_service.py

This file was deleted.

28 changes: 0 additions & 28 deletions service_catalog/migrations/0006_auto_20220225_1544.py

This file was deleted.

0 comments on commit bc8687f

Please sign in to comment.