From 32487e204faaa89b321deb900121f21888ada507 Mon Sep 17 00:00:00 2001 From: George Helman Date: Sat, 16 Nov 2024 15:06:41 -0500 Subject: [PATCH 1/2] #461 Assault convictions now provide warning. Also created general approach for adding offense-level warnings on the Petition page --- dear_petition/petition/README.md | 1 + dear_petition/petition/api/serializers.py | 98 +- .../petition/api/tests/test_serializers.py | 76 +- qq | 8082 +++++++++++++++++ src/components/elements/Tooltip/Tooltip.jsx | 12 +- src/features/OffenseTable/OffenseTable.jsx | 19 +- 6 files changed, 8275 insertions(+), 13 deletions(-) create mode 100644 qq diff --git a/dear_petition/petition/README.md b/dear_petition/petition/README.md index 636fc886..1d2d19a4 100644 --- a/dear_petition/petition/README.md +++ b/dear_petition/petition/README.md @@ -14,6 +14,7 @@ 6. In dear_petition/petition/etl/load.py, add to create_batch_petitions function 7. Add to PETITION_FORM_NAMES constant in src/contstants/petitionConstants.js +8. Create a new offense record serializer for your new petition type in serializers.py and add it to the offense_record_serializer_map. diff --git a/dear_petition/petition/api/serializers.py b/dear_petition/petition/api/serializers.py index 3c522ae4..ba1afa3d 100644 --- a/dear_petition/petition/api/serializers.py +++ b/dear_petition/petition/api/serializers.py @@ -2,6 +2,7 @@ from django.urls import reverse from rest_framework import serializers from rest_framework_simplejwt.serializers import TokenObtainPairSerializer +from dateutil.relativedelta import relativedelta from dear_petition.users.models import User from dear_petition.petition.models import ( @@ -15,7 +16,14 @@ Petition, PetitionDocument, ) -from dear_petition.petition.constants import ATTACHMENT, DISMISSED, UNDERAGED_CONVICTIONS +from dear_petition.petition.constants import ( + ATTACHMENT, + DISMISSED, + UNDERAGED_CONVICTIONS, + NOT_GUILTY, + ADULT_FELONIES, + ADULT_MISDEMEANORS, +) from .fields import ValidationField @@ -92,6 +100,91 @@ class Meta: ] +class DismissedOffenseRecordSerializer(OffenseRecordSerializer): + warnings = serializers.SerializerMethodField() + + def get_warnings(self, offense_record): + warnings = [] + dob = self.get_dob(offense_record) + if dob: + eighteenth_birthday = dob + relativedelta(years=18) + if offense_record.offense.ciprs_record.offense_date.date() < eighteenth_birthday: + warnings.append("This offense may be a candidate for the AOC-CR-293 petition form") + return warnings + + class Meta: + model = OffenseRecord + fields = OffenseRecordSerializer.Meta.fields + ["warnings"] + + +class NotGuiltyOffenseRecordSerializer(OffenseRecordSerializer): + warnings = serializers.SerializerMethodField() + + def get_warnings(self, offense_record): + warnings = [] + dob = self.get_dob(offense_record) + if dob: + eighteenth_birthday = dob + relativedelta(years=18) + if offense_record.offense.ciprs_record.offense_date.date() < eighteenth_birthday: + warnings.append("This offense may be a candidate for the AOC-CR-293 petition form") + return warnings + + class Meta: + model = OffenseRecord + fields = OffenseRecordSerializer.Meta.fields + ["warnings"] + + +class UnderagedConvictionOffenseRecordSerializer(OffenseRecordSerializer): + warnings = serializers.SerializerMethodField() + + def get_warnings(self, offense_record): + warnings = [] + if "assault" in offense_record.description.lower(): + warnings.append("This is an assault conviction") + return warnings + + class Meta: + model = OffenseRecord + fields = OffenseRecordSerializer.Meta.fields + ["warnings"] + + +class AdultFelonyOffenseRecordSerializer(OffenseRecordSerializer): + warnings = serializers.SerializerMethodField() + + def get_warnings(self, offense_record): + warnings = [] + if "assault" in offense_record.description.lower(): + warnings.append("This is an assault conviction") + return warnings + + class Meta: + model = OffenseRecord + fields = OffenseRecordSerializer.Meta.fields + ["warnings"] + + +class AdultMisdemeanorOffenseRecordSerializer(OffenseRecordSerializer): + warnings = serializers.SerializerMethodField() + + def get_warnings(self, offense_record): + warnings = [] + if "assault" in offense_record.description.lower(): + warnings.append("This is an assault conviction") + return warnings + + class Meta: + model = OffenseRecord + fields = OffenseRecordSerializer.Meta.fields + ["warnings"] + + +offense_record_serializer_map = { + DISMISSED: DismissedOffenseRecordSerializer, + NOT_GUILTY: NotGuiltyOffenseRecordSerializer, + UNDERAGED_CONVICTIONS: UnderagedConvictionOffenseRecordSerializer, + ADULT_FELONIES: AdultFelonyOffenseRecordSerializer, + ADULT_MISDEMEANORS: AdultMisdemeanorOffenseRecordSerializer, +} + + class OffenseSerializer(serializers.ModelSerializer): offense_records = OffenseRecordSerializer(many=True, read_only=True) @@ -297,7 +390,8 @@ def get_attachments(self, instance): def get_offense_records(self, petition): offense_records = petition.offense_records.all() - return OffenseRecordSerializer(offense_records, many=True).data + Serializer = offense_record_serializer_map.get(petition.form_type, OffenseRecordSerializer) + return Serializer(offense_records, many=True).data def get_active_records(self, petition): return petition.offense_records.filter(petitionoffenserecord__active=True).values_list( diff --git a/dear_petition/petition/api/tests/test_serializers.py b/dear_petition/petition/api/tests/test_serializers.py index d051218b..8c817989 100644 --- a/dear_petition/petition/api/tests/test_serializers.py +++ b/dear_petition/petition/api/tests/test_serializers.py @@ -1,7 +1,16 @@ -import pytest +from datetime import timedelta, datetime -from dear_petition.petition.api.serializers import OffenseRecordSerializer +import pytest +from dear_petition.petition.api.serializers import ( + AdultFelonyOffenseRecordSerializer, + AdultMisdemeanorOffenseRecordSerializer, + DismissedOffenseRecordSerializer, + NotGuiltyOffenseRecordSerializer, + OffenseRecordSerializer, + UnderagedConvictionOffenseRecordSerializer, +) from dear_petition.petition.tests.factories import OffenseRecordFactory +import dear_petition.petition.constants as pc @pytest.mark.django_db @@ -15,3 +24,66 @@ def test_offense_date_none(self): record = OffenseRecordFactory(offense__ciprs_record__offense_date=None) serializer = OffenseRecordSerializer(record) assert serializer.data["offense_date"] is None + + def test_dismissed_record_underaged_warning(self, charged_dismissed_record): + charged_dismissed_record.offense.ciprs_record.dob = ( + charged_dismissed_record.offense.ciprs_record.offense_date.date() + - timedelta(days=365 * 16) + ) + charged_dismissed_record.offense.ciprs_record.save() + + serializer = DismissedOffenseRecordSerializer(charged_dismissed_record) + assert serializer.data["warnings"] == [ + "This offense may be a candidate for the AOC-CR-293 petition form" + ] + + def test_not_guilty_underaged_warning(self, charged_not_guilty_record): + charged_not_guilty_record.offense.ciprs_record.dob = ( + charged_not_guilty_record.offense.ciprs_record.offense_date.date() + - timedelta(days=365 * 16) + ) + charged_not_guilty_record.offense.ciprs_record.save() + + serializer = NotGuiltyOffenseRecordSerializer(charged_not_guilty_record) + assert serializer.data["warnings"] == [ + "This offense may be a candidate for the AOC-CR-293 petition form" + ] + + def test_underaged_conviction_assault_warning(self, record1, non_dismissed_offense): + record1.dob = datetime(2000, 1, 2) + record1.offense_date = datetime(2018, 1, 1) + record1.save() + + offense_record = OffenseRecordFactory( + action="CONVICTED", description="Assault", offense=non_dismissed_offense + ) + serializer = UnderagedConvictionOffenseRecordSerializer(offense_record) + assert serializer.data["warnings"] == ["This is an assault conviction"] + + def test_adult_felony_assault_warning(self, record1, non_dismissed_offense): + record1.dob = datetime(2000, 1, 2) + record1.offense_date = datetime(2019, 1, 1) + record1.save() + + offense_record = OffenseRecordFactory( + action="CONVICTED", + description="Assault", + severity=pc.SEVERITY_FELONY, + offense=non_dismissed_offense, + ) + serializer = AdultFelonyOffenseRecordSerializer(offense_record) + assert serializer.data["warnings"] == ["This is an assault conviction"] + + def test_adult_misdemeanor_assault_warning(self, record1, non_dismissed_offense): + record1.dob = datetime(2000, 1, 2) + record1.offense_date = datetime(2019, 1, 1) + record1.save() + + offense_record = OffenseRecordFactory( + action="CONVICTED", + description="Assault", + severity=pc.SEVERITY_MISDEMEANOR, + offense=non_dismissed_offense, + ) + serializer = AdultFelonyOffenseRecordSerializer(offense_record) + assert serializer.data["warnings"] == ["This is an assault conviction"] diff --git a/qq b/qq new file mode 100644 index 00000000..7e9030dc --- /dev/null +++ b/qq @@ -0,0 +1,8082 @@ +commit 9ea536e163028020735770d51f3e63e0c36c839c (HEAD -> assault_convictions) +Author: George Helman +Date: Sat Nov 16 11:53:53 2024 -0500 + + /#461 Assault convictions now provide warning. Also created general approach for adding offense-level warnings on the Petition page + +commit c65fbe6ea84e45a3c430d23d99cca0c2038efd85 (origin/master, origin/HEAD, master) +Merge: 03e577d 891ee34 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Nov 11 18:54:39 2024 -0500 + + Merge pull request #513 from deardurham/district_deferred + + #487 Add new Portal dismissed disposition method + +commit 03e577da0db900726b7aa84512d8454261e02cb1 +Author: Colin Copeland +Date: Mon Nov 11 18:25:29 2024 -0500 + + Re-enable black pre-commit hook (#456) + + * install django-upgrade hook + + * update requirements + + * django-upgrade 4.2 fixes + + * switch to factory.django.DjangoModelFactory + + * support Pillow>=9 + + * use dummy_get_response + + * use 3.12 in Dockerfile and GitHub actions + + * add CSRF_TRUSTED_ORIGINS + + * try removing terser + + * run prettier + + * rerun prettier + + * remove invoke + + * remove old heroku files + + * enable black + + * run black + + * create github action workflow for pre-commit + + * update pre-commit + + * run black + + * Run pre-commit + + * Move lint + format to pre-commit + + * Run prettier for js,jsx files only + + --------- + + Co-authored-by: Rob Gries + +commit 23f1a2f26cd019c0996bb9ab5a46b72cab2d1c71 +Author: Rob Gries +Date: Mon Nov 11 16:38:48 2024 -0500 + + Fix restriction on number of characters for county (#511) + +commit 891ee34956c1a08bb5882b5a9d4a3058a8f1f4c2 (origin/district_deferred, district_deferred) +Author: George Helman +Date: Mon Nov 11 14:35:15 2024 -0500 + + #487 Add new Portal dismissed disposition method + +commit 0f10bf4d658d0f0cc8412aef0efe88d37e6c1d7a +Merge: 85247ce b63248f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Nov 11 12:25:37 2024 -0500 + + Merge pull request #512 from deardurham/fix_celery + + Decrease celery concurrency because Heroku says it is using too much … + +commit b63248f2e095d948a161b1169669f179db42c259 (origin/fix_celery, fix_celery) +Author: George Helman +Date: Mon Nov 11 12:12:16 2024 -0500 + + Decrease celery concurrency because Heroku says it is using too much memory, causing dyno to crash + +commit 85247ced9c99669f4e9b76112216c0a078f62953 +Merge: e695653 25773a8 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Nov 11 11:39:51 2024 -0500 + + Merge pull request #510 from deardurham/fix_celery + + Fix Celery not running + +commit 25773a86e404dbf470b795fb62b899d123888925 +Author: George Helman +Date: Mon Nov 11 11:27:46 2024 -0500 + + Fix Celery not running + +commit e6956533b2254b6d8fca7e766c7bbc15ffdd6d26 +Author: Rebecca Drabenstott +Date: Wed Oct 23 18:54:28 2024 -0400 + + Add 1 Portal dismissed disposition method (#507) + + per Oct 23 email from Jessica + + Co-authored-by: Rebecca Drabenstott + +commit 883a1b28c187df3f1324d9017cd324e10e4adf0a +Author: Rob Gries +Date: Wed Oct 23 17:00:52 2024 -0400 + + Add pagination to Existing Petitions and Combine Batches modal (#506) + + * Add pagination to batches and combine batches modal + + * Remove unused props + + * Fix prettier and update versions + +commit f7cdcbe9af03566f99d280e6565231c31f9eded4 +Merge: c893880 1db942b +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Oct 23 00:06:24 2024 -0400 + + Merge pull request #503 from deardurham/record_import_export + + Record import export + +commit 1db942be74b4334b5c71618037ad8f17f0a67d2c (origin/record_import_export, record_import_export) +Author: George Helman +Date: Fri Oct 18 00:16:44 2024 -0400 + + More code review changes + +commit 722d54b669cb4c70b301e76602135dd3d8617b44 +Author: George Helman +Date: Wed Oct 16 00:00:05 2024 -0400 + + Code review changes + +commit c8938807c2423da834260b57588c8f2e9b5ae01f (rob/master) +Author: Rebecca Drabenstott +Date: Tue Oct 15 20:47:04 2024 -0400 + + Recognize additional Portal dismissed disposition methods (#504) + + Co-authored-by: Rebecca Drabenstott + +commit 4b9da85343424022a742c41253d543b41bf8e354 +Author: George Helman +Date: Tue Oct 15 17:56:33 2024 -0400 + + Remove unnecessary console.logs + +commit c42211b9e7ace23d27894b6c13f96ddab690a88f +Author: George Helman +Date: Tue Oct 1 18:21:18 2024 -0400 + + Create record spreadsheet that can import/export batches as an Excel file + +commit 51112c546fac3d12d192b82abe4d1447e62df508 +Author: Rebecca Drabenstott +Date: Thu Sep 5 18:45:17 2024 -0400 + + Add Portal disposition methods so more offenses show on petitions (#501) + + Co-authored-by: Rebecca Drabenstott + +commit c8a31522de26d2bb18c421b1278fc62b31a243b8 +Author: Rebecca Drabenstott +Date: Tue Sep 3 17:43:27 2024 -0400 + + Fix missing petitions when importing form Portal (#500) + + Co-authored-by: Rebecca Drabenstott + +commit b9ef72d1fec2ad0d1c18e24847b592a746c76d71 +Merge: f3a3d62 f404e1e +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sat Aug 24 18:07:35 2024 -0400 + + Merge pull request #499 from deardurham/fix_ut + + Fix petition filename UT to have fixed petition date + +commit f404e1e5d72bd27849d4a6a4ae56bdaac29b53ed (origin/fix_ut) +Author: George Helman +Date: Sat Aug 24 17:53:23 2024 -0400 + + Fix petition filename UT to have fixed petition date + +commit f3a3d626874dc9332a9c26bbd205bdbbec502d5a +Merge: 3e2186c 20e77fd +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sat Aug 24 13:19:53 2024 -0400 + + Merge pull request #490 from deardurham/new_petition_titles + + Change petition titles to new AOC format + +commit 3e2186c1924617de145082e1c1f1b611180792ae +Author: Rob Gries +Date: Thu Aug 22 21:19:40 2024 -0400 + + New EZ Expunge Logos (#498) + + * Add new logos and new favicon + + * Add new logos + + * Ignore index.html for prettier - still not preventing vs code for some reason + +commit 2228a4aa1e2255f2ad1234dcb13c702ce097efa3 +Author: Rob Gries +Date: Tue Aug 20 17:43:11 2024 -0400 + + Move agency table to multi-inheritence model and fix some small issues (#496) + + * Create new agency table using multi-inheritence + + * Remove backwards migration + + * Remove reverse migration for now and fix delete of old model + + * Remove call to converting agency object to contact + + * Add sheriff office to agency modal + +commit 9992bd2cc5ac947a4a6827360ad1928e9b731cc1 +Author: Rob Gries +Date: Fri Aug 16 09:25:10 2024 -0400 + + Fix automatic refreshing of generation page data after modifying agencies or offenses (#497) + + * Fix automatic refreshing of generation page data after modifying agencies or offenses + + * Remove unnecessary wrapper component + +commit 202dcd0c89cd89e8bc84adc6d1ca39180022c34a +Author: Rob Gries +Date: Tue Aug 13 19:09:20 2024 -0400 + + Fix flaky adult conviction tests (#495) + + * Fix flaky adult conviction tests + + * Fix adult misdemeanors test + + * Fix test_catch_parse_error + + * Add charge agency test and catch parse_agency exception + +commit 81d78aae42c305863a90a6197be505e2b130c23a +Author: Rob Gries +Date: Sun Aug 11 22:47:49 2024 -0400 + + Automatically select agencies from portal document (#492) + + * Automatically select agencies from portal document + + * Add unit test + +commit e386bdfd6e6fba1a64f51c8134510c23669a1941 +Author: Rebecca Drabenstott +Date: Thu Aug 8 09:39:28 2024 -0400 + + Parse arrest date from Portal (#488) + + Also clean up some errors in logs + +commit 649ac018288eaf14c1d5cc47fa186e4f4d67e089 +Author: Rebecca Drabenstott +Date: Thu Aug 8 09:38:49 2024 -0400 + + Parse case numbers from Portal with "IF" in addition to "CR" (#491) + +commit 20e77fd5c391d38a44ae83f445833008e8e4fa68 (origin/new_petition_titles) +Author: George Helman +Date: Sun Jul 28 02:21:15 2024 -0400 + + Change petition titles to new AOC format + +commit d80208b5d219d24a0109011959463ad4d270d946 +Author: Rebecca Drabenstott +Date: Tue Jun 11 18:24:42 2024 -0400 + + Make extended timeout specific to /batch/{pk}/ GET requests (#479) + + * Make extended timeout specific to /batch/{pk}/ GET requests + + And set default timeout back to previous value + + * Relocate extended timeout to api.js + + --------- + + Co-authored-by: Rebecca Drabenstott + +commit 424101eddd72dc906d2f242fa01a89d2fe28b34f +Merge: ec9d0a8 d01e46e +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sun Jun 9 18:38:06 2024 -0400 + + Merge pull request #480 from deardurham/add_dob_to_client + + Add DOB to client + +commit ec9d0a8e53259fe071cb80d887fed47b642962ee +Author: Rob Gries +Date: Sun Jun 9 17:29:37 2024 -0400 + + Portal Importer improvements Part 1 (#477) + + * Add warning if using portal importer on wrong site and add versioning + + * Remove eslint from prod build and remove usage of await from top level + + * Disable eslint for bookmarklet imports + + * Use npm package to fix deploy issues + +commit d01e46e6a76c610d950f0f5b6cf73e84a9415bf1 (origin/add_dob_to_client) +Author: George Helman +Date: Sat Jun 8 23:53:44 2024 -0400 + + Dev review changes + +commit 52d087dcb1c0ac833ff2e99f8a2441943875f17a +Author: George Helman +Date: Sun Jun 2 16:38:04 2024 -0400 + + Add an extra UT + +commit 042aad2fe8b776ad6101cfcceee7fe0073788605 +Author: George Helman +Date: Sun Jun 2 15:47:15 2024 -0400 + + Make the frontend work with new client DOB changes + +commit d6f14d1756a93335d3000987c36b801d53984bf9 +Author: George Helman +Date: Sat Jun 1 14:14:01 2024 -0400 + + Add additional UTs + +commit 25d4250a448c0edf2c6bbd821e69c148d65e5f21 +Author: George Helman +Date: Sat Jun 1 13:13:00 2024 -0400 + + Temp commit + +commit 3af3c9e345367c1ec03eadaa05e81266ee450ed0 +Author: Rebecca Drabenstott +Date: Sun May 19 19:15:49 2024 -0400 + + Handle dates that fall within an hour of daylight saving time ending + +commit da09277d0253077d3b9466f59c9e9b4447f98012 +Author: George Helman +Date: Tue May 28 01:54:05 2024 -0400 + + Add DOB to client + +commit a57c1298407d44a1dc20b80d99d17793befd02a7 +Merge: b689758 3a6cf31 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 14 17:37:15 2024 -0400 + + Merge pull request #476 from deardurham/lxml + + Pin lxml package so Heroku build hopefully succeeds + +commit 3a6cf310be660f78e49daaa9829122c9857b7d1e (origin/lxml) +Author: George Helman +Date: Sat May 4 00:56:44 2024 -0400 + + Pin lxml package so Heroku build hopefully succeeds + +commit b6897589f44879cd6a1797e41e68e3f82806804b +Merge: ca1d367 a457548 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 30 17:36:07 2024 -0400 + + Merge pull request #474 from deardurham/combine_batches + + Add question mark + +commit a457548b2e08a2b85dfa7506ed2e0f773f5d3d56 (origin/combine_batches) +Merge: 0003ff7 ca1d367 +Author: Rob Gries +Date: Tue Apr 30 17:35:47 2024 -0400 + + Merge branch 'master' into combine_batches + +commit 0003ff7e78fcba961ede4586d40fc7c92338daee +Author: George Helman +Date: Tue Apr 30 17:35:18 2024 -0400 + + Add question mark + +commit ca1d3678de918a666753af47896d0a0310acb42b +Merge: 0c2ae03 2207221 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 30 17:27:44 2024 -0400 + + Merge pull request #472 from deardurham/combine_batches + + Allow combining of batches to support multiple sources of records (CI… + +commit 0c2ae03a6769525705ca61c67d6dc16c29e9e864 +Author: Rebecca Drabenstott +Date: Thu Apr 25 22:41:26 2024 -0400 + + Increase timeout for web services + + We were seeing timeouts when loading the petition list page for a client who had a large number of petitions + +commit 22072214255a61225e3e08d953d1107e0a98dd28 +Author: George Helman +Date: Sun Apr 28 23:00:19 2024 -0400 + + More dev review changes + +commit a8e2048d5c0831ee72f7fe467469604c0469c3f1 +Author: George Helman +Date: Tue Apr 23 23:44:37 2024 -0400 + + Address review comments + +commit 036164b1861a367bbd1c03cd5211f90f81776bf1 +Author: George Helman +Date: Thu Apr 18 17:52:45 2024 -0400 + + Fix combine batches UT + +commit 43657d8db9b6c1e99ff289d1a2958ac05e5719e5 +Author: George Helman +Date: Sun Apr 14 19:01:58 2024 -0400 + + Make combining batches into a modal + +commit 511184c75569080077886cc9992f92912a7a7632 +Author: George Helman +Date: Tue Apr 2 17:34:38 2024 -0400 + + Allow combining of batches to support multiple sources of records (CIPRS and Portal) + +commit 3814c3601a286aea40e668d4846e24229e38a209 +Author: Rebecca Drabenstott +Date: Sun Feb 25 11:17:44 2024 -0500 + + Update help page + +commit 7fa7cb988654ae861f91652eadcf04e22f5890e7 +Merge: 14464e6 c5fc92e +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sun Feb 18 20:03:35 2024 -0500 + + Merge pull request #462 from deardurham/adult_convictions + + District court offenses were showing up on the superior court petitio… + +commit c5fc92ef50424195906ca0aaa6662e672e54f677 (origin/adult_convictions) +Author: George Helman +Date: Tue Feb 6 19:23:02 2024 -0500 + + District court offenses were showing up on the superior court petitions because the filter condition was using the jurisdiction fo the CIPRS record rather than the jurisdiction of the record. I suspect this is an artifact of the time when we thought a CIPRS record had only one jurisdiction. We now know that it is possible for a CIPRS record to have both in the case of superseding indictments. The convictions petitions should go by the jurisdiction of the offense, rather than the CIPRS record + +commit 14464e6a3e15ca0ce0e6d9a181435457487cb238 +Author: Rebecca Drabenstott +Date: Sun Feb 11 16:23:36 2024 -0500 + + Upgrade xpdfreader from 4.04 to 4.05 + +commit 642cad22492e09e1abefb7eb850c9c02e90e540a +Author: Rebecca Drabenstott +Date: Sat Jan 27 15:22:06 2024 -0500 + + Handle missing dob in record summary + +commit 09e03309e7f11abf2d9ed754cab719344e4323e4 +Merge: 12248aa 2b05c57 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 6 17:41:14 2024 -0500 + + Merge pull request #459 from deardurham/adult_convictions + + Offense should always have a verdict of GU (guilty). + +commit 2b05c57b16764d7a446b97f29aa6cd5073ce1e54 +Author: George Helman +Date: Mon Feb 5 18:39:51 2024 -0500 + + Offense should always have a verdict of GU (guilty). + + Additionally change out the 293, 297, and 298 form templates with new versions from the AOC website: https://www.nccourts.gov/documents/forms?field_form_type_target_id=All&field_language_target_id=All + +commit 12248aab43b130756f5c2d10e48059256eef63fd +Author: Colin Copeland +Date: Tue Jan 23 18:14:07 2024 -0500 + + Update to Python 3.12/Django 4.2 (#455) + +commit 513211f52ef3e2ac758c8acf03938832d2963b33 +Author: Rebecca Drabenstott +Date: Tue Jan 16 18:00:39 2024 -0500 + + Include petitioner's race and sex in import from eCourts Portal + +commit 2c7ad97f94bcc9c8045ca98145e588523b46a6e7 +Author: Colin Copeland +Date: Sun Jan 14 14:47:44 2024 -0500 + + Update versions of GitHub actions (#454) + +commit 5274e7190baa6a9fe2885a37f02345e9f7c9709a +Author: Colin Copeland +Date: Sun Jan 14 13:29:54 2024 -0500 + + Add beautifulsoup4 to base requirements (#453) + +commit 4e26d9b54d14af5cee7f6a3daccb93bf2cc9864a +Author: Colin Copeland +Date: Sun Jan 14 12:51:24 2024 -0500 + + eCourts Portal import proof of concept (#431) + + Co-authored-by: Rob Gries + +commit 0c1db626c91f13856c62b1c27af8bb5e24a1a608 +Merge: 371ebed 6759920 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Thu Jan 4 16:04:03 2024 -0500 + + Merge pull request #451 from deardurham/guilty_to_lesser_no_more + + Dismissing guilty to lesser offenses is no longer allowed + +commit 67599201715949a5e1145871ca9b5aed44200279 (origin/guilty_to_lesser_no_more) +Author: George Helman +Date: Thu Jan 4 01:39:23 2024 -0500 + + Dismissing guilty to lesser offenses is no longer allowed + +commit 371ebeda4ec0ce8d6d88c72cd8e7f28b10c3b1d5 +Merge: b852132 bb5b2cb +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 2 17:41:02 2024 -0500 + + Merge pull request #439 from deardurham/adult_convictions + + Add adult convictions forms + +commit bb5b2cbec49e249a0e1a00142d07d6e1dfc83bb7 +Merge: 115000a b852132 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 2 17:40:30 2024 -0500 + + Merge branch 'master' into adult_convictions + +commit b852132b1b82a54a0ef68ff4c9f8ac1fb55fe992 +Author: Rob Gries +Date: Tue Jan 2 17:37:56 2024 -0500 + + Populate agencies in petition document and fix user field in non client contacts (#449) + +commit 115000a6b554ba1639483e55fa47754a6474530c +Author: George Helman +Date: Mon Jan 1 16:29:11 2024 -0500 + + Fix UTs + +commit 63077633ef107d186e5541f55f62c47b48b5a711 +Author: George Helman +Date: Mon Jan 1 15:14:18 2024 -0500 + + Add the waiting period for adult convictions + +commit d1621bd75900e313782834e314268dca02ae99ca +Author: George Helman +Date: Sat Dec 30 20:56:32 2023 -0500 + + Map the adult conviction forms + +commit e7e3e4993c2f5cc25d86e7c90ad57b9965700fb2 +Author: George Helman +Date: Sat Dec 30 19:59:16 2023 -0500 + + Fix paginator for adult convictions + +commit b2d76b346fc25c31be21aeae92d119bdc3e3cbd8 +Author: George Helman +Date: Wed Oct 25 01:25:21 2023 -0400 + + Adult convictions should be de-selected by default + +commit 41b055da4e943809d8dbe851f75ec96035f27e23 +Author: George Helman +Date: Thu Sep 28 01:17:30 2023 -0400 + + Add adult convictions forms + +commit dcffb6cf15d0b3522ecf4e0bb1424ed1e6d3c497 +Author: Rob Gries +Date: Tue Dec 12 22:15:31 2023 -0500 + + Import/export agencies (#448) + + * Admin import and export agencies + + * Initial working import preview diff + + * Improve submission of spreadsheet multiple times + + * WIP + + * Fix issue change detection and clean up UI + + * Add basic detection of county sheriff agency for autoselection + + * Fix cancel button + + * Fix county sorting and import button styling + +commit e89b15d9f7d44725c44b12f76794d9931c997637 +Author: Rebecca Drabenstott +Date: Fri Nov 17 17:59:05 2023 -0500 + + On record summary, hide offense records that have de novo reviews + +commit c1db7cf89741076118ccdc7ec5a8bfcb9d00fa61 +Author: Rebecca Drabenstott +Date: Tue Nov 7 12:30:50 2023 -0500 + + Upgrade ciprs reader to version with fix for offense-level jurisdiction + +commit dae0d3cdc42cc4d143ea77da6327916bfcf3c550 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Sun Nov 5 13:52:20 2023 -0500 + + Frontend Tests, hooks and utils (#437) + + * install vitest + + * install jsdom + + * add test config object + + * add tests folder + + * errors - updated to use boilerplate vitest code + + * wrote test to test vitest functionality. is this recursive testing? + + * add testTimeout to test config + + * rename tests folder to __tests__ + + * remove extra 'tests' folder + + * basic tests for utils/errors.js + + * create 'util' folder + + * add hasValidationsErrors test + + * use vitest.spy for getErrorList - still fails test + + * attempt to render App inside a div container + + * add testing-library/react-hooks + + * add tests for useKeyPress + + * added testing-library/react-hooks + + * fixed getErrorList 'no error passed' test + + * use vi.fn() to mock functions, passing all current tests + + * add basic vitest skeleton, not functional + + * hook sets state with initial window size + + * reword assertion + + * render hook as result object - not functional yet + + * put render into act() for app.test - not functional + + * Fix App test + + * simulate clicks inside & outside element + + * remove comments + + * import render, waitFor from react testing lib + + * test mock userAgents + + * add test that more closely mocks implementation + + * reword assertion + + * extract isChrome to function, test Mozilla userAgent, vendor + + * add chrome param to setWindowProps + + * add iPhone safari test, rm userAgent only tests + + * update userAgent strings with MDN examples + + * update Chrome userAgent + + * basic test outline - wip + + * move setWindowProps into inner scope + + * attempt to set multiple window properties + + * WIP - initial take on rendering hook + + * check portal.id + + * add first successful debounce test + + * add test where callback not called + + * reword assertion + + * remove test for useBrowserWarning + + * wip - assertions for window properties only + + * mock initial window size with vi.stubGlobal + + * add resize event test + + * action not triggered after hook unmounted + + * action not triggered after hook unmounted + + * remove redundant assertion + + * advance timer, add assertion that checks if callack is called + + * reword test description + + * add _arg to vi.fn() + + * check that callback is called with specific arg + + * wip - using stubGlobal + + * WIP - clean comments, test only Chrome, Mozilla + + * Fix isChrome test + + * npm run format + + * move initial window sizing to beforeEach + + * use outsideElement on hook unmount test + + * remove act(), make final assertions more comprehensive + + * remove redundant assertion + + --------- + + Co-authored-by: Rob Gries + +commit 7097056a6c1ae7d9c8e9e34e7b0a4bfcb3b4f820 +Author: Rob Gries +Date: Mon Oct 23 08:56:42 2023 -0400 + + Fix issue where modal not opening after button click (#445) + +commit 9c5342a2c5239e1982d4474c62d186b510a3e5aa +Author: Rebecca Drabenstott +Date: Sun Oct 8 16:57:38 2023 -0400 + + For record summary, use jurisdiction on offense, not on ciprs record + + A ciprs record may have both district and superior court offenses + +commit cb16d05c202aabc2abe25672e8ae9f0720d7cf9b +Merge: 1d1e297 cf8d50e +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Oct 9 23:14:42 2023 -0400 + + Merge pull request #441 from deardurham/remove_multiple_see_below + + 285 documents should have same file number as base document, add et al + +commit 1d1e297114305c35dc47bb606a89eb38e8ca9baa +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sun Oct 1 01:14:27 2023 -0400 + + Add delete button to app (#428) + + * Add delete button to app + + * Fix UT + + * Use RTK Query for deleting batch + + * npm run format + + --------- + + Co-authored-by: Rob Gries + +commit cf8d50e4736473d34535d4edf6cb184782c2f20d (origin/remove_multiple_see_below) +Author: George Helman +Date: Sat Sep 30 18:24:12 2023 -0400 + + 285 documents should have same file number as base document, add et all if multiple ciprs records + +commit 496525458bb7ad36a8bb104b5499418027c6e55f +Merge: 04b450a 21fec4b +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Sep 12 21:29:14 2023 -0400 + + Merge pull request #435 from deardurham/remove_multiple_see_below + + Petition file no should be the first file no on the petition + +commit 21fec4b79cc13e0f601c0d9277bb8fcea7f75d0e +Author: George Helman +Date: Tue Sep 12 17:34:14 2023 -0400 + + Petition file no should be the first file no on the petition + +commit 04b450ad092e56d77f9e5a1ce9a0721082cd5d50 +Merge: 1006fb0 d4b27ae +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Thu Jun 22 08:59:31 2023 -0400 + + Merge pull request #427 from deardurham/add_retention_policy_to_help_page + + Add retention policy to help page + +commit d4b27ae17b60a08b42807526781d90ded3a15eb8 (origin/add_retention_policy_to_help_page) +Author: George Helman +Date: Sun Jun 18 18:24:33 2023 -0400 + + Add retention policy to help page + +commit 1006fb0a900590b187c3b5aec447f406ee55db94 +Author: Rebecca Drabenstott +Date: Thu Jun 8 09:00:11 2023 -0400 + + In record summary document, change "Law Student" to "Prepared By" (#424) + + This was Jessica's request in May 25 email + +commit 0a55e4a8fc65b997d51ef3df807759e6f2446035 +Author: Rob Gries +Date: Tue Jun 6 18:44:34 2023 -0400 + + Eslint + Prettier cleanup and readme changes (#416) + + * Update dependencies and fix eslint for framer-motion + + * Remove prod build from local docker dev and fix eslint setup by separating prettier + + * Setup prettier + + * Fix prettier ignore + + * Run prettier format + + * Add note that node 18 is min version + + * Add lint + format CLI check + + * Setup node + + * Install deps + +commit 25ec778328592800e708bd3b2203b75a2c17de9e +Merge: 53d55af 1b3785c +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jun 6 17:30:54 2023 -0400 + + Merge pull request #415 from deardurham/multiple_file_no_logic + + Fix logic to determine if multiple ciprs records are being petitioned + +commit 53d55af44c10961c106fd51494050adfaf1c7d29 +Author: Rebecca Drabenstott +Date: Tue Jun 6 07:49:04 2023 -0400 + + Add key to Record Summary document (#420) + + From Jessica's May 31 email + +commit 997a8cb42aa68a5dd29500687e3539c5e894f763 +Author: Rebecca Drabenstott +Date: Mon Jun 5 21:28:51 2023 -0400 + + In Record Summary, note CIPRS file #'s where additional offenses exist (#419) + +commit a8c8d201419c10a6b579a4bc56c3010f2a81f74a +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Mon Jun 5 16:22:23 2023 -0400 + + Add footer to PageBase (#417) + + * add basic footer element, set PageContent min vh + + * add CwD logo to assets + + * add logo, adjust sizing + + * add link to CwD site + + * add 'created by' above logo + + * rename CWD logo file for brevity + + * rename FooterLogo component + + * replace existing logos with generic Logo component + + * rename LogoLink to HeaderLogoLink + + * changed 'created' to 'developed', small logo size adjustment + + * use horizontal logo, adjust footer margin + + * remove min-height calc, reduce footer margin-top + + * use flexbox to position footer at page bottom + + * remove original CWD logo file + + * Revert "remove original CWD logo file" + + This reverts commit 6b884daaaad180bce0d9260fe99cc75f85a2b70d. + + replace DEAR logo + + * remove original CWD logo + + * adjust footer margin + +commit 20f493c3591d8a02fb8448fa7da4a4d37bd9704f +Merge: 9329f74 f08440d +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 30 00:36:17 2023 -0400 + + Merge pull request #414 from deardurham/docker-compose-dismount + + Unmount code directory in docker-compose config + +commit 1b3785c6da8d72e2f7a73767ea48696007c62833 (origin/multiple_file_no_logic) +Author: George Helman +Date: Sat May 27 19:01:37 2023 -0400 + + Fix logic to determine if multiple ciprs records are being petitioned + +commit f08440d96de1764a0e00630447ff2c77c94e37d9 (origin/docker-compose-dismount) +Author: George Helman +Date: Sat May 27 18:30:36 2023 -0400 + + Unmount code directory in docker-compose config + +commit 9329f742679cbeb6b979cafa7b09e915ac01afff +Author: Rob Gries +Date: Fri May 26 16:40:11 2023 -0400 + + Fix CI badge and cleanup mdlint warnings (#413) + + * Fix CI badge and cleanup mdlint warnings + + * Remove markdownlint + +commit a81626a282c6ae53c7bb6651de1d1b6a9b15c0c0 +Author: Rob Gries +Date: Fri May 26 10:35:56 2023 -0400 + + Fix eslint and remove page that auto-merge added in (#411) + + * Fix eslint and remove page that auto-merge added in + + * Remove more old files + +commit 422bea9eb8114d5929bd8f375cfd10fb0a7eff58 +Merge: 262f14c 838f290 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Fri May 26 09:21:25 2023 -0400 + + Merge pull request #396 from deardurham/utils_and_helpers + + Condense utils and helpers into one file + +commit 262f14cd2f30c83b216a72d60d9ed6e39bab70e3 +Merge: 219c8f3 0086250 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Fri May 26 09:21:12 2023 -0400 + + Merge pull request #399 from deardurham/remove_filter_active + + Remove unused and unaccessed filter_active param + +commit 219c8f39ef109f7cedc927e6d917adfd7dc0950a +Author: Rob Gries +Date: Thu May 25 08:53:42 2023 -0400 + + Migrate from CRA to Vite (#402) + + * Fix eslint warnings + + * Vite working locally + + * Fix eslint warnings + + * Fix eslint errors and clean up rules + + * Fix DragNDrop forwardRef + + * Clean up array key warnings + + * Update readme + + * Fix docker build + + * Fix asset directory for deploy + +commit 00862500e2fa7ea477bc1c0f9f306d250f3902af (origin/remove_filter_active) +Author: George Helman +Date: Wed May 24 01:21:21 2023 -0400 + + Add back filter_active param to paginator in case of future use case + +commit 838f2908e8f2e277a638a3f28fb7087f839dbcde (origin/utils_and_helpers) +Author: George Helman +Date: Wed May 24 01:16:08 2023 -0400 + + Move helper tests to test_utils + +commit ae33f95c5aab8e5004fc5d5061d6bdfbfb413f18 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Tue May 23 17:23:46 2023 -0400 + + Extract UsersTable and UsersActions into a feature folder (#405) + + * move UsersAction,UsersTable to ./features/UsersManagement + + * remove UsersPage dir, change file extention to .jsx + + * update UsersPage import path + + * update UsersManagement file extentions to .jsx + + * rm UsersPage dir, changes UsersPage extension to .jsx, move to ./pages + + * fix import paths + +commit c01b5dbd58de4a76ece08bbf98ed36e9260e3972 +Author: Rob Gries +Date: Mon May 22 22:19:32 2023 -0400 + + Compile xpdf from source (#403) + +commit 5d55f029a0065ca1f2a4c39d7dd3a082814b5c09 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Mon May 22 15:17:09 2023 -0400 + + Fix sortable headers on UsersPage (#404) + + * add new props to UsersPage,UsersTable + + * use URLSearchParams to fetch data + + * remove 'ordering' props from UsersPage,UsersTable + + * modify users query to accept queryString + + * add getOrdering to set sort order, rm comments + + * reset default sort order to dsc + + * revert Admin header to be TableCell + +commit 129a0556c981441c16c3be0b51235450da37ad91 +Author: Rebecca Drabenstott +Date: Fri May 19 16:40:42 2023 -0400 + + Add index to offense records in Record Summary document (#401) + +commit d15e142f44eee3b9c9ac6bd0e0ab0b286c64559d +Merge: 12616fd 55ff8a8 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Sun May 14 14:43:48 2023 -0400 + + Merge pull request #400 from deardurham/rename_expunge_record_summary + +commit 55ff8a86d7bc77df87a1203d9ab1d9d600e48e12 +Author: Austin Bagwell +Date: Fri May 12 21:13:13 2023 -0400 + + rename expungable_summry.docx template + +commit 69b6e7bec94a9344bf079f4d313e37f405fe8fad +Author: Austin Bagwell +Date: Fri May 12 20:34:53 2023 -0400 + + rename expungable_summary to records_summary in all files + +commit ce24c51e7147e411a97708b76ad1901ad20749f7 +Author: Austin Bagwell +Date: Fri May 12 16:53:12 2023 -0400 + + rename expungable records to 'records summary' + +commit 12616fd2777bf2127ef1eee2fe3b87c971784081 +Author: Rob Gries +Date: Tue May 9 18:05:27 2023 -0400 + + Add spaces in emailed batch label by using underscore (#397) + + * Allow spaces in emailed ciprs label by using underscore + + * Add instruction for adding spaces to emailed label + + * Add tests for empty/no subject + +commit 55852cfcdd6ab75e600b0731bdef9a3f786bb122 +Merge: 37dd1d5 7eef080 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 9 00:24:45 2023 -0400 + + Merge pull request #398 from deardurham/add_count + + Add count to the OffenseRecord model and addendum 3b descriptions + +commit 55b23b66955131bb1f149b250fac20c73342fa9a +Author: George Helman +Date: Mon May 8 00:19:52 2023 -0400 + + Remove unused and unaccessed filter_active param + +commit 7eef08089bd6bb84050dc1f9fc996f8231d193cb (origin/add_count) +Author: George Helman +Date: Sun May 7 16:23:53 2023 -0400 + + Add count to the OffenseRecord model and addendum 3b descriptions + +commit 37dd1d54fac47e7c39feaa37b4458c4d0778c4ac +Author: Rob Gries +Date: Tue May 2 00:11:35 2023 -0400 + + Pin ciprs_reader version (#395) + + * Pin ciprs_reader version + + * Update ciprs_reader version + +commit a4d7280d1c17125bc3f2d33548b4a62de978d820 +Author: George Helman +Date: Sun Apr 30 12:20:31 2023 -0400 + + Condense utils and helpers into one file + +commit fb282a88bd310d74d74ba78518fec998652a6a7e +Author: Rob Gries +Date: Tue Apr 25 22:21:33 2023 -0500 + + Dashboard page (#379) + + * WIP dashboard page - demo + + * WIP dashboard - final demo + + * Finished New Petition tab + + * Finished UI for existing petitions tab + + * Save attorney for batch + + * Add client contact to batch for document generation + + * Associate client with user and delete client if no related batches + + * Merge all the migrations into one file + + * Fix badges missing from contact filter + + * Remove redundant fields from GeneratePetition serializer + + * add download functionality to SelectDocuments modal + + * WIP validate field for generating documents + + * Final fixes for UI - still need tweaks for guidance content + + * Cleanup - remove parser mode and remove ForeignKey default + + * Fix tests + + * Fix upstream tests + + * Fix tag invalidation for update batch + + * Fix unit test + + * Change name of validation field + + --------- + + Co-authored-by: Austin Bagwell + +commit 1eb9c17024e5992e76d02a9138fde65391bfdda9 +Author: Rebecca Drabenstott +Date: Sat Apr 22 14:41:00 2023 -0400 + + Move the exclusion of SI and WP offenses to the is_visible method + + Need more unit tests for this + add test + +commit f257d9d52099d5ba1dc4ba592c29a5fce01c3e60 +Author: Rebecca Drabenstott +Date: Sat Apr 22 14:55:51 2023 -0400 + + Exclude Waiver of Probable Cause from Summary Document + + + fix typo + + + parameterize test + +commit de510f3713a172033919aad7a42cf4cf03384d75 +Author: Rebecca Drabenstott +Date: Fri Apr 14 21:37:14 2023 -0400 + + Eliminate Prayer for Judgment duplicates in Record Summary + + + test + +commit ef882c112d3ca7f407085b7a5e143e393b81b3df +Merge: 08e630a 04971d9 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Apr 17 01:22:25 2023 -0400 + + Merge pull request #390 from deardurham/debug_remote_failing_test + + Fix failing remote UT + +commit 04971d92973aac8b3eeefdef8a42efe9a2ce2f92 (origin/debug_remote_failing_test) +Author: George Helman +Date: Sun Apr 16 18:21:12 2023 -0400 + + Fix failing remote UT + +commit 08e630acea1e6c25143cab723e922fafc9b5bbc6 +Merge: 0716b6f 594e339 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sat Apr 15 13:58:02 2023 -0400 + + Merge pull request #387 from deardurham/mergemigration + + mm + +commit 594e33981ea9daa7853fb3d3df6049570e5e47c5 +Author: George Helman +Date: Fri Apr 14 00:03:50 2023 -0400 + + mm + +commit 0716b6f4ad00f0780a552ebdc6dd9a826b9bb57b +Merge: fc664a0 9688b3f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Thu Apr 13 22:09:49 2023 -0400 + + Merge pull request #371 from deardurham/checkmark_3b + + Checkmark 3b + +commit fc664a0214c1a980741740f963469875f7b1934b +Author: Colin Copeland +Date: Tue Apr 11 18:34:29 2023 -0400 + + test commit + +commit 833fa8fac35e251f5bf7ba8f0d442540ef1d8c95 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Tue Apr 11 17:43:53 2023 -0400 + + hide Advice Letter button from UI (#385) + + * hide Advice Letter button from UI + + * stop button from rendering + + Stopping the render entirely instead of just hiding with CSS + + Co-authored-by: Rob Gries + + * remove unnecessary import and CSS + + * comment code for advice button + + The linter did not like the previous commit - commenting out entirely. + + --------- + + Co-authored-by: Rob Gries + +commit b22b10485b59a4a39a9879b6e871d0d6e672584d +Author: Rebecca Drabenstott +Date: Sun Apr 9 11:44:18 2023 -0400 + + Format dates in Record Summary document so the year is at the end + +commit 9688b3f38cb7de4c1a724db67b6692cbef6b701e +Author: George Helman +Date: Sun Apr 9 20:23:55 2023 -0400 + + Address code review requests and add more tests + +commit bf77ab59fea29f2fadc5adb60054c95fe68f389b +Author: Rebecca Drabenstott +Date: Sat Apr 8 12:57:42 2023 -0400 + + Convert is_visible and disposition to properties on offense records + +commit 0f72c1e80f6fcc48aa51f1bffcf15f19454f00e3 +Author: Rebecca Drabenstott +Date: Sun Apr 2 16:19:37 2023 -0400 + + Calculate and save offense record disposition and visibility + + Disposition will be verdict if it exists. Disposition will be Guilty to Lesser or Responsible to Lesser when applicable. + +commit dc6a1fb26e6df12f2bbfb820aac0fb08c92f37a1 +Author: George Helman +Date: Mon Mar 20 22:45:57 2023 -0400 + + Add checkmark 3b and addendum form logic + +commit 87b4c56feceb34cf69f38d621b091f552829993d +Author: Rebecca Drabenstott +Date: Wed Mar 15 21:19:37 2023 -0400 + + Handle duplicate offenses and GTL in Expungable Record Summary (#372) + + Handle duplicate offenses and GTL in Expungable Record Summary + +commit 9359a47dc842e9d60347c3130c2bce08f499ad04 +Author: Rebecca Drabenstott +Date: Fri Mar 3 20:46:29 2023 -0500 + + Skip duplicate CIPRS records in batch + +commit 4ef1139dc57fdb170c047fc82d193087329b0f9d +Author: Rebecca Drabenstott +Date: Mon Mar 13 17:56:34 2023 -0400 + + Fix typo in disposition code for DISPOSED BY JUDGE (from GU to JU) + + Also remove disposition code for JUDGE which is also JU. JUDGE appears not to be used, but if we discover later that it is, we can ask if it is okay if they both have code JU or if one should be changed. + +commit 615b0db823553114684490ba9013d4e1a0144f65 +Author: Rebecca Drabenstott +Date: Tue Feb 21 17:18:41 2023 -0500 + + Improve log message when multiple birthdates in batch + +commit 0bfebfa28bb7a777181634debece93266f6f7333 +Author: Rebecca Drabenstott +Date: Fri Feb 17 17:29:43 2023 -0500 + + Allow CIPRS records to be searched by file_no in Django admin + +commit 048072c9622bfe8374202b7fc065563980396b0c +Author: Rebecca Drabenstott +Date: Fri Feb 17 17:28:12 2023 -0500 + + Guard against NPE if there are no birthdates in batch + +commit c3413e6b11d7f91abf40850fee17394ea5bc36d7 +Author: Rebecca Drabenstott +Date: Tue Feb 14 17:28:09 2023 -0500 + + Fix typo in comment + +commit 3124d1c2d1740f81b6d02a821de74c90277038fc +Author: Rebecca Drabenstott +Date: Thu Feb 16 09:45:55 2023 -0500 + + Sort offenses chronologically on petition list page (#360) + +commit 17888c7316f493196134284dd4546b4c6ce70b78 +Author: Rebecca Drabenstott +Date: Wed Feb 15 16:24:07 2023 -0500 + + Add capability to generate Expungable Record Summary document (#361) + +commit d204a5565e72cd9058b63f41488bfcead15eb743 +Merge: 275c791 e488382 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Feb 6 17:28:38 2023 -0500 + + Merge pull request #353 from deardurham/devcontainers + + Use containers.dev Development Container + +commit 275c7910bc903fb15c989580ee1fc51bcdd93d65 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Sun Feb 5 22:27:52 2023 -0500 + + Attorney address ternary (#359) + + * added notes.txt to gitignore + + * removed notes.txt from .gitignore + + * add ternary to AddressInput + +commit a00449fce8cbf40e6565961891e431bb7cbbfaf2 +Author: Austin <113562625+austin-bagwell@users.noreply.github.com> +Date: Tue Jan 31 19:46:47 2023 -0500 + + Fix attorney address issue #345 (#356) + + * added notes.txt to gitignore + + * removed notes.txt from .gitignore + + * correct zipcode spelling + + * pass stateAsObject into Address/Attorney inputs + + * only modifying stateObj in AddressInput + + * remove ternary + +commit 55088c530bdb2f26e0397caf0aaad5985ed79160 +Merge: 954c618 318874a +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 17 16:49:34 2023 -0500 + + Merge pull request #352 from deardurham/2023_new_petitions + + Add new 2023 AOC petitions + +commit e48838216c575cccef5f7b00752e96a2e3d2daa2 +Author: Colin Copeland +Date: Mon Jan 16 21:16:44 2023 +0000 + + support Mac M1/arm + +commit 83e7655166f62a8ce6047f28cf9df605e18fcfd8 +Author: Colin Copeland +Date: Mon Jan 16 20:45:30 2023 +0000 + + install Remote Development extension pack + +commit a0c7c77087b166c9f21fb52c25583e36f8fc5922 +Author: Colin Copeland +Date: Mon Jan 16 20:35:26 2023 +0000 + + add django debugger + +commit 42007604236f82567274168d97072dfa411ca66a +Author: Colin Copeland +Date: Mon Jan 16 20:32:31 2023 +0000 + + match postgres version; add react tools + +commit c00944593c91d36810e08344a9f51fae9e894896 +Author: Colin Copeland +Date: Mon Jan 16 20:32:08 2023 +0000 + + install pdftotext + +commit a5b33961cfa2dea92adfac7ebc572a177ab7257d +Author: Colin Copeland +Date: Mon Jan 16 19:54:27 2023 +0000 + + first pass at containers.dev support + +commit 954c618428779e97d854ba1954d2adfc5dd09258 +Author: Rebecca Drabenstott +Date: Sun Jan 15 14:32:58 2023 -0500 + + Remove __str__ from PrintableModelMixin (#351) + + The Django Admin UI uses __str__ extensively, so it is better to revert to the less verbose __str__ implementations + +commit 318874abcc4073cdcf952ab494c6c4f6ad3c1e00 +Author: George Helman +Date: Sat Jan 14 15:01:20 2023 -0500 + + Add new 2023 AOC petitions + +commit cd4d69bd32e3fa6cd912c9743c78d77b81fe6a98 +Merge: 8e30f9f 1ebf3a0 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 3 18:30:03 2023 -0500 + + Merge pull request #350 from deardurham/dependabot/npm_and_yarn/json5-1.0.2 + + Bump json5 from 1.0.1 to 1.0.2 + +commit 8e30f9f8108df00fdee9f3fb1c27f731749e2026 +Author: Colin Copeland +Date: Tue Jan 3 18:25:38 2023 -0500 + + trigger deploy + +commit 1ebf3a0fe63a237de257ca6975ea821a612343be +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jan 3 23:21:56 2023 +0000 + + Bump json5 from 1.0.1 to 1.0.2 + + Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. + - [Release notes](https://github.com/json5/json5/releases) + - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) + - [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2) + + --- + updated-dependencies: + - dependency-name: json5 + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 8db7a546f10b694d15d0f4e6fb689f9aee9ed0d8 +Merge: a961ea4 cd35d68 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 3 18:21:21 2023 -0500 + + Merge pull request #338 from deardurham/client_letter + + Client letter + +commit cd35d68e31a6d8713a0af4c7417d33140186c25f +Author: George Helman +Date: Tue Jan 3 18:19:55 2023 -0500 + + Fix UTs + +commit 5a6ce31a0fcaa60c707d982a7cdb683890273fda +Author: George Helman +Date: Tue Jan 3 18:13:55 2023 -0500 + + Change directory of generated advice letter to tempdir + +commit 923a719d5d201a70e6e8ff981705e8bab4f22b21 +Author: George Helman +Date: Tue Jan 3 18:07:55 2023 -0500 + + Dev review changes + +commit d8eb0ca0c7efdecdd2adf28e09bb7755a753f287 +Author: George Helman +Date: Tue Jan 3 17:58:42 2023 -0500 + + Merge migrations + +commit 47705fdcda255c0e27ca926fb7a2d4a55f167fb8 +Author: George Helman +Date: Tue Jan 3 17:37:20 2023 -0500 + + Advice letter DEAR feedback + +commit 1bd704a310a2ed21d2892e82bf2875ba4b0957bc +Author: George Helman +Date: Tue Nov 29 21:34:37 2022 -0500 + + Generate advice letter + +commit a961ea43839c49f06adc4cc8536c33459b5ad711 +Author: Colin Copeland +Date: Mon Jan 2 10:12:25 2023 -0500 + + Create My Inbox REST endpoint (#327) + + * first pass at email batch association + + * add webhook tests + + * content-id can be blank + + * support SENDGRID_ALLOWED_SENDERS + + * cleanup test comments + + * organize S3 files by env name + + * add my inbox api view + + * add automatic_delete_date + + * add my inbox tests + + * fix test name + + * remove CIPRS_SAVE_PDF + +commit 34c034c39f0e4a0646ce8f55e88d1e3275979074 +Author: Rebecca Drabenstott +Date: Tue Dec 20 19:12:24 2022 -0500 + + Flesh out str and repr implementations for models (#349) + + Co-authored-by: Rebecca Drabenstott + +commit 21308dfb7be525cbb8d8ba988a992e81cf133e88 +Author: Rebecca Drabenstott +Date: Tue Dec 20 18:19:56 2022 -0500 + + Add unit tests for generated petition stats like age, race, sex, etc (#347) + + Also add PyCharm IDE files to .gitignore + +commit d3f85b8358c4200212ab82c2a335b3661245f4c8 +Author: Rebecca Drabenstott +Date: Tue Dec 20 18:12:39 2022 -0500 + + Remove non-docker instructions from README & reorg just slightly (#348) + + Co-authored-by: Rebecca Drabenstott + +commit 948ded090aafde4849716ca5665ddd8464d3be9c +Author: Rob Gries +Date: Sun Dec 11 22:58:08 2022 -0500 + + Update README.md (#342) + +commit 170c461382217deeb25908977d3ecfbcea2ab693 +Author: Rob Gries +Date: Mon Dec 5 00:54:13 2022 -0500 + + Fix combined PDFs missing data when viewed in Kofax and Acrobat (#344) + + * WIP fix combined pdfs + + * Clean up code and extract to separate function + +commit a467d63b4fd906e441ae311db55a0c380d44c7c4 +Author: Rebecca Drabenstott +Date: Sun Nov 27 17:31:04 2022 -0500 + + Update readme (#343) + + * Update readme + + * Include code review suggestions + + * Add backticks around directory name + + Co-authored-by: Rebecca Drabenstott + +commit 1951869337a9e258b4e6374b64346ea9353e5d9a +Author: Rob Gries +Date: Thu Nov 24 22:06:57 2022 -0500 + + Fix incorrect type for errors prop (#339) + +commit 2c8ab6e97feaf799d7bf3d1b3b0d5f8bfaddc42e +Author: Rob Gries +Date: Thu Nov 17 21:24:52 2022 -0500 + + Fix issue where base page record size is wrong for 293 (#337) + + * Fix issue where base page record size is wrong for 293 + + * Default page size test + +commit af454f99f17e57067d9287395455d3545476d780 +Author: Rob Gries +Date: Sun Nov 13 21:13:47 2022 -0500 + + Re-work generation page to download on click and use autocomplete for attorney (#330) + + * Quick local docker fix and move select agency modal to different component + + * Remove old AgencyAutocomplete + + * WIP download all documents by default + + * WIP reworked generation page UI/UX + + * Add total documents to button + + * Fix pdf concatentation + + * Cleanup code and convert attorney selection into autocomplete + + * Cleanup + + * Fix docker eslint issue by removing comment and adding rule to .eslintrc.json instead + + * Add deploy image build test to github actions + +commit b4ffd881515c107731f5546a935f12fbe0c3ba18 +Author: Colin Copeland +Date: Tue Aug 30 18:51:26 2022 -0400 + + make content id optional + +commit 6905850f7feee5e7c872a8d1745c81752dd08d9d +Author: Colin Copeland +Date: Tue Aug 30 18:27:08 2022 -0400 + + Support Sendgrid Parse Webhook (#305) + + * first pass at multi-stage dev container + + * test prod Dockerfile + + * mount volumes for local dev + + * don't use editable install + + * remove mailhog; fix celery container + + * remove old compose files + + * add TOC; add docker-compose.override.yml section + + * remove failing jsx comment? + + * add sendgrid app stub + + * add back urls + + * save emails and attachments + + * add basic tests + + * clean up imports + + * hook into ETL + + * allow text to be blank + + * update sendgrid appconfig + +commit e66e203680808d6654f493a6fca4062f8c787e04 +Author: Colin Copeland +Date: Tue Aug 30 18:16:08 2022 -0400 + + fix postdeploy.sh name + +commit bb93f0299c3dc7ef8306936da71b18ac49baac47 +Author: Colin Copeland +Date: Tue Aug 30 18:15:24 2022 -0400 + + copy in post-deploy.sh + +commit bec45aee45dd0adc921bb74110f8e69d015b71be +Author: Colin Copeland +Date: Tue Aug 30 18:04:03 2022 -0400 + + Use multi-stage build for Django dev environment (#303) + + * first pass at multi-stage dev container + + * test prod Dockerfile + + * mount volumes for local dev + + * don't use editable install + + * remove mailhog; fix celery container + + * remove old compose files + + * add TOC; add docker-compose.override.yml section + + * remove failing jsx comment? + + * fix ciprs-reader git repo URI + +commit 5f2bce75d5efc22761ffa07de0aaa076777aa3dd +Merge: 1aa3b16 91c9008 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sun Aug 21 15:38:39 2022 -0400 + + Merge pull request #309 from deardurham/agency_handling + + Bring agencies into petition document generation process + +commit 91c9008029f53b3adbbc43b619fc6675dce5fffd +Author: George Helman +Date: Sun Aug 21 15:36:33 2022 -0400 + + Agency handling final changes post merge + +commit b630932ba2aca6238196d3fa483a3de889ef0c0a +Author: George Helman +Date: Sat Jul 30 17:47:53 2022 -0400 + + Agency handling dev review changes + +commit c81ac2e6f1372565d418f07f4b971aa9168595a3 +Author: George Helman +Date: Mon Jul 4 12:07:35 2022 -0400 + + Bring agencies into petition document generation process + +commit 1aa3b16cc1e03c270aa2c34ba15240227d705075 +Author: Rob Gries +Date: Tue Jul 19 19:45:04 2022 -0400 + + Add agencies page and re-work generalize the concept of management pages (#311) + + * Fix frontend docker nm issues and ciprs_reader repo + + * Misc cleanup + + * Update instructions on generate page + + * Convert recalculate_petition and petition endpoints to RTK Query + + * eslint warning cleanup + + * Add form name to disbled tooltip message + + * Move OffenseTable components to its own directory + + * Agencies page wip + + * WIP + + * Frontend still WIP but closer + + * Re-authenticate if post/put request is missing auth header + + * Don't close CreateAgency modal on Escape key + + * Add chevron to change page and fix tailwind colors + + * Fix issue where retry request doesn't match original + + * Add agency name search + + * WIP add autocomplete filter inputs + + * Modify badge color + + * Get new autocomplete input working with okay css + + * Replace autocomplete in generate petition modal + + * Remove unimplemented code + + * Fix tests + +commit 5af07588dff93a7302db1c4175954210bb35f6d8 +Author: Colin Copeland +Date: Thu Jul 7 16:27:45 2022 -0400 + + Fix Docker build failure (#314) + + * update django-storages + + * set blank defaults during collectstatic + +commit 07f7d03402869c02b032bc6b2b56f5c765a384bc +Author: Colin Copeland +Date: Thu Jul 7 16:04:24 2022 -0400 + + Improved debugging & fix error with missing offense date (#312) + + * improve admin and model string reprs + + * add more logging output + + * don't die if no offense_date + + * add TestOffenseRecordSerializer + +commit 3f3b72d18c5d361b51e57d5a263ff29f40c66b07 +Author: Colin Copeland +Date: Thu Jul 7 09:47:02 2022 -0400 + + use dash in csrf header name (#310) + +commit 5b55c59b62f9969a3bcc341ca599c9c89a88b449 +Merge: ff4691c a3a3b72 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Jul 4 12:11:07 2022 -0400 + + Merge pull request #306 from deardurham/django_upgrade + + Upgrade Django to 3.2 + +commit ff4691c9f9cee5257dc59e52d13a26a050485c96 (origin/master-temp) +Merge: f3b4316 05855d0 +Author: Colin Copeland +Date: Tue Jun 21 18:18:26 2022 -0400 + + Merge branch 'master' of https://git.heroku.com/dear-petition + +commit a3a3b72bfa267f12c4b1d2ba9de591cf16454299 (origin/django_upgrade) +Author: George Helman +Date: Sun Jun 12 11:16:31 2022 -0400 + + Upgrade to Django 3.2 + +commit f3b4316a98079c5cd794a5d6d4ad20bd4e4ffa5c +Merge: 6624b76 c772577 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 24 18:30:26 2022 -0400 + + Merge pull request #290 from deardurham/offense_record_selector_bugfix + + Create m2m model for petitions and offense records to correctly track active records + +commit c772577b86308e596b1a7d75439bda7285a375b9 +Author: George Helman +Date: Tue May 24 18:24:56 2022 -0400 + + Add back incorrectly removed file + +commit 6624b76ef3be582e1239178362e19d0ed047f631 +Merge: 72993da d0921ee +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 24 17:57:16 2022 -0400 + + Merge pull request #296 from deardurham/dependabot/pip/django-2.2.28 + + Bump django from 2.2.27 to 2.2.28 + +commit 72993da7119966b3b849dfaa9ac2a48ce721b0c7 +Merge: a727385 1cba6a3 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 24 17:55:34 2022 -0400 + + Merge pull request #300 from deardurham/dependabot/npm_and_yarn/ejs-3.1.8 + + Bump ejs from 3.1.6 to 3.1.8 + +commit 1cba6a309a72f5650b371aa3cbefde8f499de698 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 23 04:05:58 2022 +0000 + + Bump ejs from 3.1.6 to 3.1.8 + + Bumps [ejs](https://github.com/mde/ejs) from 3.1.6 to 3.1.8. + - [Release notes](https://github.com/mde/ejs/releases) + - [Changelog](https://github.com/mde/ejs/blob/main/CHANGELOG.md) + - [Commits](https://github.com/mde/ejs/compare/v3.1.6...v3.1.8) + + --- + updated-dependencies: + - dependency-name: ejs + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit a727385fa80271df446a76c4ef4c75c3244689eb +Merge: 30ac8a6 6d387e6 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon May 23 00:05:00 2022 -0400 + + Merge pull request #289 from deardurham/dependabot/pip/pillow-9.0.1 + + Bump pillow from 9.0.0 to 9.0.1 + +commit 05855d0ece90a73cd888075c09b1c338c5afed6f +Author: Rob Gries +Date: Sat May 21 11:14:25 2022 -0400 + + Trigger heroku build for multiline fix + +commit 1f214074976fe7703fb50cda940ba76aca1f8be0 +Author: George Helman +Date: Sun May 15 01:59:08 2022 -0400 + + Fix UTs + +commit f572613fbf8e8577f1fdb11122af82ea69140c24 +Author: George Helman +Date: Sun Mar 20 14:20:31 2022 -0400 + + Separate 2 petition definitions in data model: there is now 'petitions' and 'petition documents' + +commit 30ac8a6291b42ee303623cf35a49d473a11de3ac +Author: Rob Gries +Date: Tue May 3 23:54:55 2022 -0400 + + Upgrade to CRA 5, add tailwind, and add modal for viewing + modifying offenses (#291) + + * Working parser v1 + + * Use wget instead of curl for docker prod file + + * Add xz-utils + + * Add c compiler + + * Add all remaining packages + + * Upgrade to CRA 5 + + * Use onChange for checkbox instead of onClick for row + + * Upgrade eslint and fix errors + + * Fix warnings except for console logs + + * Add tailwind + + * Cleanup login css + + * Add classnames and improve users page accessibility + + * More css improvements + + * Tweak underline width + + * Add more spacing in login page + + * Add modal for viewing and updating offenses + + * Handle invalid dob and add header for flag column + + * Change icon for warning + + * Make dev and prod dockerfile inherit node version from base + + * Fix dockerfiles + + * Trigger redeploy + + * Fix dockerfile + + * Fix various docker issues + + * Use new pdftotext version name that ciprs reader expects + + * Update react-scripts + + * Remove extends thing + + * Try changing something that shouldn't fix the thing + + * Fix staticfiles + + * Finally fix tailwind + + * Fix local django build + + * Add file number to offense list drop down info + + Co-authored-by: George Helman + +commit d0921eed4e7abb96eab9a5ed69a99f2ff494d5d9 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Apr 22 22:07:35 2022 +0000 + + Bump django from 2.2.27 to 2.2.28 + + Bumps [django](https://github.com/django/django) from 2.2.27 to 2.2.28. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.27...2.2.28) + + --- + updated-dependencies: + - dependency-name: django + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 6d387e682369e7fb289ae6aef26f4f0bf4180c9a +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Mar 11 23:56:11 2022 +0000 + + Bump pillow from 9.0.0 to 9.0.1 + + Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.0.0 to 9.0.1. + - [Release notes](https://github.com/python-pillow/Pillow/releases) + - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) + - [Commits](https://github.com/python-pillow/Pillow/compare/9.0.0...9.0.1) + + --- + updated-dependencies: + - dependency-name: pillow + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 8501b99d5f7fb9a786df073cf57fa0873e1ee94c +Author: Colin Copeland +Date: Tue Mar 1 19:08:31 2022 -0500 + + trigger deploy + +commit 5cba90a7bd0a64888c13f5620d4ed6cbb2272ced +Author: Rob Gries +Date: Tue Mar 1 18:32:09 2022 -0500 + + Official multiline fix (#282) + + * Use updated npm package-lock.json + + * Fix local docker build + + * Working parser v1 + + * Fix app.json + + * Make qatester password secret + + * Use wget instead of curl for docker prod file + + * Add xz-utils + + * Add c compiler + + * Add all remaining packages + + * Working serializer for parser mode 2 + + * Add tooltip and pretty up the UI + + * CSS tweaks + + * Fix tests + +commit b32c00bf5a55ab981eb8aea8b666d456adbf91c1 +Author: Rob Gries +Date: Wed Feb 23 21:13:50 2022 -0500 + + Use correct poppler pdftotext for parser mode V1 (#281) + + * Use updated npm package-lock.json + + * Fix local docker build + + * Working parser v1 + + * Fix app.json + + * Make qatester password secret + + * Use wget instead of curl for docker prod file + + * Add xz-utils + + * Add c compiler + + * Add all remaining packages + +commit 5f4b7faa5385fa7047891e87e54c42d7a192fae4 +Merge: efaff96 f355397 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 15 18:13:14 2022 -0500 + + Merge pull request #272 from deardurham/dependabot/npm_and_yarn/nanoid-3.2.0 + + Bump nanoid from 3.1.23 to 3.2.0 + +commit efaff96a520e0f748344b115df0b0daf09810367 +Author: Colin Copeland +Date: Tue Feb 15 18:06:50 2022 -0500 + + Create production Dockerfile (#229) + + * first pass at production dockerfile + + * add invoke + + * wip running image + + * install latest pdftotext + + * all override settings for local builds + + * re-pin ciprs-reader + + * switch to container stack + + * add heroku.yml + + * remove review scripts to try to get around "Error parsing postdeploy output" + + * add bootstrap-review-app cmd + + * add curl + + * remove gunicorn setting + + * upgrade psycopg2 and sentry-sdk + + * remove compose comments + + * celery in docker + + * use REDIS_URL + + * also set CELERY_RESULT_BACKEND + +commit d62e009f5cef14f1e67bce28b30417e45bcbd54e +Merge: f25590b 38c8cc7 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 15 18:04:27 2022 -0500 + + Merge pull request #277 from deardurham/dependabot/pip/django-2.2.27 + + Bump django from 2.2.24 to 2.2.27 + +commit f25590b46e06666e1463e03a76f983dacf62afd4 +Merge: fdb6d1e 03c70f7 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 15 18:04:03 2022 -0500 + + Merge pull request #279 from deardurham/dependabot/npm_and_yarn/follow-redirects-1.14.8 + + Bump follow-redirects from 1.14.7 to 1.14.8 + +commit fdb6d1e6d66307fcdca09522c02e98ee13fbea6e +Merge: 70eaaaa 3a04928 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 15 18:03:43 2022 -0500 + + Merge pull request #278 from deardurham/dependabot/npm_and_yarn/ajv-6.12.6 + + Bump ajv from 6.12.0 to 6.12.6 + +commit 70eaaaa081f2386191933f139e14198167324730 +Merge: 60e69a6 36c1041 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 15 17:53:31 2022 -0500 + + Merge pull request #273 from deardurham/additional_user_metrics + + Add age, county, jurisdiction, race, sex, and county to tracked metrics + +commit 03c70f75ba49287a7c30a2ac89f6a345a35d7aa6 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Feb 15 02:02:41 2022 +0000 + + Bump follow-redirects from 1.14.7 to 1.14.8 + + Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.8. + - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) + - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.14.8) + + --- + updated-dependencies: + - dependency-name: follow-redirects + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 3a049289cf96256096ad8c5f17186f9ff5661e71 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 14 01:39:07 2022 +0000 + + Bump ajv from 6.12.0 to 6.12.6 + + Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. + - [Release notes](https://github.com/ajv-validator/ajv/releases) + - [Commits](https://github.com/ajv-validator/ajv/compare/v6.12.0...v6.12.6) + + --- + updated-dependencies: + - dependency-name: ajv + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 38c8cc7166922b3a366f5a60ab66d0a9d5043c14 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Feb 10 09:46:47 2022 +0000 + + Bump django from 2.2.24 to 2.2.27 + + Bumps [django](https://github.com/django/django) from 2.2.24 to 2.2.27. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.24...2.2.27) + + --- + updated-dependencies: + - dependency-name: django + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 36c1041eee0567dc630602a44bed33586b290fc4 (origin/additional_user_metrics) +Author: George Helman +Date: Sat Feb 5 03:05:09 2022 -0500 + + Dev review changes + +commit 60e69a673fb0bfbb655d0e36145c704268529823 +Author: Rob Gries +Date: Thu Feb 3 21:13:41 2022 -0500 + + Fixes and tweaks to users page (#266) + + * Fix key issues in help page + + * Fix conflict of button color theme with type attribute + + * Fix ref issue in autosuggest + + * Fix input ref in users page and convert login to rhf + + * Fix css + + * Add last login field to users table + + * Add sorting by clicking on header + + * Swap sort icons + + * Implement rudimentary search + + * Tweak readme + + * Add debounce search + + * Remove unnecessary ref from dep array + + * Show pages using ugly offset function + + * Fix issue with column width + + * Fix inexplicable log out after failed network request + +commit 4c7e0e430ed804cd65ad981f12bf2dd9d031c84d +Author: George Helman +Date: Tue Feb 1 18:47:03 2022 -0500 + + Dev review changes + +commit 4bb7f07460512b08d448c1cf5508a2d7a83dca5e +Merge: a4d5d4e 5505e6f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Feb 1 18:43:33 2022 -0500 + + Merge pull request #274 from deardurham/generated_petition_download_as_csv + + #264 Allow generated petitions to be downloaded as CSV + +commit 5505e6f7243bf7a8c09ba14bfca1c6c95799f4ec (origin/generated_petition_download_as_csv) +Author: George Helman +Date: Tue Feb 1 18:42:54 2022 -0500 + + Dev review changes + +commit fe34319149e47fe12f857f24fc7f304c05ed5f60 +Author: George Helman +Date: Sat Jan 29 22:47:25 2022 -0500 + + #264 Allow generated petitions to be downloaded as CSV + +commit 9d754f98d86a9d17c649483c5efef6070d865efd +Author: George Helman +Date: Sat Jan 22 20:17:47 2022 -0500 + + Add age, county, jurisdiction, race, sex, and county to tracked metrics + +commit f355397527bb7ac6d8dbdaebb7627c929be74a69 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Sat Jan 22 10:21:09 2022 +0000 + + Bump nanoid from 3.1.23 to 3.2.0 + + Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.23 to 3.2.0. + - [Release notes](https://github.com/ai/nanoid/releases) + - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md) + - [Commits](https://github.com/ai/nanoid/compare/3.1.23...3.2.0) + + --- + updated-dependencies: + - dependency-name: nanoid + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit a4d5d4e3005b0ef72356f621f3f78522e893b254 +Author: Colin Copeland +Date: Wed Jan 19 19:07:07 2022 -0500 + + revert to celery 4x (#267) + +commit a6ae710c52ee09f86cde326d2775ff3725db5095 +Merge: f364741 3ad111b +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 19 17:45:02 2022 -0500 + + Merge pull request #263 from deardurham/dependabot/npm_and_yarn/follow-redirects-1.14.7 + + Bump follow-redirects from 1.11.0 to 1.14.7 + +commit f3647413b647048e31cc8bafe924ef8d47778cc0 +Merge: cea0dcc de52bc3 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 19 17:44:40 2022 -0500 + + Merge pull request #262 from deardurham/dependabot/pip/pillow-9.0.0 + + Bump pillow from 8.3.2 to 9.0.0 + +commit cea0dccc02f09ed30a5887ccfc0773677ce550f5 +Merge: 7af5a44 434436a +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 19 17:44:16 2022 -0500 + + Merge pull request #261 from deardurham/fix_dependence_conflict + + Fix package dependency conflict + +commit 3ad111b1341112625f660b19a3fdf6ab31066cdf +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Sun Jan 16 00:30:21 2022 +0000 + + Bump follow-redirects from 1.11.0 to 1.14.7 + + Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.11.0 to 1.14.7. + - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) + - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.11.0...v1.14.7) + + --- + updated-dependencies: + - dependency-name: follow-redirects + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit de52bc32fb16bea2365b85295caa8e47279a915d +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jan 13 01:30:12 2022 +0000 + + Bump pillow from 8.3.2 to 9.0.0 + + Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.3.2 to 9.0.0. + - [Release notes](https://github.com/python-pillow/Pillow/releases) + - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) + - [Commits](https://github.com/python-pillow/Pillow/compare/8.3.2...9.0.0) + + --- + updated-dependencies: + - dependency-name: pillow + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 434436a0a2242faa88d9f19b15c12df9d3f8d2d8 (origin/fix_dependence_conflict) +Author: George Helman +Date: Fri Jan 7 01:23:25 2022 -0500 + + Fix package dependency conflict + +commit 7af5a44ed285cf4432e0f49ac9148c7a45452ce1 +Merge: dc14d06 1b1745b +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Fri Jan 7 00:38:29 2022 -0500 + + Merge pull request #260 from deardurham/dependabot/pip/celery-5.2.2 + + Bump celery from 4.4.7 to 5.2.2 + +commit 1b1745b812b61f3822780bc0f967d16711a6876e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jan 6 22:35:10 2022 +0000 + + Bump celery from 4.4.7 to 5.2.2 + + Bumps [celery](https://github.com/celery/celery) from 4.4.7 to 5.2.2. + - [Release notes](https://github.com/celery/celery/releases) + - [Changelog](https://github.com/celery/celery/blob/master/Changelog.rst) + - [Commits](https://github.com/celery/celery/compare/v4.4.7...v5.2.2) + + --- + updated-dependencies: + - dependency-name: celery + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit dc14d068b4e0b8de944c4cae7917520c543e66ee +Merge: a493a86 399e9ec +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:14:18 2022 -0500 + + Merge pull request #250 from deardurham/dependabot/npm_and_yarn/axios-0.21.2 + + Bump axios from 0.21.1 to 0.21.2 + +commit a493a8637d3352b57e1177a75d0ee2664de38722 +Merge: 4061e2f 6358e7a +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:14:01 2022 -0500 + + Merge pull request #257 from deardurham/dependabot/npm_and_yarn/hosted-git-info-2.8.9 + + Bump hosted-git-info from 2.8.8 to 2.8.9 + +commit 4061e2f6f58833f4d9eba01c217339933aeb85f6 +Merge: 821a2b9 ef9b6e2 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:13:45 2022 -0500 + + Merge pull request #258 from deardurham/dependabot/npm_and_yarn/url-parse-1.5.4 + + Bump url-parse from 1.5.1 to 1.5.4 + +commit 821a2b94f08c88c8502846328a1959ff5e771cab +Merge: f8454b6 f4d8fe4 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:13:30 2022 -0500 + + Merge pull request #259 from deardurham/dependabot/npm_and_yarn/lodash-4.17.21 + + Bump lodash from 4.17.15 to 4.17.21 + +commit f4d8fe4f9c651489a0640e3785f82e8778df011b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jan 5 22:13:00 2022 +0000 + + Bump lodash from 4.17.15 to 4.17.21 + + Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. + - [Release notes](https://github.com/lodash/lodash/releases) + - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.21) + + --- + updated-dependencies: + - dependency-name: lodash + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit ef9b6e252a3b61294c6712b6d356d32ccec57a38 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jan 5 22:12:59 2022 +0000 + + Bump url-parse from 1.5.1 to 1.5.4 + + Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.1 to 1.5.4. + - [Release notes](https://github.com/unshiftio/url-parse/releases) + - [Commits](https://github.com/unshiftio/url-parse/compare/1.5.1...1.5.4) + + --- + updated-dependencies: + - dependency-name: url-parse + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 6358e7a8578eb8ce5478e7da1475eb2670ba5215 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jan 5 22:12:48 2022 +0000 + + Bump hosted-git-info from 2.8.8 to 2.8.9 + + Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. + - [Release notes](https://github.com/npm/hosted-git-info/releases) + - [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md) + - [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9) + + --- + updated-dependencies: + - dependency-name: hosted-git-info + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit f8454b6d7b046f74eaad2273e05efd0343cd8008 +Merge: 473fd11 837eee3 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:12:23 2022 -0500 + + Merge pull request #251 from deardurham/dependabot/npm_and_yarn/path-parse-1.0.7 + + Bump path-parse from 1.0.6 to 1.0.7 + +commit 473fd11a430a68aa5ff10d325a6fb4fddbd68dc9 +Merge: 0396548 393e843 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:11:46 2022 -0500 + + Merge pull request #252 from deardurham/dependabot/npm_and_yarn/tmpl-1.0.5 + + Bump tmpl from 1.0.4 to 1.0.5 + +commit 03965484e6b507d9576a16fc3e0ef3d79f58138d +Merge: 57a05a8 afe2f91 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Wed Jan 5 17:11:29 2022 -0500 + + Merge pull request #253 from deardurham/dependabot/npm_and_yarn/tar-6.1.11 + + Bump tar from 6.1.0 to 6.1.11 + +commit 57a05a84ddc5539929c7456a46c026bbca660cfc +Author: Rob Gries +Date: Thu Dec 16 18:36:10 2021 -0600 + + Fix refresh tokens expiry time (#256) + +commit aa17aa0373fc28fe9f7730cf8bcf747a676efeb8 +Author: Colin Copeland +Date: Sun Dec 12 21:15:13 2021 +0000 + + order by created + +commit dbc9caba0274e4399a67a7bb6712695296cc1596 +Author: Colin Copeland +Date: Sun Dec 12 21:10:21 2021 +0000 + + add merge migration + +commit 399e9ec9922a25707aa7b3a0aac74f2cd7fa7f12 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Sun Dec 12 21:05:43 2021 +0000 + + Bump axios from 0.21.1 to 0.21.2 + + Bumps [axios](https://github.com/axios/axios) from 0.21.1 to 0.21.2. + - [Release notes](https://github.com/axios/axios/releases) + - [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) + - [Commits](https://github.com/axios/axios/compare/v0.21.1...v0.21.2) + + --- + updated-dependencies: + - dependency-name: axios + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 2f9f8728325e734c615a5edf6f78d72e6f54e1c7 +Merge: 0e75616 1ae4897 +Author: Colin Copeland +Date: Sun Dec 12 16:04:36 2021 -0500 + + Merge pull request #245 from robert-w-gries/redux_toolkit + + Add RTK, improve authentication, and add users page + +commit 1ae48972b0f18ceeba248f533ac3dc83cbe8bbf1 +Merge: 7bc59d5 0e75616 +Author: Colin Copeland +Date: Sun Dec 12 16:00:47 2021 -0500 + + Merge branch 'master' into redux_toolkit + +commit 0e756164131bbeba87e66cfe53f3b7ca41237111 +Merge: 3a77d90 4eeb2ce +Author: Colin Copeland +Date: Sun Dec 12 15:49:53 2021 -0500 + + Merge pull request #248 from deardurham/user_metrics + + Start tracking metrics + +commit afe2f918d7b544442795acc4a9af1d31d25e8617 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Sun Dec 12 20:49:30 2021 +0000 + + Bump tar from 6.1.0 to 6.1.11 + + Bumps [tar](https://github.com/npm/node-tar) from 6.1.0 to 6.1.11. + - [Release notes](https://github.com/npm/node-tar/releases) + - [Changelog](https://github.com/npm/node-tar/blob/main/CHANGELOG.md) + - [Commits](https://github.com/npm/node-tar/compare/v6.1.0...v6.1.11) + + --- + updated-dependencies: + - dependency-name: tar + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 837eee34c75c9870fdc8649b3f8b910c7dffd072 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Sun Dec 12 20:49:24 2021 +0000 + + Bump path-parse from 1.0.6 to 1.0.7 + + Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. + - [Release notes](https://github.com/jbgutierrez/path-parse/releases) + - [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7) + + --- + updated-dependencies: + - dependency-name: path-parse + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 393e8432801e42cabb91ee5c4c30c2c066f3e968 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Sun Dec 12 20:49:24 2021 +0000 + + Bump tmpl from 1.0.4 to 1.0.5 + + Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. + - [Release notes](https://github.com/daaku/nodejs-tmpl/releases) + - [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5) + + --- + updated-dependencies: + - dependency-name: tmpl + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 3a77d90baadc37cc2814efa43cedc7823dd8f4a5 +Merge: 2a08994 8965a27 +Author: Colin Copeland +Date: Sun Dec 12 15:48:21 2021 -0500 + + Merge pull request #242 from deardurham/dependabot/pip/pillow-8.3.2 + + Bump pillow from 8.2.0 to 8.3.2 + +commit 4eeb2ce87002b5db0eab2741eb11cc95e30f2cb3 +Author: Colin Copeland +Date: Sun Dec 12 20:42:29 2021 +0000 + + add last_generated_petition_time to UserAdmin + +commit 3a948d0ae5fc979a7de0cd860515a468e53cee1e +Author: Colin Copeland +Date: Sun Dec 12 20:39:55 2021 +0000 + + add GeneratedPetitionAdmin + +commit 7bc59d567398191fdd7a7d02328f44996b19f553 +Author: Rob Gries +Date: Fri Dec 10 09:49:03 2021 -0500 + + Add whitespace change to trigger redeploy + +commit 16c7cd5edfb752f03fdab9a29f28363a6bfaf0b7 +Author: Rob Gries +Date: Fri Dec 10 09:43:13 2021 -0500 + + Add whitespace change to trigger redeploy + +commit 0fdff98e4fdf572be8c11cd45612e49481d93307 +Author: Rob Gries +Date: Thu Dec 9 20:55:13 2021 -0500 + + Run makemigration merge + +commit b502a94972df08ace678c43c50b7db54497ea3fa +Author: Rob Gries +Date: Thu Dec 9 20:26:19 2021 -0500 + + Fix issue + +commit 19146a2c8c7c7a5ccad2af5da493af07e51c61cc +Merge: f7e477b 2a08994 +Author: Rob Gries +Date: Thu Dec 9 20:24:36 2021 -0500 + + Merge branch 'master' into redux_toolkit + +commit f7e477b773ee2619fd49f0ba74db21d512dc4575 +Author: Rob Gries +Date: Thu Dec 9 20:16:31 2021 -0500 + + Fix line getting cut off + +commit 84b70ecf5f24612dfb3f021db468d4474276ccfc +Author: Rob Gries +Date: Thu Dec 9 20:12:42 2021 -0500 + + Fix weird spacing and replace with 'is' + +commit d152dae1279cff60397c97a73f6139d757b99ef7 +Author: Rob Gries +Date: Thu Dec 9 20:10:42 2021 -0500 + + Run black + +commit c9eb81b07f7d11fcfc05c85456bd464182185266 +Author: Rob Gries +Date: Thu Dec 9 02:42:24 2021 -0500 + + Fix disabled color + +commit 63d374d5dd6980c44add172681ebc081758edd46 +Author: Rob Gries +Date: Thu Dec 9 02:34:46 2021 -0500 + + Fix login error message when bad credentials and add logging + +commit 58920df77f6b1489c9cea60b5531f49eb6fb8099 +Author: Rob Gries +Date: Wed Dec 8 21:54:00 2021 -0500 + + Fix time delta + +commit 0d0a59081f4f05330ff061ab7a9790f83af182cd +Author: Rob Gries +Date: Wed Dec 8 21:50:56 2021 -0500 + + Attempt number two + +commit 53f05fbd82a8a3e7c4e6de3b591069c5cebb1ce5 +Author: Rob Gries +Date: Wed Dec 8 21:40:41 2021 -0500 + + Does this fix the issue? + +commit c28fa527d9bf601c8b58ece91c1d1de04fbaa09c +Author: George Helman +Date: Wed Dec 8 00:34:03 2021 -0500 + + Colin dev review changes + +commit 596b444e0f44b246fecc9a5142f2eddf5efd4590 +Author: George Helman +Date: Tue Dec 7 17:59:18 2021 -0500 + + Dev review changes + +commit 0c373503df76343187dae2841e1bfe2be28c784e +Author: George Helman +Date: Mon Nov 15 00:49:07 2021 -0500 + + Start tracking metrics + +commit 5d5790e6aa8286a381b2ffb6046a0d81dcdb7f9b +Author: Rob Gries +Date: Sat Oct 30 16:14:37 2021 -0400 + + Disable self delete and self-admin change + +commit 1cd8c2cfb0611aa871f2fec220584e00c0db07b5 +Author: Rob Gries +Date: Sat Oct 30 15:58:41 2021 -0400 + + Fix login page issues + +commit 0ea1496fdf302ed921114f0c92c0dc8f5903dd35 +Author: Rob Gries +Date: Sat Oct 30 15:32:46 2021 -0400 + + Send new user email to reset their password + +commit 762166aa944e018b4aa6bc6333cccbd2b8a04b26 +Author: Rob Gries +Date: Sun Oct 17 14:18:12 2021 -0400 + + Add error messages to inputs + +commit 4bfbb603fcc479d63a8c4af615e0fdcbb5badd73 +Author: Rob Gries +Date: Sat Oct 16 14:12:45 2021 -0400 + + Improve modal re-use + +commit 2a089943590a9eb7f69db52f3bfe30f9a7df5f46 +Merge: 1b31dde eda0f47 +Author: Colin Copeland +Date: Tue Oct 12 19:13:10 2021 -0400 + + Merge pull request #246 from robert-w-gries/prettier_fixes + + Fix prettier and eslint errors + +commit eda0f472332bb62b41a3dfecee12aa014d20e715 +Author: Rob Gries +Date: Tue Oct 12 19:08:20 2021 -0400 + + More prettier fixes + +commit 11e45cc87241367c488d2b35ed7c40d434166d4d +Author: Rob Gries +Date: Tue Oct 12 19:01:21 2021 -0400 + + Fix prettier and eslint errors + +commit 1b31ddedd10defc1777c46fca29bb3768b30ef45 +Merge: 7bdbbb5 7a040ce +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Oct 12 18:51:17 2021 -0400 + + Merge pull request #237 from deardurham/new_form + + Add offense record table to petition generation page + +commit 7a040ce42ebe1e0fb8f62646fc7a43dab21f01c4 (origin/new_form) +Author: George Helman +Date: Tue Oct 12 18:47:08 2021 -0400 + + Fix pyjwt version again + +commit f675e462df9a497ef29f7bda459288a291ad62e8 +Author: George Helman +Date: Tue Oct 12 18:43:06 2021 -0400 + + Fix pyjwt version + +commit fdf89bd9271cc7ba9a2cb2009a0b3c37706e734b +Author: George Helman +Date: Tue Oct 12 17:54:48 2021 -0400 + + Prettier changes + +commit 5f7622a0701557952727d078fc3dbfdd1ca6208e +Author: George Helman +Date: Thu Sep 30 22:56:36 2021 -0400 + + Offense record table dev review changes + +commit 037b70f341177189b1c534b68ca0e515d5c62c22 +Author: George Helman +Date: Sun Sep 19 16:37:50 2021 -0400 + + Offense record table dev review changes + +commit 938cde30b0a3d9483db278cfc0518640707bdd32 +Author: George Helman +Date: Sat Aug 21 22:57:06 2021 -0400 + + Add offense record selector to petition list + +commit 97623d4a6b816a04e0bb8fba6f70cbbe327b8939 +Author: Rob Gries +Date: Sun Oct 10 11:57:06 2021 -0400 + + Clean up style and sort by username + +commit 9af1b49ed3ca8bc12940d0bdf33151352f3d49fd +Author: Rob Gries +Date: Sat Oct 9 21:25:55 2021 -0400 + + Allow deleting of users + +commit c4ab6bcc2e6fa93dacddc3d338300efee92af7f1 +Author: Rob Gries +Date: Sat Oct 9 19:07:30 2021 -0400 + + Allow editing of users + +commit a407995c1cb46e0b1ed0bb289bf581e394610f0e +Author: Rob Gries +Date: Sat Oct 9 12:14:16 2021 -0400 + + WIP react-hook-form + +commit 7f04fd676702728543cb665cb51e3bd318aff8a2 +Author: Rob Gries +Date: Sat Oct 9 10:43:43 2021 -0400 + + WIP editing of users + +commit 97256e9da0f90047d1981865cc8d4ea7d6e05082 +Author: Rob Gries +Date: Wed Oct 6 23:35:58 2021 -0400 + + Fix prop types + +commit dd766056ded295906f7b01a3dbdabe85fe3624f5 +Author: Rob Gries +Date: Wed Oct 6 23:35:52 2021 -0400 + + Fix authenticated user redirects + +commit 1d770acba1797cc1a62cd4dc04b0f2e654b5e724 +Author: Rob Gries +Date: Sun Oct 3 18:17:52 2021 -0400 + + Fix tests + +commit 0b07de5106df4d259b12ed54c0892bd01bb90a2a +Author: Rob Gries +Date: Sun Oct 3 18:08:48 2021 -0400 + + Fix handling of page numbers and use 403 properly + +commit 8b2dd743fd799b7cbebebb89ce861c40e28b605e +Author: Rob Gries +Date: Sun Oct 3 15:39:35 2021 -0400 + + Tweak css and clean up users page + +commit 14125a92cd27bde81b7da225d152e1f1572bd5b2 +Author: Rob Gries +Date: Sun Oct 3 10:43:05 2021 -0400 + + Improve user creation process + +commit 1977bdd6dfcb03122d5fb960788cf60878bba9d4 +Author: Rob Gries +Date: Sat Oct 2 23:00:43 2021 -0400 + + Create users from user page + +commit 7d40582ea795570503b42a9e34a7a99b89f1bf50 +Author: Rob Gries +Date: Sat Oct 2 20:38:01 2021 -0400 + + Initial attempt at users page + +commit be2c6d050a9eaa40df9118e2b3256c6aa3c2da59 +Author: Rob Gries +Date: Sat Oct 2 17:37:32 2021 -0400 + + Fix redirect on login + +commit e53abbcefa4d18d1a3cf6fdd61b8dc9a081d0f57 +Author: Rob Gries +Date: Sun Jul 25 12:26:55 2021 -0400 + + Change timeout. Still need to add options support to baseQueryFn + +commit c4fa7d99c9bcaae06c79743ded826741d53a7024 +Author: Rob Gries +Date: Sun Jul 25 12:12:43 2021 -0400 + + Clean up redirect code + +commit bd19e05c17d1cd22060e46f7605c2abd9c4fc8ad +Author: Rob Gries +Date: Sat Jul 24 19:38:13 2021 -0400 + + Handle redirects more cleanly + +commit 2fdb3be88ad364cc3a76971890338a7db16437e7 +Author: Rob Gries +Date: Sat Jul 24 00:30:22 2021 -0400 + + Add logic to check login after hard refresh + +commit b132a102e6739fbf598a5747404b4196180e479a +Author: Rob Gries +Date: Fri Jul 23 20:53:37 2021 -0400 + + Add logged_in validation view + +commit abcad5303eea69b0cca0c568a7906dd0aab8a715 +Author: Rob Gries +Date: Fri Jul 23 20:52:55 2021 -0400 + + Implement silent refresh + +commit 8bb2eff191aed8ee10694c6f81f991e03f194584 +Author: Rob Gries +Date: Wed Jul 21 20:24:47 2021 -0400 + + Switch to redux toolkit for auth + +commit 80ebebc444ac7aeb859510321b8421de31be065e +Author: Rob Gries +Date: Wed Jul 21 18:24:03 2021 -0400 + + Return refresh token, fix access token lifetime, fix admin_url, and delete refresh token on logout + +commit 010bccba403afbd66faa7b9774b7ce128414e429 +Author: Rob Gries +Date: Tue Jul 20 23:12:38 2021 -0400 + + Various fixes + +commit f2f12ebb2413cd8ad8f2435c389ad24cf89ce7e5 +Author: Rob Gries +Date: Tue Jul 20 22:29:15 2021 -0400 + + Remove localstorage csrftoken and use cookie instead + +commit 8965a278503338d4f9864123e65a65acb7fdfaed +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Sep 8 01:12:14 2021 +0000 + + Bump pillow from 8.2.0 to 8.3.2 + + Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.2.0 to 8.3.2. + - [Release notes](https://github.com/python-pillow/Pillow/releases) + - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) + - [Commits](https://github.com/python-pillow/Pillow/compare/8.2.0...8.3.2) + + --- + updated-dependencies: + - dependency-name: pillow + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 7bdbbb5f0cbd093f7f206248d11d467b85655fab +Author: Rob Gries +Date: Tue Aug 17 18:19:34 2021 -0400 + + Warn when using non-chrome browser (#241) + + * Add warning modal when using a non-chrome browser + + * Updated warning message + + * Tweak message and styling + +commit 53bce57d5bde5dee40a5d344f4f7f6077f16bd68 +Author: Rob Gries +Date: Tue Jul 20 18:11:19 2021 -0400 + + Fix all prettier and eslint errors (also some warnings) (#240) + +commit 6b2f6523508576c6db6622595ac15380e504d578 +Author: Rob Gries +Date: Tue Jun 22 18:34:47 2021 -0400 + + Frontend maintenance - package upgrades and misc fixes (#236) + + * Remove unnecessary packages and fix random eslint issues + + * Upgrade main react deps and eslint + + * Update remaining packages + + * Fix issues with unmounted components + + * Temporarily disable prettier until fixed + + * Fix test + +commit 9738efee6614162b634f9b6919f589850c0b756d +Merge: ab970df 539518d +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Fri Jun 11 10:45:59 2021 -0400 + + Merge pull request #231 from deardurham/clean_stale_data_fix + + Delete old batches based on batch data instead of petition date + +commit 539518d5f2115f05c6233eef382e4cb5e7d5fd76 (origin/clean_stale_data_fix) +Author: George Helman +Date: Fri Jun 11 09:54:12 2021 -0400 + + Fix test + +commit ab970df1afb73106f5ecc973e018528ea5a471c0 +Merge: 0471655 70fa93a +Author: Colin Copeland +Date: Fri Jun 11 09:14:45 2021 -0400 + + Merge pull request #235 from deardurham/dependabot/pip/django-2.2.24 + + Bump django from 2.2.21 to 2.2.24 + +commit 70fa93aaa478b2e55d15d6db6581803cb2e2eb68 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jun 10 18:40:01 2021 +0000 + + Bump django from 2.2.21 to 2.2.24 + + Bumps [django](https://github.com/django/django) from 2.2.21 to 2.2.24. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.21...2.2.24) + + --- + updated-dependencies: + - dependency-name: django + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 0471655d10b52ab430c5795cf7a473d9cdda582a +Merge: 8f0edc1 b57537f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jun 8 18:06:39 2021 -0400 + + Merge pull request #232 from deardurham/dependabot/pip/django-2.2.21 + + Bump django from 2.2.20 to 2.2.21 + +commit 8f0edc1f8c97568fe61e148bfcb67be14b77f7f1 +Merge: 42d0a06 5aaa64e +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jun 8 18:06:19 2021 -0400 + + Merge pull request #233 from deardurham/dependabot/pip/pillow-8.2.0 + + Bump pillow from 8.1.1 to 8.2.0 + +commit 85f21b70ce69bd1d383a16229ec256d571cedc0e +Author: George Helman +Date: Tue Jun 8 18:05:31 2021 -0400 + + Change created to date_uploaded + +commit 42d0a06cbb64808c45f734838b8dab679774ffbe +Merge: 32e21ce ee178f6 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jun 8 17:59:02 2021 -0400 + + Merge pull request #230 from deardurham/missing_state + + Fix missing agency state problem + +commit 5aaa64ee2ffbb6fd6d68ff3894036dba3c19f375 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jun 8 20:12:38 2021 +0000 + + Bump pillow from 8.1.1 to 8.2.0 + + Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.1.1 to 8.2.0. + - [Release notes](https://github.com/python-pillow/Pillow/releases) + - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) + - [Commits](https://github.com/python-pillow/Pillow/compare/8.1.1...8.2.0) + + --- + updated-dependencies: + - dependency-name: pillow + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit b57537f280d8ed2180dde3c6c82f70d69fae5a59 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jun 4 22:32:00 2021 +0000 + + Bump django from 2.2.20 to 2.2.21 + + Bumps [django](https://github.com/django/django) from 2.2.20 to 2.2.21. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.20...2.2.21) + + --- + updated-dependencies: + - dependency-name: django + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 52e884542ba1930510b7c174e133393436cbb40e +Author: George Helman +Date: Sun May 30 22:55:12 2021 -0400 + + Delete old batches based on batch data instead of petition date + +commit ee178f62bfed9274e4594c307ea4767c425428be (origin/missing_state) +Author: George Helman +Date: Wed May 26 23:51:51 2021 -0400 + + Fix missing agency state problem + +commit 32e21ce1270ad091d3f2a43949ceccc843a5542e +Author: Rob Gries +Date: Tue May 25 18:27:07 2021 -0400 + + Add help page with contact info and best practices for using the app (#225) + + * Initial help page implementation + + * Polished styling for help markdown + + * Style polish + + * Apply amazing advice from a pro + + * Remove comment + + * Fix caret for small window + +commit 5a6a886c60f3f67a7144af494922dddb7921f0f7 +Merge: 7e4a67a be2671c +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 25 18:25:59 2021 -0400 + + Merge pull request #224 from deardurham/celery_beat_fixes + + Celery should finally work + +commit be2671c510351c1a2a908d857068b008ee6823b2 (origin/celery_beat_fixes) +Author: George Helman +Date: Tue May 25 18:23:48 2021 -0400 + + Celery should finally work + +commit 7e4a67ab188fe3622a2567248d6bab08a76b0260 +Merge: efeaa27 f4f00b2 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue May 11 17:58:05 2021 -0400 + + Merge pull request #223 from deardurham/celery_beat_fixes + + Celery beat fixes + +commit f4f00b2101f34e9d52714e4d071f1e0e886d4429 +Author: George Helman +Date: Tue May 11 17:56:39 2021 -0400 + + Celery beat fixes + +commit efeaa27617faddc47a322ccee55189546d7b969c +Merge: 5d4fdd9 bc293b7 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sun May 9 17:06:34 2021 -0400 + + Merge pull request #222 from deardurham/deferred-dismissal + + add Deferred Proceeding... dismissed method + +commit 5d4fdd958287af34593152d4e56f6d928450a210 +Merge: a515b6c 8b523e8 +Author: Colin Copeland +Date: Fri Apr 30 09:04:05 2021 -0400 + + Merge pull request #221 from deardurham/ciprs-reader-140 + + Update to ciprs-reader v1.4.0 + +commit bc293b7f785efd400b75ae90cf4a652f5722e029 (origin/deferred-dismissal) +Author: Colin Copeland +Date: Tue Apr 27 19:17:03 2021 -0400 + + add Deferred Proceeding... dismissed method + +commit 8b523e883943ffe7d3e73d28bbe029f15750fb80 +Author: Colin Copeland +Date: Tue Apr 27 19:12:28 2021 -0400 + + Update to ciprs-reader v1.4.0 + +commit a515b6cfbda028688428cb6cb0905af751fbeaa3 +Merge: 68a91da 61f878f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 27 19:09:55 2021 -0400 + + Merge pull request #220 from deardurham/discover_task + + Add init file to tasks directory + +commit 61f878f4845416a9cc5c791b410c6143f08423b8 (origin/discover_task) +Author: George Helman +Date: Tue Apr 27 19:09:08 2021 -0400 + + Add init file to tasks directory + +commit 68a91da351e65a4be824d450cc2934e6c6892162 +Merge: c48b2c3 0c2f5e8 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 27 18:48:27 2021 -0400 + + Merge pull request #219 from deardurham/add_django_celery_beat + + Add django_celery_beat to installed apps + +commit 0c2f5e8f5a8e9ed21b938167e4e19a3501770346 (origin/add_django_celery_beat) +Author: George Helman +Date: Tue Apr 27 18:47:31 2021 -0400 + + Add django_celery_beat to installed apps + +commit c48b2c35b84ebeb28d73ed66bb3b7ae7def11ca6 +Merge: 544d89f 6b8f746 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 27 18:37:58 2021 -0400 + + Merge pull request #218 from deardurham/celery + + Add celery to project + +commit 6b8f746298387cd8c8f9810452563d21814217d6 (origin/celery) +Author: George Helman +Date: Tue Apr 20 00:15:26 2021 -0400 + + Add celery + +commit 544d89f1b1d6777d1cd60bcac2740c52b9c5b285 +Merge: 3c7e467 6816d32 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 13 18:38:26 2021 -0400 + + Merge pull request #214 from deardurham/burn_after_reading + + Delete batch 48 hours after petition is generated + +commit 6816d32669f1990e18723c65593bb4ce3bd73670 (origin/burn_after_reading) +Merge: d4ba534 3c7e467 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 13 18:38:19 2021 -0400 + + Merge branch 'master' into burn_after_reading + +commit d4ba534b51313061916d01e93e4050ddf77d7797 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 13 18:33:34 2021 -0400 + + Update Dockerfile + +commit 3c7e46750bd6b671efebf995f42cd3c69a853e90 +Author: Rob Gries +Date: Tue Apr 13 18:25:13 2021 -0400 + + Remove SSN and drivers license fields (#211) + +commit bde5825c0f6b3bd91f336dee97b12ceb8729df22 +Merge: 5328ea1 aab0802 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 13 18:22:23 2021 -0400 + + Merge pull request #205 from deardurham/petition_offense_sorting_gremlin + + Fix petition offense sorting + +commit aab080238475b016512dddc72db278131bcffd3b (origin/petition_offense_sorting_gremlin) +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Apr 13 18:21:35 2021 -0400 + + Update forms.py + +commit 5328ea1b60ea3900544ee94d8977b7fac79a87f7 +Merge: e8478a3 df659ce +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Apr 12 23:18:12 2021 -0400 + + Merge pull request #187 from deardurham/dependabot/npm_and_yarn/axios-0.21.1 + + Bump axios from 0.19.2 to 0.21.1 + +commit e8478a3924777d25f4b77b15d9204317319aa406 +Merge: 2b9b6b2 6ffcd24 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Apr 12 23:16:58 2021 -0400 + + Merge pull request #201 from deardurham/dependabot/pip/pillow-8.1.1 + + Bump pillow from 6.2.0 to 8.1.1 + +commit 2b9b6b21d8d127a4dfad664eed3ebcbc62c624e3 +Merge: 2876353 3af4482 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Apr 12 23:16:27 2021 -0400 + + Merge pull request #213 from deardurham/dependabot/pip/django-2.2.20 + + Bump django from 2.2.16 to 2.2.20 + +commit 96b9b6c1add0554738b148db7ef8a8f0925d8c07 +Author: George Helman +Date: Mon Apr 12 22:31:59 2021 -0400 + + Remove notebooks from repo + +commit bc25fb045eb61050d9e1d85d0abead4828b30b05 +Author: George Helman +Date: Mon Apr 12 22:30:08 2021 -0400 + + Delete batch 48 hours after petition is generated + +commit 4ed056efc970a44a1d3f6c4d2cbb84226fe3a9dc +Author: George Helman +Date: Sun Apr 11 23:18:24 2021 -0400 + + Add test for petition offense sorting + +commit 3af448264caee56705c3a9acb42d9855a33aa5ed +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Apr 8 19:47:52 2021 +0000 + + Bump django from 2.2.16 to 2.2.20 + + Bumps [django](https://github.com/django/django) from 2.2.16 to 2.2.20. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.16...2.2.20) + + Signed-off-by: dependabot[bot] + +commit c3fc9db4a489e8569ee6c9db102d026498d1a557 +Author: George Helman +Date: Sun Mar 21 19:36:05 2021 -0400 + + Fix petition offense sorting + +commit 28763535d340b7a8a0b8f0cf941ce65e577a7137 +Merge: f554cd5 9c883f8 +Author: Colin Copeland +Date: Fri Mar 19 20:57:43 2021 -0400 + + Merge pull request #203 from deardurham/dependabot/pip/djangorestframework-3.11.2 + + Bump djangorestframework from 3.11.1 to 3.11.2 + +commit 9c883f8cb425b9b7c86d6f84db3cb0b825858504 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Mar 19 22:34:00 2021 +0000 + + Bump djangorestframework from 3.11.1 to 3.11.2 + + Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.11.1 to 3.11.2. + - [Release notes](https://github.com/encode/django-rest-framework/releases) + - [Commits](https://github.com/encode/django-rest-framework/compare/3.11.1...3.11.2) + + Signed-off-by: dependabot[bot] + +commit 6ffcd245628fbb2a061bd9a2455ef8517677d0f0 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Mar 19 02:34:24 2021 +0000 + + Bump pillow from 6.2.0 to 8.1.1 + + Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.2.0 to 8.1.1. + - [Release notes](https://github.com/python-pillow/Pillow/releases) + - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) + - [Commits](https://github.com/python-pillow/Pillow/compare/6.2.0...8.1.1) + + Signed-off-by: dependabot[bot] + +commit f554cd5e33bedc136995b92b5399fe96d6af9a1f +Merge: 3e3ecef da0ce45 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Mar 16 21:19:13 2021 -0400 + + Merge pull request #199 from deardurham/additional_petitions_checkbox + + Check additional petitions checkbox when there are additional 285 forms + +commit da0ce452b02b2c946a2a650fffbb7f1a6dcbe20c +Author: George Helman +Date: Tue Mar 16 20:47:54 2021 -0400 + + Update get_annotations script and add example usage + +commit 3e3ecef1413b15a5fdba2dac2e41c5c176cfea81 +Author: Rob Gries +Date: Tue Mar 16 18:22:08 2021 -0400 + + Fix agency city, state, and zip fields for pdf writing (#195) + + * Fix agency city, state, and zip fields for pdf writing + + * Update test to catch key issues and set dummy contact data + +commit d9883224664a5d28fb4a7008a02f483f4e0a7487 +Author: George Helman +Date: Tue Mar 16 09:20:05 2021 -0400 + + Remove unnecessary format string + +commit 700346e226b3e01f1939a0a8daf3813d8c29a60c +Author: George Helman +Date: Sun Mar 14 23:14:58 2021 -0400 + + Check additional petitions checkbox when there are additional 285 forms + +commit 1eef789aa0dafc5a953d23b54e0eb5b961cd4dde +Merge: 0e3fcc3 7938837 +Author: Colin Copeland +Date: Sat Mar 13 20:26:49 2021 -0500 + + Merge pull request #198 from deardurham/github-actions + + Use GitHub actions + +commit 79388373c09ca87b9abe1c4c1fa4aefea966861d +Author: Colin Copeland +Date: Sat Mar 13 20:24:04 2021 -0500 + + install prod reqs + +commit 6de4d01361c86c0645629026b93f2a764e19162d +Author: Colin Copeland +Date: Sat Mar 13 15:35:48 2021 -0500 + + use ubuntu-20.04 + +commit 76c6116bfe9fb0daffeab9926f79e9c289ee933e +Author: Colin Copeland +Date: Sat Mar 13 15:30:53 2021 -0500 + + remove pre-commit + +commit 467da916e919671ff666784cc194d4d654c3331a +Author: Colin Copeland +Date: Sat Mar 13 14:23:08 2021 -0500 + + add test workflow + +commit 91b35ef020bb422f05dd2a817778d9db4914c839 +Author: Colin Copeland +Date: Sat Mar 13 14:22:24 2021 -0500 + + remove travis config + +commit 76623df458b265970962874305ad2f753d2e9b14 +Author: Colin Copeland +Date: Sat Mar 13 14:10:13 2021 -0500 + + update dockerignore + +commit 0e3fcc32606823baee8af7af96c2048628014cd0 +Author: Rob Gries +Date: Fri Mar 12 15:57:59 2021 -0500 + + Frontend rework (#196) + + * Add password reset links as proxied links + + * WIP + + * More refactor + + * WIP + + * Update HomePage and PageHeader + + * Fix anchor expanding past image width + + * Logo tweaks + + * Fix overflow on GenerationPage + + * DnD and FileList tweaks + + * Minor tweaks + + * Fix button triggering on right click + + * Re-align FileList and remove scroll bar + + * Refactor button and icon file structure + + * Fix GeneratePetitionModal + + * Style updates + + * Remove scrolling while Modal is open and ensure always centered in screen + + * Remove references to deleted CloseIcon + + * very much wip petition list changes + + * Generate button spacing + + * Add attachment number to table + + * Add hook to change GenerateButton on resize + + * Replace petition list with grid instead of flex + + * CSS tweaks + + * Frontend now in good working state + + * Clean up table code + + * Minor css tweaks + + * Add attachments to serializer and sort by county, jurisdiction, attachment order + + * Attachment label css + + * Don't allow selection of header + + * Minor tweaks + + * Move Button outside of unnecessary folder + + * Fix prettier complaint + + * Quality of life changes and use two column approach for input forms + + * Add more specific selectors + + * Small rewording + + * Handle batch List vs Detail view in better way + +commit 4aa16ebcae44541872b72d42531f8442efcb0229 +Author: Rob Gries +Date: Tue Mar 2 22:25:09 2021 -0500 + + Increase timeout for request and add error messages (#194) + +commit 7d9278237ae060028e92306ea87af75576921eff +Merge: dc8c3bd a872b21 +Author: Colin Copeland +Date: Fri Feb 19 09:37:07 2021 -0500 + + Merge pull request #190 from robert-w-gries/exclude_infractions + + Filter out infraction severity offense records for CR287 and CR285 + +commit dc8c3bd1148706d4d962ff411a132359db558244 +Merge: 369b0ac 2dd7ce4 +Author: Colin Copeland +Date: Sun Feb 7 21:16:18 2021 -0500 + + Merge pull request #192 from deardurham/191-order + + Guarantee consistent offense record order if file numbers match + +commit a872b21c076ee67029288b8eaede42c460b3fdb3 (rob/exclude_infractions) +Author: Rob Gries +Date: Sat Feb 6 16:04:38 2021 -0500 + + Add test for infraction severity offense records and fix existing tests + +commit 27f6d57dddfd53a8855429dc779a19134be93a96 +Author: Rob Gries +Date: Thu Feb 4 19:20:52 2021 -0500 + + Move severity filter logic to form_types + +commit 2dd7ce467818d63bef684ce292b95d010fb4fad0 +Author: Colin Copeland +Date: Tue Feb 2 19:20:17 2021 -0500 + + order by pk 3rd to gurantee consistent order if file numbers match + +commit d54e2e926a6c50b1c317dca02b25b7989ad2cd64 +Author: Rob Gries +Date: Tue Feb 2 17:32:46 2021 -0500 + + Filter out infraction severity offense records for CR287 and CR285 + +commit 369b0acc1a38801c723716c7cd3662edc630bba3 +Merge: 9898307 a975e36 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 19 18:07:58 2021 -0500 + + Merge pull request #185 from deardurham/sort_by_file_number + + Sort by file number + +commit a975e36b193f9ce6e70db3a7db157da5d546795f (origin/sort_by_file_number) +Author: George Helman +Date: Wed Jan 6 00:27:27 2021 -0500 + + Sort offense records by year, then file number + +commit df659ce5ddf738f01f29fd1e991f96b023cc26fa +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jan 6 03:47:16 2021 +0000 + + Bump axios from 0.19.2 to 0.21.1 + + Bumps [axios](https://github.com/axios/axios) from 0.19.2 to 0.21.1. + - [Release notes](https://github.com/axios/axios/releases) + - [Changelog](https://github.com/axios/axios/blob/v0.21.1/CHANGELOG.md) + - [Commits](https://github.com/axios/axios/compare/v0.19.2...v0.21.1) + + Signed-off-by: dependabot[bot] + +commit 98983070d3cda2873182a6875520e5bee67a6dd6 +Merge: 62e7ac5 de3f3a2 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jan 5 17:59:44 2021 -0500 + + Merge pull request #183 from deardurham/convert_forms + + Convert to 2021 forms + +commit de3f3a265d4d5c254ab92839a26b28df09d3267b (origin/convert_forms) +Author: George Helman +Date: Fri Jan 1 19:18:51 2021 -0500 + + Convert to 2021 forms + +commit 62e7ac5836471205d7e5da075357c95b60b35c9c +Author: Rob Gries +Date: Tue Dec 15 21:06:59 2020 -0500 + + Improve proxy configuration and support proxied admin pages (#177) + + * Improve proxy configuration + + * Use `http://django:8000` when using docker-compose by default + * Added `OVERRIDE_API_PROXY` environment variable to override default + * The admin pages are now also proxied + * Removed unused dependency + + * WIP docs + + * Update readme docs + +commit 40095869737b9ab13e2fc3fe6678d1e74821cb4b +Merge: 666728f 0b59fd0 +Author: Colin Copeland +Date: Tue Nov 10 19:11:03 2020 -0500 + + Merge pull request #176 from deardurham/password_reset_from_email + + Make default from email noreply@dear-petition.herokuapp.com + +commit 0b59fd08b3bf49b911864d19d0acb6f5d9587c4b +Author: George Helman +Date: Tue Nov 10 19:09:27 2020 -0500 + + Make default from email noreply@dear-petition.herokuapp.com + +commit 666728f01e73ac6918430aa92fdb75c6f5704fdf +Merge: c4ec7e3 c65a676 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Nov 10 18:56:37 2020 -0500 + + Merge pull request #175 from deardurham/guilty_to_lesser + + Support guilty to lesser + +commit c65a676ab28be393f35a729ee93a9f653838daeb (origin/guilty_to_lesser) +Author: George Helman +Date: Tue Nov 10 18:54:47 2020 -0500 + + Support guilty to lesser + +commit c4ec7e3028cd330db8216c312f98e9f8c6261d77 +Merge: 09b5694 b0c7727 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Oct 27 18:37:14 2020 -0400 + + Merge pull request #173 from deardurham/populate_not_guilty + + Add AOC-CR-288 form so that disposition method is not guilty + +commit b0c7727b80ea86bab6784d9fee24e7c71f474714 (origin/populate_not_guilty) +Author: George Helman +Date: Tue Oct 27 18:30:02 2020 -0400 + + Add AOC-CR-288 form so that disposition method is not guilty + +commit 09b5694d382f2ea189f8838367f1e5b978b8174c +Merge: e716cf8 6ea017f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Mon Oct 26 20:20:13 2020 -0400 + + Merge pull request #170 from deardurham/populate_not_guilty + + Populate not guilty charges + +commit 6ea017f39fab548eebd83aa3fc15e109ae7fcaec +Author: George Helman +Date: Sun Oct 25 17:50:04 2020 -0400 + + Add not guilty form + +commit e716cf8fc93f797e1020876ed64a60eab696042a +Merge: 3066932 6360991 +Author: Colin Copeland +Date: Tue Oct 13 21:30:54 2020 -0400 + + Merge pull request #172 from deardurham/ciprs-reader-1-3-0 + + ciprs-reader==v1.3.0 + +commit 6360991901bcbc8a62885dceba382663f48dba02 +Author: Colin Copeland +Date: Tue Oct 13 21:15:07 2020 -0400 + + ciprs-reader==v1.3.0 + +commit 30669328c7b3e1e641f995f4894551f156afeb68 +Author: Rob Gries +Date: Tue Sep 29 21:27:52 2020 -0400 + + Fix Download button for generated petitions (#166) + + * Working pdf cleanup -- keypress issue + + * Ensure only one modal is rendered at a time + + * Fix closing of pdf after pressing escape key + + * Resolve issue where empty modal is generated on invalid input + +commit c8be104d2e22386292c353d524fdd711609d44ef +Merge: 497b122 34b7af3 +Author: Colin Copeland +Date: Tue Sep 29 17:23:12 2020 -0400 + + Merge pull request #167 from deardurham/data-petition + + Data petition + +commit 497b122a4a802a29fb136fa2edfe095bdba4d2cf +Merge: 47c87c0 7713080 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Sep 15 18:08:15 2020 -0400 + + Merge pull request #155 from deardurham/fix_timezone + + Fix issue where we were displaying UTC datetimes on petition + +commit 34b7af30579f5923b193764a502661d168f185fa +Author: Colin Copeland +Date: Mon Sep 7 13:06:48 2020 -0400 + + test build_form_context + +commit 3be3a3fc88d7e8e1630605953dd2e6a5c42764c4 +Author: Colin Copeland +Date: Mon Sep 7 13:03:03 2020 -0400 + + support DataPetition generation + +commit c09779c0dd7066aa933495649d552a34d98f0554 +Author: Colin Copeland +Date: Mon Sep 7 13:02:10 2020 -0400 + + add DataPetition + +commit 99569987d48decd8ec3e9613c89258095faf6128 +Author: Colin Copeland +Date: Mon Sep 7 12:22:06 2020 -0400 + + update package versions for to remove errors with --use-feature=2020-resolver + +commit 47c87c06e67e7d7738625ea0925d42681ce7918f +Author: Rob Gries +Date: Wed Sep 2 21:35:12 2020 -0500 + + Fix issue where argon2 ffi library not installed (#164) + +commit 2132d58ff1e69db322aaf43e0b32f7d349e1e24f +Merge: 7f5e147 2e96861 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sat Aug 22 23:45:33 2020 -0400 + + Merge pull request #163 from deardurham/plea_verdict + + Offense API returns plea and verdict + +commit 7713080fcdbabd4e5e958bbd27f18c5c223b41e6 (origin/fix_timezone) +Author: George Helman +Date: Sat Aug 22 23:14:19 2020 -0400 + + Fix UTC timezone issue + +commit 7f5e1472673ce494ba6730afcdc82435972871a9 +Author: Rob Gries +Date: Tue Aug 11 09:50:15 2020 -0500 + + Fix docker frontend service setup and enable hot reloading (#156) + +commit 2e96861ed1944ffeb2f5fad022be73735fc4e8b8 (origin/plea_verdict) +Author: George Helman +Date: Fri Aug 7 09:46:03 2020 -0400 + + Offense API returns plea and verdict + +commit 2f3d3de456a4de0a87370e24b91a88d93df4f4fe +Merge: 41ed0e9 7c5a152 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Aug 4 19:28:40 2020 -0400 + + Merge pull request #159 from deardurham/add-batchfile + + Add BatchFile model + +commit 7c5a15241070f13fcd504afb0312af6f78d06e6a (origin/add-batchfile) +Author: Colin Copeland +Date: Sun Aug 2 11:08:02 2020 -0400 + + add mock_transform_ciprs_document + +commit 9f85ca94b5bf069bac8f625c6a4605c001bb6c17 +Author: Colin Copeland +Date: Sun Aug 2 11:01:23 2020 -0400 + + add batch file tests + +commit dd186037b3324bffcb0ed4613d1d8cf062615f6c +Author: Colin Copeland +Date: Sun Aug 2 10:55:39 2020 -0400 + + add BatchFile creation in import_ciprs_records + +commit fcdede0d0a5dc4c33bffb596a6c240178ae07587 +Author: Colin Copeland +Date: Sun Aug 2 10:45:26 2020 -0400 + + remove action_parse_report_pdf + +commit e8804c5306f0309dcb54ab02f6b65b88614da9a4 +Author: Colin Copeland +Date: Sun Aug 2 10:45:11 2020 -0400 + + add BatchFileAdmin + +commit 7b9d35114f4eec1aca1ba1b6f1a5049b963947fe +Author: Colin Copeland +Date: Sun Aug 2 10:44:41 2020 -0400 + + remove report_pdf + +commit 77964757be62da5970f87b7582f8575bf5cfaff5 +Author: Colin Copeland +Date: Sun Aug 2 10:44:07 2020 -0400 + + migrate record_pdf to BatchFile + +commit 9aaa17156c2a9e17146de3e42fed1d72f81513cf +Author: Colin Copeland +Date: Sun Aug 2 10:43:46 2020 -0400 + + add BatchFile model + +commit 41ed0e916129d65c3209ec3128820c76a8198df4 +Author: Colin Copeland +Date: Wed Jul 22 21:56:18 2020 -0400 + + revert saving record (broken) + +commit ce0056c844b26c433b7750c67dda51599ec85c4a +Merge: e6a94e1 a5a6a9a +Author: Colin Copeland +Date: Wed Jul 22 21:32:01 2020 -0400 + + Merge pull request #152 from deardurham/form-285-backend + + AOC-CR-285 backend + +commit a5a6a9a91f6e19c2072ebdaa5af730708bcbf381 +Author: Colin Copeland +Date: Wed Jul 22 21:24:44 2020 -0400 + + save record after setting file + +commit 64c36c70aa79bd8608fe9bffe7835ad37eef6405 +Author: Colin Copeland +Date: Wed Jul 22 21:23:12 2020 -0400 + + upgrade ciprs-reader to v1.2.0 + +commit 6d5f86d5788b60c9e8b08c91f36cb450156e6899 +Author: Colin Copeland +Date: Wed Jul 22 21:17:07 2020 -0400 + + PetitionerName tests for cr285 + +commit b470bcfc106852e0461b4d52df7d7ce50c3c59a8 +Merge: ec8d77e e6a94e1 +Author: Colin Copeland +Date: Wed Jul 22 21:15:11 2020 -0400 + + Merge branch 'master' into form-285-backend + +commit e6a94e13724e69463a35af3972ee6ca1db37e80a +Merge: e4552fa a72c6ad +Author: Colin Copeland +Date: Wed Jul 22 20:58:57 2020 -0400 + + Merge pull request #150 from robert-w-gries/feature/name_address_fields + + Submit petitioner name and address to generate-petition endpoint + +commit a72c6ad9082dca41367b02b581f447a40b7b9f01 (rob/feature/name_address_fields) +Author: Rob Gries +Date: Wed Jul 22 15:28:43 2020 +0000 + + Allow editing of petitioner name and fix error with non-NC states + +commit ec8d77e8762b294e917e20ea2afa67ee6ec1f35e +Author: Colin Copeland +Date: Tue Jul 21 18:36:42 2020 -0400 + + use self.get_most_recent_record to normalize functionality + +commit 38977d192e2562eab5e20d9bff0f2c83a712e91f +Author: Colin Copeland +Date: Tue Jul 21 18:36:14 2020 -0400 + + improve test name + +commit 6403457b2ae8790c9a14b40d0618770b7cacbce7 +Author: Colin Copeland +Date: Tue Jul 21 18:35:20 2020 -0400 + + use MULTIPLE_FILE_NO_MSG + +commit 86597dce0670f8b8384c07c75351b94cc9d94394 +Author: Colin Copeland +Date: Tue Jul 21 18:34:56 2020 -0400 + + add bounds checking to paginator + +commit 05c56da1c187d5f537b76c250f2ca10c983d646a +Author: Colin Copeland +Date: Tue Jul 21 18:34:35 2020 -0400 + + fix typos + +commit e4552fa5675539f55da81d9497aed0a10d83eed2 +Author: Rob Gries +Date: Tue Jul 21 11:18:21 2020 -0400 + + Add CloseIcon to GeneratePetitionModal (#151) + + * Add CloseIcon to GeneratePetitionModal + + * Add newline to EOF + + * Remove unnecessary CSS from close button + +commit 2b02237a301476f6640f03123103d8397de92275 +Author: Colin Copeland +Date: Sun Jul 12 15:04:02 2020 -0400 + + fix 287 form no + +commit b0adf428fd0e7bdca0442f72a0ba9ff886af5b55 +Author: Colin Copeland +Date: Sun Jul 12 14:59:55 2020 -0400 + + add parent to serializer + +commit 7ec1cd9fa0f2440e6351c90eb373605a8d7ad1cc +Author: Colin Copeland +Date: Sun Jul 12 14:50:21 2020 -0400 + + add map_file_no to AOCFormCR287 + +commit d79c0c523412d6b328f45f49c3723827d73b2563 +Author: Colin Copeland +Date: Sun Jul 12 14:47:19 2020 -0400 + + add agencies to AOCFormCR285 + +commit c249228c8ed60a61be940c4fa1e7cf98b44e6b18 +Author: Colin Copeland +Date: Sun Jul 12 14:32:48 2020 -0400 + + add AOCFormCR285 + +commit e9e31f9dfaa2cbd6a15e80418db9e008e750b0df +Author: Colin Copeland +Date: Sun Jul 12 13:26:21 2020 -0400 + + remove unused fields module + +commit 8b74c9868b0222fc364e669b90f9584614d3765f +Author: Colin Copeland +Date: Sun Jul 12 13:17:11 2020 -0400 + + remove unused imports + +commit 5007c41bb6e592419cde16db497b43ae9fa3bc73 +Author: Colin Copeland +Date: Sun Jul 12 13:16:25 2020 -0400 + + remove now-unused mapper module + +commit d4cba19f3d125f831d901b682adc28a7d5c0c4f1 +Author: Colin Copeland +Date: Sat Jul 11 21:42:20 2020 -0400 + + use dt_obj_to_date + +commit 12e0c7f0e836eee9b8a0ed10d781586a8406919b +Author: Colin Copeland +Date: Sat Jul 11 21:19:54 2020 -0400 + + export agencies + +commit 313db28a7d820a6ce8a37a5cc3eb9c4edef768f4 +Author: Colin Copeland +Date: Sat Jul 11 21:19:33 2020 -0400 + + remove old mapper tests + +commit 0b057e697bbd0b2a21f4edc9ad47cfe5334d7cb5 +Author: Colin Copeland +Date: Fri Jul 10 13:29:35 2020 -0400 + + first pass at export.forms refactor + +commit c27b8cc2c59c257cd56adfbc12a33303a21f17e2 +Author: Colin Copeland +Date: Thu Jul 9 21:20:09 2020 -0400 + + map addl cr_285 fields + +commit 392179a3cb381145ffd5972051461bc517e09e2c +Author: Colin Copeland +Date: Thu Jul 9 18:21:41 2020 -0400 + + add utility for mapper to use petition-specific field names + +commit e28d5d034d1038af85ef6ef1aa8ad28baaa8e62b +Author: Colin Copeland +Date: Thu Jul 9 14:35:19 2020 -0400 + + add 285 form + +commit 22f88dff159f22c575f7de92ef1005b510a967a8 +Author: Colin Copeland +Date: Thu Jul 9 14:35:11 2020 -0400 + + simplify form type display + +commit 48538fec4423a3912c0cfd9f733b4c80fba68bbb +Author: Colin Copeland +Date: Thu Jul 9 10:06:37 2020 -0400 + + remove unused imports + +commit 68dde5ff85d58ac52f47cc8ffef1fe0afc18bd6d +Author: Colin Copeland +Date: Thu Jul 9 10:06:23 2020 -0400 + + pull offenses from petition.offense_records + +commit ae231696a83cc98f320abc2b22621d60ee55d22a +Author: Colin Copeland +Date: Thu Jul 9 09:57:02 2020 -0400 + + pass form type to pdf writer + +commit 358840c20f72d5d083934017a6e4f040534cc677 +Author: Colin Copeland +Date: Wed Jul 8 21:20:21 2020 -0400 + + clean up petition admin + +commit 0974d60f1e29dc1ce8781a07dc3950d0b36c4996 +Author: Colin Copeland +Date: Wed Jul 8 21:15:54 2020 -0400 + + first pass at AOC-CR-285 support + +commit 62a37b38715a7b022cb5f48d01333f244949f426 +Author: Rob Gries +Date: Tue Jul 7 15:19:09 2020 -0400 + + Submit address fields during petition generation + +commit 750c896bb608b7c84d5394a177d822fe2bc6b519 +Author: Rob Gries +Date: Tue Jul 7 14:18:03 2020 -0400 + + Allow empty address line 2 and add tests + +commit 4f57374b5c4e640a69ccf9b76b6965d71e59bd39 +Author: Rob Gries +Date: Tue Jul 7 12:12:33 2020 -0400 + + Add petitioner name and address fields to generate-petition endpoint + +commit a8755c51e1bc011211a88a425160faea84dd1823 +Merge: 3871957 df563e2 +Author: Colin Copeland +Date: Tue Jul 7 10:23:11 2020 -0400 + + Merge pull request #144 from robert-w-gries/feature/password_reset + + Add Django views for password reset + +commit df563e2e8d144e92536c1ea5c2658ab25d6e754d (rob/feature/password_reset) +Author: Rob Gries +Date: Fri Jun 26 10:10:10 2020 -0400 + + Add Forgot Password link to login page + +commit 3871957a455e183c5cf32482fb593efaebf18253 +Merge: 1fc9fbc b00b018 +Author: Colin Copeland +Date: Tue Jun 23 21:20:17 2020 -0400 + + Merge pull request #147 from deardurham/fix-disposition-code-upper-tests + + fix disposition code upper + +commit b00b01814a906f70266ec9b28ffbccf4fcb9ffad +Author: Colin Copeland +Date: Tue Jun 23 21:14:25 2020 -0400 + + fix disposition code upper + +commit 1fc9fbc6e84b021b6e17b3c848675c4d2ecabf8f +Merge: 6989ac2 94d7a4d +Author: Colin Copeland +Date: Tue Jun 23 19:44:36 2020 -0400 + + Merge pull request #146 from deardurham/upper_case_disposition_methods + + Upper case disposition methods in map + +commit 94d7a4daf8d3e6015106a3a1568807371347eb17 +Author: George Helman +Date: Tue Jun 23 19:40:53 2020 -0400 + + Upper case disposition methods in map + +commit 6989ac29bf62157a9bd931057715d0af0aff7f08 +Merge: 2adefeb c21511f +Author: Colin Copeland +Date: Tue Jun 23 19:22:05 2020 -0400 + + Merge pull request #145 from deardurham/disposition_method_code_map_bug + + Fix disposition method code map bug + +commit c21511f8a212322664e68021d93dbf94c09442e4 +Author: George Helman +Date: Tue Jun 23 19:20:23 2020 -0400 + + Fix disposition method code map bug + +commit 2adefeb0dc9380480a4df51d7be454b41cca902d +Merge: ec9d159 c68c520 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jun 23 19:08:18 2020 -0400 + + Merge pull request #143 from deardurham/33-parse-combined-pdfs + + Parse combined pdfs + +commit 30d4a84efab7d15a72b4cae07020fe356b4d9d03 +Author: Rob Gries +Date: Tue Jun 23 19:04:50 2020 -0400 + + Add Django views for password reset + +commit c68c520b358f38cba60794e6bd81871f7d491fdf +Author: Colin Copeland +Date: Tue Jun 23 18:56:55 2020 -0400 + + update ciprs-reader to v1.1.0 + +commit bfbb62b264584b13d057c2bcbb9df10a8a758e1f +Author: Colin Copeland +Date: Tue Jun 23 18:56:27 2020 -0400 + + speed up tests in docker + +commit bdccbc438cc60c2ebecee38efd4f221738ac962a +Merge: bc30d58 ec9d159 +Author: Colin Copeland +Date: Tue Jun 23 18:55:42 2020 -0400 + + Merge branch 'master' into 33-parse-combined-pdfs + +commit ec9d159de774270be42879b186d236667a087149 +Merge: 4f2cda2 1b857f5 +Author: Colin Copeland +Date: Tue Jun 23 18:51:58 2020 -0400 + + Merge pull request #137 from deardurham/populate_disposition_method_codes + + DP-119 Populate petition with disposition codes + +commit 1b857f5beeab7697ef77b5f1c12741a69b1e2a61 +Author: Colin Copeland +Date: Tue Jun 23 18:41:17 2020 -0400 + + parametrize on dismissed disposition methods + +commit bfef186c6c9dd9c325b6ac6b17b20a8be73fa31b +Author: Colin Copeland +Date: Tue Jun 23 18:31:13 2020 -0400 + + remove breakpoint + +commit bc30d588b6346d17771b846df9d217c5b7a6650c +Author: Colin Copeland +Date: Sat Jun 20 21:50:32 2020 -0400 + + set label in refresh method + +commit 3ba1cd0cf29ff93caac4cf6b10b24d964cbf171d +Author: Colin Copeland +Date: Sat Jun 20 21:46:27 2020 -0400 + + add county to list filter + +commit 487f779991d82bffb4334dff9cbc9ad7044de4f9 +Author: Colin Copeland +Date: Sat Jun 20 21:43:55 2020 -0400 + + add addl fields to admin list + +commit df8dfa983697b1c78f2951766eb5478b6f9867ac +Author: Colin Copeland +Date: Sat Jun 20 21:43:42 2020 -0400 + + update test to expect list + +commit 10d17358419c216ebd0d59fbb69c2ee2f729d505 +Author: Colin Copeland +Date: Sat Jun 20 21:32:58 2020 -0400 + + update ETL to expect list of records from ciprs-reader + +commit 1595a7829d545eade173a504e30f7816347a5704 +Author: George Helman +Date: Sat Jun 20 16:33:21 2020 -0400 + + DP-119 Populate petition with disposition codes + +commit 4f2cda2959baa972c860da653ed0c3fcd59cf215 +Merge: 98c4b60 6f50a77 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Thu Jun 18 15:23:10 2020 -0400 + + Merge pull request #138 from deardurham/multiple-offenses + + WIP Multiple offenses + +commit 6f50a77131eafd36dfef6fdcb82930ccdef7473a (origin/multiple-offenses) +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Thu Jun 18 15:22:04 2020 -0400 + + Update base.txt + +commit 5337f45c5ea8cbd454a95893f65c116fd820ba37 +Author: Colin Copeland +Date: Wed Jun 17 22:07:09 2020 -0400 + + order by file no after date + +commit 8003d605801d1bfb98dde690d8a5dedaf490f4fb +Author: Colin Copeland +Date: Wed Jun 17 21:55:00 2020 -0400 + + make sure offenses are filtered by jurisdiction + +commit 457400b19053b2ce98e3b18e475a3e4378b68506 +Author: Colin Copeland +Date: Tue Jun 16 21:56:59 2020 -0400 + + update travis to Python 3.7 + +commit 98c4b6000dc415c2781d6198885b5e5019d58403 +Merge: d4308dc 8fc1f0c +Author: Colin Copeland +Date: Tue Jun 16 21:50:53 2020 -0400 + + Merge pull request #136 from robert-w-gries/docs/onboarding + + Update docs for new devs and change default proxy + +commit d4308dc5ec28ce299ccdaf75442d1ee73894b983 +Merge: 1dffacb a993935 +Author: Colin Copeland +Date: Tue Jun 16 21:49:43 2020 -0400 + + Merge pull request #134 from robert-w-gries/autocomplete_fix + + Filter out agencies that were already selected from autocomplete + +commit 15b5bae9b807592fc2e71801b4334f235c8ebe33 +Author: Colin Copeland +Date: Tue Jun 16 21:48:32 2020 -0400 + + remove old tests + +commit a4f28f20631b9f7333daa794c914e25c862b22b0 +Author: Colin Copeland +Date: Tue Jun 16 21:45:12 2020 -0400 + + more refresh tests + +commit 909d66e76ca6aae17c2dc41e1f97e9e984ab6945 +Author: Colin Copeland +Date: Mon Jun 15 22:19:09 2020 -0400 + + upgrade ciprs-reader; refactor refresh process + +commit d1ebd1dd3c720bd7754e4d3a3eae56d6d83a1cfa +Author: Colin Copeland +Date: Mon Jun 15 22:18:06 2020 -0400 + + use python 3.7 on Heroku + +commit 44b18b17fc59acdb6748e29d9bbd392b8463ab56 +Author: Colin Copeland +Date: Mon Jun 15 22:17:46 2020 -0400 + + use alpine 10 for python 3.7 + +commit 8fc1f0c7f5703df6c13a6ca50e21fe5af04d13e8 (rob/docs/onboarding) +Author: Rob Gries +Date: Thu Jun 11 11:35:41 2020 -0400 + + Rewording the bit about staging account + +commit 0d5d34680bb66064280b056e87c3031f53a5bfce +Author: Rob Gries +Date: Thu Jun 11 11:30:03 2020 -0400 + + Update readme + default proxy + +commit 1dffacbfab251f8f2852e8121f4703f7d250bf8f +Merge: c4a196b 1db7338 +Author: Colin Copeland +Date: Tue Jun 9 21:28:26 2020 -0400 + + Merge pull request #132 from robert-w-gries/feature/admin_url + + Add admin link to navigation bar + +commit a9939350fcdba6842a02a4b1d02b257b0ea1fa9b (rob/autocomplete_fix) +Author: Rob Gries +Date: Tue Jun 9 19:40:52 2020 -0400 + + Filter out agencies that were already selected from autocomplete + +commit c4a196b7c262a8f38b870c4ddab02cdd81296ebd +Merge: 5e87016 1e05f6d +Author: Colin Copeland +Date: Tue Jun 9 09:53:19 2020 -0400 + + Merge pull request #133 from deardurham/dependabot/pip/django-2.2.13 + + Bump django from 2.2.12 to 2.2.13 + +commit 1e05f6d1634e02e9a0e2ede0062d36e5a7512157 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jun 5 22:15:42 2020 +0000 + + Bump django from 2.2.12 to 2.2.13 + + Bumps [django](https://github.com/django/django) from 2.2.12 to 2.2.13. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.12...2.2.13) + + Signed-off-by: dependabot[bot] + +commit 1db7338d9393898b980e926ba21be83ae462c5c4 (rob/feature/admin_url) +Author: Rob Gries +Date: Fri Jun 5 15:56:15 2020 -0400 + + Fix access of admin_url from user data + +commit c3b0847460b392e3489eabe4f6dff642c87c92ef +Author: Rob Gries +Date: Thu Jun 4 14:30:27 2020 -0400 + + Retrieve user admin url on non-login page render + +commit bba0500fc810ecfe5c91673a4dfef3b91696f75f +Author: Rob Gries +Date: Wed Jun 3 19:43:44 2020 -0400 + + WIP add admin link + +commit 5e87016956bedde35b70a63898673d0eee50eec1 +Author: Colin Copeland +Date: Fri Jun 5 08:58:52 2020 -0400 + + make request optional in UserSerializer + +commit 5295a2ea24b01e43c87e74222a64608c2f399432 +Author: Colin Copeland +Date: Sun May 31 16:17:30 2020 -0400 + + disable admin url for now + +commit 08ddf6cda064df01e7f3effcf3832a9cfe7735d3 +Merge: 706aa81 404e0e2 +Author: Colin Copeland +Date: Sun May 31 15:58:52 2020 -0400 + + Merge pull request #99 from deardurham/upgrade + + Upgrade #7 + +commit 404e0e226bd3e5a662c0069eef1713ee2f57b11a (rob/upgrade, origin/upgrade) +Merge: 0834355 706aa81 +Author: Colin Copeland +Date: Sun May 31 15:53:42 2020 -0400 + + Merge branch 'master' into upgrade + +commit 0834355c271e7b48e29e1ad52b27f5142531cae8 +Merge: 04ae853 8235971 +Author: Colin Copeland +Date: Sun May 31 15:51:48 2020 -0400 + + Merge branch 'upgrade-pre-merge' into upgrade + +commit 8235971cb2a1bf40391e71ff5dc1e0b48fc47f52 +Author: Colin Copeland +Date: Sun May 31 15:51:27 2020 -0400 + + restore db docs + +commit 279d8a76e6468def60e8fbdb32716f1a46433b4e +Author: Colin Copeland +Date: Sun May 31 15:50:39 2020 -0400 + + return admin url + +commit 04ae8536bb527272f6c30a08fcf3a77e65c92531 +Merge: ffa019f 6d1610a +Author: Colin Copeland +Date: Sun May 31 15:15:39 2020 -0400 + + Merge pull request #129 from deardurham/upgrade-pre-merge + + Upgrade pre merge + +commit 6d1610a30576600c4b2d7c7b27b524e2ec87bbff +Author: Colin Copeland +Date: Sun May 31 15:11:31 2020 -0400 + + add catch all url to pass to React SPA + +commit 69acc7b55219d4762b073698e37e030043442136 +Author: Colin Copeland +Date: Sun May 31 14:52:49 2020 -0400 + + add psql env vars to django local dev env + +commit be09c6adc21a188d5a7fc694fc5c30368d1647ef +Author: Colin Copeland +Date: Sun May 31 14:22:22 2020 -0400 + + clean up django setup docs + +commit e94b30ac89399528f81d0b6f13b5823d57439ac5 +Author: Colin Copeland +Date: Sun May 31 14:10:06 2020 -0400 + + remove unused merge file + +commit 53073f8627f951768580e8f5279b0bf44fc791d1 +Author: Colin Copeland +Date: Sun May 31 14:09:19 2020 -0400 + + remove env.example file since local.yml isn't needed anymore + +commit 15ef335b8eb56bcca9b9f6f418e863c86c1ad0b6 +Author: Colin Copeland +Date: Sun May 31 14:08:42 2020 -0400 + + remove unused heroku.yml + +commit 3af45c61b30831865080e3b7f648206571337ce3 +Author: Colin Copeland +Date: Sun May 31 14:08:11 2020 -0400 + + remove production compose file + +commit 432bc436f4816d6b6a391e4947950f677d51e8b2 +Author: Colin Copeland +Date: Sun May 31 14:07:08 2020 -0400 + + remove unused dockerfile + +commit d75cb33c27740a938dfada618380209f6b24c397 +Author: Colin Copeland +Date: Sun May 31 14:04:47 2020 -0400 + + remove commented out services + +commit eec1c411480e446a98ea9b71e346378de01fc744 +Author: Colin Copeland +Date: Sun May 31 14:03:47 2020 -0400 + + rename docker-compose to default + +commit ffa019fa0eb5260e07e455ad124b3c036a06b18d +Author: Colin Copeland +Date: Thu May 28 22:11:18 2020 -0400 + + make identify_distinct_petitions use distinct() + +commit b7efce430ca618679ff515c0223f67585cb42be5 +Author: Colin Copeland +Date: Thu May 28 21:45:03 2020 -0400 + + autocomplete agencies + +commit 6488b4abb2bdc08c87cf7c29d9348458b9a6080e +Merge: 5bf2af3 c91cb8e +Author: Colin Copeland +Date: Thu May 28 21:32:48 2020 -0400 + + Merge pull request #123 from deardurham/serve-frontend + + [WP-25] Serve frontend + +commit c91cb8e48d262c273732a2c0f4d9e6181d3d914a +Merge: acfb106 5bf2af3 +Author: Colin Copeland +Date: Thu May 28 21:26:20 2020 -0400 + + Merge branch 'upgrade' into serve-frontend + +commit 5bf2af36966aa3ae3cc5155240d7a2ed78acfa79 +Merge: e3bd1a6 e24ca7f +Author: Colin Copeland +Date: Thu May 28 21:23:05 2020 -0400 + + Merge pull request #122 from deardurham/DP-/form-additions-and-petition-dl + + [DP-6] generate PDF and also some form additions + +commit e24ca7f13678a95b610cae79549792f39756afd0 (rob/DP-/petition-status, origin/DP-/petition-status) +Author: Michael Ashton +Date: Thu May 28 16:16:06 2020 -0400 + + default license state to nc, fix login text + +commit acfb106d37da87f6281d2e294c221dc9f5ee75c0 +Author: Colin Copeland +Date: Wed May 27 21:38:52 2020 -0400 + + fix frontend context + +commit 697caa54464ecfff5c40bbed8198e441358177a3 +Author: Colin Copeland +Date: Wed May 27 21:36:44 2020 -0400 + + remove FE dir + +commit e1ca5218df494ab73557159e18ca5f648881bb3b +Author: Colin Copeland +Date: Wed May 27 21:34:58 2020 -0400 + + combine .gitignore + +commit 96dabe368d2067e04938abb30909ed464d23d937 +Author: Colin Copeland +Date: Wed May 27 21:34:14 2020 -0400 + + combine dockerignore + +commit 0569494bb0837929e59af0328ed11ae5427c6396 +Author: Colin Copeland +Date: Wed May 27 21:33:05 2020 -0400 + + move to rood readme + +commit d3264c6581cd4c24b470365362ba93e29d80483b +Author: Colin Copeland +Date: Wed May 27 21:32:42 2020 -0400 + + move FE content to root readme + +commit 42b8dd9c2d37c9be905206fd112b048c83e457ad +Author: Colin Copeland +Date: Wed May 27 17:40:29 2020 -0400 + + update FRONTEND_BUILD_DIR to reference from root dir + +commit 268a254e7dfe3f0c7e9bb0a5312fb732743b6cef +Author: Colin Copeland +Date: Wed May 27 17:40:10 2020 -0400 + + move react app to base dir + +commit 3697bc8ddfe2be3471f9dcd24eb369284c817600 +Author: Colin Copeland +Date: Wed May 27 17:34:27 2020 -0400 + + add react build dirs to django's staticfiles and templates + +commit 8bddaa04fc704e5228bd4162341b9fbcef1d8241 +Author: Colin Copeland +Date: Wed May 27 17:33:49 2020 -0400 + + add django view to serve React app + +commit e2575a22a1823c5b0fa9cd620cdb523d53a587c2 +Author: Colin Copeland +Date: Wed May 27 17:33:25 2020 -0400 + + remove existing gulpfile/package.json + +commit 03e972a050df622a43b271fe3dc13aea02ea2543 +Author: Colin Copeland +Date: Wed May 27 17:02:28 2020 -0400 + + remove unused user modules + +commit ab0d27b121f22db51eda27c584c72b9131d5fe83 +Author: Colin Copeland +Date: Wed May 27 16:59:28 2020 -0400 + + remove user tests + +commit 5c161962eaa779d4f6175bd06eb4daef626edc7e +Author: Colin Copeland +Date: Wed May 27 16:52:05 2020 -0400 + + remove static files + +commit 7cf7aa796e42a9eb522c31f2018bd78df4e492d2 +Author: Colin Copeland +Date: Wed May 27 16:50:55 2020 -0400 + + remove django templates + +commit 84c6cf5567e39c70bd3f778df54de02f6929bdc3 +Author: Michael Ashton +Date: Wed May 27 14:26:04 2020 -0400 + + fe validation of petition inputs, successful pdf generation and view + +commit 9db4c5c493f83581eae0d4938baf4fe53211447e +Merge: 7321909 e3bd1a6 +Author: Michael Ashton +Date: Wed May 27 13:05:11 2020 -0400 + + Merge branch 'upgrade' into DP-/batch-form-additions + +commit 3fc1268ccae4f76598c9768b3806caf5f0194f64 +Author: Colin Copeland +Date: Wed May 27 13:03:05 2020 -0400 + + remove old django views + +commit 732190956e2f9368f980fa2f6a19586e435576e7 +Author: Michael Ashton +Date: Wed May 27 13:02:00 2020 -0400 + + validate petitoin form + +commit e3bd1a619ccc4c331014c80ef233805f3c579046 +Merge: 4c7e7dd 53ef56f +Author: Colin Copeland +Date: Wed May 27 12:51:04 2020 -0400 + + Merge pull request #121 from deardurham/DP-37-filtering + + [DP 37] filtering + +commit 4c7e7dd04fde047beae549b5e7854be8ff126b1c +Merge: 6beeeb4 c70754f +Author: Colin Copeland +Date: Wed May 27 12:49:45 2020 -0400 + + Merge pull request #117 from deardurham/DP-24/select-petition + + [DP-24] Select (static) agencies + +commit 53ef56f14a420444bad326dfaed72d738771ba59 +Author: Colin Copeland +Date: Wed May 27 12:48:19 2020 -0400 + + remove unused module + +commit c445d19016e52e7600f58e88345af38d029abeec +Author: Colin Copeland +Date: Wed May 27 12:47:24 2020 -0400 + + add SearchFilter and DjangoFilterBackend to ContactViewSet + +commit 8266a60e1de8d71f1c0e4e9615def3aabdf6f00c +Merge: 0fdea14 50524c5 +Author: Michael Ashton +Date: Wed May 27 12:28:04 2020 -0400 + + Merge branch 'DP-24/select-petition' into DP-/batch-form-additions + +commit c70754f26e47e9ec9b973c8dcf25607ff7de14b7 +Merge: 63946d9 6beeeb4 +Author: Colin Copeland +Date: Wed May 27 12:27:40 2020 -0400 + + Merge branch 'upgrade' into DP-24/select-petition + +commit 63946d930e0c451eddd663b7bb776c40fee9ee6f +Author: Colin Copeland +Date: Wed May 27 12:26:43 2020 -0400 + + fix petition attributes + +commit d6d4680e2b5a2b63ffab30813deb7b78642a3cb8 +Author: Colin Copeland +Date: Wed May 27 12:22:27 2020 -0400 + + re-add set* useStates to context + +commit 73542e4b287a76ce63c734af485bf557433b7218 +Author: Colin Copeland +Date: Wed May 27 12:22:04 2020 -0400 + + remove unused import + +commit a432d73aebac83d55329a3d66687fc398e1cfe78 +Author: Colin Copeland +Date: Wed May 27 12:21:58 2020 -0400 + + add closing curly brace + +commit 8555a35424c9f8d86fd9495c6dc08c9208a744dc +Author: Christopher Dixon +Date: Wed May 27 12:17:49 2020 -0400 + + Added filters to ContactViewSet + +commit 0fdea149b6b18d137df821cab351f86549dfc18d +Author: Michael Ashton +Date: Wed May 27 12:17:47 2020 -0400 + + add us_states constant, add license state input + +commit 1d95e762b3bcce3e09b46847f80d9a53248cf00b +Author: Colin Copeland +Date: Wed May 27 12:17:17 2020 -0400 + + Update frontend/src/components/elements/Badge/Badge.styled.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit f996ae3d58ef6d54a237d9ac713f4d4e6f6e7a98 +Author: Colin Copeland +Date: Wed May 27 12:17:01 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/PetitionListItem.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit 547619c4567e0214356d05db7f79827762a20e48 +Author: Colin Copeland +Date: Wed May 27 12:16:53 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/GenerationPage.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit fa0140bbe1cb77ae8d74ec7ad8a7dd78be392edd +Author: Colin Copeland +Date: Wed May 27 12:16:45 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/GenerationPage.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit c3a31367eff6d83615adeaf839c93c692322fb08 +Author: Colin Copeland +Date: Wed May 27 12:16:35 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/GenerationPage.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit b9cc0bff055ecb82525b4ed9e810c96fb563f59e +Author: Colin Copeland +Date: Wed May 27 12:16:10 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/GenerationPage.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit 9e5a464399d9902b54ee919479b8c30a773fd3b2 +Author: Colin Copeland +Date: Wed May 27 12:16:01 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/GenerationPage.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit 02f15186b6e3792be1699ff2ab7c00d044375c11 +Author: Colin Copeland +Date: Wed May 27 12:15:36 2020 -0400 + + Update frontend/src/components/pages/GenerationPage/GeneratePetitionModal/AgencyAutocomplete.js + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit 50524c510bd5dad0a1058bf6b84f53339a2e1fd7 +Author: Michael Ashton +Date: Wed May 27 10:41:45 2020 -0400 + + add close to generation modal + +commit dddf2a1d567642bccc1421990ee5ce7263fc6ef4 +Author: Michael Ashton +Date: Wed May 27 09:52:16 2020 -0400 + + switch lightgrey to greyScale + +commit 6beeeb41429392101f3d349a16930b850e5e8102 +Author: Michael Ashton +Date: Wed May 27 09:18:25 2020 -0400 + + remove frontend cl and superfluous text + +commit a4b4ed40cad86595e24a4298740196e795aa1081 +Merge: b479476 1e8de28 +Author: Michael Ashton +Date: Wed May 27 09:04:48 2020 -0400 + + Merge branch 'upgrade' of github.com:deardurham/dear-petition into upgrade + +commit 34e1d957f54357b587fb70aa0a25bfb1f1c95601 +Merge: 49eeeee 2f7737e +Author: Colin Copeland +Date: Tue May 26 22:19:16 2020 -0400 + + Merge branch 'DP-24/generate-page' into DP-24/select-petition + +commit 1e8de28dbb0f3750599a1a330ab5c4db7fcdad4f +Merge: 509d4c5 2f7737e +Author: Colin Copeland +Date: Tue May 26 22:09:40 2020 -0400 + + Merge pull request #118 from deardurham/DP-24/generate-page + + [DP 24] generate page + +commit 2f7737e8d259dbd600f23105e335e0615b23ff32 +Author: Colin Copeland +Date: Tue May 26 22:05:56 2020 -0400 + + return jurisdiction display value + +commit 0a7350700c4d355879cb40212537dfa807c35904 +Author: Colin Copeland +Date: Tue May 26 21:58:01 2020 -0400 + + update ciprs-reader to v0.0.16 + +commit 5767eac457cbc9f9f708c3b8180c46ea90a305a2 +Author: Colin Copeland +Date: Tue May 26 21:46:49 2020 -0400 + + add petition.type logger + +commit ecdd98ef51852aef62305a6998ddde301f77884f +Author: Colin Copeland +Date: Tue May 26 21:36:29 2020 -0400 + + fix serializer during initial migrations + +commit 3ef8699079ed70ff3c54cf183f79b986669874cc +Author: Colin Copeland +Date: Tue May 26 21:26:49 2020 -0400 + + set code to None since field supports null values + +commit bfacbdee78f4fd3f52226b67b7383a2d504771ea +Author: Colin Copeland +Date: Tue May 26 21:26:33 2020 -0400 + + fix api tests + +commit 8e95a7854935e305ec84278a0e994078ed6054f6 +Merge: 1e62828 509d4c5 +Author: Colin Copeland +Date: Tue May 26 21:13:53 2020 -0400 + + Merge branch 'upgrade' into DP-24/generate-page + +commit b4794763498a25e4d21b43cd03ac29e855358757 +Merge: f3f60de 509d4c5 +Author: Michael Ashton +Date: Tue May 26 18:10:52 2020 -0400 + + Merge branch 'upgrade' into DP-/auth-handshake + +commit 509d4c5b5be6892980e02b34bdebf6c8e12ec7a2 +Merge: e544614 bc22b8a +Author: Michael Ashton +Date: Tue May 26 18:10:18 2020 -0400 + + merge DP-/auth-revamp into upgrade + +commit bc22b8a2cedc3f27020f3ed72287c860a096f1ea +Author: Michael Ashton +Date: Tue May 26 18:06:41 2020 -0400 + + oy. + +commit 91c4f335e2287de1c25b28740f8b890f1fc37ec0 +Author: Michael Ashton +Date: Tue May 26 17:38:41 2020 -0400 + + updates failing tests + +commit eff61e531c23a477abfc4b86e8c68b99a950b4f1 +Author: Michael Ashton +Date: Tue May 26 17:28:07 2020 -0400 + + bail on JWTHttpOnlyCookieAuthentication.authenticate earlier + +commit 49eeeee40b845e91dc338163b7dd8e7dc81ad084 +Merge: 01feabe 93377f0 +Author: Colin Copeland +Date: Tue May 26 17:22:47 2020 -0400 + + Merge branch 'upgrade' into DP-24/select-petition + +commit 01feabe08ca74162f89755d331af3fdc340e8385 +Merge: 0fce609 f3f60de +Author: Colin Copeland +Date: Tue May 26 17:13:22 2020 -0400 + + Merge branch 'DP-/auth-handshake' into DP-24/select-petition + +commit 1e628288ca9f7dbfd730173ece5860a38494592a +Author: Michael Ashton +Date: Tue May 26 17:13:00 2020 -0400 + + generate page mvp + +commit b39124eb4e4be89ce213b0838afd408328814fbd +Merge: aaf41d3 e544614 +Author: Michael Ashton +Date: Tue May 26 16:13:54 2020 -0400 + + Merge branch 'upgrade' into DP-24/generate-page + +commit aaf41d3e17c55c7687843dd2f38b583eb78cdf92 +Author: Michael Ashton +Date: Tue May 26 16:13:29 2020 -0400 + + wip + +commit de93fec9c1ee84ebad1b63c626469f8b22eba9f4 +Merge: 98aefda f3f60de +Author: Michael Ashton +Date: Tue May 26 13:26:05 2020 -0400 + + Merge branch 'DP-/auth-handshake' into DP-24/generate-page + +commit f3f60decc50f49d217a2d6d81f033f146af54119 +Author: Michael Ashton +Date: Tue May 26 13:25:33 2020 -0400 + + double submit csrf token + +commit 98aefdaf62eb32babea3caca049e9309745bec9c +Author: Michael Ashton +Date: Tue May 26 11:22:12 2020 -0400 + + merge develop, merge migratoins + +commit 430898da10ef5237a4d09cb72aa26d8eb6d434f5 +Merge: c589fdc 19dd369 +Author: Michael Ashton +Date: Tue May 26 11:09:45 2020 -0400 + + Merge branch 'DP-/auth-handshake' into DP-24/generate-page + +commit c589fdc606e740c5d610b1fff2ad0ec93bff843e +Merge: 7e15f37 3222a12 +Author: Michael Ashton +Date: Tue May 26 11:02:51 2020 -0400 + + merge authrevamp + +commit 7e15f37d0eab5d5b91e6031eee4e31f0804d7204 +Author: Michael Ashton +Date: Tue May 26 11:01:44 2020 -0400 + + fixes a few styling items + +commit e54461485fa50339f4ce132e4f9eff4047203a8c +Merge: 93377f0 8055d19 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Tue May 26 10:18:23 2020 -0400 + + Merge pull request #114 from deardurham/DP-28-permissions + + DP-28 + +commit 00696a14c9fbf12c4b47f823c04257dbc88f5018 +Author: Michael Ashton +Date: Tue May 26 08:38:50 2020 -0400 + + snag a few updates from DP-/auth-handshake + +commit 0fce6094cf00edcad491f494eb696f21345318a4 +Author: Colin Copeland +Date: Mon May 25 16:18:02 2020 -0400 + + remove unused import + +commit 462a026d511e72a8ead3bc59644ee6ebb2b64f46 +Author: Colin Copeland +Date: Mon May 25 16:17:34 2020 -0400 + + fix styling around generate button + +commit 2c7c65c8af4e97afdbfc31fc4a19c89c038db8be +Author: Colin Copeland +Date: Mon May 25 16:16:45 2020 -0400 + + remove unused imports + +commit f6a27f73985adcbf48474eba4ea5a51ba87fe8c0 +Author: Colin Copeland +Date: Mon May 25 16:13:12 2020 -0400 + + autosuggest style improvements + +commit 60b09ecc8f1d9aaac58b2a00f98cec77cf7ace8f +Author: Colin Copeland +Date: Mon May 25 15:23:02 2020 -0400 + + store agencies in GenerationContext + +commit 112eec4570fd6b6f3dd561cd6b8593caf552c75b +Author: Colin Copeland +Date: Mon May 25 15:14:27 2020 -0400 + + fix removeAgency + +commit 10142f25375f755a4b603caf4a25202bde3ed0c3 +Author: Colin Copeland +Date: Mon May 25 15:07:51 2020 -0400 + + first pass at agency autocomplete + +commit 0634a106d5b6c40c0e36ae5474459a51d1ee3e28 +Author: Colin Copeland +Date: Mon May 25 13:58:42 2020 -0400 + + close modal with esc key + +commit a5416b9eaf003e895cdcc0681cbe1ec580ea9444 +Author: Colin Copeland +Date: Mon May 25 13:53:49 2020 -0400 + + add court/county + +commit 592859cfa630e03b8411ed7eb619bfd57132b1fd +Author: Colin Copeland +Date: Sun May 24 22:37:17 2020 -0400 + + add generationpagemodal + +commit 3404b453dc032a79b03a17e5da0be08bdbbe7f38 +Author: Colin Copeland +Date: Sun May 24 22:37:03 2020 -0400 + + remove unused import + +commit ecb54f6c2b9097e8454ee411ac8d3df773125f8c +Author: Colin Copeland +Date: Sun May 24 22:36:37 2020 -0400 + + fix lint error + +commit 8055d195d0956613ba85b9b8def7e28c5cc9cf36 +Author: Christopher Dixon +Date: Sun May 24 17:10:45 2020 -0400 + + updated queryset and added test. + +commit e2e3b367413e91549a23a2a81ae20fdf354bcd3e +Author: Christopher Dixon +Date: Sun May 24 15:58:22 2020 -0400 + + Filtering on BatchViewSet. User restricted to viewing batches they have created unless they are superusers. + +commit 3ae52cfd1c0727832c211636f8063643ff51d14c +Author: Colin Copeland +Date: Sun May 24 15:43:26 2020 -0400 + + add GenerationContext + +commit 93377f0f5f3efff271734e7b4e7d6b6cd6b6d06d +Author: Colin Copeland +Date: Sun May 24 14:41:16 2020 -0400 + + update ciprs record to v0.0.15 + +commit 2f18f09be0759dd8160ff2ae41e9cbe3c0a2bc6b +Merge: 1ef0b23 bef10ed +Author: Colin Copeland +Date: Sun May 24 14:33:21 2020 -0400 + + Merge pull request #113 from deardurham/DP-36 + + [DP-36] + +commit bef10ed09889532bcc55848ce6e1180345d24cce +Author: Christopher Dixon +Date: Sat May 23 23:00:12 2020 -0400 + + updated comment + +commit 25604b80f6b1809878a9ed9e57bb6ff7aedf9180 +Author: Christopher Dixon +Date: Sat May 23 22:59:01 2020 -0400 + + added petition_date utility function + +commit e35127547fb493b00711d4cbb2a6b2907c4a0545 +Author: Christopher Dixon +Date: Sat May 23 22:46:46 2020 -0400 + + prepend DISPOSITION_METHODS in constants.py with DISMISSED + +commit dea980cd4b1d3e3d39440c2fbceb65b953d2dc33 +Author: Christopher Dixon +Date: Sat May 23 02:06:32 2020 -0400 + + tests for map_offenses + +commit 96322ccff41f8099de0f7ed068f64463416fbc97 +Author: Christopher Dixon +Date: Sat May 23 01:45:26 2020 -0400 + + first map_offenses test passes + +commit 2194ff1ea6b31335143ad2d220246ba382956241 +Author: Christopher Dixon +Date: Sat May 23 00:56:21 2020 -0400 + + Remove test_batch_get_offenses + +commit bca43ecc395b4fd4c701828aa9f41a1c390b7b5e +Author: Christopher Dixon +Date: Sat May 23 00:50:59 2020 -0400 + + map_offenses defintion now has body logic + +commit 19dd369075208855e67eab2c3aabd766434b949d +Author: Michael Ashton +Date: Fri May 22 17:27:22 2020 -0400 + + auth handshake complete with logout, includes auth-revamp + +commit 1ef0b23280a1e63774f718ede61af506ca75df76 +Merge: 15693f5 b168a85 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Fri May 22 14:02:52 2020 -0400 + + Merge pull request #112 from deardurham/DP-35 + + [DP-35] + +commit b168a85cbf83254ddc3a32f072488e9c193e0284 +Author: Christopher Dixon +Date: Fri May 22 13:59:56 2020 -0400 + + add pytest.fixture decorator to dismissed_offense defintion + +commit 435581ab4d8306bccc200db30f07b523ae646c2f +Author: Christopher Dixon +Date: Fri May 22 13:56:11 2020 -0400 + + corrected typo + +commit 8aea6fd8e5adea4aaff86185053b7df9ca5d9552 +Merge: 59e8935 15693f5 +Author: Christopher Dixon +Date: Fri May 22 13:46:48 2020 -0400 + + merged upgrade into this branch + +commit 59e89356bebbc48d65531e1eab56bebdec257641 +Author: Christopher Dixon +Date: Fri May 22 13:21:42 2020 -0400 + + fix migration conflicts + +commit 15693f5668e8532e2ce18570b85f2068fc7f1f31 +Merge: 4bab73a 166c1fa +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Fri May 22 13:07:40 2020 -0400 + + Merge pull request #111 from deardurham/DP-30/dismissed-petition + + [DP-30] Dismissed petition support + +commit f0700e028f46e9325d17206d60370297a29bf9a6 +Author: Christopher Dixon +Date: Fri May 22 10:40:18 2020 -0400 + + fix test for SNN + +commit b3e2ec0ca14d0fed5991da4e09a646ff360de746 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Fri May 22 10:29:24 2020 -0400 + + Update dear_petition/petition/export/mapper.py + + Co-authored-by: Colin Copeland + +commit 3222a121ef7a5bda02ee78debdee317e8064b60a +Author: Michael Ashton +Date: Fri May 22 10:14:24 2020 -0400 + + slight refactor for clarity + +commit c84341dd4099678f5a28c05ee2b07787bd2ecba1 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Fri May 22 00:17:04 2020 -0400 + + start. agencies for loop at 1 + +commit 166c1fa6c31dedbe4dd305e3e30977c0fc45368b +Author: Colin Copeland +Date: Thu May 21 21:41:34 2020 -0400 + + remove failing assert that will randomly fail based on CIPRSRecordFactory county value + +commit 05796a30b38d910bd33bc9e2646b1c9a1233edc1 +Author: Michael Ashton +Date: Thu May 21 17:36:54 2020 -0400 + + add token delete for logout + +commit f5cd4a362c8466644dd2a37234d3ccedf80e5e77 +Author: Michael Ashton +Date: Thu May 21 16:55:01 2020 -0400 + + cookie-based jwt authentication working, including CSRF protection + +commit 04b29d1243cf076d11fe7993dcb5731bd7b397b9 +Author: Christopher Dixon +Date: Thu May 21 15:42:10 2020 -0400 + + revisions based upon colins review + +commit cf27f57d8f87e9574c4540e09aa425ebee298406 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Thu May 21 14:24:30 2020 -0400 + + use county and jurisdiction which is already set on petition model. + +commit 0d30798973291a5d478100f7b356355002d1a218 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Thu May 21 14:21:35 2020 -0400 + + Update dear_petition/petition/api/serializers.py + + Co-authored-by: Colin Copeland + +commit ad065f8d3f793a4be000090e7457b2f18fc84af5 +Author: Christopher Dixon +Date: Thu May 21 13:53:53 2020 -0400 + + Removed test around map_dict defintion (deleted). finished updating mapper and test_mapper. SSN is not rendering on petition although data[SSN] is correct. + +commit 96345352d6e44123278d19cb38b9c2e7f1aaaea5 +Author: Christopher Dixon +Date: Thu May 21 13:09:15 2020 -0400 + + Added custom migrations for migrating contact.state to use choices. + +commit 84906077e386c3771b100d11dec1dfb00be5da05 +Merge: 7ccc976 4bab73a +Author: Christopher Dixon +Date: Thu May 21 12:25:39 2020 -0400 + + Added Django-LocalFlavor to project, merged in upgrade branch + +commit 4bab73a85b5e7df2d32a6117718e638f070562ad +Merge: f2a2b5c 2909ae7 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Thu May 21 11:13:41 2020 -0400 + + Merge pull request #110 from deardurham/DP-34/map-petitioner + + [DP 34/map petitioner] + +commit 19be89f8951e8bfda45582858da6ecfa49415a85 +Author: Colin Copeland +Date: Wed May 20 16:25:15 2020 -0400 + + demonstrate get_offense_records + +commit 73ea09ef2d1e4f35d3aef74b3ec6ee9d6aac5647 +Author: Colin Copeland +Date: Wed May 20 16:24:58 2020 -0400 + + don't die if code key doesn't exist + +commit b6c91444ab3cbcddf637fab9f06351e1319b49f4 +Author: Colin Copeland +Date: Wed May 20 15:57:49 2020 -0400 + + add Petition.get_offense_records helper + +commit e5ea8e9352da64f6f25df7ed2871d323bfbd1f6d +Author: Colin Copeland +Date: Wed May 20 15:37:36 2020 -0400 + + create petitions during etl + +commit c94c7ab9c73d170cb8300e63d253f87f44830977 +Author: Colin Copeland +Date: Wed May 20 15:21:15 2020 -0400 + + add many test + +commit 7aacbd0476d8d9d87a657a8370246510dcc21f7f +Author: Colin Copeland +Date: Wed May 20 15:04:35 2020 -0400 + + add identify_distinct_petitions + +commit 2909ae7f3858238e95a3b5397b3880b628aade8f +Author: Christopher Dixon +Date: Wed May 20 14:53:57 2020 -0400 + + changes based upon colin's review + +commit 7ccc9761398b08f6e841578c4cd2f051544f0177 +Author: Christopher Dixon +Date: Wed May 20 14:08:58 2020 -0400 + + updated map_attorney defintion. + +commit 166c3674a57413f72eb47e2309c651dd562b9cea +Author: Christopher Dixon +Date: Wed May 20 12:00:42 2020 -0400 + + map-agencies code logic and tests + +commit 058101df6a08c79ec4e260cf35331f4ef94b5d9e +Author: Christopher Dixon +Date: Wed May 20 02:04:57 2020 -0400 + + map_agencies code logic is there. Now need to add test. + +commit 48ad5404df0666f7721e878bbcfef55fe18f0723 +Author: Christopher Dixon +Date: Wed May 20 01:46:48 2020 -0400 + + updated map_petitioner based upon findings in DP-35 + +commit cc23ab059b29bf301b365d5b9eb9910b1f893a7d +Author: Christopher Dixon +Date: Wed May 20 01:44:12 2020 -0400 + + updated map_petitioner and map_attorney, added test. + +commit d0ec3e522bfb155ad76999178a291cd9ef98d18e +Author: Christopher Dixon +Date: Tue May 19 20:07:07 2020 -0400 + + Added code for map_petitioner definition along with associated test. + +commit f4b9078d6c69aff879303ce0ff74f90830812340 +Author: Colin Copeland +Date: Tue May 19 22:34:50 2020 -0400 + + filter by jurisdiction + +commit 1c0f032023f0739bee608648af19493e3de30377 +Author: Colin Copeland +Date: Tue May 19 22:09:31 2020 -0400 + + add verdict and plea fields + +commit 3907e36af5c930fb51e447ca195f56fa97de1df8 +Author: Colin Copeland +Date: Tue May 19 22:09:02 2020 -0400 + + add petition.types package + +commit 9bedc97a94b0bde8c14976d628de45f5e48e12ad +Author: Christopher Dixon +Date: Tue May 19 20:07:07 2020 -0400 + + Added code for map_petitioner definition along with associated test. + +commit f2a2b5c0ccf8113fed673c86cfaa7536532d835e +Merge: 94f7288 4f09e6d +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Tue May 19 17:47:20 2020 -0400 + + Merge pull request #109 from deardurham/DP-6/export-package + + [DP-6] Export package + +commit 4f09e6d81b49a7b39658fc556913f42809ecf446 +Author: Christopher Dixon +Date: Tue May 19 17:08:21 2020 -0400 + + renamed buffer variable to genetered_petition_pdf + +commit 2ad1a2488b361d95fe9c2fc56e3047517d1640d0 +Merge: 2f11b80 94f7288 +Author: Christopher Dixon +Date: Tue May 19 16:40:04 2020 -0400 + + Merge branch 'upgrade' of github.com:deardurham/dear-petition into DP-6/export-package + +commit 94f72883baa917fa481ebd511501a01634a1315e +Merge: 10c03a1 932dcc5 +Author: Colin Copeland +Date: Tue May 19 16:39:23 2020 -0400 + + Merge pull request #108 from deardurham/DP-5/etl + + [DP-5] Add ETL and support /api/batch/ POST + +commit 932dcc5cd7ad7741e7b6c3fdc343b31c7199175b +Author: Christopher Dixon +Date: Tue May 19 16:37:21 2020 -0400 + + Overridden __init__ method on GeneratePetitionSerializer in order to initialize a petition's choices. + +commit 2f11b8040817d22b50c54fe323444c246b29f7da +Author: Colin Copeland +Date: Mon May 18 21:25:55 2020 -0400 + + temp fix for tests + +commit 3e1d451c7a1fd6fdcd117c3ba428874c0ee088c7 +Author: Colin Copeland +Date: Mon May 18 18:05:17 2020 -0400 + + add annotations support + +commit dbc7e1d8696a574c39f5769961c8fd47a9c839cd +Author: Colin Copeland +Date: Mon May 18 17:54:24 2020 -0400 + + simplify imports + +commit e397e372a349b99b20b6ee49826b291d8e04ebb9 +Author: Colin Copeland +Date: Mon May 18 17:45:33 2020 -0400 + + first pass at template annotation support + +commit eaadbb81cd5a29f39a5c87adc5a6cea702d4041b +Author: Colin Copeland +Date: Mon May 18 09:38:00 2020 -0400 + + disable code that is now broken + +commit 2d070d1aa6c19336f9892e56bbd60796f4cfdf21 +Author: Colin Copeland +Date: Mon May 18 09:37:46 2020 -0400 + + stub generate_petition_pdf + +commit d14bb242bd218679c2256c01f23e24605edab653 +Author: Colin Copeland +Date: Sun May 17 21:49:52 2020 -0400 + + simplify test + +commit 169d72f17dc0249f42305c10385fd93e75a6f955 +Author: Colin Copeland +Date: Sun May 17 15:34:00 2020 -0400 + + fix test name + +commit 029a99227e0599340ccceecc795b36b149bfc808 +Author: Colin Copeland +Date: Sun May 17 15:33:08 2020 -0400 + + first pass at export package + +commit e985b10b1b84eb2bd04ee968ce8944649dfa8e81 +Author: Colin Copeland +Date: Sun May 17 14:01:37 2020 -0400 + + fix imports + +commit 7c97a62539dca0ecb52aa2f2f1d093b6edfabcbe +Author: Colin Copeland +Date: Sun May 17 14:01:29 2020 -0400 + + move test models into ETL + +commit 38e4c2d98730da264083f1a6f8d4395bf5b579a4 +Author: Colin Copeland +Date: Sun May 17 13:56:16 2020 -0400 + + stub basic etl tests + +commit 84c51a05f61695083cd7de48aece271e9f57e759 +Author: Colin Copeland +Date: Sun May 17 13:54:14 2020 -0400 + + test post with single and multiple files + +commit 5674a24c3ef3e5e26b2d1478def552b151f20e48 +Author: Colin Copeland +Date: Fri May 15 09:11:56 2020 -0400 + + fix tests + +commit 952ecffa8bc5576951c1ac41bbca4ba0c0937b45 +Author: Colin Copeland +Date: Thu May 14 17:52:36 2020 -0400 + + add batch POST functionality + + Co-authored-by: Chris Dixon + +commit 3813b36881221df6c340730357a0a46ce06053b8 +Author: Colin Copeland +Date: Thu May 14 15:06:45 2020 -0400 + + ignore local node_module dirs + +commit b27f0389b46c40f3461d54296edb29eaf0c55066 +Author: Colin Copeland +Date: Thu May 14 15:06:19 2020 -0400 + + move conftest up a dir + +commit 9b35534a68731e21ab35d678aa8fabe58b0af3b1 +Author: Colin Copeland +Date: Thu May 14 14:34:50 2020 -0400 + + remove unused module + +commit 62ae7123f0dbc53ff0d13743571a746ce1354d32 +Author: Colin Copeland +Date: Thu May 14 14:32:12 2020 -0400 + + use etl in form + +commit a81c4c8cd86ae51b0783e296ef72c7e64782a966 +Author: Colin Copeland +Date: Thu May 14 14:31:48 2020 -0400 + + add etl package + +commit 10c03a1bf5b9df35ce489e67bdac866209c32256 +Merge: 6d44662 39cd56a +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Wed May 13 14:33:14 2020 -0400 + + Merge pull request #107 from deardurham/dp-30-petition-drf-endponit + + [DP-30] Part 1: Petition DRF endponit + +commit 6d446629191fe121711ec1647c7c34fb47e2818e +Merge: 3508e4e 078b90e +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Wed May 13 13:13:17 2020 -0400 + + Merge pull request #105 from deardurham/dp-3-userauth + + [DP-3] API JWT Authentication + +commit 078b90ed865b97dd7d94d5cb8e9354df45c32d8e +Merge: 99f64f2 eaaddd3 +Author: Christopher Dixon +Date: Wed May 13 13:09:43 2020 -0400 + + Resolved merge conflicts + +commit 99f64f2c0af89ee550ef9cea29d6da83aea54570 +Author: Christopher Dixon +Date: Wed May 13 13:08:09 2020 -0400 + + test + +commit 39cd56a7fd061bfa19ab8267be3de4532245145d +Author: Colin Copeland +Date: Wed May 13 11:21:35 2020 -0400 + + update reqs + +commit f2fb599e3d1e7ebf5b95813a61f5e2c1a5169b13 +Author: Colin Copeland +Date: Wed May 13 11:07:30 2020 -0400 + + fix tests + +commit 7daa2351e5671885a3421245e4f0190cd0cdebee +Merge: 2a96a74 eaaddd3 +Author: Colin Copeland +Date: Wed May 13 10:54:45 2020 -0400 + + Merge branch 'dp-3-userauth' into dp-30-petition-drf-endponit + +commit eaaddd3115beb3afac67d99253694fdb5fbc9aad +Author: Colin Copeland +Date: Wed May 13 10:47:39 2020 -0400 + + propsed fixes to tests + +commit 3508e4ee5f55ae9eae1ad08250f80331a7dedfb5 +Merge: 0bd7af9 9294831 +Author: Colin Copeland +Date: Wed May 13 09:57:52 2020 -0400 + + Merge pull request #106 from deardurham/DP-24/generate-petition + + [DP-24] Petition generation page + +commit 0bd7af99d3daff43bcba5550b88f3913eec6dd3b +Merge: 7bcba20 01d8f5b +Author: Colin Copeland +Date: Wed May 13 09:56:38 2020 -0400 + + Merge pull request #92 from deardurham/TSC-100/bootstrap-frontend + + [TSC 100] bootstrap frontend + +commit 9294831a2dbe9e3629f37f2ba3835a4ca0a1596f +Author: Colin Copeland +Date: Wed May 13 09:50:03 2020 -0400 + + style petition list page + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit cb9ea3afc6be8073615e839d3bceff237232447f +Author: Christopher Dixon +Date: Tue May 12 01:07:02 2020 -0400 + + Commented out CIPRSRecord test. Meet to discuss remaining test for batch method before moving onto multi-upload ticket. + +commit df3f007e6e328c8b6a04b065546e52f2a93e6b77 +Author: Christopher Dixon +Date: Mon May 11 14:22:14 2020 -0400 + + successfully now testing permissioned routes (just first test). Now adding more. + +commit 17de9abb89ecc9557d945ee1b7c28f45f05bda1d +Author: Colin Copeland +Date: Sat May 9 15:42:24 2020 -0400 + + pass at styling petition list + +commit bd333d5a5a6320c68a3510366e16335831bc4df2 +Author: Colin Copeland +Date: Sat May 9 14:45:52 2020 -0400 + + missed merge change + +commit d6c12d2b21627be416bbfebb6cd06a62e732dd66 +Merge: aca6bde 01d8f5b +Author: Colin Copeland +Date: Sat May 9 14:44:31 2020 -0400 + + Merge branch 'TSC-100/bootstrap-frontend' into DP-24/generate-petition + +commit 2a96a74a05983cbb2536943459e1f08727120e42 +Author: Colin Copeland +Date: Thu May 7 21:38:01 2020 -0400 + + use genericviewset; use validate_* methods to load model objects + +commit 7a44c4699a70053632473f5060c7386c903d71e9 +Author: Colin Copeland +Date: Thu May 7 17:10:19 2020 -0400 + + first pass at petition drf endponit + + Co-authored-by: Chris Dixon + +commit 7e6e6877bae2ebb3eec62f2170d54b77c07b42c9 +Author: Colin Copeland +Date: Thu May 7 17:08:26 2020 -0400 + + Add pks to serializers; add default page size + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + Co-authored-by: Chris Dixon + +commit 01d8f5b734c69d76aebb5fcaa7f03d89acb8a951 +Author: Michael Ashton +Date: Thu May 7 14:59:34 2020 -0400 + + add extra layer of dup protection + +commit d1c86414fc7ec3ea5f13fd1a3e07a6b3d10b60a7 +Author: Michael Ashton +Date: Thu May 7 14:42:52 2020 -0400 + + javscript Set enforces uniqueness of file in list + +commit aca6bdedb66c3a22881190f64b14b642ced16613 +Author: Colin Copeland +Date: Wed May 6 16:56:35 2020 -0400 + + First pass at petition generation page + + Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> + +commit 413372020d2dceca3560f1767e815ca9b36bac3d +Merge: 07dc361 48f5693 +Author: Michael Ashton +Date: Tue May 5 14:47:49 2020 -0400 + + Merge branch 'TSC-100/bootstrap-frontend' of github.com:deardurham/dear-petition into TSC-100/bootstrap-frontend + +commit 48f5693ef8ae93820ab8dc0d11b605ce40e8a20f +Merge: 72185e5 7bcba20 +Author: Colin Copeland +Date: Tue May 5 14:47:29 2020 -0400 + + Merge branch 'upgrade' into TSC-100/bootstrap-frontend + +commit 07dc3619053c4daf89c32a0602d5d36cf94b5dae +Merge: 61ba141 72185e5 +Author: Michael Ashton +Date: Tue May 5 14:47:19 2020 -0400 + + Merge branch 'TSC-100/bootstrap-frontend' of github.com:deardurham/dear-petition into TSC-100/bootstrap-frontend + +commit 72185e54b94bb126030098b28dfa0118f06a5875 +Merge: dabff7d 2ce6b0d +Author: Colin Copeland +Date: Tue May 5 14:46:52 2020 -0400 + + Merge pull request #95 from deardurham/TSC-103/DnD-feature + + [TSC 103] Drag and Drop feature + +commit dabff7dee54f6681d5e205354b511caaef2171e7 +Merge: b436442 e890ece +Author: Colin Copeland +Date: Tue May 5 14:45:52 2020 -0400 + + Merge pull request #93 from deardurham/TSC-102/frontend-layout-and-routing + + [TSC-102] frontend layout and routing + +commit 61ba141aef7a64e7a903cbff09fbedab86bd72e3 +Merge: f2aad8e 2ce6b0d +Author: Michael Ashton +Date: Tue May 5 14:45:41 2020 -0400 + + Merge branch 'TSC-103/DnD-feature' into TSC-100/bootstrap-frontend + +commit b436442a0f8934871f948abfc9e95e65621c07d7 +Author: Colin Copeland +Date: Tue May 5 14:43:47 2020 -0400 + + fix frontend mount + +commit f2aad8ed26a6e2a95e50d6dd849fb8d439912e1c +Merge: 96d8275 e890ece +Author: Michael Ashton +Date: Tue May 5 14:43:14 2020 -0400 + + Merge branch 'TSC-102/frontend-layout-and-routing' into TSC-100/bootstrap-frontend + +commit 67739542d84380c42ad0391883f37402b91051a8 +Author: Christopher Dixon +Date: Mon May 4 22:36:17 2020 -0400 + + Added Offense & OffenseRecord serializers and viewsets. Added read_only nesting of offense_records and offenses on offenses, and ciprsrecords respectively + +commit 548366c9dcf7f3ab5d354dc4352d0a519eb9c9c5 +Author: Christopher Dixon +Date: Mon May 4 18:02:09 2020 -0400 + + rm test_serializers.py, have not started on this file yet and didn't want to check the file in. + +commit 0617aa8a2104c22ed0dd7c0f1a69ab745dc05349 +Author: Christopher Dixon +Date: Mon May 4 18:01:09 2020 -0400 + + Added test_unauthorized tests to TestBatchViewSet and TestCIPRSRecordViewSet + +commit e1227d5bae0a66724ecd877f9a6e0955fce4eefa +Author: Christopher Dixon +Date: Mon May 4 11:47:25 2020 -0400 + + updated docs + +commit 1a6a4502c7f6139ddbca34196f176906aa4f561b +Author: Christopher Dixon +Date: Mon May 4 11:39:33 2020 -0400 + + ACCESS_TOKEN_LIFETIME now set to 6 hours. REFRESH_TOKEN_LIFETIME has been set to 2 weeks. After 2 weeks + the user will be prompted to log back in with their username (email) and password to receive a new access and refresh token. + +commit fb9406856cca349fffbf26d4c1c41a622f6c6df9 +Author: Christopher Dixon +Date: Sat May 2 01:21:51 2020 -0400 + + added api.rst to docs + +commit 524636d028c3612118ed030c8cab62b79ecb1376 +Author: Christopher Dixon +Date: Sat May 2 00:50:49 2020 -0400 + + Users using api are now required to request a jwt access token + +commit dff5e89cd6e3c8a2f933b7c1227d85442d39c4df +Author: Christopher Dixon +Date: Sat May 2 00:04:54 2020 -0400 + + Add djangorestframework-simplejwt to project + +commit 91cc69ba91b7ac450fb427ecbde539f9b144dd08 +Merge: ff6907c 7bcba20 +Author: Christopher Dixon +Date: Fri May 1 23:33:13 2020 -0400 + + Merged first pass at api pr with upgrade branch & resolved conflicts + +commit b2829f279ceeb16da0e3c6472c44cd7ee6e80193 +Merge: 96d8275 2c00d22 +Author: Colin Copeland +Date: Fri May 1 11:01:33 2020 -0400 + + Merge branch 'upgrade' into TSC-100/bootstrap-frontend + +commit 7bcba20d6062ca4ab539ad39cdafbd1507e5709e +Merge: c13b896 bcb2d64 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Fri May 1 10:42:10 2020 -0400 + + Merge pull request #104 from deardurham/DP-21 + + DP-21 + +commit bcb2d64b45f8dc45b90be02212834d8240e2e174 +Author: Christopher Dixon +Date: Thu Apr 30 17:03:54 2020 -0400 + + small changes based upon dmitriy's review + +commit b28928aa3004003a0cc91dab67f5d16f993e91b4 +Author: Christopher Dixon +Date: Thu Apr 30 12:56:31 2020 -0400 + + cleanup + +commit c13b8964ae4b7d29d310e8fd777c86876102f222 +Merge: 2c00d22 85edda0 +Author: Colin Copeland +Date: Thu Apr 30 10:49:56 2020 -0400 + + Merge pull request #103 from deardurham/DP-20/fix-prod-migrate + + [DP-20] Fix prod migrate + +commit b53c790b9b924fea235c79aa8ae80c8d50aa0e18 +Author: Christopher Dixon +Date: Wed Apr 29 14:18:03 2020 -0400 + + updated test. + +commit b60aad09833300ef8ccddc1d9b4fb9d5c83339c6 +Author: Christopher Dixon +Date: Wed Apr 29 12:36:45 2020 -0400 + + when refresh_record_from_data is run, remove existing offense records from db and re-create them. + +commit 96d8275dd58c8f8459ee2abccf318a5cd40e2d56 +Author: Michael Ashton +Date: Tue Apr 28 11:46:15 2020 -0400 + + remove docker instructions from siloed frontend readme + +commit 29b4bdbb8207668771f95ae65d92e31741517042 +Author: Michael Ashton +Date: Tue Apr 28 11:44:30 2020 -0400 + + adds react app to local.yml + +commit c547970d946e7ac2d0487f9257d588d1309bc157 +Merge: 31c444a 2c00d22 +Author: Christopher Dixon +Date: Mon Apr 27 19:51:26 2020 -0400 + + Merge branch 'upgrade' of github.com:deardurham/dear-petition into DP-21 + +commit 31c444a01bccaa6f21e41d8289dc37308114cd60 +Author: Christopher Dixon +Date: Mon Apr 27 19:45:26 2020 -0400 + + Updated refresh_record_from_data method. If for some reason ciprs_record.data has an empty 'Offense Record' dictionary when called and their are existing offense and offense_record instances, then we delete those instances because they are no longer reflected in the ciprs_record's raw data field (data). Also updated test in test_models to make sure offense and offense_record isntances are created when refresh_record_from_data is run. + +commit 85edda09088e6cd7ccae3a366e9d7d9255435a20 +Author: Colin Copeland +Date: Mon Apr 27 15:24:24 2020 -0400 + + remove use of DATETIME_FORMAT + +commit 83ffe5d10518fe0217ff4a090187e98866171a58 +Author: Colin Copeland +Date: Sat Apr 25 14:39:32 2020 -0400 + + use dateutil to parse dates + +commit c37af5dbe1fd77cb4928e7a2f8cd0e598dc49246 +Author: Colin Copeland +Date: Sat Apr 25 14:39:14 2020 -0400 + + exclude records that don't have data + +commit 7d99623e47992cb4ef93f6d43004aafbd507c265 +Author: Christopher Dixon +Date: Sat Apr 25 23:18:58 2020 -0400 + + First pass at updating test_refresh_record_from_data + +commit 2c00d22249aa7947debefafc3764edabc9ea1785 +Author: Christopher Dixon +Date: Sat Apr 25 21:39:06 2020 -0400 + + Fix conflicting migrations when comment pr was pulled into upgrade branch. Moved comment migrations to 21-23 + +commit cf993dcc69318d09082458bd8bdb0e3bab8d09a2 +Author: Christopher Dixon +Date: Sat Apr 25 21:39:06 2020 -0400 + + Fix conflicting migrations when comment pr was pulled into upgrade branch. Moved comment migrations to 21-23 + +commit 7777996f7e437acca5d29c3a92748b9ff97e6cb3 +Author: Christopher Dixon +Date: Sat Apr 25 20:50:00 2020 -0400 + + Removed code around offense/offenserecord creation from UploadFileForm and placed that code in refresh_record_from_data method on the CIPRSRecord class + +commit 706aa81c7f72bd5784b351bcf5dd874eb956698e +Merge: 5233a92 1dc810f +Author: Colin Copeland +Date: Sat Apr 25 14:50:37 2020 -0400 + + Merge pull request #102 from deardurham/setup-reviewapps + + Setup Review Apps + +commit 1dc810f2f2e0574652998d2510766bfa6a6747e9 +Author: Colin Copeland +Date: Sat Apr 25 14:43:58 2020 -0400 + + don't automatically use mailgun + +commit b6d258aa3d88c5c7d030a9677c74b00fb76e0893 +Merge: 95e9be0 5233a92 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Fri Apr 24 18:57:36 2020 -0400 + + Merge branch 'master' into upgrade + +commit 2ce6b0d282e971b2637254a58c5d6f9c1bcf34ae +Author: Michael Ashton +Date: Fri Apr 24 09:52:14 2020 -0400 + + clear out DOM input value on remove + +commit 5233a9283d40abedfa9a8c0a942eddcaf839dab5 +Merge: 43eb0ee 6a093cb +Author: Colin Copeland +Date: Thu Apr 23 12:52:04 2020 -0400 + + Merge pull request #90 from deardurham/comments_section + + Added comments section + +commit b0da514c8ae57bd4dd032cb9a8f851d65a4c89be +Author: Colin Copeland +Date: Thu Apr 23 12:43:23 2020 -0400 + + make executable + +commit 95e9be0516c14bba522ebb19d9c8569c42fb5b27 +Merge: 394f8c2 da7265e +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Wed Apr 22 13:45:12 2020 -0400 + + Merge pull request #94 from deardurham/DIS-1351-update-importexport + + [DIS-1351] Update importer/exporter code to use data from models + +commit da7265e93b13b3787358955baa1f31037f616947 +Author: Christopher Dixon +Date: Wed Apr 22 13:06:21 2020 -0400 + + updated test_get_petition_offenses in order account for not knowing the order of offenses being in petition_offenses + +commit 9c411889e17ba4098d97c40c6ab726e5dbdb7af3 +Author: Michael Ashton +Date: Tue Apr 21 16:42:46 2020 -0400 + + remove dockerfile comments + +commit 7a20d84d5ae7f8eecee62aaa2ccd258eee9cc0d3 +Author: Michael Ashton +Date: Tue Apr 21 16:41:21 2020 -0400 + + add frontend readme and docker setup + +commit 6c772ef58fa245f27c0e0cb1ec0fcd79fe4259ff +Author: Christopher Dixon +Date: Tue Apr 21 15:47:24 2020 -0400 + + updated test + +commit a7659a200a04706fa45b72c828e84a6a98191af3 +Author: Christopher Dixon +Date: Mon Apr 20 16:49:52 2020 -0400 + + if datetimes in get_petition_offenses are not truthy then pass empty strings for those values. + +commit bc2808559dc46cfab9ccd3f10f0c72f4cf15847f +Author: Christopher Dixon +Date: Mon Apr 20 16:37:59 2020 -0400 + + makes last line of postdeploy.sh file empty + +commit b089a5a84f8f2fd91a235b9f0f015a5b257097be +Merge: f3be984 1fc1bf5 +Author: Christopher Dixon +Date: Mon Apr 20 16:31:12 2020 -0400 + + Merge branch 'setup-reviewapps' of github.com:deardurham/dear-petition into DIS-1351-update-importexport + +commit 1fc1bf50f9cfb0dee589cced7022f5839ba511de +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Mon Apr 20 16:14:25 2020 -0400 + + postdeploy runs on review env only + +commit 394f8c2014e30177c600a8ecbeeeba13c35e579a +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Mon Apr 20 16:00:02 2020 -0400 + + missing curly braces in app.json + +commit a8f6395f75a925b88a76c2a69f2e416f1d8d698e +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Mon Apr 20 15:40:29 2020 -0400 + + postdeploy script for review env only + +commit f3be98438cb2fe1a126a330386638eb141a0fb61 +Author: Christopher Dixon +Date: Mon Apr 20 13:36:09 2020 -0400 + + Added DATE_FORMAT to constants.py and updated get_petition_offenses to show arrest date, offense_date, and disposition_date on petition + +commit 926194f3a8d0a7de37b6daa317fec642d835a100 +Merge: 7fe141c d267240 +Author: Christopher Dixon +Date: Mon Apr 20 13:03:14 2020 -0400 + + Merge branch 'setup-reviewapps' of github.com:deardurham/dear-petition into DIS-1351-update-importexport + +commit d2672405413206b294b58f44e2f8ae50654ee14b +Author: Christopher Dixon +Date: Mon Apr 20 12:56:45 2020 -0400 + + creates a user in db when review app is spun up. + +commit 7fe141cd4f8f39c1b2920773aecee784a8ac0a99 +Author: Christopher Dixon +Date: Mon Apr 20 12:47:08 2020 -0400 + + Added a test for get_petition_offenses (batch method). Added Offense and OffenseRecord to factory. Updated code in forms.py + +commit ff6907cbe0a9f9f1680819e80e473ef8c5705118 +Author: George Helman +Date: Sun Apr 19 12:47:16 2020 -0400 + + First pass at DRF API + +commit 6a093cb997606db879bdbcef9e1245ca4919e28d +Author: Colin Copeland +Date: Fri Apr 17 22:13:16 2020 -0400 + + add more admin fields + +commit 16a9650c2d9f4a250cddce277a317a6dd355c74e +Author: Colin Copeland +Date: Fri Apr 17 22:10:20 2020 -0400 + + simplify view + +commit 7bb5a06ee26f4eb87fa38a3ef2bf78755a742fa5 +Author: Colin Copeland +Date: Fri Apr 17 22:10:03 2020 -0400 + + add admin + +commit dad1aaf73a26813038e9481f2043bfd1f6d9b654 +Author: Colin Copeland +Date: Fri Apr 17 21:30:37 2020 -0400 + + make email verification optional + +commit 63c9ca373191fb5863f5ca929bed6e89d4df68ec +Author: Colin Copeland +Date: Fri Apr 17 17:09:02 2020 -0400 + + add shell line + +commit ec4e383e7776441e1602a100eb3ee4872345e90a +Author: Colin Copeland +Date: Fri Apr 17 17:01:25 2020 -0400 + + try normal script + +commit 197c12e6122e798cb66fd75890a1a4af46ae36aa +Author: Colin Copeland +Date: Fri Apr 17 16:50:09 2020 -0400 + + use dot slash + +commit d53e1392a94e46efc6494fbe9acbfba9b173f6eb +Author: Colin Copeland +Date: Fri Apr 17 16:38:03 2020 -0400 + + add review script + +commit 4241949b6348b0602ca140ce0b27b2b449303cf4 +Author: Colin Copeland +Date: Fri Apr 17 16:33:15 2020 -0400 + + fix test user creation + +commit d0d06914a43e698c7bc7a27ce61374d3f4fc6eb4 +Author: Colin Copeland +Date: Fri Apr 17 16:24:02 2020 -0400 + + remove sendgrid + +commit 98de94e23f812bffdbf29ab5431cb51eb9c69ed4 +Author: Colin Copeland +Date: Fri Apr 17 16:15:35 2020 -0400 + + add postdeploy script + +commit fe053aecd5929f95e537575dde7876c6d0cb6e38 +Author: Colin Copeland +Date: Fri Apr 17 15:53:35 2020 -0400 + + use sendgrid + +commit af8a22e046176a83b2dfc0bc7d4f71b78428ef40 +Merge: 08c98c4 1a8ed05 +Author: Colin Copeland +Date: Fri Apr 17 15:41:01 2020 -0400 + + Merge branch 'upgrade' of github.com:codefordurham/dear-petition into upgrade + +commit 08c98c400ea22944a054338035e9ec005839a514 +Author: Colin Copeland +Date: Fri Apr 17 15:40:33 2020 -0400 + + change to hobby + +commit 2befa42fc9282098e85fe1d922d81c78a1fed9db +Author: Christopher Dixon +Date: Fri Apr 17 14:24:36 2020 -0400 + + updated comment + +commit 41c163855e1589f21f8e4b84f69497abcfdfb6fa +Author: Christopher Dixon +Date: Fri Apr 17 13:55:06 2020 -0400 + + cleaned up code in get_petition_offenses + +commit 1b94e8373d67b7817f2d67e33f527aef76316491 +Author: Christopher Dixon +Date: Fri Apr 17 13:49:07 2020 -0400 + + cleaned up code in get_petition_offenses + +commit c187c1a91eacce05895dea4ae81c8f5050abf461 +Author: Christopher Dixon +Date: Fri Apr 17 13:37:43 2020 -0400 + + changes based upon dmitriy's review. Also only CHARGED offense.action should be shown on the petition + +commit 5ef5b4b0f8bad6112f3165331dbffa0dfd73bde8 +Author: Michael Ashton +Date: Thu Apr 16 14:52:28 2020 -0400 + + add dragndroppable file input and flow + +commit 60c0bfa66ad3b14e139156a5e985193292b92e0b +Author: Michael Ashton +Date: Thu Apr 16 13:33:44 2020 -0400 + + add dnd widget and flow + +commit a197bba0b7fd1b8d00d5895918c36508f4a35bf3 +Author: Christopher Dixon +Date: Thu Apr 16 12:57:16 2020 -0400 + + updated view.html, UploadFileForm, and batch property methods. Now able to rendering view html page and generate pdf. Now working to refactor code. + +commit ed0299bbfa108c888c858663a58941ccf39662fd +Author: Michael Ashton +Date: Thu Apr 16 09:52:18 2020 -0400 + + add pagebase and adjust positioning + +commit e890ece5687227468808626b3302340dd33ec289 +Author: Michael Ashton +Date: Thu Apr 16 09:19:41 2020 -0400 + + introduce custom button, make font a constant + +commit a5f882304780fcb949ec755728092d10d0bb28ed +Author: Christopher Dixon +Date: Wed Apr 15 21:00:18 2020 -0400 + + now saving Offense and OffenseRecord instances in UploadFileForm save method. + +commit 4b1707aedc3123759e3b2255c7cdcb0fe93ce80f +Author: Michael Ashton +Date: Wed Apr 15 17:26:12 2020 -0400 + + button font size tweak, fix package-lock + +commit 158638ffafec1b18bc826c65c16923042932cae1 +Author: Michael Ashton +Date: Wed Apr 15 17:08:20 2020 -0400 + + basic layout and routing, bring in reaktus + +commit 721bab770af4e95beb1b7d0c24ae555494498973 +Author: Michael Ashton +Date: Wed Apr 15 15:09:13 2020 -0400 + + including src directory... + +commit d11139731b4824804f1ebab6ab7c15ffb66fc892 +Author: Michael Ashton +Date: Wed Apr 15 15:02:34 2020 -0400 + + intial app boostrapped with cra, plus a few deps + +commit 1a8ed050d869ea57bc8833d9105236ecda810ae6 +Merge: c760d46 baf2d82 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Wed Apr 15 13:56:50 2020 -0400 + + Merge pull request #87 from deardurham/DIS-1350-offense-models + + [DIS-1350] Add Offense and OffenseRecord models for offenses + +commit baf2d82792ca3067d7b31b0b48212be1a7970108 +Merge: 4aa49f5 c760d46 +Author: Christopher Dixon +Date: Wed Apr 15 13:18:25 2020 -0400 + + Merged upgrade branch into DIS-1350. Resolved conflicts in petition.models + +commit c760d46e7e1a8fa991ecffeb534343c1eb193207 +Merge: 43eb0ee 5e09c1d +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Wed Apr 15 13:05:38 2020 -0400 + + Merge pull request #86 from deardurham/DIS-1349-refactor-ciprsrecord-model + + [DIS-1349] Add general/case/defendant details to CIPRSRecord model + +commit 21fcf19e189e643278dfa842cbc162d48858e696 +Author: George Helman +Date: Wed Apr 15 00:10:55 2020 -0400 + + Incorporated suggestions + +commit 5e09c1d684d48c60ce9d24914a72ecaec918df68 +Author: Dmitriy Chukhin +Date: Tue Apr 14 21:30:06 2020 -0400 + + simplify testing logic of offense date and arrest date values + +commit eaaede951c79564b99241c9e9e6fc5ce6a1f7cf0 +Author: Dmitriy Chukhin +Date: Tue Apr 14 21:28:33 2020 -0400 + + utility functions take project's time zone into account when converting datetimes + +commit 278515a3a63db949414e7c42063c25680bac5a1e +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Tue Apr 14 14:50:50 2020 -0400 + + Update dear_petition/petition/migrations/0019_auto_20200407_1720.py + + Co-Authored-By: Dmitriy Chukhin + +commit 95a41998ae05b6bcafd0719b79477135f2e9a2c1 +Author: Christopher Dixon +Date: Tue Apr 14 14:46:13 2020 -0400 + + add replace method back to chainable methods in make_datetime_aware definition + +commit 864e9dd3ae45c8574250aad423f01184ff64874f +Author: Christopher Dixon +Date: Tue Apr 14 11:59:44 2020 -0400 + + revisions based upon dmitriy's review 4.13.2020 + +commit d05d7cf293ce188a473888a745e35a02a6d5ed17 +Author: Christopher Dixon +Date: Mon Apr 13 13:46:29 2020 -0400 + + revisions based upon dmitriy's latest review + +commit d0bc82e6e89ba0e0b8b039b230dc66c087fdd5b8 +Author: George Helman +Date: Sat Apr 11 14:18:51 2020 -0400 + + Added comments section + +commit 4aa49f5fd2ec5fde9c4aef9173f7ed472cacdbb6 +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Thu Apr 9 11:31:14 2020 -0400 + + Update dear_petition/petition/admin.py + + Co-Authored-By: Dmitriy Chukhin + +commit 39628d2a03cb99671593a341eff51bc362e6ef2e +Author: Christopher Dixon +Date: Thu Apr 9 10:54:46 2020 -0400 + + Now using make_aware to make datetime object aware + +commit 7b96541e32c4a0105971684050c5fa230befb770 +Author: Christopher Dixon +Date: Wed Apr 8 14:43:49 2020 -0400 + + updated model and migrations + +commit 32a84567f01e2f21b2e838a00119dea6897f19da +Author: Christopher Dixon +Date: Tue Apr 7 21:40:09 2020 -0400 + + updated migration + +commit ac287ed8ba07e3642720bac759c8e3e5bea3b7ba +Author: Christopher Dixon +Date: Tue Apr 7 16:35:15 2020 -0400 + + offense_record_count and record_count should not be private methods + +commit ff8333d7444a894a8f34baa52b9f282e54778338 +Author: Christopher Dixon +Date: Tue Apr 7 16:33:09 2020 -0400 + + Changes based upon dmitriy's review + +commit 1cfe6e785911c8cd9df37d7e0fabc5cf44aad489 +Author: Christopher Dixon +Date: Tue Apr 7 13:26:22 2020 -0400 + + update migrations + +commit 98a3521310d69016bb33ae79569cc47c0944f011 +Author: Christopher Dixon +Date: Tue Apr 7 11:27:56 2020 -0400 + + Added tests for create_record and test_refresh_record_from_data . offense_date DateTimeField is now EST timezone aware. + +commit 667efd45d9440a97a31d1a67a13dc7178dc4a334 +Merge: aed3229 403cbbd +Author: Christopher Dixon +Date: Mon Apr 6 10:12:43 2020 -0400 + + Made revision to model based upon colin and dmitriy's review. I still have a couple of comments that colin needs to respond to about create_record. Workong on test and updating migration. + +commit aed3229ef84322623565d5e14a24f0d35dd403b4 +Author: Christopher Dixon +Date: Sat Apr 4 21:39:09 2020 -0400 + + Made revision to model based upon colin and dmitriy's review. I still have a couple of comments that colin needs to respond to about create_record. Workong on test and updating migration. + +commit ce06edaea8a5c84888ea9b8fa3ff61d7629074c1 +Author: Christopher Dixon +Date: Thu Apr 2 19:02:46 2020 -0400 + + Added Offense & OffenseRecord to Django Admin. Added A migration to petition for these models. Note: This migration depends upon the work done in DIS-1349 + +commit 403cbbdcdf3b616529631382b0fb26f09b5616ba +Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> +Date: Thu Apr 2 18:36:47 2020 -0400 + + Remove Comments Referencing Offense + + See DIS-1350 for the offense models. Comments are no longer necessary because of this PR. + +commit 67b36f73597f54625816943ca22a9e725f05459e +Author: Christopher Dixon +Date: Thu Apr 2 18:34:59 2020 -0400 + + spelling errors + +commit 11286b17fa19cbb20423032ce144324edad19b94 +Author: Christopher Dixon +Date: Thu Apr 2 16:21:31 2020 -0400 + + DIS-1350: Remove @property methods associated with offense. Creates Offense and OffenseRecord models. + +commit 01c500d9ce6116a2a310ae87f5dc36d0afb5bf9e +Author: Christopher Dixon +Date: Thu Apr 2 13:46:14 2020 -0400 + + DIS-1349: Added a manager to to CIPRSRecord. CIPRSRecord.objects.create_record extracts attributes from data (raw_data) and populates the new fields on the model. Use this method to create a new CIPRSRecord. Added refresh_record method to model. If the data (JSONField) changes, run this method to update the fields we are pulling from the JSON blob. Also added a custom migration to update existing ciprs_records. + +commit 43eb0eedb224ca5fc84f9846589ba13bf8bbe9ef +Merge: 116f7da 5550721 +Author: Colin Copeland +Date: Tue Mar 31 18:31:53 2020 -0400 + + Merge pull request #85 from deardurham/ciprs-reader-0014 + + Update ciprs-reader to v0.0.14 + +commit 5550721dd293d5ff2a7501e5452870d1acbe1ab3 +Author: Colin Copeland +Date: Tue Mar 31 18:31:05 2020 -0400 + + update ciprs-reader to v0.0.14 + +commit 116f7da84737513098a3c46de31f7ef1efd9dd8a +Author: Colin Copeland +Date: Tue Mar 3 21:27:32 2020 -0500 + + update ciprs-reader to 0.0.13 + +commit e5286640a19165c8007eefcf5d50857bc83f05ed +Merge: 407451b 48bd9d0 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Mar 3 19:31:22 2020 -0500 + + Merge pull request #75 from deardurham/permissions + + Permissions + +commit 48bd9d0e18ef06242c14ad644e43955e4e49b2e6 +Author: George Helman +Date: Tue Mar 3 19:28:49 2020 -0500 + + Factories already exist + +commit c5794c640555d7bc8147cedea57ea276a1a33df8 +Author: George Helman +Date: Sun Mar 1 16:21:26 2020 -0500 + + Added permission test and utilities + +commit e3d4694e138a0f2739a56ae7d9a2d1b3f36dd469 +Merge: 52eeb11 b23b5e6 +Author: George Helman +Date: Sat Feb 29 21:11:25 2020 -0500 + + Merge branch 'permissions' of https://github.com/deardurham/dear-petition into permissions + +commit 52eeb1120c481f8e0251d37576457e91f79bdc88 +Author: George Helman +Date: Sat Feb 29 21:10:19 2020 -0500 + + Added factory functions and permission tests + +commit 407451b2589e2dbbf7b193329f98c680f8edab01 +Merge: 6052cfe 6c044e6 +Author: Colin Copeland +Date: Sat Feb 22 11:49:14 2020 -0500 + + Merge pull request #79 from deardurham/new-user-tweaks + + New user tweaks + +commit 6c044e6e1a5b484389c908cb005189a97d1fbdf1 +Author: Colin Copeland +Date: Sat Feb 22 11:44:47 2020 -0500 + + provide link back to batch when viewing petition + +commit 5e9dc7bd3929aa55ce63edcbc8fd2f2025bafe70 +Author: Colin Copeland +Date: Sat Feb 22 11:39:34 2020 -0500 + + add admin link for staff users + +commit 7fd86b7502777b92dac31fb410c4ea56f5681e06 +Author: Colin Copeland +Date: Sat Feb 22 11:36:50 2020 -0500 + + support View on Site from django admin + +commit 2b178f2d7c53ec053bc9b359e9b3080f63442aec +Author: Colin Copeland +Date: Sat Feb 22 11:30:09 2020 -0500 + + remove home page + +commit 91c311c472da1d2edc89f0b6ceea76aab4b5779c +Author: Colin Copeland +Date: Sat Feb 22 11:24:43 2020 -0500 + + log in with email + +commit b23b5e6f9eb0828fef450d790c5dd167adf69152 +Merge: 5b8f441 6052cfe +Author: Colin Copeland +Date: Sat Feb 22 10:50:15 2020 -0500 + + Merge branch 'master' into permissions + +commit 6052cfeab5acc18749c6f492885aac388ed37247 +Merge: 5962cdc 6104ae2 +Author: Colin Copeland +Date: Sat Feb 22 10:34:59 2020 -0500 + + Merge pull request #78 from deardurham/update-ciprs-reader-0012 + + Update ciprs-record to v0.0.12 + +commit 6104ae2dcdc0ccf13406c37ef951510505d04a5b +Author: Colin Copeland +Date: Sat Feb 22 10:30:06 2020 -0500 + + fix migration script to include pre-patch records + +commit 7cf812ef129c88638a389fe1a2e4ed61fc51fc1b +Author: Colin Copeland +Date: Thu Feb 20 12:57:09 2020 -0500 + + update ciprs-record to 0.0.12 + +commit 5962cdcb7f61de71ca90431eaf82fd7ae2f80d80 +Merge: 7ec87f4 ddbff1e +Author: Colin Copeland +Date: Tue Feb 18 21:42:49 2020 -0500 + + Merge pull request #77 from deardurham/update-ciprs-reader-0011 + + Update ciprs-reader to v0.0.11 + +commit ddbff1e364131d7ebb185f60a0baa43dba2662eb +Author: Colin Copeland +Date: Tue Feb 18 21:38:46 2020 -0500 + + update ciprs reader + +commit 7ec87f4da5dda88ea017e9491f2b7a10e836843c +Merge: 092372f 629e18e +Author: Colin Copeland +Date: Tue Feb 18 21:38:04 2020 -0500 + + Merge pull request #76 from deardurham/unbound_local_error_validation + + Unbound local error validation + +commit 092372f79a07849db2c0f4f6c4d0a109d71cf9d7 +Merge: 8dfb7ae 7d539e0 +Author: Colin Copeland +Date: Tue Feb 18 21:36:26 2020 -0500 + + Merge pull request #68 from deardurham/dependabot/pip/django-2.2.10 + + Bump django from 2.2.8 to 2.2.10 + +commit 629e18eb25e1e4792ab9c323817a3a269b0efcae +Author: Colin Copeland +Date: Tue Feb 18 21:35:47 2020 -0500 + + raise exceptions as form errors to prevent 500s + +commit 1f9b543ebaebfe50a6a471e36b6a9d3ccbb28f2b +Merge: 7ae0e8d 8dfb7ae +Author: Colin Copeland +Date: Tue Feb 18 21:19:20 2020 -0500 + + Merge branch 'master' into unbound_local_error_validation + +commit 8dfb7ae1eb070bae71e37e7efc6df5cb7e2f585d +Merge: 7749eee 2e0bee3 +Author: Colin Copeland +Date: Tue Feb 18 21:18:18 2020 -0500 + + Merge pull request #67 from deardurham/add-user + + Track upload user + +commit 2e0bee3f3292ad59222511c22b8376c73ffeec9b +Author: Colin Copeland +Date: Tue Feb 18 21:15:30 2020 -0500 + + wrap in a transaction + +commit 7ae0e8d7d2b9a636d2be244069469c8a2173dbed +Author: Colin Copeland +Date: Tue Feb 18 20:18:47 2020 -0500 + + raise validation error if batch doesn't have most_recent_record + +commit 5b8f4417949202a453c03f98c32fb8fdfe23cdb4 +Author: George Helman +Date: Tue Feb 18 20:15:41 2020 -0500 + + Added basic permission check that ensures only petition generator can see permission + +commit 2e08b3382c3732b0fca30ca18d21029d8c472a6b +Merge: 38c00a4 a2e72a5 +Author: Colin Copeland +Date: Tue Feb 18 16:42:47 2020 -0500 + + Merge branch 'add-user' into unbound_local_error_uer + +commit 7d539e05fbcb8e52d4b73f22ab781931cfa9252b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Feb 12 01:17:22 2020 +0000 + + Bump django from 2.2.8 to 2.2.10 + + Bumps [django](https://github.com/django/django) from 2.2.8 to 2.2.10. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.8...2.2.10) + + Signed-off-by: dependabot[bot] + +commit a2e72a57a9edcb5dc76e9e090afa5601419bdcf5 +Author: Colin Copeland +Date: Sat Feb 8 21:44:05 2020 -0500 + + add user when creating batches + +commit b77a71a24e5f0355ff2a8fdeaf395b821208226f +Author: Colin Copeland +Date: Sat Feb 8 21:38:34 2020 -0500 + + add inline to BatchAdmin + +commit dcbf25789e3d16921f35b166af34ca83a0dba215 +Author: Colin Copeland +Date: Sat Feb 8 21:34:38 2020 -0500 + + add user to admin + +commit 29e19fbdb93d996dece269d0002780749189d514 +Author: Colin Copeland +Date: Sat Feb 8 21:30:19 2020 -0500 + + add Batch.user + +commit 39b3e139441f803880bf138ad17e77da37e643bc +Author: Colin Copeland +Date: Sat Feb 8 21:22:57 2020 -0500 + + add Batch.label, Batch.date_uploaded, improve admin + +commit 8f451e95cc72613ddb35ea68b254795d18ef7b1f +Author: Colin Copeland +Date: Sat Feb 8 21:22:10 2020 -0500 + + add CIPRSRecord.batch with data migration + +commit 7749eee23d8426f9a5d2c91569dc2341381760ab +Merge: 73f7fe8 5351a13 +Author: Colin Copeland +Date: Tue Feb 4 20:16:48 2020 -0500 + + Merge pull request #66 from deardurham/sendgrid + + Sendgrid + +commit 5351a137327b479b1f47eb75a6d37b6f30f68c9f +Author: George Helman +Date: Tue Feb 4 20:14:35 2020 -0500 + + Remove settings from base, add to production + +commit 51d3226036bd9898830b25e09b7d42e95d3101e9 +Author: George Helman +Date: Tue Feb 4 20:10:58 2020 -0500 + + Local mail and remove api key + +commit b97d7f951115a33922183eacd5368bde47ee7a86 +Author: George Helman +Date: Mon Jan 27 20:47:17 2020 -0500 + + Black + +commit 2bde12a67ba041a6ef83815eb275c9be7da24def +Author: George Helman +Date: Mon Jan 27 20:45:13 2020 -0500 + + Removed anymail dependency + +commit 0254c1edc0ddd82a4263ddb192a641fdc023f32d +Author: George Helman +Date: Mon Jan 27 20:39:37 2020 -0500 + + It works locally + +commit 38c00a45c0bd92779be88318f455e3a07d8b0840 +Author: George Helman +Date: Sat Jan 25 19:25:53 2020 -0500 + + More robust most_recent_record function shouldn't cause problems in case of unexpected input + +commit 73f7fe8cc316a1274c1b9ffaa37d6996e64d4b6a +Merge: fc8474e 97e3223 +Author: Colin Copeland +Date: Tue Jan 7 19:35:20 2020 -0500 + + Merge pull request #58 from deardurham/update-ciprs-reader-0010 + + update ciprs-reader to v0.0.10 + +commit 97e3223f8b65acf5992323b9d36fcb4704a27699 +Author: Colin Copeland +Date: Tue Jan 7 19:30:40 2020 -0500 + + update ciprs-reader to v0.0.10 + +commit fc8474ee9cf1514d6f5fbaab79d869faae41799a +Merge: 7f52017 2e48b23 +Author: Colin Copeland +Date: Tue Jan 7 19:28:32 2020 -0500 + + Merge pull request #55 from deardurham/petition_to_expunge_section + + Filled out petition to expunge section + +commit 2e48b23006d863015555ad8506191aa7b3c9230a +Author: Colin Copeland +Date: Tue Jan 7 19:24:41 2020 -0500 + + move dt into map_data method + +commit 7f52017c95a662f9a56115a2d7b6eca4bcf93a8c +Merge: f00f42b 36fab16 +Author: Colin Copeland +Date: Tue Jan 7 18:47:45 2020 -0500 + + Merge pull request #53 from deardurham/update_view_with_arrest_date + + Added arrest date to view + +commit f00f42b6ca7e5bba34324177a1787a19693be144 +Merge: e89229e 67219f9 +Author: Colin Copeland +Date: Tue Jan 7 18:39:40 2020 -0500 + + Merge pull request #54 from deardurham/dependabot/pip/django-2.2.8 + + Bump django from 2.2.4 to 2.2.8 + +commit 48cb3e426d2b6473ce005b961e60a1a41d79473d +Author: George Helman +Date: Wed Jan 1 13:23:45 2020 -0500 + + Filled out petition to expunge section + +commit 67219f99dda5ec999abfd44c2d52580709c93c45 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Dec 4 23:56:56 2019 +0000 + + Bump django from 2.2.4 to 2.2.8 + + Bumps [django](https://github.com/django/django) from 2.2.4 to 2.2.8. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/2.2.4...2.2.8) + + Signed-off-by: dependabot[bot] + +commit 36fab16f578277a6856cdb4f8ef8d02dc20afb56 +Author: George Helman +Date: Tue Nov 26 20:11:06 2019 -0500 + + Added arrest date to view + +commit e89229e17ab38fd9a3422ac38e806fd59dffdd6e +Merge: 03fac9c 3cfd1e3 +Author: Colin Copeland +Date: Tue Nov 26 19:52:04 2019 -0500 + + Merge pull request #52 from deardurham/update-cr-009 + + update ciprs reader to 0.0.9 + +commit 3cfd1e35a1d5eb1c7b353ca83b5bc67719c95bbd +Author: Colin Copeland +Date: Tue Nov 26 19:51:20 2019 -0500 + + update ciprs reader + +commit 03fac9c75c10a72ce13e042c21a77fcde33df052 +Merge: d81dae1 f5e53ff +Author: Colin Copeland +Date: Tue Nov 26 19:50:13 2019 -0500 + + Merge pull request #51 from deardurham/case_served_on + + Updated model to use new arrest date parsed field + +commit d81dae1c512f459520b8bb7d7c11c453b5076abd +Merge: 3845e3d 19119bf +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Nov 26 18:28:57 2019 -0500 + + Merge pull request #43 from deardurham/dependabot/pip/pillow-6.2.0 + + Bump pillow from 6.0.0 to 6.2.0 + +commit f5e53ff79d5f61d9f90504815111762eea05138c +Author: George Helman +Date: Tue Nov 26 18:27:08 2019 -0500 + + Updated model to use new arrest date parsed field + +commit 3845e3d50d6133341d481011497979f17423af12 +Merge: 6c61ff1 253740b +Author: Colin Copeland +Date: Fri Nov 1 07:06:48 2019 -0400 + + Merge pull request #45 from deardurham/offense_date_fix + + don't die on missing offense date + +commit 253740b09d2feb1777c49ce12d58640af7186ed2 +Author: Colin Copeland +Date: Wed Oct 30 22:54:53 2019 -0400 + + remove print statement + +commit 8d682306c96ab4b813db096ba78aa8a997ee8567 +Author: Colin Copeland +Date: Wed Oct 30 22:54:04 2019 -0400 + + don't die on missing offense date + +commit 6c61ff1d89c14a439d60f3b8487cb54d1d703a3b +Merge: d2d4687 147e0c9 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Oct 29 20:29:38 2019 -0400 + + Merge pull request #44 from deardurham/batch_aggregate + + WIP Batch aggregate + +commit 147e0c9161b11ad8dda348ea53cfd8debed65109 +Author: Colin Copeland +Date: Tue Oct 29 20:27:57 2019 -0400 + + remove model tests + +commit 5c173f325bc9c927f932a2853d8cc82cfa665af0 +Author: Colin Copeland +Date: Tue Oct 29 20:24:10 2019 -0400 + + get real recent record + +commit 6f1ce9504cc92772fc99c984c93e0974e32b793a +Author: George Helman +Date: Tue Oct 29 20:22:26 2019 -0400 + + Fix bug + +commit 2dd935311c144a7ce2fbb5b01e63aeb1069d8405 +Author: George Helman +Date: Tue Oct 29 20:21:36 2019 -0400 + + Now returns whole record instead of just fileno + +commit 39754dc9096b6b50eacd7af7c3d0aba1285274a3 +Merge: b6f6f3b cb17d9b +Author: George Helman +Date: Tue Oct 29 20:20:04 2019 -0400 + + Merge branch 'batch_aggregate' of https://github.com/deardurham/dear-petition into batch_aggregate + +commit b6f6f3b63dc00c31311b7c34a7abbdc86fe2cf0d +Author: George Helman +Date: Tue Oct 29 20:16:08 2019 -0400 + + Adding tests + +commit cb17d9b50abeadd011d657dadfe2366edf83a8ba +Merge: e743364 2f42ed0 +Author: Colin Copeland +Date: Tue Oct 29 20:14:09 2019 -0400 + + Merge branch 'batch_aggregate' of github.com:codefordurham/dear-petition into batch_aggregate + +commit e7433640eb285b576b429136c53cd19d0db97ff7 +Author: Colin Copeland +Date: Tue Oct 29 20:12:43 2019 -0400 + + add petition offenses + +commit 2f42ed0ebd1a26e7a5ea5da38601ea7384c26aab +Author: George Helman +Date: Tue Oct 29 20:07:41 2019 -0400 + + Ordered file_no property + +commit fcb017944cec8ecd24849b5466ac2d9a62dfef66 +Author: George Helman +Date: Tue Oct 29 19:33:15 2019 -0400 + + Batch date now returns correct date + +commit 3a8f500105efd825a09acc2b00220f49a448a0f0 +Author: George Helman +Date: Tue Oct 29 19:23:44 2019 -0400 + + Added new batch properties + +commit dbee04c8ac17033afa6ca8865937a335c9fc4467 +Merge: bb49f81 5f8b9bd +Author: Colin Copeland +Date: Tue Oct 29 19:08:01 2019 -0400 + + Merge branch 'batch_aggregate' of github.com:codefordurham/dear-petition into batch_aggregate + +commit bb49f81910fae604c5182e3455b5e47e135c1433 +Author: Colin Copeland +Date: Tue Oct 29 19:07:44 2019 -0400 + + fix redirect after record upload + +commit 5f8b9bd44e6cc7b5cc9586e7940e1d70fb4781b9 +Author: George Helman +Date: Tue Oct 29 19:06:24 2019 -0400 + + Aggregate offenses + +commit 19119bf0ca06853b480c0ca98d614f061142e705 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Oct 23 14:51:23 2019 +0000 + + Bump pillow from 6.0.0 to 6.2.0 + + Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.0.0 to 6.2.0. + - [Release notes](https://github.com/python-pillow/Pillow/releases) + - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) + - [Commits](https://github.com/python-pillow/Pillow/compare/6.0.0...6.2.0) + + Signed-off-by: dependabot[bot] + +commit d2d4687dd220aa483a6701fcf36c98c25a879bf0 +Merge: e9505c7 abbd75d +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Thu Oct 17 20:26:54 2019 -0400 + + Merge pull request #42 from deardurham/batch-upload + + [WIP] Add batch upload support + +commit abbd75d63ec1086bda5ddf95789ac5287a47b5d8 +Author: Colin Copeland +Date: Tue Oct 15 21:49:09 2019 -0400 + + update tests; pass batch and form_data into data_dict + +commit 5c128667a03cd08fb878bb6e5fc73652e4ebf0fd +Author: Colin Copeland +Date: Tue Oct 15 20:12:10 2019 -0400 + + first pass at adding batch support + +commit e9505c7e6fa039f2cda5996ea9ef2a4508c85dae +Merge: 402bbb0 bdb1f98 +Author: Colin Copeland +Date: Tue Oct 15 19:38:11 2019 -0400 + + Merge pull request #41 from deardurham/multiple_records + + New batch model + +commit bdb1f9882331c68a601e58cf7f2fada837ccb968 +Author: George Helman +Date: Tue Oct 15 19:30:19 2019 -0400 + + New batch model + +commit 402bbb05115516c9561371ce8055d04929f3c0e5 +Merge: b496cfd 6872533 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Oct 1 19:00:57 2019 -0400 + + Merge pull request #40 from deardurham/37-charged + + Only show CHARGED offenses on petition PDF + +commit 6872533e45f0648aa9cb45e7f30dfcbc662f408a +Author: Colin Copeland +Date: Tue Oct 1 18:55:22 2019 -0400 + + update ciprs-reader + +commit d67d4ccc01a1a1349ab9c17ccabafa414d1595a9 +Author: Colin Copeland +Date: Tue Oct 1 18:36:16 2019 -0400 + + test for CHARGED action + +commit ece843c9d7ce158c94f6400cdbd2ff02123154dc +Author: Colin Copeland +Date: Tue Oct 1 18:32:57 2019 -0400 + + show CIPRS record details on CIPRS tab + +commit 69c25e39d70025bf43c5d297290957a95aaf72cf +Author: Colin Copeland +Date: Tue Oct 1 18:27:45 2019 -0400 + + python black updates + +commit 6d2a0cb9a2340110791219061230561df9ff639c +Author: Colin Copeland +Date: Tue Oct 1 18:27:30 2019 -0400 + + filter offenses to only included CHARGED + +commit b496cfd4da76d9888176078131e3ed0527c92e37 +Merge: cf25fa0 f5f907f +Author: Colin Copeland +Date: Tue Sep 3 20:02:45 2019 -0400 + + Merge pull request #39 from deardurham/fix-dates + + Clean dates before rendering PDFs + +commit cf25fa07a5c494b71d421ba7b4573c0641b6595f +Merge: 69352d8 5af511f +Author: Colin Copeland +Date: Tue Sep 3 19:59:52 2019 -0400 + + Merge pull request #38 from deardurham/add_offense_to_ciprs_section + + Added offense info to CIPRS section on site + +commit f5f907f7d96ab70469a28d42d962e1567808d60f +Author: Colin Copeland +Date: Tue Sep 3 19:57:43 2019 -0400 + + clean dates before rendering PDFs + +commit 5af511ffd0d279ecd9b3d991b3b6321bbae513db +Author: George Helman -X (ghelman - AEROTEK INC at Cisco) +Date: Sun Aug 25 14:27:04 2019 -0400 + + Added offense info to CIPRS section on site + +commit 69352d865604a39c0e45fb89a02847eb1fe9f104 +Merge: 5a9f76f c6e4aba +Author: Colin Copeland +Date: Tue Aug 20 19:59:05 2019 -0400 + + Merge pull request #32 from deardurham/issues/9 + + Remove pipfile + +commit 5a9f76fe0c357f6371db0c85f4406847a4279d41 +Merge: 093cc59 36e8eb9 +Author: Colin Copeland +Date: Tue Aug 20 19:56:36 2019 -0400 + + Merge pull request #31 from deardurham/offense_information + + Changed disposal date + +commit c6e4aba4b9c3c01a2c128e59586a57b1c5fbf392 +Author: myersCody +Date: Tue Aug 20 19:48:52 2019 -0400 + + I think we will just keep the requirement.txt model, seems to be alot friendlier for heroku + +commit 093cc590e4f7ebf9c4565cbfadaa2e9cfd658991 +Author: Ryan Himmelwright +Date: Tue Aug 20 19:45:31 2019 -0400 + + Added travis build status icon (#33) + + - Added and icon for the build status in travis + - Moved icons to all be in the same row + +commit 36e8eb9ae791bb90883bffc0f124aaf95995ecaf +Author: George Helman -X (ghelman - AEROTEK INC at Cisco) +Date: Tue Aug 20 19:25:41 2019 -0400 + + Changed disposal date + +commit 378fd6e5105c27d37ac08c054939024f3efce931 +Merge: 964d470 4d4ca4a +Author: Colin Copeland +Date: Tue Aug 20 19:16:22 2019 -0400 + + Merge pull request #30 from deardurham/update_ignore + + Added generated files to gitignore + +commit 964d47018dd3a5c43c1208eefcfe8789d53a8e16 +Merge: 962cd3a bc60e32 +Author: Colin Copeland +Date: Tue Aug 20 19:15:26 2019 -0400 + + Merge pull request #27 from deardurham/offense_information + + Added offense information to pdf + +commit 962cd3ab6d0ee1c760808b60ac4b19d20b3081e1 +Merge: 5530884 6c4974b +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Aug 20 19:13:09 2019 -0400 + + Merge pull request #26 from deardurham/checkbox-fix + + Date fix for Acrobat Reader + +commit bc60e32fe8fbb9a35cf0b3f44f35d37bd2a9d1d1 +Author: George Helman -X (ghelman - AEROTEK INC at Cisco) +Date: Tue Aug 20 19:00:56 2019 -0400 + + Review updates + +commit 4d4ca4ab3bf44b218aa7df3b6c867220cf214f4e +Author: George Helman -X (ghelman - AEROTEK INC at Cisco) +Date: Tue Aug 20 18:50:21 2019 -0400 + + Added generated files to gitignore + +commit 099bc79c676acafc613dde650bf6e5d3852588bd +Author: myersCody +Date: Tue Aug 20 18:35:32 2019 -0400 + + Working on fixing pipfile break + +commit 9685bf70a02a84182a01f6a2f56060113ce7f4c6 +Author: George Helman -X (ghelman - AEROTEK INC at Cisco) +Date: Sun Aug 18 18:56:25 2019 -0400 + + Added offense information to pdf + +commit 6c4974bea78b64a38460b252c5b3cc20e130945d +Author: Colin Copeland +Date: Fri Aug 16 17:02:26 2019 -0400 + + change date format for acrobat reader + +commit 33ad5ebf97d96349e8ec93a5a689952e128645d2 +Author: Colin Copeland +Date: Fri Aug 16 16:34:54 2019 -0400 + + fix filename for firefox + +commit 5530884c6b64008b9d698b44a8fb55cd73626650 +Merge: 6d43add ba1106c +Author: Colin Copeland +Date: Fri Aug 16 15:52:02 2019 -0400 + + Merge pull request #25 from deardurham/basic-petition-tests + + Add basic petition form tests + +commit ba1106c3346703abd57e21271d6a85917551bb8e +Author: Colin Copeland +Date: Fri Aug 16 15:35:05 2019 -0400 + + flake8 fixes + +commit a910d0fa09ca6182dcb179b2499f5abb1c39328e +Author: Colin Copeland +Date: Fri Aug 16 15:26:35 2019 -0400 + + add initial petition form tests + +commit c9b0af6a6ce2759245d9267d17101a498c88f0bb +Author: Colin Copeland +Date: Fri Aug 16 15:26:18 2019 -0400 + + ignore templates in coverage for now + +commit c2ad67e5545a424211f8aa834712478270dbb1c8 +Author: Colin Copeland +Date: Fri Aug 16 15:24:21 2019 -0400 + + add pytest-cov + +commit 6d43addb7f8c369d7e25eb095c7998f20be821f7 +Merge: 282fcb9 51b30a6 +Author: Colin Copeland +Date: Fri Aug 16 15:03:25 2019 -0400 + + Merge pull request #24 from deardurham/black + + Black + +commit 51b30a67a5ff0e4fc459d65269cd2afe16873338 +Author: Colin Copeland +Date: Fri Aug 16 15:00:16 2019 -0400 + + make GitHub security altert go away + +commit 960d553f3fa0d535fcb6954c2214ab0661699792 +Author: Colin Copeland +Date: Fri Aug 16 14:58:58 2019 -0400 + + use SSH clone + +commit 7d0c2c3c4efcb4a1b3d39fb50c228850ca60ea51 +Author: Colin Copeland +Date: Fri Aug 16 14:54:14 2019 -0400 + + allow any host when developing locally + +commit 76cf5b475961433544b3220a330bf167892d7ef4 +Author: Colin Copeland +Date: Fri Aug 16 14:53:34 2019 -0400 + + run black + +commit 282fcb9daea031feca6173163ab54e7b8fbe6e12 +Merge: d0a904f e3273b7 +Author: Colin Copeland +Date: Thu Aug 15 15:49:41 2019 -0400 + + Merge pull request #23 from deardurham/pdf-appearance-update + + Add NeedAppearances to try and get form fields visible in Acrobat Reader + +commit e3273b7c336318e31cf1d7ff654efb7d011717e4 +Author: Colin Copeland +Date: Thu Aug 15 15:42:56 2019 -0400 + + add NeedAppearances; run black + +commit d0a904f4b86d36a9e536096fcd0c2d5080c87149 +Merge: 9dcf64b b10fd4d +Author: Colin Copeland +Date: Tue Aug 13 16:38:23 2019 -0400 + + Merge pull request #17 from deardurham/test-change + + Test change color + +commit b10fd4d43c7e25ba300f465c3cb250a11aec0cc9 +Author: Colin Copeland +Date: Tue Aug 13 16:34:16 2019 -0400 + + change background to teal + +commit dfcde8464db6e83f8a5f69042fb15224c3f5838b +Author: Colin Copeland +Date: Tue Aug 13 16:27:41 2019 -0400 + + default to .herokuapp.com on production settings + +commit d9cda6c8d6a490af589eb064f28c7bff1503f8bd +Author: Colin Copeland +Date: Tue Aug 13 16:21:26 2019 -0400 + + set DJANGO_ADMIN_URL, try free dyno + +commit 16180d1f86b9a000a57c6d0416064689ce832bef +Author: Colin Copeland +Date: Tue Aug 13 16:15:52 2019 -0400 + + more default values in app.json + +commit f2cd865eec3742442af5fe6d0bd71e3e1cb0b4a9 +Author: Colin Copeland +Date: Tue Aug 13 16:08:45 2019 -0400 + + add DJANGO_SECRET_KEY generator + +commit 5e04788423e5a76e0b7f3df4014e99f16d98a032 +Author: Colin Copeland +Date: Tue Aug 13 14:53:48 2019 -0400 + + change color + +commit 9dcf64bdf3258b2c97a286583af06e3a5abb4d54 +Author: Colin Copeland +Date: Tue Aug 13 14:48:52 2019 -0400 + + clean out env variables in app.json + +commit ccd2a278e419c0abba9736d9e3ef0c6ab31faaf1 +Merge: 584d4b7 2292933 +Author: Colin Copeland +Date: Tue Aug 13 14:40:31 2019 -0400 + + Merge pull request #16 from deardurham/run-tests + + First try at getting tests passing on CI + +commit 229293367b68e96266cb63d148fa95e32c750cff +Author: Colin Copeland +Date: Tue Aug 13 14:36:26 2019 -0400 + + don't require CELERY_BROKER_URL + +commit 3a7bc1f3a5db8687b334798ae088a0258909254c +Author: Colin Copeland +Date: Tue Aug 13 14:34:17 2019 -0400 + + use test settings + +commit 101337dbd557bcfdf29ab9196d05f3fbe3cb60d6 +Author: Colin Copeland +Date: Tue Aug 13 14:27:27 2019 -0400 + + define DATABASE_URL + +commit 12361cf6be8830d45352af5d9d353de318465e1d +Author: Colin Copeland +Date: Tue Aug 13 14:22:14 2019 -0400 + + start with simple travis file + +commit 584d4b7254accb1c4ccab33ef6e12e437c8077b5 +Merge: e92ea05 22e1fc1 +Author: Colin Copeland +Date: Tue Aug 13 13:42:51 2019 -0400 + + Merge pull request #14 from deardurham/12-attachment-pdf + + Option to view PDFs in browser + +commit 22e1fc1d5d4375247443600744be1b3ef3e780e7 +Author: Colin Copeland +Date: Tue Aug 13 13:36:11 2019 -0400 + + add option to not download PDF as attachment (also includes black formatting) + +commit e92ea05d1bd2971af132ab1f8957910cc1980778 +Author: Colin Copeland +Date: Mon Aug 12 16:46:03 2019 -0400 + + add papertrail to heroku setup + +commit ab0357cb7d572ece4556a95f12b4cc7caaf1716a +Author: Colin Copeland +Date: Mon Aug 12 16:45:47 2019 -0400 + + update defaults in heroku setup docs + +commit 63f18ff79f374a1eff71410e2733584d5743c714 +Author: Colin Copeland +Date: Mon Aug 12 16:21:45 2019 -0400 + + update heroku docs after setting up staging + +commit bfbf7eddb83802ce4c40a527355e754e5661cd1b +Author: Colin Copeland +Date: Mon Aug 12 16:19:34 2019 -0400 + + move Docker setup above other docs, since it's the preferred setup for new devs + +commit 5e10d71a85d397acb8a61dfb33959bbd8b2501af +Author: Colin Copeland +Date: Mon Aug 12 16:09:16 2019 -0400 + + trigger deploy + +commit 6467e123ff0a922fdeab5503fc4518066da98b5f +Author: Colin Copeland +Date: Mon Aug 12 14:52:43 2019 -0400 + + update django to 2.2.4 + +commit c11919466206069ad372fffcde50c89ea521e7ce +Merge: 5ab6890 2ef08e4 +Author: Colin Copeland +Date: Mon Aug 12 14:49:13 2019 -0400 + + Merge pull request #7 from deardurham/django223 + + Update django to 2.2.3 + +commit 2ef08e49cb261d07addb8b839e29889c72c47abf +Author: Colin Copeland +Date: Mon Aug 12 14:46:52 2019 -0400 + + update django to 2.2.3 + +commit 5ab68909caef67949662c32586718700ae51bb7c +Merge: 755efd6 f2beeb3 +Author: Colin Copeland +Date: Mon Aug 12 14:45:16 2019 -0400 + + Merge branch 'develop' of github.com:codefordurham/dear-petition into develop + +commit f2beeb3d63468d04f73979bf461afedec5d31e5f +Author: Colin Copeland +Date: Mon Aug 12 14:44:42 2019 -0400 + + Add Heroku generated app.json + +commit 755efd66376d277673190af27b18db55892f3541 +Author: Colin Copeland +Date: Mon Aug 12 14:35:10 2019 -0400 + + trigger deploy + +commit df58dd68aaa8b68dfa9a33eda9a450df4d150dbe +Author: Colin Copeland +Date: Mon Aug 12 14:29:29 2019 -0400 + + move pipfile for now + +commit bc447d829219fd32d218dc7be33999d89019d837 +Author: Colin Copeland +Date: Mon Aug 12 14:18:57 2019 -0400 + + trigger deploy + +commit 5ec020aecf25050b25205f15af91dc4a0ede138b +Merge: 5afea1a ec60c0f +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Fri Aug 9 10:47:38 2019 -0400 + + Merge pull request #6 from deardurham/checkbox + + Added checkbox functionality + +commit 5afea1a3cc3d4d7a8144ae0def9e80f2a5bbf299 +Author: Cody Myers +Date: Tue Aug 6 20:00:00 2019 -0400 + + Added a pipfile & update readme. (#5) + + * Added a pipfile. + + * Update readme + + * Update readme and env + + * Updated readme with notes regarding the pipenv environment + +commit ec60c0f7f1dc17f57a503176d3f638610ac2adcd +Author: Colin Copeland +Date: Tue Jul 23 19:48:35 2019 -0400 + + use PdfName function to check checkbox + +commit a3a3ddfb4342db90515bc79262d95a4cefb0d9d7 +Author: George Helman +Date: Mon Jul 15 00:45:31 2019 -0400 + + Added checkbox functionality + +commit 0e1090a3d210661f500fc278b78b8427cd55e01c +Author: Colin Copeland +Date: Thu Jul 11 21:33:28 2019 -0400 + + bump ciprs-reader to 0.0.6 + +commit 231457d71c6db5fdb0e317382b4654b73adac91c +Author: Colin Copeland +Date: Mon Jun 24 21:54:15 2019 -0400 + + update ciprs-reader to 0.0.3; output court type + +commit bb007f47700b58cbf89801ef10056fb26c217d44 +Author: Colin Copeland +Date: Sun Jun 23 22:03:34 2019 -0400 + + add attorney and address fields + +commit d00e0db0a58c0c232d9bb18b4369476f729f1362 +Author: Colin Copeland +Date: Sun Jun 23 14:05:19 2019 -0400 + + organize ciprs data on view page + +commit 2d5620059c48c9640d260f46f510bad81afc9897 +Author: Colin Copeland +Date: Sat Jun 22 20:38:11 2019 -0400 + + don't link to PDF + +commit b9ef75f7e328049cc680cd8417b54d782b71c8c3 +Author: Colin Copeland +Date: Sat Jun 22 20:27:40 2019 -0400 + + enable saving PDF to S3 (and viewing) + +commit c4557fc2f5b9c42c359e1a037c0073ac5f74fbec +Merge: 74844b3 764e9d1 +Author: Colin Copeland +Date: Sat Jun 22 19:53:10 2019 -0400 + + Merge branch 'master' of github.com:codefordurham/dear-petition + +commit 74844b3fd4f6fb04cbb244b54d30ab35e79f57ca +Author: Colin Copeland +Date: Sat Jun 22 14:15:57 2019 -0400 + + add source output to view + +commit 2ac90909fd98635d5eb6ff0cd82c08b6329e2462 +Author: Colin Copeland +Date: Sat Jun 22 13:50:08 2019 -0400 + + fix env getter + +commit 5aa45f8882c3c0e29e039ca79873a0dae96e4335 +Author: Colin Copeland +Date: Sat Jun 22 13:46:44 2019 -0400 + + update Django + +commit 57e033538b383457a48d9d7e4b368006acee0ad4 +Author: Colin Copeland +Date: Sat Jun 22 13:46:31 2019 -0400 + + update ciprs-reader; add logging config + +commit 764e9d11793b5a8afc0681aab63f640c710ff93a +Merge: 1c3a052 cd08b8b +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Tue Jun 18 01:15:48 2019 -0400 + + Merge pull request #4 from codefordurham/black + + Added pre-commit hook to run black formatter + +commit cd08b8b4ca8ce5da9e413b499079ea1ed5b0a56e +Author: George Helman +Date: Mon Jun 17 23:02:22 2019 -0400 + + Added pre-commit hook to run black formatter + +commit 1c3a052ca89e700c514e19e5878a47872cd4569f +Merge: ab431cd 520e5ad +Author: Colin Copeland +Date: Tue Jun 11 18:53:25 2019 -0400 + + Merge pull request #1 from codefordurham/deploy + + Heroku Deploy + +commit 520e5adc4b483141cff81e0e1bccddf7773871d7 +Merge: 7ba910e ab431cd +Author: Colin Copeland +Date: Tue Jun 11 18:52:52 2019 -0400 + + Merge branch 'master' into deploy + +commit ab431cdb985a4bb39c23e727274b772e57877840 +Author: Ryan Himmelwright +Date: Tue Jun 11 18:39:58 2019 -0400 + + Converted README to a md (#3) + +commit 8c046cee5336aaed92ffa71e08b6a94677a717f9 +Merge: e80609b f236f39 +Author: George Helman <43391981+georgehelman@users.noreply.github.com> +Date: Sat Jun 8 22:36:14 2019 -0400 + + Merge pull request #2 from codefordurham/remove_attorney + + Remove attorney + +commit f236f398e0008ff31d31836f074ccc102a62ab6e +Author: George Helman +Date: Sat Jun 8 22:34:27 2019 -0400 + + Removed attorney info in petition (needs to be added manually) + +commit bafa95a04f63259cdae8c5fc55409f27895ab586 +Author: George Helman +Date: Tue May 28 17:38:35 2019 -0400 + + Updated README + +commit e80609b1dd21a57817425fb632f9e0892c69654b +Author: George Helman +Date: Mon May 27 20:11:04 2019 -0400 + + Created setup-project.py, which handles setup including installing the ciprs-reader project + +commit 7ba910ea2f099524a98f4a922af3988c61d5fb0e +Author: Colin Copeland +Date: Sat May 18 18:39:58 2019 -0400 + + add view to download pd + +commit f5a0573b5823deedce50febb96febe7acb4196b2 +Author: Colin Copeland +Date: Sat May 18 17:52:16 2019 -0400 + + output pretty json + +commit 20a611b47cec99434ba0972894c2440735a1cbc0 +Author: Colin Copeland +Date: Sat May 18 17:45:41 2019 -0400 + + add view page + +commit eb0bf388287cf63f815d95a2ca9fe05dcab8d5c2 +Author: Colin Copeland +Date: Sat May 18 17:13:07 2019 -0400 + + add default + +commit 1f320d23a79740a246dce18d208ef29a1c1e8185 +Author: Colin Copeland +Date: Sat May 18 17:09:56 2019 -0400 + + add additional aws s3 settings + +commit 638610bbb8672f3873cc9905bd8e70b85794c2ad +Author: Colin Copeland +Date: Sat May 18 16:46:55 2019 -0400 + + parse from admin action + +commit f7baf0de8f8b7c22a8059dc9f6ade459ad7a713e +Author: Colin Copeland +Date: Sat May 18 16:25:00 2019 -0400 + + add petition app + +commit 7dd28d8b873cd4b7ccc03aafae894287b6634be5 +Author: Colin Copeland +Date: Sat May 18 16:23:35 2019 -0400 + + pin ciprs-reader + +commit 09862ad0363479105a19027f3742e3ba021204bc +Author: Colin Copeland +Date: Sat May 18 15:20:34 2019 -0400 + + make editable + +commit 237f30d3923373734215e458f7514f5d391f2255 +Author: Colin Copeland +Date: Sat May 18 14:26:09 2019 -0400 + + remove about page; pass protect home page + +commit 4c02cb95c098d1bedd621a4f5896e08faf4635ae +Author: Colin Copeland +Date: Sat May 18 14:21:06 2019 -0400 + + update sentry + +commit bc35896dacc522218559364b38dd6a1b67a8328d +Author: Colin Copeland +Date: Sat May 18 14:20:46 2019 -0400 + + disable socialauth + +commit 8c342f3d58ce70afd73f3cce64a82bc4d761c87a +Author: Colin Copeland +Date: Sat May 18 14:04:49 2019 -0400 + + add ciprs-reader + +commit 2d8cd735204554ab9f46fa6603cba4c111384184 +Author: Colin Copeland +Date: Sat May 18 14:04:21 2019 -0400 + + add back postgres to entrypoint + +commit f51b76ca546fc5758d3ed740a4d12f0ba54f2866 +Author: Colin Copeland +Date: Sat May 18 13:57:05 2019 -0400 + + try to debug prod docker setup (not used) + +commit 3a28fd759b5817efa10c13214196cb0d70f4c278 +Author: Colin Copeland +Date: Sat May 18 13:56:41 2019 -0400 + + add poppler-utils + +commit 76778885377be9cf7c0b0d38151e68fa97b5d754 +Author: Colin Copeland +Date: Sat May 18 13:49:36 2019 -0400 + + add pdftotext buildpack + +commit 40cba5241e8db54c719c1ba58b92c543e000f156 +Author: Colin Copeland +Date: Sat May 18 13:43:12 2019 -0400 + + add buildpacks + +commit 10e740febf21fe01edb25dd111125916fb2f6f8b +Author: Colin Copeland +Date: Sat May 18 13:39:57 2019 -0400 + + add heroku docs start + +commit 284aa20dfca791a78df57f63036d096ec1f3baf1 +Author: Colin Copeland +Date: Sat May 18 13:32:45 2019 -0400 + + try adding migrate to start script + +commit 538d02ea6d254d4a30de1d27953fb431a0db360b +Author: Colin Copeland +Date: Sat May 18 13:18:53 2019 -0400 + + add curl + +commit 23f4d706c8f9bd505b9e2d1f8b412bccc09c0801 +Author: Colin Copeland +Date: Sat May 18 13:15:48 2019 -0400 + + enable release step again + +commit c0c2b6cdb204afbb9e06bfe5b995627b20ec18e8 +Author: Colin Copeland +Date: Sat May 18 12:47:53 2019 -0400 + + disable release + +commit 79a4aa9b4e62e26a25de7760bfe8ae752c7f0520 +Author: Colin Copeland +Date: Sat May 18 12:41:50 2019 -0400 + + fix release script name + +commit a90ddc7ce4369df59769f177dbece0e6660a0f5f +Author: Colin Copeland +Date: Sat May 18 12:30:00 2019 -0400 + + change to web name + +commit 5c3361ffe67e311f8bbe96060a8b9c7f2f4652cd +Author: Colin Copeland +Date: Sat May 18 10:56:46 2019 -0400 + + add release step + +commit 4ede876d4386436c6a8ed8e3c0bf0959238a9531 +Author: Colin Copeland +Date: Sat May 18 10:37:20 2019 -0400 + + don't use S3 for staticfiles + +commit 2436d142be127028eaceb1889e122b22694c5fdd +Author: Colin Copeland +Date: Sat May 18 10:29:17 2019 -0400 + + bind to heroku port env variable + +commit a97471b695aad523885d059681760b4f86e233eb +Author: Colin Copeland +Date: Sat May 18 10:21:36 2019 -0400 + + change gunicorn path; set port 800 + +commit 5941d163cf3dd7cd902631ba45bf94a169a8d84f +Author: Colin Copeland +Date: Sat May 18 10:01:54 2019 -0400 + + make executable + +commit d22b0b454b703af1fd2c3fc658192a61043e5247 +Author: Colin Copeland +Date: Sat May 18 09:44:27 2019 -0400 + + just use DATABASE_URL on heroku + +commit d15a0a031d53df0c307ea8335a831eca5aee4b55 +Author: Colin Copeland +Date: Sat May 18 09:25:41 2019 -0400 + + update pip3 + +commit 5435ef1ae59bc71b0db431166bbaa45d6cdceccb +Author: Colin Copeland +Date: Sat May 18 09:22:48 2019 -0400 + + add missing slash + +commit d32d44f02285fbc2b6d7dc317c5f7e02e157faba +Author: Colin Copeland +Date: Sat May 18 09:22:19 2019 -0400 + + switch to alpine image; add git and poppler-utils + +commit d447a785cccf12094e16ab620662ec0068c49347 +Author: Colin Copeland +Date: Sat May 18 09:19:27 2019 -0400 + + move prod dockerfie + +commit 2ff572b65e793f291416456b72ba39e8a680e43a +Author: Colin Copeland +Date: Sat May 18 09:14:16 2019 -0400 + + add heroku.yml + +commit b7b424b8bca47329368699b75ae2a200288d9727 +Author: George Helman +Date: Sun May 12 21:59:59 2019 -0400 + + Made it into a command line utility + +commit ffc58f0d5a9349109a508a6f67b06f5261fcae7a +Author: George Helman +Date: Sun May 12 21:51:07 2019 -0400 + + Created pdf writer library and script using both reader and writer libraries to go from initial input to final output + +commit da52661779e1787f1007b6e1039de8d73d041a3a +Author: George Helman +Date: Wed Apr 24 21:05:00 2019 -0400 + + Finished creating regex searches for relevant fields + +commit 063865459349be6db1ebbdcaa819d6a85b8842a9 +Author: Colin Copeland +Date: Sun Apr 14 21:30:32 2019 -0400 + + pdfminer + +commit 3e35dd27700b20c60a25bbe997b86eb26c0014c7 +Author: Colin Copeland +Date: Sun Apr 14 09:19:04 2019 -0400 + + add cypress PDF exploration + +commit 3aad8bd9441c331ea9f21b2c2fb5b0552c2cc105 +Author: Colin Copeland +Date: Sat Apr 13 15:42:43 2019 -0400 + + add pdfrw + +commit 527af7a4dae23fedce6d67fe9469d0ad19cb4992 +Author: Colin Copeland +Date: Sat Apr 13 15:34:39 2019 -0400 + + add jupyter lab + +commit d580d66c1b24567761d54e829bed1f2951a49a8f +Author: Colin Copeland +Date: Sat Apr 13 14:30:30 2019 -0400 + + move local docker setup to top of readme + +commit 3e1bde0d8e394cc5b810123283a703f5c581a6d5 +Author: Colin Copeland +Date: Sat Apr 13 14:11:16 2019 -0400 + + upgrade to Django 2.2 + +commit 71285779fc10274554c067ebff8c64e76da6df05 +Author: Colin Copeland +Date: Sat Apr 13 14:11:01 2019 -0400 + + disable celery for now + +commit 23f94be529b8411400c6382b5e6691dd5d9e2208 +Author: Colin Copeland +Date: Sat Apr 13 14:10:36 2019 -0400 + + set tz to America/New_York + +commit fb2c4cbfead4f2198b8e8971eb488fe228169533 +Author: Colin Copeland +Date: Sat Apr 13 14:10:24 2019 -0400 + + use redis alpine + +commit b548a239ac560f43b2304b413d451e767b9a4fde +Author: Colin Copeland +Date: Sat Apr 13 14:10:11 2019 -0400 + + use postgres alpine + +commit 8ed3fd4e555956195d9b796ac0ba485a9d3a5eff +Author: Colin Copeland +Date: Sat Apr 13 13:52:19 2019 -0400 + + initial commit diff --git a/src/components/elements/Tooltip/Tooltip.jsx b/src/components/elements/Tooltip/Tooltip.jsx index df6cd609..c06203e2 100644 --- a/src/components/elements/Tooltip/Tooltip.jsx +++ b/src/components/elements/Tooltip/Tooltip.jsx @@ -5,6 +5,7 @@ import styled from 'styled-components'; const TooltipContentWrapper = styled.div` display: flex; + flex-direction: ${(props) => props.flexDirection}; align-items: center; background: rgb(255 255 255); z-index: 10; @@ -14,7 +15,14 @@ const TooltipContentWrapper = styled.div` padding: 1rem 0.5rem; `; -export const Tooltip = ({ children, tooltipContent, placement, hideTooltip = false, offset = [0, 0] }) => { +export const Tooltip = ({ + children, + tooltipContent, + placement, + hideTooltip = false, + offset = [0, 0], + flexDirection = 'row', +}) => { const hoverDiv = useRef(null); const [isHovering, setIsHovering] = useState(false); const [popperElement, setPopperElement] = useState(); @@ -43,7 +51,7 @@ export const Tooltip = ({ children, tooltipContent, placement, hideTooltip = fal {isHovering && ( - {tooltipContent} + {tooltipContent} )} diff --git a/src/features/OffenseTable/OffenseTable.jsx b/src/features/OffenseTable/OffenseTable.jsx index 6db70d2c..b2ea9c81 100644 --- a/src/features/OffenseTable/OffenseTable.jsx +++ b/src/features/OffenseTable/OffenseTable.jsx @@ -1,7 +1,7 @@ import { useState } from 'react'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faChevronRight, faChevronDown, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { formatDistance, isBefore, isValid } from 'date-fns'; +import { formatDistance, isValid } from 'date-fns'; import { TableBody, TableCell, TableHeader, TableRow, TableStyle } from '../../components/elements/Table'; import { Tooltip } from '../../components/elements/Tooltip/Tooltip'; @@ -21,11 +21,9 @@ const toNormalCaseEachWord = (str) => .reduce((acc, s) => `${acc} ${s}`); const toNormalCase = (str) => `${str.charAt(0).toUpperCase()}${str.slice(1).toLowerCase()}`; -function OffenseRow({ offenseRecord, selected, onSelect, dob }) { +function OffenseRow({ offenseRecord, selected, onSelect, dob, warnings }) { const [showDetails, setShowDetails] = useState(false); - - const dateAt18YearsOld = isValid(dob) && new Date(dob.getFullYear() + 18, dob.getMonth() + dob.getDay()); - + let warnings2 = [...warnings, 'warning 1', 'warning 2']; return ( @@ -36,8 +34,14 @@ function OffenseRow({ offenseRecord, selected, onSelect, dob }) { {toNormalCaseEachWord(offenseRecord.action)} {toNormalCaseEachWord(offenseRecord.severity)} - {isValid(dob) && isBefore(new Date(offenseRecord.offense_date), dateAt18YearsOld) && ( - + {warnings.length > 0 && ( + ( +
{warning}
+ ))} + offset={[0, 10]} + flexDirection="column" + >
)} @@ -95,6 +99,7 @@ function OffenseTable({ offenseRecords, selectedRows, onSelect, dob }) { offenseRecord={offenseRecord} onSelect={() => onSelect(offenseRecord.pk)} dob={dob} + warnings={offenseRecord.warnings} /> ))} From 27ad5f2df38f900e89f7130e97ebc08a655c415d Mon Sep 17 00:00:00 2001 From: George Helman Date: Tue, 26 Nov 2024 18:02:00 -0500 Subject: [PATCH 2/2] Code review feedback --- qq | 8082 -------------------- src/features/OffenseTable/OffenseTable.jsx | 3 +- 2 files changed, 1 insertion(+), 8084 deletions(-) delete mode 100644 qq diff --git a/qq b/qq deleted file mode 100644 index 7e9030dc..00000000 --- a/qq +++ /dev/null @@ -1,8082 +0,0 @@ -commit 9ea536e163028020735770d51f3e63e0c36c839c (HEAD -> assault_convictions) -Author: George Helman -Date: Sat Nov 16 11:53:53 2024 -0500 - - /#461 Assault convictions now provide warning. Also created general approach for adding offense-level warnings on the Petition page - -commit c65fbe6ea84e45a3c430d23d99cca0c2038efd85 (origin/master, origin/HEAD, master) -Merge: 03e577d 891ee34 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Nov 11 18:54:39 2024 -0500 - - Merge pull request #513 from deardurham/district_deferred - - #487 Add new Portal dismissed disposition method - -commit 03e577da0db900726b7aa84512d8454261e02cb1 -Author: Colin Copeland -Date: Mon Nov 11 18:25:29 2024 -0500 - - Re-enable black pre-commit hook (#456) - - * install django-upgrade hook - - * update requirements - - * django-upgrade 4.2 fixes - - * switch to factory.django.DjangoModelFactory - - * support Pillow>=9 - - * use dummy_get_response - - * use 3.12 in Dockerfile and GitHub actions - - * add CSRF_TRUSTED_ORIGINS - - * try removing terser - - * run prettier - - * rerun prettier - - * remove invoke - - * remove old heroku files - - * enable black - - * run black - - * create github action workflow for pre-commit - - * update pre-commit - - * run black - - * Run pre-commit - - * Move lint + format to pre-commit - - * Run prettier for js,jsx files only - - --------- - - Co-authored-by: Rob Gries - -commit 23f1a2f26cd019c0996bb9ab5a46b72cab2d1c71 -Author: Rob Gries -Date: Mon Nov 11 16:38:48 2024 -0500 - - Fix restriction on number of characters for county (#511) - -commit 891ee34956c1a08bb5882b5a9d4a3058a8f1f4c2 (origin/district_deferred, district_deferred) -Author: George Helman -Date: Mon Nov 11 14:35:15 2024 -0500 - - #487 Add new Portal dismissed disposition method - -commit 0f10bf4d658d0f0cc8412aef0efe88d37e6c1d7a -Merge: 85247ce b63248f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Nov 11 12:25:37 2024 -0500 - - Merge pull request #512 from deardurham/fix_celery - - Decrease celery concurrency because Heroku says it is using too much … - -commit b63248f2e095d948a161b1169669f179db42c259 (origin/fix_celery, fix_celery) -Author: George Helman -Date: Mon Nov 11 12:12:16 2024 -0500 - - Decrease celery concurrency because Heroku says it is using too much memory, causing dyno to crash - -commit 85247ced9c99669f4e9b76112216c0a078f62953 -Merge: e695653 25773a8 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Nov 11 11:39:51 2024 -0500 - - Merge pull request #510 from deardurham/fix_celery - - Fix Celery not running - -commit 25773a86e404dbf470b795fb62b899d123888925 -Author: George Helman -Date: Mon Nov 11 11:27:46 2024 -0500 - - Fix Celery not running - -commit e6956533b2254b6d8fca7e766c7bbc15ffdd6d26 -Author: Rebecca Drabenstott -Date: Wed Oct 23 18:54:28 2024 -0400 - - Add 1 Portal dismissed disposition method (#507) - - per Oct 23 email from Jessica - - Co-authored-by: Rebecca Drabenstott - -commit 883a1b28c187df3f1324d9017cd324e10e4adf0a -Author: Rob Gries -Date: Wed Oct 23 17:00:52 2024 -0400 - - Add pagination to Existing Petitions and Combine Batches modal (#506) - - * Add pagination to batches and combine batches modal - - * Remove unused props - - * Fix prettier and update versions - -commit f7cdcbe9af03566f99d280e6565231c31f9eded4 -Merge: c893880 1db942b -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Oct 23 00:06:24 2024 -0400 - - Merge pull request #503 from deardurham/record_import_export - - Record import export - -commit 1db942be74b4334b5c71618037ad8f17f0a67d2c (origin/record_import_export, record_import_export) -Author: George Helman -Date: Fri Oct 18 00:16:44 2024 -0400 - - More code review changes - -commit 722d54b669cb4c70b301e76602135dd3d8617b44 -Author: George Helman -Date: Wed Oct 16 00:00:05 2024 -0400 - - Code review changes - -commit c8938807c2423da834260b57588c8f2e9b5ae01f (rob/master) -Author: Rebecca Drabenstott -Date: Tue Oct 15 20:47:04 2024 -0400 - - Recognize additional Portal dismissed disposition methods (#504) - - Co-authored-by: Rebecca Drabenstott - -commit 4b9da85343424022a742c41253d543b41bf8e354 -Author: George Helman -Date: Tue Oct 15 17:56:33 2024 -0400 - - Remove unnecessary console.logs - -commit c42211b9e7ace23d27894b6c13f96ddab690a88f -Author: George Helman -Date: Tue Oct 1 18:21:18 2024 -0400 - - Create record spreadsheet that can import/export batches as an Excel file - -commit 51112c546fac3d12d192b82abe4d1447e62df508 -Author: Rebecca Drabenstott -Date: Thu Sep 5 18:45:17 2024 -0400 - - Add Portal disposition methods so more offenses show on petitions (#501) - - Co-authored-by: Rebecca Drabenstott - -commit c8a31522de26d2bb18c421b1278fc62b31a243b8 -Author: Rebecca Drabenstott -Date: Tue Sep 3 17:43:27 2024 -0400 - - Fix missing petitions when importing form Portal (#500) - - Co-authored-by: Rebecca Drabenstott - -commit b9ef72d1fec2ad0d1c18e24847b592a746c76d71 -Merge: f3a3d62 f404e1e -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sat Aug 24 18:07:35 2024 -0400 - - Merge pull request #499 from deardurham/fix_ut - - Fix petition filename UT to have fixed petition date - -commit f404e1e5d72bd27849d4a6a4ae56bdaac29b53ed (origin/fix_ut) -Author: George Helman -Date: Sat Aug 24 17:53:23 2024 -0400 - - Fix petition filename UT to have fixed petition date - -commit f3a3d626874dc9332a9c26bbd205bdbbec502d5a -Merge: 3e2186c 20e77fd -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sat Aug 24 13:19:53 2024 -0400 - - Merge pull request #490 from deardurham/new_petition_titles - - Change petition titles to new AOC format - -commit 3e2186c1924617de145082e1c1f1b611180792ae -Author: Rob Gries -Date: Thu Aug 22 21:19:40 2024 -0400 - - New EZ Expunge Logos (#498) - - * Add new logos and new favicon - - * Add new logos - - * Ignore index.html for prettier - still not preventing vs code for some reason - -commit 2228a4aa1e2255f2ad1234dcb13c702ce097efa3 -Author: Rob Gries -Date: Tue Aug 20 17:43:11 2024 -0400 - - Move agency table to multi-inheritence model and fix some small issues (#496) - - * Create new agency table using multi-inheritence - - * Remove backwards migration - - * Remove reverse migration for now and fix delete of old model - - * Remove call to converting agency object to contact - - * Add sheriff office to agency modal - -commit 9992bd2cc5ac947a4a6827360ad1928e9b731cc1 -Author: Rob Gries -Date: Fri Aug 16 09:25:10 2024 -0400 - - Fix automatic refreshing of generation page data after modifying agencies or offenses (#497) - - * Fix automatic refreshing of generation page data after modifying agencies or offenses - - * Remove unnecessary wrapper component - -commit 202dcd0c89cd89e8bc84adc6d1ca39180022c34a -Author: Rob Gries -Date: Tue Aug 13 19:09:20 2024 -0400 - - Fix flaky adult conviction tests (#495) - - * Fix flaky adult conviction tests - - * Fix adult misdemeanors test - - * Fix test_catch_parse_error - - * Add charge agency test and catch parse_agency exception - -commit 81d78aae42c305863a90a6197be505e2b130c23a -Author: Rob Gries -Date: Sun Aug 11 22:47:49 2024 -0400 - - Automatically select agencies from portal document (#492) - - * Automatically select agencies from portal document - - * Add unit test - -commit e386bdfd6e6fba1a64f51c8134510c23669a1941 -Author: Rebecca Drabenstott -Date: Thu Aug 8 09:39:28 2024 -0400 - - Parse arrest date from Portal (#488) - - Also clean up some errors in logs - -commit 649ac018288eaf14c1d5cc47fa186e4f4d67e089 -Author: Rebecca Drabenstott -Date: Thu Aug 8 09:38:49 2024 -0400 - - Parse case numbers from Portal with "IF" in addition to "CR" (#491) - -commit 20e77fd5c391d38a44ae83f445833008e8e4fa68 (origin/new_petition_titles) -Author: George Helman -Date: Sun Jul 28 02:21:15 2024 -0400 - - Change petition titles to new AOC format - -commit d80208b5d219d24a0109011959463ad4d270d946 -Author: Rebecca Drabenstott -Date: Tue Jun 11 18:24:42 2024 -0400 - - Make extended timeout specific to /batch/{pk}/ GET requests (#479) - - * Make extended timeout specific to /batch/{pk}/ GET requests - - And set default timeout back to previous value - - * Relocate extended timeout to api.js - - --------- - - Co-authored-by: Rebecca Drabenstott - -commit 424101eddd72dc906d2f242fa01a89d2fe28b34f -Merge: ec9d0a8 d01e46e -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sun Jun 9 18:38:06 2024 -0400 - - Merge pull request #480 from deardurham/add_dob_to_client - - Add DOB to client - -commit ec9d0a8e53259fe071cb80d887fed47b642962ee -Author: Rob Gries -Date: Sun Jun 9 17:29:37 2024 -0400 - - Portal Importer improvements Part 1 (#477) - - * Add warning if using portal importer on wrong site and add versioning - - * Remove eslint from prod build and remove usage of await from top level - - * Disable eslint for bookmarklet imports - - * Use npm package to fix deploy issues - -commit d01e46e6a76c610d950f0f5b6cf73e84a9415bf1 (origin/add_dob_to_client) -Author: George Helman -Date: Sat Jun 8 23:53:44 2024 -0400 - - Dev review changes - -commit 52d087dcb1c0ac833ff2e99f8a2441943875f17a -Author: George Helman -Date: Sun Jun 2 16:38:04 2024 -0400 - - Add an extra UT - -commit 042aad2fe8b776ad6101cfcceee7fe0073788605 -Author: George Helman -Date: Sun Jun 2 15:47:15 2024 -0400 - - Make the frontend work with new client DOB changes - -commit d6f14d1756a93335d3000987c36b801d53984bf9 -Author: George Helman -Date: Sat Jun 1 14:14:01 2024 -0400 - - Add additional UTs - -commit 25d4250a448c0edf2c6bbd821e69c148d65e5f21 -Author: George Helman -Date: Sat Jun 1 13:13:00 2024 -0400 - - Temp commit - -commit 3af3c9e345367c1ec03eadaa05e81266ee450ed0 -Author: Rebecca Drabenstott -Date: Sun May 19 19:15:49 2024 -0400 - - Handle dates that fall within an hour of daylight saving time ending - -commit da09277d0253077d3b9466f59c9e9b4447f98012 -Author: George Helman -Date: Tue May 28 01:54:05 2024 -0400 - - Add DOB to client - -commit a57c1298407d44a1dc20b80d99d17793befd02a7 -Merge: b689758 3a6cf31 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 14 17:37:15 2024 -0400 - - Merge pull request #476 from deardurham/lxml - - Pin lxml package so Heroku build hopefully succeeds - -commit 3a6cf310be660f78e49daaa9829122c9857b7d1e (origin/lxml) -Author: George Helman -Date: Sat May 4 00:56:44 2024 -0400 - - Pin lxml package so Heroku build hopefully succeeds - -commit b6897589f44879cd6a1797e41e68e3f82806804b -Merge: ca1d367 a457548 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 30 17:36:07 2024 -0400 - - Merge pull request #474 from deardurham/combine_batches - - Add question mark - -commit a457548b2e08a2b85dfa7506ed2e0f773f5d3d56 (origin/combine_batches) -Merge: 0003ff7 ca1d367 -Author: Rob Gries -Date: Tue Apr 30 17:35:47 2024 -0400 - - Merge branch 'master' into combine_batches - -commit 0003ff7e78fcba961ede4586d40fc7c92338daee -Author: George Helman -Date: Tue Apr 30 17:35:18 2024 -0400 - - Add question mark - -commit ca1d3678de918a666753af47896d0a0310acb42b -Merge: 0c2ae03 2207221 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 30 17:27:44 2024 -0400 - - Merge pull request #472 from deardurham/combine_batches - - Allow combining of batches to support multiple sources of records (CI… - -commit 0c2ae03a6769525705ca61c67d6dc16c29e9e864 -Author: Rebecca Drabenstott -Date: Thu Apr 25 22:41:26 2024 -0400 - - Increase timeout for web services - - We were seeing timeouts when loading the petition list page for a client who had a large number of petitions - -commit 22072214255a61225e3e08d953d1107e0a98dd28 -Author: George Helman -Date: Sun Apr 28 23:00:19 2024 -0400 - - More dev review changes - -commit a8e2048d5c0831ee72f7fe467469604c0469c3f1 -Author: George Helman -Date: Tue Apr 23 23:44:37 2024 -0400 - - Address review comments - -commit 036164b1861a367bbd1c03cd5211f90f81776bf1 -Author: George Helman -Date: Thu Apr 18 17:52:45 2024 -0400 - - Fix combine batches UT - -commit 43657d8db9b6c1e99ff289d1a2958ac05e5719e5 -Author: George Helman -Date: Sun Apr 14 19:01:58 2024 -0400 - - Make combining batches into a modal - -commit 511184c75569080077886cc9992f92912a7a7632 -Author: George Helman -Date: Tue Apr 2 17:34:38 2024 -0400 - - Allow combining of batches to support multiple sources of records (CIPRS and Portal) - -commit 3814c3601a286aea40e668d4846e24229e38a209 -Author: Rebecca Drabenstott -Date: Sun Feb 25 11:17:44 2024 -0500 - - Update help page - -commit 7fa7cb988654ae861f91652eadcf04e22f5890e7 -Merge: 14464e6 c5fc92e -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sun Feb 18 20:03:35 2024 -0500 - - Merge pull request #462 from deardurham/adult_convictions - - District court offenses were showing up on the superior court petitio… - -commit c5fc92ef50424195906ca0aaa6662e672e54f677 (origin/adult_convictions) -Author: George Helman -Date: Tue Feb 6 19:23:02 2024 -0500 - - District court offenses were showing up on the superior court petitions because the filter condition was using the jurisdiction fo the CIPRS record rather than the jurisdiction of the record. I suspect this is an artifact of the time when we thought a CIPRS record had only one jurisdiction. We now know that it is possible for a CIPRS record to have both in the case of superseding indictments. The convictions petitions should go by the jurisdiction of the offense, rather than the CIPRS record - -commit 14464e6a3e15ca0ce0e6d9a181435457487cb238 -Author: Rebecca Drabenstott -Date: Sun Feb 11 16:23:36 2024 -0500 - - Upgrade xpdfreader from 4.04 to 4.05 - -commit 642cad22492e09e1abefb7eb850c9c02e90e540a -Author: Rebecca Drabenstott -Date: Sat Jan 27 15:22:06 2024 -0500 - - Handle missing dob in record summary - -commit 09e03309e7f11abf2d9ed754cab719344e4323e4 -Merge: 12248aa 2b05c57 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 6 17:41:14 2024 -0500 - - Merge pull request #459 from deardurham/adult_convictions - - Offense should always have a verdict of GU (guilty). - -commit 2b05c57b16764d7a446b97f29aa6cd5073ce1e54 -Author: George Helman -Date: Mon Feb 5 18:39:51 2024 -0500 - - Offense should always have a verdict of GU (guilty). - - Additionally change out the 293, 297, and 298 form templates with new versions from the AOC website: https://www.nccourts.gov/documents/forms?field_form_type_target_id=All&field_language_target_id=All - -commit 12248aab43b130756f5c2d10e48059256eef63fd -Author: Colin Copeland -Date: Tue Jan 23 18:14:07 2024 -0500 - - Update to Python 3.12/Django 4.2 (#455) - -commit 513211f52ef3e2ac758c8acf03938832d2963b33 -Author: Rebecca Drabenstott -Date: Tue Jan 16 18:00:39 2024 -0500 - - Include petitioner's race and sex in import from eCourts Portal - -commit 2c7ad97f94bcc9c8045ca98145e588523b46a6e7 -Author: Colin Copeland -Date: Sun Jan 14 14:47:44 2024 -0500 - - Update versions of GitHub actions (#454) - -commit 5274e7190baa6a9fe2885a37f02345e9f7c9709a -Author: Colin Copeland -Date: Sun Jan 14 13:29:54 2024 -0500 - - Add beautifulsoup4 to base requirements (#453) - -commit 4e26d9b54d14af5cee7f6a3daccb93bf2cc9864a -Author: Colin Copeland -Date: Sun Jan 14 12:51:24 2024 -0500 - - eCourts Portal import proof of concept (#431) - - Co-authored-by: Rob Gries - -commit 0c1db626c91f13856c62b1c27af8bb5e24a1a608 -Merge: 371ebed 6759920 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Thu Jan 4 16:04:03 2024 -0500 - - Merge pull request #451 from deardurham/guilty_to_lesser_no_more - - Dismissing guilty to lesser offenses is no longer allowed - -commit 67599201715949a5e1145871ca9b5aed44200279 (origin/guilty_to_lesser_no_more) -Author: George Helman -Date: Thu Jan 4 01:39:23 2024 -0500 - - Dismissing guilty to lesser offenses is no longer allowed - -commit 371ebeda4ec0ce8d6d88c72cd8e7f28b10c3b1d5 -Merge: b852132 bb5b2cb -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 2 17:41:02 2024 -0500 - - Merge pull request #439 from deardurham/adult_convictions - - Add adult convictions forms - -commit bb5b2cbec49e249a0e1a00142d07d6e1dfc83bb7 -Merge: 115000a b852132 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 2 17:40:30 2024 -0500 - - Merge branch 'master' into adult_convictions - -commit b852132b1b82a54a0ef68ff4c9f8ac1fb55fe992 -Author: Rob Gries -Date: Tue Jan 2 17:37:56 2024 -0500 - - Populate agencies in petition document and fix user field in non client contacts (#449) - -commit 115000a6b554ba1639483e55fa47754a6474530c -Author: George Helman -Date: Mon Jan 1 16:29:11 2024 -0500 - - Fix UTs - -commit 63077633ef107d186e5541f55f62c47b48b5a711 -Author: George Helman -Date: Mon Jan 1 15:14:18 2024 -0500 - - Add the waiting period for adult convictions - -commit d1621bd75900e313782834e314268dca02ae99ca -Author: George Helman -Date: Sat Dec 30 20:56:32 2023 -0500 - - Map the adult conviction forms - -commit e7e3e4993c2f5cc25d86e7c90ad57b9965700fb2 -Author: George Helman -Date: Sat Dec 30 19:59:16 2023 -0500 - - Fix paginator for adult convictions - -commit b2d76b346fc25c31be21aeae92d119bdc3e3cbd8 -Author: George Helman -Date: Wed Oct 25 01:25:21 2023 -0400 - - Adult convictions should be de-selected by default - -commit 41b055da4e943809d8dbe851f75ec96035f27e23 -Author: George Helman -Date: Thu Sep 28 01:17:30 2023 -0400 - - Add adult convictions forms - -commit dcffb6cf15d0b3522ecf4e0bb1424ed1e6d3c497 -Author: Rob Gries -Date: Tue Dec 12 22:15:31 2023 -0500 - - Import/export agencies (#448) - - * Admin import and export agencies - - * Initial working import preview diff - - * Improve submission of spreadsheet multiple times - - * WIP - - * Fix issue change detection and clean up UI - - * Add basic detection of county sheriff agency for autoselection - - * Fix cancel button - - * Fix county sorting and import button styling - -commit e89b15d9f7d44725c44b12f76794d9931c997637 -Author: Rebecca Drabenstott -Date: Fri Nov 17 17:59:05 2023 -0500 - - On record summary, hide offense records that have de novo reviews - -commit c1db7cf89741076118ccdc7ec5a8bfcb9d00fa61 -Author: Rebecca Drabenstott -Date: Tue Nov 7 12:30:50 2023 -0500 - - Upgrade ciprs reader to version with fix for offense-level jurisdiction - -commit dae0d3cdc42cc4d143ea77da6327916bfcf3c550 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Sun Nov 5 13:52:20 2023 -0500 - - Frontend Tests, hooks and utils (#437) - - * install vitest - - * install jsdom - - * add test config object - - * add tests folder - - * errors - updated to use boilerplate vitest code - - * wrote test to test vitest functionality. is this recursive testing? - - * add testTimeout to test config - - * rename tests folder to __tests__ - - * remove extra 'tests' folder - - * basic tests for utils/errors.js - - * create 'util' folder - - * add hasValidationsErrors test - - * use vitest.spy for getErrorList - still fails test - - * attempt to render App inside a div container - - * add testing-library/react-hooks - - * add tests for useKeyPress - - * added testing-library/react-hooks - - * fixed getErrorList 'no error passed' test - - * use vi.fn() to mock functions, passing all current tests - - * add basic vitest skeleton, not functional - - * hook sets state with initial window size - - * reword assertion - - * render hook as result object - not functional yet - - * put render into act() for app.test - not functional - - * Fix App test - - * simulate clicks inside & outside element - - * remove comments - - * import render, waitFor from react testing lib - - * test mock userAgents - - * add test that more closely mocks implementation - - * reword assertion - - * extract isChrome to function, test Mozilla userAgent, vendor - - * add chrome param to setWindowProps - - * add iPhone safari test, rm userAgent only tests - - * update userAgent strings with MDN examples - - * update Chrome userAgent - - * basic test outline - wip - - * move setWindowProps into inner scope - - * attempt to set multiple window properties - - * WIP - initial take on rendering hook - - * check portal.id - - * add first successful debounce test - - * add test where callback not called - - * reword assertion - - * remove test for useBrowserWarning - - * wip - assertions for window properties only - - * mock initial window size with vi.stubGlobal - - * add resize event test - - * action not triggered after hook unmounted - - * action not triggered after hook unmounted - - * remove redundant assertion - - * advance timer, add assertion that checks if callack is called - - * reword test description - - * add _arg to vi.fn() - - * check that callback is called with specific arg - - * wip - using stubGlobal - - * WIP - clean comments, test only Chrome, Mozilla - - * Fix isChrome test - - * npm run format - - * move initial window sizing to beforeEach - - * use outsideElement on hook unmount test - - * remove act(), make final assertions more comprehensive - - * remove redundant assertion - - --------- - - Co-authored-by: Rob Gries - -commit 7097056a6c1ae7d9c8e9e34e7b0a4bfcb3b4f820 -Author: Rob Gries -Date: Mon Oct 23 08:56:42 2023 -0400 - - Fix issue where modal not opening after button click (#445) - -commit 9c5342a2c5239e1982d4474c62d186b510a3e5aa -Author: Rebecca Drabenstott -Date: Sun Oct 8 16:57:38 2023 -0400 - - For record summary, use jurisdiction on offense, not on ciprs record - - A ciprs record may have both district and superior court offenses - -commit cb16d05c202aabc2abe25672e8ae9f0720d7cf9b -Merge: 1d1e297 cf8d50e -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Oct 9 23:14:42 2023 -0400 - - Merge pull request #441 from deardurham/remove_multiple_see_below - - 285 documents should have same file number as base document, add et al - -commit 1d1e297114305c35dc47bb606a89eb38e8ca9baa -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sun Oct 1 01:14:27 2023 -0400 - - Add delete button to app (#428) - - * Add delete button to app - - * Fix UT - - * Use RTK Query for deleting batch - - * npm run format - - --------- - - Co-authored-by: Rob Gries - -commit cf8d50e4736473d34535d4edf6cb184782c2f20d (origin/remove_multiple_see_below) -Author: George Helman -Date: Sat Sep 30 18:24:12 2023 -0400 - - 285 documents should have same file number as base document, add et all if multiple ciprs records - -commit 496525458bb7ad36a8bb104b5499418027c6e55f -Merge: 04b450a 21fec4b -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Sep 12 21:29:14 2023 -0400 - - Merge pull request #435 from deardurham/remove_multiple_see_below - - Petition file no should be the first file no on the petition - -commit 21fec4b79cc13e0f601c0d9277bb8fcea7f75d0e -Author: George Helman -Date: Tue Sep 12 17:34:14 2023 -0400 - - Petition file no should be the first file no on the petition - -commit 04b450ad092e56d77f9e5a1ce9a0721082cd5d50 -Merge: 1006fb0 d4b27ae -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Thu Jun 22 08:59:31 2023 -0400 - - Merge pull request #427 from deardurham/add_retention_policy_to_help_page - - Add retention policy to help page - -commit d4b27ae17b60a08b42807526781d90ded3a15eb8 (origin/add_retention_policy_to_help_page) -Author: George Helman -Date: Sun Jun 18 18:24:33 2023 -0400 - - Add retention policy to help page - -commit 1006fb0a900590b187c3b5aec447f406ee55db94 -Author: Rebecca Drabenstott -Date: Thu Jun 8 09:00:11 2023 -0400 - - In record summary document, change "Law Student" to "Prepared By" (#424) - - This was Jessica's request in May 25 email - -commit 0a55e4a8fc65b997d51ef3df807759e6f2446035 -Author: Rob Gries -Date: Tue Jun 6 18:44:34 2023 -0400 - - Eslint + Prettier cleanup and readme changes (#416) - - * Update dependencies and fix eslint for framer-motion - - * Remove prod build from local docker dev and fix eslint setup by separating prettier - - * Setup prettier - - * Fix prettier ignore - - * Run prettier format - - * Add note that node 18 is min version - - * Add lint + format CLI check - - * Setup node - - * Install deps - -commit 25ec778328592800e708bd3b2203b75a2c17de9e -Merge: 53d55af 1b3785c -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jun 6 17:30:54 2023 -0400 - - Merge pull request #415 from deardurham/multiple_file_no_logic - - Fix logic to determine if multiple ciprs records are being petitioned - -commit 53d55af44c10961c106fd51494050adfaf1c7d29 -Author: Rebecca Drabenstott -Date: Tue Jun 6 07:49:04 2023 -0400 - - Add key to Record Summary document (#420) - - From Jessica's May 31 email - -commit 997a8cb42aa68a5dd29500687e3539c5e894f763 -Author: Rebecca Drabenstott -Date: Mon Jun 5 21:28:51 2023 -0400 - - In Record Summary, note CIPRS file #'s where additional offenses exist (#419) - -commit a8c8d201419c10a6b579a4bc56c3010f2a81f74a -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Mon Jun 5 16:22:23 2023 -0400 - - Add footer to PageBase (#417) - - * add basic footer element, set PageContent min vh - - * add CwD logo to assets - - * add logo, adjust sizing - - * add link to CwD site - - * add 'created by' above logo - - * rename CWD logo file for brevity - - * rename FooterLogo component - - * replace existing logos with generic Logo component - - * rename LogoLink to HeaderLogoLink - - * changed 'created' to 'developed', small logo size adjustment - - * use horizontal logo, adjust footer margin - - * remove min-height calc, reduce footer margin-top - - * use flexbox to position footer at page bottom - - * remove original CWD logo file - - * Revert "remove original CWD logo file" - - This reverts commit 6b884daaaad180bce0d9260fe99cc75f85a2b70d. - - replace DEAR logo - - * remove original CWD logo - - * adjust footer margin - -commit 20f493c3591d8a02fb8448fa7da4a4d37bd9704f -Merge: 9329f74 f08440d -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 30 00:36:17 2023 -0400 - - Merge pull request #414 from deardurham/docker-compose-dismount - - Unmount code directory in docker-compose config - -commit 1b3785c6da8d72e2f7a73767ea48696007c62833 (origin/multiple_file_no_logic) -Author: George Helman -Date: Sat May 27 19:01:37 2023 -0400 - - Fix logic to determine if multiple ciprs records are being petitioned - -commit f08440d96de1764a0e00630447ff2c77c94e37d9 (origin/docker-compose-dismount) -Author: George Helman -Date: Sat May 27 18:30:36 2023 -0400 - - Unmount code directory in docker-compose config - -commit 9329f742679cbeb6b979cafa7b09e915ac01afff -Author: Rob Gries -Date: Fri May 26 16:40:11 2023 -0400 - - Fix CI badge and cleanup mdlint warnings (#413) - - * Fix CI badge and cleanup mdlint warnings - - * Remove markdownlint - -commit a81626a282c6ae53c7bb6651de1d1b6a9b15c0c0 -Author: Rob Gries -Date: Fri May 26 10:35:56 2023 -0400 - - Fix eslint and remove page that auto-merge added in (#411) - - * Fix eslint and remove page that auto-merge added in - - * Remove more old files - -commit 422bea9eb8114d5929bd8f375cfd10fb0a7eff58 -Merge: 262f14c 838f290 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Fri May 26 09:21:25 2023 -0400 - - Merge pull request #396 from deardurham/utils_and_helpers - - Condense utils and helpers into one file - -commit 262f14cd2f30c83b216a72d60d9ed6e39bab70e3 -Merge: 219c8f3 0086250 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Fri May 26 09:21:12 2023 -0400 - - Merge pull request #399 from deardurham/remove_filter_active - - Remove unused and unaccessed filter_active param - -commit 219c8f39ef109f7cedc927e6d917adfd7dc0950a -Author: Rob Gries -Date: Thu May 25 08:53:42 2023 -0400 - - Migrate from CRA to Vite (#402) - - * Fix eslint warnings - - * Vite working locally - - * Fix eslint warnings - - * Fix eslint errors and clean up rules - - * Fix DragNDrop forwardRef - - * Clean up array key warnings - - * Update readme - - * Fix docker build - - * Fix asset directory for deploy - -commit 00862500e2fa7ea477bc1c0f9f306d250f3902af (origin/remove_filter_active) -Author: George Helman -Date: Wed May 24 01:21:21 2023 -0400 - - Add back filter_active param to paginator in case of future use case - -commit 838f2908e8f2e277a638a3f28fb7087f839dbcde (origin/utils_and_helpers) -Author: George Helman -Date: Wed May 24 01:16:08 2023 -0400 - - Move helper tests to test_utils - -commit ae33f95c5aab8e5004fc5d5061d6bdfbfb413f18 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Tue May 23 17:23:46 2023 -0400 - - Extract UsersTable and UsersActions into a feature folder (#405) - - * move UsersAction,UsersTable to ./features/UsersManagement - - * remove UsersPage dir, change file extention to .jsx - - * update UsersPage import path - - * update UsersManagement file extentions to .jsx - - * rm UsersPage dir, changes UsersPage extension to .jsx, move to ./pages - - * fix import paths - -commit c01b5dbd58de4a76ece08bbf98ed36e9260e3972 -Author: Rob Gries -Date: Mon May 22 22:19:32 2023 -0400 - - Compile xpdf from source (#403) - -commit 5d55f029a0065ca1f2a4c39d7dd3a082814b5c09 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Mon May 22 15:17:09 2023 -0400 - - Fix sortable headers on UsersPage (#404) - - * add new props to UsersPage,UsersTable - - * use URLSearchParams to fetch data - - * remove 'ordering' props from UsersPage,UsersTable - - * modify users query to accept queryString - - * add getOrdering to set sort order, rm comments - - * reset default sort order to dsc - - * revert Admin header to be TableCell - -commit 129a0556c981441c16c3be0b51235450da37ad91 -Author: Rebecca Drabenstott -Date: Fri May 19 16:40:42 2023 -0400 - - Add index to offense records in Record Summary document (#401) - -commit d15e142f44eee3b9c9ac6bd0e0ab0b286c64559d -Merge: 12616fd 55ff8a8 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Sun May 14 14:43:48 2023 -0400 - - Merge pull request #400 from deardurham/rename_expunge_record_summary - -commit 55ff8a86d7bc77df87a1203d9ab1d9d600e48e12 -Author: Austin Bagwell -Date: Fri May 12 21:13:13 2023 -0400 - - rename expungable_summry.docx template - -commit 69b6e7bec94a9344bf079f4d313e37f405fe8fad -Author: Austin Bagwell -Date: Fri May 12 20:34:53 2023 -0400 - - rename expungable_summary to records_summary in all files - -commit ce24c51e7147e411a97708b76ad1901ad20749f7 -Author: Austin Bagwell -Date: Fri May 12 16:53:12 2023 -0400 - - rename expungable records to 'records summary' - -commit 12616fd2777bf2127ef1eee2fe3b87c971784081 -Author: Rob Gries -Date: Tue May 9 18:05:27 2023 -0400 - - Add spaces in emailed batch label by using underscore (#397) - - * Allow spaces in emailed ciprs label by using underscore - - * Add instruction for adding spaces to emailed label - - * Add tests for empty/no subject - -commit 55852cfcdd6ab75e600b0731bdef9a3f786bb122 -Merge: 37dd1d5 7eef080 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 9 00:24:45 2023 -0400 - - Merge pull request #398 from deardurham/add_count - - Add count to the OffenseRecord model and addendum 3b descriptions - -commit 55b23b66955131bb1f149b250fac20c73342fa9a -Author: George Helman -Date: Mon May 8 00:19:52 2023 -0400 - - Remove unused and unaccessed filter_active param - -commit 7eef08089bd6bb84050dc1f9fc996f8231d193cb (origin/add_count) -Author: George Helman -Date: Sun May 7 16:23:53 2023 -0400 - - Add count to the OffenseRecord model and addendum 3b descriptions - -commit 37dd1d54fac47e7c39feaa37b4458c4d0778c4ac -Author: Rob Gries -Date: Tue May 2 00:11:35 2023 -0400 - - Pin ciprs_reader version (#395) - - * Pin ciprs_reader version - - * Update ciprs_reader version - -commit a4d7280d1c17125bc3f2d33548b4a62de978d820 -Author: George Helman -Date: Sun Apr 30 12:20:31 2023 -0400 - - Condense utils and helpers into one file - -commit fb282a88bd310d74d74ba78518fec998652a6a7e -Author: Rob Gries -Date: Tue Apr 25 22:21:33 2023 -0500 - - Dashboard page (#379) - - * WIP dashboard page - demo - - * WIP dashboard - final demo - - * Finished New Petition tab - - * Finished UI for existing petitions tab - - * Save attorney for batch - - * Add client contact to batch for document generation - - * Associate client with user and delete client if no related batches - - * Merge all the migrations into one file - - * Fix badges missing from contact filter - - * Remove redundant fields from GeneratePetition serializer - - * add download functionality to SelectDocuments modal - - * WIP validate field for generating documents - - * Final fixes for UI - still need tweaks for guidance content - - * Cleanup - remove parser mode and remove ForeignKey default - - * Fix tests - - * Fix upstream tests - - * Fix tag invalidation for update batch - - * Fix unit test - - * Change name of validation field - - --------- - - Co-authored-by: Austin Bagwell - -commit 1eb9c17024e5992e76d02a9138fde65391bfdda9 -Author: Rebecca Drabenstott -Date: Sat Apr 22 14:41:00 2023 -0400 - - Move the exclusion of SI and WP offenses to the is_visible method - - Need more unit tests for this - add test - -commit f257d9d52099d5ba1dc4ba592c29a5fce01c3e60 -Author: Rebecca Drabenstott -Date: Sat Apr 22 14:55:51 2023 -0400 - - Exclude Waiver of Probable Cause from Summary Document - - - fix typo - - - parameterize test - -commit de510f3713a172033919aad7a42cf4cf03384d75 -Author: Rebecca Drabenstott -Date: Fri Apr 14 21:37:14 2023 -0400 - - Eliminate Prayer for Judgment duplicates in Record Summary - - - test - -commit ef882c112d3ca7f407085b7a5e143e393b81b3df -Merge: 08e630a 04971d9 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Apr 17 01:22:25 2023 -0400 - - Merge pull request #390 from deardurham/debug_remote_failing_test - - Fix failing remote UT - -commit 04971d92973aac8b3eeefdef8a42efe9a2ce2f92 (origin/debug_remote_failing_test) -Author: George Helman -Date: Sun Apr 16 18:21:12 2023 -0400 - - Fix failing remote UT - -commit 08e630acea1e6c25143cab723e922fafc9b5bbc6 -Merge: 0716b6f 594e339 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sat Apr 15 13:58:02 2023 -0400 - - Merge pull request #387 from deardurham/mergemigration - - mm - -commit 594e33981ea9daa7853fb3d3df6049570e5e47c5 -Author: George Helman -Date: Fri Apr 14 00:03:50 2023 -0400 - - mm - -commit 0716b6f4ad00f0780a552ebdc6dd9a826b9bb57b -Merge: fc664a0 9688b3f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Thu Apr 13 22:09:49 2023 -0400 - - Merge pull request #371 from deardurham/checkmark_3b - - Checkmark 3b - -commit fc664a0214c1a980741740f963469875f7b1934b -Author: Colin Copeland -Date: Tue Apr 11 18:34:29 2023 -0400 - - test commit - -commit 833fa8fac35e251f5bf7ba8f0d442540ef1d8c95 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Tue Apr 11 17:43:53 2023 -0400 - - hide Advice Letter button from UI (#385) - - * hide Advice Letter button from UI - - * stop button from rendering - - Stopping the render entirely instead of just hiding with CSS - - Co-authored-by: Rob Gries - - * remove unnecessary import and CSS - - * comment code for advice button - - The linter did not like the previous commit - commenting out entirely. - - --------- - - Co-authored-by: Rob Gries - -commit b22b10485b59a4a39a9879b6e871d0d6e672584d -Author: Rebecca Drabenstott -Date: Sun Apr 9 11:44:18 2023 -0400 - - Format dates in Record Summary document so the year is at the end - -commit 9688b3f38cb7de4c1a724db67b6692cbef6b701e -Author: George Helman -Date: Sun Apr 9 20:23:55 2023 -0400 - - Address code review requests and add more tests - -commit bf77ab59fea29f2fadc5adb60054c95fe68f389b -Author: Rebecca Drabenstott -Date: Sat Apr 8 12:57:42 2023 -0400 - - Convert is_visible and disposition to properties on offense records - -commit 0f72c1e80f6fcc48aa51f1bffcf15f19454f00e3 -Author: Rebecca Drabenstott -Date: Sun Apr 2 16:19:37 2023 -0400 - - Calculate and save offense record disposition and visibility - - Disposition will be verdict if it exists. Disposition will be Guilty to Lesser or Responsible to Lesser when applicable. - -commit dc6a1fb26e6df12f2bbfb820aac0fb08c92f37a1 -Author: George Helman -Date: Mon Mar 20 22:45:57 2023 -0400 - - Add checkmark 3b and addendum form logic - -commit 87b4c56feceb34cf69f38d621b091f552829993d -Author: Rebecca Drabenstott -Date: Wed Mar 15 21:19:37 2023 -0400 - - Handle duplicate offenses and GTL in Expungable Record Summary (#372) - - Handle duplicate offenses and GTL in Expungable Record Summary - -commit 9359a47dc842e9d60347c3130c2bce08f499ad04 -Author: Rebecca Drabenstott -Date: Fri Mar 3 20:46:29 2023 -0500 - - Skip duplicate CIPRS records in batch - -commit 4ef1139dc57fdb170c047fc82d193087329b0f9d -Author: Rebecca Drabenstott -Date: Mon Mar 13 17:56:34 2023 -0400 - - Fix typo in disposition code for DISPOSED BY JUDGE (from GU to JU) - - Also remove disposition code for JUDGE which is also JU. JUDGE appears not to be used, but if we discover later that it is, we can ask if it is okay if they both have code JU or if one should be changed. - -commit 615b0db823553114684490ba9013d4e1a0144f65 -Author: Rebecca Drabenstott -Date: Tue Feb 21 17:18:41 2023 -0500 - - Improve log message when multiple birthdates in batch - -commit 0bfebfa28bb7a777181634debece93266f6f7333 -Author: Rebecca Drabenstott -Date: Fri Feb 17 17:29:43 2023 -0500 - - Allow CIPRS records to be searched by file_no in Django admin - -commit 048072c9622bfe8374202b7fc065563980396b0c -Author: Rebecca Drabenstott -Date: Fri Feb 17 17:28:12 2023 -0500 - - Guard against NPE if there are no birthdates in batch - -commit c3413e6b11d7f91abf40850fee17394ea5bc36d7 -Author: Rebecca Drabenstott -Date: Tue Feb 14 17:28:09 2023 -0500 - - Fix typo in comment - -commit 3124d1c2d1740f81b6d02a821de74c90277038fc -Author: Rebecca Drabenstott -Date: Thu Feb 16 09:45:55 2023 -0500 - - Sort offenses chronologically on petition list page (#360) - -commit 17888c7316f493196134284dd4546b4c6ce70b78 -Author: Rebecca Drabenstott -Date: Wed Feb 15 16:24:07 2023 -0500 - - Add capability to generate Expungable Record Summary document (#361) - -commit d204a5565e72cd9058b63f41488bfcead15eb743 -Merge: 275c791 e488382 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Feb 6 17:28:38 2023 -0500 - - Merge pull request #353 from deardurham/devcontainers - - Use containers.dev Development Container - -commit 275c7910bc903fb15c989580ee1fc51bcdd93d65 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Sun Feb 5 22:27:52 2023 -0500 - - Attorney address ternary (#359) - - * added notes.txt to gitignore - - * removed notes.txt from .gitignore - - * add ternary to AddressInput - -commit a00449fce8cbf40e6565961891e431bb7cbbfaf2 -Author: Austin <113562625+austin-bagwell@users.noreply.github.com> -Date: Tue Jan 31 19:46:47 2023 -0500 - - Fix attorney address issue #345 (#356) - - * added notes.txt to gitignore - - * removed notes.txt from .gitignore - - * correct zipcode spelling - - * pass stateAsObject into Address/Attorney inputs - - * only modifying stateObj in AddressInput - - * remove ternary - -commit 55088c530bdb2f26e0397caf0aaad5985ed79160 -Merge: 954c618 318874a -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 17 16:49:34 2023 -0500 - - Merge pull request #352 from deardurham/2023_new_petitions - - Add new 2023 AOC petitions - -commit e48838216c575cccef5f7b00752e96a2e3d2daa2 -Author: Colin Copeland -Date: Mon Jan 16 21:16:44 2023 +0000 - - support Mac M1/arm - -commit 83e7655166f62a8ce6047f28cf9df605e18fcfd8 -Author: Colin Copeland -Date: Mon Jan 16 20:45:30 2023 +0000 - - install Remote Development extension pack - -commit a0c7c77087b166c9f21fb52c25583e36f8fc5922 -Author: Colin Copeland -Date: Mon Jan 16 20:35:26 2023 +0000 - - add django debugger - -commit 42007604236f82567274168d97072dfa411ca66a -Author: Colin Copeland -Date: Mon Jan 16 20:32:31 2023 +0000 - - match postgres version; add react tools - -commit c00944593c91d36810e08344a9f51fae9e894896 -Author: Colin Copeland -Date: Mon Jan 16 20:32:08 2023 +0000 - - install pdftotext - -commit a5b33961cfa2dea92adfac7ebc572a177ab7257d -Author: Colin Copeland -Date: Mon Jan 16 19:54:27 2023 +0000 - - first pass at containers.dev support - -commit 954c618428779e97d854ba1954d2adfc5dd09258 -Author: Rebecca Drabenstott -Date: Sun Jan 15 14:32:58 2023 -0500 - - Remove __str__ from PrintableModelMixin (#351) - - The Django Admin UI uses __str__ extensively, so it is better to revert to the less verbose __str__ implementations - -commit 318874abcc4073cdcf952ab494c6c4f6ad3c1e00 -Author: George Helman -Date: Sat Jan 14 15:01:20 2023 -0500 - - Add new 2023 AOC petitions - -commit cd4d69bd32e3fa6cd912c9743c78d77b81fe6a98 -Merge: 8e30f9f 1ebf3a0 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 3 18:30:03 2023 -0500 - - Merge pull request #350 from deardurham/dependabot/npm_and_yarn/json5-1.0.2 - - Bump json5 from 1.0.1 to 1.0.2 - -commit 8e30f9f8108df00fdee9f3fb1c27f731749e2026 -Author: Colin Copeland -Date: Tue Jan 3 18:25:38 2023 -0500 - - trigger deploy - -commit 1ebf3a0fe63a237de257ca6975ea821a612343be -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jan 3 23:21:56 2023 +0000 - - Bump json5 from 1.0.1 to 1.0.2 - - Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. - - [Release notes](https://github.com/json5/json5/releases) - - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - - [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2) - - --- - updated-dependencies: - - dependency-name: json5 - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 8db7a546f10b694d15d0f4e6fb689f9aee9ed0d8 -Merge: a961ea4 cd35d68 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 3 18:21:21 2023 -0500 - - Merge pull request #338 from deardurham/client_letter - - Client letter - -commit cd35d68e31a6d8713a0af4c7417d33140186c25f -Author: George Helman -Date: Tue Jan 3 18:19:55 2023 -0500 - - Fix UTs - -commit 5a6ce31a0fcaa60c707d982a7cdb683890273fda -Author: George Helman -Date: Tue Jan 3 18:13:55 2023 -0500 - - Change directory of generated advice letter to tempdir - -commit 923a719d5d201a70e6e8ff981705e8bab4f22b21 -Author: George Helman -Date: Tue Jan 3 18:07:55 2023 -0500 - - Dev review changes - -commit d8eb0ca0c7efdecdd2adf28e09bb7755a753f287 -Author: George Helman -Date: Tue Jan 3 17:58:42 2023 -0500 - - Merge migrations - -commit 47705fdcda255c0e27ca926fb7a2d4a55f167fb8 -Author: George Helman -Date: Tue Jan 3 17:37:20 2023 -0500 - - Advice letter DEAR feedback - -commit 1bd704a310a2ed21d2892e82bf2875ba4b0957bc -Author: George Helman -Date: Tue Nov 29 21:34:37 2022 -0500 - - Generate advice letter - -commit a961ea43839c49f06adc4cc8536c33459b5ad711 -Author: Colin Copeland -Date: Mon Jan 2 10:12:25 2023 -0500 - - Create My Inbox REST endpoint (#327) - - * first pass at email batch association - - * add webhook tests - - * content-id can be blank - - * support SENDGRID_ALLOWED_SENDERS - - * cleanup test comments - - * organize S3 files by env name - - * add my inbox api view - - * add automatic_delete_date - - * add my inbox tests - - * fix test name - - * remove CIPRS_SAVE_PDF - -commit 34c034c39f0e4a0646ce8f55e88d1e3275979074 -Author: Rebecca Drabenstott -Date: Tue Dec 20 19:12:24 2022 -0500 - - Flesh out str and repr implementations for models (#349) - - Co-authored-by: Rebecca Drabenstott - -commit 21308dfb7be525cbb8d8ba988a992e81cf133e88 -Author: Rebecca Drabenstott -Date: Tue Dec 20 18:19:56 2022 -0500 - - Add unit tests for generated petition stats like age, race, sex, etc (#347) - - Also add PyCharm IDE files to .gitignore - -commit d3f85b8358c4200212ab82c2a335b3661245f4c8 -Author: Rebecca Drabenstott -Date: Tue Dec 20 18:12:39 2022 -0500 - - Remove non-docker instructions from README & reorg just slightly (#348) - - Co-authored-by: Rebecca Drabenstott - -commit 948ded090aafde4849716ca5665ddd8464d3be9c -Author: Rob Gries -Date: Sun Dec 11 22:58:08 2022 -0500 - - Update README.md (#342) - -commit 170c461382217deeb25908977d3ecfbcea2ab693 -Author: Rob Gries -Date: Mon Dec 5 00:54:13 2022 -0500 - - Fix combined PDFs missing data when viewed in Kofax and Acrobat (#344) - - * WIP fix combined pdfs - - * Clean up code and extract to separate function - -commit a467d63b4fd906e441ae311db55a0c380d44c7c4 -Author: Rebecca Drabenstott -Date: Sun Nov 27 17:31:04 2022 -0500 - - Update readme (#343) - - * Update readme - - * Include code review suggestions - - * Add backticks around directory name - - Co-authored-by: Rebecca Drabenstott - -commit 1951869337a9e258b4e6374b64346ea9353e5d9a -Author: Rob Gries -Date: Thu Nov 24 22:06:57 2022 -0500 - - Fix incorrect type for errors prop (#339) - -commit 2c8ab6e97feaf799d7bf3d1b3b0d5f8bfaddc42e -Author: Rob Gries -Date: Thu Nov 17 21:24:52 2022 -0500 - - Fix issue where base page record size is wrong for 293 (#337) - - * Fix issue where base page record size is wrong for 293 - - * Default page size test - -commit af454f99f17e57067d9287395455d3545476d780 -Author: Rob Gries -Date: Sun Nov 13 21:13:47 2022 -0500 - - Re-work generation page to download on click and use autocomplete for attorney (#330) - - * Quick local docker fix and move select agency modal to different component - - * Remove old AgencyAutocomplete - - * WIP download all documents by default - - * WIP reworked generation page UI/UX - - * Add total documents to button - - * Fix pdf concatentation - - * Cleanup code and convert attorney selection into autocomplete - - * Cleanup - - * Fix docker eslint issue by removing comment and adding rule to .eslintrc.json instead - - * Add deploy image build test to github actions - -commit b4ffd881515c107731f5546a935f12fbe0c3ba18 -Author: Colin Copeland -Date: Tue Aug 30 18:51:26 2022 -0400 - - make content id optional - -commit 6905850f7feee5e7c872a8d1745c81752dd08d9d -Author: Colin Copeland -Date: Tue Aug 30 18:27:08 2022 -0400 - - Support Sendgrid Parse Webhook (#305) - - * first pass at multi-stage dev container - - * test prod Dockerfile - - * mount volumes for local dev - - * don't use editable install - - * remove mailhog; fix celery container - - * remove old compose files - - * add TOC; add docker-compose.override.yml section - - * remove failing jsx comment? - - * add sendgrid app stub - - * add back urls - - * save emails and attachments - - * add basic tests - - * clean up imports - - * hook into ETL - - * allow text to be blank - - * update sendgrid appconfig - -commit e66e203680808d6654f493a6fca4062f8c787e04 -Author: Colin Copeland -Date: Tue Aug 30 18:16:08 2022 -0400 - - fix postdeploy.sh name - -commit bb93f0299c3dc7ef8306936da71b18ac49baac47 -Author: Colin Copeland -Date: Tue Aug 30 18:15:24 2022 -0400 - - copy in post-deploy.sh - -commit bec45aee45dd0adc921bb74110f8e69d015b71be -Author: Colin Copeland -Date: Tue Aug 30 18:04:03 2022 -0400 - - Use multi-stage build for Django dev environment (#303) - - * first pass at multi-stage dev container - - * test prod Dockerfile - - * mount volumes for local dev - - * don't use editable install - - * remove mailhog; fix celery container - - * remove old compose files - - * add TOC; add docker-compose.override.yml section - - * remove failing jsx comment? - - * fix ciprs-reader git repo URI - -commit 5f2bce75d5efc22761ffa07de0aaa076777aa3dd -Merge: 1aa3b16 91c9008 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sun Aug 21 15:38:39 2022 -0400 - - Merge pull request #309 from deardurham/agency_handling - - Bring agencies into petition document generation process - -commit 91c9008029f53b3adbbc43b619fc6675dce5fffd -Author: George Helman -Date: Sun Aug 21 15:36:33 2022 -0400 - - Agency handling final changes post merge - -commit b630932ba2aca6238196d3fa483a3de889ef0c0a -Author: George Helman -Date: Sat Jul 30 17:47:53 2022 -0400 - - Agency handling dev review changes - -commit c81ac2e6f1372565d418f07f4b971aa9168595a3 -Author: George Helman -Date: Mon Jul 4 12:07:35 2022 -0400 - - Bring agencies into petition document generation process - -commit 1aa3b16cc1e03c270aa2c34ba15240227d705075 -Author: Rob Gries -Date: Tue Jul 19 19:45:04 2022 -0400 - - Add agencies page and re-work generalize the concept of management pages (#311) - - * Fix frontend docker nm issues and ciprs_reader repo - - * Misc cleanup - - * Update instructions on generate page - - * Convert recalculate_petition and petition endpoints to RTK Query - - * eslint warning cleanup - - * Add form name to disbled tooltip message - - * Move OffenseTable components to its own directory - - * Agencies page wip - - * WIP - - * Frontend still WIP but closer - - * Re-authenticate if post/put request is missing auth header - - * Don't close CreateAgency modal on Escape key - - * Add chevron to change page and fix tailwind colors - - * Fix issue where retry request doesn't match original - - * Add agency name search - - * WIP add autocomplete filter inputs - - * Modify badge color - - * Get new autocomplete input working with okay css - - * Replace autocomplete in generate petition modal - - * Remove unimplemented code - - * Fix tests - -commit 5af07588dff93a7302db1c4175954210bb35f6d8 -Author: Colin Copeland -Date: Thu Jul 7 16:27:45 2022 -0400 - - Fix Docker build failure (#314) - - * update django-storages - - * set blank defaults during collectstatic - -commit 07f7d03402869c02b032bc6b2b56f5c765a384bc -Author: Colin Copeland -Date: Thu Jul 7 16:04:24 2022 -0400 - - Improved debugging & fix error with missing offense date (#312) - - * improve admin and model string reprs - - * add more logging output - - * don't die if no offense_date - - * add TestOffenseRecordSerializer - -commit 3f3b72d18c5d361b51e57d5a263ff29f40c66b07 -Author: Colin Copeland -Date: Thu Jul 7 09:47:02 2022 -0400 - - use dash in csrf header name (#310) - -commit 5b55c59b62f9969a3bcc341ca599c9c89a88b449 -Merge: ff4691c a3a3b72 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Jul 4 12:11:07 2022 -0400 - - Merge pull request #306 from deardurham/django_upgrade - - Upgrade Django to 3.2 - -commit ff4691c9f9cee5257dc59e52d13a26a050485c96 (origin/master-temp) -Merge: f3b4316 05855d0 -Author: Colin Copeland -Date: Tue Jun 21 18:18:26 2022 -0400 - - Merge branch 'master' of https://git.heroku.com/dear-petition - -commit a3a3b72bfa267f12c4b1d2ba9de591cf16454299 (origin/django_upgrade) -Author: George Helman -Date: Sun Jun 12 11:16:31 2022 -0400 - - Upgrade to Django 3.2 - -commit f3b4316a98079c5cd794a5d6d4ad20bd4e4ffa5c -Merge: 6624b76 c772577 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 24 18:30:26 2022 -0400 - - Merge pull request #290 from deardurham/offense_record_selector_bugfix - - Create m2m model for petitions and offense records to correctly track active records - -commit c772577b86308e596b1a7d75439bda7285a375b9 -Author: George Helman -Date: Tue May 24 18:24:56 2022 -0400 - - Add back incorrectly removed file - -commit 6624b76ef3be582e1239178362e19d0ed047f631 -Merge: 72993da d0921ee -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 24 17:57:16 2022 -0400 - - Merge pull request #296 from deardurham/dependabot/pip/django-2.2.28 - - Bump django from 2.2.27 to 2.2.28 - -commit 72993da7119966b3b849dfaa9ac2a48ce721b0c7 -Merge: a727385 1cba6a3 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 24 17:55:34 2022 -0400 - - Merge pull request #300 from deardurham/dependabot/npm_and_yarn/ejs-3.1.8 - - Bump ejs from 3.1.6 to 3.1.8 - -commit 1cba6a309a72f5650b371aa3cbefde8f499de698 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 23 04:05:58 2022 +0000 - - Bump ejs from 3.1.6 to 3.1.8 - - Bumps [ejs](https://github.com/mde/ejs) from 3.1.6 to 3.1.8. - - [Release notes](https://github.com/mde/ejs/releases) - - [Changelog](https://github.com/mde/ejs/blob/main/CHANGELOG.md) - - [Commits](https://github.com/mde/ejs/compare/v3.1.6...v3.1.8) - - --- - updated-dependencies: - - dependency-name: ejs - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit a727385fa80271df446a76c4ef4c75c3244689eb -Merge: 30ac8a6 6d387e6 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon May 23 00:05:00 2022 -0400 - - Merge pull request #289 from deardurham/dependabot/pip/pillow-9.0.1 - - Bump pillow from 9.0.0 to 9.0.1 - -commit 05855d0ece90a73cd888075c09b1c338c5afed6f -Author: Rob Gries -Date: Sat May 21 11:14:25 2022 -0400 - - Trigger heroku build for multiline fix - -commit 1f214074976fe7703fb50cda940ba76aca1f8be0 -Author: George Helman -Date: Sun May 15 01:59:08 2022 -0400 - - Fix UTs - -commit f572613fbf8e8577f1fdb11122af82ea69140c24 -Author: George Helman -Date: Sun Mar 20 14:20:31 2022 -0400 - - Separate 2 petition definitions in data model: there is now 'petitions' and 'petition documents' - -commit 30ac8a6291b42ee303623cf35a49d473a11de3ac -Author: Rob Gries -Date: Tue May 3 23:54:55 2022 -0400 - - Upgrade to CRA 5, add tailwind, and add modal for viewing + modifying offenses (#291) - - * Working parser v1 - - * Use wget instead of curl for docker prod file - - * Add xz-utils - - * Add c compiler - - * Add all remaining packages - - * Upgrade to CRA 5 - - * Use onChange for checkbox instead of onClick for row - - * Upgrade eslint and fix errors - - * Fix warnings except for console logs - - * Add tailwind - - * Cleanup login css - - * Add classnames and improve users page accessibility - - * More css improvements - - * Tweak underline width - - * Add more spacing in login page - - * Add modal for viewing and updating offenses - - * Handle invalid dob and add header for flag column - - * Change icon for warning - - * Make dev and prod dockerfile inherit node version from base - - * Fix dockerfiles - - * Trigger redeploy - - * Fix dockerfile - - * Fix various docker issues - - * Use new pdftotext version name that ciprs reader expects - - * Update react-scripts - - * Remove extends thing - - * Try changing something that shouldn't fix the thing - - * Fix staticfiles - - * Finally fix tailwind - - * Fix local django build - - * Add file number to offense list drop down info - - Co-authored-by: George Helman - -commit d0921eed4e7abb96eab9a5ed69a99f2ff494d5d9 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Apr 22 22:07:35 2022 +0000 - - Bump django from 2.2.27 to 2.2.28 - - Bumps [django](https://github.com/django/django) from 2.2.27 to 2.2.28. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.27...2.2.28) - - --- - updated-dependencies: - - dependency-name: django - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 6d387e682369e7fb289ae6aef26f4f0bf4180c9a -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Mar 11 23:56:11 2022 +0000 - - Bump pillow from 9.0.0 to 9.0.1 - - Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.0.0 to 9.0.1. - - [Release notes](https://github.com/python-pillow/Pillow/releases) - - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - - [Commits](https://github.com/python-pillow/Pillow/compare/9.0.0...9.0.1) - - --- - updated-dependencies: - - dependency-name: pillow - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 8501b99d5f7fb9a786df073cf57fa0873e1ee94c -Author: Colin Copeland -Date: Tue Mar 1 19:08:31 2022 -0500 - - trigger deploy - -commit 5cba90a7bd0a64888c13f5620d4ed6cbb2272ced -Author: Rob Gries -Date: Tue Mar 1 18:32:09 2022 -0500 - - Official multiline fix (#282) - - * Use updated npm package-lock.json - - * Fix local docker build - - * Working parser v1 - - * Fix app.json - - * Make qatester password secret - - * Use wget instead of curl for docker prod file - - * Add xz-utils - - * Add c compiler - - * Add all remaining packages - - * Working serializer for parser mode 2 - - * Add tooltip and pretty up the UI - - * CSS tweaks - - * Fix tests - -commit b32c00bf5a55ab981eb8aea8b666d456adbf91c1 -Author: Rob Gries -Date: Wed Feb 23 21:13:50 2022 -0500 - - Use correct poppler pdftotext for parser mode V1 (#281) - - * Use updated npm package-lock.json - - * Fix local docker build - - * Working parser v1 - - * Fix app.json - - * Make qatester password secret - - * Use wget instead of curl for docker prod file - - * Add xz-utils - - * Add c compiler - - * Add all remaining packages - -commit 5f4b7faa5385fa7047891e87e54c42d7a192fae4 -Merge: efaff96 f355397 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 15 18:13:14 2022 -0500 - - Merge pull request #272 from deardurham/dependabot/npm_and_yarn/nanoid-3.2.0 - - Bump nanoid from 3.1.23 to 3.2.0 - -commit efaff96a520e0f748344b115df0b0daf09810367 -Author: Colin Copeland -Date: Tue Feb 15 18:06:50 2022 -0500 - - Create production Dockerfile (#229) - - * first pass at production dockerfile - - * add invoke - - * wip running image - - * install latest pdftotext - - * all override settings for local builds - - * re-pin ciprs-reader - - * switch to container stack - - * add heroku.yml - - * remove review scripts to try to get around "Error parsing postdeploy output" - - * add bootstrap-review-app cmd - - * add curl - - * remove gunicorn setting - - * upgrade psycopg2 and sentry-sdk - - * remove compose comments - - * celery in docker - - * use REDIS_URL - - * also set CELERY_RESULT_BACKEND - -commit d62e009f5cef14f1e67bce28b30417e45bcbd54e -Merge: f25590b 38c8cc7 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 15 18:04:27 2022 -0500 - - Merge pull request #277 from deardurham/dependabot/pip/django-2.2.27 - - Bump django from 2.2.24 to 2.2.27 - -commit f25590b46e06666e1463e03a76f983dacf62afd4 -Merge: fdb6d1e 03c70f7 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 15 18:04:03 2022 -0500 - - Merge pull request #279 from deardurham/dependabot/npm_and_yarn/follow-redirects-1.14.8 - - Bump follow-redirects from 1.14.7 to 1.14.8 - -commit fdb6d1e6d66307fcdca09522c02e98ee13fbea6e -Merge: 70eaaaa 3a04928 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 15 18:03:43 2022 -0500 - - Merge pull request #278 from deardurham/dependabot/npm_and_yarn/ajv-6.12.6 - - Bump ajv from 6.12.0 to 6.12.6 - -commit 70eaaaa081f2386191933f139e14198167324730 -Merge: 60e69a6 36c1041 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 15 17:53:31 2022 -0500 - - Merge pull request #273 from deardurham/additional_user_metrics - - Add age, county, jurisdiction, race, sex, and county to tracked metrics - -commit 03c70f75ba49287a7c30a2ac89f6a345a35d7aa6 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Feb 15 02:02:41 2022 +0000 - - Bump follow-redirects from 1.14.7 to 1.14.8 - - Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.8. - - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.14.8) - - --- - updated-dependencies: - - dependency-name: follow-redirects - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 3a049289cf96256096ad8c5f17186f9ff5661e71 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 14 01:39:07 2022 +0000 - - Bump ajv from 6.12.0 to 6.12.6 - - Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. - - [Release notes](https://github.com/ajv-validator/ajv/releases) - - [Commits](https://github.com/ajv-validator/ajv/compare/v6.12.0...v6.12.6) - - --- - updated-dependencies: - - dependency-name: ajv - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 38c8cc7166922b3a366f5a60ab66d0a9d5043c14 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Feb 10 09:46:47 2022 +0000 - - Bump django from 2.2.24 to 2.2.27 - - Bumps [django](https://github.com/django/django) from 2.2.24 to 2.2.27. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.24...2.2.27) - - --- - updated-dependencies: - - dependency-name: django - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 36c1041eee0567dc630602a44bed33586b290fc4 (origin/additional_user_metrics) -Author: George Helman -Date: Sat Feb 5 03:05:09 2022 -0500 - - Dev review changes - -commit 60e69a673fb0bfbb655d0e36145c704268529823 -Author: Rob Gries -Date: Thu Feb 3 21:13:41 2022 -0500 - - Fixes and tweaks to users page (#266) - - * Fix key issues in help page - - * Fix conflict of button color theme with type attribute - - * Fix ref issue in autosuggest - - * Fix input ref in users page and convert login to rhf - - * Fix css - - * Add last login field to users table - - * Add sorting by clicking on header - - * Swap sort icons - - * Implement rudimentary search - - * Tweak readme - - * Add debounce search - - * Remove unnecessary ref from dep array - - * Show pages using ugly offset function - - * Fix issue with column width - - * Fix inexplicable log out after failed network request - -commit 4c7e0e430ed804cd65ad981f12bf2dd9d031c84d -Author: George Helman -Date: Tue Feb 1 18:47:03 2022 -0500 - - Dev review changes - -commit 4bb7f07460512b08d448c1cf5508a2d7a83dca5e -Merge: a4d5d4e 5505e6f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Feb 1 18:43:33 2022 -0500 - - Merge pull request #274 from deardurham/generated_petition_download_as_csv - - #264 Allow generated petitions to be downloaded as CSV - -commit 5505e6f7243bf7a8c09ba14bfca1c6c95799f4ec (origin/generated_petition_download_as_csv) -Author: George Helman -Date: Tue Feb 1 18:42:54 2022 -0500 - - Dev review changes - -commit fe34319149e47fe12f857f24fc7f304c05ed5f60 -Author: George Helman -Date: Sat Jan 29 22:47:25 2022 -0500 - - #264 Allow generated petitions to be downloaded as CSV - -commit 9d754f98d86a9d17c649483c5efef6070d865efd -Author: George Helman -Date: Sat Jan 22 20:17:47 2022 -0500 - - Add age, county, jurisdiction, race, sex, and county to tracked metrics - -commit f355397527bb7ac6d8dbdaebb7627c929be74a69 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Sat Jan 22 10:21:09 2022 +0000 - - Bump nanoid from 3.1.23 to 3.2.0 - - Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.23 to 3.2.0. - - [Release notes](https://github.com/ai/nanoid/releases) - - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md) - - [Commits](https://github.com/ai/nanoid/compare/3.1.23...3.2.0) - - --- - updated-dependencies: - - dependency-name: nanoid - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit a4d5d4e3005b0ef72356f621f3f78522e893b254 -Author: Colin Copeland -Date: Wed Jan 19 19:07:07 2022 -0500 - - revert to celery 4x (#267) - -commit a6ae710c52ee09f86cde326d2775ff3725db5095 -Merge: f364741 3ad111b -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 19 17:45:02 2022 -0500 - - Merge pull request #263 from deardurham/dependabot/npm_and_yarn/follow-redirects-1.14.7 - - Bump follow-redirects from 1.11.0 to 1.14.7 - -commit f3647413b647048e31cc8bafe924ef8d47778cc0 -Merge: cea0dcc de52bc3 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 19 17:44:40 2022 -0500 - - Merge pull request #262 from deardurham/dependabot/pip/pillow-9.0.0 - - Bump pillow from 8.3.2 to 9.0.0 - -commit cea0dccc02f09ed30a5887ccfc0773677ce550f5 -Merge: 7af5a44 434436a -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 19 17:44:16 2022 -0500 - - Merge pull request #261 from deardurham/fix_dependence_conflict - - Fix package dependency conflict - -commit 3ad111b1341112625f660b19a3fdf6ab31066cdf -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Sun Jan 16 00:30:21 2022 +0000 - - Bump follow-redirects from 1.11.0 to 1.14.7 - - Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.11.0 to 1.14.7. - - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.11.0...v1.14.7) - - --- - updated-dependencies: - - dependency-name: follow-redirects - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit de52bc32fb16bea2365b85295caa8e47279a915d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jan 13 01:30:12 2022 +0000 - - Bump pillow from 8.3.2 to 9.0.0 - - Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.3.2 to 9.0.0. - - [Release notes](https://github.com/python-pillow/Pillow/releases) - - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - - [Commits](https://github.com/python-pillow/Pillow/compare/8.3.2...9.0.0) - - --- - updated-dependencies: - - dependency-name: pillow - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 434436a0a2242faa88d9f19b15c12df9d3f8d2d8 (origin/fix_dependence_conflict) -Author: George Helman -Date: Fri Jan 7 01:23:25 2022 -0500 - - Fix package dependency conflict - -commit 7af5a44ed285cf4432e0f49ac9148c7a45452ce1 -Merge: dc14d06 1b1745b -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Fri Jan 7 00:38:29 2022 -0500 - - Merge pull request #260 from deardurham/dependabot/pip/celery-5.2.2 - - Bump celery from 4.4.7 to 5.2.2 - -commit 1b1745b812b61f3822780bc0f967d16711a6876e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jan 6 22:35:10 2022 +0000 - - Bump celery from 4.4.7 to 5.2.2 - - Bumps [celery](https://github.com/celery/celery) from 4.4.7 to 5.2.2. - - [Release notes](https://github.com/celery/celery/releases) - - [Changelog](https://github.com/celery/celery/blob/master/Changelog.rst) - - [Commits](https://github.com/celery/celery/compare/v4.4.7...v5.2.2) - - --- - updated-dependencies: - - dependency-name: celery - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit dc14d068b4e0b8de944c4cae7917520c543e66ee -Merge: a493a86 399e9ec -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:14:18 2022 -0500 - - Merge pull request #250 from deardurham/dependabot/npm_and_yarn/axios-0.21.2 - - Bump axios from 0.21.1 to 0.21.2 - -commit a493a8637d3352b57e1177a75d0ee2664de38722 -Merge: 4061e2f 6358e7a -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:14:01 2022 -0500 - - Merge pull request #257 from deardurham/dependabot/npm_and_yarn/hosted-git-info-2.8.9 - - Bump hosted-git-info from 2.8.8 to 2.8.9 - -commit 4061e2f6f58833f4d9eba01c217339933aeb85f6 -Merge: 821a2b9 ef9b6e2 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:13:45 2022 -0500 - - Merge pull request #258 from deardurham/dependabot/npm_and_yarn/url-parse-1.5.4 - - Bump url-parse from 1.5.1 to 1.5.4 - -commit 821a2b94f08c88c8502846328a1959ff5e771cab -Merge: f8454b6 f4d8fe4 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:13:30 2022 -0500 - - Merge pull request #259 from deardurham/dependabot/npm_and_yarn/lodash-4.17.21 - - Bump lodash from 4.17.15 to 4.17.21 - -commit f4d8fe4f9c651489a0640e3785f82e8778df011b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jan 5 22:13:00 2022 +0000 - - Bump lodash from 4.17.15 to 4.17.21 - - Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. - - [Release notes](https://github.com/lodash/lodash/releases) - - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.21) - - --- - updated-dependencies: - - dependency-name: lodash - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit ef9b6e252a3b61294c6712b6d356d32ccec57a38 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jan 5 22:12:59 2022 +0000 - - Bump url-parse from 1.5.1 to 1.5.4 - - Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.1 to 1.5.4. - - [Release notes](https://github.com/unshiftio/url-parse/releases) - - [Commits](https://github.com/unshiftio/url-parse/compare/1.5.1...1.5.4) - - --- - updated-dependencies: - - dependency-name: url-parse - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 6358e7a8578eb8ce5478e7da1475eb2670ba5215 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jan 5 22:12:48 2022 +0000 - - Bump hosted-git-info from 2.8.8 to 2.8.9 - - Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. - - [Release notes](https://github.com/npm/hosted-git-info/releases) - - [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md) - - [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9) - - --- - updated-dependencies: - - dependency-name: hosted-git-info - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit f8454b6d7b046f74eaad2273e05efd0343cd8008 -Merge: 473fd11 837eee3 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:12:23 2022 -0500 - - Merge pull request #251 from deardurham/dependabot/npm_and_yarn/path-parse-1.0.7 - - Bump path-parse from 1.0.6 to 1.0.7 - -commit 473fd11a430a68aa5ff10d325a6fb4fddbd68dc9 -Merge: 0396548 393e843 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:11:46 2022 -0500 - - Merge pull request #252 from deardurham/dependabot/npm_and_yarn/tmpl-1.0.5 - - Bump tmpl from 1.0.4 to 1.0.5 - -commit 03965484e6b507d9576a16fc3e0ef3d79f58138d -Merge: 57a05a8 afe2f91 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Wed Jan 5 17:11:29 2022 -0500 - - Merge pull request #253 from deardurham/dependabot/npm_and_yarn/tar-6.1.11 - - Bump tar from 6.1.0 to 6.1.11 - -commit 57a05a84ddc5539929c7456a46c026bbca660cfc -Author: Rob Gries -Date: Thu Dec 16 18:36:10 2021 -0600 - - Fix refresh tokens expiry time (#256) - -commit aa17aa0373fc28fe9f7730cf8bcf747a676efeb8 -Author: Colin Copeland -Date: Sun Dec 12 21:15:13 2021 +0000 - - order by created - -commit dbc9caba0274e4399a67a7bb6712695296cc1596 -Author: Colin Copeland -Date: Sun Dec 12 21:10:21 2021 +0000 - - add merge migration - -commit 399e9ec9922a25707aa7b3a0aac74f2cd7fa7f12 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Sun Dec 12 21:05:43 2021 +0000 - - Bump axios from 0.21.1 to 0.21.2 - - Bumps [axios](https://github.com/axios/axios) from 0.21.1 to 0.21.2. - - [Release notes](https://github.com/axios/axios/releases) - - [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) - - [Commits](https://github.com/axios/axios/compare/v0.21.1...v0.21.2) - - --- - updated-dependencies: - - dependency-name: axios - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 2f9f8728325e734c615a5edf6f78d72e6f54e1c7 -Merge: 0e75616 1ae4897 -Author: Colin Copeland -Date: Sun Dec 12 16:04:36 2021 -0500 - - Merge pull request #245 from robert-w-gries/redux_toolkit - - Add RTK, improve authentication, and add users page - -commit 1ae48972b0f18ceeba248f533ac3dc83cbe8bbf1 -Merge: 7bc59d5 0e75616 -Author: Colin Copeland -Date: Sun Dec 12 16:00:47 2021 -0500 - - Merge branch 'master' into redux_toolkit - -commit 0e756164131bbeba87e66cfe53f3b7ca41237111 -Merge: 3a77d90 4eeb2ce -Author: Colin Copeland -Date: Sun Dec 12 15:49:53 2021 -0500 - - Merge pull request #248 from deardurham/user_metrics - - Start tracking metrics - -commit afe2f918d7b544442795acc4a9af1d31d25e8617 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Sun Dec 12 20:49:30 2021 +0000 - - Bump tar from 6.1.0 to 6.1.11 - - Bumps [tar](https://github.com/npm/node-tar) from 6.1.0 to 6.1.11. - - [Release notes](https://github.com/npm/node-tar/releases) - - [Changelog](https://github.com/npm/node-tar/blob/main/CHANGELOG.md) - - [Commits](https://github.com/npm/node-tar/compare/v6.1.0...v6.1.11) - - --- - updated-dependencies: - - dependency-name: tar - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 837eee34c75c9870fdc8649b3f8b910c7dffd072 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Sun Dec 12 20:49:24 2021 +0000 - - Bump path-parse from 1.0.6 to 1.0.7 - - Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. - - [Release notes](https://github.com/jbgutierrez/path-parse/releases) - - [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7) - - --- - updated-dependencies: - - dependency-name: path-parse - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 393e8432801e42cabb91ee5c4c30c2c066f3e968 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Sun Dec 12 20:49:24 2021 +0000 - - Bump tmpl from 1.0.4 to 1.0.5 - - Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. - - [Release notes](https://github.com/daaku/nodejs-tmpl/releases) - - [Commits](https://github.com/daaku/nodejs-tmpl/commits/v1.0.5) - - --- - updated-dependencies: - - dependency-name: tmpl - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 3a77d90baadc37cc2814efa43cedc7823dd8f4a5 -Merge: 2a08994 8965a27 -Author: Colin Copeland -Date: Sun Dec 12 15:48:21 2021 -0500 - - Merge pull request #242 from deardurham/dependabot/pip/pillow-8.3.2 - - Bump pillow from 8.2.0 to 8.3.2 - -commit 4eeb2ce87002b5db0eab2741eb11cc95e30f2cb3 -Author: Colin Copeland -Date: Sun Dec 12 20:42:29 2021 +0000 - - add last_generated_petition_time to UserAdmin - -commit 3a948d0ae5fc979a7de0cd860515a468e53cee1e -Author: Colin Copeland -Date: Sun Dec 12 20:39:55 2021 +0000 - - add GeneratedPetitionAdmin - -commit 7bc59d567398191fdd7a7d02328f44996b19f553 -Author: Rob Gries -Date: Fri Dec 10 09:49:03 2021 -0500 - - Add whitespace change to trigger redeploy - -commit 16c7cd5edfb752f03fdab9a29f28363a6bfaf0b7 -Author: Rob Gries -Date: Fri Dec 10 09:43:13 2021 -0500 - - Add whitespace change to trigger redeploy - -commit 0fdff98e4fdf572be8c11cd45612e49481d93307 -Author: Rob Gries -Date: Thu Dec 9 20:55:13 2021 -0500 - - Run makemigration merge - -commit b502a94972df08ace678c43c50b7db54497ea3fa -Author: Rob Gries -Date: Thu Dec 9 20:26:19 2021 -0500 - - Fix issue - -commit 19146a2c8c7c7a5ccad2af5da493af07e51c61cc -Merge: f7e477b 2a08994 -Author: Rob Gries -Date: Thu Dec 9 20:24:36 2021 -0500 - - Merge branch 'master' into redux_toolkit - -commit f7e477b773ee2619fd49f0ba74db21d512dc4575 -Author: Rob Gries -Date: Thu Dec 9 20:16:31 2021 -0500 - - Fix line getting cut off - -commit 84b70ecf5f24612dfb3f021db468d4474276ccfc -Author: Rob Gries -Date: Thu Dec 9 20:12:42 2021 -0500 - - Fix weird spacing and replace with 'is' - -commit d152dae1279cff60397c97a73f6139d757b99ef7 -Author: Rob Gries -Date: Thu Dec 9 20:10:42 2021 -0500 - - Run black - -commit c9eb81b07f7d11fcfc05c85456bd464182185266 -Author: Rob Gries -Date: Thu Dec 9 02:42:24 2021 -0500 - - Fix disabled color - -commit 63d374d5dd6980c44add172681ebc081758edd46 -Author: Rob Gries -Date: Thu Dec 9 02:34:46 2021 -0500 - - Fix login error message when bad credentials and add logging - -commit 58920df77f6b1489c9cea60b5531f49eb6fb8099 -Author: Rob Gries -Date: Wed Dec 8 21:54:00 2021 -0500 - - Fix time delta - -commit 0d0a59081f4f05330ff061ab7a9790f83af182cd -Author: Rob Gries -Date: Wed Dec 8 21:50:56 2021 -0500 - - Attempt number two - -commit 53f05fbd82a8a3e7c4e6de3b591069c5cebb1ce5 -Author: Rob Gries -Date: Wed Dec 8 21:40:41 2021 -0500 - - Does this fix the issue? - -commit c28fa527d9bf601c8b58ece91c1d1de04fbaa09c -Author: George Helman -Date: Wed Dec 8 00:34:03 2021 -0500 - - Colin dev review changes - -commit 596b444e0f44b246fecc9a5142f2eddf5efd4590 -Author: George Helman -Date: Tue Dec 7 17:59:18 2021 -0500 - - Dev review changes - -commit 0c373503df76343187dae2841e1bfe2be28c784e -Author: George Helman -Date: Mon Nov 15 00:49:07 2021 -0500 - - Start tracking metrics - -commit 5d5790e6aa8286a381b2ffb6046a0d81dcdb7f9b -Author: Rob Gries -Date: Sat Oct 30 16:14:37 2021 -0400 - - Disable self delete and self-admin change - -commit 1cd8c2cfb0611aa871f2fec220584e00c0db07b5 -Author: Rob Gries -Date: Sat Oct 30 15:58:41 2021 -0400 - - Fix login page issues - -commit 0ea1496fdf302ed921114f0c92c0dc8f5903dd35 -Author: Rob Gries -Date: Sat Oct 30 15:32:46 2021 -0400 - - Send new user email to reset their password - -commit 762166aa944e018b4aa6bc6333cccbd2b8a04b26 -Author: Rob Gries -Date: Sun Oct 17 14:18:12 2021 -0400 - - Add error messages to inputs - -commit 4bfbb603fcc479d63a8c4af615e0fdcbb5badd73 -Author: Rob Gries -Date: Sat Oct 16 14:12:45 2021 -0400 - - Improve modal re-use - -commit 2a089943590a9eb7f69db52f3bfe30f9a7df5f46 -Merge: 1b31dde eda0f47 -Author: Colin Copeland -Date: Tue Oct 12 19:13:10 2021 -0400 - - Merge pull request #246 from robert-w-gries/prettier_fixes - - Fix prettier and eslint errors - -commit eda0f472332bb62b41a3dfecee12aa014d20e715 -Author: Rob Gries -Date: Tue Oct 12 19:08:20 2021 -0400 - - More prettier fixes - -commit 11e45cc87241367c488d2b35ed7c40d434166d4d -Author: Rob Gries -Date: Tue Oct 12 19:01:21 2021 -0400 - - Fix prettier and eslint errors - -commit 1b31ddedd10defc1777c46fca29bb3768b30ef45 -Merge: 7bdbbb5 7a040ce -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Oct 12 18:51:17 2021 -0400 - - Merge pull request #237 from deardurham/new_form - - Add offense record table to petition generation page - -commit 7a040ce42ebe1e0fb8f62646fc7a43dab21f01c4 (origin/new_form) -Author: George Helman -Date: Tue Oct 12 18:47:08 2021 -0400 - - Fix pyjwt version again - -commit f675e462df9a497ef29f7bda459288a291ad62e8 -Author: George Helman -Date: Tue Oct 12 18:43:06 2021 -0400 - - Fix pyjwt version - -commit fdf89bd9271cc7ba9a2cb2009a0b3c37706e734b -Author: George Helman -Date: Tue Oct 12 17:54:48 2021 -0400 - - Prettier changes - -commit 5f7622a0701557952727d078fc3dbfdd1ca6208e -Author: George Helman -Date: Thu Sep 30 22:56:36 2021 -0400 - - Offense record table dev review changes - -commit 037b70f341177189b1c534b68ca0e515d5c62c22 -Author: George Helman -Date: Sun Sep 19 16:37:50 2021 -0400 - - Offense record table dev review changes - -commit 938cde30b0a3d9483db278cfc0518640707bdd32 -Author: George Helman -Date: Sat Aug 21 22:57:06 2021 -0400 - - Add offense record selector to petition list - -commit 97623d4a6b816a04e0bb8fba6f70cbbe327b8939 -Author: Rob Gries -Date: Sun Oct 10 11:57:06 2021 -0400 - - Clean up style and sort by username - -commit 9af1b49ed3ca8bc12940d0bdf33151352f3d49fd -Author: Rob Gries -Date: Sat Oct 9 21:25:55 2021 -0400 - - Allow deleting of users - -commit c4ab6bcc2e6fa93dacddc3d338300efee92af7f1 -Author: Rob Gries -Date: Sat Oct 9 19:07:30 2021 -0400 - - Allow editing of users - -commit a407995c1cb46e0b1ed0bb289bf581e394610f0e -Author: Rob Gries -Date: Sat Oct 9 12:14:16 2021 -0400 - - WIP react-hook-form - -commit 7f04fd676702728543cb665cb51e3bd318aff8a2 -Author: Rob Gries -Date: Sat Oct 9 10:43:43 2021 -0400 - - WIP editing of users - -commit 97256e9da0f90047d1981865cc8d4ea7d6e05082 -Author: Rob Gries -Date: Wed Oct 6 23:35:58 2021 -0400 - - Fix prop types - -commit dd766056ded295906f7b01a3dbdabe85fe3624f5 -Author: Rob Gries -Date: Wed Oct 6 23:35:52 2021 -0400 - - Fix authenticated user redirects - -commit 1d770acba1797cc1a62cd4dc04b0f2e654b5e724 -Author: Rob Gries -Date: Sun Oct 3 18:17:52 2021 -0400 - - Fix tests - -commit 0b07de5106df4d259b12ed54c0892bd01bb90a2a -Author: Rob Gries -Date: Sun Oct 3 18:08:48 2021 -0400 - - Fix handling of page numbers and use 403 properly - -commit 8b2dd743fd799b7cbebebb89ce861c40e28b605e -Author: Rob Gries -Date: Sun Oct 3 15:39:35 2021 -0400 - - Tweak css and clean up users page - -commit 14125a92cd27bde81b7da225d152e1f1572bd5b2 -Author: Rob Gries -Date: Sun Oct 3 10:43:05 2021 -0400 - - Improve user creation process - -commit 1977bdd6dfcb03122d5fb960788cf60878bba9d4 -Author: Rob Gries -Date: Sat Oct 2 23:00:43 2021 -0400 - - Create users from user page - -commit 7d40582ea795570503b42a9e34a7a99b89f1bf50 -Author: Rob Gries -Date: Sat Oct 2 20:38:01 2021 -0400 - - Initial attempt at users page - -commit be2c6d050a9eaa40df9118e2b3256c6aa3c2da59 -Author: Rob Gries -Date: Sat Oct 2 17:37:32 2021 -0400 - - Fix redirect on login - -commit e53abbcefa4d18d1a3cf6fdd61b8dc9a081d0f57 -Author: Rob Gries -Date: Sun Jul 25 12:26:55 2021 -0400 - - Change timeout. Still need to add options support to baseQueryFn - -commit c4fa7d99c9bcaae06c79743ded826741d53a7024 -Author: Rob Gries -Date: Sun Jul 25 12:12:43 2021 -0400 - - Clean up redirect code - -commit bd19e05c17d1cd22060e46f7605c2abd9c4fc8ad -Author: Rob Gries -Date: Sat Jul 24 19:38:13 2021 -0400 - - Handle redirects more cleanly - -commit 2fdb3be88ad364cc3a76971890338a7db16437e7 -Author: Rob Gries -Date: Sat Jul 24 00:30:22 2021 -0400 - - Add logic to check login after hard refresh - -commit b132a102e6739fbf598a5747404b4196180e479a -Author: Rob Gries -Date: Fri Jul 23 20:53:37 2021 -0400 - - Add logged_in validation view - -commit abcad5303eea69b0cca0c568a7906dd0aab8a715 -Author: Rob Gries -Date: Fri Jul 23 20:52:55 2021 -0400 - - Implement silent refresh - -commit 8bb2eff191aed8ee10694c6f81f991e03f194584 -Author: Rob Gries -Date: Wed Jul 21 20:24:47 2021 -0400 - - Switch to redux toolkit for auth - -commit 80ebebc444ac7aeb859510321b8421de31be065e -Author: Rob Gries -Date: Wed Jul 21 18:24:03 2021 -0400 - - Return refresh token, fix access token lifetime, fix admin_url, and delete refresh token on logout - -commit 010bccba403afbd66faa7b9774b7ce128414e429 -Author: Rob Gries -Date: Tue Jul 20 23:12:38 2021 -0400 - - Various fixes - -commit f2f12ebb2413cd8ad8f2435c389ad24cf89ce7e5 -Author: Rob Gries -Date: Tue Jul 20 22:29:15 2021 -0400 - - Remove localstorage csrftoken and use cookie instead - -commit 8965a278503338d4f9864123e65a65acb7fdfaed -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Sep 8 01:12:14 2021 +0000 - - Bump pillow from 8.2.0 to 8.3.2 - - Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.2.0 to 8.3.2. - - [Release notes](https://github.com/python-pillow/Pillow/releases) - - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) - - [Commits](https://github.com/python-pillow/Pillow/compare/8.2.0...8.3.2) - - --- - updated-dependencies: - - dependency-name: pillow - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 7bdbbb5f0cbd093f7f206248d11d467b85655fab -Author: Rob Gries -Date: Tue Aug 17 18:19:34 2021 -0400 - - Warn when using non-chrome browser (#241) - - * Add warning modal when using a non-chrome browser - - * Updated warning message - - * Tweak message and styling - -commit 53bce57d5bde5dee40a5d344f4f7f6077f16bd68 -Author: Rob Gries -Date: Tue Jul 20 18:11:19 2021 -0400 - - Fix all prettier and eslint errors (also some warnings) (#240) - -commit 6b2f6523508576c6db6622595ac15380e504d578 -Author: Rob Gries -Date: Tue Jun 22 18:34:47 2021 -0400 - - Frontend maintenance - package upgrades and misc fixes (#236) - - * Remove unnecessary packages and fix random eslint issues - - * Upgrade main react deps and eslint - - * Update remaining packages - - * Fix issues with unmounted components - - * Temporarily disable prettier until fixed - - * Fix test - -commit 9738efee6614162b634f9b6919f589850c0b756d -Merge: ab970df 539518d -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Fri Jun 11 10:45:59 2021 -0400 - - Merge pull request #231 from deardurham/clean_stale_data_fix - - Delete old batches based on batch data instead of petition date - -commit 539518d5f2115f05c6233eef382e4cb5e7d5fd76 (origin/clean_stale_data_fix) -Author: George Helman -Date: Fri Jun 11 09:54:12 2021 -0400 - - Fix test - -commit ab970df1afb73106f5ecc973e018528ea5a471c0 -Merge: 0471655 70fa93a -Author: Colin Copeland -Date: Fri Jun 11 09:14:45 2021 -0400 - - Merge pull request #235 from deardurham/dependabot/pip/django-2.2.24 - - Bump django from 2.2.21 to 2.2.24 - -commit 70fa93aaa478b2e55d15d6db6581803cb2e2eb68 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jun 10 18:40:01 2021 +0000 - - Bump django from 2.2.21 to 2.2.24 - - Bumps [django](https://github.com/django/django) from 2.2.21 to 2.2.24. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.21...2.2.24) - - --- - updated-dependencies: - - dependency-name: django - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 0471655d10b52ab430c5795cf7a473d9cdda582a -Merge: 8f0edc1 b57537f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jun 8 18:06:39 2021 -0400 - - Merge pull request #232 from deardurham/dependabot/pip/django-2.2.21 - - Bump django from 2.2.20 to 2.2.21 - -commit 8f0edc1f8c97568fe61e148bfcb67be14b77f7f1 -Merge: 42d0a06 5aaa64e -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jun 8 18:06:19 2021 -0400 - - Merge pull request #233 from deardurham/dependabot/pip/pillow-8.2.0 - - Bump pillow from 8.1.1 to 8.2.0 - -commit 85f21b70ce69bd1d383a16229ec256d571cedc0e -Author: George Helman -Date: Tue Jun 8 18:05:31 2021 -0400 - - Change created to date_uploaded - -commit 42d0a06cbb64808c45f734838b8dab679774ffbe -Merge: 32e21ce ee178f6 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jun 8 17:59:02 2021 -0400 - - Merge pull request #230 from deardurham/missing_state - - Fix missing agency state problem - -commit 5aaa64ee2ffbb6fd6d68ff3894036dba3c19f375 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jun 8 20:12:38 2021 +0000 - - Bump pillow from 8.1.1 to 8.2.0 - - Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.1.1 to 8.2.0. - - [Release notes](https://github.com/python-pillow/Pillow/releases) - - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) - - [Commits](https://github.com/python-pillow/Pillow/compare/8.1.1...8.2.0) - - --- - updated-dependencies: - - dependency-name: pillow - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit b57537f280d8ed2180dde3c6c82f70d69fae5a59 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jun 4 22:32:00 2021 +0000 - - Bump django from 2.2.20 to 2.2.21 - - Bumps [django](https://github.com/django/django) from 2.2.20 to 2.2.21. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.20...2.2.21) - - --- - updated-dependencies: - - dependency-name: django - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 52e884542ba1930510b7c174e133393436cbb40e -Author: George Helman -Date: Sun May 30 22:55:12 2021 -0400 - - Delete old batches based on batch data instead of petition date - -commit ee178f62bfed9274e4594c307ea4767c425428be (origin/missing_state) -Author: George Helman -Date: Wed May 26 23:51:51 2021 -0400 - - Fix missing agency state problem - -commit 32e21ce1270ad091d3f2a43949ceccc843a5542e -Author: Rob Gries -Date: Tue May 25 18:27:07 2021 -0400 - - Add help page with contact info and best practices for using the app (#225) - - * Initial help page implementation - - * Polished styling for help markdown - - * Style polish - - * Apply amazing advice from a pro - - * Remove comment - - * Fix caret for small window - -commit 5a6a886c60f3f67a7144af494922dddb7921f0f7 -Merge: 7e4a67a be2671c -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 25 18:25:59 2021 -0400 - - Merge pull request #224 from deardurham/celery_beat_fixes - - Celery should finally work - -commit be2671c510351c1a2a908d857068b008ee6823b2 (origin/celery_beat_fixes) -Author: George Helman -Date: Tue May 25 18:23:48 2021 -0400 - - Celery should finally work - -commit 7e4a67ab188fe3622a2567248d6bab08a76b0260 -Merge: efeaa27 f4f00b2 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue May 11 17:58:05 2021 -0400 - - Merge pull request #223 from deardurham/celery_beat_fixes - - Celery beat fixes - -commit f4f00b2101f34e9d52714e4d071f1e0e886d4429 -Author: George Helman -Date: Tue May 11 17:56:39 2021 -0400 - - Celery beat fixes - -commit efeaa27617faddc47a322ccee55189546d7b969c -Merge: 5d4fdd9 bc293b7 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sun May 9 17:06:34 2021 -0400 - - Merge pull request #222 from deardurham/deferred-dismissal - - add Deferred Proceeding... dismissed method - -commit 5d4fdd958287af34593152d4e56f6d928450a210 -Merge: a515b6c 8b523e8 -Author: Colin Copeland -Date: Fri Apr 30 09:04:05 2021 -0400 - - Merge pull request #221 from deardurham/ciprs-reader-140 - - Update to ciprs-reader v1.4.0 - -commit bc293b7f785efd400b75ae90cf4a652f5722e029 (origin/deferred-dismissal) -Author: Colin Copeland -Date: Tue Apr 27 19:17:03 2021 -0400 - - add Deferred Proceeding... dismissed method - -commit 8b523e883943ffe7d3e73d28bbe029f15750fb80 -Author: Colin Copeland -Date: Tue Apr 27 19:12:28 2021 -0400 - - Update to ciprs-reader v1.4.0 - -commit a515b6cfbda028688428cb6cb0905af751fbeaa3 -Merge: 68a91da 61f878f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 27 19:09:55 2021 -0400 - - Merge pull request #220 from deardurham/discover_task - - Add init file to tasks directory - -commit 61f878f4845416a9cc5c791b410c6143f08423b8 (origin/discover_task) -Author: George Helman -Date: Tue Apr 27 19:09:08 2021 -0400 - - Add init file to tasks directory - -commit 68a91da351e65a4be824d450cc2934e6c6892162 -Merge: c48b2c3 0c2f5e8 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 27 18:48:27 2021 -0400 - - Merge pull request #219 from deardurham/add_django_celery_beat - - Add django_celery_beat to installed apps - -commit 0c2f5e8f5a8e9ed21b938167e4e19a3501770346 (origin/add_django_celery_beat) -Author: George Helman -Date: Tue Apr 27 18:47:31 2021 -0400 - - Add django_celery_beat to installed apps - -commit c48b2c35b84ebeb28d73ed66bb3b7ae7def11ca6 -Merge: 544d89f 6b8f746 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 27 18:37:58 2021 -0400 - - Merge pull request #218 from deardurham/celery - - Add celery to project - -commit 6b8f746298387cd8c8f9810452563d21814217d6 (origin/celery) -Author: George Helman -Date: Tue Apr 20 00:15:26 2021 -0400 - - Add celery - -commit 544d89f1b1d6777d1cd60bcac2740c52b9c5b285 -Merge: 3c7e467 6816d32 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 13 18:38:26 2021 -0400 - - Merge pull request #214 from deardurham/burn_after_reading - - Delete batch 48 hours after petition is generated - -commit 6816d32669f1990e18723c65593bb4ce3bd73670 (origin/burn_after_reading) -Merge: d4ba534 3c7e467 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 13 18:38:19 2021 -0400 - - Merge branch 'master' into burn_after_reading - -commit d4ba534b51313061916d01e93e4050ddf77d7797 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 13 18:33:34 2021 -0400 - - Update Dockerfile - -commit 3c7e46750bd6b671efebf995f42cd3c69a853e90 -Author: Rob Gries -Date: Tue Apr 13 18:25:13 2021 -0400 - - Remove SSN and drivers license fields (#211) - -commit bde5825c0f6b3bd91f336dee97b12ceb8729df22 -Merge: 5328ea1 aab0802 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 13 18:22:23 2021 -0400 - - Merge pull request #205 from deardurham/petition_offense_sorting_gremlin - - Fix petition offense sorting - -commit aab080238475b016512dddc72db278131bcffd3b (origin/petition_offense_sorting_gremlin) -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Apr 13 18:21:35 2021 -0400 - - Update forms.py - -commit 5328ea1b60ea3900544ee94d8977b7fac79a87f7 -Merge: e8478a3 df659ce -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Apr 12 23:18:12 2021 -0400 - - Merge pull request #187 from deardurham/dependabot/npm_and_yarn/axios-0.21.1 - - Bump axios from 0.19.2 to 0.21.1 - -commit e8478a3924777d25f4b77b15d9204317319aa406 -Merge: 2b9b6b2 6ffcd24 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Apr 12 23:16:58 2021 -0400 - - Merge pull request #201 from deardurham/dependabot/pip/pillow-8.1.1 - - Bump pillow from 6.2.0 to 8.1.1 - -commit 2b9b6b21d8d127a4dfad664eed3ebcbc62c624e3 -Merge: 2876353 3af4482 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Apr 12 23:16:27 2021 -0400 - - Merge pull request #213 from deardurham/dependabot/pip/django-2.2.20 - - Bump django from 2.2.16 to 2.2.20 - -commit 96b9b6c1add0554738b148db7ef8a8f0925d8c07 -Author: George Helman -Date: Mon Apr 12 22:31:59 2021 -0400 - - Remove notebooks from repo - -commit bc25fb045eb61050d9e1d85d0abead4828b30b05 -Author: George Helman -Date: Mon Apr 12 22:30:08 2021 -0400 - - Delete batch 48 hours after petition is generated - -commit 4ed056efc970a44a1d3f6c4d2cbb84226fe3a9dc -Author: George Helman -Date: Sun Apr 11 23:18:24 2021 -0400 - - Add test for petition offense sorting - -commit 3af448264caee56705c3a9acb42d9855a33aa5ed -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Apr 8 19:47:52 2021 +0000 - - Bump django from 2.2.16 to 2.2.20 - - Bumps [django](https://github.com/django/django) from 2.2.16 to 2.2.20. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.16...2.2.20) - - Signed-off-by: dependabot[bot] - -commit c3fc9db4a489e8569ee6c9db102d026498d1a557 -Author: George Helman -Date: Sun Mar 21 19:36:05 2021 -0400 - - Fix petition offense sorting - -commit 28763535d340b7a8a0b8f0cf941ce65e577a7137 -Merge: f554cd5 9c883f8 -Author: Colin Copeland -Date: Fri Mar 19 20:57:43 2021 -0400 - - Merge pull request #203 from deardurham/dependabot/pip/djangorestframework-3.11.2 - - Bump djangorestframework from 3.11.1 to 3.11.2 - -commit 9c883f8cb425b9b7c86d6f84db3cb0b825858504 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Mar 19 22:34:00 2021 +0000 - - Bump djangorestframework from 3.11.1 to 3.11.2 - - Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.11.1 to 3.11.2. - - [Release notes](https://github.com/encode/django-rest-framework/releases) - - [Commits](https://github.com/encode/django-rest-framework/compare/3.11.1...3.11.2) - - Signed-off-by: dependabot[bot] - -commit 6ffcd245628fbb2a061bd9a2455ef8517677d0f0 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Mar 19 02:34:24 2021 +0000 - - Bump pillow from 6.2.0 to 8.1.1 - - Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.2.0 to 8.1.1. - - [Release notes](https://github.com/python-pillow/Pillow/releases) - - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) - - [Commits](https://github.com/python-pillow/Pillow/compare/6.2.0...8.1.1) - - Signed-off-by: dependabot[bot] - -commit f554cd5e33bedc136995b92b5399fe96d6af9a1f -Merge: 3e3ecef da0ce45 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Mar 16 21:19:13 2021 -0400 - - Merge pull request #199 from deardurham/additional_petitions_checkbox - - Check additional petitions checkbox when there are additional 285 forms - -commit da0ce452b02b2c946a2a650fffbb7f1a6dcbe20c -Author: George Helman -Date: Tue Mar 16 20:47:54 2021 -0400 - - Update get_annotations script and add example usage - -commit 3e3ecef1413b15a5fdba2dac2e41c5c176cfea81 -Author: Rob Gries -Date: Tue Mar 16 18:22:08 2021 -0400 - - Fix agency city, state, and zip fields for pdf writing (#195) - - * Fix agency city, state, and zip fields for pdf writing - - * Update test to catch key issues and set dummy contact data - -commit d9883224664a5d28fb4a7008a02f483f4e0a7487 -Author: George Helman -Date: Tue Mar 16 09:20:05 2021 -0400 - - Remove unnecessary format string - -commit 700346e226b3e01f1939a0a8daf3813d8c29a60c -Author: George Helman -Date: Sun Mar 14 23:14:58 2021 -0400 - - Check additional petitions checkbox when there are additional 285 forms - -commit 1eef789aa0dafc5a953d23b54e0eb5b961cd4dde -Merge: 0e3fcc3 7938837 -Author: Colin Copeland -Date: Sat Mar 13 20:26:49 2021 -0500 - - Merge pull request #198 from deardurham/github-actions - - Use GitHub actions - -commit 79388373c09ca87b9abe1c4c1fa4aefea966861d -Author: Colin Copeland -Date: Sat Mar 13 20:24:04 2021 -0500 - - install prod reqs - -commit 6de4d01361c86c0645629026b93f2a764e19162d -Author: Colin Copeland -Date: Sat Mar 13 15:35:48 2021 -0500 - - use ubuntu-20.04 - -commit 76c6116bfe9fb0daffeab9926f79e9c289ee933e -Author: Colin Copeland -Date: Sat Mar 13 15:30:53 2021 -0500 - - remove pre-commit - -commit 467da916e919671ff666784cc194d4d654c3331a -Author: Colin Copeland -Date: Sat Mar 13 14:23:08 2021 -0500 - - add test workflow - -commit 91b35ef020bb422f05dd2a817778d9db4914c839 -Author: Colin Copeland -Date: Sat Mar 13 14:22:24 2021 -0500 - - remove travis config - -commit 76623df458b265970962874305ad2f753d2e9b14 -Author: Colin Copeland -Date: Sat Mar 13 14:10:13 2021 -0500 - - update dockerignore - -commit 0e3fcc32606823baee8af7af96c2048628014cd0 -Author: Rob Gries -Date: Fri Mar 12 15:57:59 2021 -0500 - - Frontend rework (#196) - - * Add password reset links as proxied links - - * WIP - - * More refactor - - * WIP - - * Update HomePage and PageHeader - - * Fix anchor expanding past image width - - * Logo tweaks - - * Fix overflow on GenerationPage - - * DnD and FileList tweaks - - * Minor tweaks - - * Fix button triggering on right click - - * Re-align FileList and remove scroll bar - - * Refactor button and icon file structure - - * Fix GeneratePetitionModal - - * Style updates - - * Remove scrolling while Modal is open and ensure always centered in screen - - * Remove references to deleted CloseIcon - - * very much wip petition list changes - - * Generate button spacing - - * Add attachment number to table - - * Add hook to change GenerateButton on resize - - * Replace petition list with grid instead of flex - - * CSS tweaks - - * Frontend now in good working state - - * Clean up table code - - * Minor css tweaks - - * Add attachments to serializer and sort by county, jurisdiction, attachment order - - * Attachment label css - - * Don't allow selection of header - - * Minor tweaks - - * Move Button outside of unnecessary folder - - * Fix prettier complaint - - * Quality of life changes and use two column approach for input forms - - * Add more specific selectors - - * Small rewording - - * Handle batch List vs Detail view in better way - -commit 4aa16ebcae44541872b72d42531f8442efcb0229 -Author: Rob Gries -Date: Tue Mar 2 22:25:09 2021 -0500 - - Increase timeout for request and add error messages (#194) - -commit 7d9278237ae060028e92306ea87af75576921eff -Merge: dc8c3bd a872b21 -Author: Colin Copeland -Date: Fri Feb 19 09:37:07 2021 -0500 - - Merge pull request #190 from robert-w-gries/exclude_infractions - - Filter out infraction severity offense records for CR287 and CR285 - -commit dc8c3bd1148706d4d962ff411a132359db558244 -Merge: 369b0ac 2dd7ce4 -Author: Colin Copeland -Date: Sun Feb 7 21:16:18 2021 -0500 - - Merge pull request #192 from deardurham/191-order - - Guarantee consistent offense record order if file numbers match - -commit a872b21c076ee67029288b8eaede42c460b3fdb3 (rob/exclude_infractions) -Author: Rob Gries -Date: Sat Feb 6 16:04:38 2021 -0500 - - Add test for infraction severity offense records and fix existing tests - -commit 27f6d57dddfd53a8855429dc779a19134be93a96 -Author: Rob Gries -Date: Thu Feb 4 19:20:52 2021 -0500 - - Move severity filter logic to form_types - -commit 2dd7ce467818d63bef684ce292b95d010fb4fad0 -Author: Colin Copeland -Date: Tue Feb 2 19:20:17 2021 -0500 - - order by pk 3rd to gurantee consistent order if file numbers match - -commit d54e2e926a6c50b1c317dca02b25b7989ad2cd64 -Author: Rob Gries -Date: Tue Feb 2 17:32:46 2021 -0500 - - Filter out infraction severity offense records for CR287 and CR285 - -commit 369b0acc1a38801c723716c7cd3662edc630bba3 -Merge: 9898307 a975e36 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 19 18:07:58 2021 -0500 - - Merge pull request #185 from deardurham/sort_by_file_number - - Sort by file number - -commit a975e36b193f9ce6e70db3a7db157da5d546795f (origin/sort_by_file_number) -Author: George Helman -Date: Wed Jan 6 00:27:27 2021 -0500 - - Sort offense records by year, then file number - -commit df659ce5ddf738f01f29fd1e991f96b023cc26fa -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jan 6 03:47:16 2021 +0000 - - Bump axios from 0.19.2 to 0.21.1 - - Bumps [axios](https://github.com/axios/axios) from 0.19.2 to 0.21.1. - - [Release notes](https://github.com/axios/axios/releases) - - [Changelog](https://github.com/axios/axios/blob/v0.21.1/CHANGELOG.md) - - [Commits](https://github.com/axios/axios/compare/v0.19.2...v0.21.1) - - Signed-off-by: dependabot[bot] - -commit 98983070d3cda2873182a6875520e5bee67a6dd6 -Merge: 62e7ac5 de3f3a2 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jan 5 17:59:44 2021 -0500 - - Merge pull request #183 from deardurham/convert_forms - - Convert to 2021 forms - -commit de3f3a265d4d5c254ab92839a26b28df09d3267b (origin/convert_forms) -Author: George Helman -Date: Fri Jan 1 19:18:51 2021 -0500 - - Convert to 2021 forms - -commit 62e7ac5836471205d7e5da075357c95b60b35c9c -Author: Rob Gries -Date: Tue Dec 15 21:06:59 2020 -0500 - - Improve proxy configuration and support proxied admin pages (#177) - - * Improve proxy configuration - - * Use `http://django:8000` when using docker-compose by default - * Added `OVERRIDE_API_PROXY` environment variable to override default - * The admin pages are now also proxied - * Removed unused dependency - - * WIP docs - - * Update readme docs - -commit 40095869737b9ab13e2fc3fe6678d1e74821cb4b -Merge: 666728f 0b59fd0 -Author: Colin Copeland -Date: Tue Nov 10 19:11:03 2020 -0500 - - Merge pull request #176 from deardurham/password_reset_from_email - - Make default from email noreply@dear-petition.herokuapp.com - -commit 0b59fd08b3bf49b911864d19d0acb6f5d9587c4b -Author: George Helman -Date: Tue Nov 10 19:09:27 2020 -0500 - - Make default from email noreply@dear-petition.herokuapp.com - -commit 666728f01e73ac6918430aa92fdb75c6f5704fdf -Merge: c4ec7e3 c65a676 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Nov 10 18:56:37 2020 -0500 - - Merge pull request #175 from deardurham/guilty_to_lesser - - Support guilty to lesser - -commit c65a676ab28be393f35a729ee93a9f653838daeb (origin/guilty_to_lesser) -Author: George Helman -Date: Tue Nov 10 18:54:47 2020 -0500 - - Support guilty to lesser - -commit c4ec7e3028cd330db8216c312f98e9f8c6261d77 -Merge: 09b5694 b0c7727 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Oct 27 18:37:14 2020 -0400 - - Merge pull request #173 from deardurham/populate_not_guilty - - Add AOC-CR-288 form so that disposition method is not guilty - -commit b0c7727b80ea86bab6784d9fee24e7c71f474714 (origin/populate_not_guilty) -Author: George Helman -Date: Tue Oct 27 18:30:02 2020 -0400 - - Add AOC-CR-288 form so that disposition method is not guilty - -commit 09b5694d382f2ea189f8838367f1e5b978b8174c -Merge: e716cf8 6ea017f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Mon Oct 26 20:20:13 2020 -0400 - - Merge pull request #170 from deardurham/populate_not_guilty - - Populate not guilty charges - -commit 6ea017f39fab548eebd83aa3fc15e109ae7fcaec -Author: George Helman -Date: Sun Oct 25 17:50:04 2020 -0400 - - Add not guilty form - -commit e716cf8fc93f797e1020876ed64a60eab696042a -Merge: 3066932 6360991 -Author: Colin Copeland -Date: Tue Oct 13 21:30:54 2020 -0400 - - Merge pull request #172 from deardurham/ciprs-reader-1-3-0 - - ciprs-reader==v1.3.0 - -commit 6360991901bcbc8a62885dceba382663f48dba02 -Author: Colin Copeland -Date: Tue Oct 13 21:15:07 2020 -0400 - - ciprs-reader==v1.3.0 - -commit 30669328c7b3e1e641f995f4894551f156afeb68 -Author: Rob Gries -Date: Tue Sep 29 21:27:52 2020 -0400 - - Fix Download button for generated petitions (#166) - - * Working pdf cleanup -- keypress issue - - * Ensure only one modal is rendered at a time - - * Fix closing of pdf after pressing escape key - - * Resolve issue where empty modal is generated on invalid input - -commit c8be104d2e22386292c353d524fdd711609d44ef -Merge: 497b122 34b7af3 -Author: Colin Copeland -Date: Tue Sep 29 17:23:12 2020 -0400 - - Merge pull request #167 from deardurham/data-petition - - Data petition - -commit 497b122a4a802a29fb136fa2edfe095bdba4d2cf -Merge: 47c87c0 7713080 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Sep 15 18:08:15 2020 -0400 - - Merge pull request #155 from deardurham/fix_timezone - - Fix issue where we were displaying UTC datetimes on petition - -commit 34b7af30579f5923b193764a502661d168f185fa -Author: Colin Copeland -Date: Mon Sep 7 13:06:48 2020 -0400 - - test build_form_context - -commit 3be3a3fc88d7e8e1630605953dd2e6a5c42764c4 -Author: Colin Copeland -Date: Mon Sep 7 13:03:03 2020 -0400 - - support DataPetition generation - -commit c09779c0dd7066aa933495649d552a34d98f0554 -Author: Colin Copeland -Date: Mon Sep 7 13:02:10 2020 -0400 - - add DataPetition - -commit 99569987d48decd8ec3e9613c89258095faf6128 -Author: Colin Copeland -Date: Mon Sep 7 12:22:06 2020 -0400 - - update package versions for to remove errors with --use-feature=2020-resolver - -commit 47c87c06e67e7d7738625ea0925d42681ce7918f -Author: Rob Gries -Date: Wed Sep 2 21:35:12 2020 -0500 - - Fix issue where argon2 ffi library not installed (#164) - -commit 2132d58ff1e69db322aaf43e0b32f7d349e1e24f -Merge: 7f5e147 2e96861 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sat Aug 22 23:45:33 2020 -0400 - - Merge pull request #163 from deardurham/plea_verdict - - Offense API returns plea and verdict - -commit 7713080fcdbabd4e5e958bbd27f18c5c223b41e6 (origin/fix_timezone) -Author: George Helman -Date: Sat Aug 22 23:14:19 2020 -0400 - - Fix UTC timezone issue - -commit 7f5e1472673ce494ba6730afcdc82435972871a9 -Author: Rob Gries -Date: Tue Aug 11 09:50:15 2020 -0500 - - Fix docker frontend service setup and enable hot reloading (#156) - -commit 2e96861ed1944ffeb2f5fad022be73735fc4e8b8 (origin/plea_verdict) -Author: George Helman -Date: Fri Aug 7 09:46:03 2020 -0400 - - Offense API returns plea and verdict - -commit 2f3d3de456a4de0a87370e24b91a88d93df4f4fe -Merge: 41ed0e9 7c5a152 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Aug 4 19:28:40 2020 -0400 - - Merge pull request #159 from deardurham/add-batchfile - - Add BatchFile model - -commit 7c5a15241070f13fcd504afb0312af6f78d06e6a (origin/add-batchfile) -Author: Colin Copeland -Date: Sun Aug 2 11:08:02 2020 -0400 - - add mock_transform_ciprs_document - -commit 9f85ca94b5bf069bac8f625c6a4605c001bb6c17 -Author: Colin Copeland -Date: Sun Aug 2 11:01:23 2020 -0400 - - add batch file tests - -commit dd186037b3324bffcb0ed4613d1d8cf062615f6c -Author: Colin Copeland -Date: Sun Aug 2 10:55:39 2020 -0400 - - add BatchFile creation in import_ciprs_records - -commit fcdede0d0a5dc4c33bffb596a6c240178ae07587 -Author: Colin Copeland -Date: Sun Aug 2 10:45:26 2020 -0400 - - remove action_parse_report_pdf - -commit e8804c5306f0309dcb54ab02f6b65b88614da9a4 -Author: Colin Copeland -Date: Sun Aug 2 10:45:11 2020 -0400 - - add BatchFileAdmin - -commit 7b9d35114f4eec1aca1ba1b6f1a5049b963947fe -Author: Colin Copeland -Date: Sun Aug 2 10:44:41 2020 -0400 - - remove report_pdf - -commit 77964757be62da5970f87b7582f8575bf5cfaff5 -Author: Colin Copeland -Date: Sun Aug 2 10:44:07 2020 -0400 - - migrate record_pdf to BatchFile - -commit 9aaa17156c2a9e17146de3e42fed1d72f81513cf -Author: Colin Copeland -Date: Sun Aug 2 10:43:46 2020 -0400 - - add BatchFile model - -commit 41ed0e916129d65c3209ec3128820c76a8198df4 -Author: Colin Copeland -Date: Wed Jul 22 21:56:18 2020 -0400 - - revert saving record (broken) - -commit ce0056c844b26c433b7750c67dda51599ec85c4a -Merge: e6a94e1 a5a6a9a -Author: Colin Copeland -Date: Wed Jul 22 21:32:01 2020 -0400 - - Merge pull request #152 from deardurham/form-285-backend - - AOC-CR-285 backend - -commit a5a6a9a91f6e19c2072ebdaa5af730708bcbf381 -Author: Colin Copeland -Date: Wed Jul 22 21:24:44 2020 -0400 - - save record after setting file - -commit 64c36c70aa79bd8608fe9bffe7835ad37eef6405 -Author: Colin Copeland -Date: Wed Jul 22 21:23:12 2020 -0400 - - upgrade ciprs-reader to v1.2.0 - -commit 6d5f86d5788b60c9e8b08c91f36cb450156e6899 -Author: Colin Copeland -Date: Wed Jul 22 21:17:07 2020 -0400 - - PetitionerName tests for cr285 - -commit b470bcfc106852e0461b4d52df7d7ce50c3c59a8 -Merge: ec8d77e e6a94e1 -Author: Colin Copeland -Date: Wed Jul 22 21:15:11 2020 -0400 - - Merge branch 'master' into form-285-backend - -commit e6a94e13724e69463a35af3972ee6ca1db37e80a -Merge: e4552fa a72c6ad -Author: Colin Copeland -Date: Wed Jul 22 20:58:57 2020 -0400 - - Merge pull request #150 from robert-w-gries/feature/name_address_fields - - Submit petitioner name and address to generate-petition endpoint - -commit a72c6ad9082dca41367b02b581f447a40b7b9f01 (rob/feature/name_address_fields) -Author: Rob Gries -Date: Wed Jul 22 15:28:43 2020 +0000 - - Allow editing of petitioner name and fix error with non-NC states - -commit ec8d77e8762b294e917e20ea2afa67ee6ec1f35e -Author: Colin Copeland -Date: Tue Jul 21 18:36:42 2020 -0400 - - use self.get_most_recent_record to normalize functionality - -commit 38977d192e2562eab5e20d9bff0f2c83a712e91f -Author: Colin Copeland -Date: Tue Jul 21 18:36:14 2020 -0400 - - improve test name - -commit 6403457b2ae8790c9a14b40d0618770b7cacbce7 -Author: Colin Copeland -Date: Tue Jul 21 18:35:20 2020 -0400 - - use MULTIPLE_FILE_NO_MSG - -commit 86597dce0670f8b8384c07c75351b94cc9d94394 -Author: Colin Copeland -Date: Tue Jul 21 18:34:56 2020 -0400 - - add bounds checking to paginator - -commit 05c56da1c187d5f537b76c250f2ca10c983d646a -Author: Colin Copeland -Date: Tue Jul 21 18:34:35 2020 -0400 - - fix typos - -commit e4552fa5675539f55da81d9497aed0a10d83eed2 -Author: Rob Gries -Date: Tue Jul 21 11:18:21 2020 -0400 - - Add CloseIcon to GeneratePetitionModal (#151) - - * Add CloseIcon to GeneratePetitionModal - - * Add newline to EOF - - * Remove unnecessary CSS from close button - -commit 2b02237a301476f6640f03123103d8397de92275 -Author: Colin Copeland -Date: Sun Jul 12 15:04:02 2020 -0400 - - fix 287 form no - -commit b0adf428fd0e7bdca0442f72a0ba9ff886af5b55 -Author: Colin Copeland -Date: Sun Jul 12 14:59:55 2020 -0400 - - add parent to serializer - -commit 7ec1cd9fa0f2440e6351c90eb373605a8d7ad1cc -Author: Colin Copeland -Date: Sun Jul 12 14:50:21 2020 -0400 - - add map_file_no to AOCFormCR287 - -commit d79c0c523412d6b328f45f49c3723827d73b2563 -Author: Colin Copeland -Date: Sun Jul 12 14:47:19 2020 -0400 - - add agencies to AOCFormCR285 - -commit c249228c8ed60a61be940c4fa1e7cf98b44e6b18 -Author: Colin Copeland -Date: Sun Jul 12 14:32:48 2020 -0400 - - add AOCFormCR285 - -commit e9e31f9dfaa2cbd6a15e80418db9e008e750b0df -Author: Colin Copeland -Date: Sun Jul 12 13:26:21 2020 -0400 - - remove unused fields module - -commit 8b74c9868b0222fc364e669b90f9584614d3765f -Author: Colin Copeland -Date: Sun Jul 12 13:17:11 2020 -0400 - - remove unused imports - -commit 5007c41bb6e592419cde16db497b43ae9fa3bc73 -Author: Colin Copeland -Date: Sun Jul 12 13:16:25 2020 -0400 - - remove now-unused mapper module - -commit d4cba19f3d125f831d901b682adc28a7d5c0c4f1 -Author: Colin Copeland -Date: Sat Jul 11 21:42:20 2020 -0400 - - use dt_obj_to_date - -commit 12e0c7f0e836eee9b8a0ed10d781586a8406919b -Author: Colin Copeland -Date: Sat Jul 11 21:19:54 2020 -0400 - - export agencies - -commit 313db28a7d820a6ce8a37a5cc3eb9c4edef768f4 -Author: Colin Copeland -Date: Sat Jul 11 21:19:33 2020 -0400 - - remove old mapper tests - -commit 0b057e697bbd0b2a21f4edc9ad47cfe5334d7cb5 -Author: Colin Copeland -Date: Fri Jul 10 13:29:35 2020 -0400 - - first pass at export.forms refactor - -commit c27b8cc2c59c257cd56adfbc12a33303a21f17e2 -Author: Colin Copeland -Date: Thu Jul 9 21:20:09 2020 -0400 - - map addl cr_285 fields - -commit 392179a3cb381145ffd5972051461bc517e09e2c -Author: Colin Copeland -Date: Thu Jul 9 18:21:41 2020 -0400 - - add utility for mapper to use petition-specific field names - -commit e28d5d034d1038af85ef6ef1aa8ad28baaa8e62b -Author: Colin Copeland -Date: Thu Jul 9 14:35:19 2020 -0400 - - add 285 form - -commit 22f88dff159f22c575f7de92ef1005b510a967a8 -Author: Colin Copeland -Date: Thu Jul 9 14:35:11 2020 -0400 - - simplify form type display - -commit 48538fec4423a3912c0cfd9f733b4c80fba68bbb -Author: Colin Copeland -Date: Thu Jul 9 10:06:37 2020 -0400 - - remove unused imports - -commit 68dde5ff85d58ac52f47cc8ffef1fe0afc18bd6d -Author: Colin Copeland -Date: Thu Jul 9 10:06:23 2020 -0400 - - pull offenses from petition.offense_records - -commit ae231696a83cc98f320abc2b22621d60ee55d22a -Author: Colin Copeland -Date: Thu Jul 9 09:57:02 2020 -0400 - - pass form type to pdf writer - -commit 358840c20f72d5d083934017a6e4f040534cc677 -Author: Colin Copeland -Date: Wed Jul 8 21:20:21 2020 -0400 - - clean up petition admin - -commit 0974d60f1e29dc1ce8781a07dc3950d0b36c4996 -Author: Colin Copeland -Date: Wed Jul 8 21:15:54 2020 -0400 - - first pass at AOC-CR-285 support - -commit 62a37b38715a7b022cb5f48d01333f244949f426 -Author: Rob Gries -Date: Tue Jul 7 15:19:09 2020 -0400 - - Submit address fields during petition generation - -commit 750c896bb608b7c84d5394a177d822fe2bc6b519 -Author: Rob Gries -Date: Tue Jul 7 14:18:03 2020 -0400 - - Allow empty address line 2 and add tests - -commit 4f57374b5c4e640a69ccf9b76b6965d71e59bd39 -Author: Rob Gries -Date: Tue Jul 7 12:12:33 2020 -0400 - - Add petitioner name and address fields to generate-petition endpoint - -commit a8755c51e1bc011211a88a425160faea84dd1823 -Merge: 3871957 df563e2 -Author: Colin Copeland -Date: Tue Jul 7 10:23:11 2020 -0400 - - Merge pull request #144 from robert-w-gries/feature/password_reset - - Add Django views for password reset - -commit df563e2e8d144e92536c1ea5c2658ab25d6e754d (rob/feature/password_reset) -Author: Rob Gries -Date: Fri Jun 26 10:10:10 2020 -0400 - - Add Forgot Password link to login page - -commit 3871957a455e183c5cf32482fb593efaebf18253 -Merge: 1fc9fbc b00b018 -Author: Colin Copeland -Date: Tue Jun 23 21:20:17 2020 -0400 - - Merge pull request #147 from deardurham/fix-disposition-code-upper-tests - - fix disposition code upper - -commit b00b01814a906f70266ec9b28ffbccf4fcb9ffad -Author: Colin Copeland -Date: Tue Jun 23 21:14:25 2020 -0400 - - fix disposition code upper - -commit 1fc9fbc6e84b021b6e17b3c848675c4d2ecabf8f -Merge: 6989ac2 94d7a4d -Author: Colin Copeland -Date: Tue Jun 23 19:44:36 2020 -0400 - - Merge pull request #146 from deardurham/upper_case_disposition_methods - - Upper case disposition methods in map - -commit 94d7a4daf8d3e6015106a3a1568807371347eb17 -Author: George Helman -Date: Tue Jun 23 19:40:53 2020 -0400 - - Upper case disposition methods in map - -commit 6989ac29bf62157a9bd931057715d0af0aff7f08 -Merge: 2adefeb c21511f -Author: Colin Copeland -Date: Tue Jun 23 19:22:05 2020 -0400 - - Merge pull request #145 from deardurham/disposition_method_code_map_bug - - Fix disposition method code map bug - -commit c21511f8a212322664e68021d93dbf94c09442e4 -Author: George Helman -Date: Tue Jun 23 19:20:23 2020 -0400 - - Fix disposition method code map bug - -commit 2adefeb0dc9380480a4df51d7be454b41cca902d -Merge: ec9d159 c68c520 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jun 23 19:08:18 2020 -0400 - - Merge pull request #143 from deardurham/33-parse-combined-pdfs - - Parse combined pdfs - -commit 30d4a84efab7d15a72b4cae07020fe356b4d9d03 -Author: Rob Gries -Date: Tue Jun 23 19:04:50 2020 -0400 - - Add Django views for password reset - -commit c68c520b358f38cba60794e6bd81871f7d491fdf -Author: Colin Copeland -Date: Tue Jun 23 18:56:55 2020 -0400 - - update ciprs-reader to v1.1.0 - -commit bfbb62b264584b13d057c2bcbb9df10a8a758e1f -Author: Colin Copeland -Date: Tue Jun 23 18:56:27 2020 -0400 - - speed up tests in docker - -commit bdccbc438cc60c2ebecee38efd4f221738ac962a -Merge: bc30d58 ec9d159 -Author: Colin Copeland -Date: Tue Jun 23 18:55:42 2020 -0400 - - Merge branch 'master' into 33-parse-combined-pdfs - -commit ec9d159de774270be42879b186d236667a087149 -Merge: 4f2cda2 1b857f5 -Author: Colin Copeland -Date: Tue Jun 23 18:51:58 2020 -0400 - - Merge pull request #137 from deardurham/populate_disposition_method_codes - - DP-119 Populate petition with disposition codes - -commit 1b857f5beeab7697ef77b5f1c12741a69b1e2a61 -Author: Colin Copeland -Date: Tue Jun 23 18:41:17 2020 -0400 - - parametrize on dismissed disposition methods - -commit bfef186c6c9dd9c325b6ac6b17b20a8be73fa31b -Author: Colin Copeland -Date: Tue Jun 23 18:31:13 2020 -0400 - - remove breakpoint - -commit bc30d588b6346d17771b846df9d217c5b7a6650c -Author: Colin Copeland -Date: Sat Jun 20 21:50:32 2020 -0400 - - set label in refresh method - -commit 3ba1cd0cf29ff93caac4cf6b10b24d964cbf171d -Author: Colin Copeland -Date: Sat Jun 20 21:46:27 2020 -0400 - - add county to list filter - -commit 487f779991d82bffb4334dff9cbc9ad7044de4f9 -Author: Colin Copeland -Date: Sat Jun 20 21:43:55 2020 -0400 - - add addl fields to admin list - -commit df8dfa983697b1c78f2951766eb5478b6f9867ac -Author: Colin Copeland -Date: Sat Jun 20 21:43:42 2020 -0400 - - update test to expect list - -commit 10d17358419c216ebd0d59fbb69c2ee2f729d505 -Author: Colin Copeland -Date: Sat Jun 20 21:32:58 2020 -0400 - - update ETL to expect list of records from ciprs-reader - -commit 1595a7829d545eade173a504e30f7816347a5704 -Author: George Helman -Date: Sat Jun 20 16:33:21 2020 -0400 - - DP-119 Populate petition with disposition codes - -commit 4f2cda2959baa972c860da653ed0c3fcd59cf215 -Merge: 98c4b60 6f50a77 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Thu Jun 18 15:23:10 2020 -0400 - - Merge pull request #138 from deardurham/multiple-offenses - - WIP Multiple offenses - -commit 6f50a77131eafd36dfef6fdcb82930ccdef7473a (origin/multiple-offenses) -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Thu Jun 18 15:22:04 2020 -0400 - - Update base.txt - -commit 5337f45c5ea8cbd454a95893f65c116fd820ba37 -Author: Colin Copeland -Date: Wed Jun 17 22:07:09 2020 -0400 - - order by file no after date - -commit 8003d605801d1bfb98dde690d8a5dedaf490f4fb -Author: Colin Copeland -Date: Wed Jun 17 21:55:00 2020 -0400 - - make sure offenses are filtered by jurisdiction - -commit 457400b19053b2ce98e3b18e475a3e4378b68506 -Author: Colin Copeland -Date: Tue Jun 16 21:56:59 2020 -0400 - - update travis to Python 3.7 - -commit 98c4b6000dc415c2781d6198885b5e5019d58403 -Merge: d4308dc 8fc1f0c -Author: Colin Copeland -Date: Tue Jun 16 21:50:53 2020 -0400 - - Merge pull request #136 from robert-w-gries/docs/onboarding - - Update docs for new devs and change default proxy - -commit d4308dc5ec28ce299ccdaf75442d1ee73894b983 -Merge: 1dffacb a993935 -Author: Colin Copeland -Date: Tue Jun 16 21:49:43 2020 -0400 - - Merge pull request #134 from robert-w-gries/autocomplete_fix - - Filter out agencies that were already selected from autocomplete - -commit 15b5bae9b807592fc2e71801b4334f235c8ebe33 -Author: Colin Copeland -Date: Tue Jun 16 21:48:32 2020 -0400 - - remove old tests - -commit a4f28f20631b9f7333daa794c914e25c862b22b0 -Author: Colin Copeland -Date: Tue Jun 16 21:45:12 2020 -0400 - - more refresh tests - -commit 909d66e76ca6aae17c2dc41e1f97e9e984ab6945 -Author: Colin Copeland -Date: Mon Jun 15 22:19:09 2020 -0400 - - upgrade ciprs-reader; refactor refresh process - -commit d1ebd1dd3c720bd7754e4d3a3eae56d6d83a1cfa -Author: Colin Copeland -Date: Mon Jun 15 22:18:06 2020 -0400 - - use python 3.7 on Heroku - -commit 44b18b17fc59acdb6748e29d9bbd392b8463ab56 -Author: Colin Copeland -Date: Mon Jun 15 22:17:46 2020 -0400 - - use alpine 10 for python 3.7 - -commit 8fc1f0c7f5703df6c13a6ca50e21fe5af04d13e8 (rob/docs/onboarding) -Author: Rob Gries -Date: Thu Jun 11 11:35:41 2020 -0400 - - Rewording the bit about staging account - -commit 0d5d34680bb66064280b056e87c3031f53a5bfce -Author: Rob Gries -Date: Thu Jun 11 11:30:03 2020 -0400 - - Update readme + default proxy - -commit 1dffacbfab251f8f2852e8121f4703f7d250bf8f -Merge: c4a196b 1db7338 -Author: Colin Copeland -Date: Tue Jun 9 21:28:26 2020 -0400 - - Merge pull request #132 from robert-w-gries/feature/admin_url - - Add admin link to navigation bar - -commit a9939350fcdba6842a02a4b1d02b257b0ea1fa9b (rob/autocomplete_fix) -Author: Rob Gries -Date: Tue Jun 9 19:40:52 2020 -0400 - - Filter out agencies that were already selected from autocomplete - -commit c4a196b7c262a8f38b870c4ddab02cdd81296ebd -Merge: 5e87016 1e05f6d -Author: Colin Copeland -Date: Tue Jun 9 09:53:19 2020 -0400 - - Merge pull request #133 from deardurham/dependabot/pip/django-2.2.13 - - Bump django from 2.2.12 to 2.2.13 - -commit 1e05f6d1634e02e9a0e2ede0062d36e5a7512157 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jun 5 22:15:42 2020 +0000 - - Bump django from 2.2.12 to 2.2.13 - - Bumps [django](https://github.com/django/django) from 2.2.12 to 2.2.13. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.12...2.2.13) - - Signed-off-by: dependabot[bot] - -commit 1db7338d9393898b980e926ba21be83ae462c5c4 (rob/feature/admin_url) -Author: Rob Gries -Date: Fri Jun 5 15:56:15 2020 -0400 - - Fix access of admin_url from user data - -commit c3b0847460b392e3489eabe4f6dff642c87c92ef -Author: Rob Gries -Date: Thu Jun 4 14:30:27 2020 -0400 - - Retrieve user admin url on non-login page render - -commit bba0500fc810ecfe5c91673a4dfef3b91696f75f -Author: Rob Gries -Date: Wed Jun 3 19:43:44 2020 -0400 - - WIP add admin link - -commit 5e87016956bedde35b70a63898673d0eee50eec1 -Author: Colin Copeland -Date: Fri Jun 5 08:58:52 2020 -0400 - - make request optional in UserSerializer - -commit 5295a2ea24b01e43c87e74222a64608c2f399432 -Author: Colin Copeland -Date: Sun May 31 16:17:30 2020 -0400 - - disable admin url for now - -commit 08ddf6cda064df01e7f3effcf3832a9cfe7735d3 -Merge: 706aa81 404e0e2 -Author: Colin Copeland -Date: Sun May 31 15:58:52 2020 -0400 - - Merge pull request #99 from deardurham/upgrade - - Upgrade #7 - -commit 404e0e226bd3e5a662c0069eef1713ee2f57b11a (rob/upgrade, origin/upgrade) -Merge: 0834355 706aa81 -Author: Colin Copeland -Date: Sun May 31 15:53:42 2020 -0400 - - Merge branch 'master' into upgrade - -commit 0834355c271e7b48e29e1ad52b27f5142531cae8 -Merge: 04ae853 8235971 -Author: Colin Copeland -Date: Sun May 31 15:51:48 2020 -0400 - - Merge branch 'upgrade-pre-merge' into upgrade - -commit 8235971cb2a1bf40391e71ff5dc1e0b48fc47f52 -Author: Colin Copeland -Date: Sun May 31 15:51:27 2020 -0400 - - restore db docs - -commit 279d8a76e6468def60e8fbdb32716f1a46433b4e -Author: Colin Copeland -Date: Sun May 31 15:50:39 2020 -0400 - - return admin url - -commit 04ae8536bb527272f6c30a08fcf3a77e65c92531 -Merge: ffa019f 6d1610a -Author: Colin Copeland -Date: Sun May 31 15:15:39 2020 -0400 - - Merge pull request #129 from deardurham/upgrade-pre-merge - - Upgrade pre merge - -commit 6d1610a30576600c4b2d7c7b27b524e2ec87bbff -Author: Colin Copeland -Date: Sun May 31 15:11:31 2020 -0400 - - add catch all url to pass to React SPA - -commit 69acc7b55219d4762b073698e37e030043442136 -Author: Colin Copeland -Date: Sun May 31 14:52:49 2020 -0400 - - add psql env vars to django local dev env - -commit be09c6adc21a188d5a7fc694fc5c30368d1647ef -Author: Colin Copeland -Date: Sun May 31 14:22:22 2020 -0400 - - clean up django setup docs - -commit e94b30ac89399528f81d0b6f13b5823d57439ac5 -Author: Colin Copeland -Date: Sun May 31 14:10:06 2020 -0400 - - remove unused merge file - -commit 53073f8627f951768580e8f5279b0bf44fc791d1 -Author: Colin Copeland -Date: Sun May 31 14:09:19 2020 -0400 - - remove env.example file since local.yml isn't needed anymore - -commit 15ef335b8eb56bcca9b9f6f418e863c86c1ad0b6 -Author: Colin Copeland -Date: Sun May 31 14:08:42 2020 -0400 - - remove unused heroku.yml - -commit 3af45c61b30831865080e3b7f648206571337ce3 -Author: Colin Copeland -Date: Sun May 31 14:08:11 2020 -0400 - - remove production compose file - -commit 432bc436f4816d6b6a391e4947950f677d51e8b2 -Author: Colin Copeland -Date: Sun May 31 14:07:08 2020 -0400 - - remove unused dockerfile - -commit d75cb33c27740a938dfada618380209f6b24c397 -Author: Colin Copeland -Date: Sun May 31 14:04:47 2020 -0400 - - remove commented out services - -commit eec1c411480e446a98ea9b71e346378de01fc744 -Author: Colin Copeland -Date: Sun May 31 14:03:47 2020 -0400 - - rename docker-compose to default - -commit ffa019fa0eb5260e07e455ad124b3c036a06b18d -Author: Colin Copeland -Date: Thu May 28 22:11:18 2020 -0400 - - make identify_distinct_petitions use distinct() - -commit b7efce430ca618679ff515c0223f67585cb42be5 -Author: Colin Copeland -Date: Thu May 28 21:45:03 2020 -0400 - - autocomplete agencies - -commit 6488b4abb2bdc08c87cf7c29d9348458b9a6080e -Merge: 5bf2af3 c91cb8e -Author: Colin Copeland -Date: Thu May 28 21:32:48 2020 -0400 - - Merge pull request #123 from deardurham/serve-frontend - - [WP-25] Serve frontend - -commit c91cb8e48d262c273732a2c0f4d9e6181d3d914a -Merge: acfb106 5bf2af3 -Author: Colin Copeland -Date: Thu May 28 21:26:20 2020 -0400 - - Merge branch 'upgrade' into serve-frontend - -commit 5bf2af36966aa3ae3cc5155240d7a2ed78acfa79 -Merge: e3bd1a6 e24ca7f -Author: Colin Copeland -Date: Thu May 28 21:23:05 2020 -0400 - - Merge pull request #122 from deardurham/DP-/form-additions-and-petition-dl - - [DP-6] generate PDF and also some form additions - -commit e24ca7f13678a95b610cae79549792f39756afd0 (rob/DP-/petition-status, origin/DP-/petition-status) -Author: Michael Ashton -Date: Thu May 28 16:16:06 2020 -0400 - - default license state to nc, fix login text - -commit acfb106d37da87f6281d2e294c221dc9f5ee75c0 -Author: Colin Copeland -Date: Wed May 27 21:38:52 2020 -0400 - - fix frontend context - -commit 697caa54464ecfff5c40bbed8198e441358177a3 -Author: Colin Copeland -Date: Wed May 27 21:36:44 2020 -0400 - - remove FE dir - -commit e1ca5218df494ab73557159e18ca5f648881bb3b -Author: Colin Copeland -Date: Wed May 27 21:34:58 2020 -0400 - - combine .gitignore - -commit 96dabe368d2067e04938abb30909ed464d23d937 -Author: Colin Copeland -Date: Wed May 27 21:34:14 2020 -0400 - - combine dockerignore - -commit 0569494bb0837929e59af0328ed11ae5427c6396 -Author: Colin Copeland -Date: Wed May 27 21:33:05 2020 -0400 - - move to rood readme - -commit d3264c6581cd4c24b470365362ba93e29d80483b -Author: Colin Copeland -Date: Wed May 27 21:32:42 2020 -0400 - - move FE content to root readme - -commit 42b8dd9c2d37c9be905206fd112b048c83e457ad -Author: Colin Copeland -Date: Wed May 27 17:40:29 2020 -0400 - - update FRONTEND_BUILD_DIR to reference from root dir - -commit 268a254e7dfe3f0c7e9bb0a5312fb732743b6cef -Author: Colin Copeland -Date: Wed May 27 17:40:10 2020 -0400 - - move react app to base dir - -commit 3697bc8ddfe2be3471f9dcd24eb369284c817600 -Author: Colin Copeland -Date: Wed May 27 17:34:27 2020 -0400 - - add react build dirs to django's staticfiles and templates - -commit 8bddaa04fc704e5228bd4162341b9fbcef1d8241 -Author: Colin Copeland -Date: Wed May 27 17:33:49 2020 -0400 - - add django view to serve React app - -commit e2575a22a1823c5b0fa9cd620cdb523d53a587c2 -Author: Colin Copeland -Date: Wed May 27 17:33:25 2020 -0400 - - remove existing gulpfile/package.json - -commit 03e972a050df622a43b271fe3dc13aea02ea2543 -Author: Colin Copeland -Date: Wed May 27 17:02:28 2020 -0400 - - remove unused user modules - -commit ab0d27b121f22db51eda27c584c72b9131d5fe83 -Author: Colin Copeland -Date: Wed May 27 16:59:28 2020 -0400 - - remove user tests - -commit 5c161962eaa779d4f6175bd06eb4daef626edc7e -Author: Colin Copeland -Date: Wed May 27 16:52:05 2020 -0400 - - remove static files - -commit 7cf7aa796e42a9eb522c31f2018bd78df4e492d2 -Author: Colin Copeland -Date: Wed May 27 16:50:55 2020 -0400 - - remove django templates - -commit 84c6cf5567e39c70bd3f778df54de02f6929bdc3 -Author: Michael Ashton -Date: Wed May 27 14:26:04 2020 -0400 - - fe validation of petition inputs, successful pdf generation and view - -commit 9db4c5c493f83581eae0d4938baf4fe53211447e -Merge: 7321909 e3bd1a6 -Author: Michael Ashton -Date: Wed May 27 13:05:11 2020 -0400 - - Merge branch 'upgrade' into DP-/batch-form-additions - -commit 3fc1268ccae4f76598c9768b3806caf5f0194f64 -Author: Colin Copeland -Date: Wed May 27 13:03:05 2020 -0400 - - remove old django views - -commit 732190956e2f9368f980fa2f6a19586e435576e7 -Author: Michael Ashton -Date: Wed May 27 13:02:00 2020 -0400 - - validate petitoin form - -commit e3bd1a619ccc4c331014c80ef233805f3c579046 -Merge: 4c7e7dd 53ef56f -Author: Colin Copeland -Date: Wed May 27 12:51:04 2020 -0400 - - Merge pull request #121 from deardurham/DP-37-filtering - - [DP 37] filtering - -commit 4c7e7dd04fde047beae549b5e7854be8ff126b1c -Merge: 6beeeb4 c70754f -Author: Colin Copeland -Date: Wed May 27 12:49:45 2020 -0400 - - Merge pull request #117 from deardurham/DP-24/select-petition - - [DP-24] Select (static) agencies - -commit 53ef56f14a420444bad326dfaed72d738771ba59 -Author: Colin Copeland -Date: Wed May 27 12:48:19 2020 -0400 - - remove unused module - -commit c445d19016e52e7600f58e88345af38d029abeec -Author: Colin Copeland -Date: Wed May 27 12:47:24 2020 -0400 - - add SearchFilter and DjangoFilterBackend to ContactViewSet - -commit 8266a60e1de8d71f1c0e4e9615def3aabdf6f00c -Merge: 0fdea14 50524c5 -Author: Michael Ashton -Date: Wed May 27 12:28:04 2020 -0400 - - Merge branch 'DP-24/select-petition' into DP-/batch-form-additions - -commit c70754f26e47e9ec9b973c8dcf25607ff7de14b7 -Merge: 63946d9 6beeeb4 -Author: Colin Copeland -Date: Wed May 27 12:27:40 2020 -0400 - - Merge branch 'upgrade' into DP-24/select-petition - -commit 63946d930e0c451eddd663b7bb776c40fee9ee6f -Author: Colin Copeland -Date: Wed May 27 12:26:43 2020 -0400 - - fix petition attributes - -commit d6d4680e2b5a2b63ffab30813deb7b78642a3cb8 -Author: Colin Copeland -Date: Wed May 27 12:22:27 2020 -0400 - - re-add set* useStates to context - -commit 73542e4b287a76ce63c734af485bf557433b7218 -Author: Colin Copeland -Date: Wed May 27 12:22:04 2020 -0400 - - remove unused import - -commit a432d73aebac83d55329a3d66687fc398e1cfe78 -Author: Colin Copeland -Date: Wed May 27 12:21:58 2020 -0400 - - add closing curly brace - -commit 8555a35424c9f8d86fd9495c6dc08c9208a744dc -Author: Christopher Dixon -Date: Wed May 27 12:17:49 2020 -0400 - - Added filters to ContactViewSet - -commit 0fdea149b6b18d137df821cab351f86549dfc18d -Author: Michael Ashton -Date: Wed May 27 12:17:47 2020 -0400 - - add us_states constant, add license state input - -commit 1d95e762b3bcce3e09b46847f80d9a53248cf00b -Author: Colin Copeland -Date: Wed May 27 12:17:17 2020 -0400 - - Update frontend/src/components/elements/Badge/Badge.styled.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit f996ae3d58ef6d54a237d9ac713f4d4e6f6e7a98 -Author: Colin Copeland -Date: Wed May 27 12:17:01 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/PetitionListItem.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit 547619c4567e0214356d05db7f79827762a20e48 -Author: Colin Copeland -Date: Wed May 27 12:16:53 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/GenerationPage.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit fa0140bbe1cb77ae8d74ec7ad8a7dd78be392edd -Author: Colin Copeland -Date: Wed May 27 12:16:45 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/GenerationPage.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit c3a31367eff6d83615adeaf839c93c692322fb08 -Author: Colin Copeland -Date: Wed May 27 12:16:35 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/GenerationPage.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit b9cc0bff055ecb82525b4ed9e810c96fb563f59e -Author: Colin Copeland -Date: Wed May 27 12:16:10 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/GenerationPage.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit 9e5a464399d9902b54ee919479b8c30a773fd3b2 -Author: Colin Copeland -Date: Wed May 27 12:16:01 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/GenerationPage.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit 02f15186b6e3792be1699ff2ab7c00d044375c11 -Author: Colin Copeland -Date: Wed May 27 12:15:36 2020 -0400 - - Update frontend/src/components/pages/GenerationPage/GeneratePetitionModal/AgencyAutocomplete.js - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit 50524c510bd5dad0a1058bf6b84f53339a2e1fd7 -Author: Michael Ashton -Date: Wed May 27 10:41:45 2020 -0400 - - add close to generation modal - -commit dddf2a1d567642bccc1421990ee5ce7263fc6ef4 -Author: Michael Ashton -Date: Wed May 27 09:52:16 2020 -0400 - - switch lightgrey to greyScale - -commit 6beeeb41429392101f3d349a16930b850e5e8102 -Author: Michael Ashton -Date: Wed May 27 09:18:25 2020 -0400 - - remove frontend cl and superfluous text - -commit a4b4ed40cad86595e24a4298740196e795aa1081 -Merge: b479476 1e8de28 -Author: Michael Ashton -Date: Wed May 27 09:04:48 2020 -0400 - - Merge branch 'upgrade' of github.com:deardurham/dear-petition into upgrade - -commit 34e1d957f54357b587fb70aa0a25bfb1f1c95601 -Merge: 49eeeee 2f7737e -Author: Colin Copeland -Date: Tue May 26 22:19:16 2020 -0400 - - Merge branch 'DP-24/generate-page' into DP-24/select-petition - -commit 1e8de28dbb0f3750599a1a330ab5c4db7fcdad4f -Merge: 509d4c5 2f7737e -Author: Colin Copeland -Date: Tue May 26 22:09:40 2020 -0400 - - Merge pull request #118 from deardurham/DP-24/generate-page - - [DP 24] generate page - -commit 2f7737e8d259dbd600f23105e335e0615b23ff32 -Author: Colin Copeland -Date: Tue May 26 22:05:56 2020 -0400 - - return jurisdiction display value - -commit 0a7350700c4d355879cb40212537dfa807c35904 -Author: Colin Copeland -Date: Tue May 26 21:58:01 2020 -0400 - - update ciprs-reader to v0.0.16 - -commit 5767eac457cbc9f9f708c3b8180c46ea90a305a2 -Author: Colin Copeland -Date: Tue May 26 21:46:49 2020 -0400 - - add petition.type logger - -commit ecdd98ef51852aef62305a6998ddde301f77884f -Author: Colin Copeland -Date: Tue May 26 21:36:29 2020 -0400 - - fix serializer during initial migrations - -commit 3ef8699079ed70ff3c54cf183f79b986669874cc -Author: Colin Copeland -Date: Tue May 26 21:26:49 2020 -0400 - - set code to None since field supports null values - -commit bfacbdee78f4fd3f52226b67b7383a2d504771ea -Author: Colin Copeland -Date: Tue May 26 21:26:33 2020 -0400 - - fix api tests - -commit 8e95a7854935e305ec84278a0e994078ed6054f6 -Merge: 1e62828 509d4c5 -Author: Colin Copeland -Date: Tue May 26 21:13:53 2020 -0400 - - Merge branch 'upgrade' into DP-24/generate-page - -commit b4794763498a25e4d21b43cd03ac29e855358757 -Merge: f3f60de 509d4c5 -Author: Michael Ashton -Date: Tue May 26 18:10:52 2020 -0400 - - Merge branch 'upgrade' into DP-/auth-handshake - -commit 509d4c5b5be6892980e02b34bdebf6c8e12ec7a2 -Merge: e544614 bc22b8a -Author: Michael Ashton -Date: Tue May 26 18:10:18 2020 -0400 - - merge DP-/auth-revamp into upgrade - -commit bc22b8a2cedc3f27020f3ed72287c860a096f1ea -Author: Michael Ashton -Date: Tue May 26 18:06:41 2020 -0400 - - oy. - -commit 91c4f335e2287de1c25b28740f8b890f1fc37ec0 -Author: Michael Ashton -Date: Tue May 26 17:38:41 2020 -0400 - - updates failing tests - -commit eff61e531c23a477abfc4b86e8c68b99a950b4f1 -Author: Michael Ashton -Date: Tue May 26 17:28:07 2020 -0400 - - bail on JWTHttpOnlyCookieAuthentication.authenticate earlier - -commit 49eeeee40b845e91dc338163b7dd8e7dc81ad084 -Merge: 01feabe 93377f0 -Author: Colin Copeland -Date: Tue May 26 17:22:47 2020 -0400 - - Merge branch 'upgrade' into DP-24/select-petition - -commit 01feabe08ca74162f89755d331af3fdc340e8385 -Merge: 0fce609 f3f60de -Author: Colin Copeland -Date: Tue May 26 17:13:22 2020 -0400 - - Merge branch 'DP-/auth-handshake' into DP-24/select-petition - -commit 1e628288ca9f7dbfd730173ece5860a38494592a -Author: Michael Ashton -Date: Tue May 26 17:13:00 2020 -0400 - - generate page mvp - -commit b39124eb4e4be89ce213b0838afd408328814fbd -Merge: aaf41d3 e544614 -Author: Michael Ashton -Date: Tue May 26 16:13:54 2020 -0400 - - Merge branch 'upgrade' into DP-24/generate-page - -commit aaf41d3e17c55c7687843dd2f38b583eb78cdf92 -Author: Michael Ashton -Date: Tue May 26 16:13:29 2020 -0400 - - wip - -commit de93fec9c1ee84ebad1b63c626469f8b22eba9f4 -Merge: 98aefda f3f60de -Author: Michael Ashton -Date: Tue May 26 13:26:05 2020 -0400 - - Merge branch 'DP-/auth-handshake' into DP-24/generate-page - -commit f3f60decc50f49d217a2d6d81f033f146af54119 -Author: Michael Ashton -Date: Tue May 26 13:25:33 2020 -0400 - - double submit csrf token - -commit 98aefdaf62eb32babea3caca049e9309745bec9c -Author: Michael Ashton -Date: Tue May 26 11:22:12 2020 -0400 - - merge develop, merge migratoins - -commit 430898da10ef5237a4d09cb72aa26d8eb6d434f5 -Merge: c589fdc 19dd369 -Author: Michael Ashton -Date: Tue May 26 11:09:45 2020 -0400 - - Merge branch 'DP-/auth-handshake' into DP-24/generate-page - -commit c589fdc606e740c5d610b1fff2ad0ec93bff843e -Merge: 7e15f37 3222a12 -Author: Michael Ashton -Date: Tue May 26 11:02:51 2020 -0400 - - merge authrevamp - -commit 7e15f37d0eab5d5b91e6031eee4e31f0804d7204 -Author: Michael Ashton -Date: Tue May 26 11:01:44 2020 -0400 - - fixes a few styling items - -commit e54461485fa50339f4ce132e4f9eff4047203a8c -Merge: 93377f0 8055d19 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Tue May 26 10:18:23 2020 -0400 - - Merge pull request #114 from deardurham/DP-28-permissions - - DP-28 - -commit 00696a14c9fbf12c4b47f823c04257dbc88f5018 -Author: Michael Ashton -Date: Tue May 26 08:38:50 2020 -0400 - - snag a few updates from DP-/auth-handshake - -commit 0fce6094cf00edcad491f494eb696f21345318a4 -Author: Colin Copeland -Date: Mon May 25 16:18:02 2020 -0400 - - remove unused import - -commit 462a026d511e72a8ead3bc59644ee6ebb2b64f46 -Author: Colin Copeland -Date: Mon May 25 16:17:34 2020 -0400 - - fix styling around generate button - -commit 2c7c65c8af4e97afdbfc31fc4a19c89c038db8be -Author: Colin Copeland -Date: Mon May 25 16:16:45 2020 -0400 - - remove unused imports - -commit f6a27f73985adcbf48474eba4ea5a51ba87fe8c0 -Author: Colin Copeland -Date: Mon May 25 16:13:12 2020 -0400 - - autosuggest style improvements - -commit 60b09ecc8f1d9aaac58b2a00f98cec77cf7ace8f -Author: Colin Copeland -Date: Mon May 25 15:23:02 2020 -0400 - - store agencies in GenerationContext - -commit 112eec4570fd6b6f3dd561cd6b8593caf552c75b -Author: Colin Copeland -Date: Mon May 25 15:14:27 2020 -0400 - - fix removeAgency - -commit 10142f25375f755a4b603caf4a25202bde3ed0c3 -Author: Colin Copeland -Date: Mon May 25 15:07:51 2020 -0400 - - first pass at agency autocomplete - -commit 0634a106d5b6c40c0e36ae5474459a51d1ee3e28 -Author: Colin Copeland -Date: Mon May 25 13:58:42 2020 -0400 - - close modal with esc key - -commit a5416b9eaf003e895cdcc0681cbe1ec580ea9444 -Author: Colin Copeland -Date: Mon May 25 13:53:49 2020 -0400 - - add court/county - -commit 592859cfa630e03b8411ed7eb619bfd57132b1fd -Author: Colin Copeland -Date: Sun May 24 22:37:17 2020 -0400 - - add generationpagemodal - -commit 3404b453dc032a79b03a17e5da0be08bdbbe7f38 -Author: Colin Copeland -Date: Sun May 24 22:37:03 2020 -0400 - - remove unused import - -commit ecb54f6c2b9097e8454ee411ac8d3df773125f8c -Author: Colin Copeland -Date: Sun May 24 22:36:37 2020 -0400 - - fix lint error - -commit 8055d195d0956613ba85b9b8def7e28c5cc9cf36 -Author: Christopher Dixon -Date: Sun May 24 17:10:45 2020 -0400 - - updated queryset and added test. - -commit e2e3b367413e91549a23a2a81ae20fdf354bcd3e -Author: Christopher Dixon -Date: Sun May 24 15:58:22 2020 -0400 - - Filtering on BatchViewSet. User restricted to viewing batches they have created unless they are superusers. - -commit 3ae52cfd1c0727832c211636f8063643ff51d14c -Author: Colin Copeland -Date: Sun May 24 15:43:26 2020 -0400 - - add GenerationContext - -commit 93377f0f5f3efff271734e7b4e7d6b6cd6b6d06d -Author: Colin Copeland -Date: Sun May 24 14:41:16 2020 -0400 - - update ciprs record to v0.0.15 - -commit 2f18f09be0759dd8160ff2ae41e9cbe3c0a2bc6b -Merge: 1ef0b23 bef10ed -Author: Colin Copeland -Date: Sun May 24 14:33:21 2020 -0400 - - Merge pull request #113 from deardurham/DP-36 - - [DP-36] - -commit bef10ed09889532bcc55848ce6e1180345d24cce -Author: Christopher Dixon -Date: Sat May 23 23:00:12 2020 -0400 - - updated comment - -commit 25604b80f6b1809878a9ed9e57bb6ff7aedf9180 -Author: Christopher Dixon -Date: Sat May 23 22:59:01 2020 -0400 - - added petition_date utility function - -commit e35127547fb493b00711d4cbb2a6b2907c4a0545 -Author: Christopher Dixon -Date: Sat May 23 22:46:46 2020 -0400 - - prepend DISPOSITION_METHODS in constants.py with DISMISSED - -commit dea980cd4b1d3e3d39440c2fbceb65b953d2dc33 -Author: Christopher Dixon -Date: Sat May 23 02:06:32 2020 -0400 - - tests for map_offenses - -commit 96322ccff41f8099de0f7ed068f64463416fbc97 -Author: Christopher Dixon -Date: Sat May 23 01:45:26 2020 -0400 - - first map_offenses test passes - -commit 2194ff1ea6b31335143ad2d220246ba382956241 -Author: Christopher Dixon -Date: Sat May 23 00:56:21 2020 -0400 - - Remove test_batch_get_offenses - -commit bca43ecc395b4fd4c701828aa9f41a1c390b7b5e -Author: Christopher Dixon -Date: Sat May 23 00:50:59 2020 -0400 - - map_offenses defintion now has body logic - -commit 19dd369075208855e67eab2c3aabd766434b949d -Author: Michael Ashton -Date: Fri May 22 17:27:22 2020 -0400 - - auth handshake complete with logout, includes auth-revamp - -commit 1ef0b23280a1e63774f718ede61af506ca75df76 -Merge: 15693f5 b168a85 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Fri May 22 14:02:52 2020 -0400 - - Merge pull request #112 from deardurham/DP-35 - - [DP-35] - -commit b168a85cbf83254ddc3a32f072488e9c193e0284 -Author: Christopher Dixon -Date: Fri May 22 13:59:56 2020 -0400 - - add pytest.fixture decorator to dismissed_offense defintion - -commit 435581ab4d8306bccc200db30f07b523ae646c2f -Author: Christopher Dixon -Date: Fri May 22 13:56:11 2020 -0400 - - corrected typo - -commit 8aea6fd8e5adea4aaff86185053b7df9ca5d9552 -Merge: 59e8935 15693f5 -Author: Christopher Dixon -Date: Fri May 22 13:46:48 2020 -0400 - - merged upgrade into this branch - -commit 59e89356bebbc48d65531e1eab56bebdec257641 -Author: Christopher Dixon -Date: Fri May 22 13:21:42 2020 -0400 - - fix migration conflicts - -commit 15693f5668e8532e2ce18570b85f2068fc7f1f31 -Merge: 4bab73a 166c1fa -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Fri May 22 13:07:40 2020 -0400 - - Merge pull request #111 from deardurham/DP-30/dismissed-petition - - [DP-30] Dismissed petition support - -commit f0700e028f46e9325d17206d60370297a29bf9a6 -Author: Christopher Dixon -Date: Fri May 22 10:40:18 2020 -0400 - - fix test for SNN - -commit b3e2ec0ca14d0fed5991da4e09a646ff360de746 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Fri May 22 10:29:24 2020 -0400 - - Update dear_petition/petition/export/mapper.py - - Co-authored-by: Colin Copeland - -commit 3222a121ef7a5bda02ee78debdee317e8064b60a -Author: Michael Ashton -Date: Fri May 22 10:14:24 2020 -0400 - - slight refactor for clarity - -commit c84341dd4099678f5a28c05ee2b07787bd2ecba1 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Fri May 22 00:17:04 2020 -0400 - - start. agencies for loop at 1 - -commit 166c1fa6c31dedbe4dd305e3e30977c0fc45368b -Author: Colin Copeland -Date: Thu May 21 21:41:34 2020 -0400 - - remove failing assert that will randomly fail based on CIPRSRecordFactory county value - -commit 05796a30b38d910bd33bc9e2646b1c9a1233edc1 -Author: Michael Ashton -Date: Thu May 21 17:36:54 2020 -0400 - - add token delete for logout - -commit f5cd4a362c8466644dd2a37234d3ccedf80e5e77 -Author: Michael Ashton -Date: Thu May 21 16:55:01 2020 -0400 - - cookie-based jwt authentication working, including CSRF protection - -commit 04b29d1243cf076d11fe7993dcb5731bd7b397b9 -Author: Christopher Dixon -Date: Thu May 21 15:42:10 2020 -0400 - - revisions based upon colins review - -commit cf27f57d8f87e9574c4540e09aa425ebee298406 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Thu May 21 14:24:30 2020 -0400 - - use county and jurisdiction which is already set on petition model. - -commit 0d30798973291a5d478100f7b356355002d1a218 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Thu May 21 14:21:35 2020 -0400 - - Update dear_petition/petition/api/serializers.py - - Co-authored-by: Colin Copeland - -commit ad065f8d3f793a4be000090e7457b2f18fc84af5 -Author: Christopher Dixon -Date: Thu May 21 13:53:53 2020 -0400 - - Removed test around map_dict defintion (deleted). finished updating mapper and test_mapper. SSN is not rendering on petition although data[SSN] is correct. - -commit 96345352d6e44123278d19cb38b9c2e7f1aaaea5 -Author: Christopher Dixon -Date: Thu May 21 13:09:15 2020 -0400 - - Added custom migrations for migrating contact.state to use choices. - -commit 84906077e386c3771b100d11dec1dfb00be5da05 -Merge: 7ccc976 4bab73a -Author: Christopher Dixon -Date: Thu May 21 12:25:39 2020 -0400 - - Added Django-LocalFlavor to project, merged in upgrade branch - -commit 4bab73a85b5e7df2d32a6117718e638f070562ad -Merge: f2a2b5c 2909ae7 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Thu May 21 11:13:41 2020 -0400 - - Merge pull request #110 from deardurham/DP-34/map-petitioner - - [DP 34/map petitioner] - -commit 19be89f8951e8bfda45582858da6ecfa49415a85 -Author: Colin Copeland -Date: Wed May 20 16:25:15 2020 -0400 - - demonstrate get_offense_records - -commit 73ea09ef2d1e4f35d3aef74b3ec6ee9d6aac5647 -Author: Colin Copeland -Date: Wed May 20 16:24:58 2020 -0400 - - don't die if code key doesn't exist - -commit b6c91444ab3cbcddf637fab9f06351e1319b49f4 -Author: Colin Copeland -Date: Wed May 20 15:57:49 2020 -0400 - - add Petition.get_offense_records helper - -commit e5ea8e9352da64f6f25df7ed2871d323bfbd1f6d -Author: Colin Copeland -Date: Wed May 20 15:37:36 2020 -0400 - - create petitions during etl - -commit c94c7ab9c73d170cb8300e63d253f87f44830977 -Author: Colin Copeland -Date: Wed May 20 15:21:15 2020 -0400 - - add many test - -commit 7aacbd0476d8d9d87a657a8370246510dcc21f7f -Author: Colin Copeland -Date: Wed May 20 15:04:35 2020 -0400 - - add identify_distinct_petitions - -commit 2909ae7f3858238e95a3b5397b3880b628aade8f -Author: Christopher Dixon -Date: Wed May 20 14:53:57 2020 -0400 - - changes based upon colin's review - -commit 7ccc9761398b08f6e841578c4cd2f051544f0177 -Author: Christopher Dixon -Date: Wed May 20 14:08:58 2020 -0400 - - updated map_attorney defintion. - -commit 166c3674a57413f72eb47e2309c651dd562b9cea -Author: Christopher Dixon -Date: Wed May 20 12:00:42 2020 -0400 - - map-agencies code logic and tests - -commit 058101df6a08c79ec4e260cf35331f4ef94b5d9e -Author: Christopher Dixon -Date: Wed May 20 02:04:57 2020 -0400 - - map_agencies code logic is there. Now need to add test. - -commit 48ad5404df0666f7721e878bbcfef55fe18f0723 -Author: Christopher Dixon -Date: Wed May 20 01:46:48 2020 -0400 - - updated map_petitioner based upon findings in DP-35 - -commit cc23ab059b29bf301b365d5b9eb9910b1f893a7d -Author: Christopher Dixon -Date: Wed May 20 01:44:12 2020 -0400 - - updated map_petitioner and map_attorney, added test. - -commit d0ec3e522bfb155ad76999178a291cd9ef98d18e -Author: Christopher Dixon -Date: Tue May 19 20:07:07 2020 -0400 - - Added code for map_petitioner definition along with associated test. - -commit f4b9078d6c69aff879303ce0ff74f90830812340 -Author: Colin Copeland -Date: Tue May 19 22:34:50 2020 -0400 - - filter by jurisdiction - -commit 1c0f032023f0739bee608648af19493e3de30377 -Author: Colin Copeland -Date: Tue May 19 22:09:31 2020 -0400 - - add verdict and plea fields - -commit 3907e36af5c930fb51e447ca195f56fa97de1df8 -Author: Colin Copeland -Date: Tue May 19 22:09:02 2020 -0400 - - add petition.types package - -commit 9bedc97a94b0bde8c14976d628de45f5e48e12ad -Author: Christopher Dixon -Date: Tue May 19 20:07:07 2020 -0400 - - Added code for map_petitioner definition along with associated test. - -commit f2a2b5c0ccf8113fed673c86cfaa7536532d835e -Merge: 94f7288 4f09e6d -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Tue May 19 17:47:20 2020 -0400 - - Merge pull request #109 from deardurham/DP-6/export-package - - [DP-6] Export package - -commit 4f09e6d81b49a7b39658fc556913f42809ecf446 -Author: Christopher Dixon -Date: Tue May 19 17:08:21 2020 -0400 - - renamed buffer variable to genetered_petition_pdf - -commit 2ad1a2488b361d95fe9c2fc56e3047517d1640d0 -Merge: 2f11b80 94f7288 -Author: Christopher Dixon -Date: Tue May 19 16:40:04 2020 -0400 - - Merge branch 'upgrade' of github.com:deardurham/dear-petition into DP-6/export-package - -commit 94f72883baa917fa481ebd511501a01634a1315e -Merge: 10c03a1 932dcc5 -Author: Colin Copeland -Date: Tue May 19 16:39:23 2020 -0400 - - Merge pull request #108 from deardurham/DP-5/etl - - [DP-5] Add ETL and support /api/batch/ POST - -commit 932dcc5cd7ad7741e7b6c3fdc343b31c7199175b -Author: Christopher Dixon -Date: Tue May 19 16:37:21 2020 -0400 - - Overridden __init__ method on GeneratePetitionSerializer in order to initialize a petition's choices. - -commit 2f11b8040817d22b50c54fe323444c246b29f7da -Author: Colin Copeland -Date: Mon May 18 21:25:55 2020 -0400 - - temp fix for tests - -commit 3e1d451c7a1fd6fdcd117c3ba428874c0ee088c7 -Author: Colin Copeland -Date: Mon May 18 18:05:17 2020 -0400 - - add annotations support - -commit dbc7e1d8696a574c39f5769961c8fd47a9c839cd -Author: Colin Copeland -Date: Mon May 18 17:54:24 2020 -0400 - - simplify imports - -commit e397e372a349b99b20b6ee49826b291d8e04ebb9 -Author: Colin Copeland -Date: Mon May 18 17:45:33 2020 -0400 - - first pass at template annotation support - -commit eaadbb81cd5a29f39a5c87adc5a6cea702d4041b -Author: Colin Copeland -Date: Mon May 18 09:38:00 2020 -0400 - - disable code that is now broken - -commit 2d070d1aa6c19336f9892e56bbd60796f4cfdf21 -Author: Colin Copeland -Date: Mon May 18 09:37:46 2020 -0400 - - stub generate_petition_pdf - -commit d14bb242bd218679c2256c01f23e24605edab653 -Author: Colin Copeland -Date: Sun May 17 21:49:52 2020 -0400 - - simplify test - -commit 169d72f17dc0249f42305c10385fd93e75a6f955 -Author: Colin Copeland -Date: Sun May 17 15:34:00 2020 -0400 - - fix test name - -commit 029a99227e0599340ccceecc795b36b149bfc808 -Author: Colin Copeland -Date: Sun May 17 15:33:08 2020 -0400 - - first pass at export package - -commit e985b10b1b84eb2bd04ee968ce8944649dfa8e81 -Author: Colin Copeland -Date: Sun May 17 14:01:37 2020 -0400 - - fix imports - -commit 7c97a62539dca0ecb52aa2f2f1d093b6edfabcbe -Author: Colin Copeland -Date: Sun May 17 14:01:29 2020 -0400 - - move test models into ETL - -commit 38e4c2d98730da264083f1a6f8d4395bf5b579a4 -Author: Colin Copeland -Date: Sun May 17 13:56:16 2020 -0400 - - stub basic etl tests - -commit 84c51a05f61695083cd7de48aece271e9f57e759 -Author: Colin Copeland -Date: Sun May 17 13:54:14 2020 -0400 - - test post with single and multiple files - -commit 5674a24c3ef3e5e26b2d1478def552b151f20e48 -Author: Colin Copeland -Date: Fri May 15 09:11:56 2020 -0400 - - fix tests - -commit 952ecffa8bc5576951c1ac41bbca4ba0c0937b45 -Author: Colin Copeland -Date: Thu May 14 17:52:36 2020 -0400 - - add batch POST functionality - - Co-authored-by: Chris Dixon - -commit 3813b36881221df6c340730357a0a46ce06053b8 -Author: Colin Copeland -Date: Thu May 14 15:06:45 2020 -0400 - - ignore local node_module dirs - -commit b27f0389b46c40f3461d54296edb29eaf0c55066 -Author: Colin Copeland -Date: Thu May 14 15:06:19 2020 -0400 - - move conftest up a dir - -commit 9b35534a68731e21ab35d678aa8fabe58b0af3b1 -Author: Colin Copeland -Date: Thu May 14 14:34:50 2020 -0400 - - remove unused module - -commit 62ae7123f0dbc53ff0d13743571a746ce1354d32 -Author: Colin Copeland -Date: Thu May 14 14:32:12 2020 -0400 - - use etl in form - -commit a81c4c8cd86ae51b0783e296ef72c7e64782a966 -Author: Colin Copeland -Date: Thu May 14 14:31:48 2020 -0400 - - add etl package - -commit 10c03a1bf5b9df35ce489e67bdac866209c32256 -Merge: 6d44662 39cd56a -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Wed May 13 14:33:14 2020 -0400 - - Merge pull request #107 from deardurham/dp-30-petition-drf-endponit - - [DP-30] Part 1: Petition DRF endponit - -commit 6d446629191fe121711ec1647c7c34fb47e2818e -Merge: 3508e4e 078b90e -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Wed May 13 13:13:17 2020 -0400 - - Merge pull request #105 from deardurham/dp-3-userauth - - [DP-3] API JWT Authentication - -commit 078b90ed865b97dd7d94d5cb8e9354df45c32d8e -Merge: 99f64f2 eaaddd3 -Author: Christopher Dixon -Date: Wed May 13 13:09:43 2020 -0400 - - Resolved merge conflicts - -commit 99f64f2c0af89ee550ef9cea29d6da83aea54570 -Author: Christopher Dixon -Date: Wed May 13 13:08:09 2020 -0400 - - test - -commit 39cd56a7fd061bfa19ab8267be3de4532245145d -Author: Colin Copeland -Date: Wed May 13 11:21:35 2020 -0400 - - update reqs - -commit f2fb599e3d1e7ebf5b95813a61f5e2c1a5169b13 -Author: Colin Copeland -Date: Wed May 13 11:07:30 2020 -0400 - - fix tests - -commit 7daa2351e5671885a3421245e4f0190cd0cdebee -Merge: 2a96a74 eaaddd3 -Author: Colin Copeland -Date: Wed May 13 10:54:45 2020 -0400 - - Merge branch 'dp-3-userauth' into dp-30-petition-drf-endponit - -commit eaaddd3115beb3afac67d99253694fdb5fbc9aad -Author: Colin Copeland -Date: Wed May 13 10:47:39 2020 -0400 - - propsed fixes to tests - -commit 3508e4ee5f55ae9eae1ad08250f80331a7dedfb5 -Merge: 0bd7af9 9294831 -Author: Colin Copeland -Date: Wed May 13 09:57:52 2020 -0400 - - Merge pull request #106 from deardurham/DP-24/generate-petition - - [DP-24] Petition generation page - -commit 0bd7af99d3daff43bcba5550b88f3913eec6dd3b -Merge: 7bcba20 01d8f5b -Author: Colin Copeland -Date: Wed May 13 09:56:38 2020 -0400 - - Merge pull request #92 from deardurham/TSC-100/bootstrap-frontend - - [TSC 100] bootstrap frontend - -commit 9294831a2dbe9e3629f37f2ba3835a4ca0a1596f -Author: Colin Copeland -Date: Wed May 13 09:50:03 2020 -0400 - - style petition list page - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit cb9ea3afc6be8073615e839d3bceff237232447f -Author: Christopher Dixon -Date: Tue May 12 01:07:02 2020 -0400 - - Commented out CIPRSRecord test. Meet to discuss remaining test for batch method before moving onto multi-upload ticket. - -commit df3f007e6e328c8b6a04b065546e52f2a93e6b77 -Author: Christopher Dixon -Date: Mon May 11 14:22:14 2020 -0400 - - successfully now testing permissioned routes (just first test). Now adding more. - -commit 17de9abb89ecc9557d945ee1b7c28f45f05bda1d -Author: Colin Copeland -Date: Sat May 9 15:42:24 2020 -0400 - - pass at styling petition list - -commit bd333d5a5a6320c68a3510366e16335831bc4df2 -Author: Colin Copeland -Date: Sat May 9 14:45:52 2020 -0400 - - missed merge change - -commit d6c12d2b21627be416bbfebb6cd06a62e732dd66 -Merge: aca6bde 01d8f5b -Author: Colin Copeland -Date: Sat May 9 14:44:31 2020 -0400 - - Merge branch 'TSC-100/bootstrap-frontend' into DP-24/generate-petition - -commit 2a96a74a05983cbb2536943459e1f08727120e42 -Author: Colin Copeland -Date: Thu May 7 21:38:01 2020 -0400 - - use genericviewset; use validate_* methods to load model objects - -commit 7a44c4699a70053632473f5060c7386c903d71e9 -Author: Colin Copeland -Date: Thu May 7 17:10:19 2020 -0400 - - first pass at petition drf endponit - - Co-authored-by: Chris Dixon - -commit 7e6e6877bae2ebb3eec62f2170d54b77c07b42c9 -Author: Colin Copeland -Date: Thu May 7 17:08:26 2020 -0400 - - Add pks to serializers; add default page size - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - Co-authored-by: Chris Dixon - -commit 01d8f5b734c69d76aebb5fcaa7f03d89acb8a951 -Author: Michael Ashton -Date: Thu May 7 14:59:34 2020 -0400 - - add extra layer of dup protection - -commit d1c86414fc7ec3ea5f13fd1a3e07a6b3d10b60a7 -Author: Michael Ashton -Date: Thu May 7 14:42:52 2020 -0400 - - javscript Set enforces uniqueness of file in list - -commit aca6bdedb66c3a22881190f64b14b642ced16613 -Author: Colin Copeland -Date: Wed May 6 16:56:35 2020 -0400 - - First pass at petition generation page - - Co-authored-by: Michael Ashton <52928110+michael-caktus@users.noreply.github.com> - -commit 413372020d2dceca3560f1767e815ca9b36bac3d -Merge: 07dc361 48f5693 -Author: Michael Ashton -Date: Tue May 5 14:47:49 2020 -0400 - - Merge branch 'TSC-100/bootstrap-frontend' of github.com:deardurham/dear-petition into TSC-100/bootstrap-frontend - -commit 48f5693ef8ae93820ab8dc0d11b605ce40e8a20f -Merge: 72185e5 7bcba20 -Author: Colin Copeland -Date: Tue May 5 14:47:29 2020 -0400 - - Merge branch 'upgrade' into TSC-100/bootstrap-frontend - -commit 07dc3619053c4daf89c32a0602d5d36cf94b5dae -Merge: 61ba141 72185e5 -Author: Michael Ashton -Date: Tue May 5 14:47:19 2020 -0400 - - Merge branch 'TSC-100/bootstrap-frontend' of github.com:deardurham/dear-petition into TSC-100/bootstrap-frontend - -commit 72185e54b94bb126030098b28dfa0118f06a5875 -Merge: dabff7d 2ce6b0d -Author: Colin Copeland -Date: Tue May 5 14:46:52 2020 -0400 - - Merge pull request #95 from deardurham/TSC-103/DnD-feature - - [TSC 103] Drag and Drop feature - -commit dabff7dee54f6681d5e205354b511caaef2171e7 -Merge: b436442 e890ece -Author: Colin Copeland -Date: Tue May 5 14:45:52 2020 -0400 - - Merge pull request #93 from deardurham/TSC-102/frontend-layout-and-routing - - [TSC-102] frontend layout and routing - -commit 61ba141aef7a64e7a903cbff09fbedab86bd72e3 -Merge: f2aad8e 2ce6b0d -Author: Michael Ashton -Date: Tue May 5 14:45:41 2020 -0400 - - Merge branch 'TSC-103/DnD-feature' into TSC-100/bootstrap-frontend - -commit b436442a0f8934871f948abfc9e95e65621c07d7 -Author: Colin Copeland -Date: Tue May 5 14:43:47 2020 -0400 - - fix frontend mount - -commit f2aad8ed26a6e2a95e50d6dd849fb8d439912e1c -Merge: 96d8275 e890ece -Author: Michael Ashton -Date: Tue May 5 14:43:14 2020 -0400 - - Merge branch 'TSC-102/frontend-layout-and-routing' into TSC-100/bootstrap-frontend - -commit 67739542d84380c42ad0391883f37402b91051a8 -Author: Christopher Dixon -Date: Mon May 4 22:36:17 2020 -0400 - - Added Offense & OffenseRecord serializers and viewsets. Added read_only nesting of offense_records and offenses on offenses, and ciprsrecords respectively - -commit 548366c9dcf7f3ab5d354dc4352d0a519eb9c9c5 -Author: Christopher Dixon -Date: Mon May 4 18:02:09 2020 -0400 - - rm test_serializers.py, have not started on this file yet and didn't want to check the file in. - -commit 0617aa8a2104c22ed0dd7c0f1a69ab745dc05349 -Author: Christopher Dixon -Date: Mon May 4 18:01:09 2020 -0400 - - Added test_unauthorized tests to TestBatchViewSet and TestCIPRSRecordViewSet - -commit e1227d5bae0a66724ecd877f9a6e0955fce4eefa -Author: Christopher Dixon -Date: Mon May 4 11:47:25 2020 -0400 - - updated docs - -commit 1a6a4502c7f6139ddbca34196f176906aa4f561b -Author: Christopher Dixon -Date: Mon May 4 11:39:33 2020 -0400 - - ACCESS_TOKEN_LIFETIME now set to 6 hours. REFRESH_TOKEN_LIFETIME has been set to 2 weeks. After 2 weeks - the user will be prompted to log back in with their username (email) and password to receive a new access and refresh token. - -commit fb9406856cca349fffbf26d4c1c41a622f6c6df9 -Author: Christopher Dixon -Date: Sat May 2 01:21:51 2020 -0400 - - added api.rst to docs - -commit 524636d028c3612118ed030c8cab62b79ecb1376 -Author: Christopher Dixon -Date: Sat May 2 00:50:49 2020 -0400 - - Users using api are now required to request a jwt access token - -commit dff5e89cd6e3c8a2f933b7c1227d85442d39c4df -Author: Christopher Dixon -Date: Sat May 2 00:04:54 2020 -0400 - - Add djangorestframework-simplejwt to project - -commit 91cc69ba91b7ac450fb427ecbde539f9b144dd08 -Merge: ff6907c 7bcba20 -Author: Christopher Dixon -Date: Fri May 1 23:33:13 2020 -0400 - - Merged first pass at api pr with upgrade branch & resolved conflicts - -commit b2829f279ceeb16da0e3c6472c44cd7ee6e80193 -Merge: 96d8275 2c00d22 -Author: Colin Copeland -Date: Fri May 1 11:01:33 2020 -0400 - - Merge branch 'upgrade' into TSC-100/bootstrap-frontend - -commit 7bcba20d6062ca4ab539ad39cdafbd1507e5709e -Merge: c13b896 bcb2d64 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Fri May 1 10:42:10 2020 -0400 - - Merge pull request #104 from deardurham/DP-21 - - DP-21 - -commit bcb2d64b45f8dc45b90be02212834d8240e2e174 -Author: Christopher Dixon -Date: Thu Apr 30 17:03:54 2020 -0400 - - small changes based upon dmitriy's review - -commit b28928aa3004003a0cc91dab67f5d16f993e91b4 -Author: Christopher Dixon -Date: Thu Apr 30 12:56:31 2020 -0400 - - cleanup - -commit c13b8964ae4b7d29d310e8fd777c86876102f222 -Merge: 2c00d22 85edda0 -Author: Colin Copeland -Date: Thu Apr 30 10:49:56 2020 -0400 - - Merge pull request #103 from deardurham/DP-20/fix-prod-migrate - - [DP-20] Fix prod migrate - -commit b53c790b9b924fea235c79aa8ae80c8d50aa0e18 -Author: Christopher Dixon -Date: Wed Apr 29 14:18:03 2020 -0400 - - updated test. - -commit b60aad09833300ef8ccddc1d9b4fb9d5c83339c6 -Author: Christopher Dixon -Date: Wed Apr 29 12:36:45 2020 -0400 - - when refresh_record_from_data is run, remove existing offense records from db and re-create them. - -commit 96d8275dd58c8f8459ee2abccf318a5cd40e2d56 -Author: Michael Ashton -Date: Tue Apr 28 11:46:15 2020 -0400 - - remove docker instructions from siloed frontend readme - -commit 29b4bdbb8207668771f95ae65d92e31741517042 -Author: Michael Ashton -Date: Tue Apr 28 11:44:30 2020 -0400 - - adds react app to local.yml - -commit c547970d946e7ac2d0487f9257d588d1309bc157 -Merge: 31c444a 2c00d22 -Author: Christopher Dixon -Date: Mon Apr 27 19:51:26 2020 -0400 - - Merge branch 'upgrade' of github.com:deardurham/dear-petition into DP-21 - -commit 31c444a01bccaa6f21e41d8289dc37308114cd60 -Author: Christopher Dixon -Date: Mon Apr 27 19:45:26 2020 -0400 - - Updated refresh_record_from_data method. If for some reason ciprs_record.data has an empty 'Offense Record' dictionary when called and their are existing offense and offense_record instances, then we delete those instances because they are no longer reflected in the ciprs_record's raw data field (data). Also updated test in test_models to make sure offense and offense_record isntances are created when refresh_record_from_data is run. - -commit 85edda09088e6cd7ccae3a366e9d7d9255435a20 -Author: Colin Copeland -Date: Mon Apr 27 15:24:24 2020 -0400 - - remove use of DATETIME_FORMAT - -commit 83ffe5d10518fe0217ff4a090187e98866171a58 -Author: Colin Copeland -Date: Sat Apr 25 14:39:32 2020 -0400 - - use dateutil to parse dates - -commit c37af5dbe1fd77cb4928e7a2f8cd0e598dc49246 -Author: Colin Copeland -Date: Sat Apr 25 14:39:14 2020 -0400 - - exclude records that don't have data - -commit 7d99623e47992cb4ef93f6d43004aafbd507c265 -Author: Christopher Dixon -Date: Sat Apr 25 23:18:58 2020 -0400 - - First pass at updating test_refresh_record_from_data - -commit 2c00d22249aa7947debefafc3764edabc9ea1785 -Author: Christopher Dixon -Date: Sat Apr 25 21:39:06 2020 -0400 - - Fix conflicting migrations when comment pr was pulled into upgrade branch. Moved comment migrations to 21-23 - -commit cf993dcc69318d09082458bd8bdb0e3bab8d09a2 -Author: Christopher Dixon -Date: Sat Apr 25 21:39:06 2020 -0400 - - Fix conflicting migrations when comment pr was pulled into upgrade branch. Moved comment migrations to 21-23 - -commit 7777996f7e437acca5d29c3a92748b9ff97e6cb3 -Author: Christopher Dixon -Date: Sat Apr 25 20:50:00 2020 -0400 - - Removed code around offense/offenserecord creation from UploadFileForm and placed that code in refresh_record_from_data method on the CIPRSRecord class - -commit 706aa81c7f72bd5784b351bcf5dd874eb956698e -Merge: 5233a92 1dc810f -Author: Colin Copeland -Date: Sat Apr 25 14:50:37 2020 -0400 - - Merge pull request #102 from deardurham/setup-reviewapps - - Setup Review Apps - -commit 1dc810f2f2e0574652998d2510766bfa6a6747e9 -Author: Colin Copeland -Date: Sat Apr 25 14:43:58 2020 -0400 - - don't automatically use mailgun - -commit b6d258aa3d88c5c7d030a9677c74b00fb76e0893 -Merge: 95e9be0 5233a92 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Fri Apr 24 18:57:36 2020 -0400 - - Merge branch 'master' into upgrade - -commit 2ce6b0d282e971b2637254a58c5d6f9c1bcf34ae -Author: Michael Ashton -Date: Fri Apr 24 09:52:14 2020 -0400 - - clear out DOM input value on remove - -commit 5233a9283d40abedfa9a8c0a942eddcaf839dab5 -Merge: 43eb0ee 6a093cb -Author: Colin Copeland -Date: Thu Apr 23 12:52:04 2020 -0400 - - Merge pull request #90 from deardurham/comments_section - - Added comments section - -commit b0da514c8ae57bd4dd032cb9a8f851d65a4c89be -Author: Colin Copeland -Date: Thu Apr 23 12:43:23 2020 -0400 - - make executable - -commit 95e9be0516c14bba522ebb19d9c8569c42fb5b27 -Merge: 394f8c2 da7265e -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Wed Apr 22 13:45:12 2020 -0400 - - Merge pull request #94 from deardurham/DIS-1351-update-importexport - - [DIS-1351] Update importer/exporter code to use data from models - -commit da7265e93b13b3787358955baa1f31037f616947 -Author: Christopher Dixon -Date: Wed Apr 22 13:06:21 2020 -0400 - - updated test_get_petition_offenses in order account for not knowing the order of offenses being in petition_offenses - -commit 9c411889e17ba4098d97c40c6ab726e5dbdb7af3 -Author: Michael Ashton -Date: Tue Apr 21 16:42:46 2020 -0400 - - remove dockerfile comments - -commit 7a20d84d5ae7f8eecee62aaa2ccd258eee9cc0d3 -Author: Michael Ashton -Date: Tue Apr 21 16:41:21 2020 -0400 - - add frontend readme and docker setup - -commit 6c772ef58fa245f27c0e0cb1ec0fcd79fe4259ff -Author: Christopher Dixon -Date: Tue Apr 21 15:47:24 2020 -0400 - - updated test - -commit a7659a200a04706fa45b72c828e84a6a98191af3 -Author: Christopher Dixon -Date: Mon Apr 20 16:49:52 2020 -0400 - - if datetimes in get_petition_offenses are not truthy then pass empty strings for those values. - -commit bc2808559dc46cfab9ccd3f10f0c72f4cf15847f -Author: Christopher Dixon -Date: Mon Apr 20 16:37:59 2020 -0400 - - makes last line of postdeploy.sh file empty - -commit b089a5a84f8f2fd91a235b9f0f015a5b257097be -Merge: f3be984 1fc1bf5 -Author: Christopher Dixon -Date: Mon Apr 20 16:31:12 2020 -0400 - - Merge branch 'setup-reviewapps' of github.com:deardurham/dear-petition into DIS-1351-update-importexport - -commit 1fc1bf50f9cfb0dee589cced7022f5839ba511de -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Mon Apr 20 16:14:25 2020 -0400 - - postdeploy runs on review env only - -commit 394f8c2014e30177c600a8ecbeeeba13c35e579a -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Mon Apr 20 16:00:02 2020 -0400 - - missing curly braces in app.json - -commit a8f6395f75a925b88a76c2a69f2e416f1d8d698e -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Mon Apr 20 15:40:29 2020 -0400 - - postdeploy script for review env only - -commit f3be98438cb2fe1a126a330386638eb141a0fb61 -Author: Christopher Dixon -Date: Mon Apr 20 13:36:09 2020 -0400 - - Added DATE_FORMAT to constants.py and updated get_petition_offenses to show arrest date, offense_date, and disposition_date on petition - -commit 926194f3a8d0a7de37b6daa317fec642d835a100 -Merge: 7fe141c d267240 -Author: Christopher Dixon -Date: Mon Apr 20 13:03:14 2020 -0400 - - Merge branch 'setup-reviewapps' of github.com:deardurham/dear-petition into DIS-1351-update-importexport - -commit d2672405413206b294b58f44e2f8ae50654ee14b -Author: Christopher Dixon -Date: Mon Apr 20 12:56:45 2020 -0400 - - creates a user in db when review app is spun up. - -commit 7fe141cd4f8f39c1b2920773aecee784a8ac0a99 -Author: Christopher Dixon -Date: Mon Apr 20 12:47:08 2020 -0400 - - Added a test for get_petition_offenses (batch method). Added Offense and OffenseRecord to factory. Updated code in forms.py - -commit ff6907cbe0a9f9f1680819e80e473ef8c5705118 -Author: George Helman -Date: Sun Apr 19 12:47:16 2020 -0400 - - First pass at DRF API - -commit 6a093cb997606db879bdbcef9e1245ca4919e28d -Author: Colin Copeland -Date: Fri Apr 17 22:13:16 2020 -0400 - - add more admin fields - -commit 16a9650c2d9f4a250cddce277a317a6dd355c74e -Author: Colin Copeland -Date: Fri Apr 17 22:10:20 2020 -0400 - - simplify view - -commit 7bb5a06ee26f4eb87fa38a3ef2bf78755a742fa5 -Author: Colin Copeland -Date: Fri Apr 17 22:10:03 2020 -0400 - - add admin - -commit dad1aaf73a26813038e9481f2043bfd1f6d9b654 -Author: Colin Copeland -Date: Fri Apr 17 21:30:37 2020 -0400 - - make email verification optional - -commit 63c9ca373191fb5863f5ca929bed6e89d4df68ec -Author: Colin Copeland -Date: Fri Apr 17 17:09:02 2020 -0400 - - add shell line - -commit ec4e383e7776441e1602a100eb3ee4872345e90a -Author: Colin Copeland -Date: Fri Apr 17 17:01:25 2020 -0400 - - try normal script - -commit 197c12e6122e798cb66fd75890a1a4af46ae36aa -Author: Colin Copeland -Date: Fri Apr 17 16:50:09 2020 -0400 - - use dot slash - -commit d53e1392a94e46efc6494fbe9acbfba9b173f6eb -Author: Colin Copeland -Date: Fri Apr 17 16:38:03 2020 -0400 - - add review script - -commit 4241949b6348b0602ca140ce0b27b2b449303cf4 -Author: Colin Copeland -Date: Fri Apr 17 16:33:15 2020 -0400 - - fix test user creation - -commit d0d06914a43e698c7bc7a27ce61374d3f4fc6eb4 -Author: Colin Copeland -Date: Fri Apr 17 16:24:02 2020 -0400 - - remove sendgrid - -commit 98de94e23f812bffdbf29ab5431cb51eb9c69ed4 -Author: Colin Copeland -Date: Fri Apr 17 16:15:35 2020 -0400 - - add postdeploy script - -commit fe053aecd5929f95e537575dde7876c6d0cb6e38 -Author: Colin Copeland -Date: Fri Apr 17 15:53:35 2020 -0400 - - use sendgrid - -commit af8a22e046176a83b2dfc0bc7d4f71b78428ef40 -Merge: 08c98c4 1a8ed05 -Author: Colin Copeland -Date: Fri Apr 17 15:41:01 2020 -0400 - - Merge branch 'upgrade' of github.com:codefordurham/dear-petition into upgrade - -commit 08c98c400ea22944a054338035e9ec005839a514 -Author: Colin Copeland -Date: Fri Apr 17 15:40:33 2020 -0400 - - change to hobby - -commit 2befa42fc9282098e85fe1d922d81c78a1fed9db -Author: Christopher Dixon -Date: Fri Apr 17 14:24:36 2020 -0400 - - updated comment - -commit 41c163855e1589f21f8e4b84f69497abcfdfb6fa -Author: Christopher Dixon -Date: Fri Apr 17 13:55:06 2020 -0400 - - cleaned up code in get_petition_offenses - -commit 1b94e8373d67b7817f2d67e33f527aef76316491 -Author: Christopher Dixon -Date: Fri Apr 17 13:49:07 2020 -0400 - - cleaned up code in get_petition_offenses - -commit c187c1a91eacce05895dea4ae81c8f5050abf461 -Author: Christopher Dixon -Date: Fri Apr 17 13:37:43 2020 -0400 - - changes based upon dmitriy's review. Also only CHARGED offense.action should be shown on the petition - -commit 5ef5b4b0f8bad6112f3165331dbffa0dfd73bde8 -Author: Michael Ashton -Date: Thu Apr 16 14:52:28 2020 -0400 - - add dragndroppable file input and flow - -commit 60c0bfa66ad3b14e139156a5e985193292b92e0b -Author: Michael Ashton -Date: Thu Apr 16 13:33:44 2020 -0400 - - add dnd widget and flow - -commit a197bba0b7fd1b8d00d5895918c36508f4a35bf3 -Author: Christopher Dixon -Date: Thu Apr 16 12:57:16 2020 -0400 - - updated view.html, UploadFileForm, and batch property methods. Now able to rendering view html page and generate pdf. Now working to refactor code. - -commit ed0299bbfa108c888c858663a58941ccf39662fd -Author: Michael Ashton -Date: Thu Apr 16 09:52:18 2020 -0400 - - add pagebase and adjust positioning - -commit e890ece5687227468808626b3302340dd33ec289 -Author: Michael Ashton -Date: Thu Apr 16 09:19:41 2020 -0400 - - introduce custom button, make font a constant - -commit a5f882304780fcb949ec755728092d10d0bb28ed -Author: Christopher Dixon -Date: Wed Apr 15 21:00:18 2020 -0400 - - now saving Offense and OffenseRecord instances in UploadFileForm save method. - -commit 4b1707aedc3123759e3b2255c7cdcb0fe93ce80f -Author: Michael Ashton -Date: Wed Apr 15 17:26:12 2020 -0400 - - button font size tweak, fix package-lock - -commit 158638ffafec1b18bc826c65c16923042932cae1 -Author: Michael Ashton -Date: Wed Apr 15 17:08:20 2020 -0400 - - basic layout and routing, bring in reaktus - -commit 721bab770af4e95beb1b7d0c24ae555494498973 -Author: Michael Ashton -Date: Wed Apr 15 15:09:13 2020 -0400 - - including src directory... - -commit d11139731b4824804f1ebab6ab7c15ffb66fc892 -Author: Michael Ashton -Date: Wed Apr 15 15:02:34 2020 -0400 - - intial app boostrapped with cra, plus a few deps - -commit 1a8ed050d869ea57bc8833d9105236ecda810ae6 -Merge: c760d46 baf2d82 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Wed Apr 15 13:56:50 2020 -0400 - - Merge pull request #87 from deardurham/DIS-1350-offense-models - - [DIS-1350] Add Offense and OffenseRecord models for offenses - -commit baf2d82792ca3067d7b31b0b48212be1a7970108 -Merge: 4aa49f5 c760d46 -Author: Christopher Dixon -Date: Wed Apr 15 13:18:25 2020 -0400 - - Merged upgrade branch into DIS-1350. Resolved conflicts in petition.models - -commit c760d46e7e1a8fa991ecffeb534343c1eb193207 -Merge: 43eb0ee 5e09c1d -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Wed Apr 15 13:05:38 2020 -0400 - - Merge pull request #86 from deardurham/DIS-1349-refactor-ciprsrecord-model - - [DIS-1349] Add general/case/defendant details to CIPRSRecord model - -commit 21fcf19e189e643278dfa842cbc162d48858e696 -Author: George Helman -Date: Wed Apr 15 00:10:55 2020 -0400 - - Incorporated suggestions - -commit 5e09c1d684d48c60ce9d24914a72ecaec918df68 -Author: Dmitriy Chukhin -Date: Tue Apr 14 21:30:06 2020 -0400 - - simplify testing logic of offense date and arrest date values - -commit eaaede951c79564b99241c9e9e6fc5ce6a1f7cf0 -Author: Dmitriy Chukhin -Date: Tue Apr 14 21:28:33 2020 -0400 - - utility functions take project's time zone into account when converting datetimes - -commit 278515a3a63db949414e7c42063c25680bac5a1e -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Tue Apr 14 14:50:50 2020 -0400 - - Update dear_petition/petition/migrations/0019_auto_20200407_1720.py - - Co-Authored-By: Dmitriy Chukhin - -commit 95a41998ae05b6bcafd0719b79477135f2e9a2c1 -Author: Christopher Dixon -Date: Tue Apr 14 14:46:13 2020 -0400 - - add replace method back to chainable methods in make_datetime_aware definition - -commit 864e9dd3ae45c8574250aad423f01184ff64874f -Author: Christopher Dixon -Date: Tue Apr 14 11:59:44 2020 -0400 - - revisions based upon dmitriy's review 4.13.2020 - -commit d05d7cf293ce188a473888a745e35a02a6d5ed17 -Author: Christopher Dixon -Date: Mon Apr 13 13:46:29 2020 -0400 - - revisions based upon dmitriy's latest review - -commit d0bc82e6e89ba0e0b8b039b230dc66c087fdd5b8 -Author: George Helman -Date: Sat Apr 11 14:18:51 2020 -0400 - - Added comments section - -commit 4aa49f5fd2ec5fde9c4aef9173f7ed472cacdbb6 -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Thu Apr 9 11:31:14 2020 -0400 - - Update dear_petition/petition/admin.py - - Co-Authored-By: Dmitriy Chukhin - -commit 39628d2a03cb99671593a341eff51bc362e6ef2e -Author: Christopher Dixon -Date: Thu Apr 9 10:54:46 2020 -0400 - - Now using make_aware to make datetime object aware - -commit 7b96541e32c4a0105971684050c5fa230befb770 -Author: Christopher Dixon -Date: Wed Apr 8 14:43:49 2020 -0400 - - updated model and migrations - -commit 32a84567f01e2f21b2e838a00119dea6897f19da -Author: Christopher Dixon -Date: Tue Apr 7 21:40:09 2020 -0400 - - updated migration - -commit ac287ed8ba07e3642720bac759c8e3e5bea3b7ba -Author: Christopher Dixon -Date: Tue Apr 7 16:35:15 2020 -0400 - - offense_record_count and record_count should not be private methods - -commit ff8333d7444a894a8f34baa52b9f282e54778338 -Author: Christopher Dixon -Date: Tue Apr 7 16:33:09 2020 -0400 - - Changes based upon dmitriy's review - -commit 1cfe6e785911c8cd9df37d7e0fabc5cf44aad489 -Author: Christopher Dixon -Date: Tue Apr 7 13:26:22 2020 -0400 - - update migrations - -commit 98a3521310d69016bb33ae79569cc47c0944f011 -Author: Christopher Dixon -Date: Tue Apr 7 11:27:56 2020 -0400 - - Added tests for create_record and test_refresh_record_from_data . offense_date DateTimeField is now EST timezone aware. - -commit 667efd45d9440a97a31d1a67a13dc7178dc4a334 -Merge: aed3229 403cbbd -Author: Christopher Dixon -Date: Mon Apr 6 10:12:43 2020 -0400 - - Made revision to model based upon colin and dmitriy's review. I still have a couple of comments that colin needs to respond to about create_record. Workong on test and updating migration. - -commit aed3229ef84322623565d5e14a24f0d35dd403b4 -Author: Christopher Dixon -Date: Sat Apr 4 21:39:09 2020 -0400 - - Made revision to model based upon colin and dmitriy's review. I still have a couple of comments that colin needs to respond to about create_record. Workong on test and updating migration. - -commit ce06edaea8a5c84888ea9b8fa3ff61d7629074c1 -Author: Christopher Dixon -Date: Thu Apr 2 19:02:46 2020 -0400 - - Added Offense & OffenseRecord to Django Admin. Added A migration to petition for these models. Note: This migration depends upon the work done in DIS-1349 - -commit 403cbbdcdf3b616529631382b0fb26f09b5616ba -Author: Chris Dixon <37882933+Audiosutras@users.noreply.github.com> -Date: Thu Apr 2 18:36:47 2020 -0400 - - Remove Comments Referencing Offense - - See DIS-1350 for the offense models. Comments are no longer necessary because of this PR. - -commit 67b36f73597f54625816943ca22a9e725f05459e -Author: Christopher Dixon -Date: Thu Apr 2 18:34:59 2020 -0400 - - spelling errors - -commit 11286b17fa19cbb20423032ce144324edad19b94 -Author: Christopher Dixon -Date: Thu Apr 2 16:21:31 2020 -0400 - - DIS-1350: Remove @property methods associated with offense. Creates Offense and OffenseRecord models. - -commit 01c500d9ce6116a2a310ae87f5dc36d0afb5bf9e -Author: Christopher Dixon -Date: Thu Apr 2 13:46:14 2020 -0400 - - DIS-1349: Added a manager to to CIPRSRecord. CIPRSRecord.objects.create_record extracts attributes from data (raw_data) and populates the new fields on the model. Use this method to create a new CIPRSRecord. Added refresh_record method to model. If the data (JSONField) changes, run this method to update the fields we are pulling from the JSON blob. Also added a custom migration to update existing ciprs_records. - -commit 43eb0eedb224ca5fc84f9846589ba13bf8bbe9ef -Merge: 116f7da 5550721 -Author: Colin Copeland -Date: Tue Mar 31 18:31:53 2020 -0400 - - Merge pull request #85 from deardurham/ciprs-reader-0014 - - Update ciprs-reader to v0.0.14 - -commit 5550721dd293d5ff2a7501e5452870d1acbe1ab3 -Author: Colin Copeland -Date: Tue Mar 31 18:31:05 2020 -0400 - - update ciprs-reader to v0.0.14 - -commit 116f7da84737513098a3c46de31f7ef1efd9dd8a -Author: Colin Copeland -Date: Tue Mar 3 21:27:32 2020 -0500 - - update ciprs-reader to 0.0.13 - -commit e5286640a19165c8007eefcf5d50857bc83f05ed -Merge: 407451b 48bd9d0 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Mar 3 19:31:22 2020 -0500 - - Merge pull request #75 from deardurham/permissions - - Permissions - -commit 48bd9d0e18ef06242c14ad644e43955e4e49b2e6 -Author: George Helman -Date: Tue Mar 3 19:28:49 2020 -0500 - - Factories already exist - -commit c5794c640555d7bc8147cedea57ea276a1a33df8 -Author: George Helman -Date: Sun Mar 1 16:21:26 2020 -0500 - - Added permission test and utilities - -commit e3d4694e138a0f2739a56ae7d9a2d1b3f36dd469 -Merge: 52eeb11 b23b5e6 -Author: George Helman -Date: Sat Feb 29 21:11:25 2020 -0500 - - Merge branch 'permissions' of https://github.com/deardurham/dear-petition into permissions - -commit 52eeb1120c481f8e0251d37576457e91f79bdc88 -Author: George Helman -Date: Sat Feb 29 21:10:19 2020 -0500 - - Added factory functions and permission tests - -commit 407451b2589e2dbbf7b193329f98c680f8edab01 -Merge: 6052cfe 6c044e6 -Author: Colin Copeland -Date: Sat Feb 22 11:49:14 2020 -0500 - - Merge pull request #79 from deardurham/new-user-tweaks - - New user tweaks - -commit 6c044e6e1a5b484389c908cb005189a97d1fbdf1 -Author: Colin Copeland -Date: Sat Feb 22 11:44:47 2020 -0500 - - provide link back to batch when viewing petition - -commit 5e9dc7bd3929aa55ce63edcbc8fd2f2025bafe70 -Author: Colin Copeland -Date: Sat Feb 22 11:39:34 2020 -0500 - - add admin link for staff users - -commit 7fd86b7502777b92dac31fb410c4ea56f5681e06 -Author: Colin Copeland -Date: Sat Feb 22 11:36:50 2020 -0500 - - support View on Site from django admin - -commit 2b178f2d7c53ec053bc9b359e9b3080f63442aec -Author: Colin Copeland -Date: Sat Feb 22 11:30:09 2020 -0500 - - remove home page - -commit 91c311c472da1d2edc89f0b6ceea76aab4b5779c -Author: Colin Copeland -Date: Sat Feb 22 11:24:43 2020 -0500 - - log in with email - -commit b23b5e6f9eb0828fef450d790c5dd167adf69152 -Merge: 5b8f441 6052cfe -Author: Colin Copeland -Date: Sat Feb 22 10:50:15 2020 -0500 - - Merge branch 'master' into permissions - -commit 6052cfeab5acc18749c6f492885aac388ed37247 -Merge: 5962cdc 6104ae2 -Author: Colin Copeland -Date: Sat Feb 22 10:34:59 2020 -0500 - - Merge pull request #78 from deardurham/update-ciprs-reader-0012 - - Update ciprs-record to v0.0.12 - -commit 6104ae2dcdc0ccf13406c37ef951510505d04a5b -Author: Colin Copeland -Date: Sat Feb 22 10:30:06 2020 -0500 - - fix migration script to include pre-patch records - -commit 7cf812ef129c88638a389fe1a2e4ed61fc51fc1b -Author: Colin Copeland -Date: Thu Feb 20 12:57:09 2020 -0500 - - update ciprs-record to 0.0.12 - -commit 5962cdcb7f61de71ca90431eaf82fd7ae2f80d80 -Merge: 7ec87f4 ddbff1e -Author: Colin Copeland -Date: Tue Feb 18 21:42:49 2020 -0500 - - Merge pull request #77 from deardurham/update-ciprs-reader-0011 - - Update ciprs-reader to v0.0.11 - -commit ddbff1e364131d7ebb185f60a0baa43dba2662eb -Author: Colin Copeland -Date: Tue Feb 18 21:38:46 2020 -0500 - - update ciprs reader - -commit 7ec87f4da5dda88ea017e9491f2b7a10e836843c -Merge: 092372f 629e18e -Author: Colin Copeland -Date: Tue Feb 18 21:38:04 2020 -0500 - - Merge pull request #76 from deardurham/unbound_local_error_validation - - Unbound local error validation - -commit 092372f79a07849db2c0f4f6c4d0a109d71cf9d7 -Merge: 8dfb7ae 7d539e0 -Author: Colin Copeland -Date: Tue Feb 18 21:36:26 2020 -0500 - - Merge pull request #68 from deardurham/dependabot/pip/django-2.2.10 - - Bump django from 2.2.8 to 2.2.10 - -commit 629e18eb25e1e4792ab9c323817a3a269b0efcae -Author: Colin Copeland -Date: Tue Feb 18 21:35:47 2020 -0500 - - raise exceptions as form errors to prevent 500s - -commit 1f9b543ebaebfe50a6a471e36b6a9d3ccbb28f2b -Merge: 7ae0e8d 8dfb7ae -Author: Colin Copeland -Date: Tue Feb 18 21:19:20 2020 -0500 - - Merge branch 'master' into unbound_local_error_validation - -commit 8dfb7ae1eb070bae71e37e7efc6df5cb7e2f585d -Merge: 7749eee 2e0bee3 -Author: Colin Copeland -Date: Tue Feb 18 21:18:18 2020 -0500 - - Merge pull request #67 from deardurham/add-user - - Track upload user - -commit 2e0bee3f3292ad59222511c22b8376c73ffeec9b -Author: Colin Copeland -Date: Tue Feb 18 21:15:30 2020 -0500 - - wrap in a transaction - -commit 7ae0e8d7d2b9a636d2be244069469c8a2173dbed -Author: Colin Copeland -Date: Tue Feb 18 20:18:47 2020 -0500 - - raise validation error if batch doesn't have most_recent_record - -commit 5b8f4417949202a453c03f98c32fb8fdfe23cdb4 -Author: George Helman -Date: Tue Feb 18 20:15:41 2020 -0500 - - Added basic permission check that ensures only petition generator can see permission - -commit 2e08b3382c3732b0fca30ca18d21029d8c472a6b -Merge: 38c00a4 a2e72a5 -Author: Colin Copeland -Date: Tue Feb 18 16:42:47 2020 -0500 - - Merge branch 'add-user' into unbound_local_error_uer - -commit 7d539e05fbcb8e52d4b73f22ab781931cfa9252b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Feb 12 01:17:22 2020 +0000 - - Bump django from 2.2.8 to 2.2.10 - - Bumps [django](https://github.com/django/django) from 2.2.8 to 2.2.10. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.8...2.2.10) - - Signed-off-by: dependabot[bot] - -commit a2e72a57a9edcb5dc76e9e090afa5601419bdcf5 -Author: Colin Copeland -Date: Sat Feb 8 21:44:05 2020 -0500 - - add user when creating batches - -commit b77a71a24e5f0355ff2a8fdeaf395b821208226f -Author: Colin Copeland -Date: Sat Feb 8 21:38:34 2020 -0500 - - add inline to BatchAdmin - -commit dcbf25789e3d16921f35b166af34ca83a0dba215 -Author: Colin Copeland -Date: Sat Feb 8 21:34:38 2020 -0500 - - add user to admin - -commit 29e19fbdb93d996dece269d0002780749189d514 -Author: Colin Copeland -Date: Sat Feb 8 21:30:19 2020 -0500 - - add Batch.user - -commit 39b3e139441f803880bf138ad17e77da37e643bc -Author: Colin Copeland -Date: Sat Feb 8 21:22:57 2020 -0500 - - add Batch.label, Batch.date_uploaded, improve admin - -commit 8f451e95cc72613ddb35ea68b254795d18ef7b1f -Author: Colin Copeland -Date: Sat Feb 8 21:22:10 2020 -0500 - - add CIPRSRecord.batch with data migration - -commit 7749eee23d8426f9a5d2c91569dc2341381760ab -Merge: 73f7fe8 5351a13 -Author: Colin Copeland -Date: Tue Feb 4 20:16:48 2020 -0500 - - Merge pull request #66 from deardurham/sendgrid - - Sendgrid - -commit 5351a137327b479b1f47eb75a6d37b6f30f68c9f -Author: George Helman -Date: Tue Feb 4 20:14:35 2020 -0500 - - Remove settings from base, add to production - -commit 51d3226036bd9898830b25e09b7d42e95d3101e9 -Author: George Helman -Date: Tue Feb 4 20:10:58 2020 -0500 - - Local mail and remove api key - -commit b97d7f951115a33922183eacd5368bde47ee7a86 -Author: George Helman -Date: Mon Jan 27 20:47:17 2020 -0500 - - Black - -commit 2bde12a67ba041a6ef83815eb275c9be7da24def -Author: George Helman -Date: Mon Jan 27 20:45:13 2020 -0500 - - Removed anymail dependency - -commit 0254c1edc0ddd82a4263ddb192a641fdc023f32d -Author: George Helman -Date: Mon Jan 27 20:39:37 2020 -0500 - - It works locally - -commit 38c00a45c0bd92779be88318f455e3a07d8b0840 -Author: George Helman -Date: Sat Jan 25 19:25:53 2020 -0500 - - More robust most_recent_record function shouldn't cause problems in case of unexpected input - -commit 73f7fe8cc316a1274c1b9ffaa37d6996e64d4b6a -Merge: fc8474e 97e3223 -Author: Colin Copeland -Date: Tue Jan 7 19:35:20 2020 -0500 - - Merge pull request #58 from deardurham/update-ciprs-reader-0010 - - update ciprs-reader to v0.0.10 - -commit 97e3223f8b65acf5992323b9d36fcb4704a27699 -Author: Colin Copeland -Date: Tue Jan 7 19:30:40 2020 -0500 - - update ciprs-reader to v0.0.10 - -commit fc8474ee9cf1514d6f5fbaab79d869faae41799a -Merge: 7f52017 2e48b23 -Author: Colin Copeland -Date: Tue Jan 7 19:28:32 2020 -0500 - - Merge pull request #55 from deardurham/petition_to_expunge_section - - Filled out petition to expunge section - -commit 2e48b23006d863015555ad8506191aa7b3c9230a -Author: Colin Copeland -Date: Tue Jan 7 19:24:41 2020 -0500 - - move dt into map_data method - -commit 7f52017c95a662f9a56115a2d7b6eca4bcf93a8c -Merge: f00f42b 36fab16 -Author: Colin Copeland -Date: Tue Jan 7 18:47:45 2020 -0500 - - Merge pull request #53 from deardurham/update_view_with_arrest_date - - Added arrest date to view - -commit f00f42b6ca7e5bba34324177a1787a19693be144 -Merge: e89229e 67219f9 -Author: Colin Copeland -Date: Tue Jan 7 18:39:40 2020 -0500 - - Merge pull request #54 from deardurham/dependabot/pip/django-2.2.8 - - Bump django from 2.2.4 to 2.2.8 - -commit 48cb3e426d2b6473ce005b961e60a1a41d79473d -Author: George Helman -Date: Wed Jan 1 13:23:45 2020 -0500 - - Filled out petition to expunge section - -commit 67219f99dda5ec999abfd44c2d52580709c93c45 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Dec 4 23:56:56 2019 +0000 - - Bump django from 2.2.4 to 2.2.8 - - Bumps [django](https://github.com/django/django) from 2.2.4 to 2.2.8. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/2.2.4...2.2.8) - - Signed-off-by: dependabot[bot] - -commit 36fab16f578277a6856cdb4f8ef8d02dc20afb56 -Author: George Helman -Date: Tue Nov 26 20:11:06 2019 -0500 - - Added arrest date to view - -commit e89229e17ab38fd9a3422ac38e806fd59dffdd6e -Merge: 03fac9c 3cfd1e3 -Author: Colin Copeland -Date: Tue Nov 26 19:52:04 2019 -0500 - - Merge pull request #52 from deardurham/update-cr-009 - - update ciprs reader to 0.0.9 - -commit 3cfd1e35a1d5eb1c7b353ca83b5bc67719c95bbd -Author: Colin Copeland -Date: Tue Nov 26 19:51:20 2019 -0500 - - update ciprs reader - -commit 03fac9c75c10a72ce13e042c21a77fcde33df052 -Merge: d81dae1 f5e53ff -Author: Colin Copeland -Date: Tue Nov 26 19:50:13 2019 -0500 - - Merge pull request #51 from deardurham/case_served_on - - Updated model to use new arrest date parsed field - -commit d81dae1c512f459520b8bb7d7c11c453b5076abd -Merge: 3845e3d 19119bf -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Nov 26 18:28:57 2019 -0500 - - Merge pull request #43 from deardurham/dependabot/pip/pillow-6.2.0 - - Bump pillow from 6.0.0 to 6.2.0 - -commit f5e53ff79d5f61d9f90504815111762eea05138c -Author: George Helman -Date: Tue Nov 26 18:27:08 2019 -0500 - - Updated model to use new arrest date parsed field - -commit 3845e3d50d6133341d481011497979f17423af12 -Merge: 6c61ff1 253740b -Author: Colin Copeland -Date: Fri Nov 1 07:06:48 2019 -0400 - - Merge pull request #45 from deardurham/offense_date_fix - - don't die on missing offense date - -commit 253740b09d2feb1777c49ce12d58640af7186ed2 -Author: Colin Copeland -Date: Wed Oct 30 22:54:53 2019 -0400 - - remove print statement - -commit 8d682306c96ab4b813db096ba78aa8a997ee8567 -Author: Colin Copeland -Date: Wed Oct 30 22:54:04 2019 -0400 - - don't die on missing offense date - -commit 6c61ff1d89c14a439d60f3b8487cb54d1d703a3b -Merge: d2d4687 147e0c9 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Oct 29 20:29:38 2019 -0400 - - Merge pull request #44 from deardurham/batch_aggregate - - WIP Batch aggregate - -commit 147e0c9161b11ad8dda348ea53cfd8debed65109 -Author: Colin Copeland -Date: Tue Oct 29 20:27:57 2019 -0400 - - remove model tests - -commit 5c173f325bc9c927f932a2853d8cc82cfa665af0 -Author: Colin Copeland -Date: Tue Oct 29 20:24:10 2019 -0400 - - get real recent record - -commit 6f1ce9504cc92772fc99c984c93e0974e32b793a -Author: George Helman -Date: Tue Oct 29 20:22:26 2019 -0400 - - Fix bug - -commit 2dd935311c144a7ce2fbb5b01e63aeb1069d8405 -Author: George Helman -Date: Tue Oct 29 20:21:36 2019 -0400 - - Now returns whole record instead of just fileno - -commit 39754dc9096b6b50eacd7af7c3d0aba1285274a3 -Merge: b6f6f3b cb17d9b -Author: George Helman -Date: Tue Oct 29 20:20:04 2019 -0400 - - Merge branch 'batch_aggregate' of https://github.com/deardurham/dear-petition into batch_aggregate - -commit b6f6f3b63dc00c31311b7c34a7abbdc86fe2cf0d -Author: George Helman -Date: Tue Oct 29 20:16:08 2019 -0400 - - Adding tests - -commit cb17d9b50abeadd011d657dadfe2366edf83a8ba -Merge: e743364 2f42ed0 -Author: Colin Copeland -Date: Tue Oct 29 20:14:09 2019 -0400 - - Merge branch 'batch_aggregate' of github.com:codefordurham/dear-petition into batch_aggregate - -commit e7433640eb285b576b429136c53cd19d0db97ff7 -Author: Colin Copeland -Date: Tue Oct 29 20:12:43 2019 -0400 - - add petition offenses - -commit 2f42ed0ebd1a26e7a5ea5da38601ea7384c26aab -Author: George Helman -Date: Tue Oct 29 20:07:41 2019 -0400 - - Ordered file_no property - -commit fcb017944cec8ecd24849b5466ac2d9a62dfef66 -Author: George Helman -Date: Tue Oct 29 19:33:15 2019 -0400 - - Batch date now returns correct date - -commit 3a8f500105efd825a09acc2b00220f49a448a0f0 -Author: George Helman -Date: Tue Oct 29 19:23:44 2019 -0400 - - Added new batch properties - -commit dbee04c8ac17033afa6ca8865937a335c9fc4467 -Merge: bb49f81 5f8b9bd -Author: Colin Copeland -Date: Tue Oct 29 19:08:01 2019 -0400 - - Merge branch 'batch_aggregate' of github.com:codefordurham/dear-petition into batch_aggregate - -commit bb49f81910fae604c5182e3455b5e47e135c1433 -Author: Colin Copeland -Date: Tue Oct 29 19:07:44 2019 -0400 - - fix redirect after record upload - -commit 5f8b9bd44e6cc7b5cc9586e7940e1d70fb4781b9 -Author: George Helman -Date: Tue Oct 29 19:06:24 2019 -0400 - - Aggregate offenses - -commit 19119bf0ca06853b480c0ca98d614f061142e705 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Oct 23 14:51:23 2019 +0000 - - Bump pillow from 6.0.0 to 6.2.0 - - Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.0.0 to 6.2.0. - - [Release notes](https://github.com/python-pillow/Pillow/releases) - - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) - - [Commits](https://github.com/python-pillow/Pillow/compare/6.0.0...6.2.0) - - Signed-off-by: dependabot[bot] - -commit d2d4687dd220aa483a6701fcf36c98c25a879bf0 -Merge: e9505c7 abbd75d -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Thu Oct 17 20:26:54 2019 -0400 - - Merge pull request #42 from deardurham/batch-upload - - [WIP] Add batch upload support - -commit abbd75d63ec1086bda5ddf95789ac5287a47b5d8 -Author: Colin Copeland -Date: Tue Oct 15 21:49:09 2019 -0400 - - update tests; pass batch and form_data into data_dict - -commit 5c128667a03cd08fb878bb6e5fc73652e4ebf0fd -Author: Colin Copeland -Date: Tue Oct 15 20:12:10 2019 -0400 - - first pass at adding batch support - -commit e9505c7e6fa039f2cda5996ea9ef2a4508c85dae -Merge: 402bbb0 bdb1f98 -Author: Colin Copeland -Date: Tue Oct 15 19:38:11 2019 -0400 - - Merge pull request #41 from deardurham/multiple_records - - New batch model - -commit bdb1f9882331c68a601e58cf7f2fada837ccb968 -Author: George Helman -Date: Tue Oct 15 19:30:19 2019 -0400 - - New batch model - -commit 402bbb05115516c9561371ce8055d04929f3c0e5 -Merge: b496cfd 6872533 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Oct 1 19:00:57 2019 -0400 - - Merge pull request #40 from deardurham/37-charged - - Only show CHARGED offenses on petition PDF - -commit 6872533e45f0648aa9cb45e7f30dfcbc662f408a -Author: Colin Copeland -Date: Tue Oct 1 18:55:22 2019 -0400 - - update ciprs-reader - -commit d67d4ccc01a1a1349ab9c17ccabafa414d1595a9 -Author: Colin Copeland -Date: Tue Oct 1 18:36:16 2019 -0400 - - test for CHARGED action - -commit ece843c9d7ce158c94f6400cdbd2ff02123154dc -Author: Colin Copeland -Date: Tue Oct 1 18:32:57 2019 -0400 - - show CIPRS record details on CIPRS tab - -commit 69c25e39d70025bf43c5d297290957a95aaf72cf -Author: Colin Copeland -Date: Tue Oct 1 18:27:45 2019 -0400 - - python black updates - -commit 6d2a0cb9a2340110791219061230561df9ff639c -Author: Colin Copeland -Date: Tue Oct 1 18:27:30 2019 -0400 - - filter offenses to only included CHARGED - -commit b496cfd4da76d9888176078131e3ed0527c92e37 -Merge: cf25fa0 f5f907f -Author: Colin Copeland -Date: Tue Sep 3 20:02:45 2019 -0400 - - Merge pull request #39 from deardurham/fix-dates - - Clean dates before rendering PDFs - -commit cf25fa07a5c494b71d421ba7b4573c0641b6595f -Merge: 69352d8 5af511f -Author: Colin Copeland -Date: Tue Sep 3 19:59:52 2019 -0400 - - Merge pull request #38 from deardurham/add_offense_to_ciprs_section - - Added offense info to CIPRS section on site - -commit f5f907f7d96ab70469a28d42d962e1567808d60f -Author: Colin Copeland -Date: Tue Sep 3 19:57:43 2019 -0400 - - clean dates before rendering PDFs - -commit 5af511ffd0d279ecd9b3d991b3b6321bbae513db -Author: George Helman -X (ghelman - AEROTEK INC at Cisco) -Date: Sun Aug 25 14:27:04 2019 -0400 - - Added offense info to CIPRS section on site - -commit 69352d865604a39c0e45fb89a02847eb1fe9f104 -Merge: 5a9f76f c6e4aba -Author: Colin Copeland -Date: Tue Aug 20 19:59:05 2019 -0400 - - Merge pull request #32 from deardurham/issues/9 - - Remove pipfile - -commit 5a9f76fe0c357f6371db0c85f4406847a4279d41 -Merge: 093cc59 36e8eb9 -Author: Colin Copeland -Date: Tue Aug 20 19:56:36 2019 -0400 - - Merge pull request #31 from deardurham/offense_information - - Changed disposal date - -commit c6e4aba4b9c3c01a2c128e59586a57b1c5fbf392 -Author: myersCody -Date: Tue Aug 20 19:48:52 2019 -0400 - - I think we will just keep the requirement.txt model, seems to be alot friendlier for heroku - -commit 093cc590e4f7ebf9c4565cbfadaa2e9cfd658991 -Author: Ryan Himmelwright -Date: Tue Aug 20 19:45:31 2019 -0400 - - Added travis build status icon (#33) - - - Added and icon for the build status in travis - - Moved icons to all be in the same row - -commit 36e8eb9ae791bb90883bffc0f124aaf95995ecaf -Author: George Helman -X (ghelman - AEROTEK INC at Cisco) -Date: Tue Aug 20 19:25:41 2019 -0400 - - Changed disposal date - -commit 378fd6e5105c27d37ac08c054939024f3efce931 -Merge: 964d470 4d4ca4a -Author: Colin Copeland -Date: Tue Aug 20 19:16:22 2019 -0400 - - Merge pull request #30 from deardurham/update_ignore - - Added generated files to gitignore - -commit 964d47018dd3a5c43c1208eefcfe8789d53a8e16 -Merge: 962cd3a bc60e32 -Author: Colin Copeland -Date: Tue Aug 20 19:15:26 2019 -0400 - - Merge pull request #27 from deardurham/offense_information - - Added offense information to pdf - -commit 962cd3ab6d0ee1c760808b60ac4b19d20b3081e1 -Merge: 5530884 6c4974b -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Aug 20 19:13:09 2019 -0400 - - Merge pull request #26 from deardurham/checkbox-fix - - Date fix for Acrobat Reader - -commit bc60e32fe8fbb9a35cf0b3f44f35d37bd2a9d1d1 -Author: George Helman -X (ghelman - AEROTEK INC at Cisco) -Date: Tue Aug 20 19:00:56 2019 -0400 - - Review updates - -commit 4d4ca4ab3bf44b218aa7df3b6c867220cf214f4e -Author: George Helman -X (ghelman - AEROTEK INC at Cisco) -Date: Tue Aug 20 18:50:21 2019 -0400 - - Added generated files to gitignore - -commit 099bc79c676acafc613dde650bf6e5d3852588bd -Author: myersCody -Date: Tue Aug 20 18:35:32 2019 -0400 - - Working on fixing pipfile break - -commit 9685bf70a02a84182a01f6a2f56060113ce7f4c6 -Author: George Helman -X (ghelman - AEROTEK INC at Cisco) -Date: Sun Aug 18 18:56:25 2019 -0400 - - Added offense information to pdf - -commit 6c4974bea78b64a38460b252c5b3cc20e130945d -Author: Colin Copeland -Date: Fri Aug 16 17:02:26 2019 -0400 - - change date format for acrobat reader - -commit 33ad5ebf97d96349e8ec93a5a689952e128645d2 -Author: Colin Copeland -Date: Fri Aug 16 16:34:54 2019 -0400 - - fix filename for firefox - -commit 5530884c6b64008b9d698b44a8fb55cd73626650 -Merge: 6d43add ba1106c -Author: Colin Copeland -Date: Fri Aug 16 15:52:02 2019 -0400 - - Merge pull request #25 from deardurham/basic-petition-tests - - Add basic petition form tests - -commit ba1106c3346703abd57e21271d6a85917551bb8e -Author: Colin Copeland -Date: Fri Aug 16 15:35:05 2019 -0400 - - flake8 fixes - -commit a910d0fa09ca6182dcb179b2499f5abb1c39328e -Author: Colin Copeland -Date: Fri Aug 16 15:26:35 2019 -0400 - - add initial petition form tests - -commit c9b0af6a6ce2759245d9267d17101a498c88f0bb -Author: Colin Copeland -Date: Fri Aug 16 15:26:18 2019 -0400 - - ignore templates in coverage for now - -commit c2ad67e5545a424211f8aa834712478270dbb1c8 -Author: Colin Copeland -Date: Fri Aug 16 15:24:21 2019 -0400 - - add pytest-cov - -commit 6d43addb7f8c369d7e25eb095c7998f20be821f7 -Merge: 282fcb9 51b30a6 -Author: Colin Copeland -Date: Fri Aug 16 15:03:25 2019 -0400 - - Merge pull request #24 from deardurham/black - - Black - -commit 51b30a67a5ff0e4fc459d65269cd2afe16873338 -Author: Colin Copeland -Date: Fri Aug 16 15:00:16 2019 -0400 - - make GitHub security altert go away - -commit 960d553f3fa0d535fcb6954c2214ab0661699792 -Author: Colin Copeland -Date: Fri Aug 16 14:58:58 2019 -0400 - - use SSH clone - -commit 7d0c2c3c4efcb4a1b3d39fb50c228850ca60ea51 -Author: Colin Copeland -Date: Fri Aug 16 14:54:14 2019 -0400 - - allow any host when developing locally - -commit 76cf5b475961433544b3220a330bf167892d7ef4 -Author: Colin Copeland -Date: Fri Aug 16 14:53:34 2019 -0400 - - run black - -commit 282fcb9daea031feca6173163ab54e7b8fbe6e12 -Merge: d0a904f e3273b7 -Author: Colin Copeland -Date: Thu Aug 15 15:49:41 2019 -0400 - - Merge pull request #23 from deardurham/pdf-appearance-update - - Add NeedAppearances to try and get form fields visible in Acrobat Reader - -commit e3273b7c336318e31cf1d7ff654efb7d011717e4 -Author: Colin Copeland -Date: Thu Aug 15 15:42:56 2019 -0400 - - add NeedAppearances; run black - -commit d0a904f4b86d36a9e536096fcd0c2d5080c87149 -Merge: 9dcf64b b10fd4d -Author: Colin Copeland -Date: Tue Aug 13 16:38:23 2019 -0400 - - Merge pull request #17 from deardurham/test-change - - Test change color - -commit b10fd4d43c7e25ba300f465c3cb250a11aec0cc9 -Author: Colin Copeland -Date: Tue Aug 13 16:34:16 2019 -0400 - - change background to teal - -commit dfcde8464db6e83f8a5f69042fb15224c3f5838b -Author: Colin Copeland -Date: Tue Aug 13 16:27:41 2019 -0400 - - default to .herokuapp.com on production settings - -commit d9cda6c8d6a490af589eb064f28c7bff1503f8bd -Author: Colin Copeland -Date: Tue Aug 13 16:21:26 2019 -0400 - - set DJANGO_ADMIN_URL, try free dyno - -commit 16180d1f86b9a000a57c6d0416064689ce832bef -Author: Colin Copeland -Date: Tue Aug 13 16:15:52 2019 -0400 - - more default values in app.json - -commit f2cd865eec3742442af5fe6d0bd71e3e1cb0b4a9 -Author: Colin Copeland -Date: Tue Aug 13 16:08:45 2019 -0400 - - add DJANGO_SECRET_KEY generator - -commit 5e04788423e5a76e0b7f3df4014e99f16d98a032 -Author: Colin Copeland -Date: Tue Aug 13 14:53:48 2019 -0400 - - change color - -commit 9dcf64bdf3258b2c97a286583af06e3a5abb4d54 -Author: Colin Copeland -Date: Tue Aug 13 14:48:52 2019 -0400 - - clean out env variables in app.json - -commit ccd2a278e419c0abba9736d9e3ef0c6ab31faaf1 -Merge: 584d4b7 2292933 -Author: Colin Copeland -Date: Tue Aug 13 14:40:31 2019 -0400 - - Merge pull request #16 from deardurham/run-tests - - First try at getting tests passing on CI - -commit 229293367b68e96266cb63d148fa95e32c750cff -Author: Colin Copeland -Date: Tue Aug 13 14:36:26 2019 -0400 - - don't require CELERY_BROKER_URL - -commit 3a7bc1f3a5db8687b334798ae088a0258909254c -Author: Colin Copeland -Date: Tue Aug 13 14:34:17 2019 -0400 - - use test settings - -commit 101337dbd557bcfdf29ab9196d05f3fbe3cb60d6 -Author: Colin Copeland -Date: Tue Aug 13 14:27:27 2019 -0400 - - define DATABASE_URL - -commit 12361cf6be8830d45352af5d9d353de318465e1d -Author: Colin Copeland -Date: Tue Aug 13 14:22:14 2019 -0400 - - start with simple travis file - -commit 584d4b7254accb1c4ccab33ef6e12e437c8077b5 -Merge: e92ea05 22e1fc1 -Author: Colin Copeland -Date: Tue Aug 13 13:42:51 2019 -0400 - - Merge pull request #14 from deardurham/12-attachment-pdf - - Option to view PDFs in browser - -commit 22e1fc1d5d4375247443600744be1b3ef3e780e7 -Author: Colin Copeland -Date: Tue Aug 13 13:36:11 2019 -0400 - - add option to not download PDF as attachment (also includes black formatting) - -commit e92ea05d1bd2971af132ab1f8957910cc1980778 -Author: Colin Copeland -Date: Mon Aug 12 16:46:03 2019 -0400 - - add papertrail to heroku setup - -commit ab0357cb7d572ece4556a95f12b4cc7caaf1716a -Author: Colin Copeland -Date: Mon Aug 12 16:45:47 2019 -0400 - - update defaults in heroku setup docs - -commit 63f18ff79f374a1eff71410e2733584d5743c714 -Author: Colin Copeland -Date: Mon Aug 12 16:21:45 2019 -0400 - - update heroku docs after setting up staging - -commit bfbf7eddb83802ce4c40a527355e754e5661cd1b -Author: Colin Copeland -Date: Mon Aug 12 16:19:34 2019 -0400 - - move Docker setup above other docs, since it's the preferred setup for new devs - -commit 5e10d71a85d397acb8a61dfb33959bbd8b2501af -Author: Colin Copeland -Date: Mon Aug 12 16:09:16 2019 -0400 - - trigger deploy - -commit 6467e123ff0a922fdeab5503fc4518066da98b5f -Author: Colin Copeland -Date: Mon Aug 12 14:52:43 2019 -0400 - - update django to 2.2.4 - -commit c11919466206069ad372fffcde50c89ea521e7ce -Merge: 5ab6890 2ef08e4 -Author: Colin Copeland -Date: Mon Aug 12 14:49:13 2019 -0400 - - Merge pull request #7 from deardurham/django223 - - Update django to 2.2.3 - -commit 2ef08e49cb261d07addb8b839e29889c72c47abf -Author: Colin Copeland -Date: Mon Aug 12 14:46:52 2019 -0400 - - update django to 2.2.3 - -commit 5ab68909caef67949662c32586718700ae51bb7c -Merge: 755efd6 f2beeb3 -Author: Colin Copeland -Date: Mon Aug 12 14:45:16 2019 -0400 - - Merge branch 'develop' of github.com:codefordurham/dear-petition into develop - -commit f2beeb3d63468d04f73979bf461afedec5d31e5f -Author: Colin Copeland -Date: Mon Aug 12 14:44:42 2019 -0400 - - Add Heroku generated app.json - -commit 755efd66376d277673190af27b18db55892f3541 -Author: Colin Copeland -Date: Mon Aug 12 14:35:10 2019 -0400 - - trigger deploy - -commit df58dd68aaa8b68dfa9a33eda9a450df4d150dbe -Author: Colin Copeland -Date: Mon Aug 12 14:29:29 2019 -0400 - - move pipfile for now - -commit bc447d829219fd32d218dc7be33999d89019d837 -Author: Colin Copeland -Date: Mon Aug 12 14:18:57 2019 -0400 - - trigger deploy - -commit 5ec020aecf25050b25205f15af91dc4a0ede138b -Merge: 5afea1a ec60c0f -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Fri Aug 9 10:47:38 2019 -0400 - - Merge pull request #6 from deardurham/checkbox - - Added checkbox functionality - -commit 5afea1a3cc3d4d7a8144ae0def9e80f2a5bbf299 -Author: Cody Myers -Date: Tue Aug 6 20:00:00 2019 -0400 - - Added a pipfile & update readme. (#5) - - * Added a pipfile. - - * Update readme - - * Update readme and env - - * Updated readme with notes regarding the pipenv environment - -commit ec60c0f7f1dc17f57a503176d3f638610ac2adcd -Author: Colin Copeland -Date: Tue Jul 23 19:48:35 2019 -0400 - - use PdfName function to check checkbox - -commit a3a3ddfb4342db90515bc79262d95a4cefb0d9d7 -Author: George Helman -Date: Mon Jul 15 00:45:31 2019 -0400 - - Added checkbox functionality - -commit 0e1090a3d210661f500fc278b78b8427cd55e01c -Author: Colin Copeland -Date: Thu Jul 11 21:33:28 2019 -0400 - - bump ciprs-reader to 0.0.6 - -commit 231457d71c6db5fdb0e317382b4654b73adac91c -Author: Colin Copeland -Date: Mon Jun 24 21:54:15 2019 -0400 - - update ciprs-reader to 0.0.3; output court type - -commit bb007f47700b58cbf89801ef10056fb26c217d44 -Author: Colin Copeland -Date: Sun Jun 23 22:03:34 2019 -0400 - - add attorney and address fields - -commit d00e0db0a58c0c232d9bb18b4369476f729f1362 -Author: Colin Copeland -Date: Sun Jun 23 14:05:19 2019 -0400 - - organize ciprs data on view page - -commit 2d5620059c48c9640d260f46f510bad81afc9897 -Author: Colin Copeland -Date: Sat Jun 22 20:38:11 2019 -0400 - - don't link to PDF - -commit b9ef75f7e328049cc680cd8417b54d782b71c8c3 -Author: Colin Copeland -Date: Sat Jun 22 20:27:40 2019 -0400 - - enable saving PDF to S3 (and viewing) - -commit c4557fc2f5b9c42c359e1a037c0073ac5f74fbec -Merge: 74844b3 764e9d1 -Author: Colin Copeland -Date: Sat Jun 22 19:53:10 2019 -0400 - - Merge branch 'master' of github.com:codefordurham/dear-petition - -commit 74844b3fd4f6fb04cbb244b54d30ab35e79f57ca -Author: Colin Copeland -Date: Sat Jun 22 14:15:57 2019 -0400 - - add source output to view - -commit 2ac90909fd98635d5eb6ff0cd82c08b6329e2462 -Author: Colin Copeland -Date: Sat Jun 22 13:50:08 2019 -0400 - - fix env getter - -commit 5aa45f8882c3c0e29e039ca79873a0dae96e4335 -Author: Colin Copeland -Date: Sat Jun 22 13:46:44 2019 -0400 - - update Django - -commit 57e033538b383457a48d9d7e4b368006acee0ad4 -Author: Colin Copeland -Date: Sat Jun 22 13:46:31 2019 -0400 - - update ciprs-reader; add logging config - -commit 764e9d11793b5a8afc0681aab63f640c710ff93a -Merge: 1c3a052 cd08b8b -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Tue Jun 18 01:15:48 2019 -0400 - - Merge pull request #4 from codefordurham/black - - Added pre-commit hook to run black formatter - -commit cd08b8b4ca8ce5da9e413b499079ea1ed5b0a56e -Author: George Helman -Date: Mon Jun 17 23:02:22 2019 -0400 - - Added pre-commit hook to run black formatter - -commit 1c3a052ca89e700c514e19e5878a47872cd4569f -Merge: ab431cd 520e5ad -Author: Colin Copeland -Date: Tue Jun 11 18:53:25 2019 -0400 - - Merge pull request #1 from codefordurham/deploy - - Heroku Deploy - -commit 520e5adc4b483141cff81e0e1bccddf7773871d7 -Merge: 7ba910e ab431cd -Author: Colin Copeland -Date: Tue Jun 11 18:52:52 2019 -0400 - - Merge branch 'master' into deploy - -commit ab431cdb985a4bb39c23e727274b772e57877840 -Author: Ryan Himmelwright -Date: Tue Jun 11 18:39:58 2019 -0400 - - Converted README to a md (#3) - -commit 8c046cee5336aaed92ffa71e08b6a94677a717f9 -Merge: e80609b f236f39 -Author: George Helman <43391981+georgehelman@users.noreply.github.com> -Date: Sat Jun 8 22:36:14 2019 -0400 - - Merge pull request #2 from codefordurham/remove_attorney - - Remove attorney - -commit f236f398e0008ff31d31836f074ccc102a62ab6e -Author: George Helman -Date: Sat Jun 8 22:34:27 2019 -0400 - - Removed attorney info in petition (needs to be added manually) - -commit bafa95a04f63259cdae8c5fc55409f27895ab586 -Author: George Helman -Date: Tue May 28 17:38:35 2019 -0400 - - Updated README - -commit e80609b1dd21a57817425fb632f9e0892c69654b -Author: George Helman -Date: Mon May 27 20:11:04 2019 -0400 - - Created setup-project.py, which handles setup including installing the ciprs-reader project - -commit 7ba910ea2f099524a98f4a922af3988c61d5fb0e -Author: Colin Copeland -Date: Sat May 18 18:39:58 2019 -0400 - - add view to download pd - -commit f5a0573b5823deedce50febb96febe7acb4196b2 -Author: Colin Copeland -Date: Sat May 18 17:52:16 2019 -0400 - - output pretty json - -commit 20a611b47cec99434ba0972894c2440735a1cbc0 -Author: Colin Copeland -Date: Sat May 18 17:45:41 2019 -0400 - - add view page - -commit eb0bf388287cf63f815d95a2ca9fe05dcab8d5c2 -Author: Colin Copeland -Date: Sat May 18 17:13:07 2019 -0400 - - add default - -commit 1f320d23a79740a246dce18d208ef29a1c1e8185 -Author: Colin Copeland -Date: Sat May 18 17:09:56 2019 -0400 - - add additional aws s3 settings - -commit 638610bbb8672f3873cc9905bd8e70b85794c2ad -Author: Colin Copeland -Date: Sat May 18 16:46:55 2019 -0400 - - parse from admin action - -commit f7baf0de8f8b7c22a8059dc9f6ade459ad7a713e -Author: Colin Copeland -Date: Sat May 18 16:25:00 2019 -0400 - - add petition app - -commit 7dd28d8b873cd4b7ccc03aafae894287b6634be5 -Author: Colin Copeland -Date: Sat May 18 16:23:35 2019 -0400 - - pin ciprs-reader - -commit 09862ad0363479105a19027f3742e3ba021204bc -Author: Colin Copeland -Date: Sat May 18 15:20:34 2019 -0400 - - make editable - -commit 237f30d3923373734215e458f7514f5d391f2255 -Author: Colin Copeland -Date: Sat May 18 14:26:09 2019 -0400 - - remove about page; pass protect home page - -commit 4c02cb95c098d1bedd621a4f5896e08faf4635ae -Author: Colin Copeland -Date: Sat May 18 14:21:06 2019 -0400 - - update sentry - -commit bc35896dacc522218559364b38dd6a1b67a8328d -Author: Colin Copeland -Date: Sat May 18 14:20:46 2019 -0400 - - disable socialauth - -commit 8c342f3d58ce70afd73f3cce64a82bc4d761c87a -Author: Colin Copeland -Date: Sat May 18 14:04:49 2019 -0400 - - add ciprs-reader - -commit 2d8cd735204554ab9f46fa6603cba4c111384184 -Author: Colin Copeland -Date: Sat May 18 14:04:21 2019 -0400 - - add back postgres to entrypoint - -commit f51b76ca546fc5758d3ed740a4d12f0ba54f2866 -Author: Colin Copeland -Date: Sat May 18 13:57:05 2019 -0400 - - try to debug prod docker setup (not used) - -commit 3a28fd759b5817efa10c13214196cb0d70f4c278 -Author: Colin Copeland -Date: Sat May 18 13:56:41 2019 -0400 - - add poppler-utils - -commit 76778885377be9cf7c0b0d38151e68fa97b5d754 -Author: Colin Copeland -Date: Sat May 18 13:49:36 2019 -0400 - - add pdftotext buildpack - -commit 40cba5241e8db54c719c1ba58b92c543e000f156 -Author: Colin Copeland -Date: Sat May 18 13:43:12 2019 -0400 - - add buildpacks - -commit 10e740febf21fe01edb25dd111125916fb2f6f8b -Author: Colin Copeland -Date: Sat May 18 13:39:57 2019 -0400 - - add heroku docs start - -commit 284aa20dfca791a78df57f63036d096ec1f3baf1 -Author: Colin Copeland -Date: Sat May 18 13:32:45 2019 -0400 - - try adding migrate to start script - -commit 538d02ea6d254d4a30de1d27953fb431a0db360b -Author: Colin Copeland -Date: Sat May 18 13:18:53 2019 -0400 - - add curl - -commit 23f4d706c8f9bd505b9e2d1f8b412bccc09c0801 -Author: Colin Copeland -Date: Sat May 18 13:15:48 2019 -0400 - - enable release step again - -commit c0c2b6cdb204afbb9e06bfe5b995627b20ec18e8 -Author: Colin Copeland -Date: Sat May 18 12:47:53 2019 -0400 - - disable release - -commit 79a4aa9b4e62e26a25de7760bfe8ae752c7f0520 -Author: Colin Copeland -Date: Sat May 18 12:41:50 2019 -0400 - - fix release script name - -commit a90ddc7ce4369df59769f177dbece0e6660a0f5f -Author: Colin Copeland -Date: Sat May 18 12:30:00 2019 -0400 - - change to web name - -commit 5c3361ffe67e311f8bbe96060a8b9c7f2f4652cd -Author: Colin Copeland -Date: Sat May 18 10:56:46 2019 -0400 - - add release step - -commit 4ede876d4386436c6a8ed8e3c0bf0959238a9531 -Author: Colin Copeland -Date: Sat May 18 10:37:20 2019 -0400 - - don't use S3 for staticfiles - -commit 2436d142be127028eaceb1889e122b22694c5fdd -Author: Colin Copeland -Date: Sat May 18 10:29:17 2019 -0400 - - bind to heroku port env variable - -commit a97471b695aad523885d059681760b4f86e233eb -Author: Colin Copeland -Date: Sat May 18 10:21:36 2019 -0400 - - change gunicorn path; set port 800 - -commit 5941d163cf3dd7cd902631ba45bf94a169a8d84f -Author: Colin Copeland -Date: Sat May 18 10:01:54 2019 -0400 - - make executable - -commit d22b0b454b703af1fd2c3fc658192a61043e5247 -Author: Colin Copeland -Date: Sat May 18 09:44:27 2019 -0400 - - just use DATABASE_URL on heroku - -commit d15a0a031d53df0c307ea8335a831eca5aee4b55 -Author: Colin Copeland -Date: Sat May 18 09:25:41 2019 -0400 - - update pip3 - -commit 5435ef1ae59bc71b0db431166bbaa45d6cdceccb -Author: Colin Copeland -Date: Sat May 18 09:22:48 2019 -0400 - - add missing slash - -commit d32d44f02285fbc2b6d7dc317c5f7e02e157faba -Author: Colin Copeland -Date: Sat May 18 09:22:19 2019 -0400 - - switch to alpine image; add git and poppler-utils - -commit d447a785cccf12094e16ab620662ec0068c49347 -Author: Colin Copeland -Date: Sat May 18 09:19:27 2019 -0400 - - move prod dockerfie - -commit 2ff572b65e793f291416456b72ba39e8a680e43a -Author: Colin Copeland -Date: Sat May 18 09:14:16 2019 -0400 - - add heroku.yml - -commit b7b424b8bca47329368699b75ae2a200288d9727 -Author: George Helman -Date: Sun May 12 21:59:59 2019 -0400 - - Made it into a command line utility - -commit ffc58f0d5a9349109a508a6f67b06f5261fcae7a -Author: George Helman -Date: Sun May 12 21:51:07 2019 -0400 - - Created pdf writer library and script using both reader and writer libraries to go from initial input to final output - -commit da52661779e1787f1007b6e1039de8d73d041a3a -Author: George Helman -Date: Wed Apr 24 21:05:00 2019 -0400 - - Finished creating regex searches for relevant fields - -commit 063865459349be6db1ebbdcaa819d6a85b8842a9 -Author: Colin Copeland -Date: Sun Apr 14 21:30:32 2019 -0400 - - pdfminer - -commit 3e35dd27700b20c60a25bbe997b86eb26c0014c7 -Author: Colin Copeland -Date: Sun Apr 14 09:19:04 2019 -0400 - - add cypress PDF exploration - -commit 3aad8bd9441c331ea9f21b2c2fb5b0552c2cc105 -Author: Colin Copeland -Date: Sat Apr 13 15:42:43 2019 -0400 - - add pdfrw - -commit 527af7a4dae23fedce6d67fe9469d0ad19cb4992 -Author: Colin Copeland -Date: Sat Apr 13 15:34:39 2019 -0400 - - add jupyter lab - -commit d580d66c1b24567761d54e829bed1f2951a49a8f -Author: Colin Copeland -Date: Sat Apr 13 14:30:30 2019 -0400 - - move local docker setup to top of readme - -commit 3e1bde0d8e394cc5b810123283a703f5c581a6d5 -Author: Colin Copeland -Date: Sat Apr 13 14:11:16 2019 -0400 - - upgrade to Django 2.2 - -commit 71285779fc10274554c067ebff8c64e76da6df05 -Author: Colin Copeland -Date: Sat Apr 13 14:11:01 2019 -0400 - - disable celery for now - -commit 23f94be529b8411400c6382b5e6691dd5d9e2208 -Author: Colin Copeland -Date: Sat Apr 13 14:10:36 2019 -0400 - - set tz to America/New_York - -commit fb2c4cbfead4f2198b8e8971eb488fe228169533 -Author: Colin Copeland -Date: Sat Apr 13 14:10:24 2019 -0400 - - use redis alpine - -commit b548a239ac560f43b2304b413d451e767b9a4fde -Author: Colin Copeland -Date: Sat Apr 13 14:10:11 2019 -0400 - - use postgres alpine - -commit 8ed3fd4e555956195d9b796ac0ba485a9d3a5eff -Author: Colin Copeland -Date: Sat Apr 13 13:52:19 2019 -0400 - - initial commit diff --git a/src/features/OffenseTable/OffenseTable.jsx b/src/features/OffenseTable/OffenseTable.jsx index b2ea9c81..829ade1d 100644 --- a/src/features/OffenseTable/OffenseTable.jsx +++ b/src/features/OffenseTable/OffenseTable.jsx @@ -23,7 +23,6 @@ const toNormalCase = (str) => `${str.charAt(0).toUpperCase()}${str.slice(1).toLo function OffenseRow({ offenseRecord, selected, onSelect, dob, warnings }) { const [showDetails, setShowDetails] = useState(false); - let warnings2 = [...warnings, 'warning 1', 'warning 2']; return ( @@ -36,7 +35,7 @@ function OffenseRow({ offenseRecord, selected, onSelect, dob, warnings }) { {warnings.length > 0 && ( ( + tooltipContent={warnings.map((warning, index) => (
{warning}
))} offset={[0, 10]}