-
Notifications
You must be signed in to change notification settings - Fork 550
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ng' of github.com:allegro/ralph into django-2.1
- Loading branch information
Showing
23 changed files
with
179 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,50 @@ | ||
ralph (20241104.2) bionic; urgency=medium | ||
|
||
[ awieckowski ] | ||
* Increase max user department field length | ||
* Add missing migration | ||
|
||
[ Paweł Szulc ] | ||
* Fix ldap sync when bytes received | ||
|
||
-- Paweł Szulc <[email protected]> Mon, 04 Nov 2024 13:06:26 +0000 | ||
|
||
ralph (20241104.1) bionic; urgency=medium | ||
|
||
* Fix method to get limit choices | ||
* Fix data center asset export not getting filter from request | ||
* Fix format to work with newer flake | ||
* Fix prefetches | ||
* Make prefetches work for filtered and not filtered export | ||
* loosen queries count constraint for export | ||
|
||
-- Paweł Szulc <[email protected]> Mon, 04 Nov 2024 10:17:53 +0000 | ||
|
||
ralph (20241029.1) bionic; urgency=medium | ||
|
||
[ awieckowski ] | ||
* Fix LDAP Groups sync | ||
|
||
[ Paweł Szulc ] | ||
* Fix bulk edit for some models | ||
|
||
-- Paweł Szulc <[email protected]> Tue, 29 Oct 2024 13:00:03 +0000 | ||
|
||
ralph (20241028.1) bionic; urgency=medium | ||
|
||
* Fix virtual server - hypervisor | ||
* Revert remove barcode from factory | ||
* Fix virtual server - service env optional | ||
|
||
-- Paweł Szulc <[email protected]> Mon, 28 Oct 2024 15:23:53 +0000 | ||
|
||
ralph (20241023.1) bionic; urgency=medium | ||
|
||
* Updated changelog for 20241011.1 version. | ||
* Fix data not JSON-serializable | ||
|
||
-- Paweł Szulc <[email protected]> Wed, 23 Oct 2024 10:29:45 +0000 | ||
|
||
ralph (20241011.1) bionic; urgency=medium | ||
|
||
[ Paweł Szulc ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
-r prod.txt | ||
django-auth-ldap==1.2.7 | ||
django-auth-ldap==1.6.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.0.13 on 2024-10-30 12:35 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('accounts', '0009_auto_20240621_1217'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='ralphuser', | ||
name='department', | ||
field=models.CharField(blank=True, max_length=128, verbose_name='department'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,4 +58,5 @@ def get(self, request, *args, **kwargs): | |
|
||
return APIRoot.as_view() | ||
|
||
|
||
router = RalphRouter() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ def generate_pdf_response(pdf_data, file_name): | |
) | ||
return response | ||
|
||
|
||
CACHE_DEFAULT = object() | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.