Skip to content

Commit

Permalink
1.8.0
Browse files Browse the repository at this point in the history
### BREAKING CHANGES:
*  Update vstutils to 4.0.

Changelog:
*  Add support for bigger values in variables (vstconsulting/polemarch#92).
*  Add paramiko to docker image (vstconsulting/polemarch#108).
*  Move `LineChartWidget` from `vstutils`.
*  Remove unused `gui.html` django template.
*  Change Logo component name.
*  Add variable for projects, for set relative path to directory with playbooks(path relative to project directory) (vstconsulting/polemarch#100).
*  Add Migration to fix full path in names of playbook.
*  Add package fr test migrations.
*  Add test for migration with name fix for playbook, add test for relative path.
*  Use `vstutils` components through `spa`.
*  Replace `tabSignal` with `spa.signals`.
*  For dashboard widget component use component name instead of format.
*  From openapi remove error responses.
*  Create action "Imported Inventories File" for project (vstconsulting/polemarch#107).
*  Add field showing that Inventory/Group/Host are imported from project file.
*  Block all operations with "Imported File Inventories" except delete and sync.
*  Fix customization of default skin.
*  Change webpack `libraryTarget` to `window` so new `vstutils` `StaticFilesLoader` can load it properly.
*  Add ru translation for `file_import_inventory` button.
*  Fix using global spa objects from window.
*  Fix rendering of `seealso` section of module by `AnsibleJSONField`.
*  Set field type of `OneModuleSerializer.data` to `JSONField`.
*  Update schema.
*  Remove `jshint` from gitlab ci.
*  Change test project git url.
*  Use `QuerySet.execute` instead of bulk requests.
*  Update `polemarch-ansible` version to `2.1.0`.
*  Resolve error with not correct field, for `enum` from `.polemarch.yml`.

See merge request polemarch/ce!213
  • Loading branch information
onegreyonewhite committed Jul 17, 2020
2 parents 1b0a4ac + da3af14 commit 3ffce7a
Show file tree
Hide file tree
Showing 96 changed files with 4,346 additions and 8,289 deletions.
15 changes: 11 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Fixes vstconsulting/polemarch#issue_number .
# [FIX|Feature|Chore|Docs] description

Changes:
* WhatWasChangedInFunctionality
### BREAKING CHANGES:
* What you should do for fix it in your projects?

@vstconsulting/maintainers
### Changelog:
* What was done?

Closes: group/project#issue
WIP: group/project#issue

### TODO:
* What should someone do?
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ code_style:
<<: *branch_tests
stage: code_standarts
variables:
TOX_ENVS: "flake,pylint,jshint"
TOX_ENVS: "flake,pylint"

py38-coverage:
<<: *branch_tests
Expand Down
31 changes: 0 additions & 31 deletions .gitlab/merge_request_templates/Bugfix.md

This file was deleted.

13 changes: 13 additions & 0 deletions .gitlab/merge_request_templates/Chore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Chore description

### BREAKING CHANGES:
* What you should do for fix it in your projects?

### Changelog:
* What was done?

Closes: group/project#issue
WIP: group/project#issue

### TODO:
* What should someone do?
13 changes: 13 additions & 0 deletions .gitlab/merge_request_templates/Docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Docs description

### BREAKING CHANGES:
* What you should do for fix it in your projects?

### Changelog:
* What was done?

Closes: group/project#issue
WIP: group/project#issue

### TODO:
* What should someone do?
27 changes: 0 additions & 27 deletions .gitlab/merge_request_templates/Documentation update.md

This file was deleted.

13 changes: 13 additions & 0 deletions .gitlab/merge_request_templates/Feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Feature description

### BREAKING CHANGES:
* What you should do for fix it in your projects?

### Changelog:
* What was done?

Closes: group/project#issue
WIP: group/project#issue

### TODO:
* What should someone do?
13 changes: 13 additions & 0 deletions .gitlab/merge_request_templates/Fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# FIX description

### BREAKING CHANGES:
* What you should do for fix it in your projects?

### Changelog:
* What was done?

Closes: group/project#issue
WIP: group/project#issue

### TODO:
* What should someone do?
31 changes: 0 additions & 31 deletions .gitlab/merge_request_templates/New feature.md

This file was deleted.

31 changes: 0 additions & 31 deletions .jshintrc

This file was deleted.

1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ RUN cat /etc/polemarch/system_requirements.txt | xargs apk --update add && \
/opt/polemarch/bin/pip3 install -U -r /etc/polemarch/system_requirements_pip.txt && \
mkdir -p /projects /hooks && \
/opt/polemarch/bin/pip3 install -U /etc/polemarch/dist/$(ls /etc/polemarch/dist/ | grep "\.tar\.gz" | tail -1)[mysql,postgresql] && \
/opt/polemarch/bin/pip3 install paramiko && \
mkdir -p /run/openldap && \
apk --purge del .build-deps && \
rm -rf ~/.cache/pip/* && \
Expand Down
4 changes: 0 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
include polemarch/web.ini setup.cfg
include README.rst LICENSE LICENSE_NAME
include polemarch/main/settings.ini
include polemarch/main/tests/facts_stdout
include polemarch/main/tests/stdout.txt
include polemarch/main/tests/raw_stdout.txt
include polemarch/main/tests/test_repo.tar.gz
include requirements.txt
include requirements-git.txt
include requirements-test.txt
Expand Down
6 changes: 6 additions & 0 deletions doc/_static/ce-docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@
.social {
font-size: 20px;
}

.main-sidebar .app-logo .text-logo {
margin-left: auto;
width: 165px;
float: inherit;
}
Loading

0 comments on commit 3ffce7a

Please sign in to comment.