From 96289b05cbd6136e319f25564b4a42e15cbd4eb4 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 15 Apr 2024 11:35:54 -0400 Subject: [PATCH 01/39] T3:Cat2 CITIZENSHIP_STATUS --- .../tdpservice/parsers/schema_defs/tanf/t3.py | 2 +- .../tdpservice/parsers/test/test_parse.py | 35 +++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index c5554a1820..04b4f4f18e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -293,7 +293,7 @@ startIndex=51, endIndex=52, required=False, - validators=[validators.oneOf([0, 1, 2, 9])], + validators=[validators.oneOf([1, 2, 9])], ), Field( item="77A", diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 62cbfab880..f839599d33 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1676,3 +1676,38 @@ def test_parse_no_records_file(no_records_file, dfs): assert error.error_type == ParserErrorCategoryChoices.PRE_CHECK assert error.content_type is None assert error.object_id is None + + +@pytest.fixture +def t3_cat2_invalid_citizenship_file(): + """Fixture for T3 file with an invalid CITIZENSHIP_STATUS.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='t2_invalid_dob_file.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A06 TAN1EN\n' + b'T320201011111111112420190127WTTTT90W022212222204398000000000 ' + b' \n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +# @pytest.mark.parametrize("") +def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs): + """Test parsing a TANF T3 record with an invalid CITIZENSHIP_STATUS.""" + dfs.datafile = t3_cat2_invalid_citizenship_file + t3_cat2_invalid_citizenship_file.year = 2021 + t3_cat2_invalid_citizenship_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(t3_cat2_invalid_citizenship_file, dfs) + + parser_errors = ParserError.objects.filter(file=t3_cat2_invalid_citizenship_file).order_by("pk") + + assert parser_errors.count() == 1 + + citizenship_status_error = parser_errors.first() + + assert citizenship_status_error.error_message == "T3: 0 is not in [1, 2, 9]." From 23b6e28b7538dd5599de2f5de52088b0007faa6f Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 17 Apr 2024 11:02:31 -0400 Subject: [PATCH 02/39] SSP M2 validation changes --- .../tdpservice/parsers/schema_defs/ssp/m2.py | 9 ++-- .../tdpservice/parsers/test/test_parse.py | 41 +++++++++++++++++-- tdrs-backend/tdpservice/parsers/validators.py | 2 +- 3 files changed, 44 insertions(+), 8 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index 0f72a48e16..802b9067c5 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -370,14 +370,15 @@ item="37", name='EDUCATION_LEVEL', friendly_name="education level", - type='number', + type='string', startIndex=55, endIndex=57, required=False, validators=[ validators.or_validators( validators.isInLimits(0, 16), validators.isInLimits(98, 99) - ) + ), + validators.notMatches('00') ] ), Field( @@ -388,7 +389,7 @@ startIndex=57, endIndex=58, required=False, - validators=[validators.oneOf([0, 1, 2, 3, 9])] + validators=[validators.oneOf([1, 2, 3, 9])] ), Field( item="39", @@ -398,7 +399,7 @@ startIndex=58, endIndex=59, required=False, - validators=[validators.oneOf([0, 1, 2, 9])] + validators=[validators.oneOf([1, 2, 9])] ), Field( item="40", diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index f839599d33..48bcd7663d 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1684,9 +1684,9 @@ def t3_cat2_invalid_citizenship_file(): parsing_file = ParsingFileFactory( year=2021, quarter='Q1', - file__name='t2_invalid_dob_file.txt', + file__name='t3_invalid_citizenship_file.txt', file__section='Active Case Data', - file__data=(b'HEADER20204A06 TAN1EN\n' + file__data=(b'HEADER20204A06 TAN1ED\n' b'T320201011111111112420190127WTTTT90W022212222204398000000000 ' b' \n' b'TRAILER0000001 ') @@ -1694,7 +1694,6 @@ def t3_cat2_invalid_citizenship_file(): return parsing_file @pytest.mark.django_db() -# @pytest.mark.parametrize("") def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs): """Test parsing a TANF T3 record with an invalid CITIZENSHIP_STATUS.""" dfs.datafile = t3_cat2_invalid_citizenship_file @@ -1711,3 +1710,39 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs citizenship_status_error = parser_errors.first() assert citizenship_status_error.error_message == "T3: 0 is not in [1, 2, 9]." + +@pytest.fixture +def m2_cat2_invalid_37_38_39_file(): + """Fixture for M2 file with an invaliud EDUCATION_LEVEL, CITIZENSHIP_STATUS, and COOPERATION_CHILD_SUPPORT.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + file__name='m2_cat2_invalid_37_38_39_file.txt', + section='SSP Active Case Data', + file__data=(b'HEADER20234A24 SSP1ED\n' + b'M2202310111111111275219811103WTTT#PW@W2221222222225012200001011935000000000000000000000000000000000000000000000000000000000000225300000000000000000000\n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs): + """Test parsing an SSP M2 file with an invaliud EDUCATION_LEVEL, CITIZENSHIP_STATUS, and COOPERATION_CHILD_SUPPORT.""" + dfs.datafile = m2_cat2_invalid_37_38_39_file + m2_cat2_invalid_37_38_39_file.year = 2024 + m2_cat2_invalid_37_38_39_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(m2_cat2_invalid_37_38_39_file, dfs) + + parser_errors = ParserError.objects.filter(file=m2_cat2_invalid_37_38_39_file).order_by("pk") + + assert parser_errors.count() == 3 + + education_level_error = parser_errors[0]; + citizenship_status_error = parser_errors[1]; + cooperation_child_support_error = parser_errors[2]; + + assert education_level_error.error_message == "M2: 00 matches 00." + assert citizenship_status_error.error_message == "M2: 0 is not in [1, 2, 3, 9]." + assert cooperation_child_support_error.error_message == "M2: 0 is not in [1, 2, 9]." diff --git a/tdrs-backend/tdpservice/parsers/validators.py b/tdrs-backend/tdpservice/parsers/validators.py index 7fa36c581c..509127d27c 100644 --- a/tdrs-backend/tdpservice/parsers/validators.py +++ b/tdrs-backend/tdpservice/parsers/validators.py @@ -426,7 +426,7 @@ def isSmallerThanOrEqualTo(UpperBound): def isInLimits(LowerBound, UpperBound): """Validate that value is in a range including the limits.""" return make_validator( - lambda value: value >= LowerBound and value <= UpperBound, + lambda value: int(value) >= LowerBound and int(value) <= UpperBound, lambda value, row_schema, friendly_name, item_num: f"{row_schema.record_type}: {value} is not larger or equal to {LowerBound} and " f"smaller or equal to {UpperBound}." From 33078624775643d9ed552e8ce056a0394ac1cd78 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 17 Apr 2024 11:45:20 -0400 Subject: [PATCH 03/39] M3 validation changes --- .../tdpservice/parsers/schema_defs/ssp/m3.py | 11 +++-- .../tdpservice/parsers/test/test_parse.py | 47 +++++++++++++++++-- 2 files changed, 50 insertions(+), 8 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index e4b173b2ec..ee68998c68 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -276,7 +276,7 @@ item="68", name='EDUCATION_LEVEL', friendly_name="education level", - type='number', + type='string', startIndex=49, endIndex=51, required=True, @@ -284,7 +284,8 @@ validators.or_validators( validators.isInStringRange(0, 16), validators.isInStringRange(98, 99) - ) + ), + validators.notMatches('00') ] ), Field( @@ -295,7 +296,7 @@ startIndex=51, endIndex=52, required=False, - validators=[validators.oneOf([0, 1, 2, 3, 9])] + validators=[validators.oneOf([1, 2, 3, 9])] ), Field( item="70A", @@ -590,7 +591,7 @@ item="68", name='EDUCATION_LEVEL', friendly_name="education level", - type='number', + type='string', startIndex=90, endIndex=92, required=True, @@ -609,7 +610,7 @@ startIndex=92, endIndex=93, required=False, - validators=[validators.oneOf([0, 1, 2, 3, 9])] + validators=[validators.oneOf([1, 2, 3, 9])] ), Field( item="70A", diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 48bcd7663d..59bbd78751 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1713,21 +1713,22 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs @pytest.fixture def m2_cat2_invalid_37_38_39_file(): - """Fixture for M2 file with an invaliud EDUCATION_LEVEL, CITIZENSHIP_STATUS, and COOPERATION_CHILD_SUPPORT.""" + """Fixture for M2 file with an invalid EDUCATION_LEVEL, CITIZENSHIP_STATUS, COOPERATION_CHILD_SUPPORT.""" parsing_file = ParsingFileFactory( year=2024, quarter='Q1', file__name='m2_cat2_invalid_37_38_39_file.txt', section='SSP Active Case Data', file__data=(b'HEADER20234A24 SSP1ED\n' - b'M2202310111111111275219811103WTTT#PW@W2221222222225012200001011935000000000000000000000000000000000000000000000000000000000000225300000000000000000000\n' + b'M2202310111111111275219811103WTTT#PW@W22212222222250122000010119350000000000000000000000000000000' + b'00000000000000000000000000000225300000000000000000000\n' b'TRAILER0000001 ') ) return parsing_file @pytest.mark.django_db() def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs): - """Test parsing an SSP M2 file with an invaliud EDUCATION_LEVEL, CITIZENSHIP_STATUS, and COOPERATION_CHILD_SUPPORT.""" + """Test parsing an SSP M2 file with an invalid EDUCATION_LEVEL, CITIZENSHIP_STATUS, COOPERATION_CHILD_SUPPORT.""" dfs.datafile = m2_cat2_invalid_37_38_39_file m2_cat2_invalid_37_38_39_file.year = 2024 m2_cat2_invalid_37_38_39_file.quarter = 'Q1' @@ -1746,3 +1747,43 @@ def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs) assert education_level_error.error_message == "M2: 00 matches 00." assert citizenship_status_error.error_message == "M2: 0 is not in [1, 2, 3, 9]." assert cooperation_child_support_error.error_message == "M2: 0 is not in [1, 2, 9]." + +@pytest.fixture +def m3_cat2_invalid_68_69_file(): + """Fixture for M3 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + file__name='m3_cat2_invalid_68_69_file.txt', + section='SSP Active Case Data', + file__data=(b'HEADER20234A24 SSP1ED\n' + b'M320231011111111127420110615WTTTP99B#22212222204300000000000\n' + b'M320231011111111127120110615WTTTP99B#2221222220430110000000042010010133333333300000001100000099998888\n' + b'TRAILER0000002 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): + """Test parsing an SSP M3 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" + dfs.datafile = m3_cat2_invalid_68_69_file + m3_cat2_invalid_68_69_file.year = 2024 + m3_cat2_invalid_68_69_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(m3_cat2_invalid_68_69_file, dfs) + + parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).order_by("pk") + + for error in parser_errors: + print(f"{error}") + + assert parser_errors.count() == 3 + + education_level_error = parser_errors[0]; + citizenship_status_1_error = parser_errors[1]; + citizenship_status_2_error = parser_errors[2]; + + assert education_level_error.error_message == "M3: 00 matches 00." + assert citizenship_status_1_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." + assert citizenship_status_2_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." \ No newline at end of file From 356b2097123205bb9cc707b29e23ba565e22d40b Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 17 Apr 2024 11:57:34 -0400 Subject: [PATCH 04/39] T3 update validation on part 2 --- .../tdpservice/parsers/schema_defs/tanf/t3.py | 2 +- .../tdpservice/parsers/test/test_parse.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py index 04b4f4f18e..dfd8f3d6ef 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py @@ -604,7 +604,7 @@ startIndex=92, endIndex=93, required=False, - validators=[validators.oneOf([0, 1, 2, 9])], + validators=[validators.oneOf([1, 2, 9])], ), Field( item="77A", diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 59bbd78751..20a814e00f 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1687,8 +1687,8 @@ def t3_cat2_invalid_citizenship_file(): file__name='t3_invalid_citizenship_file.txt', file__section='Active Case Data', file__data=(b'HEADER20204A06 TAN1ED\n' - b'T320201011111111112420190127WTTTT90W022212222204398000000000 ' - b' \n' + b'T320201011111111112420190127WTTTT90W022212222204398000000000\n' + b'T320201011111111112420190127WTTTT90W02221222220439810000000042010010133333333300000001100000099998888\n' b'TRAILER0000001 ') ) return parsing_file @@ -1705,11 +1705,13 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs parser_errors = ParserError.objects.filter(file=t3_cat2_invalid_citizenship_file).order_by("pk") - assert parser_errors.count() == 1 + assert parser_errors.count() == 2 - citizenship_status_error = parser_errors.first() + citizenship_status_1_error = parser_errors[0] + citizenship_status_2_error = parser_errors[1] - assert citizenship_status_error.error_message == "T3: 0 is not in [1, 2, 9]." + assert citizenship_status_1_error.error_message == "T3: 0 is not in [1, 2, 9]." + assert citizenship_status_2_error.error_message == "T3: 0 is not in [1, 2, 9]." @pytest.fixture def m2_cat2_invalid_37_38_39_file(): @@ -1758,7 +1760,8 @@ def m3_cat2_invalid_68_69_file(): section='SSP Active Case Data', file__data=(b'HEADER20234A24 SSP1ED\n' b'M320231011111111127420110615WTTTP99B#22212222204300000000000\n' - b'M320231011111111127120110615WTTTP99B#2221222220430110000000042010010133333333300000001100000099998888\n' + b'M320231011111111127120110615WTTTP99B#222122222043011000000004201001013333333330000000110000009999' + b'8888\n' b'TRAILER0000002 ') ) return parsing_file @@ -1775,9 +1778,6 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).order_by("pk") - for error in parser_errors: - print(f"{error}") - assert parser_errors.count() == 3 education_level_error = parser_errors[0]; From 87feef434a8502277b17a0512d9f66298762a301 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 17 Apr 2024 13:38:10 -0400 Subject: [PATCH 05/39] M3 validation --- .../tdpservice/parsers/schema_defs/ssp/m5.py | 10 +++--- .../tdpservice/parsers/test/test_parse.py | 36 ++++++++++++++++++- 2 files changed, 39 insertions(+), 7 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index 7ba6aa2c6f..bcbe4d7ff6 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -340,14 +340,15 @@ name="EDUCATION_LEVEL", friendly_name="education level", type="string", - startIndex=54, + startIndex=54, endIndex=56, required=False, validators=[ validators.or_validators( validators.isInStringRange(0, 16), validators.isInStringRange(98, 99), - ) + ), + validators.notMatches("00") ], ), Field( @@ -359,10 +360,7 @@ endIndex=57, required=False, validators=[ - validators.or_validators( - validators.isInLimits(0, 3), - validators.matches(9) - ) + validators.oneOf([1, 2, 3, 9]), ], ), Field( diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 20a814e00f..3c724e4bf3 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1786,4 +1786,38 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): assert education_level_error.error_message == "M3: 00 matches 00." assert citizenship_status_1_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." - assert citizenship_status_2_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." \ No newline at end of file + assert citizenship_status_2_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." + +@pytest.fixture +def m5_cat2_invalid_23_24_file(): + """Fixture for M5 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + file__name='m5_cat2_invalid_23_24_file.txt', + section='SSP Closed Case Data', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M520181011111111161519791106WTTTY0ZB922212222222210112000112970000\n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): + """Test parsing an SSP M5 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" + dfs.datafile = m5_cat2_invalid_23_24_file + m5_cat2_invalid_23_24_file.year = 2019 + m5_cat2_invalid_23_24_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(m5_cat2_invalid_23_24_file, dfs) + + parser_errors = ParserError.objects.filter(file=m5_cat2_invalid_23_24_file).order_by("pk") + + assert parser_errors.count() == 2 + + education_level_error = parser_errors[0]; + citizenship_status_error = parser_errors[1]; + + assert education_level_error.error_message == "M5: 00 matches 00." + assert citizenship_status_error.error_message == "M5: 0 is not in [1, 2, 3, 9]." From 118f624e81a1ee8df21305e19f01e9c11bd3d71e Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 17 Apr 2024 13:53:03 -0400 Subject: [PATCH 06/39] lint fixes --- .../tdpservice/parsers/schema_defs/ssp/m5.py | 2 +- .../tdpservice/parsers/test/test_parse.py | 23 ++++++++++--------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py index bcbe4d7ff6..080716cb0f 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py @@ -340,7 +340,7 @@ name="EDUCATION_LEVEL", friendly_name="education level", type="string", - startIndex=54, + startIndex=54, endIndex=56, required=False, validators=[ diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index fd81b3fb2a..1e55a27f52 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1713,8 +1713,9 @@ def t3_cat2_invalid_citizenship_file(): file__section='Active Case Data', file__data=(b'HEADER20204A06 TAN1ED\n' b'T320201011111111112420190127WTTTT90W022212222204398000000000\n' - b'T320201011111111112420190127WTTTT90W02221222220439810000000042010010133333333300000001100000099998888\n' - b'TRAILER0000001 ') + b'T320201011111111112420190127WTTTT90W0222122222043981000000004201001013333333330000000' + b'1100000099998888\n' + b'TRAILER0000002 ') ) return parsing_file @@ -1767,9 +1768,9 @@ def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs) assert parser_errors.count() == 3 - education_level_error = parser_errors[0]; - citizenship_status_error = parser_errors[1]; - cooperation_child_support_error = parser_errors[2]; + education_level_error = parser_errors[0] + citizenship_status_error = parser_errors[1] + cooperation_child_support_error = parser_errors[2] assert education_level_error.error_message == "M2: 00 matches 00." assert citizenship_status_error.error_message == "M2: 0 is not in [1, 2, 3, 9]." @@ -1805,9 +1806,9 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): assert parser_errors.count() == 3 - education_level_error = parser_errors[0]; - citizenship_status_1_error = parser_errors[1]; - citizenship_status_2_error = parser_errors[2]; + education_level_error = parser_errors[0] + citizenship_status_1_error = parser_errors[1] + citizenship_status_2_error = parser_errors[2] assert education_level_error.error_message == "M3: 00 matches 00." assert citizenship_status_1_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." @@ -1838,11 +1839,11 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): parse.parse_datafile(m5_cat2_invalid_23_24_file, dfs) parser_errors = ParserError.objects.filter(file=m5_cat2_invalid_23_24_file).order_by("pk") - + assert parser_errors.count() == 2 - education_level_error = parser_errors[0]; - citizenship_status_error = parser_errors[1]; + education_level_error = parser_errors[0] + citizenship_status_error = parser_errors[1] assert education_level_error.error_message == "M5: 00 matches 00." assert citizenship_status_error.error_message == "M5: 0 is not in [1, 2, 3, 9]." From 99841ec7621eb04fdfe7c16d6ff94009fcc7894e Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 17 Apr 2024 16:33:23 -0400 Subject: [PATCH 07/39] rest of the validators --- .../tdpservice/parsers/schema_defs/ssp/m1.py | 17 ++- .../tdpservice/parsers/schema_defs/ssp/m4.py | 13 +- .../tdpservice/parsers/schema_defs/tanf/t4.py | 13 +- .../parsers/schema_defs/tribal_tanf/t1.py | 10 +- .../parsers/schema_defs/tribal_tanf/t4.py | 12 +- .../tdpservice/parsers/test/test_parse.py | 142 ++++++++++++++++++ tdrs-backend/tdpservice/parsers/transforms.py | 7 + 7 files changed, 194 insertions(+), 20 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index a125727cb9..faffad487e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -1,7 +1,7 @@ """Schema for SSP M1 record type.""" - -from tdpservice.parsers.fields import Field +from ...transforms import zero_pad +from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M1DataSubmissionDocument @@ -133,15 +133,20 @@ required=True, validators=[validators.notEmpty()] ), - Field( + TransformField( + zero_pad(3), item="2", - name='COUNTY_FIPS_CODE', + name="COUNTY_FIPS_CODE", friendly_name="county fips code", - type='string', + type="string", startIndex=19, endIndex=22, required=True, - validators=[validators.isNumber(),] + validators=[ + validators.isInStringRange(1, 999), + validators.recordHasLength(3), + validators.isNumber() + ], ), Field( item="4", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index e5159ad216..2b8d10b490 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -1,7 +1,7 @@ """Schema for SSP M1 record type.""" - -from tdpservice.parsers.fields import Field +from ...transforms import zero_pad +from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M4DataSubmissionDocument @@ -54,7 +54,8 @@ required=True, validators=[validators.notEmpty()], ), - Field( + TransformField( + zero_pad(3), item="2", name="COUNTY_FIPS_CODE", friendly_name="county fips code", @@ -62,7 +63,11 @@ startIndex=19, endIndex=22, required=True, - validators=[validators.isInStringRange(0, 999)], + validators=[ + validators.isInStringRange(1, 999), + validators.recordHasLength(3), + validators.isNumber() + ], ), Field( item="4", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index ef68876c9d..991bdd137a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -1,7 +1,7 @@ """Schema for HEADER row of all submission types.""" - -from tdpservice.parsers.fields import Field +from ...transforms import zero_pad +from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T4DataSubmissionDocument @@ -55,7 +55,8 @@ required=True, validators=[validators.notEmpty()], ), - Field( + TransformField( + zero_pad(3), item="2", name="COUNTY_FIPS_CODE", friendly_name="county fips code", @@ -63,7 +64,11 @@ startIndex=19, endIndex=22, required=True, - validators=[validators.isInStringRange(1, 999)], + validators=[ + validators.isInStringRange(1, 999), + validators.recordHasLength(3), + validators.isNumber() + ], ), Field( item="5", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index 77fa5d58e5..4b1f84bbc6 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -1,6 +1,7 @@ """Schema for Tribal TANF T1 record types.""" -from ...fields import Field +from ...transforms import zero_pad +from ...fields import Field, TransformField from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T1DataSubmissionDocument @@ -156,7 +157,8 @@ required=True, validators=[validators.notEmpty()], ), - Field( + TransformField( + zero_pad(3), item="2", name="COUNTY_FIPS_CODE", friendly_name="county fips code", @@ -165,7 +167,9 @@ endIndex=22, required=False, validators=[ - validators.isNumber(), + validators.isInStringRange(1, 999), + validators.recordHasLength(3), + validators.isNumber() ], ), Field( diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index ecb0a1548a..c5193fe304 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -1,6 +1,7 @@ """Schema for Tribal TANF T4 record types.""" -from ...fields import Field +from ...transforms import zero_pad +from ...fields import Field, TransformField from ...row_schema import RowSchema, SchemaManager from ... import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T4DataSubmissionDocument @@ -54,7 +55,8 @@ required=True, validators=[validators.notEmpty()], ), - Field( + TransformField( + zero_pad(3), item="2", name="COUNTY_FIPS_CODE", friendly_name="county fips code", @@ -62,7 +64,11 @@ startIndex=19, endIndex=22, required=False, - validators=[validators.matches("000")], + validators=[ + validators.isInStringRange(1, 999), + validators.recordHasLength(3), + validators.isNumber() + ], ), Field( item="5", diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 1e55a27f52..5a3815967f 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1847,3 +1847,145 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): assert education_level_error.error_message == "M5: 00 matches 00." assert citizenship_status_error.error_message == "M5: 0 is not in [1, 2, 3, 9]." + +@pytest.fixture +def t4_cat2_country_fips_code_zero_pad_file(): + """Fixture for TANF T4 COUNTRY_FIPS_CODE without leading zeros.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + section='Closed Case Data', + file__name='t4_cat2_country_fips_code_zero_pad_file.txt', + file__data=(b'HEADER20204C06 TAN1ED\n' + b'T420201011111111158 101400141123113 \n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_t4_cat2_country_fips_code_zero_pad_file(t4_cat2_country_fips_code_zero_pad_file, dfs): + """Test parsing a TANF T4 COUNTRY_FIPS_CODE without leading zeros.""" + dfs.datafile = t4_cat2_country_fips_code_zero_pad_file + t4_cat2_country_fips_code_zero_pad_file.year = 2021 + t4_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(t4_cat2_country_fips_code_zero_pad_file, dfs) + + parser_errors = ParserError.objects.filter(file=t4_cat2_country_fips_code_zero_pad_file).order_by("pk") + + assert parser_errors.count() == 0 + +@pytest.fixture +def m1_cat2_country_fips_code_zero_pad_file(): + """Fixture for SSP M1 COUNTRY_FIPS_CODE without leading zeros.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + section='SSP Active Case Data', + file__name='m1_cat2_country_fips_code_zero_pad_file.txt', + file__data=(b'HEADER20234A24 SSP1ED\n' + b'M120231011111111127 1014003510213211002720000000000000001054000000000000000000000000000000000022' + b'2222000000002229 \n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_m1_cat2_country_fips_code_zero_pad_file(m1_cat2_country_fips_code_zero_pad_file, dfs): + """Test parsing a SSP M1 COUNTRY_FIPS_CODE without leading zeros.""" + dfs.datafile = m1_cat2_country_fips_code_zero_pad_file + m1_cat2_country_fips_code_zero_pad_file.year = 2024 + m1_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(m1_cat2_country_fips_code_zero_pad_file, dfs) + + parser_errors = ParserError.objects.filter(file=m1_cat2_country_fips_code_zero_pad_file).order_by("pk") + + assert parser_errors.count() == 0 + +@pytest.fixture +def m4_cat2_country_fips_code_zero_pad_file(): + """Fixture for SSP M4 COUNTRY_FIPS_CODE without leading zeros.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + section='SSP Closed Case Data', + file__name='m4_cat2_country_fips_code_zero_pad_file.txt', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M420181011111111161 100406911161112 \n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_m4_cat2_country_fips_code_zero_pad_file(m4_cat2_country_fips_code_zero_pad_file, dfs): + """Test parsing a SSP M4 COUNTRY_FIPS_CODE without leading zeros.""" + dfs.datafile = m4_cat2_country_fips_code_zero_pad_file + m4_cat2_country_fips_code_zero_pad_file.year = 2019 + m4_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(m4_cat2_country_fips_code_zero_pad_file, dfs) + + parser_errors = ParserError.objects.filter(file=m4_cat2_country_fips_code_zero_pad_file).order_by("pk") + + assert parser_errors.count() == 0 + +@pytest.fixture +def tribal_t1_cat2_country_fips_code_zero_pad_file(): + """Fixture for Tribal T1 COUNTRY_FIPS_CODE without leading zeros.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + section='Tribal Active Case Data', + file__name='tribal_t1_cat2_country_fips_code_zero_pad_file.txt', + file__data=(b'HEADER20214A00142TAN1ED\n' + b'T120211011111111119255 140245112 23322 03 0 0 0 502 9 0 0 0 0 0 0 0 0 3 02' + b'22222 0 0222 12 \n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_tribal_t1_cat2_country_fips_code_zero_pad_file(tribal_t1_cat2_country_fips_code_zero_pad_file, dfs): + """Test parsing a Tribal T1 COUNTRY_FIPS_CODE without leading zeros.""" + dfs.datafile = tribal_t1_cat2_country_fips_code_zero_pad_file + tribal_t1_cat2_country_fips_code_zero_pad_file.year = 2022 + tribal_t1_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(tribal_t1_cat2_country_fips_code_zero_pad_file, dfs) + + parser_errors = ParserError.objects.filter(file=tribal_t1_cat2_country_fips_code_zero_pad_file).order_by("pk") + + assert parser_errors.count() == 0 + +@pytest.fixture +def tribal_t4_cat2_country_fips_code_zero_pad_file(): + """Fixture for Tribal T4 COUNTRY_FIPS_CODE without leading zeros.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + section='Tribal Closed Case Data', + file__name='tribal_t4_cat2_country_fips_code_zero_pad_file.txt', + file__data=(b'HEADER20194C00142TAN1ED\n' + b'T420191011111111762 1 0402451153123 \n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.mark.django_db() +def test_parse_tribal_t4_cat2_country_fips_code_zero_pad_file(tribal_t4_cat2_country_fips_code_zero_pad_file, dfs): + """Test parsing a Tribal T4 COUNTRY_FIPS_CODE without leading zeros.""" + dfs.datafile = tribal_t4_cat2_country_fips_code_zero_pad_file + tribal_t4_cat2_country_fips_code_zero_pad_file.year = 2020 + tribal_t4_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' + dfs.save() + + parse.parse_datafile(tribal_t4_cat2_country_fips_code_zero_pad_file, dfs) + + parser_errors = ParserError.objects.filter(file=tribal_t4_cat2_country_fips_code_zero_pad_file).order_by("pk") + + assert parser_errors.count() == 0 diff --git a/tdrs-backend/tdpservice/parsers/transforms.py b/tdrs-backend/tdpservice/parsers/transforms.py index 75e4b2fe6e..2a6046f4f5 100644 --- a/tdrs-backend/tdpservice/parsers/transforms.py +++ b/tdrs-backend/tdpservice/parsers/transforms.py @@ -29,3 +29,10 @@ def ssp_ssn_decryption_func(value, **kwargs): decryption_table = str.maketrans(decryption_dict) return value.translate(decryption_table) return value + +def zero_pad(digits): + """Zero pad a string""" + def transform(value, **kwargs): + return value.lstrip().zfill(digits) + return transform + From d6d9432a306bdef77e6488303bfb96a8706b8d8a Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 22 Apr 2024 10:08:44 -0400 Subject: [PATCH 08/39] Fixing data file so test still fails, used to fail because != 000 --- .../parsers/test/data/ADS.E2J.FTP2.TS142.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.FTP2.TS142.txt b/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.FTP2.TS142.txt index 7ef4b46b03..4078f53eea 100644 --- a/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.FTP2.TS142.txt +++ b/tdrs-backend/tdpservice/parsers/test/data/ADS.E2J.FTP2.TS142.txt @@ -1,21 +1,21 @@ HEADER20194C00142TAN1ED -T420191011111111762255 0402451153123 +T420191011111111762 1 0402451153123 T520191011111111762120160102WTTTTT@YB2122222222221 822981 0 03 0 0 T520191011111111762120170526WTTTTTZPW2122221222221 822981 0 03 0 0 T520191011111111762319880112WTTTTTTY#2222212222222 122161 1591 0 0 T520191011111111762319610502WTTTTTT##2222212222222 222161 0601 0 0 -T420191011111112343255 0402451 91113 +T420191011111112343 1 0402451 91113 T520191011111112343119860308WTTTTTTTY2122222222221 122111 44162 0 0 -T420191011111112970255 0403561 91112 +T420191011111112970 1 0403561 91112 T520191011111112970119940807WTTTTT@#Z2122221222221 122121 10501 0 0 -T420191111111111339255 0403561 83113 +T420191111111111339 1 0403561 83113 T520191111111111339119880402WTTTTTZ#B2122221222223 221121 3571 0 0 T520191111111111339119970502WTTTTTTYB2122222222221 111111 8522 0 0 -T420191111111112073255 0403561151123 +T420191111111112073 1 0403561151123 T520191111111112073319900312WTTTTTT0@2122222222222 122121 0601 0 0 T520191111111112073319920507WTTTTT@B02122221222222 222121 0601 0 0 T520191111111112073120090514WTTTTT@@@2122222222221 822 11 0 03 0 0 -T420191111111112472255 0403561183113 +T420191111111112472 1 0403561183113 T520191111111112472120140814WTTTTTZZ02222212222221 422981 0 03 0 0 T520191111111112472119840305WTTTTT90W2122221222221 122101 40202 0 0 TRAILER 19 From 5ecfea167f5fbb865af933b3fbf02913627a51cc Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 22 Apr 2024 10:09:45 -0400 Subject: [PATCH 09/39] lint --- tdrs-backend/tdpservice/parsers/transforms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/transforms.py b/tdrs-backend/tdpservice/parsers/transforms.py index 2a6046f4f5..4a43922bef 100644 --- a/tdrs-backend/tdpservice/parsers/transforms.py +++ b/tdrs-backend/tdpservice/parsers/transforms.py @@ -31,8 +31,7 @@ def ssp_ssn_decryption_func(value, **kwargs): return value def zero_pad(digits): - """Zero pad a string""" + """Zero pad a string.""" def transform(value, **kwargs): return value.lstrip().zfill(digits) return transform - From 915b9a46933b309926c6b165e314be1266b58be7 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 29 Apr 2024 10:41:48 -0400 Subject: [PATCH 10/39] search index type changes --- .../search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py | 4 ++-- tdrs-backend/tdpservice/search_indexes/models/ssp.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py index 413859b9c9..d8962a8b92 100644 --- a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py +++ b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py @@ -87,7 +87,7 @@ class Migration(migrations.Migration): ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), ('NEEDS_PREGNANT_WOMAN', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.IntegerField(null=True)), + ('EDUCATION_LEVEL', models.CharField(null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('COOPERATION_CHILD_SUPPORT', models.IntegerField(null=True)), ('EMPLOYMENT_STATUS', models.IntegerField(null=True)), @@ -154,7 +154,7 @@ class Migration(migrations.Migration): ('RECEIVE_SSI', models.IntegerField(null=True)), ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.IntegerField(null=True)), + ('EDUCATION_LEVEL', models.CharField(null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('UNEARNED_SSI', models.IntegerField(null=True)), ('OTHER_UNEARNED_INCOME', models.IntegerField(null=True)), diff --git a/tdrs-backend/tdpservice/search_indexes/models/ssp.py b/tdrs-backend/tdpservice/search_indexes/models/ssp.py index b11e6fff5e..3f3b928f00 100644 --- a/tdrs-backend/tdpservice/search_indexes/models/ssp.py +++ b/tdrs-backend/tdpservice/search_indexes/models/ssp.py @@ -113,7 +113,7 @@ class SSP_M2(models.Model): RELATIONSHIP_HOH = models.IntegerField(null=True, blank=False) PARENT_MINOR_CHILD = models.IntegerField(null=True, blank=False) NEEDS_PREGNANT_WOMAN = models.IntegerField(null=True, blank=False) - EDUCATION_LEVEL = models.IntegerField(null=True, blank=False) + EDUCATION_LEVEL = models.CharField(null=True, blank=False) CITIZENSHIP_STATUS = models.IntegerField(null=True, blank=False) COOPERATION_CHILD_SUPPORT = models.IntegerField(null=True, blank=False) EMPLOYMENT_STATUS = models.IntegerField(null=True, blank=False) @@ -194,7 +194,7 @@ class SSP_M3(models.Model): RECEIVE_SSI = models.IntegerField(null=True, blank=False) RELATIONSHIP_HOH = models.IntegerField(null=True, blank=False) PARENT_MINOR_CHILD = models.IntegerField(null=True, blank=False) - EDUCATION_LEVEL = models.IntegerField(null=True, blank=False) + EDUCATION_LEVEL = models.CharField(null=True, blank=False) CITIZENSHIP_STATUS = models.IntegerField(null=True, blank=False) UNEARNED_SSI = models.IntegerField(null=True, blank=False) OTHER_UNEARNED_INCOME = models.IntegerField(null=True, blank=False) From 889716a16a71ab5b6fc1a6adb1d2b2831c19c2f4 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 29 Apr 2024 14:17:24 -0400 Subject: [PATCH 11/39] missed elastic schema change + autogen migration file --- .../migrations/0028_auto_20240429_1805.py | 23 +++++++++++++++++++ .../tdpservice/search_indexes/models/ssp.py | 4 ++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 tdrs-backend/tdpservice/search_indexes/migrations/0028_auto_20240429_1805.py diff --git a/tdrs-backend/tdpservice/search_indexes/migrations/0028_auto_20240429_1805.py b/tdrs-backend/tdpservice/search_indexes/migrations/0028_auto_20240429_1805.py new file mode 100644 index 0000000000..4a7cf36b40 --- /dev/null +++ b/tdrs-backend/tdpservice/search_indexes/migrations/0028_auto_20240429_1805.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.15 on 2024-04-29 18:05 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('search_indexes', '0027_tribal_ssp_tanf_dob_to_string'), + ] + + operations = [ + migrations.AlterField( + model_name='ssp_m2', + name='EDUCATION_LEVEL', + field=models.CharField(max_length=2, null=True), + ), + migrations.AlterField( + model_name='ssp_m3', + name='EDUCATION_LEVEL', + field=models.CharField(max_length=2, null=True), + ), + ] diff --git a/tdrs-backend/tdpservice/search_indexes/models/ssp.py b/tdrs-backend/tdpservice/search_indexes/models/ssp.py index 3f3b928f00..bb58403234 100644 --- a/tdrs-backend/tdpservice/search_indexes/models/ssp.py +++ b/tdrs-backend/tdpservice/search_indexes/models/ssp.py @@ -113,7 +113,7 @@ class SSP_M2(models.Model): RELATIONSHIP_HOH = models.IntegerField(null=True, blank=False) PARENT_MINOR_CHILD = models.IntegerField(null=True, blank=False) NEEDS_PREGNANT_WOMAN = models.IntegerField(null=True, blank=False) - EDUCATION_LEVEL = models.CharField(null=True, blank=False) + EDUCATION_LEVEL = models.CharField(max_length=2, null=True, blank=False) CITIZENSHIP_STATUS = models.IntegerField(null=True, blank=False) COOPERATION_CHILD_SUPPORT = models.IntegerField(null=True, blank=False) EMPLOYMENT_STATUS = models.IntegerField(null=True, blank=False) @@ -194,7 +194,7 @@ class SSP_M3(models.Model): RECEIVE_SSI = models.IntegerField(null=True, blank=False) RELATIONSHIP_HOH = models.IntegerField(null=True, blank=False) PARENT_MINOR_CHILD = models.IntegerField(null=True, blank=False) - EDUCATION_LEVEL = models.CharField(null=True, blank=False) + EDUCATION_LEVEL = models.CharField(max_length=2, null=True, blank=False) CITIZENSHIP_STATUS = models.IntegerField(null=True, blank=False) UNEARNED_SSI = models.IntegerField(null=True, blank=False) OTHER_UNEARNED_INCOME = models.IntegerField(null=True, blank=False) From bbd8bb843fe8ff55167e0a7af8a0326c2304e0a4 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 29 Apr 2024 15:11:01 -0400 Subject: [PATCH 12/39] test transform + remove redundant integration tests --- .../tdpservice/parsers/test/test_parse.py | 142 ------------------ .../parsers/test/test_transforms.py | 21 +++ 2 files changed, 21 insertions(+), 142 deletions(-) create mode 100644 tdrs-backend/tdpservice/parsers/test/test_transforms.py diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index b00c9bd11a..09d79d8f0d 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1872,145 +1872,3 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): assert education_level_error.error_message == "M5: 00 matches 00." assert citizenship_status_error.error_message == "M5: 0 is not in [1, 2, 3, 9]." - -@pytest.fixture -def t4_cat2_country_fips_code_zero_pad_file(): - """Fixture for TANF T4 COUNTRY_FIPS_CODE without leading zeros.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - section='Closed Case Data', - file__name='t4_cat2_country_fips_code_zero_pad_file.txt', - file__data=(b'HEADER20204C06 TAN1ED\n' - b'T420201011111111158 101400141123113 \n' - b'TRAILER0000001 ') - ) - return parsing_file - -@pytest.mark.django_db() -def test_parse_t4_cat2_country_fips_code_zero_pad_file(t4_cat2_country_fips_code_zero_pad_file, dfs): - """Test parsing a TANF T4 COUNTRY_FIPS_CODE without leading zeros.""" - dfs.datafile = t4_cat2_country_fips_code_zero_pad_file - t4_cat2_country_fips_code_zero_pad_file.year = 2021 - t4_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' - dfs.save() - - parse.parse_datafile(t4_cat2_country_fips_code_zero_pad_file, dfs) - - parser_errors = ParserError.objects.filter(file=t4_cat2_country_fips_code_zero_pad_file).order_by("pk") - - assert parser_errors.count() == 0 - -@pytest.fixture -def m1_cat2_country_fips_code_zero_pad_file(): - """Fixture for SSP M1 COUNTRY_FIPS_CODE without leading zeros.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - section='SSP Active Case Data', - file__name='m1_cat2_country_fips_code_zero_pad_file.txt', - file__data=(b'HEADER20234A24 SSP1ED\n' - b'M120231011111111127 1014003510213211002720000000000000001054000000000000000000000000000000000022' - b'2222000000002229 \n' - b'TRAILER0000001 ') - ) - return parsing_file - -@pytest.mark.django_db() -def test_parse_m1_cat2_country_fips_code_zero_pad_file(m1_cat2_country_fips_code_zero_pad_file, dfs): - """Test parsing a SSP M1 COUNTRY_FIPS_CODE without leading zeros.""" - dfs.datafile = m1_cat2_country_fips_code_zero_pad_file - m1_cat2_country_fips_code_zero_pad_file.year = 2024 - m1_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' - dfs.save() - - parse.parse_datafile(m1_cat2_country_fips_code_zero_pad_file, dfs) - - parser_errors = ParserError.objects.filter(file=m1_cat2_country_fips_code_zero_pad_file).order_by("pk") - - assert parser_errors.count() == 0 - -@pytest.fixture -def m4_cat2_country_fips_code_zero_pad_file(): - """Fixture for SSP M4 COUNTRY_FIPS_CODE without leading zeros.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - section='SSP Closed Case Data', - file__name='m4_cat2_country_fips_code_zero_pad_file.txt', - file__data=(b'HEADER20184C24 SSP1ED\n' - b'M420181011111111161 100406911161112 \n' - b'TRAILER0000001 ') - ) - return parsing_file - -@pytest.mark.django_db() -def test_parse_m4_cat2_country_fips_code_zero_pad_file(m4_cat2_country_fips_code_zero_pad_file, dfs): - """Test parsing a SSP M4 COUNTRY_FIPS_CODE without leading zeros.""" - dfs.datafile = m4_cat2_country_fips_code_zero_pad_file - m4_cat2_country_fips_code_zero_pad_file.year = 2019 - m4_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' - dfs.save() - - parse.parse_datafile(m4_cat2_country_fips_code_zero_pad_file, dfs) - - parser_errors = ParserError.objects.filter(file=m4_cat2_country_fips_code_zero_pad_file).order_by("pk") - - assert parser_errors.count() == 0 - -@pytest.fixture -def tribal_t1_cat2_country_fips_code_zero_pad_file(): - """Fixture for Tribal T1 COUNTRY_FIPS_CODE without leading zeros.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - section='Tribal Active Case Data', - file__name='tribal_t1_cat2_country_fips_code_zero_pad_file.txt', - file__data=(b'HEADER20214A00142TAN1ED\n' - b'T120211011111111119255 140245112 23322 03 0 0 0 502 9 0 0 0 0 0 0 0 0 3 02' - b'22222 0 0222 12 \n' - b'TRAILER0000001 ') - ) - return parsing_file - -@pytest.mark.django_db() -def test_parse_tribal_t1_cat2_country_fips_code_zero_pad_file(tribal_t1_cat2_country_fips_code_zero_pad_file, dfs): - """Test parsing a Tribal T1 COUNTRY_FIPS_CODE without leading zeros.""" - dfs.datafile = tribal_t1_cat2_country_fips_code_zero_pad_file - tribal_t1_cat2_country_fips_code_zero_pad_file.year = 2022 - tribal_t1_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' - dfs.save() - - parse.parse_datafile(tribal_t1_cat2_country_fips_code_zero_pad_file, dfs) - - parser_errors = ParserError.objects.filter(file=tribal_t1_cat2_country_fips_code_zero_pad_file).order_by("pk") - - assert parser_errors.count() == 0 - -@pytest.fixture -def tribal_t4_cat2_country_fips_code_zero_pad_file(): - """Fixture for Tribal T4 COUNTRY_FIPS_CODE without leading zeros.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - section='Tribal Closed Case Data', - file__name='tribal_t4_cat2_country_fips_code_zero_pad_file.txt', - file__data=(b'HEADER20194C00142TAN1ED\n' - b'T420191011111111762 1 0402451153123 \n' - b'TRAILER0000001 ') - ) - return parsing_file - -@pytest.mark.django_db() -def test_parse_tribal_t4_cat2_country_fips_code_zero_pad_file(tribal_t4_cat2_country_fips_code_zero_pad_file, dfs): - """Test parsing a Tribal T4 COUNTRY_FIPS_CODE without leading zeros.""" - dfs.datafile = tribal_t4_cat2_country_fips_code_zero_pad_file - tribal_t4_cat2_country_fips_code_zero_pad_file.year = 2020 - tribal_t4_cat2_country_fips_code_zero_pad_file.quarter = 'Q1' - dfs.save() - - parse.parse_datafile(tribal_t4_cat2_country_fips_code_zero_pad_file, dfs) - - parser_errors = ParserError.objects.filter(file=tribal_t4_cat2_country_fips_code_zero_pad_file).order_by("pk") - - assert parser_errors.count() == 0 diff --git a/tdrs-backend/tdpservice/parsers/test/test_transforms.py b/tdrs-backend/tdpservice/parsers/test/test_transforms.py new file mode 100644 index 0000000000..b88131d414 --- /dev/null +++ b/tdrs-backend/tdpservice/parsers/test/test_transforms.py @@ -0,0 +1,21 @@ +"""Test for Transforms.""" + +import pytest +from .. import transforms + +@pytest.mark.parametrize("value,digits,expected", [ + ("1", 3, "001"), + ("10", 3, "010"), + ("100", 3, "100"), + ("1000", 3, "1000"), + ("1 ", 3, "01 "), + ("1 ", 3, "1 "), + ("1", 0, "1"), + ("1", -1, "1") +]) +def test_zero_pad(value, digits, expected): + """Test zero_pad returns valid value.""" + transform = transforms.zero_pad(digits) + result = transform(value) + + assert result == expected From 3bb928712f1c6638d7354468979e184b48cfbd26 Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Mon, 29 Apr 2024 15:44:30 -0400 Subject: [PATCH 13/39] fixed autogenerated file --- .../search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py index d8962a8b92..8bae725de2 100644 --- a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py +++ b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py @@ -87,7 +87,7 @@ class Migration(migrations.Migration): ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), ('NEEDS_PREGNANT_WOMAN', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.CharField(null=True)), + ('EDUCATION_LEVEL', models.CharField(max_length=2, null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('COOPERATION_CHILD_SUPPORT', models.IntegerField(null=True)), ('EMPLOYMENT_STATUS', models.IntegerField(null=True)), @@ -154,7 +154,7 @@ class Migration(migrations.Migration): ('RECEIVE_SSI', models.IntegerField(null=True)), ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.CharField(null=True)), + ('EDUCATION_LEVEL', models.CharField(max_length=2, null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('UNEARNED_SSI', models.IntegerField(null=True)), ('OTHER_UNEARNED_INCOME', models.IntegerField(null=True)), From 0e1a013fbe03982d3d3821aabea06527e81ef64d Mon Sep 17 00:00:00 2001 From: Andrew Trimpe Date: Wed, 1 May 2024 10:39:05 -0400 Subject: [PATCH 14/39] move test fixtures --- .../tdpservice/parsers/test/conftest.py | 64 +++++++++++++++++++ .../tdpservice/parsers/test/test_parse.py | 62 ------------------ 2 files changed, 64 insertions(+), 62 deletions(-) create mode 100644 tdrs-backend/tdpservice/parsers/test/conftest.py diff --git a/tdrs-backend/tdpservice/parsers/test/conftest.py b/tdrs-backend/tdpservice/parsers/test/conftest.py new file mode 100644 index 0000000000..1754e66e37 --- /dev/null +++ b/tdrs-backend/tdpservice/parsers/test/conftest.py @@ -0,0 +1,64 @@ +"""Fixtures for parsing integration tests.""" +import pytest +from .factories import ParsingFileFactory + +@pytest.fixture +def t3_cat2_invalid_citizenship_file(): + """Fixture for T3 file with an invalid CITIZENSHIP_STATUS.""" + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q1', + file__name='t3_invalid_citizenship_file.txt', + file__section='Active Case Data', + file__data=(b'HEADER20204A06 TAN1ED\n' + b'T320201011111111112420190127WTTTT90W022212222204398000000000\n' + b'T320201011111111112420190127WTTTT90W0222122222043981000000004201001013333333330000000' + b'1100000099998888\n' + b'TRAILER0000002 ') + ) + return parsing_file + +@pytest.fixture +def m2_cat2_invalid_37_38_39_file(): + """Fixture for M2 file with an invalid EDUCATION_LEVEL, CITIZENSHIP_STATUS, COOPERATION_CHILD_SUPPORT.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + file__name='m2_cat2_invalid_37_38_39_file.txt', + section='SSP Active Case Data', + file__data=(b'HEADER20234A24 SSP1ED\n' + b'M2202310111111111275219811103WTTT#PW@W22212222222250122000010119350000000000000000000000000000000' + b'00000000000000000000000000000225300000000000000000000\n' + b'TRAILER0000001 ') + ) + return parsing_file + +@pytest.fixture +def m3_cat2_invalid_68_69_file(): + """Fixture for M3 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + file__name='m3_cat2_invalid_68_69_file.txt', + section='SSP Active Case Data', + file__data=(b'HEADER20234A24 SSP1ED\n' + b'M320231011111111127420110615WTTTP99B#22212222204300000000000\n' + b'M320231011111111127120110615WTTTP99B#222122222043011000000004201001013333333330000000110000009999' + b'8888\n' + b'TRAILER0000002 ') + ) + return parsing_file + +@pytest.fixture +def m5_cat2_invalid_23_24_file(): + """Fixture for M5 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" + parsing_file = ParsingFileFactory( + year=2024, + quarter='Q1', + file__name='m5_cat2_invalid_23_24_file.txt', + section='SSP Closed Case Data', + file__data=(b'HEADER20184C24 SSP1ED\n' + b'M520181011111111161519791106WTTTY0ZB922212222222210112000112970000\n' + b'TRAILER0000001 ') + ) + return parsing_file diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 09d79d8f0d..857ad7ea9a 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1727,23 +1727,6 @@ def test_parse_tribal_section_4_bad_quarter(tribal_section_4_bad_quarter, dfs): Tribal_TANF_T7.objects.count() == 0 - -@pytest.fixture -def t3_cat2_invalid_citizenship_file(): - """Fixture for T3 file with an invalid CITIZENSHIP_STATUS.""" - parsing_file = ParsingFileFactory( - year=2021, - quarter='Q1', - file__name='t3_invalid_citizenship_file.txt', - file__section='Active Case Data', - file__data=(b'HEADER20204A06 TAN1ED\n' - b'T320201011111111112420190127WTTTT90W022212222204398000000000\n' - b'T320201011111111112420190127WTTTT90W0222122222043981000000004201001013333333330000000' - b'1100000099998888\n' - b'TRAILER0000002 ') - ) - return parsing_file - @pytest.mark.django_db() def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs): """Test parsing a TANF T3 record with an invalid CITIZENSHIP_STATUS.""" @@ -1764,21 +1747,6 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs assert citizenship_status_1_error.error_message == "T3: 0 is not in [1, 2, 9]." assert citizenship_status_2_error.error_message == "T3: 0 is not in [1, 2, 9]." -@pytest.fixture -def m2_cat2_invalid_37_38_39_file(): - """Fixture for M2 file with an invalid EDUCATION_LEVEL, CITIZENSHIP_STATUS, COOPERATION_CHILD_SUPPORT.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - file__name='m2_cat2_invalid_37_38_39_file.txt', - section='SSP Active Case Data', - file__data=(b'HEADER20234A24 SSP1ED\n' - b'M2202310111111111275219811103WTTT#PW@W22212222222250122000010119350000000000000000000000000000000' - b'00000000000000000000000000000225300000000000000000000\n' - b'TRAILER0000001 ') - ) - return parsing_file - @pytest.mark.django_db() def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs): """Test parsing an SSP M2 file with an invalid EDUCATION_LEVEL, CITIZENSHIP_STATUS, COOPERATION_CHILD_SUPPORT.""" @@ -1801,22 +1769,6 @@ def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs) assert citizenship_status_error.error_message == "M2: 0 is not in [1, 2, 3, 9]." assert cooperation_child_support_error.error_message == "M2: 0 is not in [1, 2, 9]." -@pytest.fixture -def m3_cat2_invalid_68_69_file(): - """Fixture for M3 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - file__name='m3_cat2_invalid_68_69_file.txt', - section='SSP Active Case Data', - file__data=(b'HEADER20234A24 SSP1ED\n' - b'M320231011111111127420110615WTTTP99B#22212222204300000000000\n' - b'M320231011111111127120110615WTTTP99B#222122222043011000000004201001013333333330000000110000009999' - b'8888\n' - b'TRAILER0000002 ') - ) - return parsing_file - @pytest.mark.django_db() def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): """Test parsing an SSP M3 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" @@ -1839,20 +1791,6 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): assert citizenship_status_1_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." assert citizenship_status_2_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." -@pytest.fixture -def m5_cat2_invalid_23_24_file(): - """Fixture for M5 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" - parsing_file = ParsingFileFactory( - year=2024, - quarter='Q1', - file__name='m5_cat2_invalid_23_24_file.txt', - section='SSP Closed Case Data', - file__data=(b'HEADER20184C24 SSP1ED\n' - b'M520181011111111161519791106WTTTY0ZB922212222222210112000112970000\n' - b'TRAILER0000001 ') - ) - return parsing_file - @pytest.mark.django_db() def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): """Test parsing an SSP M5 file with an invalid EDUCATION_LEVEL and CITIZENSHIP_STATUS.""" From 3943595d3f7854e4dc2417076cfafef91dc73c41 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 14:13:15 -0400 Subject: [PATCH 15/39] - Use absolute paths --- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py | 2 +- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py | 2 +- tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py | 2 +- tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py | 2 +- tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index faffad487e..e4562c2348 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -1,6 +1,6 @@ """Schema for SSP M1 record type.""" -from ...transforms import zero_pad +from tdpservice.parsers.transforms import zero_pad from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index 2b8d10b490..7bee383743 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -1,6 +1,6 @@ """Schema for SSP M1 record type.""" -from ...transforms import zero_pad +from tdpservice.parsers.transforms import zero_pad from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index 991bdd137a..c1dd40c5e2 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -1,6 +1,6 @@ """Schema for HEADER row of all submission types.""" -from ...transforms import zero_pad +from tdpservice.parsers.transforms import zero_pad from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index 4b1f84bbc6..fff76464fe 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -1,6 +1,6 @@ """Schema for Tribal TANF T1 record types.""" -from ...transforms import zero_pad +from tdpservice.parsers.transforms import zero_pad from ...fields import Field, TransformField from ...row_schema import RowSchema, SchemaManager from ... import validators diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index c5193fe304..27f3228c82 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -1,6 +1,6 @@ """Schema for Tribal TANF T4 record types.""" -from ...transforms import zero_pad +from tdpservice.parsers.transforms import zero_pad from ...fields import Field, TransformField from ...row_schema import RowSchema, SchemaManager from ... import validators From 921a7a089a483a9ddf5314f4788c4e5a7686cc6e Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 14:41:25 -0400 Subject: [PATCH 16/39] - Update string fields to string validators - added field length validator --- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py | 2 +- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py | 3 +-- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py | 5 ++--- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py | 2 +- tdrs-backend/tdpservice/parsers/validators.py | 11 +++++++++++ 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index e4562c2348..a87882ff5b 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -144,7 +144,7 @@ required=True, validators=[ validators.isInStringRange(1, 999), - validators.recordHasLength(3), + validators.fieldHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py index 802b9067c5..c44bfc76a6 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py @@ -376,9 +376,8 @@ required=False, validators=[ validators.or_validators( - validators.isInLimits(0, 16), validators.isInLimits(98, 99) + validators.isInStringRange(1, 16), validators.isInStringRange(98, 99) ), - validators.notMatches('00') ] ), Field( diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py index ee68998c68..b255d7131d 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m3.py @@ -282,10 +282,9 @@ required=True, validators=[ validators.or_validators( - validators.isInStringRange(0, 16), + validators.isInStringRange(1, 16), validators.isInStringRange(98, 99) ), - validators.notMatches('00') ] ), Field( @@ -597,7 +596,7 @@ required=True, validators=[ validators.or_validators( - validators.isInStringRange(0, 16), + validators.isInStringRange(1, 16), validators.isInStringRange(98, 99) ) ] diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index 7bee383743..f9905f0c17 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -65,7 +65,7 @@ required=True, validators=[ validators.isInStringRange(1, 999), - validators.recordHasLength(3), + validators.fieldHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/validators.py b/tdrs-backend/tdpservice/parsers/validators.py index d41241d62c..c10ea974e9 100644 --- a/tdrs-backend/tdpservice/parsers/validators.py +++ b/tdrs-backend/tdpservice/parsers/validators.py @@ -274,6 +274,17 @@ def recordHasLength(length): ) +def fieldHasLength(length): + """Validate that the field value (string or array) has a length matching length param.""" + return make_validator( + lambda value: len(value) == length, + lambda value, + row_schema, + friendly_name, + item_num: f"{row_schema.record_type} field length is {len(value)} characters but must be {length}.", + ) + + def intHasLength(num_digits): """Validate the number of digits in an integer.""" return make_validator( From d6464834f2def46d8ba7239d939f03152ce41de4 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 14:46:06 -0400 Subject: [PATCH 17/39] - use absolute paths - update Tanf t1 to use transform field --- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m6.py | 8 ++++---- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m7.py | 8 ++++---- tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py | 10 +++++++--- .../tdpservice/parsers/schema_defs/tribal_tanf/t1.py | 6 +++--- .../tdpservice/parsers/schema_defs/tribal_tanf/t2.py | 8 ++++---- .../tdpservice/parsers/schema_defs/tribal_tanf/t3.py | 8 ++++---- .../tdpservice/parsers/schema_defs/tribal_tanf/t4.py | 6 +++--- .../tdpservice/parsers/schema_defs/tribal_tanf/t5.py | 8 ++++---- 8 files changed, 33 insertions(+), 29 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m6.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m6.py index e85bc8fb19..69d1bda7ae 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m6.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m6.py @@ -1,10 +1,10 @@ """Schema for HEADER row of all submission types.""" -from ...transforms import calendar_quarter_to_rpt_month_year -from ...fields import Field, TransformField -from ...row_schema import RowSchema, SchemaManager -from ... import validators +from tdpservice.parsers.transforms import calendar_quarter_to_rpt_month_year +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M6DataSubmissionDocument s1 = RowSchema( diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m7.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m7.py index 8d6664a438..39ecf8f84c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m7.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m7.py @@ -1,9 +1,9 @@ """Schema for TANF T7 Row.""" -from ...fields import Field, TransformField -from ...row_schema import RowSchema, SchemaManager -from ...transforms import calendar_quarter_to_rpt_month_year -from ... import validators +from tdpservice.parsers.transforms import calendar_quarter_to_rpt_month_year +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.ssp import SSP_M7DataSubmissionDocument schemas = [] diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py index 368365f3c8..728e0d8aed 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py @@ -1,6 +1,7 @@ """Schema for t1 record types.""" -from tdpservice.parsers.fields import Field +from tdpservice.parsers.transforms import zero_pad +from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tanf import TANF_T1DataSubmissionDocument @@ -155,7 +156,8 @@ required=True, validators=[validators.notEmpty()], ), - Field( + TransformField( + zero_pad(3), item="2", name="COUNTY_FIPS_CODE", friendly_name="county fips code", @@ -164,7 +166,9 @@ endIndex=22, required=True, validators=[ - validators.isNumber(), + validators.isInStringRange(1, 999), + validators.fieldHasLength(3), + validators.isNumber() ], ), Field( diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index fff76464fe..5404e47755 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -1,9 +1,9 @@ """Schema for Tribal TANF T1 record types.""" from tdpservice.parsers.transforms import zero_pad -from ...fields import Field, TransformField -from ...row_schema import RowSchema, SchemaManager -from ... import validators +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T1DataSubmissionDocument t1 = SchemaManager( diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index 396418cbae..1d7086d70a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -1,10 +1,10 @@ """Schema for Tribal TANF T2 row of all submission types.""" -from ...transforms import tanf_ssn_decryption_func -from ...fields import TransformField, Field -from ...row_schema import RowSchema, SchemaManager -from ... import validators +from tdpservice.parsers.transforms import tanf_ssn_decryption_func +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T2DataSubmissionDocument diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py index 2252407d45..3b96046c75 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py @@ -1,10 +1,10 @@ """Schema for Tribal TANF T3 row of all submission types.""" -from ...transforms import tanf_ssn_decryption_func -from ...fields import TransformField, Field -from ...row_schema import RowSchema, SchemaManager -from ... import validators +from tdpservice.parsers.transforms import tanf_ssn_decryption_func +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T3DataSubmissionDocument diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index 27f3228c82..53c299f75a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -1,9 +1,9 @@ """Schema for Tribal TANF T4 record types.""" from tdpservice.parsers.transforms import zero_pad -from ...fields import Field, TransformField -from ...row_schema import RowSchema, SchemaManager -from ... import validators +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T4DataSubmissionDocument diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index ef6769ac5d..34ab152ad1 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -1,10 +1,10 @@ """Schema for Tribal TANF T5 row of all submission types.""" -from ...transforms import tanf_ssn_decryption_func -from ...fields import TransformField, Field -from ...row_schema import RowSchema, SchemaManager -from ... import validators +from tdpservice.parsers.transforms import tanf_ssn_decryption_func +from tdpservice.parsers.fields import Field, TransformField +from tdpservice.parsers.row_schema import RowSchema, SchemaManager +from tdpservice.parsers import validators from tdpservice.search_indexes.documents.tribal import Tribal_TANF_T5DataSubmissionDocument From d3756a812b1729eaac9af1a67c1823f2b9fccb28 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 14:48:34 -0400 Subject: [PATCH 18/39] - rename migration --- ...28_auto_20240429_1805.py => 0028_education_level_to_string.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tdrs-backend/tdpservice/search_indexes/migrations/{0028_auto_20240429_1805.py => 0028_education_level_to_string.py} (100%) diff --git a/tdrs-backend/tdpservice/search_indexes/migrations/0028_auto_20240429_1805.py b/tdrs-backend/tdpservice/search_indexes/migrations/0028_education_level_to_string.py similarity index 100% rename from tdrs-backend/tdpservice/search_indexes/migrations/0028_auto_20240429_1805.py rename to tdrs-backend/tdpservice/search_indexes/migrations/0028_education_level_to_string.py From 56dd94165072574031163778159aeae935493c3b Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 15:59:04 -0400 Subject: [PATCH 19/39] - fixed comments surrounding tests --- .../tdpservice/parsers/test/test_parse.py | 39 ++++++++----------- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 857ad7ea9a..9caed26898 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1741,11 +1741,9 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs assert parser_errors.count() == 2 - citizenship_status_1_error = parser_errors[0] - citizenship_status_2_error = parser_errors[1] + for e in parser_errors: + assert e.error_message == "T3: 0 is not in [1, 2, 9]." - assert citizenship_status_1_error.error_message == "T3: 0 is not in [1, 2, 9]." - assert citizenship_status_2_error.error_message == "T3: 0 is not in [1, 2, 9]." @pytest.mark.django_db() def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs): @@ -1761,13 +1759,11 @@ def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs) assert parser_errors.count() == 3 - education_level_error = parser_errors[0] - citizenship_status_error = parser_errors[1] - cooperation_child_support_error = parser_errors[2] - - assert education_level_error.error_message == "M2: 00 matches 00." - assert citizenship_status_error.error_message == "M2: 0 is not in [1, 2, 3, 9]." - assert cooperation_child_support_error.error_message == "M2: 0 is not in [1, 2, 9]." + error_msgs = {"M2: 00 is not in range [1, 16]. or M2: 00 is not in range [98, 99].", + "M2: 0 is not in [1, 2, 3, 9].", + "M2: 0 is not in [1, 2, 9]."} + for e in parser_errors: + assert e.error_message in error_msgs @pytest.mark.django_db() def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): @@ -1781,15 +1777,13 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).order_by("pk") - assert parser_errors.count() == 3 + assert parser_errors.count() == 4 - education_level_error = parser_errors[0] - citizenship_status_1_error = parser_errors[1] - citizenship_status_2_error = parser_errors[2] + error_msgs = {"M3: 00 is not in range [1, 16]. or M3: 00 is not in range [98, 99].", + "M3: 0 is not in [1, 2, 3, 9]."} - assert education_level_error.error_message == "M3: 00 matches 00." - assert citizenship_status_1_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." - assert citizenship_status_2_error.error_message == "M3: 0 is not in [1, 2, 3, 9]." + for e in parser_errors: + assert e.error_message in error_msgs @pytest.mark.django_db() def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): @@ -1805,8 +1799,9 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): assert parser_errors.count() == 2 - education_level_error = parser_errors[0] - citizenship_status_error = parser_errors[1] + error_msgs = {"M5: 00 matches 00.", + "M5: 0 is not in [1, 2, 3, 9]."} + + for e in parser_errors: + assert e.error_message in error_msgs - assert education_level_error.error_message == "M5: 00 matches 00." - assert citizenship_status_error.error_message == "M5: 0 is not in [1, 2, 3, 9]." From 548d19cab411959f99782354dd8bd517e6d40742 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 15:59:54 -0400 Subject: [PATCH 20/39] - fix lint --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 9caed26898..06d47e5462 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1804,4 +1804,3 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): for e in parser_errors: assert e.error_message in error_msgs - From b7d413cadf5bcc0296f29ee82db90e173409cb74 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 15 May 2024 17:34:04 -0400 Subject: [PATCH 21/39] - excluding unnecessary cat4 errors --- tdrs-backend/tdpservice/parsers/test/test_parse.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 499604fa3c..f5fecf8de4 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1881,7 +1881,8 @@ def test_parse_t3_cat2_invalid_citizenship(t3_cat2_invalid_citizenship_file, dfs parse.parse_datafile(t3_cat2_invalid_citizenship_file, dfs) - parser_errors = ParserError.objects.filter(file=t3_cat2_invalid_citizenship_file).order_by("pk") + parser_errors = ParserError.objects.filter(file=t3_cat2_invalid_citizenship_file).exclude( + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") assert parser_errors.count() == 2 @@ -1899,7 +1900,8 @@ def test_parse_m2_cat2_invalid_37_38_39_file(m2_cat2_invalid_37_38_39_file, dfs) parse.parse_datafile(m2_cat2_invalid_37_38_39_file, dfs) - parser_errors = ParserError.objects.filter(file=m2_cat2_invalid_37_38_39_file).order_by("pk") + parser_errors = ParserError.objects.filter(file=m2_cat2_invalid_37_38_39_file).exclude( + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") assert parser_errors.count() == 3 @@ -1919,7 +1921,8 @@ def test_parse_m3_cat2_invalid_68_69_file(m3_cat2_invalid_68_69_file, dfs): parse.parse_datafile(m3_cat2_invalid_68_69_file, dfs) - parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).order_by("pk") + parser_errors = ParserError.objects.filter(file=m3_cat2_invalid_68_69_file).exclude( + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") assert parser_errors.count() == 4 @@ -1939,7 +1942,8 @@ def test_parse_m5_cat2_invalid_23_24_file(m5_cat2_invalid_23_24_file, dfs): parse.parse_datafile(m5_cat2_invalid_23_24_file, dfs) - parser_errors = ParserError.objects.filter(file=m5_cat2_invalid_23_24_file).order_by("pk") + parser_errors = ParserError.objects.filter(file=m5_cat2_invalid_23_24_file).exclude( + error_type=ParserErrorCategoryChoices.CASE_CONSISTENCY).order_by("pk") assert parser_errors.count() == 2 From 339ac3bbe3ccb630ee9c21430891dbdac0320798 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 11:21:03 -0400 Subject: [PATCH 22/39] Revert "fixed autogenerated file" This reverts commit 3bb928712f1c6638d7354468979e184b48cfbd26. --- .../search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py index 8bae725de2..d8962a8b92 100644 --- a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py +++ b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py @@ -87,7 +87,7 @@ class Migration(migrations.Migration): ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), ('NEEDS_PREGNANT_WOMAN', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.CharField(max_length=2, null=True)), + ('EDUCATION_LEVEL', models.CharField(null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('COOPERATION_CHILD_SUPPORT', models.IntegerField(null=True)), ('EMPLOYMENT_STATUS', models.IntegerField(null=True)), @@ -154,7 +154,7 @@ class Migration(migrations.Migration): ('RECEIVE_SSI', models.IntegerField(null=True)), ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.CharField(max_length=2, null=True)), + ('EDUCATION_LEVEL', models.CharField(null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('UNEARNED_SSI', models.IntegerField(null=True)), ('OTHER_UNEARNED_INCOME', models.IntegerField(null=True)), From 51103015742bdb2ae88d64742bc2e77ed3b33dff Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 11:22:42 -0400 Subject: [PATCH 23/39] Revert "search index type changes" This reverts commit 915b9a46933b309926c6b165e314be1266b58be7. --- .../search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py index d8962a8b92..413859b9c9 100644 --- a/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py +++ b/tdrs-backend/tdpservice/search_indexes/migrations/0007_ssp_m1_ssp_m2_ssp_m3.py @@ -87,7 +87,7 @@ class Migration(migrations.Migration): ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), ('NEEDS_PREGNANT_WOMAN', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.CharField(null=True)), + ('EDUCATION_LEVEL', models.IntegerField(null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('COOPERATION_CHILD_SUPPORT', models.IntegerField(null=True)), ('EMPLOYMENT_STATUS', models.IntegerField(null=True)), @@ -154,7 +154,7 @@ class Migration(migrations.Migration): ('RECEIVE_SSI', models.IntegerField(null=True)), ('RELATIONSHIP_HOH', models.IntegerField(null=True)), ('PARENT_MINOR_CHILD', models.IntegerField(null=True)), - ('EDUCATION_LEVEL', models.CharField(null=True)), + ('EDUCATION_LEVEL', models.IntegerField(null=True)), ('CITIZENSHIP_STATUS', models.IntegerField(null=True)), ('UNEARNED_SSI', models.IntegerField(null=True)), ('OTHER_UNEARNED_INCOME', models.IntegerField(null=True)), From b9505168f4b124558814364294197a138ac3c08f Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 17 May 2024 11:42:12 -0400 Subject: [PATCH 24/39] - remove length checks --- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py | 1 - tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py | 1 - tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py | 1 - tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py | 1 - tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py | 1 - tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py | 1 - 6 files changed, 6 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index a87882ff5b..ca2594e18e 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -144,7 +144,6 @@ required=True, validators=[ validators.isInStringRange(1, 999), - validators.fieldHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index f9905f0c17..9edc4d4641 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -65,7 +65,6 @@ required=True, validators=[ validators.isInStringRange(1, 999), - validators.fieldHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py index 728e0d8aed..7997a8cc0c 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py @@ -167,7 +167,6 @@ required=True, validators=[ validators.isInStringRange(1, 999), - validators.fieldHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index c4a29f7282..c49778ac77 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -66,7 +66,6 @@ required=True, validators=[ validators.isInStringRange(1, 999), - validators.recordHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index 5404e47755..8db8545fe4 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -168,7 +168,6 @@ required=False, validators=[ validators.isInStringRange(1, 999), - validators.recordHasLength(3), validators.isNumber() ], ), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index 2715569899..0febdb46d0 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -66,7 +66,6 @@ required=False, validators=[ validators.isInStringRange(1, 999), - validators.recordHasLength(3), validators.isNumber() ], ), From 0fb77feabfad65f5660f59743c6eedc69c8757d3 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Mon, 20 May 2024 09:42:41 -0400 Subject: [PATCH 25/39] - remove unnecessary validators --- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py | 5 +---- tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py | 5 +---- tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py | 5 +---- tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py | 5 +---- .../tdpservice/parsers/schema_defs/tribal_tanf/t1.py | 5 +---- .../tdpservice/parsers/schema_defs/tribal_tanf/t4.py | 5 +---- 6 files changed, 6 insertions(+), 24 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py index ca2594e18e..1c89435f27 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py @@ -142,10 +142,7 @@ startIndex=19, endIndex=22, required=True, - validators=[ - validators.isInStringRange(1, 999), - validators.isNumber() - ], + validators=[validators.isNumber()], ), Field( item="4", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py index 9edc4d4641..31218b6703 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/ssp/m4.py @@ -63,10 +63,7 @@ startIndex=19, endIndex=22, required=True, - validators=[ - validators.isInStringRange(1, 999), - validators.isNumber() - ], + validators=[validators.isNumber()], ), Field( item="4", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py index 7997a8cc0c..47b67e9853 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py @@ -165,10 +165,7 @@ startIndex=19, endIndex=22, required=True, - validators=[ - validators.isInStringRange(1, 999), - validators.isNumber() - ], + validators=[validators.isNumber()], ), Field( item="5", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index c49778ac77..fd96f938b4 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -64,10 +64,7 @@ startIndex=19, endIndex=22, required=True, - validators=[ - validators.isInStringRange(1, 999), - validators.isNumber() - ], + validators=[validators.isNumber()], ), Field( item="5", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py index 8db8545fe4..eff60c425a 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t1.py @@ -166,10 +166,7 @@ startIndex=19, endIndex=22, required=False, - validators=[ - validators.isInStringRange(1, 999), - validators.isNumber() - ], + validators=[validators.isNumber()], ), Field( item="5", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py index 0febdb46d0..d759493dad 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t4.py @@ -64,10 +64,7 @@ startIndex=19, endIndex=22, required=False, - validators=[ - validators.isInStringRange(1, 999), - validators.isNumber() - ], + validators=[validators.isNumber()], ), Field( item="5", From 447a5d7c51b6ab7f3b9a0df9aa04c69e3267b95b Mon Sep 17 00:00:00 2001 From: raftmsohani <97037188+raftmsohani@users.noreply.github.com> Date: Wed, 22 May 2024 11:35:32 -0400 Subject: [PATCH 26/39] 2688 tanf section 2 validation clean up (#2955) * 2688 added header test and changed oneOf validator to accept range * 2688 added t4, t5 * added all t4 requirements * corrected the tests * 2688 added test * corrected test filename * 2688 added test for oneOf range * 2688 fixed failing test * Revert tribal changes back --------- Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> --- .../tdpservice/parsers/schema_defs/tanf/t4.py | 4 +- .../tdpservice/parsers/schema_defs/tanf/t5.py | 40 +++++++++---------- .../parsers/test/data/small_tanf_section2.txt | 2 +- .../tdpservice/parsers/test/test_header.py | 39 ++++++++++++++++++ .../tdpservice/parsers/test/test_parse.py | 39 +++++++++++++++++- .../parsers/test/test_validators.py | 19 +++++++++ tdrs-backend/tdpservice/parsers/validators.py | 16 +++++++- 7 files changed, 133 insertions(+), 26 deletions(-) create mode 100644 tdrs-backend/tdpservice/parsers/test/test_header.py diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py index a9bed74d7d..2828e2a8f7 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t4.py @@ -72,7 +72,7 @@ type="string", startIndex=22, endIndex=24, - required=True, + required=False, validators=[validators.isInStringRange(0, 99)], ), Field( @@ -118,7 +118,7 @@ startIndex=32, endIndex=33, required=True, - validators=[validators.isInLimits(1, 3)], + validators=[validators.isInLimits(1, 2)], ), Field( item="11", diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index abfed1d4d3..fa0e1792cc 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -183,7 +183,7 @@ type="number", startIndex=37, endIndex=38, - required=True, + required=False, validators=[validators.validateRace()], ), Field( @@ -193,7 +193,7 @@ type="number", startIndex=38, endIndex=39, - required=True, + required=False, validators=[validators.validateRace()], ), Field( @@ -203,7 +203,7 @@ type="number", startIndex=39, endIndex=40, - required=True, + required=False, validators=[validators.validateRace()], ), Field( @@ -213,7 +213,7 @@ type="number", startIndex=40, endIndex=41, - required=True, + required=False, validators=[validators.validateRace()], ), Field( @@ -223,7 +223,7 @@ type="number", startIndex=41, endIndex=42, - required=True, + required=False, validators=[validators.validateRace()], ), Field( @@ -233,7 +233,7 @@ type="number", startIndex=42, endIndex=43, - required=True, + required=False, validators=[validators.validateRace()], ), Field( @@ -253,7 +253,7 @@ type="number", startIndex=44, endIndex=45, - required=True, + required=False, validators=[validators.isInLimits(0, 2)], ), Field( @@ -263,7 +263,7 @@ type="number", startIndex=45, endIndex=46, - required=True, + required=False, validators=[validators.isInLimits(1, 2)], ), Field( @@ -273,7 +273,7 @@ type="number", startIndex=46, endIndex=47, - required=True, + required=False, validators=[validators.isInLimits(0, 2)], ), Field( @@ -283,7 +283,7 @@ type="number", startIndex=47, endIndex=48, - required=True, + required=False, validators=[validators.isInLimits(0, 2)], ), Field( @@ -303,7 +303,7 @@ type="number", startIndex=49, endIndex=50, - required=True, + required=False, validators=[validators.isInLimits(0, 5)], ), Field( @@ -323,7 +323,7 @@ type="number", startIndex=52, endIndex=53, - required=True, + required=False, validators=[validators.isInLimits(0, 2)], ), Field( @@ -333,7 +333,7 @@ type="number", startIndex=53, endIndex=54, - required=True, + required=False, validators=[validators.isInLimits(0, 9)], ), Field( @@ -343,7 +343,7 @@ type="string", startIndex=54, endIndex=56, - required=True, + required=False, validators=[ validators.or_validators( validators.isInStringRange(0, 16), @@ -358,7 +358,7 @@ type="number", startIndex=56, endIndex=57, - required=True, + required=False, validators=[ validators.or_validators( validators.isInLimits(0, 2), @@ -373,7 +373,7 @@ type="string", startIndex=57, endIndex=60, - required=True, + required=False, validators=[validators.isInStringRange(0, 999)], ), Field( @@ -383,7 +383,7 @@ type="string", startIndex=60, endIndex=62, - required=True, + required=False, validators=[validators.isInStringRange(0, 99)], ), Field( @@ -393,7 +393,7 @@ type="number", startIndex=62, endIndex=63, - required=True, + required=False, validators=[validators.isInLimits(0, 3)], ), Field( @@ -403,7 +403,7 @@ type="string", startIndex=63, endIndex=67, - required=True, + required=False, validators=[validators.isInStringRange(0, 9999)], ), Field( @@ -413,7 +413,7 @@ type="string", startIndex=67, endIndex=71, - required=True, + required=False, validators=[validators.isInStringRange(0, 9999)], ), ], diff --git a/tdrs-backend/tdpservice/parsers/test/data/small_tanf_section2.txt b/tdrs-backend/tdpservice/parsers/test/data/small_tanf_section2.txt index 7e25591e02..819d6ce797 100644 --- a/tdrs-backend/tdpservice/parsers/test/data/small_tanf_section2.txt +++ b/tdrs-backend/tdpservice/parsers/test/data/small_tanf_section2.txt @@ -1,4 +1,4 @@ HEADER20204C06 TAN1ED -T42020101111111115825301400141123113 +T42020101111111115825301400141122113 T520201011111111158119970123WTTTTTP@Y2222212222221011212100946200000000 TRAILER0000828 diff --git a/tdrs-backend/tdpservice/parsers/test/test_header.py b/tdrs-backend/tdpservice/parsers/test/test_header.py new file mode 100644 index 0000000000..78ffdfa21e --- /dev/null +++ b/tdrs-backend/tdpservice/parsers/test/test_header.py @@ -0,0 +1,39 @@ +"""Tests for the header parser module.""" + +from tdpservice.parsers import schema_defs +from tdpservice.parsers import util +import pytest + +import logging + +logger = logging.getLogger(__name__) + + +@pytest.fixture +def test_datafile(stt_user, stt): + """Fixture for small_correct_file.""" + return util.create_test_datafile("small_correct_file.txt", stt_user, stt) + + +@pytest.mark.django_db +def test_header_cleanup(test_datafile): + """Test the header parser.""" + YEAR = "2020" + QUARTER = "4" + TYPE = "A" + STATE_FIPS = " " + TRIBE_CODE = " " + PROGRAM_CODE = "TAN" + EDIT_CODE = "1" + ENCRYPTION_CODE = " " + UPDATE_INDICATOR = "D" + header_line = ( + f"HEADER{YEAR}{QUARTER}{TYPE}{STATE_FIPS}{TRIBE_CODE}" + + f"{PROGRAM_CODE}{EDIT_CODE}{ENCRYPTION_CODE}{UPDATE_INDICATOR}" + ) + header, header_is_valid, header_errors = schema_defs.header.parse_and_validate( + header_line, util.make_generate_file_precheck_parser_error(test_datafile, 1) + ) + + assert header_is_valid + assert header_errors == [] diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index c8563555d4..8a3d688d62 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1009,7 +1009,10 @@ def test_parse_tanf_section2_file(tanf_section2_file, dfs): parser_errors = ParserError.objects.filter(file=tanf_section2_file) err = parser_errors.first() - assert err.error_type == ParserErrorCategoryChoices.CASE_CONSISTENCY + assert err.error_type == ParserErrorCategoryChoices.FIELD_VALUE + assert err.error_message == "T4: 3 is not larger or equal to 1 and smaller or equal to 2." + assert err.content_type.model == "tanf_t4" + assert err.object_id is not None @pytest.fixture @@ -1727,6 +1730,40 @@ def test_misformatted_multi_records(file_fixture, result, number_of_errors, erro ) assert parser_errors.count() == number_of_errors + +@pytest.fixture +def t4_t5_empty_values(): + """Fixture for T3 file.""" + # T3 record is space filled correctly + parsing_file = ParsingFileFactory( + year=2021, + quarter='Q3', + original_filename='t4_t5_empty_values.txt', + section=DataFile.Section.CLOSED_CASE_DATA, + file__filename='t4_t5_empty_values.txt', + file__data=(b'HEADER20212C06 TAN1ED\n' + + b'T420210411111111158253 400141123113 \n' + + b'T520210411111111158119970123WTTTTTP@Y2222212222221011212100946200000000\n' + + b'TRAILER0000001 ') + ) + return parsing_file + + +@pytest.mark.django_db() +def test_empty_t4_t5_values(t4_t5_empty_values, dfs): + """Test that empty field values for un-required fields parse.""" + dfs.datafile = t4_t5_empty_values + parse.parse_datafile(t4_t5_empty_values, dfs) + parser_errors = ParserError.objects.filter(file=t4_t5_empty_values) + t4 = TANF_T4.objects.all() + t5 = TANF_T5.objects.all() + assert t4.count() == 1 + assert t4[0].STRATUM is None + logger.info(t4[0].__dict__) + assert t5.count() == 1 + assert parser_errors[0].error_message == "T4: 3 is not larger or equal to 1 and smaller or equal to 2." + + @pytest.mark.django_db() def test_parse_t2_invalid_dob(t2_invalid_dob_file, dfs): """Test parsing a TANF T2 record with an invalid DOB.""" diff --git a/tdrs-backend/tdpservice/parsers/test/test_validators.py b/tdrs-backend/tdpservice/parsers/test/test_validators.py index d617e38038..8cc594e14d 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_validators.py +++ b/tdrs-backend/tdpservice/parsers/test/test_validators.py @@ -214,6 +214,15 @@ def test_oneOf_returns_valid(): assert is_valid is True assert error is None + value = 50 + options = ["17-55"] + + validator = validators.oneOf(options) + is_valid, error = validator(value, RowSchema(), "friendly_name", "item_no") + + assert is_valid is True + assert error is None + def test_oneOf_returns_invalid(): """Test `oneOf` gives an invalid result.""" @@ -226,6 +235,16 @@ def test_oneOf_returns_invalid(): assert is_valid is False assert error == 'T1: 64 is not in [17, 24, 36].' + value = 65 + options = ["17-55"] + + validator = validators.oneOf(options) + is_valid, error = validator(value, RowSchema(), "friendly_name", "item_no") + + assert is_valid is False + assert error == 'T1: 65 is not in [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, ' \ + '29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55].' + def test_between_returns_valid(): """Test `between` gives a valid result for integers.""" diff --git a/tdrs-backend/tdpservice/parsers/validators.py b/tdrs-backend/tdpservice/parsers/validators.py index fdae80b234..3eeeeb02bb 100644 --- a/tdrs-backend/tdpservice/parsers/validators.py +++ b/tdrs-backend/tdpservice/parsers/validators.py @@ -241,8 +241,21 @@ def notMatches(option): def oneOf(options=[]): """Validate that value does not exist in the provided options array.""" + """ + accepts options as list of: string, int or string range ("3-20") + """ + + def check_option(value, options): + # split the option if it is a range and append the range to the options + for option in options: + if "-" in str(option): + start, end = option.split("-") + options.extend([i for i in range(int(start), int(end) + 1)]) + options.remove(option) + return value in options + return make_validator( - lambda value: value in options, + lambda value: check_option(value, options), lambda value, row_schema, friendly_name, item_num: f"{row_schema.record_type}: {value} is not in {options}." ) @@ -466,7 +479,6 @@ def isInLimits(LowerBound, UpperBound): f"smaller or equal to {UpperBound}." ) - # custom validators def dateMonthIsValid(): From 0cb1c5b216e60494ab7cfb84cd0644c378bbfe8d Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 22 May 2024 11:48:18 -0400 Subject: [PATCH 27/39] - Update proxy_pass directive --- tdrs-frontend/nginx/local/locations.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-frontend/nginx/local/locations.conf b/tdrs-frontend/nginx/local/locations.conf index ecad16562c..8c95a99081 100644 --- a/tdrs-frontend/nginx/local/locations.conf +++ b/tdrs-frontend/nginx/local/locations.conf @@ -7,7 +7,7 @@ location = /nginx_status { location ~ ^/(v1|admin|static/admin|static/drf-yasg|swagger|redocs) { limit_req zone=limitreqsbyaddr delay=5; set $backend http://${BACK_END}:8080$request_uri; - proxy_pass $backend$is_args$args; + proxy_pass $backend; proxy_set_header Host $host:3000; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; From 95094b679c78a53ec9ddaea348d221902c271258 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 22 May 2024 11:50:18 -0400 Subject: [PATCH 28/39] - update proxy_pass directive for deployed config --- log.txt | 68832 +++++++++++++++++ tdrs-frontend/nginx/cloud.gov/locations.conf | 2 +- 2 files changed, 68833 insertions(+), 1 deletion(-) create mode 100644 log.txt diff --git a/log.txt b/log.txt new file mode 100644 index 0000000000..7ea5d3b314 --- /dev/null +++ b/log.txt @@ -0,0 +1,68832 @@ +commit d236a9a3166d96e13f6f6f9510d0b1d45cfb77fa +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue May 21 09:09:30 2024 -0400 + + 2938 blank filled ssn not parsing throws NoneType error (#2961) + + * handling None in transform functions + + * revert unwanted change + +commit 4b71344c626301a68e2a8c12d353412fd91a2439 +Merge: f1ef9d181 104a5ed78 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon May 20 17:20:09 2024 -0400 + + Merge pull request #2983 from raft-tech/feat/2949-csv-export-name + + 2949 - export file rename + +commit 104a5ed7801b603a40dfd6b362cafd5c5f0945d1 +Merge: 4d1884e93 f1ef9d181 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon May 20 17:04:19 2024 -0400 + + Merge branch 'develop' into feat/2949-csv-export-name + +commit f1ef9d1811b7368ed40a86cbef5766c3cdfb2f0c +Merge: 27290260a 8b1b6a28d +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon May 20 16:01:00 2024 -0400 + + Merge pull request #2941 from raft-tech/fix/2238-webinspect-low + + 2238 document unsafe-inline exception + +commit 8b1b6a28dae6183b4d7e4624e1313934ffa36012 +Merge: 86e2441e0 27290260a +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon May 20 15:42:34 2024 -0400 + + Merge branch 'develop' into fix/2238-webinspect-low + +commit 27290260a20b5629ae9b52ea669d571d2d034b2a +Merge: b2edac97f 229c32cf2 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon May 20 15:42:21 2024 -0400 + + Merge pull request #2989 from raft-tech/fix/2973-backend-service-discoverability + + Add service discoverability for backend routes + +commit 86e2441e0ef92deeb731ec51bcfefc26dc02da58 +Author: Jan Timpe +Date: Mon May 20 15:39:38 2024 -0400 + + update kibana version + +commit 229c32cf28b30b04d2b363fe3792eee6055b373c +Merge: 6c8de73a2 b2edac97f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon May 20 12:53:21 2024 -0400 + + Merge branch 'develop' into fix/2973-backend-service-discoverability + +commit cb9fc83c797c57b5454d93fbd6ba0a2b09ac2d3f +Author: Jan Timpe +Date: Mon May 20 12:44:04 2024 -0400 + + add attack vector info + +commit b2edac97f0772c2b3ef3f1c53152c71cf4b9f05f +Merge: 0b10e3f32 8d5def9fd +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon May 20 11:07:25 2024 -0400 + + Merge pull request #2912 from raft-tech/2826-trailing-spaces + + Space Fill Checks for T1's, T4's, M1, and M4 Records + +commit a4cd17dab68a534c26e7cd054591139fcec6d328 +Author: Jan Timpe +Date: Mon May 20 10:43:14 2024 -0400 + + update waiver language w/ deps + +commit c37e05532e10018852b0b051872ae486207fdf83 +Author: Jan Timpe +Date: Mon May 20 08:45:29 2024 -0400 + + rename security waiver + +commit bf7c49ff393e696661d6e92c48df8465f764b815 +Author: Jan Timpe +Date: Mon May 20 08:45:05 2024 -0400 + + update waiver to include discussion links + +commit 8d5def9fd7740fb38def89bb4f10b5ba3dbd0c31 +Author: Eric Lipe +Date: Mon May 20 08:35:02 2024 -0400 + + - updated test + +commit 9cfd92f795760a7b0b9c54ad14b0c9578b43b5ac +Merge: 9183ed70e 0b10e3f32 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon May 20 08:15:43 2024 -0400 + + Merge branch 'develop' into 2826-trailing-spaces + +commit 4866c487f22a44eb68ebe7117de7a4634c92b1ef +Merge: cc58bd32c 0b10e3f32 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon May 20 07:40:21 2024 -0400 + + Merge branch 'develop' into fix/2238-webinspect-low + +commit 0b10e3f32224b5f4a1b70e55528d70e8b32c5693 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon May 20 07:28:43 2024 -0400 + + 2884 preparser errors multi record rows wrong length missing space filled m3 tribal t3 (#2945) + + * added the test and change needed for T3 + + * added pseudo code in comments for second child + + * added tests for second child in T3 + + * removed prints from test file + + * corrected linting and some of the tests + + * added changes for TANF-T3 + + * revert changes back for t3 tribal + + * linting + + * passing tests + + * changed t3 validator + + * added tests + + * linting + + * added test for validators + + * added test for truncated case + + * added words for static numbers + + * merge conflicts and failing tests + + * correction + + * correction + + * 2757 fixed failing tests + + * 2757 fixed failing tests + + * corrected file header type to pass the tests + + * removed duplicate validators + + * added length validator to TribalT3 and M3 + + * 2757 rename child length validator + + * 2884 revised validator + + * moved test to separate text files + + * 2757 revised error message + + * 2757 corrected preparser malfunction + + * 2757 added tests + + * corrected quite preparser condition + + * reinstated the case number pre-validator + + * deleted unused test files + + * 2884 added error message assert + + * linting + + * 2884 added number of records assert + + * 2884 resolve conflicts + + * upgrade zap scanner + + * 2884 corrected failing tests + + * 2884 linting + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 9bcf9b93bc83220f701ab924a2bdf0b6f5066393 +Merge: 562c086b7 5e9897110 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri May 17 15:14:07 2024 -0400 + + Merge pull request #2879 from raft-tech/2842-cat-4-remaining-s2-validators + + More cat 4 + +commit 5e9897110bb0a1a4c22897bff337aea73871f25a +Author: Jan Timpe +Date: Fri May 17 15:03:55 2024 -0400 + + update ftl error language + +commit 3ad8be07149a9fa7b79f6cf2dd05f4e0d1ea76d6 +Author: Jan Timpe +Date: Fri May 17 13:53:12 2024 -0400 + + lint + +commit 9ce7ea1a94325d90b4bf569454bbf256d2dbc823 +Author: Jan Timpe +Date: Fri May 17 13:42:13 2024 -0400 + + add field name to error messages + +commit 8a17eb30fc6204cf5bf4c01f18818b1c57749c67 +Author: Jan Timpe +Date: Fri May 17 11:22:21 2024 -0400 + + update states rec_ssi logic + +commit fc7e751f29ab6d3bd139757892a8e2d94da4186b +Author: Jan Timpe +Date: Fri May 17 10:51:11 2024 -0400 + + update validator messaging + +commit f6fb71d4ad79200edc9d1c76fc2ace54e81ed313 +Author: Jan Timpe +Date: Fri May 17 09:56:36 2024 -0400 + + lint + +commit 89bb216c3319db6aec0fc6b24e1a99fa658ee2ec +Author: Jan Timpe +Date: Thu May 16 16:39:35 2024 -0400 + + update closure reason logic + +commit f9728eaacf22b16a10b988a6cd4b2bb6758f8498 +Author: Jan Timpe +Date: Thu May 16 13:22:09 2024 -0400 + + for a -> per in cat4 messaging + +commit 6c8de73a28b4d8f60935ac871904f61b1b20b2b6 +Merge: 76cb9ab4a 562c086b7 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu May 16 10:44:34 2024 -0400 + + Merge branch 'develop' into fix/2973-backend-service-discoverability + +commit 76cb9ab4a543c8084b96d45d44fcffadaae015c0 +Author: Jan Timpe +Date: Thu May 16 10:44:21 2024 -0400 + + revert locations matching change + +commit 9195ca173671b7da52ff0b56e1f50ea0f90b7968 +Merge: c1c87d91f 562c086b7 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed May 15 13:34:06 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-remaining-s2-validators + +commit c1c87d91f4510e7a374f05b8b09d4e70dae47477 +Author: Jan Timpe +Date: Wed May 15 13:33:53 2024 -0400 + + update adult age to 19 + +commit cc58bd32c444bdcd570bc5a67d420589fa97aef1 +Merge: 1c06ba7d7 562c086b7 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed May 15 12:21:06 2024 -0400 + + Merge branch 'develop' into fix/2238-webinspect-low + +commit 562c086b7ed626ac470126769f3f5f35090e55d2 +Merge: 00ee8001f 78201e0d5 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed May 15 12:07:26 2024 -0400 + + Merge pull request #2881 from raft-tech/2870-elastic-reindex-cron + + 2870 elastic reindex customizations + +commit 78201e0d57ddcf4f740c502054acf7ddcc406460 +Merge: 67f1a1dc5 00ee8001f +Author: Jan Timpe +Date: Wed May 15 08:03:02 2024 -0400 + + Merge branch 'develop' into 2870-elastic-reindex-cron + +commit 00ee8001fa0ca5711e47f79845e884a4b4a8a39d +Merge: c2223646e ca185993d +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed May 15 07:59:33 2024 -0400 + + Merge pull request #2859 from raft-tech/2842-cat-4-related-records + + Cat 4 implementation cont'd - records are related validator + +commit 82f79eb54c72736e96e59412d1b0345918504813 +Author: Jan Timpe +Date: Mon May 13 10:37:41 2024 -0400 + + add missing program_type to tests + +commit b7521f9a6f2e031f448122a452ef72a42f06c2dc +Merge: 1269d2cda ca185993d +Author: Jan Timpe +Date: Mon May 13 10:36:14 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit ca185993dbdbd9cd981a6a23bbddebac71d54e3b +Author: Jan Timpe +Date: Mon May 13 10:20:54 2024 -0400 + + rm logging + +commit e64f9ff99af77a3b89ebdeed7ebfa6682570d5f8 +Author: Jan Timpe +Date: Mon May 13 10:09:45 2024 -0400 + + add changed program type to case consistency init + +commit 9396e1f963f33a0e81f788f19583707b228f9eb9 +Merge: c6ec1210e c2223646e +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri May 10 11:19:58 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit c6ec1210e9e5d3f93a237088f1e0c9bd668a5f7c +Author: Jan Timpe +Date: Fri May 10 11:18:26 2024 -0400 + + rm logs + +commit 4d702243dbe33b6b04f226899102adb302c422bd +Author: Jan Timpe +Date: Fri May 10 11:17:48 2024 -0400 + + run cat4 regardless of cat2/3 errs + +commit 7d8e5e298019df51d0c5c09065decd11419741ed +Author: Jan Timpe +Date: Fri May 10 09:47:55 2024 -0400 + + add service discov for backend routes + +commit 4d1884e938504f132352bf7e9347ba252a1cdd20 +Merge: eb33083fc c2223646e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 9 13:46:28 2024 -0400 + + Merge branch 'develop' into feat/2949-csv-export-name + +commit c2223646ee63eb632690c5bc7ac8ae0c37442402 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu May 9 11:46:16 2024 -0600 + + Quick PR to Merge Priority Changes from `friendlynamefixes2` (#2952) + + * - Pulling changes from branch: friendlynamefixes2 that need to be merged before that branch + + * - Revert tribal t4 back to correct field. + - Align all BLANK field item numbers + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit eb33083fc7ebafdf42041b72b52f7b49ab30131b +Author: andrew-jameson +Date: Thu May 9 13:40:18 2024 -0400 + + Alright, we are successful now with filename. + +commit 4992f076719ab2819bd141dc6172b5a13cd4b9ec +Author: Jan Timpe +Date: Thu May 9 12:49:02 2024 -0400 + + exclude cat4 errors from multirecord tests + +commit f1c5e516c735e5990880c604b68d0b0b1b2f9fa7 +Merge: b9314ec46 4185b00d4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu May 9 12:22:16 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit 4185b00d425eaca633f6c912b54d71d8bd084f0f +Merge: 613ee9317 5a163d957 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu May 9 11:14:41 2024 -0400 + + Merge pull request #2959 from raft-tech/feature/2509-submission-email + + 2509 - Data submission email + +commit 5a163d9574480ecfed588afd1fae30b95337885e +Merge: ca339fb24 613ee9317 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu May 9 10:03:31 2024 -0400 + + Merge branch 'develop' into feature/2509-submission-email + +commit 613ee93170a410ec041165b475b8aac587f585b9 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu May 9 10:00:43 2024 -0400 + + [bugfix] 2987 update zap docker image to 2.14.0 (#2988) + + * update zap docker image to 2.14.0 + + * update zap on frontend + +commit ca339fb247ae29a16f3799946f1bb21d77d22cb5 +Merge: d8b46d11d 6d16f133b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu May 9 08:59:23 2024 -0400 + + Merge branch 'develop' into feature/2509-submission-email + +commit 6d16f133b397d48dd7cdc1ddcb38958deced07e1 +Author: Victoria Amoroso <106103383+victoriaatraft@users.noreply.github.com> +Date: Wed May 8 13:22:31 2024 -0700 + + Create sprint-98-summary.md (#2982) + + * Create sprint-98-summary.md + + Added sprint 98 details + + * Update sprint-98-summary.md + + updated ticket status + + * Update docs/Sprint-Review/sprint-98-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + + --------- + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 7e70164fb9e0ba56fdc8b5c028008628dd582019 +Author: Victoria Amoroso <106103383+victoriaatraft@users.noreply.github.com> +Date: Wed May 8 13:13:46 2024 -0700 + + Sprint 97 Summary (#2981) + + * Create sprint-97-summary.md + + sprint 97 summary + + * Update sprint-97-summary.md + + * Update sprint-97-summary.md + + * Update sprint-97-summary.md + + added in a link + + * Update sprint-97-summary.md + + updated ticket statuses + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 6e3d9c75dc7329858381da89af48e60c0b24cabc +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed May 8 12:22:57 2024 -0600 + + - Updated to latest django-admin-508 (#2979) + + https://github.com/raft-tech/django-admin-508/blob/fd7ebe52e7ed719c52e29bcfa5218750b7794ec5/admin_interface/static/admin_interface/508/dropdown-filter.js#L15 + +commit b6e643fb922c8594641f00664cd07618bf6f9a4e +Author: andrew-jameson +Date: Wed May 8 14:06:21 2024 -0400 + + better import scoping + +commit 986e8dde244ac50fcd18b12561d9fe98c573736c +Author: andrew-jameson +Date: Wed May 8 13:30:28 2024 -0400 + + first commit, want to test more + +commit 67f1a1dc548e20e2b79da944f20017eb2fc1a86f +Author: Jan Timpe +Date: Wed May 8 09:18:47 2024 -0400 + + at mgmt cmd helper + +commit 1c06ba7d7dd53fbb3d861f7437ad6f18164c3dea +Merge: b1e8f4c14 13dab9fa4 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon May 6 13:30:00 2024 -0400 + + Merge branch 'develop' into fix/2238-webinspect-low + +commit b3b1f273c3a0dfbdd33d104db744b055452535e5 +Author: Jan Timpe +Date: Mon May 6 10:18:14 2024 -0400 + + print -> logger.debug + +commit 13dab9fa41c9ef7d1e5b08441f37d61dbe800422 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon May 6 10:09:50 2024 -0400 + + Update README.md Rob (#2976) + +commit b1e8f4c140e15143ecfdfceb6b75ae6439c8c803 +Author: Jan Timpe +Date: Mon May 6 10:01:59 2024 -0400 + + remove extra lines + +commit d372e6c4da49a0a0e972d4534fb503e3b3e5fd0d +Author: Jan Timpe +Date: Mon May 6 10:01:25 2024 -0400 + + Revert "move unsafe inline directives to kibana location" + + This reverts commit e98cf417cdaaa789f9725d1769417a0a378833e9. + +commit d8b46d11d0f2edd6130d7380e0fd355b35020edf +Merge: e1af7fd43 383eb166f +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon May 6 08:52:26 2024 -0400 + + Merge branch 'develop' into feature/2509-submission-email + +commit e1af7fd4364ff66138c319b037c93cc322fd3253 +Author: Jan Timpe +Date: Mon May 6 08:52:14 2024 -0400 + + postfix F to email file types + +commit 383eb166f1082ab4dc59a79ed966dbad82091dfd +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri May 3 09:01:06 2024 -0400 + + 2757-generate-preparser-error-multi-record-wrong-length (#2856) + + * added the test and change needed for T3 + + * added pseudo code in comments for second child + + * added tests for second child in T3 + + * removed prints from test file + + * corrected linting and some of the tests + + * added changes for TANF-T3 + + * revert changes back for t3 tribal + + * linting + + * passing tests + + * changed t3 validator + + * added tests + + * linting + + * added test for validators + + * added test for truncated case + + * added words for static numbers + + * merge conflicts and failing tests + + * correction + + * correction + + * 2757 fixed failing tests + + * 2757 fixed failing tests + + * corrected file header type to pass the tests + + * removed duplicate validators + + * 2757 rename child length validator + + * 2757 revised error message + + * 2757 corrected preparser malfunction + + * 2757 added tests + + * added zero padding + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 195ab8f33dc43c45f58b0fd016f4dab2ec7c2bb5 +Merge: 25b07f73c 2c52e80fb +Author: Miles Reiter +Date: Thu May 2 16:21:43 2024 -0400 + + Merge pull request #2972 from raft-tech/open-source-docs + + Adds contributing & code of conduct markdowns + +commit 2c52e80fbac4390fdb6eecce23cf57ce2b4c3739 +Author: Miles Reiter +Date: Thu May 2 16:00:28 2024 -0400 + + Update CONTRIBUTING.md + +commit 6d8065fdc4131bbb1570d83d5efc9d376e387f94 +Merge: 9d4011d86 25b07f73c +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu May 2 11:24:32 2024 -0400 + + Merge branch 'develop' into feature/2509-submission-email + +commit 6008392ffb4b47223edeea09526ba84aca446929 +Author: Miles Reiter +Date: Wed May 1 15:47:29 2024 -0400 + + Rename LICENSE to LICENSE.md + +commit bbbc840889823e4703f5bb36abb42abe5f44254d +Author: Miles Reiter +Date: Wed May 1 15:46:51 2024 -0400 + + Update CONTRIBUTING.md + +commit f6859e3965540cc87101fef4fa90bd9d9212dcae +Author: Miles Reiter +Date: Wed May 1 15:46:36 2024 -0400 + + Create CODE_OF_CONDUCT.md + +commit 32f8efdfdc11e93b8390e7806658d38b42c9a8bd +Author: Miles Reiter +Date: Wed May 1 15:38:00 2024 -0400 + + Create CONTRIBUTING.md + +commit 6e002ebe0f46a3fbf517c8727d1ba6a2d066499f +Author: Jan Timpe +Date: Wed May 1 13:28:47 2024 -0400 + + liiint + +commit 14a8551ec28d6c675e72623d52cded925af99f1b +Author: Jan Timpe +Date: Wed May 1 13:20:28 2024 -0400 + + lint + +commit 909a068008aef523169ede18dc1f4c8e2677a494 +Author: Jan Timpe +Date: Wed May 1 12:52:49 2024 -0400 + + add vars to compose + +commit 345ae699ea1a71c630abd276ea0963dce0658fe5 +Merge: 998a42fc0 25b07f73c +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed May 1 12:51:43 2024 -0400 + + Merge branch 'develop' into 2870-elastic-reindex-cron + +commit 998a42fc03359c43edc50fef35dfc56f93f0101b +Author: Jan Timpe +Date: Wed May 1 12:50:10 2024 -0400 + + remove reindex beat schedule + +commit 06e9c046614f3e413956f0f610a2accaa50d16ca +Author: Jan Timpe +Date: Wed May 1 12:49:20 2024 -0400 + + parameterize log threshold settings + +commit 25b07f73c2b9b28d1773dd3efd720d3ae1faa9f5 +Merge: c58837397 f00fb2b82 +Author: Miles Reiter +Date: Wed May 1 12:10:12 2024 -0400 + + Merge pull request #2900 from raft-tech/Sprint-95-Summary + + Sprint 95 summary + +commit 1269d2cda9b88034c8b7f751a0ae5b98f8788a51 +Merge: c3b9c3327 b9314ec46 +Author: Jan Timpe +Date: Wed May 1 08:31:48 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit b9314ec4626b1d07f3b54ffb286043373225d1fb +Merge: fa2e1a51e c58837397 +Author: Jan Timpe +Date: Wed May 1 08:31:27 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit f00fb2b8287b013980f86a8de7e3ea2985a17541 +Merge: 5f9dfbf0c c58837397 +Author: Miles Reiter +Date: Tue Apr 30 16:36:27 2024 -0400 + + Merge branch 'develop' into Sprint-95-Summary + +commit c588373977fa161493e5a35ba7441ceb774a3c07 +Author: robgendron <163159602+robgendron@users.noreply.github.com> +Date: Tue Apr 30 11:24:33 2024 -0400 + + Create sprint-96-summary.md (#2958) + +commit 35fbedbcdfceaad0bd42aa363c6d486fadf63101 +Author: Jan Timpe +Date: Fri Apr 26 11:37:42 2024 -0400 + + copy paste error + +commit 9df0dbea06f3443c78f42b1a9e782aad722cab74 +Author: Jan Timpe +Date: Fri Apr 26 11:15:46 2024 -0400 + + index logging thresholds + +commit 9d4011d8679e70d30f4ff9fa2c65c0ff7b70c387 +Author: Jan Timpe +Date: Thu Apr 25 11:29:41 2024 -0400 + + parameterize login link + +commit b9c091d30d8ad81c32ae4d6267ef370e2551f1cb +Author: Jan Timpe +Date: Wed Apr 24 10:37:17 2024 -0400 + + preserve log settings on reindex + +commit 2015f230fe27ad7e461ab72caa9294e48ef3d65d +Merge: 751df09e4 53f6f3f2b +Author: Jan Timpe +Date: Wed Apr 24 10:27:37 2024 -0400 + + Merge branch 'develop' into 2870-elastic-reindex-cron + +commit c381f10ff283c3ccebf40e3f86e84d717cc4aa26 +Author: Jan Timpe +Date: Tue Apr 23 14:32:14 2024 -0400 + + lint + +commit 9233795e17b13f9ddd6daf90b95ed0a43165a646 +Author: Jan Timpe +Date: Tue Apr 23 14:25:32 2024 -0400 + + rm old test + +commit 98338a463ba29860aeb8e2d269bb6ce4033a4e82 +Author: Jan Timpe +Date: Tue Apr 23 14:16:26 2024 -0400 + + update text_message + +commit b8f9a19c63c5d46f53bb04a21cdfd3bb02d70ee7 +Author: Jan Timpe +Date: Tue Apr 23 14:06:08 2024 -0400 + + create new data submitted email send + +commit 32b6809647b139f1cdee26508783ea3d1ee535ba +Author: Jan Timpe +Date: Tue Apr 23 14:05:51 2024 -0400 + + remove old email send + +commit fa2e1a51e64adf9216cd918c617b2534b8b77380 +Merge: 4393d4c68 53f6f3f2b +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Apr 23 11:15:05 2024 -0500 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit 5f9dfbf0c28618b04c96333f4a53a009a4e1bfc7 +Merge: 6479524d9 53f6f3f2b +Author: Miles Reiter +Date: Mon Apr 22 14:13:51 2024 -0400 + + Merge branch 'develop' into Sprint-95-Summary + +commit 6479524d98b8a10935d8a5a0c487fb55bfbfa4a0 +Author: robgendron <163159602+robgendron@users.noreply.github.com> +Date: Mon Apr 22 14:12:49 2024 -0400 + + Update sprint-95-summary.md + +commit c3b9c332752b2107541bb634c7139da3881d9fba +Author: Jan Timpe +Date: Fri Apr 19 11:43:50 2024 -0400 + + lint + +commit 7346a3e4afcc9093f460fb16561a5e1b8082cc7e +Author: Jan Timpe +Date: Fri Apr 19 11:35:14 2024 -0400 + + fix test + +commit 664d0c9971930312824098cce912cdef2e12bce4 +Author: Jan Timpe +Date: Fri Apr 19 11:15:06 2024 -0400 + + or -> and + +commit 680f62e3c23c770ab255c95eeb023eb33d045038 +Author: Jan Timpe +Date: Fri Apr 19 11:12:28 2024 -0400 + + extrapolate `get_years_apart` to utils + +commit 881fcec6a5d4de5fb6ee406ad8b5691b8704aa5e +Author: Jan Timpe +Date: Fri Apr 19 10:56:22 2024 -0400 + + add 2 as option for territory aabd + +commit 39b471ffe8eee25f22b232df121e50017507a53c +Merge: c64a8cb4f 4393d4c68 +Author: Jan Timpe +Date: Fri Apr 19 10:53:43 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit 53f6f3f2b9b942e13cd868a8ab588613a63e80cf +Merge: c2e57c6c5 4f725d985 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 18 11:40:57 2024 -0600 + + Merge pull request #2903 from raft-tech/2839-nginx-dns + + Nginx DNS Issue: Kibana and ClamAV + +commit 4f725d9857a2b6e82055df173a09d801184d1421 +Author: Eric Lipe +Date: Thu Apr 18 10:35:27 2024 -0600 + + - added docs for dynamic locations + +commit a0c0b196224f57ae6b94107e88765bb046c7f729 +Author: Eric Lipe +Date: Thu Apr 18 09:25:27 2024 -0600 + + - recomment dev var + +commit d9854a7ae78df96ec06c87b6e89aab53f005a1d2 +Merge: 9e3b703de c2e57c6c5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 18 07:56:55 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit 9183ed70ecba5dd67e0e3d4f70d5de9752d9bcab +Merge: 3b6af63a3 c2e57c6c5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 18 07:56:51 2024 -0600 + + Merge branch 'develop' into 2826-trailing-spaces + +commit c2e57c6c50b2b5cc36201cd164214e139d71249f +Merge: 8feb97048 f4bdab188 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 18 07:55:52 2024 -0600 + + Merge pull request #2889 from raft-tech/2807-quarter-validate + + 2807 quarter validate + +commit 9e3b703de41b236179ad8195ed956432f9b30d5d +Author: Eric Lipe +Date: Wed Apr 17 12:44:47 2024 -0600 + + - removing old artifacts + +commit f4bdab1887ba3432a5da0e9cfff7da337a95e3d7 +Merge: 8e591d16c 8feb97048 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 17 12:21:17 2024 -0400 + + Merge branch 'develop' into 2807-quarter-validate + +commit 1b0a51d53fc3d444531dcef72ccd1bff24a58c49 +Merge: cefa18e3b 8feb97048 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 17 10:16:51 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit 3b6af63a35d41ab5bfdb42c17626e4422ef8d78c +Merge: a633758fe 8feb97048 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 17 10:16:46 2024 -0600 + + Merge branch 'develop' into 2826-trailing-spaces + +commit 8feb97048d474db2bd0bc60a4a8810a16ddf8b63 +Merge: 2a4916d5a 27068ec1e +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 17 10:16:12 2024 -0600 + + Merge pull request #2915 from raft-tech/2908-dac-csv-export + + DAC CSV Export + +commit 27068ec1e1214c01bb28eb893d2cb42b7c2f2f78 +Merge: ca3c6dbcd 2a4916d5a +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 17 10:05:38 2024 -0600 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 2a4916d5a9a65ec1eba5da22b15f5869e7b549f6 +Merge: 1f6010fec 3f33f4637 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 17 10:05:16 2024 -0600 + + Merge pull request #2939 from raft-tech/2768-zap-fix + + Zap Fix + +commit 3f33f4637dfaf2dae48b4124b32067c35f3b615c +Author: Eric Lipe +Date: Wed Apr 17 09:13:16 2024 -0600 + + - Revert workflow back to OG + +commit 4393d4c68738c014f2978ccce03c9232106c8c07 +Author: Jan Timpe +Date: Wed Apr 17 09:00:32 2024 -0400 + + lint + +commit ca2c06c3d6ce606610afff33085a3b407bc50639 +Author: Jan Timpe +Date: Wed Apr 17 08:48:50 2024 -0400 + + fix test + +commit 1e9cf8481a2c0df6a1ca817b58ecdc53911b53cc +Author: Jan Timpe +Date: Wed Apr 17 08:38:31 2024 -0400 + + fix last case validation + +commit d71e459d2767349f34c19404d9d4790bff3bf9de +Author: Eric Lipe +Date: Tue Apr 16 14:50:30 2024 -0600 + + - delete temp file + +commit 5f0785098830464464c96aad4b8df9756247581f +Author: Eric Lipe +Date: Tue Apr 16 14:49:42 2024 -0600 + + - add todo + - fix test + +commit 65e88e2f4410808c7c433b1d79d96580931d73a4 +Author: Eric Lipe +Date: Tue Apr 16 14:40:08 2024 -0600 + + - Capture all errors from cat4 validator + - Update test + +commit 23601bc08d8de66c531418f3d1b998f6d8c6c3e9 +Author: Eric Lipe +Date: Mon Apr 15 13:29:33 2024 -0600 + + - comment update + +commit 8bd5e2e093b773b9001747a0d602c37734cf8998 +Author: Eric Lipe +Date: Mon Apr 15 13:09:01 2024 -0600 + + - 4 minutes + +commit b8ddd9ace866a7c0e065167609c4de2c8cbebda5 +Author: Eric Lipe +Date: Mon Apr 15 12:49:06 2024 -0600 + + - testing different sleep time + +commit 91a5b883fd558fdaf85114a11327bc4180851ed0 +Merge: 351b7065f ed877dcca +Author: Eric Lipe +Date: Mon Apr 15 12:18:17 2024 -0600 + + Merge branch '2768-zap-fix' of https://github.com/raft-tech/TANF-app into 2768-zap-fix + +commit 351b7065f1f72bf869c5d862133fe1cdd7033b8f +Author: Eric Lipe +Date: Mon Apr 15 12:18:15 2024 -0600 + + - move everything back to yaml + +commit ed877dccae9c636527bf77118218fd46729bb31d +Merge: 9d47eb690 1f6010fec +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:48:41 2024 -0600 + + Merge branch 'develop' into 2768-zap-fix + +commit ca3c6dbcd2e1c40cad338996e1ee7f90a06c912a +Merge: 58ff9cebe 1f6010fec +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:48:32 2024 -0600 + + Merge branch 'develop' into 2908-dac-csv-export + +commit a633758fe7ed7b2cc77e0d2c203d0781edeadd4c +Merge: fbd9111a9 1f6010fec +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:48:28 2024 -0600 + + Merge branch 'develop' into 2826-trailing-spaces + +commit cefa18e3b1a791ad6a8b24501953f161dec1a5d6 +Merge: fb7a90fa5 1f6010fec +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:48:23 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit 82fa1cc9447348590ea4c39f1e5897b8eb21a233 +Merge: a76f7359f 1f6010fec +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Apr 15 13:35:34 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit 8e591d16ce65c08fed1aa168f5bf76527f363485 +Merge: 9f38eea49 1f6010fec +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Apr 15 13:35:09 2024 -0400 + + Merge branch 'develop' into 2807-quarter-validate + +commit 1f6010fec86c1a646661ad0dde39cac46476655f +Merge: 50628f751 a662286d0 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:31:15 2024 -0600 + + Merge pull request #2906 from raft-tech/knowledge-center-march + + Knowledge Center Updates March 2024 + +commit 9f38eea49bdc3166c7f5582515601b73382a9447 +Merge: df9f41e18 50628f751 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Apr 15 13:24:19 2024 -0400 + + Merge branch 'develop' into 2807-quarter-validate + +commit a76f7359f192c2315afde8058826e38b6a18baaf +Merge: ce815fdc2 50628f751 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Apr 15 13:21:15 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit a662286d0eef5883da391cc606cbf84f7ae2eba9 +Merge: 1ea6da49f 50628f751 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:18:31 2024 -0600 + + Merge branch 'develop' into knowledge-center-march + +commit 50628f751c2445770ddaa6c683c640c4e4afcdc2 +Merge: 2e8ede248 3d38ecd59 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:18:18 2024 -0600 + + Merge pull request #2823 from raft-tech/2536-cat4-design + + Cat4 Validation Design + +commit 9d47eb690cdc4f85bfba50d42bebc2f800acc846 +Author: Eric Lipe +Date: Mon Apr 15 11:17:54 2024 -0600 + + - recomment exit code + +commit 1ea6da49fc90a0aa7d707db4345cd8d8112e8428 +Merge: 9d0ad2e18 2e8ede248 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 11:14:23 2024 -0600 + + Merge branch 'develop' into knowledge-center-march + +commit df9f41e186c8630e243e19f316a520ac28ed067b +Merge: 0c783987e 2e8ede248 +Author: Andrew Trimpe +Date: Mon Apr 15 13:05:50 2024 -0400 + + merge develop + +commit 6798abd7cf6e423bb75f443b4a40faca8dd2ce20 +Author: Jan Timpe +Date: Mon Apr 15 13:00:01 2024 -0400 + + move kibana csp + +commit 4e62b48eaa915754fda8229798b9eddf9e5d04e8 +Author: Eric Lipe +Date: Mon Apr 15 10:56:49 2024 -0600 + + - testing develop scan + +commit 58ff9cebeef83460bdc06a4b63380cdd3736ccf7 +Author: Eric Lipe +Date: Mon Apr 15 10:55:54 2024 -0600 + + - logic fix + +commit bd56a09ad72017577ad7294f26cf32fee2f093b9 +Author: Eric Lipe +Date: Mon Apr 15 10:55:33 2024 -0600 + + - fix lint + +commit 3d38ecd59083029581c35683d8f9e7690e4f0800 +Author: Eric Lipe +Date: Mon Apr 15 10:53:50 2024 -0600 + + - remove unneeded cases + +commit 3f808a6ac16f70811b14f1938b5117ac202ac067 +Merge: dcffc436b 97acc4b54 +Author: Eric Lipe +Date: Mon Apr 15 10:45:21 2024 -0600 + + Merge branch '2908-dac-csv-export' of https://github.com/raft-tech/TANF-app into 2908-dac-csv-export + +commit dcffc436bf392e62ceeff561773546677ad03159 +Author: Eric Lipe +Date: Mon Apr 15 10:45:17 2024 -0600 + + - Fix display bug with newest filter + - Remove erroneous filter options + - Update fiscal period query generation to match frontend generation exactly + +commit 2ca3ede1358a7d33979045c12c05c44ceaba063b +Author: Jan Timpe +Date: Mon Apr 15 12:33:41 2024 -0400 + + move csp above locations + +commit f724c45ebf35c4c73b5ea5c6f792225373f886d6 +Author: Jan Timpe +Date: Mon Apr 15 12:18:13 2024 -0400 + + additional add_header + +commit bb4fd293e3dff5311b02439d9b7c945f268d8466 +Author: Eric Lipe +Date: Mon Apr 15 10:09:21 2024 -0600 + + - back to 10 min + +commit 57a384e197c12a5e23dd58621dd706c8ff996402 +Merge: e98cf417c 2e8ede248 +Author: Jan Timpe +Date: Mon Apr 15 12:00:11 2024 -0400 + + Merge branch 'develop' into fix/2238-webinspect-low + +commit e98cf417cdaaa789f9725d1769417a0a378833e9 +Author: Jan Timpe +Date: Mon Apr 15 11:57:40 2024 -0400 + + move unsafe inline directives to kibana location + +commit cde3936eaf70bf0b7fa7ca678a7fe465e8ca4f77 +Author: Eric Lipe +Date: Mon Apr 15 09:44:45 2024 -0600 + + - extra long sleep + +commit 273adbcce8eff4cfa17e1026721b3a2e58f4be73 +Author: Eric Lipe +Date: Mon Apr 15 09:30:27 2024 -0600 + + - try both scans + +commit 3de74937f479285878826db2f487aeef5502f28c +Author: Eric Lipe +Date: Mon Apr 15 09:09:51 2024 -0600 + + - running command + +commit 8376973669c4ecf3e525d8e9d12541e2c6b45829 +Author: Eric Lipe +Date: Mon Apr 15 08:56:48 2024 -0600 + + - testing a sleep + +commit 97acc4b545349236c67b3b78981b6ddb338d5f84 +Merge: 626e2187a 2e8ede248 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 08:43:56 2024 -0600 + + Merge branch 'develop' into 2908-dac-csv-export + +commit fb7a90fa5268dbca6c5a7ec556789dfa8633c6fe +Merge: 26afb118e 2e8ede248 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 08:43:50 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit bb9221fb0bda180f29d61170c0f75cfc36e4abf6 +Merge: 1928c255c 2e8ede248 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 08:43:46 2024 -0600 + + Merge branch 'develop' into 2536-cat4-design + +commit fbd9111a910405d517443a898410317397bccbe5 +Author: Eric Lipe +Date: Mon Apr 15 08:42:46 2024 -0600 + + - Update based on feedback + +commit 00059e677ddc2e5bf47da3819e8cf55bb5b62a12 +Merge: b61d8114d 2e8ede248 +Author: Eric Lipe +Date: Mon Apr 15 08:25:22 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2826-trailing-spaces + +commit b61d8114d40d5dbaef869f6554d411fb820951fa +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 08:24:25 2024 -0600 + + Update tdrs-backend/tdpservice/parsers/test/test_validators.py + + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + +commit b35b0f61075c2bd493fb0ba8094a3a9996bc241b +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 15 08:24:19 2024 -0600 + + Update tdrs-backend/tdpservice/parsers/validators.py + + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + +commit 626e2187a142ee90ea7641f0a38b58583c8f5d32 +Author: Eric Lipe +Date: Mon Apr 15 08:19:10 2024 -0600 + + - Update to go from 2021 to current year + +commit 0c783987e78bb1a5ee43aaa6cd07db19bee378db +Author: Eric Lipe +Date: Mon Apr 15 08:06:19 2024 -0600 + + - Update based on ux feedback + +commit 2e8ede248cc0fd1d27b806b18387240e5dabfe8c +Merge: a8e288c77 f171f2782 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Apr 15 09:53:36 2024 -0400 + + Merge pull request #2899 from raft-tech/2818-take-three + + 2818 Update Indicator + +commit 1928c255c664631d12e1d8040fca81fe74703efa +Merge: 706af07c6 a8e288c77 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Apr 15 08:58:13 2024 -0400 + + Merge branch 'develop' into 2536-cat4-design + +commit c64a8cb4f289205664674448f3cade57e79ae2c3 +Author: Jan Timpe +Date: Mon Apr 15 08:52:41 2024 -0400 + + fix tests + +commit 6928b39232aedc5f7bd84b3ddf46fb6c080ed00d +Merge: 816ba7417 a8e288c77 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Apr 15 08:22:14 2024 -0400 + + Merge branch 'develop' into 2826-trailing-spaces + +commit 97442873568fc4436e7a04726a2709f88de65591 +Author: Eric Lipe +Date: Fri Apr 12 18:27:13 2024 -0600 + + - remove unnecessary fields from list display + +commit 44e50cebf566e528090641df13439d396cd99c3a +Author: Eric Lipe +Date: Fri Apr 12 15:58:30 2024 -0600 + + - enable scan + +commit 26f432e98e2f3497f632415bf0f39a12b31bd0c5 +Author: Eric Lipe +Date: Fri Apr 12 15:56:42 2024 -0600 + + - testing different command + - no scan + +commit f5ad3e631a93565f923b72e061aa822aac7168f7 +Merge: 4d2037efd a8e288c77 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 12 17:41:19 2024 -0400 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 389f9e96ea268e90b1e5e58af2a7e2b90c219e68 +Author: Eric Lipe +Date: Fri Apr 12 15:39:46 2024 -0600 + + - more logging + +commit 239ec16fc6b0e7a2dc373dff023df5fe949170b6 +Author: Eric Lipe +Date: Fri Apr 12 15:24:31 2024 -0600 + + - all params + +commit e41fb86f126380d703483114efb41fb47b82d08d +Author: Eric Lipe +Date: Fri Apr 12 15:09:33 2024 -0600 + + - trying with sscript + +commit 332da65f48d5e4a06ba742e3999047c3a695f1ae +Author: Eric Lipe +Date: Fri Apr 12 14:45:54 2024 -0600 + + - remove cat + +commit ff17e21353db7230d72d1657c522ff19f3b74662 +Author: Eric Lipe +Date: Fri Apr 12 14:45:23 2024 -0600 + + Revert "- remove cat" + + This reverts commit 0243276ca6a50796a14b2c9b7ba2a79c4df945e6. + +commit 0243276ca6a50796a14b2c9b7ba2a79c4df945e6 +Author: Eric Lipe +Date: Fri Apr 12 14:44:59 2024 -0600 + + - remove cat + +commit f171f2782aff83a306a049128066cf27767afc9a +Merge: 9b1a35c5d a8e288c77 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 12 16:41:00 2024 -0400 + + Merge branch 'develop' into 2818-take-three + +commit a8e288c77b976a3ef3dffdffbf170023ff2258b7 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Apr 12 16:39:16 2024 -0400 + + linting terraform files (#2942) + +commit 62bd03032781c5c21815451371880427a8d966fe +Author: Eric Lipe +Date: Fri Apr 12 13:33:35 2024 -0600 + + - catting config + +commit 706af07c6effa56c17d4063e5b9d37b463a3e9fc +Merge: 7bd28346d 3db8c205f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 12 15:26:18 2024 -0400 + + Merge branch 'develop' into 2536-cat4-design + +commit 4d2037efd9afb0d10e87169e3ac9f855331e2f1b +Merge: 9b0750677 3db8c205f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 12 15:26:00 2024 -0400 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 4b0f266547702ff2d865b8331b71dfe13c69560c +Author: Eric Lipe +Date: Fri Apr 12 13:21:48 2024 -0600 + + Revert "Revert "- removing comments as test"" + + This reverts commit 949b68e802e9c25fe5d744aadc5801fb663e8454. + +commit b8381b03ba0227ec04f7ae8f4db98ba7939dc314 +Author: Eric Lipe +Date: Fri Apr 12 13:21:36 2024 -0600 + + - newline + +commit 949b68e802e9c25fe5d744aadc5801fb663e8454 +Author: Eric Lipe +Date: Fri Apr 12 13:19:29 2024 -0600 + + Revert "- removing comments as test" + + This reverts commit 785d689c51b6ac02b71d8a397b94918ae03e7cb4. + +commit 9b1a35c5d004cd03d50f6d6ad31e35a71b8998ca +Merge: 75cfa1e8f 3db8c205f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 12 15:13:38 2024 -0400 + + Merge branch 'develop' into 2818-take-three + +commit 3db8c205fcc9f41b9825b71f1dd7a6b360b8c52a +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Apr 12 15:11:57 2024 -0400 + + 1349 automate elastic search using terraform (#2932) + + * terraform create added to terraform + + * correction on main.tf + + * removed output commands + + * added data to main.tf s + + * changed prod-es to medium + + * updated readme.md file + +commit 785d689c51b6ac02b71d8a397b94918ae03e7cb4 +Author: Eric Lipe +Date: Fri Apr 12 13:11:15 2024 -0600 + + - removing comments as test + +commit a3cb0374822d9ac6fda4f50d3b5ba93193778794 +Author: Eric Lipe +Date: Fri Apr 12 12:57:22 2024 -0600 + + - remove comment + +commit d979685ee9d930910a5644ecb3b617bea3cea745 +Merge: 89b767bf3 ce815fdc2 +Author: Jan Timpe +Date: Fri Apr 12 13:30:17 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit ce815fdc2a73dea1e7762abba9930c087449e379 +Author: Jan Timpe +Date: Fri Apr 12 13:29:48 2024 -0400 + + lint + +commit 89b767bf35e3a129f9ab5282e0b7621ab9223e7f +Merge: 76bde1ea7 07b4a138e +Author: Jan Timpe +Date: Fri Apr 12 13:18:51 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit 07b4a138e5da8d2a69165a6931bd3a178eb2a20c +Author: Jan Timpe +Date: Fri Apr 12 13:13:36 2024 -0400 + + rm unused tests + +commit 84fa3343569cef66e8ff93b3c4a1c11dc22013ff +Author: Jan Timpe +Date: Fri Apr 12 13:12:58 2024 -0400 + + rm unused import + +commit 5b42977ee621f7ba655d577eed34115a79822dc6 +Author: Eric Lipe +Date: Fri Apr 12 11:12:20 2024 -0600 + + - playing with echos + +commit 76bde1ea71d2273ba5eff321e1d1095fcbb21175 +Merge: 05bbb7abb 41232c83d +Author: Jan Timpe +Date: Fri Apr 12 13:04:15 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit d66887e1f4505b01da7ff7f0fb98ef99156b4df6 +Author: Eric Lipe +Date: Fri Apr 12 11:01:40 2024 -0600 + + - dummy command + +commit 85acdea60515beabcf4b679453eed7c45ff05777 +Author: Eric Lipe +Date: Fri Apr 12 10:48:14 2024 -0600 + + - firmat + +commit decdc245a1c59ddfff52d151cb2cf816f63ca04e +Author: Eric Lipe +Date: Fri Apr 12 10:32:22 2024 -0600 + + - adding wait + - adding trailing echo + +commit 9d0ad2e180232ddc27a1fab9ed6d0eb83a0e3022 +Merge: cd55db0d1 fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 10:29:27 2024 -0600 + + Merge branch 'develop' into knowledge-center-march + +commit 31db0962425d9a6ccb5d2ba7b1aba1b43b94edc9 +Author: Eric Lipe +Date: Fri Apr 12 10:21:33 2024 -0600 + + - echo cmd + - trailing slash + +commit 440a19977590822eeadbfad83f4eeffbc5e11714 +Author: Eric Lipe +Date: Fri Apr 12 10:10:05 2024 -0600 + + - enable frontend + +commit 750b5624798e747be8258c5a4bcf466a9a3b564c +Author: Eric Lipe +Date: Fri Apr 12 10:07:13 2024 -0600 + + - comment jobs + - newline + +commit 5a481b7ddd38548f070f49be1aec9f3d980bd5e5 +Author: Eric Lipe +Date: Fri Apr 12 10:05:44 2024 -0600 + + - UNCOMMENT JOBS + +commit 76c3049027b6a8236519006edf189108e5feb83f +Author: Eric Lipe +Date: Fri Apr 12 10:04:06 2024 -0600 + + - remove comment and change indent + +commit e9beaea6b1d01c9b105df230267668f0472a9c43 +Author: Eric Lipe +Date: Fri Apr 12 10:01:39 2024 -0600 + + - disable scan + +commit 62dfd5632d213d615051dc737a5e5b6c602ee057 +Author: Eric Lipe +Date: Fri Apr 12 09:49:06 2024 -0600 + + - revert to old command style that abides to shellcheck + +commit 41232c83d07ad81aecd87efe39ca4fded2650ded +Merge: e874b305a 7bd28346d +Author: Jan Timpe +Date: Fri Apr 12 11:44:18 2024 -0400 + + Merge branch '2536-cat4-design' into 2842-cat-4-related-records + +commit d2af94ca612fd61c2c4e8a17dc7f725275802ef9 +Author: Eric Lipe +Date: Fri Apr 12 09:34:03 2024 -0600 + + - remove temp + +commit ce82d12d7501e4e1512cc0dd5070cf697376e0b1 +Author: Eric Lipe +Date: Fri Apr 12 09:33:38 2024 -0600 + + - abide by shellcheck + +commit 6365965e6a037c269b3acdd5a889e4a202eb7b6f +Author: Eric Lipe +Date: Fri Apr 12 09:24:00 2024 -0600 + + - remove echo + +commit ac2b8eb1f262642a51cfbd446e101d42e0afcc3c +Author: Jan Timpe +Date: Fri Apr 12 11:20:17 2024 -0400 + + document unsafe-inline exception + +commit b3c4295f2a934cb9db8212f5b9a8f97647c345b0 +Author: Eric Lipe +Date: Fri Apr 12 09:14:56 2024 -0600 + + - add an echo + +commit a8dddf5bdf41602c49417d79c347448a7eec03e7 +Author: Eric Lipe +Date: Fri Apr 12 09:11:59 2024 -0600 + + - remove sleep + +commit c011884e12cd66b3fdc837ded52ba75aac617717 +Author: Eric Lipe +Date: Fri Apr 12 08:53:01 2024 -0600 + + - readding wait + +commit 17c3bdeaf214098510f124f9c8c16584dada9c9d +Author: Eric Lipe +Date: Fri Apr 12 08:52:13 2024 -0600 + + - testing a sleep + +commit 317021c6eab936d7b014f842ae0584bc15d52bdc +Author: Eric Lipe +Date: Fri Apr 12 08:32:08 2024 -0600 + + - enable scan, force cmd params + +commit 44bc2baa114b033157010191d0d6f452d121161b +Author: Eric Lipe +Date: Fri Apr 12 08:28:40 2024 -0600 + + - testing with no scan + +commit 7bd28346d1804c970aad958672afbb2289d108a6 +Merge: 61224cc6b fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:12:22 2024 -0600 + + Merge branch 'develop' into 2536-cat4-design + +commit 05e9ce3ca7293bccf10f931a6f6dd1e3a16188d9 +Merge: 05e979cbb fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:12:16 2024 -0600 + + Merge branch 'develop' into 2807-quarter-validate + +commit 75cfa1e8fa15e4f1c7dea705fafe72fac0646963 +Merge: 7038dade9 fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:12:08 2024 -0600 + + Merge branch 'develop' into 2818-take-three + +commit 26afb118e53aab7bea58ca8df908a780fc9ccc1a +Merge: d6d7c4717 fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:12:02 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit 816ba741789831c069e3053dc61c2455e5cb8173 +Merge: 1021a9f92 fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:11:51 2024 -0600 + + Merge branch 'develop' into 2826-trailing-spaces + +commit 9b0750677029721aae0ad623ec06b1473f5522b0 +Merge: 54e4fb811 fac5838a5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:11:46 2024 -0600 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 0c80e97c5deb5a4e0fe882ee17ee35d2d2988639 +Merge: 559de612b fac5838a5 +Author: Eric Lipe +Date: Fri Apr 12 08:10:56 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2768-zap-fix + +commit 559de612bc397a2b649ce96d235afca613e28de3 +Author: Eric Lipe +Date: Fri Apr 12 08:07:06 2024 -0600 + + - enable all opts + +commit fac5838a580d6b1d5536c3846eeffb9b4170cfda +Merge: 054a475d0 c76bc28e5 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Apr 12 08:05:53 2024 -0600 + + Merge pull request #2940 from raft-tech/zap-image-fix + + Zap Image Hotfix + +commit c76bc28e5b4c6c620e71100249e0c500deacaad8 +Author: Eric Lipe +Date: Fri Apr 12 07:46:36 2024 -0600 + + - Update zap image + +commit c2ae8f7756ccb73db726537205ac809f2c8cd8fc +Author: Eric Lipe +Date: Fri Apr 12 07:27:23 2024 -0600 + + - removing cli opts + +commit 5e8f427df3ca3a3e869afb2494ebc321b61afcaa +Author: Eric Lipe +Date: Fri Apr 12 07:19:14 2024 -0600 + + - disable backend + +commit cce6cac4669920839e3c7a85356f7a36526fc625 +Author: Eric Lipe +Date: Thu Apr 11 17:10:32 2024 -0600 + + - comment out exit again + +commit c0b246b95df605f7da911cf56ef054af7abd51e8 +Author: Eric Lipe +Date: Thu Apr 11 16:58:37 2024 -0600 + + - all scans + +commit 3ed5a80dff5a361000d8f7961257fa8f4baca0fd +Author: Eric Lipe +Date: Thu Apr 11 16:58:17 2024 -0600 + + Revert "- Breakup args" + + This reverts commit fdfed7ea34f55921a803f26829ceb1bc65cf76c3. + +commit 7d489b507e962045dd9feb6fbc62b915d1b2e46c +Author: Eric Lipe +Date: Thu Apr 11 16:57:24 2024 -0600 + + - 2 minute crawling + +commit 046d995c594f5dd9e6d98c75ccf59dd0520ae626 +Author: Eric Lipe +Date: Thu Apr 11 16:57:07 2024 -0600 + + - add exit back in + +commit f1e51588738dab8e8239fee8a25a2ff80ffc0d7e +Author: Eric Lipe +Date: Thu Apr 11 16:44:35 2024 -0600 + + - remove echo + +commit efd4df424d76a009129108b177ad5892987f7d3c +Author: Eric Lipe +Date: Thu Apr 11 16:40:34 2024 -0600 + + - Update zap image to a supported image + +commit 10f65604503e491b32a75ffbfe2c71f5aa5b552e +Author: Eric Lipe +Date: Thu Apr 11 16:23:29 2024 -0600 + + - remove exit + +commit 5e6d03b2d4c6dafa3c96552a3b2474982e938b16 +Author: Eric Lipe +Date: Thu Apr 11 16:18:42 2024 -0600 + + - debug + +commit 2f814705d4ba2de9f25b81ff1c17501f61b62961 +Author: Eric Lipe +Date: Thu Apr 11 16:05:08 2024 -0600 + + - enable scan + +commit 11902e48264ca3a0bfd5b158e8a6d19f21943026 +Author: Eric Lipe +Date: Thu Apr 11 16:02:47 2024 -0600 + + - testing whether scripts exist + +commit 236ab9ef5d112fb5eff4a371d9cd992729e921fa +Author: Eric Lipe +Date: Thu Apr 11 15:44:22 2024 -0600 + + - debug + +commit de81b27ab2b9c3a8d8e6751b1864747226ed9aa8 +Author: Eric Lipe +Date: Thu Apr 11 14:36:04 2024 -0600 + + - commenting failing piece + +commit 05e979cbba8750f7ee4be5a14ced83df8de914bb +Author: Eric Lipe +Date: Thu Apr 11 14:09:34 2024 -0600 + + Revert "- debugging" + + This reverts commit b77392eff5d878b7f8e8596a7cb7e28c70d64b57. + +commit b77392eff5d878b7f8e8596a7cb7e28c70d64b57 +Author: Eric Lipe +Date: Thu Apr 11 14:06:57 2024 -0600 + + - debugging + +commit 5c0b00e07dfb4d92a783bc420f9372a4b54e4d20 +Author: Eric Lipe +Date: Thu Apr 11 11:23:39 2024 -0600 + + - Adding verbosity to zap script + - testing staging + +commit fdfed7ea34f55921a803f26829ceb1bc65cf76c3 +Author: Eric Lipe +Date: Thu Apr 11 11:18:00 2024 -0600 + + - Breakup args + +commit 943fc6948ac5d535b0acff0d0f054b08c5ee0f32 +Author: Eric Lipe +Date: Thu Apr 11 10:58:47 2024 -0600 + + - removing wait + +commit ccbc4f99fa43a6bf71f491fc71d2e8ab4cfb4078 +Author: Eric Lipe +Date: Thu Apr 11 08:59:04 2024 -0600 + + - adding todo reminder + +commit cd55db0d1a0076866f694120188c9c1e66f71b8f +Merge: 0d834d351 054a475d0 +Author: Miles Reiter +Date: Thu Apr 11 10:58:25 2024 -0400 + + Merge branch 'develop' into knowledge-center-march + +commit 0d834d351b63ec3abbdcf7c913d34eda7d9b33ca +Author: Miles Reiter +Date: Thu Apr 11 10:57:59 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit c8fe311a8b9c79236b9119594afff55bb31eaf7b +Author: Miles Reiter +Date: Thu Apr 11 10:57:21 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 7728ba3ae1ed47bdb0de55752c4a31f64c98151f +Author: Eric Lipe +Date: Thu Apr 11 08:53:38 2024 -0600 + + - overriding workflow + +commit 2fbc96d85ca23efd7534a5673cc4d1e3d9a700ec +Author: Eric Lipe +Date: Thu Apr 11 08:52:17 2024 -0600 + + - update run-task structure + +commit 61224cc6bd9c5649da65d8f6c5c2d032b8d7d17e +Author: Eric Lipe +Date: Thu Apr 11 07:47:15 2024 -0600 + + - remove un-needed functions + +commit dcc3722b7b7797793e3521d67ae8ebdf22ec062f +Merge: af616a473 054a475d0 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 11 07:43:38 2024 -0600 + + Merge branch 'develop' into 2536-cat4-design + +commit af616a4732a8f0efab9c48090780f34a323621cc +Author: Eric Lipe +Date: Thu Apr 11 07:41:49 2024 -0600 + + - remove unnecessary cat4 validator + +commit 054a475d0bda1a5cc0a71848aa5190a7580f4b2c +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu Apr 11 07:38:00 2024 -0400 + + 2814-aggregate-cloud-gov-ES-instances (#2876) + + * local ES aggregate + + * changes for elastic search instance needed + + * linting + + * corrected setting the env var for proxy.yml + + * changed app name to one env + + * corrected frontend deployment vars + + * corrected command for sh + + * EMR-2814 removed unused var in deploy frontend + + * moved deploying kibana and es out to separate script + + * md file added for script + + * linting + + * 2814 revert unnecessary changes + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit d6d7c47174f86cb48d2752ae6cd21bb8762f82a0 +Merge: 6a23258df 1c7b4c7cc +Author: Eric Lipe +Date: Wed Apr 10 10:50:41 2024 -0600 + + Merge branch '2839-nginx-dns' of https://github.com/raft-tech/TANF-app into 2839-nginx-dns + +commit 6a23258df6badf1d5573e7656d594a56f9d80a5e +Author: Eric Lipe +Date: Wed Apr 10 10:50:35 2024 -0600 + + - remove trailing `/` + +commit cba6a9d9b2222adcf348ee0bf889249283d354b9 +Author: Miles Reiter +Date: Wed Apr 10 11:59:51 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 48631dca89687476aae8a59807dd6d33b91ff7b4 +Author: Miles Reiter +Date: Wed Apr 10 11:59:41 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 492c34753c10c842e605aec0c9dcad9e2fa7a336 +Author: Miles Reiter +Date: Wed Apr 10 11:59:16 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 05bbb7abb493b08e8f66c9b71aa3efb3bca1e76f +Author: Jan Timpe +Date: Wed Apr 10 10:02:32 2024 -0400 + + clean up comments + +commit efdaa2c4725ae72f519e4685b8bca4c4b5d1e2e1 +Author: Jan Timpe +Date: Wed Apr 10 09:32:57 2024 -0400 + + rm comment + +commit 14487610f72477eb799055e7079ec3c97c20746f +Author: Jan Timpe +Date: Wed Apr 10 09:32:18 2024 -0400 + + rm irrelevant test case + +commit a34bc11465667acf90932d85992863c5f22635dd +Author: Jan Timpe +Date: Wed Apr 10 09:04:09 2024 -0400 + + fix tests + +commit b4dd54b22fdca16279734151ecce7c28268fe227 +Merge: fa56e6ebc 487947e6e +Author: Miles Reiter +Date: Wed Apr 10 01:14:03 2024 -0400 + + Merge branch 'develop' into knowledge-center-march + +commit fa56e6ebc86acc73869565e9d4930459e41d083c +Author: Miles Reiter +Date: Wed Apr 10 01:10:12 2024 -0400 + + Update view-submission-history.html + +commit 7e37295317feccf4c4bae2e9202aacf0b526ec32 +Author: Miles Reiter +Date: Tue Apr 9 19:52:41 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 9c1f865e457705a5b748852abfa747a0490a93bf +Author: Miles Reiter +Date: Tue Apr 9 19:52:35 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 1413d2138db51a6932ca345e28e3710ca494f2c4 +Author: Miles Reiter +Date: Tue Apr 9 19:52:27 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit fedaa6b8948828445dd11d8e199714160aa72a99 +Author: Miles Reiter +Date: Tue Apr 9 19:52:21 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 9f9978c324f6d1430e63c1cdb99e9f61f2021c99 +Author: Miles Reiter +Date: Tue Apr 9 19:52:12 2024 -0400 + + Update product-updates/knowledge-center/view-submission-history.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 3e2f8cf750bc7943d4355b6a0be06080d76a99a8 +Merge: 5ce18894f e874b305a +Author: Jan Timpe +Date: Tue Apr 9 15:04:59 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit e874b305af6a9adae0a3614ba916211469f53076 +Author: Jan Timpe +Date: Tue Apr 9 14:03:20 2024 -0400 + + unused import + +commit c07655246b317c98c51bc3699031e04742e9c792 +Merge: f85c41b69 487947e6e +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:47:47 2024 -0600 + + Merge branch 'develop' into 2807-quarter-validate + +commit 7038dade903dbcc09df10c44c146a6284c3b0ff4 +Merge: db5a31e19 487947e6e +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:47:42 2024 -0600 + + Merge branch 'develop' into 2818-take-three + +commit db5a31e197df073a4335521813841e9bea8e9bb4 +Author: Eric Lipe +Date: Tue Apr 9 11:47:35 2024 -0600 + + - fix lint + +commit 54e4fb8117c34fd8b5dec32e72eb544d35fa2307 +Merge: 06213b77a 487947e6e +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:46:33 2024 -0600 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 1021a9f92ca410419a14983812974b907c9107bd +Merge: 6c9503e4e 487947e6e +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:46:23 2024 -0600 + + Merge branch 'develop' into 2826-trailing-spaces + +commit 44076024b82292a84fa3253cf2899d1a939943dc +Merge: d9cdd9c94 487947e6e +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:46:12 2024 -0600 + + Merge branch 'develop' into 2536-cat4-design + +commit 487947e6e5618f1e84f2122d41295e40ce53479c +Merge: 16cf74302 d4d5a9c75 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:45:06 2024 -0600 + + Merge pull request #2898 from raft-tech/2287-rec-oasdi-insurance + + 2887 - 18A REC_OASDI_INSURANCE not mandatory + +commit a6857ba3ceed7d57a701364b7eaddac526e78701 +Author: Jan Timpe +Date: Tue Apr 9 13:41:13 2024 -0400 + + rm old tests + +commit d4d5a9c757d8a5e408cb9abc80b931eed1f0f915 +Merge: 15be88bc0 16cf74302 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 11:30:39 2024 -0600 + + Merge branch 'develop' into 2287-rec-oasdi-insurance + +commit 0db53e1b5adcfaeaed3805053bc5b1566ab81edb +Author: Eric Lipe +Date: Tue Apr 9 11:26:36 2024 -0600 + + - Update according to feedback + +commit 850d76cd374186994fe0823137fd36b5014b2807 +Merge: 9e8f30edd 16cf74302 +Author: Eric Lipe +Date: Tue Apr 9 11:06:24 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2818-take-three + +commit f85c41b690f1df4aef49c6d156e1fa54d127dbe3 +Merge: b82621c9b 16cf74302 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Apr 9 10:58:40 2024 -0600 + + Merge branch 'develop' into 2807-quarter-validate + +commit b82621c9bc5347ebb9201b34fd5a903514f6a3ba +Author: Eric Lipe +Date: Tue Apr 9 10:54:54 2024 -0600 + + - fix lint + +commit 6a09786c29e692797ec855a074fe73b2f31e8fe6 +Author: Eric Lipe +Date: Tue Apr 9 10:52:03 2024 -0600 + + - Add cat1 validator for calendar quarter + - Update test + +commit 5ce18894f28b588908b53f30a6f18bd7cc678c73 +Merge: fe50af778 a64a8ee59 +Author: Jan Timpe +Date: Tue Apr 9 10:59:35 2024 -0400 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit a64a8ee59fd6fa8d1ca76c434b66163e02e3d7f6 +Merge: ad86a1266 d9cdd9c94 +Author: Jan Timpe +Date: Tue Apr 9 10:01:31 2024 -0400 + + Merge branch '2536-cat4-design' into 2842-cat-4-related-records + +commit 06213b77a974581297898dec7ab09ac68a186a8f +Merge: 9674e7c94 16cf74302 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Apr 9 09:58:39 2024 -0400 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 16cf743024729df3969e0261226ba23b627034b5 +Merge: 953535813 860e0e7de +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Apr 9 09:56:03 2024 -0400 + + Merge pull request #2911 from raft-tech/fix/2822-webinspect-session-cookie + + 2822 fix webinspect medium priority - persistent session + +commit 860e0e7de21d555ac2bf87b4a0105f689a7edfcf +Merge: bd8cefdc5 953535813 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Apr 9 09:47:40 2024 -0400 + + Merge branch 'develop' into fix/2822-webinspect-session-cookie + +commit bd8cefdc5b07867359472a4d3a66707496bc28ed +Author: Jan Timpe +Date: Tue Apr 9 08:23:45 2024 -0400 + + add SESSION_COOKIE_AGE + +commit 83ab2f17b25f97474751a8eb0669ebb12c84f97c +Author: Eric Lipe +Date: Mon Apr 8 11:38:44 2024 -0600 + + - Fix parse test + +commit c3368ee3e53e5895c65e158a69090c57d4327321 +Author: Eric Lipe +Date: Mon Apr 8 11:34:12 2024 -0600 + + - Update tests + +commit 8d22660c0eec5dbe1cc56aeaaaa6e5267e3dbe6c +Merge: 80fcedd27 953535813 +Author: Eric Lipe +Date: Mon Apr 8 11:28:11 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2807-quarter-validate + +commit 9535358131fa59c31de3762d1c22bff3f3bf7d6c +Merge: e6b0fb7a4 d3250a750 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Apr 8 13:22:19 2024 -0400 + + Merge pull request #2880 from raft-tech/fix/2870-bulkindexerror-handling + + Change handling of elastic BulkIndexError + +commit f32ca4e878e2e7810831f2d5baca3c50f375f0e5 +Merge: bd545b2de e6b0fb7a4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Apr 8 12:42:14 2024 -0400 + + Merge branch 'develop' into fix/2822-webinspect-session-cookie + +commit d3250a7502840c29205e033760508e8da9dc0f40 +Merge: 611223330 e6b0fb7a4 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Apr 8 12:41:34 2024 -0400 + + Merge branch 'develop' into fix/2870-bulkindexerror-handling + +commit d9cdd9c9472e9a023c352531bd3722c49b881430 +Merge: b5acdf905 e6b0fb7a4 +Author: Eric Lipe +Date: Mon Apr 8 09:14:40 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design + +commit 6c9503e4ef3f02880f4f43c6f3ffd4dbfc558beb +Author: Eric Lipe +Date: Mon Apr 8 09:11:52 2024 -0600 + + - fixed tests + +commit 9e7f2c879376d846078b739f977903710aa7d266 +Author: Eric Lipe +Date: Mon Apr 8 09:06:57 2024 -0600 + + - Update test_parse tests to support validator updates + +commit c37d6df8faa78c8a09d0d7d9021e490e8bd2870d +Merge: 9cbc62207 e6b0fb7a4 +Author: Eric Lipe +Date: Mon Apr 8 09:03:05 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2826-trailing-spaces + +commit 9674e7c942b3184d7f93c636ec51c383c9bb7e62 +Merge: 62b17225c e6b0fb7a4 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 8 08:52:18 2024 -0600 + + Merge branch 'develop' into 2908-dac-csv-export + +commit 1c7b4c7ccfd21d234f6cf6838d4c1384c30386ff +Merge: ef22275d9 e6b0fb7a4 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 8 08:52:06 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit e6b0fb7a4c02cbac0188c2e8149f3b863d491f59 +Merge: eb08f1267 de813c632 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 8 08:51:43 2024 -0600 + + Merge pull request #2838 from raft-tech/2673-cat1-cleanup + + Cat1 Cleanup + +commit 62b17225ca6b33819a2cc5d1c88be0e2740b063b +Author: Eric Lipe +Date: Fri Apr 5 09:23:59 2024 -0600 + + - lint + +commit a9407d4b8cc971ffa593237b6066f20d1a07b92c +Author: Eric Lipe +Date: Fri Apr 5 08:54:07 2024 -0600 + + - Aggregate Mixin classes + - Aggregate overrides to respective classes + +commit bd545b2de8f129e42ce79047448a5872d7af005b +Merge: 9e14abc56 eb08f1267 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Apr 4 12:36:36 2024 -0400 + + Merge branch 'develop' into fix/2822-webinspect-session-cookie + +commit 611223330c450f82529baee50af83a67a879722b +Merge: d5d05e712 eb08f1267 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Apr 4 12:25:51 2024 -0400 + + Merge branch 'develop' into fix/2870-bulkindexerror-handling + +commit ad86a1266e27439e23f0d2832410c9e45a40906f +Author: Jan Timpe +Date: Thu Apr 4 12:19:48 2024 -0400 + + update test docstring + +commit 9cbc622071bbf06ca5841c00d4bdb6abe5d37713 +Merge: 595257a12 eb08f1267 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 4 08:31:28 2024 -0600 + + Merge branch 'develop' into 2826-trailing-spaces + +commit ef22275d9601ebd87920e13b2505680ad0e454f5 +Merge: 6fbbc2417 eb08f1267 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 4 08:31:15 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit de813c63241573b7ded5639bb99753f50e5b1d5d +Merge: 5d6bb1538 eb08f1267 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Apr 4 08:31:09 2024 -0600 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit c3aaa16f0f305e5a2eda26ddb40d2997f38bc9e5 +Merge: d4dac92b4 e128e5a4b +Author: Eric Lipe +Date: Wed Apr 3 16:18:30 2024 -0600 + + Merge branch 'dac-csv-export' of https://github.com/raft-tech/TANF-app into dac-csv-export + +commit d4dac92b4741af5df6fe853f4da10ccaa75b0633 +Author: Eric Lipe +Date: Wed Apr 3 16:18:29 2024 -0600 + + - fix lint + +commit e128e5a4b20feec246ffdc39809a3820c8774b2b +Merge: d8c5619ed eb08f1267 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 3 15:16:49 2024 -0600 + + Merge branch 'develop' into dac-csv-export + +commit d8c5619ed6489dbcedb1ff741184925ba5a5afc6 +Author: Eric Lipe +Date: Wed Apr 3 14:53:49 2024 -0600 + + - Removing unnecessary method + +commit b5acdf9057f69fb11f5c4a77c657ae5f8e34c66d +Merge: 7c0b80a93 eb08f1267 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 3 14:48:38 2024 -0600 + + Merge branch 'develop' into 2536-cat4-design + +commit 5940b734b4b0f83b5b32c6fbd931b9d16c7d8077 +Author: Eric Lipe +Date: Wed Apr 3 14:46:40 2024 -0600 + + - Make admin read only + +commit 7e6979f3e3f7e10b0a27abfb2af2f874fcd00864 +Author: Eric Lipe +Date: Wed Apr 3 14:37:24 2024 -0600 + + - Order by stt_code + +commit ca995ce50cbc03f039fd2f510f175774ee26118c +Author: Eric Lipe +Date: Wed Apr 3 14:13:32 2024 -0600 + + - lint + +commit e3ecc0d9086954a3fc4c5ff5b2da9b62b55f1888 +Author: Eric Lipe +Date: Wed Apr 3 14:07:44 2024 -0600 + + - Remove unused includes + +commit bbba7989a429a15421787b1c46f7c729adea08c1 +Author: Eric Lipe +Date: Wed Apr 3 14:07:09 2024 -0600 + + - Rename Mixin + - Create base Mixin to appeal to MRO + +commit 705deb603cd13f8a653caa228b7e14523e0c92d6 +Author: Eric Lipe +Date: Wed Apr 3 14:01:11 2024 -0600 + + - Add multiselector listfilter + - Update admin models + +commit eb08f12670cd8097c76804fc37b44fa361ae760b +Merge: 7a062d8d3 ef6f44fe5 +Author: Miles Reiter +Date: Wed Apr 3 15:10:08 2024 -0400 + + Merge pull request #2907 from raft-tech/error-categories-guide + + Error categories guide + +commit ef6f44fe534cc6c676ddc83c3857fd52dd010f90 +Merge: 01de8a48b 7a062d8d3 +Author: Miles Reiter +Date: Wed Apr 3 15:01:13 2024 -0400 + + Merge branch 'develop' into error-categories-guide + +commit 80fcedd2799bd5d5eb4c3506c55b2844b626b33f +Merge: a1d5cf57f 7a062d8d3 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Apr 3 14:41:38 2024 -0400 + + Merge branch 'develop' into 2807-quarter-validate + +commit 15be88bc0f877b9edfcb5ead1a96f3e638181bb0 +Merge: eb412eff0 7a062d8d3 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Apr 3 14:41:30 2024 -0400 + + Merge branch 'develop' into 2287-rec-oasdi-insurance + +commit d5d05e71276145438981c4d8c0137f38a9076a27 +Merge: c146f6b06 7a062d8d3 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Apr 3 14:29:52 2024 -0400 + + Merge branch 'develop' into fix/2870-bulkindexerror-handling + +commit eb412eff00d57394910b4bb60175287f8b5e6c07 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Apr 3 14:26:33 2024 -0400 + + change U to D in datafile to align with other ticket not yet comitted + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit d96e2729bb9f77f57ad649bc96af72c748526059 +Merge: be3c1f0d0 7a062d8d3 +Author: Miles Reiter +Date: Wed Apr 3 14:26:03 2024 -0400 + + Merge branch 'develop' into knowledge-center-march + +commit a1d5cf57fb39bab0c6e0f42a89ff3a8480b66cc3 +Author: Andrew Trimpe +Date: Wed Apr 3 14:24:49 2024 -0400 + + update 2019 -> 2020 and fix datafiles and tests + +commit 7a062d8d38d95c74015ba2a5692171cf4f37150a +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 3 11:22:39 2024 -0600 + + DIGIT Team Group + Kibana + Queries (#2861) + + * - Added new group and permissions + - Updated frontend to allow digit access to admin and kibana + + * - Add test + - Update test + - Add fixture + + * - Rename migration + + * - removing debug print + + * - Give digit team access to all parsed data + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 01de8a48b74bc968a3b5b4632377db41e5e36d58 +Author: Miles Reiter +Date: Wed Apr 3 12:30:36 2024 -0400 + + Update error-categories-guide.md + +commit 593d54f0bd77bf1022dbb929c24c2073436e0a64 +Author: Miles Reiter +Date: Wed Apr 3 12:29:47 2024 -0400 + + Update error-categories-guide.md + +commit 1162edb7a693a8116967912c849f29ae4e15e70f +Author: Miles Reiter +Date: Wed Apr 3 12:28:18 2024 -0400 + + Update docs/Technical-Documentation/error-categories-guide.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 46e8422a401ed66201140a0cd663e696e90c47c9 +Author: Miles Reiter +Date: Wed Apr 3 12:28:04 2024 -0400 + + Update docs/Technical-Documentation/error-categories-guide.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 595257a1292fc8a481402d873661935a2599df70 +Author: Eric Lipe +Date: Wed Apr 3 09:55:33 2024 -0600 + + - update test + +commit 12c986396a6fc2322d1099b772bf1f16c2f5e515 +Author: Eric Lipe +Date: Wed Apr 3 09:34:56 2024 -0600 + + - Correct rejection query + - Add test to cover rejection query + +commit 03d8f9f48b9fe4f45e60aa3eca500d3289573123 +Author: Andrew Trimpe +Date: Wed Apr 3 11:06:16 2024 -0400 + + lint + +commit 40f2ecc1430768af020c7d32a5109bc9630cb44c +Author: Andrew Trimpe +Date: Wed Apr 3 10:54:25 2024 -0400 + + lint + +commit b8473f0ff30c27ebfeb283a8a342f082cb5a25f0 +Merge: a11c653bc 509309abd +Author: Andrew Trimpe +Date: Wed Apr 3 10:37:24 2024 -0400 + + merge + +commit a4847c0d71bdc4078da005d79dd008d612cff351 +Author: Eric Lipe +Date: Wed Apr 3 08:03:45 2024 -0600 + + - Added support for range based length checks on certain records + - Updated tests + +commit 9e14abc56e03da42861452a827a87653f64ccfef +Author: Jan Timpe +Date: Wed Apr 3 08:12:34 2024 -0400 + + add SESSION_EXPIRE_AT_BROWSER_CLOSE + +commit 5dcbc1d17f0a6c3e229f812247ae7bfa0e800c33 +Author: Jan Timpe +Date: Tue Apr 2 17:36:00 2024 -0400 + + fix merge conflict issue + +commit 71e12ed4770536ea0baf2eb87f132ac804c4246c +Author: Jan Timpe +Date: Tue Apr 2 17:14:34 2024 -0400 + + fix conflicting migrations + +commit df25f0855bd15403b77b02500064f2b5d613475f +Author: Eric Lipe +Date: Tue Apr 2 14:07:42 2024 -0600 + + - fix liint + +commit 90bfc6977c58a0837c11ca560fdf97cee52184be +Author: Eric Lipe +Date: Tue Apr 2 14:06:25 2024 -0600 + + - Enable export for all record types + - Add custom iterators to generate custom rows in the csv + +commit 2b4b2e2ab1c210f29a1b2a5a75e6490be745cc6a +Merge: b115f62ff 7c0b80a93 +Author: Jan Timpe +Date: Tue Apr 2 13:19:54 2024 -0400 + + Merge branch '2536-cat4-design' into 2842-cat-4-related-records + +commit c146f6b06210521faecf8aac09f3df3f3a40c1f2 +Merge: 418320781 509309abd +Author: Jan Timpe +Date: Tue Apr 2 12:59:39 2024 -0400 + + Merge branch 'develop' into fix/2870-bulkindexerror-handling + +commit be3c1f0d04d1cd397c98e5b23b9880de1fa5224c +Author: Miles Reiter +Date: Tue Apr 2 00:19:22 2024 -0400 + + Update view-submission-history.html + +commit 7e9ec5b5bcf6bf3946fd537735f41596bb334a71 +Author: Eric Lipe +Date: Mon Apr 1 11:48:19 2024 -0600 + + - Move class to be internal + +commit 1092ced11fcae2bf8687601d48040e0edb358069 +Author: Eric Lipe +Date: Mon Apr 1 11:36:53 2024 -0600 + + - Convert to streaming interface to avoid timeouts + +commit 5d6bb1538a2cd9762d2fed44a3bf3f3a1633fa5b +Author: Eric Lipe +Date: Mon Apr 1 10:08:20 2024 -0600 + + - Fix test and lint + +commit 00879185df0f6393139498ddbd75ca903f1848d3 +Merge: cbf33c41a 509309abd +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 1 09:28:57 2024 -0600 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit 7c0b80a939780d5b9b8d887150e9347e4755dab9 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 1 09:22:12 2024 -0600 + + Update tdrs-backend/tdpservice/parsers/case_consistency_validator.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 6c2c1aa7a9d42d0d508aa119e7bca2d5c222fa0a +Author: Eric Lipe +Date: Mon Apr 1 09:17:59 2024 -0600 + + - Add filters to models + - Update filter name + +commit 94dd95a0e176bacefb84c3e2b9c17c7abfc7a694 +Author: Eric Lipe +Date: Mon Apr 1 09:12:19 2024 -0600 + + - Add fiscal year filter + +commit 6c6b32ca48bd2d013ecf23e328740e405d068e3d +Author: Andrew Trimpe +Date: Mon Apr 1 10:51:44 2024 -0400 + + merge + +commit 0e60ad76d719783da9dc39dd27fe3a02a43a6f96 +Merge: d1d1c64b8 509309abd +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Apr 1 10:39:39 2024 -0400 + + Merge branch 'develop' into 2287-rec-oasdi-insurance + +commit 9e8f30eddd66e3f1013c19f96d33ae06218d0446 +Merge: efe6c3a3a 509309abd +Author: Andrew Trimpe +Date: Mon Apr 1 10:27:57 2024 -0400 + + merge + +commit 7f515684707b38d7f78a5baff1d49a6106dcf991 +Author: Eric Lipe +Date: Fri Mar 29 15:42:48 2024 -0600 + + - Add stt filter + - Rename file to filters.py + +commit 55aeda7484696732657847ab92a065e124d03888 +Author: Miles Reiter +Date: Fri Mar 29 16:42:17 2024 -0400 + + Update error-categories-guide.md + +commit c0657076fbc76f14268d4b7538f8b3a845b73896 +Author: Eric Lipe +Date: Fri Mar 29 14:41:01 2024 -0600 + + - Add mixin class/file to export admin data as csv + +commit 6fbbc2417b0201fb5b6808f853aac7ef2729d910 +Author: Eric Lipe +Date: Fri Mar 29 14:21:46 2024 -0600 + + - use correct container + +commit f847a02c9b04594e7981fde6b27559837b3a6080 +Author: Eric Lipe +Date: Fri Mar 29 13:50:24 2024 -0600 + + - add logging + - update conf to allow logging + +commit a1aea3cb61cd2f2608ce2a7df267db7e8e370468 +Author: Eric Lipe +Date: Fri Mar 29 13:37:54 2024 -0600 + + - Add logging for clamav proxy + +commit b7f60aef0eb07f412a62902553b318499e155b17 +Author: Eric Lipe +Date: Fri Mar 29 13:36:44 2024 -0600 + + - update scan url + +commit 542aae476ae444431d318e4732424919e327fa95 +Merge: 84b4ebeeb 509309abd +Author: Miles Reiter +Date: Fri Mar 29 15:25:26 2024 -0400 + + Merge branch 'develop' into knowledge-center-march + +commit 84b4ebeeb6e8313b37e2b12f3f32fe6ed96c78e5 +Author: Miles Reiter +Date: Fri Mar 29 15:22:11 2024 -0400 + + Image and content changes from test environment + +commit 62568e0e89b53b995a7b971fbb2165c7cc46fe39 +Author: Eric Lipe +Date: Fri Mar 29 13:18:54 2024 -0600 + + - fix conf errors + +commit a3f050116c2366637ed862351e8cfbbf56c36f1c +Author: Miles Reiter +Date: Fri Mar 29 11:51:03 2024 -0400 + + Update README.md + +commit 9814af7285a187e53f505587a3ca15dcb87d8303 +Author: Miles Reiter +Date: Fri Mar 29 11:48:30 2024 -0400 + + Update error-categories-guide.md + +commit 58b51bd0c50a98a11fc1e75557987568d6fa8e4c +Author: Miles Reiter +Date: Fri Mar 29 11:47:53 2024 -0400 + + Create error-categories-guide.md + +commit d22ad1eceed3dedb9111d489499c35cf2d706efc +Merge: 9f90cbd5f 509309abd +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Mar 29 11:34:26 2024 -0400 + + Merge branch 'develop' into 2536-cat4-design + +commit aa0b7ed29025ef40d2297a7b82d2a60b2ccc7763 +Author: Eric Lipe +Date: Fri Mar 29 09:23:10 2024 -0600 + + - use correct container + +commit 509309abd0c0a730a6414e4dcc539ca0fa04edc1 +Merge: 88d24ec62 e120f9d62 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Mar 29 09:22:06 2024 -0600 + + Merge pull request #2891 from raft-tech/2886-ssp-error-report-download + + Bug: SSP Error Report Download + +commit bf7f97d240126a6244f4f41c3e411a9bf212aeca +Author: Eric Lipe +Date: Fri Mar 29 08:59:04 2024 -0600 + + - committing intermediate result to test kibana with oss elastic + +commit e120f9d62c36c3edecf955394a0f841ac1bdcf67 +Merge: 61aea4e27 88d24ec62 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Mar 29 08:48:18 2024 -0400 + + Merge branch 'develop' into 2886-ssp-error-report-download + +commit 88d24ec621c2088e5385cc291088ca5b57608c28 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Mar 29 07:54:12 2024 -0400 + + 2871-add retry and fix banner_timeout for file upload (#2874) + + * increased the banner_timeout + + * added retry to file upload + + * linting + + * corrected failing retry + + * changed range to 1 to 3 + +commit 61aea4e2774ece05ac2b999f02d89a1b864fb79e +Merge: eb52893bb dedbd30fa +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 28 18:37:10 2024 -0400 + + Merge branch 'develop' into 2886-ssp-error-report-download + +commit fe66bb5ed4d09a82ab1c4b4c6c7bda13a751c537 +Author: Miles Reiter +Date: Thu Mar 28 16:35:31 2024 -0400 + + adds changes from Test + +commit c7b906588594f253a12c68dafbcc2f19a5a2b6fe +Merge: 5a1e890ea dedbd30fa +Author: Miles Reiter +Date: Wed Mar 27 15:00:33 2024 -0400 + + Merge branch 'develop' into Sprint-95-Summary + +commit b115f62ff960ec54fe257896662f5ff24d4a212a +Merge: 62eaa3eaf dedbd30fa +Author: Jan Timpe +Date: Wed Mar 27 14:01:51 2024 -0400 + + Merge branch 'develop' into 2842-cat-4-related-records + +commit dedbd30fa286f047ed4c6b4e2aa32b2b08430f65 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Mar 27 10:46:52 2024 -0400 + + 2877 move ES AWS routing (#2890) + + * changed the manifest to raft docker hub + + * - Include docs on aws proxy + + * added security implications of keeping the image in external docker hub + + --------- + + Co-authored-by: Eric Lipe + +commit a11c653bc6d8e9d43915f08dce565753c5fa2ef3 +Author: Andrew Trimpe +Date: Wed Mar 27 10:10:21 2024 -0400 + + remove relative year calc + +commit 524086c2ab6dd5f90dc7c9cabf27e29fa9b3889a +Author: Eric Lipe +Date: Tue Mar 26 16:45:23 2024 -0600 + + - comment dev var + +commit 4ef2ab671d931352787bc221ca3f9c63f9896249 +Merge: 1a67b8507 4a3eacb89 +Author: Eric Lipe +Date: Tue Mar 26 16:44:49 2024 -0600 + + Merge branch '2839-nginx-dns' of https://github.com/raft-tech/TANF-app into 2839-nginx-dns + +commit 1a67b85079a4638dd59e888b8c12c498d123b04e +Author: Eric Lipe +Date: Tue Mar 26 16:44:45 2024 -0600 + + - Update clamav nginx + +commit 4a3eacb8913891679197cf8064b32473ea23871a +Merge: a0b8181a6 de1600c47 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 26 16:06:23 2024 -0600 + + Merge branch 'develop' into 2839-nginx-dns + +commit a0b8181a635cc1da542c19ddeb759d606c2f9e0b +Author: Eric Lipe +Date: Tue Mar 26 15:58:47 2024 -0600 + + - Add support for proxy passing a dynamic kibana hostname + +commit 5a1e890eae20e9aac72fab9681eab20bd154d1ac +Merge: fc75067fc de1600c47 +Author: Miles Reiter +Date: Tue Mar 26 16:27:32 2024 -0400 + + Merge branch 'develop' into Sprint-95-Summary + +commit cbf33c41a64183cbe760f98a54904dbd8693a346 +Author: Eric Lipe +Date: Tue Mar 26 13:17:44 2024 -0600 + + - fix lint + +commit eb52893bbf185c78d06960b1733d294683c43eaf +Author: Eric Lipe +Date: Tue Mar 26 13:07:21 2024 -0600 + + - add missing param + +commit 40d1a788ba188e04cea181586720772bbaedb90f +Author: Eric Lipe +Date: Tue Mar 26 13:06:00 2024 -0600 + + - fix test + +commit f768f4cba4680df2b7e94d13acf2785eaa7f368b +Merge: eede1a65a de1600c47 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 26 12:29:05 2024 -0600 + + Merge branch 'develop' into 2886-ssp-error-report-download + +commit 4ceab72f0dccc43c2763c33f40944580441b262d +Author: Eric Lipe +Date: Tue Mar 26 12:28:25 2024 -0600 + + - Turn trailer error generation on + +commit 2ee28be19eabbd5e158e9d6fbadf18bf35bee95e +Author: Eric Lipe +Date: Tue Mar 26 12:12:24 2024 -0600 + + - Fix error from merge + +commit 9f90cbd5fddb12e0497cee332cdb48a0cbd0a62d +Author: Eric Lipe +Date: Tue Mar 26 12:08:13 2024 -0600 + + - fix lint + +commit f1292c2eb25cb77486b49b143d4fba96051b5837 +Author: Eric Lipe +Date: Tue Mar 26 12:04:33 2024 -0600 + + - import row schema + +commit 8c595f1294e5ce16e56f0399e7c8e27796bad2e9 +Merge: 0ccb79130 de1600c47 +Author: Eric Lipe +Date: Tue Mar 26 12:02:15 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design + +commit 2e3c050095f529c2fb32a1736be405e8c797f84d +Author: Eric Lipe +Date: Tue Mar 26 11:58:24 2024 -0600 + + - fix lint + +commit fd54c1890104e64b5cae55446e1efbd75287166e +Merge: 20360a112 de1600c47 +Author: Eric Lipe +Date: Tue Mar 26 11:52:19 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup + +commit 20360a112c61117b1b9d2a4f0e8b9d87e9fb1606 +Author: Eric Lipe +Date: Tue Mar 26 11:42:56 2024 -0600 + + - Resolved remaining conflicts and test failures + +commit de1600c47663b9667a2c10ace347fa2c7eea94f6 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 26 10:59:31 2024 -0600 + + 2681 s1 enhancements (#2817) + + * - Added S1 enhancements + + * - fixed tests + + * - removed debug logging level + - add safety to custom validators where type exceptions could occur + + * - fix lint + + * - fixed test after validator correction + + * - Fix incorrect validators + - add logging + - fix lint + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - revert gender requirement + + * - Update based on feedback + + * - Fixed tests to support change to RECEIVES_SUB_HOUSING on t1 + + * - Updated based on feedback + + * - Update tests + + * - Getting yq form git repo + + * Revert "- Getting yq form git repo" + + This reverts commit 96be9313cebcb059b41e4a92cd73b1b0a054932e. + + * - make required + - update test file + + * - Fixed validator to use correct types + + * - fix validator + + * - Update validator per Alex's comments + + * - lint + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 221df4646ade49080dfd2ab8d489c46aa61bf9b0 +Author: Eric Lipe +Date: Tue Mar 26 09:47:52 2024 -0600 + + - Updated validators to leverage row schema instead of individual fields + +commit fc75067fcbee4f6ba0521b8120241186b604a384 +Author: robgendron <163159602+robgendron@users.noreply.github.com> +Date: Tue Mar 26 11:38:49 2024 -0400 + + Rename Sprint-95-Summary.md to sprint-95-summary.md + +commit 0361107c625520c17242ce69cdd6180d0d719135 +Author: robgendron <163159602+robgendron@users.noreply.github.com> +Date: Tue Mar 26 11:37:08 2024 -0400 + + Create Sprint-95-Summary.md + +commit 55b2470515d0dd9b2dfeb995b8f91fe5f7c39857 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 26 09:12:50 2024 -0600 + + File Rejection Criterion (#2867) + + * - Add metadata to datafile to track whether a file should be rejected based on record count + + * - fix lint + + * - Move record counts to DFS + - Update tests + + * - add missing param + + * - Fix lint + + * - Add unit test for rejection criteria + + * - Fix lint + + * - Added error generation for the case when the file is valid but no records are created. + - Added test and updated existing tests + + * - Fix lint + - Remove test file + + * - fixed tests + + * - Fix tests to avoid duplicate key error + + * - Quiet preparse errors for section 3 records + + * - add missing arg + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit da229897ddf84c44d4d73343ca631f2c6fe99d9c +Author: Eric Lipe +Date: Mon Mar 25 15:57:22 2024 -0600 + + - Adding missing params to new validator + +commit 84b683597594210d91da863ca3de4e3fcfac1464 +Merge: 738d0e6e0 fd0718200 +Author: Eric Lipe +Date: Mon Mar 25 15:56:51 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup + +commit 0ccb791306c8b1bdda89b5f6bd7bf584a3447381 +Merge: d6ff4ce52 fd0718200 +Author: Eric Lipe +Date: Mon Mar 25 15:46:50 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design + +commit efe6c3a3afdef0586e97bdccfdcd8c004126d486 +Author: Andrew Trimpe +Date: Mon Mar 25 16:33:15 2024 -0400 + + lint + +commit 19e442b7d1afc9c553855f747ee820153a5bb738 +Author: Andrew Trimpe +Date: Mon Mar 25 16:31:53 2024 -0400 + + lint + +commit d2bdf7cf91f9a45d5c06817524ad14fb91a3c78c +Author: Andrew Trimpe +Date: Mon Mar 25 16:31:37 2024 -0400 + + lint + +commit 8b191e90c5b1e92e46afa2345f922c1d76e71de7 +Author: Andrew Trimpe +Date: Mon Mar 25 16:27:02 2024 -0400 + + undo reverted code + +commit d1d1c64b84fbd3acd50dc5467f36a3aa758352bb +Merge: d8c67437b fd0718200 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Mar 25 09:55:52 2024 -0400 + + Merge branch 'develop' into 2287-rec-oasdi-insurance + +commit d8c67437b0777fa305125bba5ac74c0bab3a43cb +Author: Andrew Trimpe +Date: Mon Mar 25 09:55:29 2024 -0400 + + re-adding validator and altering test data to be <18yo + +commit d1e7665cec907bb84a06ce111d953c6dbec16b87 +Author: Eric Lipe +Date: Mon Mar 25 07:52:57 2024 -0600 + + - committing intermediate code + +commit fd07182006adac14b1b7fcb291c003970f800b16 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Mar 25 09:29:44 2024 -0400 + + 2799 catch rpt month year mismatches (#2812) + + * created pre-check error + + * corrected some of failing tests + + * corrected failing tests + + * two tests still failing + + * Passing tests + + * Update small_incorrect_file_cross_validator.txt + + * Update small_incorrect_file_cross_validator.txt + + * Update small_incorrect_file_cross_validator.txt + + * Update small_incorrect_file_cross_validator.txt + + * revert changes on test file + + * corrected the failing test + + * resolve circular import + + * merge conflict resolution + + * linting + + * correct failing tests + + * corrected t7 tests + + * first changes + + * remove old changes + + * tep changes + + * getting the reporting month + + * correct .util + + * tests failing but the preparsing error works + + * corrected tests, need to stop parsing if pre-validator error + + * solving failing tests + + * linting + + * added field validator to all submission + + * fixing failing tests + + * linting and correct tests + + * added validator for second child + + * merge conflict resolved failing tests + + * priotrized preparsing year/month error + + * linting + + * correct test files and linting + + * 2799 failing tests + +commit 751df09e476d37925172fd16bbbea6e53ba11b88 +Author: Jan Timpe +Date: Mon Mar 25 08:59:28 2024 -0400 + + add sleep + +commit 3334e5c7d688fc8c69dcaf8b9e715f80f4fcd4e3 +Author: Andrew Trimpe +Date: Fri Mar 22 13:41:25 2024 -0400 + + schema change + test and datafile + +commit f1a1b22dc27adbcdec3ad52736ef24405be372e5 +Author: Jan Timpe +Date: Thu Mar 21 13:06:12 2024 -0400 + + batch seed script + +commit eede1a65a21132621f7f24d549c0c3649ce0c60c +Author: Eric Lipe +Date: Thu Mar 21 09:00:47 2024 -0600 + + - remove print + +commit 69b0bbe6b0992f00417dd623c1110a139627487b +Author: Eric Lipe +Date: Thu Mar 21 09:00:30 2024 -0600 + + - Update queryset method to only filter on the list request + +commit d51c636011064bcfb07e7cdfec067c1caa6c0886 +Merge: 0ae5a6fdd ab4224d83 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Mar 21 08:47:57 2024 -0600 + + Merge branch 'develop' into 2886-ssp-error-report-download + +commit 738d0e6e01201481bf7b08ad8db818df9c4ae526 +Merge: 4124130a2 ab4224d83 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Mar 21 08:47:47 2024 -0600 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit d6ff4ce5245826766078bf6084bee60ac287de2a +Merge: 4cb782e74 ab4224d83 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Mar 21 08:47:36 2024 -0600 + + Merge branch 'develop' into 2536-cat4-design + +commit 98f81f6ea9ded45e0cc46abdb45fe80eefd6c5c2 +Author: Jan Timpe +Date: Thu Mar 21 09:38:14 2024 -0400 + + add seed records + +commit 11ff9b8368dd5bfed0599a6366dc147076cb6a53 +Author: Jan Timpe +Date: Thu Mar 21 09:38:05 2024 -0400 + + fix cron time + +commit cf387ee9777c9682f292e82e4f71443c33212186 +Merge: cec7c84ea ab4224d83 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Mar 21 09:22:17 2024 -0400 + + Merge branch 'develop' into 2870-elastic-reindex-cron + +commit 07206872ba19cdc83914b4ab3aa5439f0f1f15a9 +Merge: 9c02d6ad0 ab4224d83 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Mar 20 16:33:03 2024 -0400 + + Merge branch 'develop' into 2807-quarter-validate + +commit 9c02d6ad072347e9dd8a47456f3441f1c5f692e8 +Author: Andrew Trimpe +Date: Wed Mar 20 16:23:46 2024 -0400 + + remove comment + +commit 9e4581cbad56a0384fa47fe5075c1af16d7a79b8 +Merge: dffbe66d7 9c16bcb09 +Author: Andrew Trimpe +Date: Wed Mar 20 16:20:16 2024 -0400 + + Merge branch '2807-quarter-validate' of github.com:raft-tech/TANF-app into 2807-quarter-validate + +commit dffbe66d76f3efe011da689eb6992ca8c7185f39 +Author: Andrew Trimpe +Date: Wed Mar 20 16:20:00 2024 -0400 + + reworked try/catch to a more appropriate area + +commit ab4224d8394f8caca82332971cb94d9c42c42eec +Merge: 36f2f0527 7a1ae9690 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Mar 20 13:48:46 2024 -0600 + + Merge pull request #2894 from raft-tech/deployment-hotfix + + Hotfix for `yq` Installation + +commit 7a1ae96900264d0b45a4087636c9689986352bbe +Author: Eric Lipe +Date: Wed Mar 20 11:46:49 2024 -0600 + + - Add deployment fix + +commit 9c16bcb09db8d1692b3fca0269e4e967e6143512 +Merge: 4545374ee 36f2f0527 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Mar 20 11:28:15 2024 -0400 + + Merge branch 'develop' into 2807-quarter-validate + +commit 4545374ee3c820ca8044e4d4a7f8762e1d68f5b4 +Author: Andrew Trimpe +Date: Wed Mar 20 11:14:24 2024 -0400 + + fixing lint + +commit 4d87f183ae21524f013a71712b6afa61c76dec5b +Author: Andrew Trimpe +Date: Wed Mar 20 11:08:46 2024 -0400 + + requested change + +commit 36f2f05271501d25861ca2378ee1eaeb35d4c579 +Merge: 3772005c0 fa65a6866 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Mar 20 10:59:20 2024 -0400 + + Merge pull request #2893 from raft-tech/2818-undo-merge + + Revert "Merge pull request #2872 from raft-tech/2818-update-indicator" + +commit fa65a6866df397356371d2272f1bda183443e9f3 +Author: Andrew Trimpe +Date: Wed Mar 20 10:45:00 2024 -0400 + + Revert "Merge pull request #2872 from raft-tech/2818-update-indicator" + + This reverts commit 3772005c0904e444661f72c1a3c2892aaf86ab89, reversing + changes made to f38f6df85d614080fcecebff2530503665e6f768. + +commit f897a98272bdf7e5c00da398441739bc0aea6aac +Author: Andrew Trimpe +Date: Wed Mar 20 10:30:28 2024 -0400 + + remove generated file + +commit 3772005c0904e444661f72c1a3c2892aaf86ab89 +Merge: f38f6df85 e729be1db +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Mar 20 09:53:23 2024 -0400 + + Merge pull request #2872 from raft-tech/2818-update-indicator + + 2818-Update Indicator + +commit cec7c84ea1177352e3b252a7441bbde9b1a3d34c +Author: Eric Lipe +Date: Wed Mar 20 07:31:51 2024 -0600 + + - Fix lint + +commit e9809f2527fa6b3388e541e2151919fb10b8c8f8 +Author: Eric Lipe +Date: Tue Mar 19 14:49:42 2024 -0600 + + - Added error logging for the instance where the subprocess return code is not zero + +commit fe50af77889f2450f4ff7a5d3b2b10135eadd0f3 +Author: Jan Timpe +Date: Tue Mar 19 13:37:52 2024 -0400 + + validate case closure reasons + +commit bf3c93916fa45638a33b5bc48eb53dfb20ad4dcc +Author: Jan Timpe +Date: Tue Mar 19 13:32:48 2024 -0400 + + add request timeout var + +commit 4cb782e74ae556917c76af65662802e623f8631d +Merge: 7645b1bec f38f6df85 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 19 13:15:00 2024 -0400 + + Merge branch 'develop' into 2536-cat4-design + +commit 4124130a263ebf1c94895cf744ba8286dcf440ad +Merge: a5df1094e f38f6df85 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 19 13:14:58 2024 -0400 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit e729be1dbea590b318d8e2539cca5f3b4e14ab41 +Author: Andrew Trimpe +Date: Mon Mar 18 15:47:50 2024 -0400 + + remove debug statement + +commit 0ae5a6fdd4e35b010091fa2e35f1211cc8e49967 +Author: Eric Lipe +Date: Mon Mar 18 13:44:50 2024 -0600 + + - resolve duplicate key error + +commit ca82a56c79aae3ca3aee7e1017ee98eb46b75b58 +Author: Andrew Trimpe +Date: Mon Mar 18 15:27:07 2024 -0400 + + lint + +commit 96d2783718d15e7ac5bedb1e6888d782f83b6d6a +Author: Eric Lipe +Date: Mon Mar 18 13:25:04 2024 -0600 + + - Fix lint + +commit 582da0115477bb82f1e59e5db272c74cf9486704 +Author: Eric Lipe +Date: Mon Mar 18 13:24:04 2024 -0600 + + - Updated fixtures to create an stt who can submit both SSP and TANF + - Updated test to capture downloading SSP error report + +commit 997c1a5cf547b127f3c2eec01df59e29cab0b222 +Author: Andrew Trimpe +Date: Mon Mar 18 15:16:54 2024 -0400 + + fix test + cleanup + +commit 9fe1470719f5836326742f81db56794fa01bf6b6 +Merge: 7529c687e f38f6df85 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Mar 18 12:43:40 2024 -0600 + + Merge branch 'develop' into 2886-ssp-error-report-download + +commit 3abc89412675008c37379ad05821fac079acce38 +Merge: 271f7f1e9 f38f6df85 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Mar 18 14:43:02 2024 -0400 + + Merge branch 'develop' into 2818-update-indicator + +commit 7529c687ea9bb944fb13afb4e55806553d3684c0 +Author: Eric Lipe +Date: Mon Mar 18 12:32:04 2024 -0600 + + - Removed erroneous queryset filter that was causing ssp report to now download + +commit f38f6df85d614080fcecebff2530503665e6f768 +Author: Miles Reiter +Date: Mon Mar 18 13:56:01 2024 -0400 + + GitHub Research Docs Fixes (#2868) + + * Move over changes from Camilla's branch + + * Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + + Referenced file that no longer exists on the repo (now deep in archives in Figma & implemented in-app) + + * Update 2020, Spring - Understanding the local experience.md + + replaced old link pointing to project wiki + + * Update 2023, Spring - Testing CSV & Excel-based error reports.md + + Final jump to link fix + + * Update 2023, Winter - TDP 3.0 Pilot Program.md + + last research synthesis naming convention link fix + + * Update docs/User-Experience/Research-Syntheses/2020, Fall - Flatfile Metadata Guide.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + + * Update docs/User-Experience/Research-Syntheses/2021, Spring - Evil User Journeys & TANF Data Errors.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + + * Update docs/User-Experience/Research-Syntheses/2022, Fall - TDP 2.2 Pilot Expansion.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + + * Update 2023, Winter - TDP 3.0 Pilot Program.md + + * Update 2023, Winter - TDP 3.0 Pilot Program.md + + --------- + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 7645b1becc8e4c283cf1786c64ff66e43c466fd1 +Author: Eric Lipe +Date: Mon Mar 18 10:42:42 2024 -0600 + + - Appease linter + +commit 0c6af70c79260c96ba1725eed0200907849c3fc9 +Author: Eric Lipe +Date: Mon Mar 18 10:16:05 2024 -0600 + + - Adding try/except in validate + +commit 4880610b71fe64aaeb88fcd543142eef2b19769c +Author: Andrew Trimpe +Date: Mon Mar 18 11:10:14 2024 -0400 + + fixing tests + +commit 929e94f2ffdb1eec1f11890af0514d3f48463819 +Author: Andrew Trimpe +Date: Mon Mar 18 10:21:05 2024 -0400 + + fixing tests + +commit 130d324e98dbd15402ae2bff66eae2f1514f6881 +Author: Jan Timpe +Date: Mon Mar 18 09:32:29 2024 -0400 + + task name consistency + +commit 28969b0fd79c83144091443940c6f4b9d78fcf47 +Author: Jan Timpe +Date: Mon Mar 18 09:10:01 2024 -0400 + + use `subprocess` instead + +commit 6d757c971859044f1561e207f69c5a67957bea31 +Author: Jan Timpe +Date: Fri Mar 15 17:45:50 2024 -0400 + + lint + +commit b486395a45b90f69f884be2acc75de4eabbfc0d7 +Author: Jan Timpe +Date: Fri Mar 15 16:48:42 2024 -0400 + + parameterize `thread_count` and `chunk_size` + +commit 61e391f6df7bf784811cf6033724e8c142de930d +Author: Jan Timpe +Date: Fri Mar 15 16:38:18 2024 -0400 + + change cron schedule + +commit bccc2bbe9ce69ab2b6ca1bfcc3a571ea81b536ee +Author: Jan Timpe +Date: Fri Mar 15 16:33:53 2024 -0400 + + casting + +commit 8147a5f14cabf6c6207f30e2bd82449c4c07d193 +Author: Jan Timpe +Date: Fri Mar 15 16:29:39 2024 -0400 + + remove confusing object repr + +commit 012a614bf089ad06abcb0ebb3cdad5d7375f14e8 +Author: Jan Timpe +Date: Fri Mar 15 16:29:14 2024 -0400 + + parameterize `log` options + +commit f8890a98c9df4fd8c18e256deffa94c163c7adc9 +Author: Jan Timpe +Date: Fri Mar 15 16:12:56 2024 -0400 + + enable index aliases + +commit 87f5b548383f8cabb18e6cae67030895a3761657 +Author: Jan Timpe +Date: Fri Mar 15 16:12:46 2024 -0400 + + override django-elasticsearch-dsl _populate to pass in some options + +commit 13248bcd30112f04e5279f1a770ac78328e5d317 +Author: Jan Timpe +Date: Fri Mar 15 16:12:24 2024 -0400 + + enable parallel indexing + +commit b7310cf2bd0bfbdd18f457214a3510afb47b3dbc +Merge: d20225cb9 06c291622 +Author: Andrew Trimpe +Date: Fri Mar 15 09:56:59 2024 -0400 + + Merge branch '2807-calendar-quarter' of github.com:raft-tech/TANF-app into 2807-calendar-quarter + +commit d20225cb94e0e8dfe80427c1c9538c3fc3b0f8f4 +Author: Andrew Trimpe +Date: Fri Mar 15 09:50:24 2024 -0400 + + date update + catching invalid quarter error + +commit 06c291622af5cf3937ca0f39650729f0518af19e +Author: Andrew Trimpe +Date: Fri Mar 15 09:50:24 2024 -0400 + + date update + catching invalid quarter error + +commit a5df1094ee462cd74bbf1167a9e586c15f8f5668 +Author: Eric Lipe +Date: Thu Mar 14 12:04:35 2024 -0600 + + - fix lint + +commit 418320781de072378ff7578d9dab4573125bb376 +Merge: f894f5e9b abd50999a +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Mar 14 13:41:59 2024 -0400 + + Merge branch 'develop' into fix/2870-bulkindexerror-handling + +commit 7d657226fefe9dae8669497520a071806da3b2b3 +Merge: 1593f55b7 abd50999a +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Mar 14 13:41:51 2024 -0400 + + Merge branch 'develop' into 2870-elastic-reindex-cron + +commit 840980ed9c20f9927f6c013359a3357833aeec5e +Merge: 419e9125e abd50999a +Author: Eric Lipe +Date: Thu Mar 14 11:39:13 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design + +commit b3ea53a8bdf931dca09fb9e8bdc572402f15bbf2 +Author: Eric Lipe +Date: Thu Mar 14 11:37:12 2024 -0600 + + - Fix tests + +commit 0e52b37927996c1a88ce3f0cfe8d8ecc40db55fe +Author: Eric Lipe +Date: Thu Mar 14 11:19:24 2024 -0600 + + - Fixed validator tests + +commit eb5efa7d34c39b553d0ffd1f5653c259dcfc50c9 +Author: Eric Lipe +Date: Thu Mar 14 10:57:35 2024 -0600 + + - Fixed parse tests + +commit e4eba5f7414cc3cc201871d6abaaea99e39ba63f +Merge: c014e5739 abd50999a +Author: Eric Lipe +Date: Thu Mar 14 09:46:40 2024 -0600 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup + +commit abd50999a5d9c793dc30b7daec096059fc1a3d56 +Merge: 27f5d030a f5f8fb1c8 +Author: Miles Reiter +Date: Wed Mar 13 19:21:55 2024 -0400 + + Merge pull request #2882 from raft-tech/sprint-94-summary + + Create sprint-94-summary.md + +commit f5f8fb1c8f2c42fa399adb8ff2ec7399bc0cccc8 +Merge: 40bf72661 27f5d030a +Author: Miles Reiter +Date: Wed Mar 13 19:10:53 2024 -0400 + + Merge branch 'develop' into sprint-94-summary + +commit 27f5d030a8b43ceefff931ca574a000856766af2 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Mar 13 13:55:54 2024 -0600 + + CirCI OS Image Hotfix (#2875) + + * - Testing image + + * - Adding env var + + * Revert "- Adding env var" + + This reverts commit 642a7e0607bc0730f9e595c5b6412786c417eef8. + + * - testing env var + + * - only running frontend + + * Revert "- only running frontend" + + This reverts commit 998358ef3eccbab5693b7be9c75adb359b158a9e. + + * Revert "- testing env var" + + This reverts commit a15a18ad3c90417104e01e0157d338eac407a2df. + + * - only running frontend + - adding env var to job + + * - revert + + * Revert "- only running frontend" + + This reverts commit e6ef0ff88af6c8484746d7c9fd730c93e8436485. + + * - Adding var to command + + * - uncommenting tests + + * - test latest patch + + * - latest image circi has available + + --------- + + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit 40bf72661886fbe7869860605c08da0c8dc9ec03 +Author: Miles Reiter +Date: Wed Mar 13 15:35:28 2024 -0400 + + Update sprint-94-summary.md + +commit 9978a84eae7e688da02029a10e52108fa79a3e67 +Merge: 5d06b72e7 e247aa24a +Author: Miles Reiter +Date: Wed Mar 13 15:35:22 2024 -0400 + + Merge branch 'develop' into sprint-94-summary + +commit 271f7f1e9fb6243375ad5035ae79329de2bc7209 +Merge: e3871cd05 e247aa24a +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Mar 13 14:30:48 2024 -0400 + + Merge branch 'develop' into 2818-update-indicator + +commit e247aa24a675955761a7d62d589f4970b78cee51 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Mar 13 13:21:01 2024 -0400 + + Feature/2729 remote migrations (#2779) + + * add apply remote migrations script + + * add missing required env + + * rm migrate from gunicorn start + + * add required lib + + * add migrate command to pipeline + + * fix deps + + * rm message + + * tom's workaround + + * re-lock deps + + * remove commented migration lines + + * rm graphviz + + * catch exit status + + * add failing test migration + + * delete test migration + + * testing migration from local + + * rm test migration + + --------- + + Co-authored-by: Alexandra Pennington + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit e9947f90a9d422a967e107da7ee928d89a9d7e76 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Mar 13 11:08:22 2024 -0600 + + RPT_MONTH_YEAR Validation Update (#2849) + + * - Added preparse check for a valid rpt_month_year for all schemas + - Updated tests + + * - Add missing tests for validators + + * - fix lint + + * - Fix tests after merge + + * - Updated validator error message language + + * - Updated validator to check the year and month individually also + + * - fix lint + + --------- + + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit d4f58e1cc0ab3e0aaa074f13847e472bd453cc38 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Mar 13 10:57:02 2024 -0600 + + DOB Updates (#2825) + + * - Updating DOB field validators + + * - Fixed validator + + * - Updating error messages a bit + + * - updatec message + + * - Added missing tests + - Fixed range error + + * - Fix validators based on feedback + - Update/add tests + + * - Fixed validator + + * - Fix lint + - Remove duplicate definition + + * - Aligning DOB types across all schemas/models + + * - giving migration a good name + + * Revert "- giving migration a good name" + + This reverts commit 005ceb5dc083b8d04b8dc1d18efd6b13aa0ccc95. + + * Revert "- Aligning DOB types across all schemas/models" + + This reverts commit bb2be30b6b619c500630cdcdaf1070001216e392. + + * - Convert all DOB to string fields + - Add test covering DOB field provided by Alex + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 5d06b72e764368f8b66fe5513fc6c039f3d27c16 +Author: Miles Reiter +Date: Tue Mar 12 14:32:43 2024 -0400 + + Update sprint-93-summary.md + +commit b48e5c9b9275de9297d57f0fe84fd86e2a1e4af8 +Author: Miles Reiter +Date: Tue Mar 12 14:20:22 2024 -0400 + + Update sprint-94-summary.md + +commit 7e8c0e8a9a5527af3c7c5e8f6e69a5672b15a16b +Author: Miles Reiter +Date: Tue Mar 12 14:20:04 2024 -0400 + + Update sprint-94-summary.md + +commit 0ad65f174ce7ebb2b079d1f8b275f59483770970 +Author: Miles Reiter +Date: Tue Mar 12 14:19:43 2024 -0400 + + Update sprint-94-summary.md + +commit 449a82c7a079abb5bc54d64b96ce1994a8a4718e +Author: Miles Reiter +Date: Tue Mar 12 14:18:36 2024 -0400 + + Update sprint-92-summary.md + +commit c112074c765a90fc3e23f3b64a2660cc7ed86038 +Author: Miles Reiter +Date: Tue Mar 12 14:12:57 2024 -0400 + + Create sprint-94-summary.md + +commit 1593f55b790636620525282f7fcce7de31754aa3 +Author: Jan Timpe +Date: Mon Mar 11 10:38:23 2024 -0400 + + no blANK lineS aLLOwEd AfTEr funCtIoN doCStRINg + +commit 581cd42e4023634c2ec92ce103cb1b372e6fb2f6 +Author: Jan Timpe +Date: Mon Mar 11 10:26:55 2024 -0400 + + create a reindex cron task + +commit 931d4a3b17959aa15dcaee9331ea85fcff219fa8 +Author: Jan Timpe +Date: Mon Mar 11 10:26:45 2024 -0400 + + move the `log` func to core.utils + +commit c014e5739e4337c17ae808529e197e2f7aaa7fe5 +Author: Eric Lipe +Date: Sat Mar 9 11:30:52 2024 -0500 + + - Adding default for matches validator error func + +commit ca29f0ce4fdd9ec923d540bc074655b844020748 +Author: Eric Lipe +Date: Sat Mar 9 11:23:08 2024 -0500 + + - parametrized error funciton on the matches validator + +commit f894f5e9b92d04052555fbee9da5dbaf7b44ea9d +Author: Jan Timpe +Date: Fri Mar 8 18:23:37 2024 -0500 + + don't return a rollback response on bulkindexerror + +commit 5974ee6d2e64a14612cd3edc7c11a58c4c435431 +Merge: 7e2ce9544 62eaa3eaf +Author: Jan Timpe +Date: Fri Mar 8 15:26:58 2024 -0500 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit 62eaa3eaf48d8866b5bd763c6aa041d32e63c109 +Author: Jan Timpe +Date: Fri Mar 8 15:26:33 2024 -0500 + + up timeout + +commit 7e2ce95446be6898f8013b89e252df95879cc549 +Author: Jan Timpe +Date: Fri Mar 8 15:25:36 2024 -0500 + + up timeout + +commit b1b11ccb969db02eafb6a15a113c42d9c755d23a +Merge: 86809c3c4 8229d90d6 +Author: Jan Timpe +Date: Fri Mar 8 15:19:20 2024 -0500 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit 8229d90d609b784eb9afc4f6274e2caa6f9bb442 +Author: Jan Timpe +Date: Fri Mar 8 15:19:07 2024 -0500 + + rm logging + +commit 86809c3c4348d2559a76283fded83771b4d0f2e7 +Author: Jan Timpe +Date: Fri Mar 8 15:16:42 2024 -0500 + + uncomment logs + +commit 1ccebcfd26a974231958f79a6253ed1ec3b84989 +Merge: a5d713311 8507cc5f0 +Author: Jan Timpe +Date: Fri Mar 8 15:16:01 2024 -0500 + + Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators + +commit a5d71331154b9f4601a4e704c2a2dc9fcb022e1a +Author: Jan Timpe +Date: Fri Mar 8 15:10:38 2024 -0500 + + add cat4 aabd_and_ssi validator + +commit e3871cd0574f15ad9a95b1e1b11f3b1d0dbefad0 +Author: Andrew Trimpe +Date: Wed Mar 6 14:26:10 2024 -0500 + + changed schema to use matches + +commit 8507cc5f06bc8d79a21741df339c46fc3fc84fbf +Author: Jan Timpe +Date: Wed Mar 6 14:25:50 2024 -0500 + + wait for localhost + +commit 023f081ea832bdb1ebfc92fab3ccfda5060f54ad +Author: Andrew Trimpe +Date: Wed Mar 6 14:22:23 2024 -0500 + + changed schema to use matches + +commit d2c266f8f8cc9d6c1387485a9685b98707e07381 +Author: Jan Timpe +Date: Wed Mar 6 13:56:45 2024 -0500 + + wait for web + +commit 6607756a67a43375ba4dc58c10a684662edde1c0 +Author: Jan Timpe +Date: Wed Mar 6 13:40:33 2024 -0500 + + wait for elastic + +commit 86215ce2941347891c9d2aae8249aa563b30fd2e +Author: Jan Timpe +Date: Wed Mar 6 12:41:51 2024 -0500 + + cd + +commit baa8db1aaea72cd8415783a907b88b29bd4b5436 +Author: Jan Timpe +Date: Wed Mar 6 12:36:23 2024 -0500 + + missed a space + +commit 42e9417bfeaa93b7ed21c55080156e0b41a472de +Author: Jan Timpe +Date: Wed Mar 6 12:12:13 2024 -0500 + + move reindex to test workflow + +commit 624fe2d4e5eb7419e2c43fc8a476d26af4a4a039 +Author: Jan Timpe +Date: Wed Mar 6 11:58:23 2024 -0500 + + add search_index --rebuild + +commit 7fc43334a3c539325ce517f2cf241c4fe4d7bcad +Author: Andrew Trimpe +Date: Wed Mar 6 11:52:06 2024 -0500 + + not needed + +commit 6bbd8170e9d554848e0c4dec8ec0b0fb1d4d0425 +Author: Jan Timpe +Date: Wed Mar 6 11:35:16 2024 -0500 + + make parsererror row_number optional + +commit 723495e5e5f689ff06b2d95ea1227dc2517db972 +Author: Andrew Trimpe +Date: Wed Mar 6 10:21:56 2024 -0500 + + remove local changes + +commit 857402359e00e0d1d5932ce50277fd3348acd58e +Merge: 7e6796385 820027531 +Author: Andrew Trimpe +Date: Wed Mar 6 10:10:16 2024 -0500 + + Merge branch '2818-update-indicator' of github.com:raft-tech/TANF-app into 2818-update-indicator + +commit 7e679638540b7048bd4cae3890f3a8cf565f3ee2 +Author: Andrew Trimpe +Date: Wed Mar 6 10:08:50 2024 -0500 + + removed validator and use schema OneOf method + +commit 8200275314d23eda30afe86c9f1b126c59885e76 +Merge: 56e22da4a 4daa673d3 +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Wed Mar 6 09:03:13 2024 -0500 + + Merge branch 'develop' into 2818-update-indicator + +commit 56e22da4a56ed0aa5c0422072a7166aaaa567ee7 +Author: Andrew Trimpe +Date: Wed Mar 6 09:01:17 2024 -0500 + + revert local changes + +commit 427d83552fb8280ccaf0a2541415e4d450f080e9 +Author: Andrew Trimpe +Date: Wed Mar 6 08:58:45 2024 -0500 + + revert local changes + +commit 0bba6e82f01280841418468c110fa919b081dfc5 +Merge: 20a43a699 4daa673d3 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 5 12:29:55 2024 -0700 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit 419e9125e67f0a07ccfc2616e303de94c2a6b7bd +Merge: 69082e79b 4daa673d3 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Mar 5 12:29:23 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit 3243bc0025ecae08a0c51d4247e181bb5988d069 +Merge: 1ccf3a946 69082e79b +Author: Jan Timpe +Date: Tue Mar 5 13:30:10 2024 -0500 + + Merge branch '2536-cat4-design' into 2842-cat-4-related-records + +commit 1ccf3a9460d1a6d01df8f15de466df9b8436a1da +Author: Jan Timpe +Date: Tue Mar 5 13:27:18 2024 -0500 + + use `values()` over `items()` + +commit 69082e79bf12ae4185cc0eb2c78bed3729017d2d +Author: Eric Lipe +Date: Tue Mar 5 09:34:39 2024 -0700 + + - remove todo + +commit 4daa673d3874431209df1ee4c0201e62441822e8 +Merge: f34df6eea 28b29ed32 +Author: Miles Reiter +Date: Tue Mar 5 11:14:32 2024 -0500 + + Merge pull request #2864 from raft-tech/sprint-93-summary + + Create sprint-93-summary.md + +commit c6210e9078f8a0eff29d8aa9b54a1a0e5214e6d1 +Author: Andrew Trimpe +Date: Mon Mar 4 11:03:26 2024 -0500 + + fix test + +commit 2b9def6045da22e667136e1615f0fa35f871be24 +Merge: 633609f2d f34df6eea +Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> +Date: Mon Mar 4 10:52:43 2024 -0500 + + Merge branch 'develop' into 2818-update-indicator + +commit 633609f2d6278b70a32855e91bf939d1320aa43e +Author: Andrew Trimpe +Date: Mon Mar 4 10:45:55 2024 -0500 + + fix lint + +commit 95083b594952a0a34f79193837dab75c4fcdbf3a +Author: Andrew Trimpe +Date: Mon Mar 4 10:38:49 2024 -0500 + + updated with suggested error message and altered gitignore to cover .vscode anywhere + +commit a9102ba47c6895f81adb3edfb9bac4c7d23abf21 +Merge: 694decf54 f34df6eea +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Mar 4 08:11:13 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit 20a43a69946b8173d55623c94bb7d9632f1dcd6d +Author: Eric Lipe +Date: Mon Mar 4 08:09:44 2024 -0700 + + - Fixed tests + +commit 527ddb80f2efacdac5e03e9518f85b0dee214087 +Merge: 9bb8abef3 f34df6eea +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Sat Mar 2 14:09:17 2024 -0700 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit 9bb8abef3d6be880ef39a8144fd20516b2b1512b +Author: Eric Lipe +Date: Sat Mar 2 14:08:37 2024 -0700 + + - Fix lint + - remove debug file + +commit 16c4460bfddd46f4c0b824bc94165a8ffa3b9427 +Author: Eric Lipe +Date: Sat Mar 2 12:41:48 2024 -0700 + + - Fix failing tests + +commit 28b29ed322a3f9d261d83a7204d0454a4186c24b +Author: Miles Reiter +Date: Fri Mar 1 16:55:01 2024 -0500 + + Update sprint-93-summary.md + +commit 0338203a95760f0c7a0186d9af20ccd2f69ed8bc +Merge: 356156e4a f34df6eea +Author: Miles Reiter +Date: Fri Mar 1 16:40:54 2024 -0500 + + Merge branch 'develop' into sprint-93-summary + +commit f34df6eeac643ecd147d0491b29fa07d907dfcb4 +Merge: d559d4f24 83c9eca5e +Author: Miles Reiter +Date: Fri Mar 1 16:40:28 2024 -0500 + + Merge pull request #2863 from raft-tech/sprint-92-summary + + Create sprint-92-summary.md + +commit 4e821163fed1755ca9630198058833600494e059 +Author: Jan Timpe +Date: Fri Mar 1 16:16:06 2024 -0500 + + move/update tests + +commit 668e17d9c1b1ccd1dc30134645e4d53d1a6e801f +Author: Jan Timpe +Date: Fri Mar 1 16:16:01 2024 -0500 + + add a SortedRecordSchemaPairs class + +commit 745537863a7a3cd991a8bf47be545702bf5da9ec +Author: Eric Lipe +Date: Fri Mar 1 14:10:15 2024 -0700 + + - Added structure to move parameters into validators error messages + - Added record type prefix to all error messages + - Updated tests + +commit 442bd753f500f514e9981584fb22bd5fb172ba4b +Author: Andrew Trimpe +Date: Fri Mar 1 12:28:09 2024 -0500 + + fix lint errors + +commit ce77311e8654818ec0bf7c956da098e21769b1c6 +Author: Andrew Trimpe +Date: Fri Mar 1 11:59:24 2024 -0500 + + Update indicator logic + unit + integration test: + +commit 83c9eca5e3ac85b014f31511cd156a81d2dbfd4e +Merge: f575e22f0 d559d4f24 +Author: Miles Reiter +Date: Thu Feb 29 20:19:47 2024 -0500 + + Merge branch 'develop' into sprint-92-summary + +commit 80ea628ce7c4545cfaede6b3049ad4f346c60c85 +Author: Eric Lipe +Date: Thu Feb 29 16:52:09 2024 -0700 + + - fix test + +commit 79f76a9941a6255173caf3e905ede51944972765 +Author: Eric Lipe +Date: Thu Feb 29 15:54:05 2024 -0700 + + - Update validator language + +commit 93ebb618a87b491aa4dab8ac26ff948365ad69dc +Author: Eric Lipe +Date: Thu Feb 29 14:54:57 2024 -0700 + + - Reverting out MOs branch since it was unnecessary + +commit 118743c4618ee2e05087a09d8b84a65e7c4b4dad +Author: Eric Lipe +Date: Thu Feb 29 14:33:39 2024 -0700 + + Revert "Revert "- Update language on case number preparser validator"" + + This reverts commit ed415e49bc68737f9b3b3c4ee5928b8c8559e1b9. + +commit cf682e68b691ce4b92f9d8e70cfaa987a9f42dee +Author: Eric Lipe +Date: Thu Feb 29 14:32:57 2024 -0700 + + Revert "Revert "- Update preparser validators to include record type"" + + This reverts commit 37244014c6331f1efd79c34bf36ba66adca52cae. + +commit 9c0d1382b0612bdd601f137cd9f26018b036632a +Author: Eric Lipe +Date: Thu Feb 29 14:28:47 2024 -0700 + + Revert "Merge branch '2799-catch-rpt-month-year-mismatches' of https://github.com/raft-tech/TANF-app into 2673-temp" + + This reverts commit 2b4e3c4f40d57fb25b926b04014c719366c944ac, reversing + changes made to dff31356ef40f87fc6b571c3c7f64be3a0a8534e. + +commit e92a3b18d2c6676be4dc6ff58db6086479fbb32f +Author: Eric Lipe +Date: Thu Feb 29 14:28:44 2024 -0700 + + Revert "- Fix tests" + + This reverts commit 9b7f5bef9c88f1c2f0c22622d90f7ccc5e16eb61. + +commit 7a182a20bfafa8e486686f2a2693a04932befa6f +Author: Eric Lipe +Date: Thu Feb 29 14:28:41 2024 -0700 + + Revert "- Fix validator" + + This reverts commit eb151897c6b22678e3df20c4d2769da1f334e94c. + +commit 99ed5ec3932709119f5de6b47243065f3da9175d +Author: Eric Lipe +Date: Thu Feb 29 14:28:39 2024 -0700 + + Revert "- Fixed tests" + + This reverts commit a42ff2b6fcfe409fe9b5ae88635d542757a53e56. + +commit 37244014c6331f1efd79c34bf36ba66adca52cae +Author: Eric Lipe +Date: Thu Feb 29 14:28:36 2024 -0700 + + Revert "- Update preparser validators to include record type" + + This reverts commit 17f0b9083a5215b5c3e2a95aa6ca0e01359f7115. + +commit ed415e49bc68737f9b3b3c4ee5928b8c8559e1b9 +Author: Eric Lipe +Date: Thu Feb 29 14:28:33 2024 -0700 + + Revert "- Update language on case number preparser validator" + + This reverts commit ce2d384ab014f6c176bef2b46d12c21984cf32c5. + +commit ce2d384ab014f6c176bef2b46d12c21984cf32c5 +Author: Eric Lipe +Date: Thu Feb 29 14:27:15 2024 -0700 + + - Update language on case number preparser validator + +commit 17f0b9083a5215b5c3e2a95aa6ca0e01359f7115 +Author: Eric Lipe +Date: Thu Feb 29 14:14:48 2024 -0700 + + - Update preparser validators to include record type + +commit a42ff2b6fcfe409fe9b5ae88635d542757a53e56 +Author: Eric Lipe +Date: Thu Feb 29 13:46:43 2024 -0700 + + - Fixed tests + +commit eb151897c6b22678e3df20c4d2769da1f334e94c +Author: Eric Lipe +Date: Thu Feb 29 13:38:31 2024 -0700 + + - Fix validator + +commit 9b7f5bef9c88f1c2f0c22622d90f7ccc5e16eb61 +Author: Eric Lipe +Date: Thu Feb 29 13:31:16 2024 -0700 + + - Fix tests + +commit 2b4e3c4f40d57fb25b926b04014c719366c944ac +Merge: dff31356e 8da16dc26 +Author: Eric Lipe +Date: Thu Feb 29 13:16:02 2024 -0700 + + Merge branch '2799-catch-rpt-month-year-mismatches' of https://github.com/raft-tech/TANF-app into 2673-temp + +commit 694decf548e4f8ee9a9fae6f0c77fbb738fe5d70 +Merge: b10073dee d559d4f24 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Feb 29 07:58:18 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit dff31356ef40f87fc6b571c3c7f64be3a0a8534e +Merge: c46158bfc d559d4f24 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Feb 29 07:57:52 2024 -0700 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit d559d4f24cd31d01be0dcfc419d58140eecacbfd +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Feb 29 07:47:41 2024 -0700 + + DB Backup Bug (#2853) + + * - pointing directly to the pg client directory + + * - Add lots of logging + + * - fix lint + + * - naming crontabs for easy understanding + + * - Removing log entries + + * - testing old method + + * - installing postgres client 15 + + * - print paths to see whats up + + * - fix lint + + * - remove all traces of postgres before installing new postgres + + * - disabling tests for speed + + * Revert "- remove all traces of postgres before installing new postgres" + + This reverts commit 76c4b9df5d823ea50f62516c5bf8d4278e914b09. + + * Revert "- fix lint" + + This reverts commit 27ff2db06b030fedcf09e52011486ef9df88c93f. + + * Revert "- installing postgres client 15" + + This reverts commit 2097d8dbd8ac9c1f5df21ecefc88dc9dd3bdc79c. + + * Revert "Revert "- fix lint"" + + This reverts commit 64c69075bb0119ce1dab98e7976de67b86c4cd92. + + * - Add correct client to apt.yml + + * - making tests even shorter + + * - trying clietn V14 + + * - removing from apt and installing manually + + * Revert "- removing from apt and installing manually" + + This reverts commit a2f94d3c406384b3ab10eecc3d09ab6c71c228fc. + + * - revert + + * - Version 12 in apt.yml + - Tell terraform to specify db version + + * - escaping quotes + + * - forcing db name + + * Revert "- forcing db name" + + This reverts commit b6069339e916cc98d20ab3d83c5c32a10fe47d6f. + + * - logging + - every 5 min + + * - more logging + + * - Cleanup debug code + - update tf environments to force version 12 of pg server + + * - Fix lint + + * - Adding back client search if hardcoded path doesn't exist + + * - fix syntax error + + * - fix lint + + * - remove extra slash + + * - Adding log entries to backup task + + * - Moving DB task to it's own file + + * - fix lint + + * - Seperate out email tasks + - update crontabs + + * - update tests + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit c46158bfcf5e69236992bd055b5c26ac551f5776 +Merge: c91cac7a4 c8d0934e0 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Feb 28 15:43:10 2024 -0700 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit b10073dee1be36df164fd98fb50d6f55d5d1db82 +Merge: bd8939efb c8d0934e0 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Feb 28 15:42:49 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit 356156e4ac2a6dd13d86a561d2ccb2d6470141da +Merge: 87440918a c8d0934e0 +Author: Miles Reiter +Date: Wed Feb 28 17:06:51 2024 -0500 + + Merge branch 'develop' into sprint-93-summary + +commit 87440918a496b607015bbe68c460ce1663c1f033 +Author: Miles Reiter +Date: Wed Feb 28 17:05:08 2024 -0500 + + Update sprint-93-summary.md + +commit f575e22f01a6f0e92acebb158317ac9becdf4205 +Author: Miles Reiter +Date: Wed Feb 28 16:52:53 2024 -0500 + + Update sprint-92-summary.md + +commit 02b9ccdfbd5e7d70671418e0c9c2d0758cc9cd45 +Merge: 74a967119 c8d0934e0 +Author: Miles Reiter +Date: Wed Feb 28 16:39:02 2024 -0500 + + Merge branch 'develop' into sprint-92-summary + +commit 74a96711905b1c5af5c2619ca25824001073634a +Author: Miles Reiter +Date: Wed Feb 28 16:38:50 2024 -0500 + + Update sprint-92-summary.md + +commit c8d0934e0d3b85ff587dfa0740e744ee8faed08f +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Feb 28 12:00:19 2024 -0500 + + Feat/2646 total errors aggregates (#2800) + + * total_errors_by_month aggregator + + * impl total_errors aggregator + + * submission history component structure + + * total errors frontend impl + + * add section 3/4 aggregates to tests + + * lint + + * fix null coalescing + + * fix+add aggregates tests + + * add tribal tests, positive case test + + * remove unused code from total_errors aggregate func + + * remove unnecessary saves + + * move total_errors to aggregates.py + + * extra blank line + + * undo formatter changes + + * extra space + + * make the query more efficient + + * rm unused code + + * fix error report url + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 625d0cec70dddc42b5ed57a1453ff53194969691 +Author: Jan Timpe +Date: Tue Feb 27 15:09:55 2024 -0500 + + use __generate_and_add_error + +commit bd8939efb272ef6663a879369ceb9bc2ac356340 +Author: Eric Lipe +Date: Tue Feb 27 12:01:04 2024 -0700 + + - doc string update + +commit 81dbcba8dc2a8cda43b4de790f321a2cf99ee6ec +Author: Eric Lipe +Date: Tue Feb 27 12:00:06 2024 -0700 + + - Move month generation to transform_to_months + +commit b40f41be722476272498bc27330944b3cd12e79a +Author: Miles Reiter +Date: Tue Feb 27 12:21:04 2024 -0500 + + Update sprint-93-summary.md + +commit de855604c87442f38426ec95a88ca1f8a805fd27 +Author: Miles Reiter +Date: Tue Feb 27 12:20:27 2024 -0500 + + Update sprint-93-summary.md + +commit 7ad90a4d460716af3e30c5e7c68ad5e482a0bdc7 +Author: Jan Timpe +Date: Tue Feb 27 09:20:40 2024 -0500 + + fix parse tests + +commit 44b2d5dc07fbc721ed7fd40cbc144872e8e49c3f +Author: Miles Reiter +Date: Tue Feb 27 00:49:35 2024 -0500 + + Create sprint-93-summary.md + +commit b5aaa117d412f13c989b2db869e1cc5058fe4c47 +Author: Jan Timpe +Date: Mon Feb 26 20:21:42 2024 -0500 + + add __ + +commit bda0191394871e80544cc46169d717ada035f495 +Author: Jan Timpe +Date: Mon Feb 26 20:17:38 2024 -0500 + + add s2 tests + clean up + +commit ca3b34b2c88355d05537bec8c39cde2de4baf039 +Author: Jan Timpe +Date: Mon Feb 26 18:09:16 2024 -0500 + + fix test + +commit 8177030a971c8a76fb4fcf4ec166abe21c050db2 +Author: Jan Timpe +Date: Mon Feb 26 18:07:24 2024 -0500 + + make section 1 program-type independent, add section 2 + +commit 02edd7877951e8f9e07b9b8ab46e14d0bb9fc933 +Author: Miles Reiter +Date: Mon Feb 26 16:38:04 2024 -0500 + + Create sprint-92-summary.md + +commit ce433a6cef5c7980c912c430460fb2bf3369f482 +Merge: 544e78a74 06193297d +Author: Eric Lipe +Date: Mon Feb 26 14:06:22 2024 -0700 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design + +commit c91cac7a446a1151aa971a01193284b6c26153ab +Merge: f29557e30 06193297d +Author: Eric Lipe +Date: Mon Feb 26 14:05:38 2024 -0700 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup + +commit 847ef589af6552696546b18a5021fb103a32e24b +Author: Jan Timpe +Date: Mon Feb 26 15:38:19 2024 -0500 + + make section 1 program-type independent + +commit 06193297ddff2ce93e37f3ddc11c76ed81febe59 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Feb 26 10:44:21 2024 -0500 + + Handle elastic BulkIndexException in bulk_create_records (#2835) + + * handle elastic BulkIndexException in bulk_create_records + + * lint + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 739200360ee4870b77bf5ee3b373d97378b1c755 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Feb 26 10:28:13 2024 -0500 + + Fix api privilege escalation (pentesting findings) (#2837) + + * make is_staff, is_superuser read-only + + * rm unused pk from endpoints + + * make fields readonly in profile serializer + + * enable swagger to run locally + + * make non-required fields read-only + + * remove unused set_profile endpoint + + * lint + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 3e26c08b8ca7050bae572ffaac68c0d8add76448 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Feb 26 10:15:57 2024 -0500 + + Fix Insecure Direct Object Reference in parser error report download (pentest findings) (#2841) + + * move xlsx serialization to datafiles serializers + + * create new parser error download endpoint under datafiles viewset + + * move xlsx serializer to utils + + * move tests to test_api + + * rm unneeded code + + * rm comments + + * rm blank lines + + * fix test + + * fix lint + + * lint + + * removed unused datafilesummary viewset + + * missed a ref + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit f29557e30ad2fca6eebcc476147297edb244ebad +Merge: 985720229 419cf089e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 26 08:19:06 2024 -0500 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit 419cf089efaef834142f4219f14a8a92dacb8c2b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Feb 22 14:37:51 2024 -0500 + + Feat/2768 zap pipeline (#2828) + + * can we just remove return code? + + * hijacking github workflow to get owasp triggered in pipeline + + * attempting to trigger a zap scan #2 + + * whitespace change to re-trigger + + * testing per office hours feedback + + * cf org param added + + * hard-coding org value + + * underscore + + * no hardcode + + * testing + + * debugging b/c this worked manually + + * simple return or return a response code? + + * Returning response. Need to trigger against raft env + + * hardcoding envs + + * syntax err on type + + * reverting jobs and workflows to not right nightly + + * helps to commit workflows too + + * missed these flags for owasp + + * This needs a string to operate on + + * cleaning up debugging cmd + + --------- + + Co-authored-by: andrew-jameson + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit aaf4c226209c8fbf6952f37557750b6fa1e7d884 +Author: Jan Timpe +Date: Wed Feb 21 18:31:18 2024 -0500 + + implement records_are_related cat4 validator + tests + +commit 544e78a744f4206f9d9927bb0928b03ae3e3172a +Merge: 821ae1061 382c85670 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Feb 21 12:43:41 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit 985720229b600c950c10b0e8ff2de35e0f7bd190 +Merge: d1d4e83a9 382c85670 +Author: Eric Lipe +Date: Wed Feb 21 12:00:01 2024 -0700 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup + +commit 382c856707ad91e6c58c358d19640a61dcf05778 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Feb 21 12:30:37 2024 -0500 + + Fix XSS vulnerability (pentest findings) (#2836) + + * add escapeHtml util + + * impl escapeHtml when rendering file names un-safely + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit ae6894e7e621c04990b9f308b470564603960fbb +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Feb 20 14:18:30 2024 -0500 + + Update Failed-Deployment-Troubleshooting.md (#2855) + + * Update Failed-Deployment-Troubleshooting.md + + * Update Failed-Deployment-Troubleshooting.md + +commit 821ae10616c4dcdf94e67808bc4e5898d4351343 +Merge: 67528c52b 44d6913cb +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Feb 20 08:05:20 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit 44d6913cb014e9b6c1d1365b79bbe42cc1505cc7 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Feb 20 07:41:21 2024 -0700 + + SSN Cat2 Updates (#2829) + + * - Updated all cat2 SSN validators to allow all 1's through 9's + - Fixed datafile that had encrypted SSN values + + * - Remove redundent length validator + + * - remove debug line + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 81598f8eb871cb48e2feb1fe1267cce5a2e2eae0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Feb 20 09:28:30 2024 -0500 + + Feat/2813 reduce dev env (#2827) + + * Deletions from global search, need manual intervention in github/circleci cfg + + * Updated diagram + + * removing documentation references to sandbox env + + * Updating png, forgot to export. + + --------- + + Co-authored-by: andrew-jameson + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 9b62b1cd5da401c5dce0135805b3ef8c2ce51a27 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Feb 16 07:43:55 2024 -0700 + + Case Number Validators (#2834) + + * - Updated case number validators to accept any characters and only throw error on values of all spaces + + * - Add preparser check for case number + + * - fixed tests + + * - fix lint + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 67528c52b9b4688c335108951d9295318e56ab67 +Merge: 3bc68c4b0 250342889 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Feb 15 15:26:02 2024 -0700 + + Merge branch 'develop' into 2536-cat4-design + +commit d1d4e83a9d8840b4236190357640e41a00fc2fa5 +Merge: 36c9b56d5 250342889 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Feb 15 15:25:36 2024 -0700 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit 8da16dc266b12b1cedc5855d5484c19029ac46c6 +Author: Mo Sohani +Date: Thu Feb 15 13:34:57 2024 -0500 + + fixing failing tests + +commit 25034288966972780c8d6b19962fa1b3548d240d +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Feb 15 11:01:29 2024 -0700 + + Kibana Deployment (#2805) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * 2599-added friendly name to postparsing validators + + * refining the validator tests + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * listing + + * added m6 + + * lint + + * corrected new line break + + * refactored validator logic + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Added Kibana config + + * friendly_name corrections + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - Added basic security to Kibana/Elastic + - Added setup container to init elastic users, roles, and passwords + + * - Remove debug code + + * - change provider name + + * - Updating settings to reference environment variables + + * - Add elastic dependency + + * - Fix network issue + + * - Added bulk creation of elastic indices + + * - Updated schemas to reference model based off of elastic document + + * - Remove password auth from elastic/kibana + + * - Remove password auth + + * - Fix tests + + * - Fix lint + + * - remove debug print + + * Changes for fully local development + - Enables direct frontend/backend communication sans Login.gov/Cloud.gov + - Drives off new DEVELOPMENT env var + - Pre-configures and disables frontend auth functionality + - Testing based on new dev user + - Install via web: ./manage.py generate_dev_user + + * Reorganized front end logic on REACT_APP_DEVAUTH env var + + * Reorganized backend logic on REACT_APP_DEVAUTH env var + + * - Added proof on concept for tdp based kibana auth + + * - Fixing type issue + + * added is_superuser and is_staff attrs to dev user + + * - Add group check + + * - Add frontend group check for kibana + + * - fix lint + + * - Fix lint errors + + * - Fix doc strings + + * - Adding authenticated permission + + * - Renaming variables to clarify things + + * - fix lint + + * Revert "- Remove password auth from elastic/kibana" + + This reverts commit 522ca381651e005e35701d51b94e6cf4d78c011a. + + * - Setting up anonymous users with kibana_admin privileges + + * - Adding password to settings in cloud.gov + + * - remove incorrect auth + - use admin only in frontend and backend + + * - Add elastic profile + + * DevAuth feature redesign inspired by Cypress + - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} + - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user + - Modified CustomAuthentication.authenticate to handle both known use cases + - Added stt_id=31 to the initial dev user + - Disabled ES disk threshold checking for local dev which blocked ES startup + - Removed DevAuthentication and other now unnecessary code + + * Fixed CustomAuthentication.authenticate return val for login.py use case + + * Fixed CustomAuthentication.authenticate logging for login.py use case + + * Removed unneeded permissions import + + * Updates to REACT_APP_DEVAUTH env var settings + - Enabled with an email address value + - Disabled by default + + * - debugging env vars + + * - Testing what settings are used + + * Revert "- debugging env vars" + + This reverts commit 900efa879e8cb33f0c62140ed4d8e9a1e1b5496a. + + * Revert "- Testing what settings are used" + + This reverts commit 784530e49d584db5bda89714a7de4f56c3ee805e. + + * - debugging env vars again + + * - Switching to container networking + + * Restored support for CustomAuthentication.authenticate username keyword + + * Modified CustomAuthentication.authenticate comment to satisfy flake8 + + * commit + + * asdfgvasd + + * Revert "Modified CustomAuthentication.authenticate comment to satisfy flake8" + + This reverts commit 761e4eb253d366ef742dd8caf94b6220ed9e81a1. + + * Revert "Restored support for CustomAuthentication.authenticate username keyword" + + This reverts commit 4bf895722e356e79b8bbe3674361b90888b91752. + + * Revert "Updates to REACT_APP_DEVAUTH env var settings" + + This reverts commit 7fc2a09353804fb728852e9accc041dff08e44e3. + + * Revert "Removed unneeded permissions import" + + This reverts commit c18383fe2bf8352c50dd84d2a84408fef2b71367. + + * Revert "Fixed CustomAuthentication.authenticate logging for login.py use case" + + This reverts commit 2b9b46f0e719638b320d0a7bbb2bd87eda97eeef. + + * Revert "Fixed CustomAuthentication.authenticate return val for login.py use case" + + This reverts commit 97a0cf6995dc17937f083d5efde1d74866c01ff4. + + * Revert "DevAuth feature redesign inspired by Cypress" + + This reverts commit 1497d4ab7549bf674e1f71d8f8f039ec7de363bf. + + * Revert "commit" + + This reverts commit a284856c66cb2caaca4b471c2f81fc39421e8f00. + + * Revert "added is_superuser and is_staff attrs to dev user" + + This reverts commit 6ffbee8f588f12b7595abd7adcfe15ad7e70d11b. + + * Revert "Reorganized backend logic on REACT_APP_DEVAUTH env var" + + This reverts commit 7fd7b4d48cd30a7e2c142ea7f1d85f8df95b80d8. + + * Revert "Reorganized front end logic on REACT_APP_DEVAUTH env var" + + This reverts commit 32a46713ae102fa15fdab0fcb66fca99b42eb7e2. + + * Revert "Changes for fully local development" + + This reverts commit 556221b310b73bee5e9af32eb4cd603b61a25d02. + + * asdf + + * - Adding integration tests for elastic bulk doc creation + + * Revert "asdf" + + This reverts commit 26455b48582ca9c6d986377e56475644525f7665. + + * - fix lint + + * fasdf + + * - Failed buildpack deploy. Commiting for history + + * - Updating manifests to deploy proxy and kibana + + * - Adding working manifests for kibana and proxy + + * - moving manifest to its own directory + + * - Updating backend deployment to include kibana and proxy for circi deploys + + * - remove port + + * - allowing manifest + + * - Update kibana and proxy hostnames + + * - adding debug + + * - Updating schemas + + * - Fix mispelling + + * - inplace update + + * - Fixing var names + + * - remove unset + - Add set-env for proxy + + * - parametrizing proxy host name for kibana + + * - Adding debug logging to see whats up + + * - fix lint + + * - adding kibana to deployed nginx conf + + * - Added usage of document to tribal + + * - making url public for the time being to allow redirect + + * - testing 2GB again + + * - making stt searchable + - update proxy mem limits + + * - back to internal route + + * - pushing temp changes for now + + * - adding extra setting + + * - pushing changes + + * - removing secondary proxy + + * - nginx auth + + * - Updated to allow nginx auth proxy for kibana + + * - adding back headers + + * - Undoing temp changes + + * - Updating to support cloud.gov deploy + + * - Fixing warnings + + * - fix env var + + * - Add netpol to allow kibana to talk to frontend + + * - Adding env vars for kibana + + * - fixing env var name + + * - remove host as test + - remove invalid params from search indices + + * - remover server host param + + * - remove request limiter + + * - Adding unsafe-inline + + * - Updating to use path based env vars + + * - whitelisting kibana in CSP + + * - converting back to env vars only + + * - adding unsafe eval + + * - Updated based on feedback + + * - Fixing error + + * - Updating local docker image to match deployed image + + * - Removing elastic setup as it is irrelevant now + + * - Updating frontend to only allow access to kibana sitemap if the user is Dev or Sys Admin + + * - fix lint + + * - remove unnecessary nginx settings + + * - Updated Kibana tab/link to only display when user is HHS AMS authenticated + - Added environment variable to show the tab/link for dev purposes + + * - Commenting env var to default to correct behavior in any environment + + * - update frontend memory quota + + * - Add resolver to nginx to avoid ip address change on app restart + + * - Add dns fix for clamav + + * - OFA sys admin only + + * - Testing dns resolution + + * - Fix merge conflict that was causing incorrect routing to kibana locally + + * - Updated to be boolean + + * - Remove merge conflict + + * - fix var + + * Revert "- Testing dns resolution" + + This reverts commit 84aac744fd999752d3dea8c91c9dcf3b9b3173bc. + + * - removing unnecessary setting + + * - Renaming var to capture its use better + + * - Keeping var commented out + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Thomas Tignor + Co-authored-by: Thomas Tignor + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 3bc68c4b0fe448dbe4a8174a8b29e087f0744097 +Author: Eric Lipe +Date: Thu Feb 15 08:41:50 2024 -0700 + + - avoid duplicate error generation when storing cat4 errors + +commit 386c9a78cb0699c0a390ff613be705a56697987d +Author: Eric Lipe +Date: Thu Feb 15 08:32:25 2024 -0700 + + - fix lint + +commit ea9d9498e81c9e74cb54eb81dcd4a0dedc1aee10 +Author: Eric Lipe +Date: Thu Feb 15 08:17:00 2024 -0700 + + - Updated based on feedback + +commit 36c9b56d5497c5b6bec2222d98a390f3df807672 +Merge: 8be848ea1 e06fba6f7 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Feb 14 16:02:19 2024 -0700 + + Merge branch 'develop' into 2673-cat1-cleanup + +commit 828abb8d71d044ad4a4a3dc5c363a569d5811fea +Author: Eric Lipe +Date: Wed Feb 14 15:47:01 2024 -0700 + + - Updated based on feedback + +commit 791e78b5c1899badd806402806ffa8c98f59fa02 +Merge: 86e5c85b3 e06fba6f7 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Feb 14 11:39:24 2024 -0500 + + Merge branch 'develop' into 2799-catch-rpt-month-year-mismatches + +commit 8be848ea11447f4365e0145a4819bd71e4f5d95e +Author: Eric Lipe +Date: Wed Feb 14 09:29:18 2024 -0700 + + - Made var a bool instead of string + - Setting it with dockerfile + +commit e06fba6f7d4cc5433b0cb01a5f0a132521694bc2 +Author: Miles Reiter +Date: Tue Feb 13 14:05:20 2024 -0500 + + Accessibility Guide (#2832) + + * Delete rafts-accessibility-dos-and-donts.md + + * Update README.md + + * Create accessibility-guide.md + + * Update accessibility-guide.md + + Cleans up some inline link markup + + * Update accessibility-guide.md + +commit c9c0c7437d2c6797884bff6ac0b71f0e37fd295f +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Feb 12 13:31:30 2024 -0700 + + Proof of Concept TDP Based Kibana Auth (#2775) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * 2599-added friendly name to postparsing validators + + * refining the validator tests + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * listing + + * added m6 + + * lint + + * corrected new line break + + * refactored validator logic + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Added Kibana config + + * friendly_name corrections + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - Added basic security to Kibana/Elastic + - Added setup container to init elastic users, roles, and passwords + + * - Remove debug code + + * - change provider name + + * - Updating settings to reference environment variables + + * - Add elastic dependency + + * - Fix network issue + + * - Added bulk creation of elastic indices + + * - Updated schemas to reference model based off of elastic document + + * - Remove password auth from elastic/kibana + + * - Remove password auth + + * - Fix tests + + * - Fix lint + + * - remove debug print + + * Changes for fully local development + - Enables direct frontend/backend communication sans Login.gov/Cloud.gov + - Drives off new DEVELOPMENT env var + - Pre-configures and disables frontend auth functionality + - Testing based on new dev user + - Install via web: ./manage.py generate_dev_user + + * Reorganized front end logic on REACT_APP_DEVAUTH env var + + * Reorganized backend logic on REACT_APP_DEVAUTH env var + + * - Added proof on concept for tdp based kibana auth + + * - Fixing type issue + + * added is_superuser and is_staff attrs to dev user + + * - Add group check + + * - Add frontend group check for kibana + + * - fix lint + + * - Fix lint errors + + * - Fix doc strings + + * - Adding authenticated permission + + * - Renaming variables to clarify things + + * - fix lint + + * Revert "- Remove password auth from elastic/kibana" + + This reverts commit 522ca381651e005e35701d51b94e6cf4d78c011a. + + * - Setting up anonymous users with kibana_admin privileges + + * - Adding password to settings in cloud.gov + + * - remove incorrect auth + - use admin only in frontend and backend + + * - Add elastic profile + + * DevAuth feature redesign inspired by Cypress + - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} + - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user + - Modified CustomAuthentication.authenticate to handle both known use cases + - Added stt_id=31 to the initial dev user + - Disabled ES disk threshold checking for local dev which blocked ES startup + - Removed DevAuthentication and other now unnecessary code + + * Fixed CustomAuthentication.authenticate return val for login.py use case + + * Fixed CustomAuthentication.authenticate logging for login.py use case + + * Removed unneeded permissions import + + * Updates to REACT_APP_DEVAUTH env var settings + - Enabled with an email address value + - Disabled by default + + * - debugging env vars + + * - Testing what settings are used + + * Revert "- debugging env vars" + + This reverts commit 900efa879e8cb33f0c62140ed4d8e9a1e1b5496a. + + * Revert "- Testing what settings are used" + + This reverts commit 784530e49d584db5bda89714a7de4f56c3ee805e. + + * - debugging env vars again + + * - Switching to container networking + + * Restored support for CustomAuthentication.authenticate username keyword + + * Modified CustomAuthentication.authenticate comment to satisfy flake8 + + * commit + + * asdfgvasd + + * Revert "Modified CustomAuthentication.authenticate comment to satisfy flake8" + + This reverts commit 761e4eb253d366ef742dd8caf94b6220ed9e81a1. + + * Revert "Restored support for CustomAuthentication.authenticate username keyword" + + This reverts commit 4bf895722e356e79b8bbe3674361b90888b91752. + + * Revert "Updates to REACT_APP_DEVAUTH env var settings" + + This reverts commit 7fc2a09353804fb728852e9accc041dff08e44e3. + + * Revert "Removed unneeded permissions import" + + This reverts commit c18383fe2bf8352c50dd84d2a84408fef2b71367. + + * Revert "Fixed CustomAuthentication.authenticate logging for login.py use case" + + This reverts commit 2b9b46f0e719638b320d0a7bbb2bd87eda97eeef. + + * Revert "Fixed CustomAuthentication.authenticate return val for login.py use case" + + This reverts commit 97a0cf6995dc17937f083d5efde1d74866c01ff4. + + * Revert "DevAuth feature redesign inspired by Cypress" + + This reverts commit 1497d4ab7549bf674e1f71d8f8f039ec7de363bf. + + * Revert "commit" + + This reverts commit a284856c66cb2caaca4b471c2f81fc39421e8f00. + + * Revert "added is_superuser and is_staff attrs to dev user" + + This reverts commit 6ffbee8f588f12b7595abd7adcfe15ad7e70d11b. + + * Revert "Reorganized backend logic on REACT_APP_DEVAUTH env var" + + This reverts commit 7fd7b4d48cd30a7e2c142ea7f1d85f8df95b80d8. + + * Revert "Reorganized front end logic on REACT_APP_DEVAUTH env var" + + This reverts commit 32a46713ae102fa15fdab0fcb66fca99b42eb7e2. + + * Revert "Changes for fully local development" + + This reverts commit 556221b310b73bee5e9af32eb4cd603b61a25d02. + + * asdf + + * - Adding integration tests for elastic bulk doc creation + + * Revert "asdf" + + This reverts commit 26455b48582ca9c6d986377e56475644525f7665. + + * - fix lint + + * fasdf + + * - Added usage of document to tribal + + * - Updated based on feedback + + * - Fixing error + + * - Updating frontend to only allow access to kibana sitemap if the user is Dev or Sys Admin + + * - fix lint + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Thomas Tignor + Co-authored-by: Thomas Tignor + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit eecad702171d187c6626984b7661254eee1c4cf9 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Feb 12 14:31:49 2024 -0500 + + 2781-django migration best practices (#2783) + + * added new markdown for migration best practices + + * Naming and data migration + + * added useful commands + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 6b7b7717d588c067cb0a2604f8680bf028490a9a +Author: Eric Lipe +Date: Mon Feb 12 08:17:03 2024 -0700 + + - Fix lint errors + +commit 0d15d594257a23d2db33e9ac7d6f9bfaf47bf8a4 +Author: Eric Lipe +Date: Fri Feb 9 15:19:45 2024 -0700 + + - Fixed test + +commit d316686cdff3b96d53737b2e2899ba8375476281 +Author: Eric Lipe +Date: Fri Feb 9 15:08:17 2024 -0700 + + - updated tests to turn on trailer errors + - updated test error messages + +commit 6efa24fcafe013be1c1fa692d38b2650d2ffc8ce +Author: Eric Lipe +Date: Fri Feb 9 14:25:52 2024 -0700 + + - Updated validators to match Errors Audit language + - Parametrized startsWith + +commit e465eea70d1a8b1f66f03568c21128b588425674 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Fri Feb 9 07:13:23 2024 -0800 + + Create sprint-91-summary.md (#2830) + + Sprint 91 summary + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 86e5c85b321d848ca654c15dbf8f841a2586146f +Author: Mo Sohani +Date: Sat Feb 3 08:12:30 2024 -0500 + + added field validator to all submission + +commit 328a2665014cd26c1999a1d9ab9eeb11cd67f25c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Feb 2 14:12:00 2024 -0500 + + can we just remove return code? (#2831) + + Co-authored-by: andrew-jameson + +commit e5913f56ef47cc644624e791cbe9a756ffbbeb67 +Merge: 4b5778ad1 434d603e1 +Author: Eric Lipe +Date: Fri Feb 2 10:04:12 2024 -0700 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design + +commit 3e7dd740c1f6bd6e87dd5fa358eed600e4118e3c +Author: Mo Sohani +Date: Fri Feb 2 09:55:32 2024 -0500 + + linting + +commit 434d603e15e2fa35f28e2a1c2bc89bd69b26be0b +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Jan 31 10:40:32 2024 -0500 + + 2751 the resource cards updated with the latest coding instructions (#2819) + + * updated the link for ACF-199 + + * updated the test + + * linting + +commit 4b5778ad1c8b4f4af980e76b41e34d31d4c3cab1 +Author: Eric Lipe +Date: Tue Jan 30 11:19:19 2024 -0700 + + - fix lint + +commit 128b8625f0864723f91933e2e4509605da5d5e74 +Author: Eric Lipe +Date: Tue Jan 30 10:58:46 2024 -0700 + + - updating line value to None for cat4 errors + +commit e83b0b9e2a30eada81454b12f1094c661f7034a5 +Author: Eric Lipe +Date: Tue Jan 30 10:41:29 2024 -0700 + + - Extra log message to track meta fields + +commit 6e97396898969e29e1ff450d7372d25f2721deb9 +Author: Eric Lipe +Date: Tue Jan 30 10:38:45 2024 -0700 + + - Added useful logging and meta fields + - Added new test for record adding and validation logic + +commit 357cfb736ec8f475a95cd8c01279468d491e8fbc +Author: Mo Sohani +Date: Tue Jan 30 12:10:08 2024 -0500 + + solving failing tests + +commit 1b9391d2a785bbb4de60c1790dff637404188178 +Author: Eric Lipe +Date: Tue Jan 30 09:14:22 2024 -0700 + + - updating name to make things more clear + +commit 9960c6f3a6f53224b021a62a3cb00c7fd5556482 +Author: Eric Lipe +Date: Tue Jan 30 09:07:08 2024 -0700 + + - remove logging hack + +commit 1ef5ae1f663060e2c49350e4f0471c400276b453 +Author: Eric Lipe +Date: Tue Jan 30 08:08:43 2024 -0700 + + - Fix lint errors + +commit e6bd3071c8c33de762ed425817869fe687638799 +Author: Eric Lipe +Date: Mon Jan 29 14:37:13 2024 -0700 + + - Added fix for big file parsing + +commit 0c95cf94f3c90b8452e2d11b90c84bfdc2135459 +Author: Eric Lipe +Date: Mon Jan 29 12:49:29 2024 -0700 + + - Updated so that test_parse passes + - Updated class to only validate for S1 and S2 + +commit d1dfc47ef7058a1cf302f704e63f38334470b880 +Author: Eric Lipe +Date: Mon Jan 29 12:08:53 2024 -0700 + + - Renamed class + - Added more flushed out unit tests + - Added error count tracking in class for unit tests + +commit d21c65061acc90374e9a0d771214ec2b59628bd4 +Author: Mo Sohani +Date: Mon Jan 29 13:54:28 2024 -0500 + + corrected tests, need to stop parsing if pre-validator error + +commit 44b04099ea548979dd1d92bdfdadb99516119d68 +Author: Mo Sohani +Date: Mon Jan 29 12:37:29 2024 -0500 + + tests failing but the preparsing error works + +commit 1c8fb57217c46807a26dffd4fb7c37b674805ad7 +Author: Mo Sohani +Date: Fri Jan 26 09:36:44 2024 -0500 + + resolve issues with moving util file + +commit 4178469cbf75a6ec2ac1a92dea135d96d4627b53 +Author: Mo Sohani +Date: Fri Jan 26 09:05:41 2024 -0500 + + added base for testing the validator + +commit 62625cf8cc446ff3311172cb09c2c97028ecef3d +Author: Eric Lipe +Date: Thu Jan 25 15:13:49 2024 -0700 + + - Fix case_number logic + +commit 08faeb96b92ad0e64d55dd9bf5f6fd85c98291b9 +Author: Eric Lipe +Date: Thu Jan 25 14:21:02 2024 -0700 + + - Added parser errors + +commit f01378e6d679b808e33f571002ed3cc2afc75331 +Author: Eric Lipe +Date: Thu Jan 25 12:45:30 2024 -0700 + + - Move class to validators + - add checks for section and program type on validators + +commit 7791df5205f43bb67607f75eb2bccff35308b1d7 +Author: Eric Lipe +Date: Thu Jan 25 12:20:59 2024 -0700 + + - cat4 cache class + +commit 909a39cb07b827036dd35acdf7d464ec8b66c686 +Author: Mo Sohani +Date: Tue Jan 23 09:10:04 2024 -0500 + + correct .util + +commit 57ef70555eec71c384f541b181522971827e33f2 +Merge: 65dae3bf1 92b0a6947 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Jan 23 08:57:13 2024 -0500 + + Merge branch 'develop' into 2799-catch-rpt-month-year-mismatches + +commit 92b0a6947d75088cfa55ccaad2fe12d800bfd846 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Jan 22 09:37:18 2024 -0500 + + 2711-catch-rpt-month-year-mismatches (#2789) + + * created pre-check error + + * corrected some of failing tests + + * corrected failing tests + + * two tests still failing + + * Passing tests + + * Update small_incorrect_file_cross_validator.txt + + * Update small_incorrect_file_cross_validator.txt + + * Update small_incorrect_file_cross_validator.txt + + * Update small_incorrect_file_cross_validator.txt + + * revert changes on test file + + * corrected the failing test + + * resolve circular import + + * merge conflict resolution + + * linting + + * correct failing tests + + * corrected t7 tests + +commit 65dae3bf147b0c67a92c7ef1cf20c297eef01851 +Author: Mo Sohani +Date: Fri Jan 19 14:32:25 2024 -0500 + + getting the reporting month + +commit 0c4f3d2a895f8d5ec7fb9073cec866b0368d529d +Author: Mo Sohani +Date: Fri Jan 19 09:29:07 2024 -0500 + + tep changes + +commit 175e903732ffc6cd11b76a6b8eb02087d364e4dd +Author: Mo Sohani +Date: Thu Jan 18 15:34:43 2024 -0500 + + remove old changes + +commit cc10cffd814b83f0ceba1ed815a4a25a583f8e77 +Merge: e7554d6f9 cd2bf6223 +Author: Mo Sohani +Date: Thu Jan 18 15:29:36 2024 -0500 + + Merge branch '2799-catch-rpt-month-year-mismatches' of github.com:raft-tech/TANF-app into 2799-catch-rpt-month-year-mismatches + +commit e7554d6f98e628f25b2032e4a336e5a64d255677 +Author: Mo Sohani +Date: Thu Jan 18 15:29:13 2024 -0500 + + first changes + +commit cd2bf622309775ccd41c7189b0f58621153fdf63 +Merge: 620bd2247 d5a44ffcf +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu Jan 18 15:28:21 2024 -0500 + + Merge branch 'develop' into 2799-catch-rpt-month-year-mismatches + +commit d5a44ffcfe17a4f3c2d375bc75a0a6b1c2ecb939 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Jan 18 08:28:23 2024 -0700 + + Elastic Bulk Document Creation (#2772) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * 2599-added friendly name to postparsing validators + + * refining the validator tests + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * listing + + * added m6 + + * lint + + * corrected new line break + + * refactored validator logic + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Added Kibana config + + * friendly_name corrections + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - Added basic security to Kibana/Elastic + - Added setup container to init elastic users, roles, and passwords + + * - Remove debug code + + * - change provider name + + * - Updating settings to reference environment variables + + * - Add elastic dependency + + * - Fix network issue + + * - Added bulk creation of elastic indices + + * - Updated schemas to reference model based off of elastic document + + * - Remove password auth from elastic/kibana + + * - Fix tests + + * - Fix lint + + * - remove debug print + + * Changes for fully local development + - Enables direct frontend/backend communication sans Login.gov/Cloud.gov + - Drives off new DEVELOPMENT env var + - Pre-configures and disables frontend auth functionality + - Testing based on new dev user + - Install via web: ./manage.py generate_dev_user + + * Reorganized front end logic on REACT_APP_DEVAUTH env var + + * Reorganized backend logic on REACT_APP_DEVAUTH env var + + * added is_superuser and is_staff attrs to dev user + + * - Fix lint errors + + * - Renaming variables to clarify things + + * - fix lint + + * DevAuth feature redesign inspired by Cypress + - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} + - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user + - Modified CustomAuthentication.authenticate to handle both known use cases + - Added stt_id=31 to the initial dev user + - Disabled ES disk threshold checking for local dev which blocked ES startup + - Removed DevAuthentication and other now unnecessary code + + * Fixed CustomAuthentication.authenticate return val for login.py use case + + * Fixed CustomAuthentication.authenticate logging for login.py use case + + * Removed unneeded permissions import + + * Updates to REACT_APP_DEVAUTH env var settings + - Enabled with an email address value + - Disabled by default + + * Restored support for CustomAuthentication.authenticate username keyword + + * Modified CustomAuthentication.authenticate comment to satisfy flake8 + + * commit + + * Revert "Modified CustomAuthentication.authenticate comment to satisfy flake8" + + This reverts commit 761e4eb253d366ef742dd8caf94b6220ed9e81a1. + + * Revert "Restored support for CustomAuthentication.authenticate username keyword" + + This reverts commit 4bf895722e356e79b8bbe3674361b90888b91752. + + * Revert "Updates to REACT_APP_DEVAUTH env var settings" + + This reverts commit 7fc2a09353804fb728852e9accc041dff08e44e3. + + * Revert "Removed unneeded permissions import" + + This reverts commit c18383fe2bf8352c50dd84d2a84408fef2b71367. + + * Revert "Fixed CustomAuthentication.authenticate logging for login.py use case" + + This reverts commit 2b9b46f0e719638b320d0a7bbb2bd87eda97eeef. + + * Revert "Fixed CustomAuthentication.authenticate return val for login.py use case" + + This reverts commit 97a0cf6995dc17937f083d5efde1d74866c01ff4. + + * Revert "DevAuth feature redesign inspired by Cypress" + + This reverts commit 1497d4ab7549bf674e1f71d8f8f039ec7de363bf. + + * Revert "commit" + + This reverts commit a284856c66cb2caaca4b471c2f81fc39421e8f00. + + * Revert "added is_superuser and is_staff attrs to dev user" + + This reverts commit 6ffbee8f588f12b7595abd7adcfe15ad7e70d11b. + + * Revert "Reorganized backend logic on REACT_APP_DEVAUTH env var" + + This reverts commit 7fd7b4d48cd30a7e2c142ea7f1d85f8df95b80d8. + + * Revert "Reorganized front end logic on REACT_APP_DEVAUTH env var" + + This reverts commit 32a46713ae102fa15fdab0fcb66fca99b42eb7e2. + + * Revert "Changes for fully local development" + + This reverts commit 556221b310b73bee5e9af32eb4cd603b61a25d02. + + * asdf + + * - Adding integration tests for elastic bulk doc creation + + * Revert "asdf" + + This reverts commit 26455b48582ca9c6d986377e56475644525f7665. + + * - fix lint + + * fasdf + + * - Added usage of document to tribal + + * - Fixing error + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Thomas Tignor + Co-authored-by: Thomas Tignor + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit af10e1dc0a236d32e75687db45dc7894b15e8e39 +Merge: ea121aed3 ae0a5fcd1 +Author: Miles Reiter +Date: Wed Jan 17 15:25:54 2024 -0500 + + Merge pull request #2811 from raft-tech/sprint-90 + + Add Sprint 90 Summary + +commit ae0a5fcd1b8ca3158d74513745730c4cc091e06f +Author: Miles Reiter +Date: Tue Jan 16 10:57:24 2024 -0500 + + Create sprint-90-summary.md + +commit 620bd224764a1d2a50b02b2137c481932b5b5585 +Author: Mo Sohani +Date: Wed Jan 10 13:05:46 2024 -0500 + + corrected t7 tests + +commit e45cc626f25e802a6339bfb6f23bb219d9d57759 +Merge: 533b7e679 ea121aed3 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Jan 10 12:33:36 2024 -0500 + + Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches + +commit ea121aed3fd556cdca84b3d1999d0a63c1f29f3f +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Jan 10 10:08:48 2024 -0700 + + Elastic ADR Update (#2791) + + * - Added authentication risks + + * - Remove pricing info + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit d646eeff013b18069d4ab24c7d3b751cb5f4eeff +Author: George Hudson +Date: Wed Jan 10 08:59:13 2024 -0700 + + 2722/circleci (#2739) + + * reduced workflows from 3 deploys to 1 + + * fix spacing of nested 'steps:' + + * repaired logic for workflow + + * trying to get right format for conditional logic in job steps + + * fixed incorrect variable + + * adding default target_env instead of emptry string + + * reverting + + * fixed spacing + + * removed old requirement and updated for current jobs. + + * use this branch to check develop deploys + + * use this branch to check develop deploys + + * use this branch to check develop deploys + + * use this branch to check develop deploys + + * use this branch to check develop deploys + + * use this branch to check develop deploys + + * revert + + * revert + + * revert + + * removed check in jobs + + * updates site only for develop branch + + * removed deploy develop from github actions + + * fixed spacing + + * remove this branch from CI tracking + + * removed 2722/circleci branch references now that testing is done + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit b35795fc8788cf29cbb09de2accd513f43a2f897 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Jan 10 08:36:40 2024 -0700 + + Tribal Section 4 Parsing & Validation (#2762) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * - Added Tribal models, docs, admin refs + - Added support for tribal parsing + + * - Update t1 field validators + + * - t2/t3 field validators + + * 2599-added friendly name to postparsing validators + + * - Updated cat3 validators + + * - Updated how we detect tribe code + + * - Added error handling for inconsistent header info wrt tribe code + - Added new test + + * - Updated test + + * - Grammar fix + - Removed unused function + + * refining the validator tests + + * - Format with Black + - Add missing tests + + * - Fix lint + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * - Updated based on review feedback + + * - removing debug assert + + * - Fix lint + + * listing + + * - deconflicting migrations + + * - Fixing test + + * added m6 + + * lint + + * - Adding datafile + + * - Added support for parsing tribal t4/t5 + - Added test for t4/t5 parsing + + * - ADded cat2/cat3 validators + + * corrected new line break + + * - Update doc strings + + * - Fixed failing test + + * - Fix lint + + * refactored validator logic + + * - resolving conflict + + * - Fix lint errors + + * - Resolve conflict + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Renamed tribal files + - Updated to allow case aggregates + - Updated datafile to have a more convenient date range + - Updated tests to capture case aggregates + + * - Reduced file size + - Updated test + + * - Fix lint errors + + * - Added support for parsing and validating tribal t6 records + + * - Fix lint + + * - Added support for parsing/validating tribal t7 + + * - Fix lint + + * - Docstring fix + + * - Docstring fix + + * friendly_name corrections + + * - Adding friendly names to tribal + + * - Fixing typo + + * - Added friendly names + + * - Adding friendly names + + * - Adding friendly names + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - knowledge center + + * - Integrating Jans changes. Parametrizing values_is_empty + + * - Update based on review feedback + + * - Updated length checks + + * - removing fips code + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - update based on review + + * - Fix migration + + * - Fixed name clash on PARENT_MINOR_CHILD + + * - Fixed name clash on PARENT_MINOR_CHILD + + * - Cherry pick commit and remove test file + + * Revert "- Fixed name clash on PARENT_MINOR_CHILD" + + This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 1b17e39eec5a1da4a81634c19f3c32aef29c34f3 +Merge: 04de24550 6557594ad +Author: tptignor +Date: Tue Jan 9 20:35:51 2024 -0500 + + Merge pull request #2784 from raft-tech/local-devauth + + DEVAUTH - All-local devenv sans cloud or third-party auth workflows + +commit 6557594ad8b7f06a43e34ff585e687475c6bbf0e +Merge: 0ad143e6a 04de24550 +Author: tptignor +Date: Tue Jan 9 19:12:22 2024 -0500 + + Merge branch 'develop' into local-devauth + +commit 533b7e679a443a098c5c6f544b9b6612d5e18686 +Merge: 7dffa01d6 04de24550 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Jan 9 13:36:28 2024 -0500 + + Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches + +commit 7dffa01d6412cd66176160e0cdc680e37629d4b8 +Author: Mo Sohani +Date: Tue Jan 9 13:36:00 2024 -0500 + + correct failing tests + +commit 04de245500988c09f2791f6bcfcecf44f56a23c2 +Author: Miles Reiter +Date: Tue Jan 9 13:31:01 2024 -0500 + + Sprint 88 89 summaries (#2806) + + * Create sprint-88-summary.md + + * Create sprint-89-summary.md + +commit a86f810cde8793eb0e53d9898d2af1b8ba096cc2 +Merge: 5efd20378 a3c49d7cb +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Jan 9 09:43:24 2024 -0500 + + Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches + +commit 0ad143e6aa071ffc5a48936cc1007864c6cb904a +Merge: f72ec10f4 a3c49d7cb +Author: Thomas Tignor +Date: Tue Jan 9 08:25:27 2024 -0500 + + Merge branch 'develop' into local-devauth + Merging again with develop + +commit f72ec10f46a6703d55cf4b6b0f4f811121e78e91 +Author: Thomas Tignor +Date: Tue Jan 9 07:17:36 2024 -0500 + + Added CustomAuthentication.authenticate TODO and improved logging + +commit 6003e338f9a8802c695c7f7b6fbcbc154bdda168 +Author: Thomas Tignor +Date: Mon Jan 8 19:08:37 2024 -0500 + + Reverted changes to CustomAuthentication.authenticate + +commit a3c49d7cbb8b462fbaa72858b5e0acd4a91a416d +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Jan 8 09:52:16 2024 -0700 + + Tribal Section 3 Parsing & Validation (#2761) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * - Added Tribal models, docs, admin refs + - Added support for tribal parsing + + * - Update t1 field validators + + * - t2/t3 field validators + + * 2599-added friendly name to postparsing validators + + * - Updated cat3 validators + + * - Updated how we detect tribe code + + * - Added error handling for inconsistent header info wrt tribe code + - Added new test + + * - Updated test + + * - Grammar fix + - Removed unused function + + * refining the validator tests + + * - Format with Black + - Add missing tests + + * - Fix lint + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * - Updated based on review feedback + + * - removing debug assert + + * - Fix lint + + * listing + + * - deconflicting migrations + + * - Fixing test + + * added m6 + + * lint + + * - Adding datafile + + * - Added support for parsing tribal t4/t5 + - Added test for t4/t5 parsing + + * - ADded cat2/cat3 validators + + * corrected new line break + + * - Update doc strings + + * - Fixed failing test + + * - Fix lint + + * refactored validator logic + + * - resolving conflict + + * - Fix lint errors + + * - Resolve conflict + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Renamed tribal files + - Updated to allow case aggregates + - Updated datafile to have a more convenient date range + - Updated tests to capture case aggregates + + * - Reduced file size + - Updated test + + * - Fix lint errors + + * - Added support for parsing and validating tribal t6 records + + * - Fix lint + + * - Docstring fix + + * friendly_name corrections + + * - Adding friendly names to tribal + + * - Fixing typo + + * - Added friendly names + + * - Adding friendly names + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - knowledge center + + * - Integrating Jans changes. Parametrizing values_is_empty + + * - Update based on review feedback + + * - Updated length checks + + * - removing fips code + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - update based on review + + * - Fix migration + + * - Fixed name clash on PARENT_MINOR_CHILD + + * Revert "- Fixed name clash on PARENT_MINOR_CHILD" + + This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - Remove validator + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 7ca070b74166b2a2256ea055eeda2bb8c7de0e23 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Jan 8 09:29:35 2024 -0700 + + Tribal Section 2 Parsing & Validation (#2753) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * - Added Tribal models, docs, admin refs + - Added support for tribal parsing + + * - Update t1 field validators + + * - t2/t3 field validators + + * 2599-added friendly name to postparsing validators + + * - Updated cat3 validators + + * - Updated how we detect tribe code + + * - Added error handling for inconsistent header info wrt tribe code + - Added new test + + * - Updated test + + * - Grammar fix + - Removed unused function + + * refining the validator tests + + * - Format with Black + - Add missing tests + + * - Fix lint + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * - Updated based on review feedback + + * - removing debug assert + + * - Fix lint + + * listing + + * - deconflicting migrations + + * - Fixing test + + * added m6 + + * lint + + * - Adding datafile + + * - Added support for parsing tribal t4/t5 + - Added test for t4/t5 parsing + + * - ADded cat2/cat3 validators + + * corrected new line break + + * - Update doc strings + + * - Fixed failing test + + * - Fix lint + + * refactored validator logic + + * - resolving conflict + + * - Fix lint errors + + * - Resolve conflict + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Renamed tribal files + - Updated to allow case aggregates + - Updated datafile to have a more convenient date range + - Updated tests to capture case aggregates + + * - Reduced file size + - Updated test + + * - Fix lint errors + + * friendly_name corrections + + * - Adding friendly names to tribal + + * - Fixing typo + + * - Added friendly names + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - knowledge center + + * - Integrating Jans changes. Parametrizing values_is_empty + + * - Update based on review feedback + + * - Updated length checks + + * - removing fips code + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - update based on review + + * - Fix migration + + * - Fixed name clash on PARENT_MINOR_CHILD + + * Revert "- Fixed name clash on PARENT_MINOR_CHILD" + + This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - Remove validator + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 92fd835f73cfa08303ed7a7eec5524b508116a34 +Author: Miles Reiter +Date: Mon Jan 8 11:11:22 2024 -0500 + + Create sprint-87-summary.md (#2769) + + * Create sprint-87-summary.md + + * Update docs/Sprint-Review/sprint-87-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + + * Update docs/Sprint-Review/sprint-87-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + + --------- + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit c6702bfa438f58c231af0f63e50be037964fc675 +Author: Thomas Tignor +Date: Mon Jan 8 10:48:23 2024 -0500 + + Added pre-existing user condition to DEVAUTH check + Removed login.py logging + +commit 5efd2037840bc6594693823a2ab9c6637caf7e5b +Author: Mo Sohani +Date: Fri Jan 5 12:08:14 2024 -0500 + + linting + +commit bfbd7fa56d977004aa700a9398283f87c97973c7 +Author: Mo Sohani +Date: Fri Jan 5 11:53:14 2024 -0500 + + merge conflict resolution + +commit 35456d05baaa20e3f1a1c32e78690d81dd4df331 +Merge: d709a8ca3 ca6eecf9d +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Jan 5 11:41:17 2024 -0500 + + Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches + +commit d709a8ca3c49bef78de286456e9de29c3114cb30 +Author: Mo Sohani +Date: Fri Jan 5 11:35:29 2024 -0500 + + resolve circular import + +commit ae4719ccb943af6c882756da125d4d9020b65fba +Author: Mo Sohani +Date: Fri Jan 5 09:20:28 2024 -0500 + + corrected the failing test + +commit 4bc60a7596c76eb2f97f1e516cc53d5940e29f00 +Author: Mo Sohani +Date: Fri Jan 5 09:12:17 2024 -0500 + + revert changes on test file + +commit 66e746ae86f98a1baf2846fe1b36714faaa79b65 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Jan 5 09:06:42 2024 -0500 + + Update small_incorrect_file_cross_validator.txt + +commit ef6368ecbf666f6b0e18163810f2db3fbe3346c2 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Jan 5 09:06:21 2024 -0500 + + Update small_incorrect_file_cross_validator.txt + +commit 7946fcba0a349edff22d01762debbea302fc2887 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Jan 5 09:05:44 2024 -0500 + + Update small_incorrect_file_cross_validator.txt + +commit 4aabc95347b075e5533d65fe51206a945f8a7bd2 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Jan 5 09:05:15 2024 -0500 + + Update small_incorrect_file_cross_validator.txt + +commit 98dc8f6b612068931e449795599cd43cce3ecec3 +Author: Mo Sohani +Date: Thu Jan 4 17:31:42 2024 -0500 + + Passing tests + +commit 4e9a2b8ddf6afdf833903db3230901aeb63cb663 +Merge: 1ccaaff80 ca6eecf9d +Author: Thomas Tignor +Date: Thu Jan 4 13:53:36 2024 -0500 + + Merge branch 'develop' into local-devauth + Merging with develop + +commit 1ccaaff80ab68ceaa412d6853eadca131af628cf +Author: Thomas Tignor +Date: Thu Jan 4 13:50:25 2024 -0500 + + Disabled REACT_APP_DEVAUTH for general cases + +commit c71c64798a540713fd0a7761ba83079efe4e0d2d +Author: Thomas Tignor +Date: Thu Jan 4 13:43:12 2024 -0500 + + Fixed Profile primaryRole bug + +commit ca6eecf9dada19b29ba5f35b3f77541856ad2ebb +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Jan 4 09:32:28 2024 -0700 + + Tribal Section 1 Parsing & Validation (#2742) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * - Added Tribal models, docs, admin refs + - Added support for tribal parsing + + * - Update t1 field validators + + * - t2/t3 field validators + + * 2599-added friendly name to postparsing validators + + * - Updated cat3 validators + + * - Updated how we detect tribe code + + * - Added error handling for inconsistent header info wrt tribe code + - Added new test + + * - Updated test + + * - Grammar fix + - Removed unused function + + * refining the validator tests + + * - Format with Black + - Add missing tests + + * - Fix lint + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * - Updated based on review feedback + + * - removing debug assert + + * - Fix lint + + * listing + + * - deconflicting migrations + + * - Fixing test + + * added m6 + + * lint + + * corrected new line break + + * refactored validator logic + + * - resolving conflict + + * - Fix lint errors + + * - Resolve conflict + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * - Renamed tribal files + - Updated to allow case aggregates + - Updated datafile to have a more convenient date range + - Updated tests to capture case aggregates + + * - Reduced file size + - Updated test + + * - Fix lint errors + + * friendly_name corrections + + * - Adding friendly names to tribal + + * - Fixing typo + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * - knowledge center + + * - Integrating Jans changes. Parametrizing values_is_empty + + * - Update based on review feedback + + * - Updated length checks + + * - removing fips code + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * - update based on review + + * - Fix migration + + * - Fixed name clash on PARENT_MINOR_CHILD + + * Revert "- Fixed name clash on PARENT_MINOR_CHILD" + + This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. + + --------- + + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit b35ac52b86a1d27da930c56b8cdb81f6fe6f05e2 +Author: Mo Sohani +Date: Thu Dec 28 13:46:14 2023 -0500 + + two tests still failing + +commit ad014b036abd9073f411152c92e9513da3e512e6 +Author: Mo Sohani +Date: Wed Dec 27 13:29:00 2023 -0500 + + corrected failing tests + +commit 6547d9a3a1ba7605331c4eee22e8b935eedabe2a +Author: Mo Sohani +Date: Wed Dec 27 11:50:14 2023 -0500 + + corrected some of failing tests + +commit bdcdb3456ab975ef04f85452795d65f70d67c7ad +Author: Mo Sohani +Date: Thu Dec 21 16:09:45 2023 -0500 + + created pre-check error + +commit d626eb66593610c0e7c2ab3162c71c416e30ef30 +Author: George Hudson +Date: Wed Dec 20 13:27:01 2023 -0700 + + updated terraform to add redis service instances (#2787) + + Co-authored-by: George Hudson + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit f32607cd71258b6c511b543ce5069a60e4c4b99c +Author: George Hudson +Date: Wed Dec 20 13:10:00 2023 -0700 + + added Tom's workaround for files changed in windows auto changing when pulled into a mac (#2786) + + Co-authored-by: George Hudson + +commit bdb42a8462f7315af716816624f2ccd22bf4a911 +Author: Thomas Tignor +Date: Tue Dec 19 11:13:55 2023 -0500 + + flake8 changes for generate_dev_user.py + +commit d15bf6dbf4f292da66a9b8a087ee79dfc727f180 +Author: Thomas Tignor +Date: Tue Dec 19 10:28:36 2023 -0500 + + Removed unnecessary REACT_APP_DEVAUTH setting from backend + +commit 09d9d2c92bbd70928e16b785c159aa251ab246c5 +Author: Thomas Tignor +Date: Tue Dec 19 10:26:34 2023 -0500 + + Really removed unnecessary CYPRESS_TOKEN setting + +commit d21b155913bdde78ff7ecbfbbe66c7fe6bebebce +Author: Thomas Tignor +Date: Tue Dec 19 10:25:34 2023 -0500 + + Really removed unnecessary CYPRESS_TOKEN setting + +commit 23f6a693442359fc31e6057083f2428110719292 +Author: Thomas Tignor +Date: Tue Dec 19 10:23:24 2023 -0500 + + Removed unnecessary CYPRESS_TOKEN conditional setting + +commit ff79717a618a9e879f6acc2957e433a9afc57bf7 +Author: Thomas Tignor +Date: Fri Dec 15 15:51:46 2023 -0500 + + Modified CustomAuthentication.authenticate comment to satisfy flake8 + +commit 45d1d70965f02dc39c8a137ae05d9092a792c112 +Author: Thomas Tignor +Date: Fri Dec 15 13:49:30 2023 -0500 + + Restored support for CustomAuthentication.authenticate username keyword + +commit d475645e49528cea736f430b4061cd3bc997df6b +Author: Thomas Tignor +Date: Thu Dec 14 08:12:49 2023 -0500 + + Updates to REACT_APP_DEVAUTH env var settings + - Enabled with an email address value + - Disabled by default + +commit fdcb6e21d49c5050b0be07b6e628bf6bdb4ab862 +Author: Thomas Tignor +Date: Thu Dec 14 00:57:57 2023 -0500 + + Removed unneeded permissions import + +commit fe12fb0621471714f3c28b6e52a48e1f929d6a4a +Author: Thomas Tignor +Date: Thu Dec 14 00:52:36 2023 -0500 + + Fixed CustomAuthentication.authenticate logging for login.py use case + +commit 0ff4a662fb1d2344cd92a8f5b99eb4f55f81ce38 +Author: Thomas Tignor +Date: Thu Dec 14 00:49:46 2023 -0500 + + Fixed CustomAuthentication.authenticate return val for login.py use case + +commit d0bf9a36b3bbaa8d156c6301af51f89305bd9168 +Author: Thomas Tignor +Date: Thu Dec 14 00:02:33 2023 -0500 + + DevAuth feature redesign inspired by Cypress + - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} + - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user + - Modified CustomAuthentication.authenticate to handle both known use cases + - Added stt_id=31 to the initial dev user + - Disabled ES disk threshold checking for local dev which blocked ES startup + - Removed DevAuthentication and other now unnecessary code + + Resolved cherry-pick conflict + +commit b12346b46894b887bccca4edacbe3c6688d5e83b +Author: Thomas Tignor +Date: Fri Dec 8 17:09:11 2023 -0500 + + added is_superuser and is_staff attrs to dev user + +commit 1548342f17d6223fa415e17d97cdf1a9aefb245f +Author: Thomas Tignor +Date: Tue Dec 5 11:39:38 2023 -0500 + + Reorganized backend logic on REACT_APP_DEVAUTH env var + +commit ca81e02c21609ee6fa9d13b3fc52c800eb632f89 +Author: Thomas Tignor +Date: Tue Dec 5 11:27:53 2023 -0500 + + Reorganized front end logic on REACT_APP_DEVAUTH env var + +commit 496f60236f00e6a5be31cf33a83c0ef108bd466e +Author: Thomas Tignor +Date: Wed Nov 29 11:21:53 2023 -0500 + + Changes for fully local development + - Enables direct frontend/backend communication sans Login.gov/Cloud.gov + - Drives off new DEVELOPMENT env var + - Pre-configures and disables frontend auth functionality + - Testing based on new dev user + - Install via web: ./manage.py generate_dev_user + +commit 1de71fe26330fe11140372b0b43ab42850e38f1d +Author: Thomas Tignor +Date: Tue Dec 19 09:24:55 2023 -0500 + + DEVAUTH - All-local devenv sans cloud or third-party auth workflows + + Remedy for git confusion on problem zip files + +commit 65afe1911dd24ea13055505e211a9cd5059e58a4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Dec 18 12:21:52 2023 -0500 + + Issue 2488: boundary diagram updates (#2770) + + * boundary diagram updates for 2488 + + * make pngs transparent + + * update nginx server for frontend description + + --------- + + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit ae1abca95a3834f9ab954ebc0a5958d34f1cd2de +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Dec 18 11:47:15 2023 -0500 + + 2599-error-report-excel-format (#2734) + + * Added formating for header and autofit columns + + * Formatted the headers + + * added year/month to the columns + + * Added contants - translation column + + * added friendly names to T1 and T2 + + * added friendly name to m1 and m2 + + * added friendly name to m3 + + * added friendly_name to t3 + + * added friendly_name to t4 and t5 + + * added friendly_name to t7 + + * correct missing friendly_name + + * correction on failing tests + + * addedfriendly name to excel report + + * linting + + * linting + + * linting + + * delete contants.py + + * added test for json field in error model + + * linting + + * linting + + * linting + + * 2599-added friendly name to postparsing validators + + * refining the validator tests + + * added returning fields names to validators + + * added friendly_name to error field + + * linting + + * corrections on views/tests + + * corrections for fields + + * failing test corrected + + * failing test corrected + + * correcting test failures + + * linting + + * corrected the excel fiel generator + + * removed excessive space in validator + + * linting + + * listing + + * added m6 + + * lint + + * corrected new line break + + * refactored validator logic + + * linting and correction on t1 + + * friendly_name correction from comments + + * friendly_name correction + + * corrected failing test for m5 + + * refactor the field_json creation DRY + + * friendly_name corrections + + * linting and cleaning errors + + * linting + + * correction on friendly_names + + * corrected friendly_name for test_util + + * correction child care - number of months + + * fixed a few more typos and some spacing. (#2767) + + * fixed a few more typos and some spacing. + + * fixed linting issues + + * missed a spot. + + --------- + + Co-authored-by: George Hudson + + * fields_json Backward compatibility + + * remove PATCH from black list + + * backward compatibility + + * linting + + * add PATCH to allowed + + * readded internal_name + + * added a function + + * remove NoneType from fields_json + + * linting + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * corrections on friendly names + + * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * correction on friendly names + + --------- + + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 8028ad00267b0284b94219675b696b6bb0cb9a2d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Dec 13 12:04:45 2023 -0500 + + adding documentation on cloudgov s3 incident response (#2763) + +commit 68e2abad7f3d9a2f117b73628ac87181d32dc04f +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Dec 13 08:31:02 2023 -0700 + + - Remove debug print statements (#2778) + +commit b11e1a9c00bd981d3871b2204dd013debcfd6e4d +Merge: 01338f905 e5ccc2c08 +Author: Miles Reiter +Date: Tue Dec 12 12:08:49 2023 -0500 + + Merge pull request #2776 from raft-tech/knowledge-center-img-hotfix + + Adds img folder for knowledge center hotfix + +commit e5ccc2c0899915cc4c71800fd1c6779eba12dd3e +Merge: 2a1506bf6 01338f905 +Author: Miles Reiter +Date: Fri Dec 8 17:55:42 2023 -0500 + + Merge branch 'develop' into knowledge-center-img-hotfix + +commit 2a1506bf6e7af21792c857981428fd555d572cc7 +Author: Miles Reiter +Date: Fri Dec 8 17:21:10 2023 -0500 + + Adds img folder + +commit 01338f905eb30cd76c8c3867be5299f77ef44eae +Merge: 25376871c 60fce1211 +Author: Miles Reiter +Date: Fri Dec 8 17:04:01 2023 -0500 + + Merge pull request #2774 from raft-tech/knowledge-center-ftanf-update + + Adds fTANF -> FTANF and FTANF Download Guide + +commit 60fce1211e35670d88e6e83616f3dd57bb82f8f6 +Merge: 47a7f923d a7d99d909 +Author: Miles Reiter +Date: Fri Dec 8 16:29:09 2023 -0500 + + Merge branch 'knowledge-center-ftanf-update' of https://github.com/raft-tech/TANF-app into knowledge-center-ftanf-update + +commit 47a7f923d075ae07c7babc3b280917e9dc824eae +Author: Miles Reiter +Date: Fri Dec 8 16:29:00 2023 -0500 + + Update index.html + +commit a7d99d9093a729bc19749f2b3b0360a6c724d9bd +Author: Miles Reiter +Date: Fri Dec 8 16:26:18 2023 -0500 + + Update product-updates/knowledge-center/index.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 9eb09c07e5273cf2f6615a569aaa53bb33757f34 +Author: Miles Reiter +Date: Fri Dec 8 12:29:13 2023 -0500 + + Fix missing copy edits & element nesting + +commit 3e1c7a2fdc7b95b665e9ffed036d2ba9c0f51a38 +Author: Miles Reiter +Date: Fri Dec 8 10:58:41 2023 -0500 + + Adds fTANF -> FTANF and FTANF Download Guide + +commit 25376871c98f77e79936860f43ca487a0a66b0ed +Author: George Hudson +Date: Wed Dec 6 09:12:18 2023 -0700 + + added needed space into logic (#2765) + + * added needed space into logic + + * updated security controls documentation to mention how NGINX is used by lower envs to connect to prod clamav server + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 11aef55904828519c9abb510f69f781105e49b15 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Dec 6 09:46:08 2023 -0500 + + Fix parser/preparser validation of empty strings (#2748) + + * add validator tests + + * add notEmpty test + + * add blank string to value_is_empty values + + * replace removed text + + * fix partial oob string indexing + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit eb16d8b3d4bd868d508203038ffb3fdc33002598 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Dec 1 10:55:28 2023 -0500 + + 2683-zap-CORS-misconfig (#2727) + + * added cloud.gov back to scan urls + + * temp + + * revert changes on zap.conf + + * revert change on zap.conf + + * revert changes on zap-hook.conf + + * revert changes on nginx.conf + + * revert changes on middleware.py + + * linting + + * revert change on docker-compose file + + * revert changes on .env file + + * remove file not needed + + * linting + + * revert changes on deploy-backend + + * revert changes on zap-scanner.py + + * revrt some changes on zap-scanner + + * Added CORS settings + + * increase max_file allow large file clamav scans + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit eac7e505eac1596af557608760fffad0833742e6 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Nov 29 15:53:45 2023 -0500 + + add file size to clamav-nginx (#2760) + +commit 0b6224107130a971a0b332416c3d945bc4239900 +Merge: cd6213a41 a8326054d +Author: mitika-lj <144261380+mitika-lj@users.noreply.github.com> +Date: Tue Nov 28 13:48:18 2023 -0600 + + Merge pull request #2758 from raft-tech/camilla-link-fix-branch + + Fixing the link ( removing the "copy" from the file name) + +commit a8326054d85ffbba7d4f93f7cf57ecfd3d408d02 +Author: mitika-lj +Date: Tue Nov 28 13:21:04 2023 -0600 + + Fixing the link ( removing the "copy" from the file name + +commit cd6213a41862e47e35da89258ac9d53eb246ae04 +Author: Miles Reiter +Date: Wed Nov 22 15:39:34 2023 -0500 + + Create sprint-86-summary.md (#2752) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit bd31881802f6483cf4173e1a74e1f0eba6dc54c7 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Nov 22 12:50:38 2023 -0700 + + SSP Section 2 Parsing & Validation (#2724) + + * - Added m4 and m5 + - Added cat 2 validators + + * - Quick correction to preparse validator + + * - Updated item numbers + - Added cat3 validators + + * - Adding datafile + + * - updated datafile to allow correct parsing of m4 records + - added tests + + * - Fix lint errors + + * - Update permissions test + + * - Fixed failing unit test + + * - Adding order_by to keep consistent results + + * - Fixed obj ordering issue + - Skipping super big file + + * - Added missing validator + + * - Updated import paths + + * - Updated DOB fields to make a little more sense + + * - Pre-emptively marking required false to prepare for merge + + * - Fix lint + + * - Formatting with Black + + * update m4/m5 validators + + * isInLimits -> matches (duh) + + * - Deconflicting migrations + + * - Fixing test + + * - Adding missing fixture + + * - Resolving migration name conflicts + + * - Fixing dependency + + * - Keeping consistent dependencies + + * - Linearizing deps + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + +commit f1f15c1b524fe28eda1cf4e963b4e26f8685359b +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Nov 22 10:43:37 2023 -0700 + + SSP Section 4 Parsing & Validation (#2731) + + * - Added support for parsing and validating ssp section 4 + + * - fix lint errors + + * - Updated permissions test + + * - Fixed item number mismatch + + * - Remove generic relation + - Add missing test + - Re-made migration + + * - Fix lint errors + + * - Pre-calculating item numbers + + * - Formatting with Black + + * - Adding missing postparsing validator + + * - Deconflicting migrations + + * - Deconflicting migrations + + * - Fixing test + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 9b1c2d1ab8726a922dfdbb1492a3f338da92c1b8 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Nov 21 09:59:45 2023 -0500 + + Feature/1119 ssp section 3 (#2733) + + * ssp m6 boilerplate + + * update ssp m6 field names + + * update tests + + * rm logging + + * rm logging + + * fix tests + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 7ce0a8e91614cb0972fe5358e2ade9f802a93aff +Merge: 619687b7f b6141661b +Author: Miles Reiter +Date: Mon Nov 20 11:57:38 2023 -0500 + + Merge pull request #2750 from raft-tech/sprint-85-summary + + Create sprint-85-summary.md + +commit b6141661b5f8bab6e2f26c4042fafbe97b0bb466 +Merge: 3887e4a55 619687b7f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Nov 17 13:56:50 2023 -0500 + + Merge branch 'develop' into sprint-85-summary + +commit 619687b7f2f7cb268bc235b5b4990c0b5dfa1c81 +Author: George Hudson +Date: Fri Nov 17 11:56:28 2023 -0700 + + added documentation for our Nexus repository (#2682) + + * added documentation for our Nexus repository + + * updated documentation to include VM configuration, nexus container setup, and new proxy and group repo usage. + + * updated reamde with qol and grammatical fixes + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 3887e4a5582bea6fb7afa23a040117454f342655 +Author: Miles Reiter +Date: Fri Nov 17 13:49:45 2023 -0500 + + Create sprint-85-summary.md + +commit 872c5b07d79a6e45ab18761c16e77f63d3635a75 +Author: George Hudson +Date: Wed Nov 8 13:38:07 2023 -0700 + + allow circleci tdrs-run-deploy to kick off with new functionality (#2741) + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 6b5065862c4eb310ed842b7eec2a3db7a26d5d86 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Nov 8 14:10:05 2023 -0500 + + Feature/2709 ssp section 1 validation (#2723) + + * cat 2 validation + + * ssp s1 cat 3 validators + + * debug ssp section errors + + * change string validators to number validators + + * add df to case agg query + + * update ssp s1 test + + * update ssp tests + + * fix lint + + * update test + + * rm prints + + * update validator + + * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * fix the validator i broke and update tests + + * udpate validator (again) + + * lint + + * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * lint + + * rm unneeded cat3 validator + + * update docstring + + * rm unused validator + + * update m2 validator + + * fix education level validation for m3 + + * add required=False to allow blanks + + * fix other education level m3 validator + + * rm schema comments + + * fix tests + + --------- + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit fcd2a1d53b01ac35362d58c7004d7baf078ef2d9 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Nov 7 07:05:51 2023 -0700 + + Infinite FETCH_STTS (#2720) + + * - Updated request to execute 5 times before throwing error + + * - Adding error modal when stt list is empty + + * - Not defaulting to show error modal + + * - Updated to use redux state instead of component state for request counting + + * - Simplifying if block + + * - Updated to use our pre-built modal instead of re-inventing the wheel + +commit be8f1964c8e85964c00632bbf23aceea9c18f6e8 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Nov 6 11:57:11 2023 -0500 + + Updating apt repo for postgres (#2744) + +commit 6785277b941460ed2415ee201a8919bff426118b +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Nov 6 07:48:54 2023 -0700 + + 2695 field spaces (#2704) + + * - Added support to fields that can allow blanks as valid fields + - Added new tests + - Updated make validator to handle type errors + + * - Updating blank fields to not be required + + * - Fix lint errors + - Add datafile + + * - updating fields to be required until guidance comes out on what is not reqruired + + * - ADding None check + + * - Error checking + + * - Updated to run field validators even if field is empty but is allowed to be + - removed unnecessary validator + - updated schemas + - + + * - Switching back to numIsBlank + + * -Adding back numIsBlank + + * - adding isNone since empty string fields are also None + + * - Added all missing fields to test file + - Updated incorrect fields and catch validator error + + * - Updating test + + * - Fix lint errors + + * - Re-added missing fields + - Updating tests + + * - Updated tests + + * - Fixing errors from merge + + * - Removed extra flag + - Updated logic on when to run field validators + - Updated schemas + + * - Fixed failing tests + + * - Fix lint + + * - Removing unnused validator + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 7115532cd187955fe81766b9908f9461a655ccf4 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Nov 3 12:24:39 2023 -0600 + + File Input Render Issue (#2725) + + * - small grammar fix + + * - Fix lint suggestions + + * - updated message + + * - Fixed lint errors + + * - Added correct extension to datafiles without one + + * - Adding cherry picks for file extension error handling + + * - Updated regex + + * - updating to keep file in dropbox in event of error to help user correct their mistake. + + * - Fix icon rendering incorrectly + + * update test file extensions + + * - making timeout longer + + * - Resolved issue causing test failure + - resetting timeout + + * - passing param + + * - updated nginx conf + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Miles Reiter + Co-authored-by: Jan Timpe + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 96452dcd6fb7343532fa7e86c4d3ac7f0c04179f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Nov 3 12:44:47 2023 -0400 + + Debug/develop deployment failures (#2743) + + * Update cloudgov.py + + * hijack develop workflow to test deployments. + + * syntax typo. + + * I can't believe this typo. + + * linting whitespace + + * removed extra space + + * Adding in staging jwt_key due to recent deployment failure. + + * Removing self-reference branch filter for mergability + + * Updated elif logic based on CI failures + + --------- + + Co-authored-by: andrew-jameson + Co-authored-by: George Hudson + +commit d6784ad521f04650b045a08ce73f3ff52164307f +Author: Miles Reiter +Date: Fri Nov 3 10:00:33 2023 -0400 + + Sprint 84 summary (#2737) + + * Create sprint-84-summary.md + + * Update sprint-84-summary.md + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 84f357d9ac2fb485dab632e72b5d6a6aa07034aa +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Nov 2 08:01:55 2023 -0700 + + Create sprint-83-summary.md (#2728) + + Sprint summary + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit a886f701b2bc9af1839666a7bae37e556b4c7f8d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Nov 2 09:44:43 2023 -0400 + + Update cloudgov.py (#2730) + + * Update cloudgov.py + + * hijack develop workflow to test deployments. + + * syntax typo. + + * I can't believe this typo. + + * linting whitespace + + * removed extra space + + * Adding in staging jwt_key due to recent deployment failure. + + * Removing self-reference branch filter for mergability + + --------- + + Co-authored-by: andrew-jameson + Co-authored-by: George Hudson + +commit 932a41ea991b83ac75ec5c93d187eb4785316d56 +Author: George Hudson +Date: Thu Oct 12 08:18:29 2023 -0600 + + 2429/single clamav (#2718) + + * removed clamav from being deployed unless in production. Pointed AV SCAN enpoint to tanf-prod clam av scanner only + + * added network policy to connect to prod clamAV + + * use prod clam av in cloudgov.py too + + * fixing 'f-string is missing placeholders' now that we are hardcoding prod clamav + + * removed quotes from add-network-policy command when interpolation not needed + + * removed add-network-policy from deploy-backend.sh and added documentation for how to do manually. + + * add nginx router and manifest + + * cleaned up + + * Update README for CLAMAV + + * updated README file with deployment commands + + * added network policy for backend to clamav router + + * updated boundry diagram + + * updated boundry diagram + + * Removed AV_SCAN url from cloud.gov settings file + + * update setting environment variable + + * refactored circle ci for static clam av vars since only one server now. updated docs. + + * needs env_var_name, not string for login-cloud-dot-gov + + * revert back to env_var_name type for downstream login_cloud_dot_gov command + + * added prod prefix back in + + * readd AV_SCAN_URL + + * changed the inline comment in common.py settings + + * README file rewrite + + * added note + + * readded clam av nginx router url to manifest and setting network policies in the deploy-backend.sh script + + * updated for using backend to set ENV for ClamAV URL. + + * getting rid of spaces on empty last line of manifest + + * Remove AV_SCAN_URL from deploy-backend + + * updated README for clarification for clam-av-nginx-router naming + + * moving setting vars for clamav server to above cf push + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Mo Sohani + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 6fa43ad75268187a23a8b37b96edfdb231378713 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Oct 12 06:01:53 2023 -0700 + + Rename sprint-82-review.md to sprint-82-summary.md (#2726) + + renaming file + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 281cad7846b333e8e666119b1840ce5fa27d7a18 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Oct 11 16:09:19 2023 -0400 + + 2411 metadata parsed datafiles (#2706) + + * saving state real quick + + * finishing merge with latest + + * Missed old test script + + * Added new test, more cleanup + + * Updating unit tests in DFS, preparing for 1610 + + * Merging in Jan's 1610 code for parserError useful-ness + + * Revert "Merging in Jan's 1610 code for parserError useful-ness" + + This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. + + * update to test to use dfs fixture + + * saving state before new 1610 merge + + * Resolving merge conflicts with 1610. + + * Linting changes and comparing to 1610 + + * Some unit test linting but inherited 1610 issues + + * Re-ordering job to run tests vs lint first. + + * Updates to linting and unit tests. + + * Fixing linting. + + * Update tdrs-backend/setup.cfg + + * updates per PR. + + * Excluding trailers for rejection + + * VSCode merge resolution is garbage. + + * Fixing precheck for not implemented types + + * Updating to error-handle not implemented schema types + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Fixed failing test + + * add adminUrl to deployment cypress overrides + + * Adding "beta" banners to relevant error report sections (#2522) + + * Update views.py + + * Update views.py + + * Update SubmissionHistory.jsx + + * Update SubmissionHistory.test.js + + * Apply suggestions from code review + + Co-authored-by: Miles Reiter + + * lint fixes + + --------- + + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * Create sprint-73-summary.md (#2565) + + * hotfix for large file sizes (#2542) + + * hotfix for large file sizes + + * apply timeouts/req limits to dev + + * filter identity pages from scan + + * IGNORE sql injection + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: mo sohani + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + + * updating validation error language + + * accidentally included coding challenge + + * rm comments + + * 2550 deactivation email link (#2557) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding url to email + + * - test code for sandbox + + * - using my email + + * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" + + This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing + changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- using my email" + + This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- test code for sandbox" + + This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update README.md (#2577) + + Add ATO + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Create 2023, Spring - Testing CSV & Excel-based error reports.md + + * Update README.md + + * Updating deliverable links (#2584) + + * User viewset not returning/duplicating users (#2573) + + * - Fixed issue not allowing pagination to work locally with nginx + - Added ordering to user field to fix duplicates issue + + * - fix lint error + + * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update cf os (#2523) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding new dependencies + + * - adding package + + * - fixing broken install + + * - fixing libs + + * - using correct command + + * - gettign correct version of libc + + * - trying to upgrade libs + + * - testing + + * - Updated README and script + + * Revert "- Updated README and script" + + This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. + + * - Removed unnecessary circi stuff + - Removed script + - Updated docs to callout updating secondary apps + + * - Correct spelling error + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Item Number Mismatch (#2578) + + * - Updated schemas and models to reflect correct item numbers of fields + + * - Revert migration + + * - Updated header/trailer item numbers + + * - Fixed item numbers off by one errors + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * pipeline filtering (#2538) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Hotfix Devops/2457 path filtering for documentation (#2597) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + * build and test all on PRs even for documentation + + --------- + + Co-authored-by: George Hudson + + * Create sprint-74-summary.md (#2596) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * added URL filters (#2580) + + * added URL filters + + * allow github to trigger owasp and label deploys (#2601) + + Co-authored-by: George Hudson + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + + * Create sprint-75-summary.md (#2608) + + * Create sprint-76-summary.md (#2609) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * - Resolved failing tests + + * - Corrected merge thrash + + * - Using randbits to generate pk to get around confilcting sequence pks + + * Revert "- Using randbits to generate pk to get around confilcting sequence pks" + + This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. + + * - Updating region in fixture instead of factory + - letting django handle transaction for test + + * - Moved datafile reference to avoid confusion + + * pushing up incomplete codebase + + * Other unit tests now have passed w/ good error handling + + * Working tests, need to get setup for case aggregates populating via DB + + * - Updated queries + - Added helper function + - Need to merge in 2579 for queries to work + + * minor improvement to month2int + + * - Fixing most merge errors + + * - Fixing functions + + * - Updated queries based on generic relation + + * - Updated queries to count by case number instead of record number + + * - Added route + - Updated task to create dfs + + * - updated tests to include dfs + + * Cleaning up most comments that are no longer necessary and fixed lint issues. + + * making minor updates, still broken tests. + + * updating pipfile.lock and rebuild image resolved test issues + + * Reorganizing tests, still failing in test_parse.py + + * deleted summary file, split into other test scripts. + + * Fixed missing self reference. + + * Linting fixes. + + * Found reference failure in deployed env. + + * Removing extra returns for missing record type. + + * lint fix + + * Addressed invocation of datafile for failing test + + * lint update for whitespace + + * Intermediary commit, broken test + + * new assignemnts in util + + * - updated rejected query to correctly count objs + + * - Fixing most tests + + * - Fixed user error. Swapped numbers by accident. + + * - make region None to avoid PK collision + + * - Fix lint errors + + * - Updating to avoid warning + + * vscode merge conflict resolution (#2623) + + * auto-create the external network + + * didn't stage commit properly + + * checking diffs, matching 1613.2 + + * doesn't work in pipeline. must be cached local + + * re-commenting in unit test + + * lint failures fixed + + --------- + + Co-authored-by: andrew-jameson + + * url change per me, want pipeline to run e2e + + * Upgraded to querysets, fix PR comments, PE str + + * missing : not caught locally + + * Feat/1613 merge 2 (#2650) + + * Create sprint-78-summary.md (#2645) + + * Missing/unsaved parser_error for record_type + + * removing redundant tests + + * Hopefully resolved on unit tests and lint + + --------- + + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * icontains + + * tests + + * Changing dict structure per 1612. + + * fixed tests and lint issues, parse is too complex + + * schema_manager replaces schema check + + * Saving state prior to merge-conflict. + + * Adopting latest manager, removing old error style. + + * Commented out t6 line during Office hours + + * minor reference update + + * Acclimating to schemaManager + + * lint-fix isinstance + + * syntax mistake with isinstance + + * Apply suggestions from code review + + * reverting search_index merge artifacts. + + * adjusting for removing unused "get-schema()" + + * whitespace lint + + * Feedback from Jan + + * Ensuring tests run/work. + + * Ensure we have leading zero in rptmonthyear. + + * Minor lint fix for exception logging + + * resolving merge conflict problems + + * added the filters for datafile progtype + + * added url to admin filters + + * added datafile summary link to admin page + + * filtering parser errors + + * linting + + * Test data_file admin page + + * corrected datafile id for test file + + * linting + + * Added deplay to cypress test + + * changed datafile summary filter + + * Changed error report link + + * changed filter to reflect related name + + --------- + + Co-authored-by: Andrew Jameson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: andrew-jameson + Co-authored-by: elipe17 + Co-authored-by: Jan Timpe + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + Co-authored-by: Miles Reiter + Co-authored-by: George Hudson + Co-authored-by: George Hudson + +commit e178c5c7a035890980068bca9a93a2896107af99 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Oct 11 12:15:36 2023 -0700 + + Create sprint-82-review.md (#2716) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit a4ad481ff878a40ca9bb11fe3c4a9353c9b63321 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Oct 10 10:40:53 2023 -0600 + + Frontend File Validation (#2690) + + * - small grammar fix + + * - Fix lint suggestions + + * - updated message + + * - Fixed lint errors + + * - Added correct extension to datafiles without one + + * - Adding cherry picks for file extension error handling + + * - Updated regex + + * - updating to keep file in dropbox in event of error to help user correct their mistake. + + * - Fix icon rendering incorrectly + + * update test file extensions + + * - making timeout longer + + * - Resolved issue causing test failure + - resetting timeout + + * - passing param + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Miles Reiter + Co-authored-by: Jan Timpe + +commit 954edc74a494040db5f82a33a97fb25cbdaec47b +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Oct 5 10:33:32 2023 -0400 + + 1612 case aggregates frontend (#2643) + + * saving state real quick + + * finishing merge with latest + + * Missed old test script + + * Added new test, more cleanup + + * Updating unit tests in DFS, preparing for 1610 + + * Merging in Jan's 1610 code for parserError useful-ness + + * Revert "Merging in Jan's 1610 code for parserError useful-ness" + + This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. + + * update to test to use dfs fixture + + * saving state before new 1610 merge + + * Resolving merge conflicts with 1610. + + * Linting changes and comparing to 1610 + + * Some unit test linting but inherited 1610 issues + + * Re-ordering job to run tests vs lint first. + + * Updates to linting and unit tests. + + * Fixing linting. + + * Update tdrs-backend/setup.cfg + + * updates per PR. + + * Excluding trailers for rejection + + * VSCode merge resolution is garbage. + + * Fixing precheck for not implemented types + + * Updating to error-handle not implemented schema types + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Fixed failing test + + * add adminUrl to deployment cypress overrides + + * Adding "beta" banners to relevant error report sections (#2522) + + * Update views.py + + * Update views.py + + * Update SubmissionHistory.jsx + + * Update SubmissionHistory.test.js + + * Apply suggestions from code review + + Co-authored-by: Miles Reiter + + * lint fixes + + --------- + + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * Create sprint-73-summary.md (#2565) + + * hotfix for large file sizes (#2542) + + * hotfix for large file sizes + + * apply timeouts/req limits to dev + + * filter identity pages from scan + + * IGNORE sql injection + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: mo sohani + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + + * updating validation error language + + * accidentally included coding challenge + + * rm comments + + * 2550 deactivation email link (#2557) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding url to email + + * - test code for sandbox + + * - using my email + + * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" + + This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing + changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- using my email" + + This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- test code for sandbox" + + This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update README.md (#2577) + + Add ATO + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Create 2023, Spring - Testing CSV & Excel-based error reports.md + + * Update README.md + + * Updating deliverable links (#2584) + + * User viewset not returning/duplicating users (#2573) + + * - Fixed issue not allowing pagination to work locally with nginx + - Added ordering to user field to fix duplicates issue + + * - fix lint error + + * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update cf os (#2523) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding new dependencies + + * - adding package + + * - fixing broken install + + * - fixing libs + + * - using correct command + + * - gettign correct version of libc + + * - trying to upgrade libs + + * - testing + + * - Updated README and script + + * Revert "- Updated README and script" + + This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. + + * - Removed unnecessary circi stuff + - Removed script + - Updated docs to callout updating secondary apps + + * - Correct spelling error + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Item Number Mismatch (#2578) + + * - Updated schemas and models to reflect correct item numbers of fields + + * - Revert migration + + * - Updated header/trailer item numbers + + * - Fixed item numbers off by one errors + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * pipeline filtering (#2538) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Hotfix Devops/2457 path filtering for documentation (#2597) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + * build and test all on PRs even for documentation + + --------- + + Co-authored-by: George Hudson + + * Create sprint-74-summary.md (#2596) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * added URL filters (#2580) + + * added URL filters + + * allow github to trigger owasp and label deploys (#2601) + + Co-authored-by: George Hudson + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + + * Create sprint-75-summary.md (#2608) + + * Create sprint-76-summary.md (#2609) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * - Resolved failing tests + + * - Corrected merge thrash + + * - Using randbits to generate pk to get around confilcting sequence pks + + * Revert "- Using randbits to generate pk to get around confilcting sequence pks" + + This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. + + * - Updating region in fixture instead of factory + - letting django handle transaction for test + + * - Moved datafile reference to avoid confusion + + * pushing up incomplete codebase + + * Other unit tests now have passed w/ good error handling + + * Working tests, need to get setup for case aggregates populating via DB + + * - Updated queries + - Added helper function + - Need to merge in 2579 for queries to work + + * minor improvement to month2int + + * - Fixing most merge errors + + * - Fixing functions + + * - Updated queries based on generic relation + + * - Updated queries to count by case number instead of record number + + * - Added route + - Updated task to create dfs + + * - updated tests to include dfs + + * Cleaning up most comments that are no longer necessary and fixed lint issues. + + * making minor updates, still broken tests. + + * updating pipfile.lock and rebuild image resolved test issues + + * Reorganizing tests, still failing in test_parse.py + + * deleted summary file, split into other test scripts. + + * Fixed missing self reference. + + * Linting fixes. + + * Found reference failure in deployed env. + + * Removing extra returns for missing record type. + + * lint fix + + * Addressed invocation of datafile for failing test + + * lint update for whitespace + + * Intermediary commit, broken test + + * add reverse relation + + * frontend summary status + + * new assignemnts in util + + * - updated rejected query to correctly count objs + + * - Fixing most tests + + * - Fixed user error. Swapped numbers by accident. + + * - make region None to avoid PK collision + + * - Fix lint errors + + * - Updating to avoid warning + + * add acceptance icon + + * add reverse relationship to summary model + + * vscode merge conflict resolution (#2623) + + * auto-create the external network + + * didn't stage commit properly + + * checking diffs, matching 1613.2 + + * doesn't work in pipeline. must be cached local + + * re-commenting in unit test + + * lint failures fixed + + --------- + + Co-authored-by: andrew-jameson + + * add a pending status + + * add acceptance status tests + + * update warning icon + + * rm old assert + + * update rejected icon + + * add case aggregates to submission history + + * url change per me, want pipeline to run e2e + + * update case aggregate columns + + * update col names + + * Upgraded to querysets, fix PR comments, PE str + + * missing : not caught locally + + * Feat/1613 merge 2 (#2650) + + * Create sprint-78-summary.md (#2645) + + * Missing/unsaved parser_error for record_type + + * removing redundant tests + + * Hopefully resolved on unit tests and lint + + --------- + + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * icontains + + * tests + + * Changing dict structure per 1612. + + * fixed tests and lint issues, parse is too complex + + * schema_manager replaces schema check + + * Saving state prior to merge-conflict. + + * Adopting latest manager, removing old error style. + + * Commented out t6 line during Office hours + + * minor reference update + + * Acclimating to schemaManager + + * lint-fix isinstance + + * syntax mistake with isinstance + + * Apply suggestions from code review + + * reverting search_index merge artifacts. + + * adjusting for removing unused "get-schema()" + + * whitespace lint + + * Feedback from Jan + + * Ensuring tests run/work. + + * Ensure we have leading zero in rptmonthyear. + + * Minor lint fix for exception logging + + * fix migration + + * add backend partially accepted status + + * add frontend partially accepted status + + * add partially accepted test + + * rm accidental commit + + * rm unused variable + + * conditional submission history + + * fix test + + * resolving merge conflict problems + + * fixing tests from merge conflicts. + + * - fixed migration reference + + * dumb lint fix + + * - Fixed render error + + * Adding section + + * - Resolved type mismatches causing render failures + + * - Adding branch coverage + + * - Fix lint errors + + * - Fix lint errors + + * - Consolodated tetss + + * reducing line length for lint + + * - updated maxWidth to be percentage + + * Moving DFS migration into it's own file to avoid conflicts. + + * rename migrations + + * left align error report text + + * github got stuck :( + + * rm comment + + * rm margin, add text for no error report + + * fix tests + + * fix ssp case aggregates display + + --------- + + Co-authored-by: Andrew Jameson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: andrew-jameson + Co-authored-by: elipe17 + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: mo sohani + Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + Co-authored-by: Miles Reiter + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit 8de88cd7704e1d8262fbee2dac21fdc6beb13c3e +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Oct 4 14:06:36 2023 -0400 + + Feature/1610.2 frontend parsing status (#2622) + + * saving state real quick + + * finishing merge with latest + + * Missed old test script + + * Added new test, more cleanup + + * Updating unit tests in DFS, preparing for 1610 + + * Merging in Jan's 1610 code for parserError useful-ness + + * Revert "Merging in Jan's 1610 code for parserError useful-ness" + + This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. + + * update to test to use dfs fixture + + * saving state before new 1610 merge + + * Resolving merge conflicts with 1610. + + * Linting changes and comparing to 1610 + + * Some unit test linting but inherited 1610 issues + + * Re-ordering job to run tests vs lint first. + + * Updates to linting and unit tests. + + * Fixing linting. + + * Update tdrs-backend/setup.cfg + + * updates per PR. + + * Excluding trailers for rejection + + * VSCode merge resolution is garbage. + + * Fixing precheck for not implemented types + + * Updating to error-handle not implemented schema types + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Fixed failing test + + * add adminUrl to deployment cypress overrides + + * Adding "beta" banners to relevant error report sections (#2522) + + * Update views.py + + * Update views.py + + * Update SubmissionHistory.jsx + + * Update SubmissionHistory.test.js + + * Apply suggestions from code review + + Co-authored-by: Miles Reiter + + * lint fixes + + --------- + + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * Create sprint-73-summary.md (#2565) + + * hotfix for large file sizes (#2542) + + * hotfix for large file sizes + + * apply timeouts/req limits to dev + + * filter identity pages from scan + + * IGNORE sql injection + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: mo sohani + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + + * updating validation error language + + * accidentally included coding challenge + + * rm comments + + * 2550 deactivation email link (#2557) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding url to email + + * - test code for sandbox + + * - using my email + + * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" + + This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing + changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- using my email" + + This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- test code for sandbox" + + This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update README.md (#2577) + + Add ATO + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Create 2023, Spring - Testing CSV & Excel-based error reports.md + + * Update README.md + + * Updating deliverable links (#2584) + + * User viewset not returning/duplicating users (#2573) + + * - Fixed issue not allowing pagination to work locally with nginx + - Added ordering to user field to fix duplicates issue + + * - fix lint error + + * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update cf os (#2523) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding new dependencies + + * - adding package + + * - fixing broken install + + * - fixing libs + + * - using correct command + + * - gettign correct version of libc + + * - trying to upgrade libs + + * - testing + + * - Updated README and script + + * Revert "- Updated README and script" + + This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. + + * - Removed unnecessary circi stuff + - Removed script + - Updated docs to callout updating secondary apps + + * - Correct spelling error + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Item Number Mismatch (#2578) + + * - Updated schemas and models to reflect correct item numbers of fields + + * - Revert migration + + * - Updated header/trailer item numbers + + * - Fixed item numbers off by one errors + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * pipeline filtering (#2538) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Hotfix Devops/2457 path filtering for documentation (#2597) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + * build and test all on PRs even for documentation + + --------- + + Co-authored-by: George Hudson + + * Create sprint-74-summary.md (#2596) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * added URL filters (#2580) + + * added URL filters + + * allow github to trigger owasp and label deploys (#2601) + + Co-authored-by: George Hudson + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + + * Create sprint-75-summary.md (#2608) + + * Create sprint-76-summary.md (#2609) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * - Resolved failing tests + + * - Corrected merge thrash + + * - Using randbits to generate pk to get around confilcting sequence pks + + * Revert "- Using randbits to generate pk to get around confilcting sequence pks" + + This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. + + * - Updating region in fixture instead of factory + - letting django handle transaction for test + + * - Moved datafile reference to avoid confusion + + * pushing up incomplete codebase + + * Other unit tests now have passed w/ good error handling + + * Working tests, need to get setup for case aggregates populating via DB + + * - Updated queries + - Added helper function + - Need to merge in 2579 for queries to work + + * minor improvement to month2int + + * - Fixing most merge errors + + * - Fixing functions + + * - Updated queries based on generic relation + + * - Updated queries to count by case number instead of record number + + * - Added route + - Updated task to create dfs + + * - updated tests to include dfs + + * Cleaning up most comments that are no longer necessary and fixed lint issues. + + * making minor updates, still broken tests. + + * updating pipfile.lock and rebuild image resolved test issues + + * Reorganizing tests, still failing in test_parse.py + + * deleted summary file, split into other test scripts. + + * Fixed missing self reference. + + * Linting fixes. + + * Found reference failure in deployed env. + + * Removing extra returns for missing record type. + + * lint fix + + * Addressed invocation of datafile for failing test + + * lint update for whitespace + + * Intermediary commit, broken test + + * add reverse relation + + * frontend summary status + + * new assignemnts in util + + * - updated rejected query to correctly count objs + + * - Fixing most tests + + * - Fixed user error. Swapped numbers by accident. + + * - make region None to avoid PK collision + + * - Fix lint errors + + * - Updating to avoid warning + + * add acceptance icon + + * add reverse relationship to summary model + + * vscode merge conflict resolution (#2623) + + * auto-create the external network + + * didn't stage commit properly + + * checking diffs, matching 1613.2 + + * doesn't work in pipeline. must be cached local + + * re-commenting in unit test + + * lint failures fixed + + --------- + + Co-authored-by: andrew-jameson + + * add a pending status + + * add acceptance status tests + + * update warning icon + + * rm old assert + + * update rejected icon + + * url change per me, want pipeline to run e2e + + * Upgraded to querysets, fix PR comments, PE str + + * missing : not caught locally + + * Feat/1613 merge 2 (#2650) + + * Create sprint-78-summary.md (#2645) + + * Missing/unsaved parser_error for record_type + + * removing redundant tests + + * Hopefully resolved on unit tests and lint + + --------- + + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * icontains + + * tests + + * Changing dict structure per 1612. + + * fixed tests and lint issues, parse is too complex + + * schema_manager replaces schema check + + * Saving state prior to merge-conflict. + + * Adopting latest manager, removing old error style. + + * Commented out t6 line during Office hours + + * minor reference update + + * Acclimating to schemaManager + + * lint-fix isinstance + + * syntax mistake with isinstance + + * Apply suggestions from code review + + * reverting search_index merge artifacts. + + * adjusting for removing unused "get-schema()" + + * whitespace lint + + * Feedback from Jan + + * Ensuring tests run/work. + + * Ensure we have leading zero in rptmonthyear. + + * Minor lint fix for exception logging + + * fix migration + + * add backend partially accepted status + + * add frontend partially accepted status + + * add partially accepted test + + * rm accidental commit + + * rm unused variable + + * resolving merge conflict problems + + * fixing tests from merge conflicts. + + * dumb lint fix + + * Update tdrs-backend/tdpservice/parsers/migrations/0007_alter_datafilesummary_datafile.py + + * fix merge errors + + * fix name attr not populated for preparsing errors + + * include preparsing errors in row_precheck_errors status + + * make header precheck errors force rejected status + + * lint msg + + --------- + + Co-authored-by: Andrew Jameson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: andrew-jameson + Co-authored-by: elipe17 + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: mo sohani + Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + Co-authored-by: Miles Reiter + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit fb6cc5f847ad4c2a9e670e3a2ad361af1c9f3ef8 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Sep 29 11:56:31 2023 -0400 + + Feature/1111 tanf section 4 (#2657) + + * - ADding t2 schema + + * - small fixes to naming + - added t2.py + - Updating var names to match field names + + * - Added new doc for T2 + - Updated model fo rT2 + - Added active parse function + + * - Added T3 schema defs + + * - Fixing most lint errors + + * - Updated T3 to multirow record + + * - Added unit test and data files + - updated field names + + * - Updating var names to conform to DB max var name length + + * - Updating based on unit test failure + + * - adding datafile + + * - Adding unit tests for t2 and t3 + + * - Fixed field types + - Updated test file + + * - Removing many migrations to consolodate into one migration + + * Revert "- Removing many migrations to consolodate into one migration" + + This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. + + * - Resolved test issues after merge + + * - Resolve lint errors + + * - Merged 1113.2 + + * - Removed unnecessary file + + * - Rename model fields + - Combined migrations + + * - fixed spelling in test + + * - Fixed lint errors + + * rm commented validators + + * - Updated schema newlines to be consistent + + * - Updated field names + - Updated tests + - Updated migration + + * - consolodating migrations + + * - Updated readme and backup script + + * - Updated parse logic to batch create records + + * - Fixed lint errors + + * - Batching record serialization + + * - Updated parse logic + + * - Adding big s1 datafile + + * - fixing lint errors + + * - Removing test to see if its causing weird failure + + * - Updating based on comments + - Removing big file since circi cant handle it + + * - fixing error in update method + + * - fixing error in update + + * - Removed extraneous seek + + * - updating ignore to ignore patch files + + * - Made evaluate_trailer pure/immutable + + * Revert "- Removing test to see if its causing weird failure" + + This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. + + * - Use custom transactions while parsing + - Handle transaction rollback on parse failure/error + - Update tests to use transaction logic + - Created new decorator to rollback database when assertion error is hit + - Making elastic search log level configurable + - Added test for inter parse rollback + + * - updated store logic to one liner + - updated decorator to catch all exceptions + - updated tests + + * - removed function + - renamed test + + * - refactored multirecord schema to be a schema manager instead + - updated parse functions to use the new layout + - updated bulk create to manage batch size + + * - Name update for clarity + + * - Fix lint errors + + * - Changing batch size to avoid crash in circi + + * - Updated based on review + - Updated tests to reflect line number + + * - Updated based on review/OH + - Added extra transaction safety + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated based on review comments + + * - Updated based on feedback for preparse error handling + - updated tests + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Moved datafile reference to avoid confusion + + * - Updating based on comments. + - Added base class to keep things a little more DRY + + * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. + + * - small optimization for the rollback + + * - Fix lint errors + + * - Removing commented code + + * - Installing build essentials + + * Revert "- Installing build essentials" + + This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. + + * - adding setup tools and wheel + + * Revert "- adding setup tools and wheel" + + This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. + + * - Updating dependencies to get around pep issue + + * - Pin factoryboy + - fix lint error + + * - Updating manifest + + * - Added EncryptedField class + - Updated schema's + - Updated datafiles since all are encrypted + + * - Fix lint errors + + * - Added decryption for ssp + + * - Making the encrypted check stronger + + * - Added section two models, schemas, and an initial test + + * - Allowing fields to be nullable + + * - add missing field + + * - Consolodating migrations + + * - Consolodate migration + - Add tests + + * - Added encrypted field + + * - Refactored fields and rowschema into seperate files + - Updated encrypted field to take decryption function + + * - fix lint errors + + * - Fixed file spacing + + * - fix imports + - fix lint errors + + * - Fix import error + + * - Fix failing test + + * - Revert erroneous change + + * - Updating item numbers + + * - Fixed item numbers + + * - Updating to accomodate item number as string + + * - Removed erroneous update that was causing error + - Fixed whitespace in datafiles + + * - White space error + + * - Resolved error + + * - Fixing test + + * - fix lint errors + + * - Added field validators for T4/T5 + + * - Added cat3 validators + + * - Resolve lint and unit test errors + + * - small optimization to validator + + * - Added tests for cat3 validators for T5 record + + * - Fix lint errors + + * - updated fields to correct types + + * - update race/ethnicity + + * - updated tests post merge + - added check in make_validator to just return false if the value is None + + * - Updated based on review feedback + + * - Fix lint error + + * - Updating to the correct types + + * - Resolve conflicts + + * - Moving field updates to seperate migration to see if they take place + + * Revert "- Moving field updates to seperate migration to see if they take place" + + This reverts commit a3214f23e0bd9cc4cc37ad40e63ae0c98b4ea64b. + + * - Revert migration 15 to original state + - Generate new migration for field alterations + + * - Merged base branch and updated tests/factories + + * - Fixed test + + * - Fixed field names to correspond to model + + * - Remove duplicate function + - Update ssn validator + - Removed asserts with large number of parse errors + + * t7 model, index changes + + * add t7 to parser + + * update model mapping test + + * add s3-s10 + + * - Remove print statemtnt + + * - Resolved filter issue that made it seem like records werent being created + - Added filter to remaining records + + * - fix lint errors + + * - correct form merge conflict + + * - Added specific validators to avoid duplication + - Updated naming of validators + + * TANF Section 3 Parsing/Validation (#2649) + + * - Updated to support parsing section 3 data + + * - Added validators and tests for T6 record + + * - resolve lint errors + + * - Quick rename + + * - Update fields in test + + * - Fixed conflict + + * - Fix error from merge conflict + + * - Updated to create RPT_MONTH_YEAR from CALENDAR_QUARTER + - Updated tests + + * - Added new validators for field change + + * - Remove debug code + + * - Genericize TransformField + - Update all schemas to use TransformField + - Move transforms to seperate file + - Fix lint errors + + * - put kwargs in correct spot + + * - Very minor change to avoid setting field unnecessarily on all TransformFields + + * - Updated validator to call out name of field versus the value + - Updated tests + + * - Fix lint + + * - Calling super to avoid duplicate code + + * - Added validators for transformed field + + * - Updating based on merge + + * - Fixed remaining merge conflicts + + * - Fix lint errors + + * - update error messages based on validator updates + + * - Corrected validator + + * - Resolved bug causing file to think it was encrytped after multiple submissions and changing the encryption header in between submissions + + * - UPdated migration + - Updated test + + * - Added transform fields + - UPdated migrations + + * - Stratified T7 to one record per month per section indicator and stratum. + + * - Updated tests + + * - Fix test + + * - Add T7 factory + + * - Fix lint error + + * - Remove test class until cat three validators exist + + * - fix lint errors + + * - Fixing colliding migration + + * - Generating schemas instead of defining + + * - Fix lint errors + + * - Updated based on review feedback + + * rm 17/18 + + * remake migration 18 + + * fix merge error + + * fix merge error + + * fix merge error + + * labels are stuck + + * rm + + * dont compute aggregates for section 3/4 + + * move save + + * Update tdrs-backend/tdpservice/parsers/test/factories.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * enhance t7 modeladmin + + * fix rpt_month_year off by 1 + + * lint + + * differentiate item 6a/6b/67 in t7 records + + --------- + + Co-authored-by: elipe17 + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> + +commit 8289c015dc9aa9992cfc23cb731645fbbaf8fc69 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu Sep 28 14:46:59 2023 -0400 + + DB-drop-and-reset-write-down (#2710) + + * added md file for dropping DB + + * added section for db_backup & merged into README + + * Update CloudFoundry-DB-Connection.md + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit c94b8f7302733767e6cd3b69adaf92e0aa4dede7 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Sep 28 10:57:06 2023 -0700 + + Create sprint-81-summary.md (#2715) + +commit 43cb33d537cb77d82567078f94126a6e54ac043c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Sep 25 14:42:27 2023 -0400 + + 1613 - DataFileSummary w/ Case Aggregates (#2612) + + * saving state real quick + + * finishing merge with latest + + * Missed old test script + + * Added new test, more cleanup + + * Updating unit tests in DFS, preparing for 1610 + + * Merging in Jan's 1610 code for parserError useful-ness + + * Revert "Merging in Jan's 1610 code for parserError useful-ness" + + This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. + + * update to test to use dfs fixture + + * saving state before new 1610 merge + + * Resolving merge conflicts with 1610. + + * Linting changes and comparing to 1610 + + * Some unit test linting but inherited 1610 issues + + * Re-ordering job to run tests vs lint first. + + * Updates to linting and unit tests. + + * Fixing linting. + + * Update tdrs-backend/setup.cfg + + * updates per PR. + + * Excluding trailers for rejection + + * VSCode merge resolution is garbage. + + * Fixing precheck for not implemented types + + * Updating to error-handle not implemented schema types + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Fixed failing test + + * add adminUrl to deployment cypress overrides + + * Adding "beta" banners to relevant error report sections (#2522) + + * Update views.py + + * Update views.py + + * Update SubmissionHistory.jsx + + * Update SubmissionHistory.test.js + + * Apply suggestions from code review + + Co-authored-by: Miles Reiter + + * lint fixes + + --------- + + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * Create sprint-73-summary.md (#2565) + + * hotfix for large file sizes (#2542) + + * hotfix for large file sizes + + * apply timeouts/req limits to dev + + * filter identity pages from scan + + * IGNORE sql injection + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: mo sohani + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + + * updating validation error language + + * accidentally included coding challenge + + * rm comments + + * 2550 deactivation email link (#2557) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding url to email + + * - test code for sandbox + + * - using my email + + * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" + + This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing + changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- using my email" + + This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- test code for sandbox" + + This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update README.md (#2577) + + Add ATO + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Create 2023, Spring - Testing CSV & Excel-based error reports.md + + * Update README.md + + * Updating deliverable links (#2584) + + * User viewset not returning/duplicating users (#2573) + + * - Fixed issue not allowing pagination to work locally with nginx + - Added ordering to user field to fix duplicates issue + + * - fix lint error + + * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Update cf os (#2523) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding new dependencies + + * - adding package + + * - fixing broken install + + * - fixing libs + + * - using correct command + + * - gettign correct version of libc + + * - trying to upgrade libs + + * - testing + + * - Updated README and script + + * Revert "- Updated README and script" + + This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. + + * - Removed unnecessary circi stuff + - Removed script + - Updated docs to callout updating secondary apps + + * - Correct spelling error + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Item Number Mismatch (#2578) + + * - Updated schemas and models to reflect correct item numbers of fields + + * - Revert migration + + * - Updated header/trailer item numbers + + * - Fixed item numbers off by one errors + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * pipeline filtering (#2538) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * Hotfix Devops/2457 path filtering for documentation (#2597) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + * build and test all on PRs even for documentation + + --------- + + Co-authored-by: George Hudson + + * Create sprint-74-summary.md (#2596) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * added URL filters (#2580) + + * added URL filters + + * allow github to trigger owasp and label deploys (#2601) + + Co-authored-by: George Hudson + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + + * Create sprint-75-summary.md (#2608) + + * Create sprint-76-summary.md (#2609) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * - Resolved failing tests + + * - Corrected merge thrash + + * - Using randbits to generate pk to get around confilcting sequence pks + + * Revert "- Using randbits to generate pk to get around confilcting sequence pks" + + This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. + + * - Updating region in fixture instead of factory + - letting django handle transaction for test + + * - Moved datafile reference to avoid confusion + + * pushing up incomplete codebase + + * Other unit tests now have passed w/ good error handling + + * Working tests, need to get setup for case aggregates populating via DB + + * - Updated queries + - Added helper function + - Need to merge in 2579 for queries to work + + * minor improvement to month2int + + * - Fixing most merge errors + + * - Fixing functions + + * - Updated queries based on generic relation + + * - Updated queries to count by case number instead of record number + + * - Added route + - Updated task to create dfs + + * - updated tests to include dfs + + * Cleaning up most comments that are no longer necessary and fixed lint issues. + + * making minor updates, still broken tests. + + * updating pipfile.lock and rebuild image resolved test issues + + * Reorganizing tests, still failing in test_parse.py + + * deleted summary file, split into other test scripts. + + * Fixed missing self reference. + + * Linting fixes. + + * Found reference failure in deployed env. + + * Removing extra returns for missing record type. + + * lint fix + + * Addressed invocation of datafile for failing test + + * lint update for whitespace + + * Intermediary commit, broken test + + * new assignemnts in util + + * - updated rejected query to correctly count objs + + * - Fixing most tests + + * - Fixed user error. Swapped numbers by accident. + + * - make region None to avoid PK collision + + * - Fix lint errors + + * - Updating to avoid warning + + * vscode merge conflict resolution (#2623) + + * auto-create the external network + + * didn't stage commit properly + + * checking diffs, matching 1613.2 + + * doesn't work in pipeline. must be cached local + + * re-commenting in unit test + + * lint failures fixed + + --------- + + Co-authored-by: andrew-jameson + + * url change per me, want pipeline to run e2e + + * Upgraded to querysets, fix PR comments, PE str + + * missing : not caught locally + + * Feat/1613 merge 2 (#2650) + + * Create sprint-78-summary.md (#2645) + + * Missing/unsaved parser_error for record_type + + * removing redundant tests + + * Hopefully resolved on unit tests and lint + + --------- + + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: andrew-jameson + + * icontains + + * tests + + * Changing dict structure per 1612. + + * fixed tests and lint issues, parse is too complex + + * schema_manager replaces schema check + + * Saving state prior to merge-conflict. + + * Adopting latest manager, removing old error style. + + * Commented out t6 line during Office hours + + * minor reference update + + * Acclimating to schemaManager + + * lint-fix isinstance + + * syntax mistake with isinstance + + * Apply suggestions from code review + + * reverting search_index merge artifacts. + + * adjusting for removing unused "get-schema()" + + * whitespace lint + + * Feedback from Jan + + * Ensuring tests run/work. + + * Ensure we have leading zero in rptmonthyear. + + * Minor lint fix for exception logging + + * resolving merge conflict problems + + * fixing tests from merge conflicts. + + * dumb lint fix + + * reducing line length for lint + + * Moving DFS migration into it's own file to avoid conflicts. + + --------- + + Co-authored-by: andrew-jameson + Co-authored-by: elipe17 + Co-authored-by: Jan Timpe + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + Co-authored-by: mo sohani + Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + Co-authored-by: Miles Reiter + Co-authored-by: George Hudson + Co-authored-by: George Hudson + Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> + +commit bf2cf1211de07ddabb198bdc4ad6604323551e1b +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Sep 20 13:48:14 2023 -0400 + + Reverted migrations to reflect what exists in prod (#2703) + +commit 4d5ed4b20b15a659da93cf1a6a8682b37e5a9ef7 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Mon Sep 18 09:31:56 2023 -0700 + + Create sprint-80-summary.md (#2694) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 539007ae1b08d6acb97c74badeb6e5bf1d486c42 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Sep 12 03:34:37 2023 -0600 + + Parser Logging (#2665) + + * - Added custom formatter + - Added specific log config for parsing + - Added logging throughout parsing + + * - Addding tty to docker + - Update colors + + * - Added more logging based on discussion. + + * - Small updates to logs/color + + * - Fix lint errors + + * - Added repr/str for datafile + - Updated repr/str for parsererror + - UPdated based on review comments + + * - fix lint errors + + * - Updated based on review comments + + * - Updating buildpack + + * Revert "- Updating buildpack" + + This reverts commit 9854dcb69461feacfc55e0cff672be42b0e9e1b2. + + * - extra logging message + + * Revert "- extra logging message" + + This reverts commit 8f19e952ddc2d76647c0da965881ba0c152fb416. + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit d66ec4336ec3f76db34703cce8c4596680559685 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Sep 6 10:56:26 2023 -0400 + + added migrate command to gunicorn_start (#2686) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 6fb815c457181aedf85d1324a54322a0bed8fa00 +Author: George Hudson +Date: Wed Sep 6 09:26:58 2023 -0500 + + ZAP Scan ignores for SQL Injection (#2679) + + * Added Active SQL and Hidden File Finder to IGNORE list and updated documentation explaining why and process for reports + + * added examples of using postman + + --------- + + Co-authored-by: George Hudson + +commit bc61ab2ac4f0ae8210382316f4f42d50a4d482f3 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 5 11:58:48 2023 -0400 + + let's try diff orb versions (#2692) + + * let's try diff orb versions + + * Update base_config.yml + +commit 9c7ed6a989137ed2524a21baead5d87ba90871bc +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Aug 31 08:58:13 2023 -0600 + + TANF Section 2 Validation (#2633) + + * - ADding t2 schema + + * - small fixes to naming + - added t2.py + - Updating var names to match field names + + * - Added new doc for T2 + - Updated model fo rT2 + - Added active parse function + + * - Added T3 schema defs + + * - Fixing most lint errors + + * - Updated T3 to multirow record + + * - Added unit test and data files + - updated field names + + * - Updating var names to conform to DB max var name length + + * - Updating based on unit test failure + + * - adding datafile + + * - Adding unit tests for t2 and t3 + + * - Fixed field types + - Updated test file + + * - Removing many migrations to consolodate into one migration + + * Revert "- Removing many migrations to consolodate into one migration" + + This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. + + * - Resolved test issues after merge + + * - Resolve lint errors + + * - Merged 1113.2 + + * - Removed unnecessary file + + * - Rename model fields + - Combined migrations + + * - fixed spelling in test + + * - Fixed lint errors + + * rm commented validators + + * - Updated schema newlines to be consistent + + * - Updated field names + - Updated tests + - Updated migration + + * - consolodating migrations + + * - Updated readme and backup script + + * - Updated parse logic to batch create records + + * - Fixed lint errors + + * - Batching record serialization + + * - Updated parse logic + + * - Adding big s1 datafile + + * - fixing lint errors + + * - Removing test to see if its causing weird failure + + * - Updating based on comments + - Removing big file since circi cant handle it + + * - fixing error in update method + + * - fixing error in update + + * - Removed extraneous seek + + * - updating ignore to ignore patch files + + * - Made evaluate_trailer pure/immutable + + * Revert "- Removing test to see if its causing weird failure" + + This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. + + * - Use custom transactions while parsing + - Handle transaction rollback on parse failure/error + - Update tests to use transaction logic + - Created new decorator to rollback database when assertion error is hit + - Making elastic search log level configurable + - Added test for inter parse rollback + + * - updated store logic to one liner + - updated decorator to catch all exceptions + - updated tests + + * - removed function + - renamed test + + * - refactored multirecord schema to be a schema manager instead + - updated parse functions to use the new layout + - updated bulk create to manage batch size + + * - Name update for clarity + + * - Fix lint errors + + * - Changing batch size to avoid crash in circi + + * - Updated based on review + - Updated tests to reflect line number + + * - Updated based on review/OH + - Added extra transaction safety + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated based on review comments + + * - Updated based on feedback for preparse error handling + - updated tests + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Moved datafile reference to avoid confusion + + * - Updating based on comments. + - Added base class to keep things a little more DRY + + * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. + + * - small optimization for the rollback + + * - Fix lint errors + + * - Removing commented code + + * - Installing build essentials + + * Revert "- Installing build essentials" + + This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. + + * - adding setup tools and wheel + + * Revert "- adding setup tools and wheel" + + This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. + + * - Updating dependencies to get around pep issue + + * - Pin factoryboy + - fix lint error + + * - Updating manifest + + * - Added EncryptedField class + - Updated schema's + - Updated datafiles since all are encrypted + + * - Fix lint errors + + * - Added decryption for ssp + + * - Making the encrypted check stronger + + * - Added section two models, schemas, and an initial test + + * - Allowing fields to be nullable + + * - add missing field + + * - Consolodating migrations + + * - Consolodate migration + - Add tests + + * - Added encrypted field + + * - Refactored fields and rowschema into seperate files + - Updated encrypted field to take decryption function + + * - fix lint errors + + * - Fixed file spacing + + * - fix imports + - fix lint errors + + * - Fix import error + + * - Fix failing test + + * - Revert erroneous change + + * - Updating item numbers + + * - Fixed item numbers + + * - Updating to accomodate item number as string + + * - Removed erroneous update that was causing error + - Fixed whitespace in datafiles + + * - White space error + + * - Resolved error + + * - Fixing test + + * - fix lint errors + + * - Added field validators for T4/T5 + + * - Added cat3 validators + + * - Resolve lint and unit test errors + + * - small optimization to validator + + * - Added tests for cat3 validators for T5 record + + * - Fix lint errors + + * - updated fields to correct types + + * - update race/ethnicity + + * - updated tests post merge + - added check in make_validator to just return false if the value is None + + * - Updated based on review feedback + + * - Fix lint error + + * - Updating to the correct types + + * - Resolve conflicts + + * - Moving field updates to seperate migration to see if they take place + + * Revert "- Moving field updates to seperate migration to see if they take place" + + This reverts commit a3214f23e0bd9cc4cc37ad40e63ae0c98b4ea64b. + + * - Revert migration 15 to original state + - Generate new migration for field alterations + + * - Merged base branch and updated tests/factories + + * - Fixed test + + * - Fixed field names to correspond to model + + * - Remove duplicate function + - Update ssn validator + - Removed asserts with large number of parse errors + + * - Remove print statemtnt + + * - Resolved filter issue that made it seem like records werent being created + - Added filter to remaining records + + * - fix lint errors + + * - correct form merge conflict + + * - Added specific validators to avoid duplication + - Updated naming of validators + + * TANF Section 3 Parsing/Validation (#2649) + + * - Updated to support parsing section 3 data + + * - Added validators and tests for T6 record + + * - resolve lint errors + + * - Quick rename + + * - Update fields in test + + * - Fixed conflict + + * - Fix error from merge conflict + + * - Updated to create RPT_MONTH_YEAR from CALENDAR_QUARTER + - Updated tests + + * - Added new validators for field change + + * - Remove debug code + + * - Genericize TransformField + - Update all schemas to use TransformField + - Move transforms to seperate file + - Fix lint errors + + * - put kwargs in correct spot + + * - Very minor change to avoid setting field unnecessarily on all TransformFields + + * - Updated validator to call out name of field versus the value + - Updated tests + + * - Fix lint + + * - Calling super to avoid duplicate code + + * - Added validators for transformed field + + * - Updating based on merge + + * - Fixed remaining merge conflicts + + * - Fix lint errors + + * - update error messages based on validator updates + + * - Corrected validator + + * - Resolved bug causing file to think it was encrytped after multiple submissions and changing the encryption header in between submissions + + * - Made case number validators consistent + + * - Converging validators between sections + + * - Updating based on review comments + + * - Fix paren error + + * - Removed extra dot + + * - Updating validator + + * - updating race conditional validators + + * - corrected validator + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 824b05a7b92f252d2edd6fb1bf60241e314054a8 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Aug 29 14:03:01 2023 -0400 + + Sendgrid adr (#2678) + + * sendgrid adr + + * update name + + * update adr title + + * Update docs/Technical-Documentation/Architecture-Decision-Record/021-sendgrid.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 04e9f677d5e77dc55d30b2c5221540bd900ffa7d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 28 13:55:38 2023 -0400 + + Create spike.md (#2671) + +commit 2dfc993c023c09b7d66ae38f56a5357d591e8d97 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Aug 25 14:15:59 2023 -0400 + + 2369-quality-checks-across-TANF-section (#2518) + + * first commit + + * - add cat3 validator for t1 + + * - Added cat3 validators for T1 + + * - Added test class for cat3 validators + + * - Updated test to validate all branches in validators + + * - Fixed lint errors + + * - updating num expected errors + + * added cross complex validators + + * - Added remainign cat3 validators + - Added test for validators + + * added validations + + * Corrected fields and validations + + * t1 changes + + * adedd all T1 validations + + * T1 validations finished + + * T2 validators still missing two + + * linting + + * - Updated validator logic + - added cat3 t3 validators + - added new validators + + * - Updated validator logic + + * - Fixed lint errors + - Fixed validator logic + - updated tests to use new validator format + - Updated schemas to use correct validators + + * - Updated model field to correct type + - Updated tests per validation changes + + * - removed unnecessary prints + + * - Fix lint errors + + * validated against excel file + + * corrections on validators + + * linting + + * unit tests + + * correct isBlank + + * correction on cross validations + + * added cross valitors and applied corrections + + * linting + + * changed if_then validator to correct the logic + + * corrections a test + + * added missing validators for t3 child one + + * added migration to e2e job + + * - Resolving type issues + - Most validators updated + + * - Updating remaining validators + + * - Updated field types + - FIxed failing tests/validators + + * - Resolved conflicts/test issues + + * - Fixing validators + + * - Updated validators to respect field changes + + * - updating validator tests + + * - Fix lint errors + + * Update jobs.yml + + corrected backend directory name + + * SSN refactor notOneOf + + * - Updated based on review comments + + * - Updated based on review comments + + * - Fix lint errors + + * - Removing accidental file commit + + * requested change & added extention 2 or validator + + * - Fix lint errors + + * - fixing randomness of test + + * added missing 9 in the ranges for SSN + + * leading zeros for ZIP_CODE + + * - Resolved bug causing missing parser errors + - Updated tests to reflect record index + + * correction on isInLimits validator + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + --------- + + Co-authored-by: elipe17 + Co-authored-by: andrew-jameson + Co-authored-by: msohanifr + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit a98501853773d1ee696763dce027fca41c351c94 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Aug 24 10:32:13 2023 -0400 + + Fix deployment cypress failures (#2652) + + * add the required Referer header + + * improve stt lookup reliability + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit dc956a068121a40d039ad655026e95a55635d6c6 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu Aug 24 09:59:39 2023 -0400 + + 2282-file-upload-integration-test (#2634) + + * added the logic for uploading the file + + * uploading file + + * upload test with sucess message + + * Update accounts.js + + * Update accounts.js linting + + * separating the file_upload + +commit a980d1c2ed0466f6371b072e1f8d0515bfa4414f +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Aug 17 11:25:36 2023 -0700 + + Create sprint-79-summary.md (#2670) + +commit 63e84c0ef31aa9f7869d0d6b3ad7b15f9c554e11 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 17 09:52:36 2023 -0400 + + Hotfix/aug data deadline correction (#2668) + + * updated deadline in docs + + * updated deadline for aug on homepage + +commit c518e1ed501405ca7e4493643e8ba89e58e4a53e +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Aug 16 10:56:44 2023 -0400 + + Feature/sendgrid (#2613) + + * add sendgrid lib + + * update settings + + * sendgrid sandbox off + + * use sendgrid backend for send + + * lint + + * adds api key to local + + * re-enable task + + * temporarily comment + + * update from address + + * remove comments and unused shared_task + + * use automated_email synchronously + + * fix tests + + * test name + + * rm old vars + + * use new sendgrid api lib + + * add + impl custom email backend + + * update tests to be synchronous + + * rm local email config + + * fix lint + + * update local compose + +commit 1edfe45a0a359083252d80dcb6d0fd08debd2023 +Author: George Hudson +Date: Tue Aug 15 08:09:00 2023 -0600 + + updating to latest zapscanner container version (2.13.0) and removed endpoint to be tested from the global exclude list (#2659) + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 8398fde7756b4ff720e3075b2b0c8038e086897a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 15 09:40:24 2023 -0400 + + Updating nginx to latest stable version (#2653) + + * Updating to latest stable version + + * Update manifest.buildpack.yml + + * Update buildpack-changelog.md + + --------- + + Co-authored-by: andrew-jameson + +commit 713b0570e81ec9ea54d1521147095148341d7531 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Aug 9 12:40:22 2023 -0600 + + 1109 tanf section2 (#2628) + + * - ADding t2 schema + + * - small fixes to naming + - added t2.py + - Updating var names to match field names + + * - Added new doc for T2 + - Updated model fo rT2 + - Added active parse function + + * - Added T3 schema defs + + * - Fixing most lint errors + + * - Updated T3 to multirow record + + * - Added unit test and data files + - updated field names + + * - Updating var names to conform to DB max var name length + + * - Updating based on unit test failure + + * - adding datafile + + * - Adding unit tests for t2 and t3 + + * - Fixed field types + - Updated test file + + * - Removing many migrations to consolodate into one migration + + * Revert "- Removing many migrations to consolodate into one migration" + + This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. + + * - Resolved test issues after merge + + * - Resolve lint errors + + * - Merged 1113.2 + + * - Removed unnecessary file + + * - Rename model fields + - Combined migrations + + * - fixed spelling in test + + * - Fixed lint errors + + * rm commented validators + + * - Updated schema newlines to be consistent + + * - Updated field names + - Updated tests + - Updated migration + + * - consolodating migrations + + * - Updated readme and backup script + + * - Updated parse logic to batch create records + + * - Fixed lint errors + + * - Batching record serialization + + * - Updated parse logic + + * - Adding big s1 datafile + + * - fixing lint errors + + * - Removing test to see if its causing weird failure + + * - Updating based on comments + - Removing big file since circi cant handle it + + * - fixing error in update method + + * - fixing error in update + + * - Removed extraneous seek + + * - updating ignore to ignore patch files + + * - Made evaluate_trailer pure/immutable + + * Revert "- Removing test to see if its causing weird failure" + + This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. + + * - Use custom transactions while parsing + - Handle transaction rollback on parse failure/error + - Update tests to use transaction logic + - Created new decorator to rollback database when assertion error is hit + - Making elastic search log level configurable + - Added test for inter parse rollback + + * - updated store logic to one liner + - updated decorator to catch all exceptions + - updated tests + + * - removed function + - renamed test + + * - refactored multirecord schema to be a schema manager instead + - updated parse functions to use the new layout + - updated bulk create to manage batch size + + * - Name update for clarity + + * - Fix lint errors + + * - Changing batch size to avoid crash in circi + + * - Updated based on review + - Updated tests to reflect line number + + * - Updated based on review/OH + - Added extra transaction safety + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated based on review comments + + * - Updated based on feedback for preparse error handling + - updated tests + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Moved datafile reference to avoid confusion + + * - Updating based on comments. + - Added base class to keep things a little more DRY + + * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. + + * - small optimization for the rollback + + * - Fix lint errors + + * - Removing commented code + + * - Installing build essentials + + * Revert "- Installing build essentials" + + This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. + + * - adding setup tools and wheel + + * Revert "- adding setup tools and wheel" + + This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. + + * - Updating dependencies to get around pep issue + + * - Pin factoryboy + - fix lint error + + * - Updating manifest + + * - Added EncryptedField class + - Updated schema's + - Updated datafiles since all are encrypted + + * - Fix lint errors + + * - Added decryption for ssp + + * - Making the encrypted check stronger + + * - Added section two models, schemas, and an initial test + + * - Allowing fields to be nullable + + * - add missing field + + * - Consolodating migrations + + * - Consolodate migration + - Add tests + + * - Added encrypted field + + * - Refactored fields and rowschema into seperate files + - Updated encrypted field to take decryption function + + * - fix lint errors + + * - Fixed file spacing + + * - fix imports + - fix lint errors + + * - Fix import error + + * - Fix failing test + + * - Revert erroneous change + + * - Updating item numbers + + * - Fixed item numbers + + * - Updating to accomodate item number as string + + * - Removed erroneous update that was causing error + - Fixed whitespace in datafiles + + * - White space error + + * - Resolved error + + * - Fixing test + + * - fix lint errors + + * - updated fields to correct types + + * - update race/ethnicity + + * - Updating to the correct types + + * - Resolve conflicts + + * - Moving field updates to seperate migration to see if they take place + + * Revert "- Moving field updates to seperate migration to see if they take place" + + This reverts commit a3214f23e0bd9cc4cc37ad40e63ae0c98b4ea64b. + + * - Revert migration 15 to original state + - Generate new migration for field alterations + + * - Fixed field names to correspond to model + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 72a1c84e37ec2bf87551ca96dd70c2736b2db9f1 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Aug 8 12:06:55 2023 -0400 + + Bugfix test download text file (#2651) + + * added global temp directory to conftest + + * Update conftest.py - linting + +commit 1f9f4eb92e05ee4b932a148b1932145a7d27e3c9 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Mon Aug 7 09:47:37 2023 -0700 + + Create sprint-78-summary.md (#2645) + +commit c5ecb04ffefe58c5c8030f07a74ab09874310355 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Aug 2 08:56:46 2023 -0700 + + Create sprint-77-summary.md (#2638) + +commit bca5d8bcb07d08b1daab5e4b545fc55c8bb706c9 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Aug 1 11:02:52 2023 -0400 + + 2618 nginx config site down (#2635) + + * maintenance page config andstatic html + + * added Nginx template + + * corrected the path + + * changed the returning page + + * Adds hard-coded banner & a11y tweaks + + - Adds a skip to main link + - Adds prod-banner + - Adds uswds.min.js (from knowledge center) to make the banner expand work + - Removes list elements from around contact us button so it doesn't read as a single item list in screenreaders + + --------- + + Co-authored-by: Miles Reiter + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 3265cfd8dc019124854b2c65890fc48c649b4e80 +Author: George Hudson +Date: Tue Aug 1 07:04:11 2023 -0600 + + moved erd and infrastructure workflows into nested jobs in deploy (#2632) + + * moved erd and infrastructure workflows into nested jobs in deploy + + * forgot to save commands file + + * keeping make_erd job and commands definitions in separate folder + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 51fd924c940834e1fdbda469a0ad25edee4de996 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Aug 1 06:21:23 2023 -0600 + + SSN Encryption/Decryption (#2624) + + * - ADding t2 schema + + * - small fixes to naming + - added t2.py + - Updating var names to match field names + + * - Added new doc for T2 + - Updated model fo rT2 + - Added active parse function + + * - Added T3 schema defs + + * - Fixing most lint errors + + * - Updated T3 to multirow record + + * - Added unit test and data files + - updated field names + + * - Updating var names to conform to DB max var name length + + * - Updating based on unit test failure + + * - adding datafile + + * - Adding unit tests for t2 and t3 + + * - Fixed field types + - Updated test file + + * - Removing many migrations to consolodate into one migration + + * Revert "- Removing many migrations to consolodate into one migration" + + This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. + + * - Resolved test issues after merge + + * - Resolve lint errors + + * - Merged 1113.2 + + * - Removed unnecessary file + + * - Rename model fields + - Combined migrations + + * - fixed spelling in test + + * - Fixed lint errors + + * rm commented validators + + * - Updated schema newlines to be consistent + + * - Updated field names + - Updated tests + - Updated migration + + * - consolodating migrations + + * - Updated readme and backup script + + * - Updated parse logic to batch create records + + * - Fixed lint errors + + * - Batching record serialization + + * - Updated parse logic + + * - Adding big s1 datafile + + * - fixing lint errors + + * - Removing test to see if its causing weird failure + + * - Updating based on comments + - Removing big file since circi cant handle it + + * - fixing error in update method + + * - fixing error in update + + * - Removed extraneous seek + + * - updating ignore to ignore patch files + + * - Made evaluate_trailer pure/immutable + + * Revert "- Removing test to see if its causing weird failure" + + This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. + + * - Use custom transactions while parsing + - Handle transaction rollback on parse failure/error + - Update tests to use transaction logic + - Created new decorator to rollback database when assertion error is hit + - Making elastic search log level configurable + - Added test for inter parse rollback + + * - updated store logic to one liner + - updated decorator to catch all exceptions + - updated tests + + * - removed function + - renamed test + + * - refactored multirecord schema to be a schema manager instead + - updated parse functions to use the new layout + - updated bulk create to manage batch size + + * - Name update for clarity + + * - Fix lint errors + + * - Changing batch size to avoid crash in circi + + * - Updated based on review + - Updated tests to reflect line number + + * - Updated based on review/OH + - Added extra transaction safety + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated based on review comments + + * - Updated based on feedback for preparse error handling + - updated tests + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Moved datafile reference to avoid confusion + + * - Updating based on comments. + - Added base class to keep things a little more DRY + + * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. + + * - small optimization for the rollback + + * - Fix lint errors + + * - Removing commented code + + * - Installing build essentials + + * Revert "- Installing build essentials" + + This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. + + * - adding setup tools and wheel + + * Revert "- adding setup tools and wheel" + + This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. + + * - Updating dependencies to get around pep issue + + * - Pin factoryboy + - fix lint error + + * - Updating manifest + + * - Added EncryptedField class + - Updated schema's + - Updated datafiles since all are encrypted + + * - Fix lint errors + + * - Added decryption for ssp + + * - Making the encrypted check stronger + + * - Refactored fields and rowschema into seperate files + - Updated encrypted field to take decryption function + + * - fix lint errors + + * - Fix import error + + * - Removed erroneous update that was causing error + - Fixed whitespace in datafiles + + * - White space error + + * - Resolved error + + * - Refactored encryption logic to take the header encryption indicator into account + + * - Fix lint errors + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 2c030a9c3d542a08f3662f39e79ee34af74ed68d +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Jul 28 10:59:50 2023 -0400 + + 2598-staging-deployment-failure-issue (#2619) + + * disable migration and added timeout + + * added migrations to e2e pipeline + + * changed migration order + + * corrected directory + + * changed location of running commands for migration + + * reverted the migration back for checking the e2e + + * after waitfor + + * migration in docker-compose + + * rempved unused jobs + + * added -run back + + * check backend + + * added migration to docker-compose + + * testing + + * added populate stts + + * increased thetimeout + + * timeout + + * removed migration from Dockerfile + + * correction + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit aa10d876eb3ca0eb352e2b463064418eb8bb3a07 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Jul 26 07:13:02 2023 -0600 + + Feat/2486 - Parser Performance Improvement (#2548) + + * - ADding t2 schema + + * - small fixes to naming + - added t2.py + - Updating var names to match field names + + * - Added new doc for T2 + - Updated model fo rT2 + - Added active parse function + + * - Added T3 schema defs + + * - Fixing most lint errors + + * - Updated T3 to multirow record + + * - Added unit test and data files + - updated field names + + * - Updating var names to conform to DB max var name length + + * - Updating based on unit test failure + + * - adding datafile + + * - Adding unit tests for t2 and t3 + + * - Fixed field types + - Updated test file + + * - Removing many migrations to consolodate into one migration + + * Revert "- Removing many migrations to consolodate into one migration" + + This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. + + * - Resolved test issues after merge + + * - Resolve lint errors + + * - Merged 1113.2 + + * - Removed unnecessary file + + * - Rename model fields + - Combined migrations + + * - fixed spelling in test + + * - Fixed lint errors + + * rm commented validators + + * - Updated schema newlines to be consistent + + * - Updated field names + - Updated tests + - Updated migration + + * - consolodating migrations + + * - Updated readme and backup script + + * - Updated parse logic to batch create records + + * - Fixed lint errors + + * - Batching record serialization + + * - Updated parse logic + + * - Adding big s1 datafile + + * - fixing lint errors + + * - Removing test to see if its causing weird failure + + * - Updating based on comments + - Removing big file since circi cant handle it + + * - fixing error in update method + + * - fixing error in update + + * - Removed extraneous seek + + * - updating ignore to ignore patch files + + * - Made evaluate_trailer pure/immutable + + * Revert "- Removing test to see if its causing weird failure" + + This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. + + * - Use custom transactions while parsing + - Handle transaction rollback on parse failure/error + - Update tests to use transaction logic + - Created new decorator to rollback database when assertion error is hit + - Making elastic search log level configurable + - Added test for inter parse rollback + + * - updated store logic to one liner + - updated decorator to catch all exceptions + - updated tests + + * - removed function + - renamed test + + * - refactored multirecord schema to be a schema manager instead + - updated parse functions to use the new layout + - updated bulk create to manage batch size + + * - Name update for clarity + + * - Fix lint errors + + * - Changing batch size to avoid crash in circi + + * - Updated based on review + - Updated tests to reflect line number + + * - Updated based on review/OH + - Added extra transaction safety + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated based on review comments + + * - Updated based on feedback for preparse error handling + - updated tests + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Moved datafile reference to avoid confusion + + * - Updating based on comments. + - Added base class to keep things a little more DRY + + * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. + + * - small optimization for the rollback + + * - Fix lint errors + + * - Removing commented code + + * - Installing build essentials + + * Revert "- Installing build essentials" + + This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. + + * - adding setup tools and wheel + + * Revert "- adding setup tools and wheel" + + This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. + + * - Updating dependencies to get around pep issue + + * - Pin factoryboy + - fix lint error + + * - Updating manifest + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit d05a6fbf804f6f6e6a84dcc4b3023e0cf88bc439 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Jul 18 14:39:22 2023 -0600 + + 2579 latest data (#2607) + + * - Updated view to show latest datafiles + - Added admin filter to show newest or all datafile records + - Updated indices to allow easier elastic queries + + * - Updated search indices to have parent FK + + * - Fix lint errors + + * - Updated submission tests + - Moved create_datafile to util + + * - fix lint errors + + * - removing frontend filtering + + * - addding datafile to admin model + + * Revert "- addding datafile to admin model" + + This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. + + * - Fixed issue where datafile FK wasnt populating + - Regenerated migration + + * - Readding datafile back to admin view now that the error is resolved + + * - adding datafile back + + * Revert "- Readding datafile back to admin view now that the error is resolved" + + This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. + + * - Removed unnecessary fields + - Updated dependencies + - Updated filter + + * - Updated document to include required fields + + * - Moved datafile reference to avoid confusion + + * - Updating based on comments. + - Added base class to keep things a little more DRY + + * - Installing build essentials + + * Revert "- Installing build essentials" + + This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. + + * - adding setup tools and wheel + + * Revert "- adding setup tools and wheel" + + This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. + + * - Updating dependencies to get around pep issue + + * - Pin factoryboy + - fix lint error + + * - Added missing filter + +commit 8a01767865db9cad134879fb8c81e68080bc72e3 +Author: George Hudson +Date: Mon Jul 10 13:39:14 2023 -0600 + + setup can trigger by circleci for develop branch for nightly scans to… (#2610) + + * setup can trigger by circleci for develop branch for nightly scans to run now + + * quick test + + * removing hotfix branch from tracked branches after successful test + + --------- + + Co-authored-by: George Hudson + +commit 48734a9339a2ee02a06dd394e2953d7fc42631aa +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Mon Jul 10 06:54:17 2023 -0700 + + Create sprint-76-summary.md (#2609) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit e96e634e165ca1718f2c6da9252fb9acb085c803 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Mon Jul 10 06:43:09 2023 -0700 + + Create sprint-75-summary.md (#2608) + +commit ce4bcbe29fae9566e56059a3e2895fb97a081172 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Jul 5 09:52:35 2023 -0400 + + added URL filters (#2580) + + * added URL filters + + * allow github to trigger owasp and label deploys (#2601) + + Co-authored-by: George Hudson + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: George Hudson + +commit b4032ae9466f6289067cf6bfa8bd62005679ea45 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Jun 29 08:05:08 2023 -0700 + + Create sprint-74-summary.md (#2596) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 487adfc35e91ce3c0d62a6dc69acbdca32f198b7 +Author: George Hudson +Date: Thu Jun 29 08:54:40 2023 -0600 + + Hotfix Devops/2457 path filtering for documentation (#2597) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + * build and test all on PRs even for documentation + + --------- + + Co-authored-by: George Hudson + +commit ab0966005a875f1ccb2c007d6d905d570998a1a7 +Author: George Hudson +Date: Tue Jun 27 11:40:22 2023 -0600 + + pipeline filtering (#2538) + + * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. + + * updated syntax to be in line with build-all.yml + + * removed comma + + * WIP build flow docs + + * added Architecture Decision Record for the change to pipeline workflows + + * corrected file type of doc to .md + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit f7dcaf659ef58a99b51e8364bb67112d697a4709 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Fri Jun 23 14:24:42 2023 -0600 + + Item Number Mismatch (#2578) + + * - Updated schemas and models to reflect correct item numbers of fields + + * - Revert migration + + * - Updated header/trailer item numbers + + * - Fixed item numbers off by one errors + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 3e8521a123bad43f82c60e31b1186467a2aa384b +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu Jun 22 09:17:36 2023 -0600 + + Update cf os (#2523) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding new dependencies + + * - adding package + + * - fixing broken install + + * - fixing libs + + * - using correct command + + * - gettign correct version of libc + + * - trying to upgrade libs + + * - testing + + * - Updated README and script + + * Revert "- Updated README and script" + + This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. + + * - Removed unnecessary circi stuff + - Removed script + - Updated docs to callout updating secondary apps + + * - Correct spelling error + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 8918f5f23b62b5ebc188809c70d00b0e59dd53d3 +Merge: e4e467366 8ec31f908 +Author: Miles Reiter +Date: Wed Jun 21 14:39:10 2023 -0400 + + Merge pull request #2581 from raft-tech/synthesis-spring-2023 + + Research Synthesis — CSV & Excel Errors Research + +commit 8ec31f908e65b00bba51587e2eeb0d08c73ea8b3 +Merge: 86aac70fd e4e467366 +Author: Miles Reiter +Date: Wed Jun 21 14:28:50 2023 -0400 + + Merge branch 'develop' into synthesis-spring-2023 + +commit e4e4673668a3c2470bf55eae339ed38838873586 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Jun 21 12:16:21 2023 -0600 + + User viewset not returning/duplicating users (#2573) + + * - Fixed issue not allowing pagination to work locally with nginx + - Added ordering to user field to fix duplicates issue + + * - fix lint error + + * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit d841fb3b57ab7a57e8830cd82d67c32e2318c4e8 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 21 13:54:57 2023 -0400 + + Updating deliverable links (#2584) + +commit 86aac70fd58b2af5c6e22b33adbe8e2d7bc64a94 +Author: Miles Reiter +Date: Wed Jun 21 12:13:39 2023 -0400 + + Update README.md + +commit 007e800b819135f419daf8ae47f83964a1727a85 +Author: Miles Reiter +Date: Wed Jun 21 02:30:38 2023 -0400 + + Create 2023, Spring - Testing CSV & Excel-based error reports.md + +commit 7d5f5c8369c2f2acc227679fbc6731d3e1e99fd6 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jun 20 10:05:42 2023 -0400 + + Update README.md (#2577) + + Add ATO + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 21f81e02110c76eaed38c19185e3905d80d0fd5c +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue Jun 20 07:55:04 2023 -0600 + + 2550 deactivation email link (#2557) + + * - updated nginx buildpack + + * - specifying different nginx version + + * - Updating changelog + + * - added script to update certain apps in cf + - added workflow for each environment in circi + + * - fixed base config + + * - fixing jobs + + * - Updated based on feedback in OH + + * - Updating defaults + + * - Removing defaults + + * - Fixing indent + + * - Adding params to config + + * test + + * test + + * - updating work dir + + * - Adding checkout + + * - adding cf check + + * - logging into cf + + * - update cf check to install required binary + + * - removing unnecessary switch + + * - Forcing plugin installation + + * - test installing plugin from script also + + * - Adding url to email + + * - test code for sandbox + + * - using my email + + * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" + + This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing + changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- using my email" + + This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. + + * Revert "- test code for sandbox" + + This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 485211ec0e6f0e629694b52a017e12054b185ec1 +Merge: 6b1ac8d05 0eec2a015 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Jun 16 14:54:25 2023 -0400 + + Merge pull request #2514 from raft-tech/fix/cypress-admin-url + + add adminUrl to deployment cypress overrides + +commit 0eec2a01565f5c592092d3603c3b9fd63a60d175 +Merge: d9c03b9a7 6b1ac8d05 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Jun 16 14:43:40 2023 -0400 + + Merge branch 'develop' into fix/cypress-admin-url + +commit 6b1ac8d05f475135a2ffaa0438f9c07d3ea6bd37 +Merge: eaeb470dc facda40bb +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Jun 16 14:17:28 2023 -0400 + + Merge pull request #2504 from raft-tech/feature/1610-parser-error-generator + + 1610.1 parser error generator + +commit facda40bb2b24582d541c577fac6d8db4ac07776 +Author: Jan Timpe +Date: Mon Jun 12 11:53:31 2023 -0400 + + rm comments + +commit 7179be06ef6eac2127680d9f0db00eda07a8cc2b +Author: Jan Timpe +Date: Mon Jun 12 09:37:24 2023 -0400 + + accidentally included coding challenge + +commit 831aceda7b5349ba84491340ce41dc8d77b8adcb +Author: Jan Timpe +Date: Mon Jun 12 09:29:41 2023 -0400 + + updating validation error language + +commit 71bdaf2e267faec2e3a24cef63f4bb1cf4bb7637 +Merge: f44197b8e eaeb470dc +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Jun 12 08:59:16 2023 -0400 + + Merge branch 'develop' into feature/1610-parser-error-generator + +commit eaeb470dca7739e5fba6cba59ade7332000479ca +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Jun 8 11:09:07 2023 -0400 + + hotfix for large file sizes (#2542) + + * hotfix for large file sizes + + * apply timeouts/req limits to dev + + * filter identity pages from scan + + * IGNORE sql injection + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: mo sohani + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 08003b566a6555ead28eb8d070b34d50c07e10de +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Jun 8 07:30:21 2023 -0700 + + Create sprint-73-summary.md (#2565) + +commit f44197b8e6b2bca8f27ce1cd3c461e98c12458af +Merge: ad9c62bcf 238e85e6c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 7 11:05:48 2023 -0400 + + Merge branch 'develop' into feature/1610-parser-error-generator + +commit 238e85e6cf778e845b56641a62c059ea50236d3e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jun 2 13:43:27 2023 -0400 + + Adding "beta" banners to relevant error report sections (#2522) + + * Update views.py + + * Update views.py + + * Update SubmissionHistory.jsx + + * Update SubmissionHistory.test.js + + * Apply suggestions from code review + + Co-authored-by: Miles Reiter + + * lint fixes + + --------- + + Co-authored-by: Miles Reiter + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: andrew-jameson + +commit ad9c62bcfbabd6d9217a9967ccd9e1bc7d79aa1f +Merge: 23412a888 914ee3b6a +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Jun 1 12:48:16 2023 -0400 + + Merge branch 'develop' into feature/1610-parser-error-generator + +commit 23412a888b9f6f013652da1803f4a31eecc7d573 +Author: Jan Timpe +Date: Thu Jun 1 12:34:57 2023 -0400 + + unused import + +commit 41053de5e20bd4185db991f4231abfcaf76aba6e +Author: Jan Timpe +Date: Thu Jun 1 12:28:49 2023 -0400 + + change record 'id' to uuid field with auto-gen default + +commit 914ee3b6a2fb852774108325798715f6c457f6e7 +Merge: 987fba8bd bd9e9c078 +Author: Miles Reiter +Date: Thu May 25 19:18:40 2023 -0400 + + Merge pull request #2541 from raft-tech/may-knowledge-center-additons + + May Knowledge Center Enhancements + +commit ee795dbc783f95c5f16c4562e649562fd699c049 +Author: Jan Timpe +Date: Thu May 25 17:15:55 2023 -0400 + + rm accidental addition + +commit 12e03f13c0c3273e56df53c1e62f9411b4cc691b +Author: Jan Timpe +Date: Thu May 25 17:14:01 2023 -0400 + + fix big_file test with new required errors + +commit 9b91a7a47612e44fdcb8e8e617df89fe7a799c6a +Author: Jan Timpe +Date: Thu May 25 16:43:58 2023 -0400 + + fix missing errors on required fields if no other validators + +commit bd9e9c078057b09001efbc3b6d57838303617863 +Author: Miles Reiter +Date: Thu May 25 15:05:37 2023 -0400 + + Copies over KC additions from Test + +commit 96bf6c6dff0ac8505bb0b91808b7dc2288ab5d70 +Merge: 2f9c568db 987fba8bd +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu May 25 14:43:36 2023 -0400 + + Merge branch 'develop' into feature/1610-parser-error-generator + +commit 2f9c568db31e24a7577a1167ba359ca7559f1ef5 +Author: Jan Timpe +Date: Thu May 25 14:29:27 2023 -0400 + + fix test + +commit a6ee4c18e2d44eec5397d93e8bb31db8c7cee7da +Author: Jan Timpe +Date: Thu May 25 14:14:25 2023 -0400 + + add item numbers to t2/t3 schema + +commit c4fa931108fed25ef2b1b18544d7095917688e23 +Author: Jan Timpe +Date: Thu May 25 13:59:50 2023 -0400 + + resolve conflicts + +commit 987fba8bd99c5aa3ea8893003917120c9899d5b4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 25 13:56:56 2023 -0400 + + 2531 - Fix for large filesize failures/timeout (#2532) + + * bumping size for quick test + + * updating timeouts to Mo's tested version + + --------- + + Co-authored-by: andrew-jameson + +commit 0a347db1f99cff17d7126860aa8f8690b1edc69f +Merge: 89a85425b e4bf0f4fe +Author: Jan Timpe +Date: Thu May 25 13:51:08 2023 -0400 + + Merge branch 'develop' into feature/1610-parser-error-generator + +commit e4bf0f4feb4918c220265187ab8630696a2aa83a +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu May 25 11:38:20 2023 -0600 + + 2424 ts1 parsing (#2511) + + * lift and shift search_indexes.parsers to parsers + + * lint + + * add helper methods to RowSchema and Field classes + + * add generic validator functions + + * create new header/trailer schema using RowSchema + + * create generic parse function for all schemas + + * add validator test, update docstrings + + * fix some tests + + * remove old preparser impl + + * fix parse section, blanks + + * rm comments + + * update parser task call + + * only save if record exists + + * add t1 schema + + * reduce parse_datafile complexity + + * improve schema mismatch handling + + * update tests with schema errors + + * rm extra header/trailer check + + * add count to big file test + + * add values assertions to small_correct + + * update comments + + * move get_schema_options_call + + * rename validate_document to be more descriptive + + * add new startswith validator + + * use startsWith in header/trailer preparsing validation + + * internal method naming + + * move trailer parse/validation out of preparsing + + * preparse trailer, but skip trailer pre-validation + + * ignore trailer parsing errors in preparse + + * misspelling + + * move models, documents, and admin to modular structure + + * fix tests + + * docstrings + + * fix program type mismatch + + * extra test + + * improve import structure + + * rm comments + + * update search indexes + + * add ssp m1/m2/m3 model, documents to search_indexes + + * add admin + + * add multirecord parsing + + * add notEmpty validator + + * ssp section 1 schema + + * ssp section 1 tests + + * - ADding t2 schema + + * - small fixes to naming + - added t2.py + - Updating var names to match field names + + * fix test + + * fix lint + broken tests + + * lint + + * - Added new doc for T2 + - Updated model fo rT2 + - Added active parse function + + * - Added T3 schema defs + + * - Fixing most lint errors + + * fix admin + + * - Updated T3 to multirow record + + * - Added unit test and data files + - updated field names + + * - Updating var names to conform to DB max var name length + + * - Updating based on unit test failure + + * - adding datafile + + * - Adding unit tests for t2 and t3 + + * - Fixed field types + - Updated test file + + * - Removing many migrations to consolodate into one migration + + * Revert "- Removing many migrations to consolodate into one migration" + + This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. + + * - Resolved test issues after merge + + * - Resolve lint errors + + * linter fixes + + * - Merged 1113.2 + + * rm commented schema fields + + * - Removed unnecessary file + + * - Rename model fields + - Combined migrations + + * - fixed spelling in test + + * - Fixed lint errors + + * rm commented field + + * rename `n` to `record_number` + + * fix formatting + + * rm commented validators + + * - Updated schema newlines to be consistent + + * - Updated field names + - Updated tests + - Updated migration + + * - consolodating migrations + + * - Updated readme and backup script + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit ef12493be532f3c1207f5619a1519d6adb0a0573 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Thu May 25 11:23:53 2023 -0600 + + - Fixed issue not allowing multipart requests (#2539) + +commit 9717fd21c9e4737bb2f952006f027e5cc28e0c77 +Author: George Hudson +Date: Wed May 24 07:29:52 2023 -0600 + + pulled out all filtering (#2534) + + Co-authored-by: George Hudson + +commit 8fe5d9414d72afb94cb5841fb05a3264aced47e6 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue May 23 08:08:14 2023 -0600 + + 2505 cron bug (#2525) + + * - updating cron + + * - running at midnigt est + + * - Updated cron times to correct times. Had EDT instead of EST + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 74a8b397b773c09441445b19a6a06bb6b355003f +Author: George Hudson +Date: Tue May 23 07:53:09 2023 -0600 + + using ref_name for simplified branch name (#2530) + + * using ref_name for simplified branch name + + * pass branch name to CircleCI for PRs + + * removed whitespace + + --------- + + Co-authored-by: George Hudson + +commit 89a85425b7e826d13eec15ccac3fe6437a87f7e0 +Author: Jan Timpe +Date: Thu May 18 10:04:46 2023 -0400 + + fix lint + +commit a55f175a33acf6242f7574bb07ef801666282e6e +Merge: 7912a67ef 3a3a8974e +Author: Jan Timpe +Date: Thu May 18 09:56:52 2023 -0400 + + Merge branch 'develop' into feature/1610-parser-error-generator + +commit 7912a67ef84e0a69a5fbe278114aa1571eeab3c9 +Author: Jan Timpe +Date: Thu May 18 09:45:01 2023 -0400 + + rm commented lines + +commit b6009dd11c6fa6e1c59bdc00acfca520531dfe4f +Author: Jan Timpe +Date: Thu May 18 09:41:20 2023 -0400 + + update ParserError fields + +commit 3a3a8974e5e5623c709b12d9ecf8e1b22d16e24a +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed May 17 11:04:34 2023 -0400 + + disable SQLinjection scan (#2515) + + * disable SQLinjection scan + + * ignoring SQL injection scan + + * Update zap-hook.py + + * Update zap.conf + + Changed SQL INJECTION scan from IGNORE to WARN + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit ac4e3bb1e76e6dabdc46604a620803d5672731d7 +Author: George Hudson +Date: Wed May 17 08:34:48 2023 -0600 + + Devops/2457 ci path filtering (#2512) + + * WIP pulling apart pipeline flows to only run tests on changed folders + + * added parameters to config.yml that were already in base_config.yml + + * put 'when' keyword in the correct block + + * trying to get conditional syntax right' + + * trying to get conditional syntax right + + * moved attempted logic out of jobs and into workflows. + + * updated logic for when workflows should run and added utility and infrastructure to filters + + * fixed spacing on make_erd? + + * updated make_erd job to string since not passing parameters to map anymore + + * innocuous change to backend/ to test filtering + + * fixed spacing + + * fixed spacing + + * fixed spacing on make_erd, ignoreing main and master for front/backend only builds + + * fixed spacing on make_erd + + * fixed spacing on make_erd + + * changing backend file to test filtering + + * nest branches-ignore in push block + + * changing backend file to test filtering + + * trying different condition, 'not' doesn't seem to be working as expected + + * changing backend file to test filtering + + * still trying different conditionals for circleci for filtering on + + * still trying different conditionals for circleci for filtering on + + * changing backend file to test filtering + + * can't use negative filtering for circleci workflows, so adding in build_and_test_all variable + + * changing backend file to test filtering + + * changing frontend file to test filtering + + * changing terraform file to test filtering + + * removing innocuouschanges to files to test filtering, should trigger all three pipelines individually + + * updated documentation to include why we use Actions to trigger CircleCI builds + + * added more documentation, with better links + + * update all actions to use github.repository instead of hard coded Raft repo in order to work with HHS side as well + + * updated circleci logic for HHS side + + * throwing in branch to test circleci side branch filtration + + * made changes so we can test in hhs_dev_devops branch + + * made changes so we can test in hhs-dev-devops branch + + * removed test lines and added strings for consistency for PR + + * removed e2e from frontend only and backend only workflows and not tracking commands.sh for full build and tests. Fixed some spacing issues. + + * testing backend + + * testing frontend + + * testing both + + * added sychronize to retest after changes made to PR + + * small update to build-all docs + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit f332bbd8570ac52088c880e5e2747087aac89099 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed May 17 07:29:14 2023 -0600 + + Update API Viewsets (#2477) + + * - Updated serializers to include requested fields + - Updated views with a list mixin + + * - remove prints and comment custom filter + + * - making version read only + - re-enabling the view filtering for datafiles to avoid security concern + + * - re-ordered serializer fields to follow model order + - added property to datafile to get s3 path + + * - Updated expected test results based on new fields + + * - using response last login date since user doesnt have it + + * - Added new action for user viewset + - Updated url to support new action + - Updated tests + + * - Fixed linter errors + + * - Removing accidental inclusion of file + + * - moving back to standard url + - updated tests + + * - re-adding accidentally commented code + + * - updating var init with None + + * - committing work around with debug prints to not lose state + + * - remove list in favor of get query set + + * - Adding explicit object checking on the custom retrieve since it is not done by default on overriden retrieve methods + + * - adding doc string + + * - ADding extra admin filter + + * - Fixed remaining tests + + * - added missing field + + * - added missing comma from merge + + * - Added role based permission class + - Updated views to leverage roll based permission class + + * - Not allowing datafile submissions unless it is your user + + * - Disabling browseable api when in prod + + * - Adding test classes for user viewset + + * - Added remaining tests + + * - Resolved lint errors + + * - Resolved unit test failures + + * - Updating tests to conform to minimum requirements for a user to request access + + * - removed list action override + + * - Remove comment from testing + + * - Removed commented code + + * - Renamed fixture + - Updated tests + + * - Fixed merge error + + * - Updated permission to also require account approval as well as the role + - updated tests + - Not allowing GET on request_access + + * - fixed lint error + + * - Updated test to conform to new permission rules + - removed debug print statements + + * - not allowing GET on set_profile + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 854157a9e0728506e554effbda75b2a89c905ae3 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue May 16 15:08:00 2023 -0400 + + 1113.2 - ssp section 1 parsing (#2479) + + * lift and shift search_indexes.parsers to parsers + + * lint + + * add helper methods to RowSchema and Field classes + + * add generic validator functions + + * create new header/trailer schema using RowSchema + + * create generic parse function for all schemas + + * add validator test, update docstrings + + * fix some tests + + * remove old preparser impl + + * fix parse section, blanks + + * rm comments + + * update parser task call + + * only save if record exists + + * add t1 schema + + * reduce parse_datafile complexity + + * improve schema mismatch handling + + * update tests with schema errors + + * rm extra header/trailer check + + * add count to big file test + + * add values assertions to small_correct + + * update comments + + * move get_schema_options_call + + * rename validate_document to be more descriptive + + * add new startswith validator + + * use startsWith in header/trailer preparsing validation + + * internal method naming + + * move trailer parse/validation out of preparsing + + * preparse trailer, but skip trailer pre-validation + + * ignore trailer parsing errors in preparse + + * misspelling + + * move models, documents, and admin to modular structure + + * fix tests + + * docstrings + + * fix program type mismatch + + * extra test + + * improve import structure + + * rm comments + + * update search indexes + + * add ssp m1/m2/m3 model, documents to search_indexes + + * add admin + + * add multirecord parsing + + * add notEmpty validator + + * ssp section 1 schema + + * ssp section 1 tests + + * fix test + + * fix lint + broken tests + + * lint + + * fix admin + + * linter fixes + + * rm commented schema fields + + * rm commented field + + * rename `n` to `record_number` + + * fix formatting + + * rm commented validators + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 1199d8ade781c442de7de05ed15b30e798e94448 +Author: Jan Timpe +Date: Fri May 12 12:12:33 2023 -0400 + + add error file extension + +commit ece11645664a03455c5d7896eea60d87cc75ecd6 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu May 11 07:15:07 2023 -0700 + + Create sprint-72-summary.md (#2520) + + Sprint 72 summary + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit d3f0d1ca373da0812a08a3b46dd7425b70916e14 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu May 11 06:50:15 2023 -0700 + + Create sprint-71-summary.md (#2519) + + Sprint 71 summary + +commit 364568d124689e6487b6c64fa96ab1f81de3ab26 +Author: Jan Timpe +Date: Tue May 9 12:38:16 2023 -0400 + + fix docstring + +commit d9c03b9a71e3b14fba03db9b16ed4349ba5ac75b +Author: Jan Timpe +Date: Fri May 5 11:21:53 2023 -0400 + + add adminUrl to deployment cypress overrides + +commit 10de636853df0d137fe2f986af3f5806b3c4f6de +Merge: a6128f1ee f199cfcf7 +Author: Jan Timpe +Date: Fri May 5 11:02:27 2023 -0400 + + Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator + +commit f199cfcf71c3421e4344cfc347eb4e8afdf677a0 +Merge: e2ddd7ac9 7d7a6ea3b +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri May 5 10:48:10 2023 -0400 + + Merge branch 'develop' into feature/1113-2-ssp-section-1-parsing + +commit 7d7a6ea3b896b0c84642c17730cefbb7eba7390b +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri May 5 10:36:41 2023 -0400 + + 1113.1 - Add ssp m1/m2/m3 model, documents to search_indexes (#2478) + + * lift and shift search_indexes.parsers to parsers + + * lint + + * add helper methods to RowSchema and Field classes + + * add generic validator functions + + * create new header/trailer schema using RowSchema + + * create generic parse function for all schemas + + * add validator test, update docstrings + + * fix some tests + + * remove old preparser impl + + * fix parse section, blanks + + * rm comments + + * update parser task call + + * only save if record exists + + * add t1 schema + + * reduce parse_datafile complexity + + * improve schema mismatch handling + + * update tests with schema errors + + * rm extra header/trailer check + + * add count to big file test + + * add values assertions to small_correct + + * update comments + + * move get_schema_options_call + + * rename validate_document to be more descriptive + + * add new startswith validator + + * use startsWith in header/trailer preparsing validation + + * internal method naming + + * move trailer parse/validation out of preparsing + + * preparse trailer, but skip trailer pre-validation + + * ignore trailer parsing errors in preparse + + * misspelling + + * move models, documents, and admin to modular structure + + * fix tests + + * docstrings + + * fix program type mismatch + + * extra test + + * improve import structure + + * rm comments + + * update search indexes + + * add ssp m1/m2/m3 model, documents to search_indexes + + * add admin + + * fix lint + broken tests + + * lint + + * fix admin + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit a6128f1ee840fb9e9d6a1cbafc05c74a5b9732f4 +Author: Jan Timpe +Date: Fri May 5 09:20:32 2023 -0400 + + missed item num + +commit 649ee22d458b666712867f2dcecd62a88234b6f6 +Author: Jan Timpe +Date: Fri May 5 09:20:09 2023 -0400 + + fix conflict + +commit 197117d5fa56bbe82f938ff1e38a5c70dde8992a +Author: Jan Timpe +Date: Fri May 5 09:07:25 2023 -0400 + + fix conflicts + +commit 17a01c59ece32d377e7b71f1c02440c5e7ec89c4 +Merge: a31b32f9d e2ddd7ac9 +Author: Jan Timpe +Date: Fri May 5 08:35:37 2023 -0400 + + Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator + +commit e2ddd7ac9a96519a34123043942ba5893f74c73a +Merge: 1245db99c d20b4387a +Author: Jan Timpe +Date: Fri May 5 08:34:32 2023 -0400 + + Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing + +commit d20b4387a198fe7da85c48d2e7cbf176404baf9c +Merge: 39c82f41f 8d7a069bf +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri May 5 08:33:51 2023 -0400 + + Merge branch 'develop' into feature/1113-1-ssp-section-1-models + +commit 8d7a069bf0867273e12c7508215b8bf6863406bb +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 4 16:14:37 2023 -0400 + + Fixing link to tabletops, removing old process (#2502) + +commit e633006bad9d242160d282c8b2cd7993122684ff +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu May 4 15:57:34 2023 -0400 + + 1122 validation errors for file error report (#2469) + + * Logic added for new column + + * added file number to rows + + * file downloads + + * corrected multiple file downloads + + * download working + + * added tests + + * linting + + * corrected the filename + + * added meaningful tests for createXLSReport + + * linting + + * added flag to datafile api to show error available + + * added method to SubmissionHistory download error + + * linting + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 1245db99c8fa70fb8ef749f3eebf6ce0748e54ff +Author: Jan Timpe +Date: Thu May 4 11:47:19 2023 -0400 + + fix formatting + +commit 248e6173581c69ba6c1b6b0dcb55ea6891012c90 +Author: Jan Timpe +Date: Thu May 4 10:54:52 2023 -0400 + + rename `n` to `record_number` + +commit 015b4bb2ddabbef335d40e439c23480a6b62903c +Author: Jan Timpe +Date: Thu May 4 10:53:45 2023 -0400 + + rm commented field + +commit 2c1bcbb63b8ac7a874a96b21ab6f366eea282c33 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed May 3 12:27:56 2023 -0600 + + 1336 access request email (#2490) + + * - Added logic for admin emailing + + * - Added admin link to templatre + - Updated crontab for debugging + - hardcoding personal email for debugging + + * - Fix lint errors + - use work email + + * - Update to show when user has requested access + - Add sortable field in user view in admin page for the new field + + * - Fixing unit tests + + * - fixed url in email + + * - re-enabling ofa admin emails + - updated cronjob to run at 0100 everyday + + * - Updating based on review comments + + * - Updated model name where necessary + - Updated url to sort users based on most recent requests + + * - put crontab back to normal + + * - Updating tests + + * deleting migratiosn + + * - Recreated migration + + * - Updated based on review comments + + * - Updated based on review + - Consolodated migrations + + * - Updated tests + + * - Fixed issue causing cypress to fail + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit a31b32f9d2b6b0a582bca87db6487b5adaacbc33 +Merge: ab72bfc16 2f894515e +Author: Jan Timpe +Date: Tue May 2 16:36:55 2023 -0400 + + Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator + +commit 2f894515eff32abd5e5e1fdd8bc4d5c7d0709a42 +Author: Jan Timpe +Date: Tue May 2 16:35:55 2023 -0400 + + rm commented schema fields + +commit de8d450279415eecea7ddfbfed46b724d7c1abc9 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Tue May 2 13:07:23 2023 -0600 + + 2274 cypress user approval (#2470) + + * - initial commit for admin approving user + + * - Updated to support backend admin api requests + - Updating tests to approve a new user + + * - Updated steps to get cypress user approved + - Added 'Given' step to ensure the cypress user is always in the correct state at the start of a test + + * - Added request state + - adding missing fields to admin post request + + * - adding logic for user to request access + + * - Added env variables to minimize hardcoded config + - Added logic to approve user in request state + + * fix cypress csrf errors + + * - Cleaned up code + - Renamed common steps + + * - Updated circi job to create super user + - updated docs + - quick rename of common steps + - updated glob patterns for step file discovery + + * - Removing debug statement + + * - Fixed linting errors + + * - removing unnecessary logging message + + * - Added tests for denying and deactivating users + + * - increased the wait for the page lload to avoid accidental fails + - uncommented tests + + * - Added final test for last acount status state + + * - Renamed steps to keep consistency + - Updated indentation level to be 4 + + * - Made updates based on review feedback + + * refactor adminApiRequest + + * - Removing unnecessary function + - using adminApiRequest throughout + + * - Removing groups and region on reinit + + * - re-enabling all tests + + * - Update CI job to refresh cypress users on start + - Updated docs + - Added command to delete cypress users + - Updated feature file to consistently reference user by name instead of "the user" + - Made prints in Commands log statements + + * - Fixed lint errors + + * - small change to gherkin to make more readable + + * - removing e2e command + + * - Testing suggested update for nginx to pass the csrf token to django + + * - Adding referer policy + + * Revert "- Adding referer policy" + + This reverts commit 4b32007539e560799f0c0e6ce8e6ef75b8b80bcf. + + * Revert "- Testing suggested update for nginx to pass the csrf token to django" + + This reverts commit ca2349bddff52c7d5f6eb6c58a296984f27f0fc5. + + * - Testing nginx config to pass csrf token + + * - Updating urls for new nginx config + + * - Added longer wait for request submitted view + - Updated csrf header key + - Getting nginx to pass csrf header along with cookies + + --------- + + Co-authored-by: Eric + Co-authored-by: Jan Timpe + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 39c82f41fd22cc8184e3005bd4f0baa31590220b +Merge: eeac9269d ad8138812 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue May 2 13:27:31 2023 -0400 + + Merge branch 'develop' into feature/1113-1-ssp-section-1-models + +commit ab72bfc16a3cc8a83db0e83dfae8f8d5bc2a8a85 +Author: Jan Timpe +Date: Tue May 2 09:16:38 2023 -0400 + + impl ParserErrorCategoryChoices + +commit 220b5952c4444fdf5f4e2502d58d22464ca01fb1 +Author: Jan Timpe +Date: Tue May 2 09:02:56 2023 -0400 + + fix conflict + +commit 282d21a054f70fe416eff0a9e028293811a062e9 +Merge: 9d838f87c ab453e59f +Author: Jan Timpe +Date: Tue May 2 09:01:38 2023 -0400 + + Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator + +commit ab453e59fcce905d527919e29e5d8e1f547b5533 +Author: Jan Timpe +Date: Tue May 2 08:57:47 2023 -0400 + + linter fixes + +commit ad813881268197076ec487e4b8f308c02b6fd870 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon May 1 11:10:47 2023 -0400 + + 2498 nightly scan bug fix (#2506) + + * add both frontend and backend for nightly scan + + * added external-net to zap-scanner.sh + + * removeing ECHO statements + + * remove curl statement + + * remove space + + * corrected command.sh + + * changed error code for rate control in local Nginx + + * changed error code for rate control Nginx + + * change Nginx max file size to 50MB + + * add frontend to backend-owasp-scan + + * Update buildpack.nginx.conf + + * Update buildpack.nginx.conf + +commit 9d838f87c8f31d2b1a3377c3d010373cdc0b9f01 +Author: Jan Timpe +Date: Thu Apr 27 21:35:07 2023 -0400 + + extra blank + +commit 0c4585d9c348ef40457d952f6eed9526bf079c35 +Author: Jan Timpe +Date: Thu Apr 27 21:34:33 2023 -0400 + + rm unused + +commit a26fc55234f322926cd7ee2403fd40f9ba1c96d1 +Author: Jan Timpe +Date: Thu Apr 27 21:24:30 2023 -0400 + + fix linter errors + +commit 5d062babe6212c0dfc8678091b13c0041980b6e0 +Merge: 037b965b3 523c08c1d +Author: Jan Timpe +Date: Thu Apr 27 16:15:37 2023 -0400 + + Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator + +commit 523c08c1d2949b126134b1746d52c0a4689cf238 +Merge: 1d7cffa33 eeac9269d +Author: Jan Timpe +Date: Thu Apr 27 16:15:24 2023 -0400 + + Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing + +commit eeac9269d0719187a8b63b2df49b365a4c15fb0d +Merge: 118826291 4fcd37362 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Apr 27 16:14:37 2023 -0400 + + Merge branch 'develop' into feature/1113-1-ssp-section-1-models + +commit 4fcd37362b376970902603143809572d149653b9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Apr 27 15:31:40 2023 -0400 + + updating csv file columns after talking with ux (#2472) + + * updating csv file columns after talking with ux + + * Lost header writing + + * lint fix + + * updated factory for error-log + + * updating tests + + * Updating rpt_month_yr per PR feedback + + * Reverting case_number to text per Alex's PR feedback + + --------- + + Co-authored-by: Andrew Jameson + Co-authored-by: andrew-jameson + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 037b965b3df9cbb1a4f41266d046b1a34b1770c6 +Author: Jan Timpe +Date: Thu Apr 27 13:52:23 2023 -0400 + + update tests to utilize parser error + +commit dfc2a9972dda1a46b99d02d5c47d150f64bdffaa +Author: Jan Timpe +Date: Thu Apr 27 13:52:15 2023 -0400 + + generate parser error from parse_and_validate + +commit 5a85ba2e8f00b5d9191035c492ffb666c1a07eb5 +Author: Jan Timpe +Date: Thu Apr 27 13:51:56 2023 -0400 + + make parser error type choice field + +commit e55bc74a3f142c91ccd0ed34c194fbc6f5d09b07 +Author: Jan Timpe +Date: Thu Apr 27 13:51:11 2023 -0400 + + add err func to custom file validation + +commit 6772b8e6b774972eaadda679f1839b19f21fc98c +Author: Jan Timpe +Date: Wed Apr 26 14:22:12 2023 -0400 + + wip parser error generator + +commit 118826291741df49e685377f38579ad92eef3c2f +Merge: bfe6f1dc5 29647afd1 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Apr 26 12:00:20 2023 -0400 + + Merge branch 'develop' into feature/1113-1-ssp-section-1-models + +commit 29647afd13bff68bb1cd10b0264d3b9a783b4a99 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Apr 25 14:42:19 2023 -0400 + + 2498 - Bugfix: correct owasp scan script in commands.sh (#2500) + + * add both frontend and backend for nightly scan + + * added external-net to zap-scanner.sh + + * removeing ECHO statements + + * remove curl statement + + * remove space + + * corrected command.sh + +commit f5a2e3c71c1b5ce537832323d0d952bd1043cfb5 +Merge: 6304bffe1 bdf604af4 +Author: Miles Reiter +Date: Mon Apr 24 13:29:34 2023 -0400 + + Merge pull request #2499 from raft-tech/2344-research-synthesis + + #2344 Research Syntheses & Readme Update + +commit bdf604af416e1d4b375b59550d39f47f04f44d66 +Author: Diana Liang +Date: Mon Apr 24 12:19:30 2023 -0500 + + added 4 files back + +commit 1d7cffa335097f8a3d2a425ddf2d68f06ad2d8ed +Merge: 24ce14920 bfe6f1dc5 +Author: Jan Timpe +Date: Fri Apr 21 14:21:47 2023 -0400 + + Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing + +commit bfe6f1dc573dee329b93b44834f6dfe31df192d0 +Author: Jan Timpe +Date: Fri Apr 21 14:21:12 2023 -0400 + + fix admin + +commit 6304bffe116ff7940f09d670415144d33d247397 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Apr 21 14:12:02 2023 -0400 + + added develop to acf.hhs.gov domain in zap-scanner (#2496) + +commit 593c469b7d34505a732f3b64183c4d4ea4966c6c +Merge: 449b4ca0e b50967007 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Apr 20 09:49:37 2023 -0400 + + Merge branch 'develop' into feature/1113-1-ssp-section-1-models + +commit b509670073089a404260c7f194d33ca462f875bf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Apr 20 08:36:08 2023 -0400 + + Update TDP-environments-README.md (#2493) + + minor edits to the readme. + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 0736ec7dc58d4a87b65642a5aebc38d02ebd7baf +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Apr 20 08:22:51 2023 -0400 + + Fix/pipeline failures (#2492) + + * wait for backend before setting up e2e users + + * create external net before generate erd + + * fix command + + * cd + + * fix cmd + + * rm cmd breaks + + * update make_erd + +commit 1f54177fffe6a768c1084e6854cc5e83d36190e6 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 19 15:10:45 2023 -0400 + + correction or zap-scanner URLs (#2495) + +commit cd35c12f46e0808c494a1161bec6b9e5b6600dfd +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 19 11:22:28 2023 -0400 + + correction on backend URLs in README and add network policy for internal route (#2487) + + * corrected backend URLs in TDP-environment-README + + * added network policy command to deploy-backend script + + * removed backend zap scanner + + * added swagger to local Nginx + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 1bb82f4fbaf845889aeff5adbda83e62dde89bb7 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 19 09:48:24 2023 -0400 + + Filter users according to ipv6 geo locations (#2481) + + * Nginx changes to new branch + + * changes from original Nginx branch + + * commit requested review changes + + * corrected the commands.yml + + * resolved issue starting gunicorn + + * env var changes + + * added more locations for backend + + * revised tdp-environment arch drawings + + * corrected circleci backend deployment command + + * commented search index rebuild + + * updated login.gov location + + * re-added search index + + * removed python manage.py search_index + + * commented migrate in gunicorn_start.sh + + * add migrate command + + * default database to sqlite for testing + + * linting + + * default REDIS_URI to local + + * changed mem to 1G from 2G + + * Added resolver + + * added url endpoints to locations.conf + + * added domain changes to Nginx + + * linting + + * made changes to deploy branch to develop... must be reverted before merge + + * corrected deploy-backend + + * correct form action header + + * change CSP to * for backend pages + + * changed CSP to allow s3-us-gov-west-1 + + * corrected add_header + + * removed e2e for testing + + * removed sqlite + + * linting + + * allow all ipv6 + + * Update common.py + + * added env vars for cypress test + + * updated size of executor for e2e testing + + * overwrite env vars for test:e2e-ci in job.yml + + * correct env var injection + + * added login/cypress to Nginx.location + + * Corrected locations + + * test env vars + + * check if static urls work + + * corrected test-e2e-ci, have static URLs + + * Corrected cf cli url + + * revert package cf urls back + + * added external-net to owasp + + * Update commands.yml + + * added external-net script + + * linting + + * correction on commands + + * correction + + * Update commands.yml + + * linting + + * removed if statement + + * corrected the if statement + + * correction + + * correction + + * correction + + * correct networks for DNS resolve + + * Update docker-compose.yml + + * Update docker-compose.yml + + * increase timeout for zap-proxy + + * increase timeout + + * added step tp owasp + + * corrected tje owasp job + + * Update tdrs-frontend/nginx/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * changed file names, created ipv6 whitelist file + + * Update tdrs-frontend/nginx/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update workflows.yml + + * linting + + * Update deploy-develop-on-merge.yml + + * Update cloudgov.py + + * Delete .env. + + * Update user_role_management.md + + * separated ip_whitelist + + * Update ip_whitelist.conf + + * Update buildpack.nginx.conf + + * added whitelistfiles to deploy-frontent + + * Add IP6 allow to ip_whitelist_ipv6 + + * removed incorrect IP6 + + * corrected ip_v6 + + * changed frontend memory to 128M + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 24ce14920474f68b4824c85f303c65a9f6bf567e +Merge: a6d449126 449b4ca0e +Author: Jan Timpe +Date: Tue Apr 18 17:25:49 2023 -0400 + + Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing + +commit 449b4ca0e8dc122e67762a7e9f099b87223ec61f +Author: Jan Timpe +Date: Tue Apr 18 17:15:54 2023 -0400 + + lint + +commit 58b33db273601ae8c31fd961c473c4fd3d968b17 +Author: Jan Timpe +Date: Tue Apr 18 16:55:04 2023 -0400 + + fix lint + broken tests + +commit a6d449126cb22c23b1505df3118604a1b43d7511 +Author: Jan Timpe +Date: Tue Apr 18 16:52:46 2023 -0400 + + fix test + +commit b12d748536f98474b623989cf85a93336c58f1fa +Merge: 971d438e4 a7195f132 +Author: Jan Timpe +Date: Tue Apr 18 16:45:53 2023 -0400 + + Merge branch 'develop' into feature/1113-1-ssp-section-1-models + +commit a7195f132a6cab59f4e8b480f5f6dd97d887662c +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Apr 18 12:13:56 2023 -0400 + + 1113.0 - Chore/reorganize search indexes (#2475) + + * lift and shift search_indexes.parsers to parsers + + * lint + + * add helper methods to RowSchema and Field classes + + * add generic validator functions + + * create new header/trailer schema using RowSchema + + * create generic parse function for all schemas + + * add validator test, update docstrings + + * fix some tests + + * remove old preparser impl + + * fix parse section, blanks + + * rm comments + + * update parser task call + + * only save if record exists + + * add t1 schema + + * reduce parse_datafile complexity + + * improve schema mismatch handling + + * update tests with schema errors + + * rm extra header/trailer check + + * add count to big file test + + * add values assertions to small_correct + + * update comments + + * move get_schema_options_call + + * rename validate_document to be more descriptive + + * add new startswith validator + + * use startsWith in header/trailer preparsing validation + + * internal method naming + + * move trailer parse/validation out of preparsing + + * preparse trailer, but skip trailer pre-validation + + * ignore trailer parsing errors in preparse + + * misspelling + + * move models, documents, and admin to modular structure + + * fix tests + + * docstrings + + * fix program type mismatch + + * extra test + + * improve import structure + + * rm comments + + * update search indexes + +commit d0b095774220b8f9800d0df83c13b9971b09b409 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Apr 17 11:19:13 2023 -0400 + + split location in the user list so that stt/region can be sorted (#2483) + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 4e33cde9bde569e3a0005fda8367d9ec620d0a39 +Merge: 69f573248 971d438e4 +Author: Jan Timpe +Date: Fri Apr 14 09:07:07 2023 -0400 + + Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing + +commit 971d438e41f0f2ad069da077de54f07b59c6f90b +Merge: 055b422e7 2af8c1f4b +Author: Jan Timpe +Date: Fri Apr 14 09:06:44 2023 -0400 + + Merge branch 'chore/reorganize-search-indexes' into feature/1113-1-ssp-section-1-models + +commit 2af8c1f4b089bacf912c7d9c612a4ec460ae5300 +Merge: 805d316e5 c1eda7c24 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Apr 14 09:05:39 2023 -0400 + + Merge branch 'develop' into chore/reorganize-search-indexes + +commit c1eda7c24530b658cde21fb0c6db81db6202a94d +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Apr 12 12:18:24 2023 -0700 + + Create sprint-70-summary.md (#2484) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit d3dc3d368d075f5f670e0938d4d8778d2846a577 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 12 13:35:19 2023 -0400 + + 1544 nginx with domain (#2449) + + * Nginx changes to new branch + + * changes from original Nginx branch + + * commit requested review changes + + * corrected the commands.yml + + * resolved issue starting gunicorn + + * env var changes + + * added more locations for backend + + * revised tdp-environment arch drawings + + * corrected circleci backend deployment command + + * commented search index rebuild + + * updated login.gov location + + * re-added search index + + * removed python manage.py search_index + + * commented migrate in gunicorn_start.sh + + * add migrate command + + * default database to sqlite for testing + + * linting + + * default REDIS_URI to local + + * changed mem to 1G from 2G + + * Added resolver + + * added url endpoints to locations.conf + + * added domain changes to Nginx + + * linting + + * made changes to deploy branch to develop... must be reverted before merge + + * corrected deploy-backend + + * correct form action header + + * change CSP to * for backend pages + + * changed CSP to allow s3-us-gov-west-1 + + * corrected add_header + + * removed e2e for testing + + * removed sqlite + + * linting + + * allow all ipv6 + + * Update common.py + + * added env vars for cypress test + + * updated size of executor for e2e testing + + * overwrite env vars for test:e2e-ci in job.yml + + * correct env var injection + + * added login/cypress to Nginx.location + + * Corrected locations + + * test env vars + + * check if static urls work + + * corrected test-e2e-ci, have static URLs + + * Corrected cf cli url + + * revert package cf urls back + + * added external-net to owasp + + * Update commands.yml + + * added external-net script + + * linting + + * correction on commands + + * correction + + * Update commands.yml + + * linting + + * removed if statement + + * corrected the if statement + + * correction + + * correction + + * correction + + * correct networks for DNS resolve + + * Update docker-compose.yml + + * Update docker-compose.yml + + * increase timeout for zap-proxy + + * increase timeout + + * added step tp owasp + + * corrected tje owasp job + + * Update tdrs-frontend/nginx/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update tdrs-frontend/nginx/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update workflows.yml + + * linting + + * Update deploy-develop-on-merge.yml + + * Update cloudgov.py + + * Delete .env. + + * Update user_role_management.md + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 805d316e5a54b12b6ffae3f86ae58dcdc27b89c1 +Merge: 20c9abf9a 910315bf1 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Apr 12 10:01:16 2023 -0400 + + Merge branch 'develop' into chore/reorganize-search-indexes + +commit 910315bf1579f70a5eadd5fd11a4c9e129100174 +Author: George Hudson +Date: Tue Apr 11 13:42:08 2023 -0600 + + updated size of executor for e2e testing (#2480) + + * updated size of executor for e2e testing + + * renaming executor for generalized use + + --------- + + Co-authored-by: George Hudson + Co-authored-by: andrew-jameson + +commit 69f573248b6f8979bde054ffb7b60e1f2dce2735 +Author: Jan Timpe +Date: Mon Apr 10 14:49:14 2023 -0400 + + ssp section 1 tests + +commit 01a99093aff8dc3ef509777806f1499265793466 +Author: Jan Timpe +Date: Mon Apr 10 14:49:09 2023 -0400 + + ssp section 1 schema + +commit 7ae9019b02fd12d01a7b16824331b8def2c4f613 +Author: Jan Timpe +Date: Mon Apr 10 14:48:53 2023 -0400 + + add notEmpty validator + +commit fb68c5ba953d2b26cf67f6b4df1f629f75c8014b +Author: Jan Timpe +Date: Mon Apr 10 14:48:40 2023 -0400 + + add multirecord parsing + +commit 055b422e77464bc92f742bd2fc5cde83807486a1 +Author: Jan Timpe +Date: Mon Apr 10 14:46:54 2023 -0400 + + add admin + +commit fbed1464007519968826b3fc0a2069c8b6d02cf7 +Author: Jan Timpe +Date: Mon Apr 10 14:43:23 2023 -0400 + + add ssp m1/m2/m3 model, documents to search_indexes + +commit 20c9abf9a91ecf95f48677c1773698a1371211d9 +Author: Jan Timpe +Date: Mon Apr 10 14:41:43 2023 -0400 + + update search indexes + +commit 781438e4218be54923d6daaf8d7f243fcb9cbee8 +Author: Jan Timpe +Date: Mon Apr 10 10:45:41 2023 -0400 + + rm comments + +commit 9c24d7fabc156760c0fd801a856c368480610637 +Author: Jan Timpe +Date: Mon Apr 10 10:44:42 2023 -0400 + + improve import structure + +commit 08478b287445a7f2751f96e29347c6a889072460 +Author: Jan Timpe +Date: Fri Apr 7 14:02:36 2023 -0400 + + extra test + +commit a5042b536a7ca77e93830ed93f369e4113541e5f +Merge: 9b40c31a6 40895e273 +Author: Jan Timpe +Date: Fri Apr 7 13:25:11 2023 -0400 + + Merge branch 'develop' into chore/reorganize-search-indexes + +commit 40895e2733492c581d594897309e72f9fec245d6 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Apr 7 13:18:19 2023 -0400 + + 2408.3 - refactor tanf t1 parsing (#2464) + + * lift and shift search_indexes.parsers to parsers + + * lint + + * add helper methods to RowSchema and Field classes + + * add generic validator functions + + * create new header/trailer schema using RowSchema + + * create generic parse function for all schemas + + * add validator test, update docstrings + + * fix some tests + + * remove old preparser impl + + * fix parse section, blanks + + * rm comments + + * update parser task call + + * only save if record exists + + * add t1 schema + + * reduce parse_datafile complexity + + * improve schema mismatch handling + + * update tests with schema errors + + * rm extra header/trailer check + + * add count to big file test + + * add values assertions to small_correct + + * update comments + + * move get_schema_options_call + + * rename validate_document to be more descriptive + + * add new startswith validator + + * use startsWith in header/trailer preparsing validation + + * internal method naming + + * move trailer parse/validation out of preparsing + + * preparse trailer, but skip trailer pre-validation + + * ignore trailer parsing errors in preparse + + * misspelling + + * fix tests + + * fix program type mismatch + +commit 9b40c31a6d80ab68fcfe1db3c4346ab670a04621 +Merge: f324ba64f ac28b063c +Author: Jan Timpe +Date: Fri Apr 7 10:41:51 2023 -0400 + + Merge branch 'chore/refactor-tanf-t1-parsing' into chore/reorganize-search-indexes + +commit ac28b063c8af41dc3c6f1a575151465beb698c75 +Author: Jan Timpe +Date: Fri Apr 7 10:40:02 2023 -0400 + + fix program type mismatch + +commit 6a67cafcb0a06c7f84b8431f6572bfa77d134830 +Merge: 496d6f4f5 cc6e998c5 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Apr 6 13:48:12 2023 -0400 + + Merge branch 'develop' into chore/refactor-tanf-t1-parsing + +commit cc6e998c5775fe896a60110bf1b4df599b1afc0a +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Wed Apr 5 13:26:38 2023 -0600 + + Filter Users by STT/Region (#2476) + + * - adding comma + + * - Adding missing fixes from the botched revert + +commit f324ba64f1ec67591ebf0e01b06722fb4100e3a5 +Author: Jan Timpe +Date: Tue Apr 4 17:34:31 2023 -0400 + + docstrings + +commit 3823d3df65d0ad76c894fc9e8a07a5d0c5ca1e70 +Merge: fb2c3f0db 496d6f4f5 +Author: Jan Timpe +Date: Tue Apr 4 17:21:10 2023 -0400 + + Merge branch 'chore/refactor-tanf-t1-parsing' into chore/reorganize-search-indexes + +commit 496d6f4f530f7a74be8432f368e5288b36e317de +Author: Jan Timpe +Date: Tue Apr 4 17:20:44 2023 -0400 + + fix tests + +commit fb2c3f0db0e2adb7e44cb1f7201bc677355ac265 +Merge: 0569540cf 88799d191 +Author: Jan Timpe +Date: Tue Apr 4 17:16:17 2023 -0400 + + Merge branch 'chore/refactor-tanf-t1-parsing' into chore/reorganize-search-indexes + +commit 88799d191be413cd12210debf352280b32b02602 +Merge: d81199c11 223e5f115 +Author: Jan Timpe +Date: Tue Apr 4 16:54:04 2023 -0400 + + Merge branch 'develop' into chore/refactor-tanf-t1-parsing + +commit d81199c113a6315ddcf82b67ad52d192d1ad685c +Merge: f5aaff3f5 2f014f71b +Author: Jan Timpe +Date: Tue Apr 4 16:51:47 2023 -0400 + + Merge branch 'chore/2408-update-schema' into chore/refactor-tanf-t1-parsing + +commit 223e5f115fa304cfd534790adae18a65c10793ec +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Apr 4 13:50:46 2023 -0400 + + 2408.2 - refactor preparser (#2462) + + * lift and shift search_indexes.parsers to parsers + + * lint + + * add helper methods to RowSchema and Field classes + + * add generic validator functions + + * create new header/trailer schema using RowSchema + + * create generic parse function for all schemas + + * add validator test, update docstrings + + * fix some tests + + * remove old preparser impl + + * fix parse section, blanks + + * rm comments + + * update parser task call + + * only save if record exists + + * reduce parse_datafile complexity + + * improve schema mismatch handling + + * update comments + + * move get_schema_options_call + + * rename validate_document to be more descriptive + + * add new startswith validator + + * use startsWith in header/trailer preparsing validation + + * internal method naming + + * move trailer parse/validation out of preparsing + + * preparse trailer, but skip trailer pre-validation + + * ignore trailer parsing errors in preparse + + * misspelling + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 41a7c1731c4c6a4577edb556bc2cc153966f8cd4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Apr 4 10:55:59 2023 -0400 + + Revert "Filter User by STT/Region" (#2474) + +commit a12753a07529eb4cd9513b4f4d3431351d28bf77 +Merge: 49c4a6bb2 dff51e8c6 +Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> +Date: Mon Apr 3 16:04:32 2023 -0600 + + Merge pull request #2471 from raft-tech/2415-filter-user-by-stt + + Filter User by STT/Region + +commit 0569540cf1a36eb0da0714877c027003a45048d8 +Author: Jan Timpe +Date: Mon Apr 3 16:26:21 2023 -0400 + + move models, documents, and admin to modular structure + +commit dff51e8c6114228e9aae5bcde99ecd12640e0acd +Merge: dcf3dd507 49c4a6bb2 +Author: elipe17 +Date: Mon Apr 3 13:42:48 2023 -0600 + + Merge branch 'develop' into 2415-filter-user-by-stt + +commit 49c4a6bb2430e65b8b8e481355d00e16d47c03e9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Apr 3 13:04:40 2023 -0400 + + Update CloudFoundry-DB-Connection.md (#2467) + +commit dcf7b5fd91c3462be5d2fbd2aa01ea7345b2240f +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Mon Apr 3 09:25:32 2023 -0700 + + Create sprint-69-summary.md (#2468) + +commit dcf3dd507dfc2ad03b0335d52e0b7e11bbb53344 +Author: elipe17 +Date: Mon Apr 3 09:56:05 2023 -0600 + + - Updating based on review feedback + +commit 0e0ac7a3a40b2956cb7173705da1d803f36e986f +Author: elipe17 +Date: Mon Apr 3 09:49:57 2023 -0600 + + - adding stt to stt_user + +commit e04c4023062127f3abe0db6c7de74b49218229d8 +Author: elipe17 +Date: Mon Apr 3 09:39:12 2023 -0600 + + - Using pytest fixtures + +commit 6674b8add8345e451544418c7052eebfcd69593a +Author: elipe17 +Date: Mon Apr 3 09:38:30 2023 -0600 + + Revert "- fixing test to use pytest fixtures" + + This reverts commit 335b0b28f144cbd01f5c46156d458d6a4dc21b40. + +commit 335b0b28f144cbd01f5c46156d458d6a4dc21b40 +Author: elipe17 +Date: Mon Apr 3 09:37:54 2023 -0600 + + - fixing test to use pytest fixtures + +commit 18485da256e3e7dbd614d1c72df385b74a79a7aa +Author: elipe17 +Date: Mon Apr 3 09:21:09 2023 -0600 + + - Adding test for new user property + +commit a2bbc7f750043aa005d35b2585a01688ab9ff3b8 +Author: elipe17 +Date: Mon Apr 3 08:43:14 2023 -0600 + + - fixed lint errors + +commit f852d10e4e2760cbc0f5fc64176177719dd1aaf8 +Author: elipe17 +Date: Mon Apr 3 08:35:10 2023 -0600 + + - Added property to display the region or stt in user view + - Added the region as a filter option + +commit 7091b9f94b54f1d2a5cc54066a4966734d8cc6ee +Author: elipe17 +Date: Mon Apr 3 07:32:58 2023 -0600 + + - Added stt/approval status to table view + +commit 2f014f71b78f9c90063816f9038d4cd3c777cf2e +Author: Jan Timpe +Date: Fri Mar 31 14:19:06 2023 -0400 + + misspelling + +commit 5d37e9b6a5563796bfff23d53771b5e03c05edeb +Author: elipe17 +Date: Fri Mar 31 11:35:44 2023 -0600 + + - Adding 'stt' as a filtering option for users + +commit 6fa315b6cee1ccb6046ea200df39f12b389079cb +Author: Jan Timpe +Date: Fri Mar 31 08:52:29 2023 -0400 + + ignore trailer parsing errors in preparse + +commit 1a1a4ba2aa1ba792ee6e31b50d8b956ed9a2ffa8 +Author: Jan Timpe +Date: Wed Mar 29 13:00:20 2023 -0400 + + preparse trailer, but skip trailer pre-validation + +commit 7fe5a4e193e97ae9deb7e608fd0c395cda8fbc4c +Author: Jan Timpe +Date: Wed Mar 29 12:34:49 2023 -0400 + + move trailer parse/validation out of preparsing + +commit f602f83de7edea491a02c42ba38c1de30db6105a +Author: Jan Timpe +Date: Wed Mar 29 08:47:52 2023 -0400 + + internal method naming + +commit 3323c70954beea25e69b8648674512b8ec4fc89a +Author: Jan Timpe +Date: Tue Mar 28 12:27:09 2023 -0400 + + use startsWith in header/trailer preparsing validation + +commit 4ab5e3795de09956e6b81e97d7cb343ecb80e92c +Author: Jan Timpe +Date: Tue Mar 28 12:26:00 2023 -0400 + + add new startswith validator + +commit e2732fc6794467929f302cb56857a9f92a61f4db +Author: Jan Timpe +Date: Tue Mar 28 10:16:22 2023 -0400 + + rename validate_document to be more descriptive + +commit 5e71eced7dd9a40dc025246f553169e6359f741c +Author: Jan Timpe +Date: Tue Mar 28 10:11:49 2023 -0400 + + move get_schema_options_call + +commit 98617c538f804eaa35a8c3ff8fcd0a6cafec1672 +Merge: f8d4b9394 65a5abc8b +Author: Jan Timpe +Date: Mon Mar 27 15:53:41 2023 -0400 + + Merge branch 'develop' into chore/2408-update-schema + +commit 65a5abc8b55ad4cdf49244edbe08eeeb3ffd9ea7 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Mar 27 11:33:00 2023 -0400 + + Update states.csv (#2463) + + NV is trying to submit SSP data via TDP and cant because STT metadata incorrect. + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 8ac46cba1dfa4b9105f386fd2ffb1c6a529c9bae +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Mon Mar 27 11:03:07 2023 -0400 + + 2408.1 - lift and shift search_indexes.parsers to parsers (#2456) + + * lift and shift search_indexes.parsers to parsers + + * lint + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 71010c7a314cc56ae6cd9850e5993e6ce29eaf2f +Merge: 438c6ca2f aa2e0d818 +Author: Miles Reiter +Date: Fri Mar 24 16:32:45 2023 -0400 + + Merge pull request #2459 from raft-tech/knowledge-center-faq-march + + March Knowledge Center Updates + +commit aa2e0d8184e8f1481e4bb3a80369b715e7094b93 +Author: Miles Reiter +Date: Fri Mar 24 15:51:40 2023 -0400 + + Update faq.html + +commit f5aaff3f5b84bc8bd5fc333c1518726387686f11 +Merge: 151fe1728 f8d4b9394 +Author: Jan Timpe +Date: Fri Mar 24 13:04:39 2023 -0400 + + Merge branch 'chore/2408-refactor-preparsing' into chore/refactor-tanf-t1-parsing + +commit f8d4b9394adad4e15b81162faa01d180221f46d4 +Author: Jan Timpe +Date: Fri Mar 24 13:04:13 2023 -0400 + + update comments + +commit 151fe172802efda662e53d054e78e09a80cf1286 +Author: Jan Timpe +Date: Fri Mar 24 08:48:32 2023 -0400 + + add values assertions to small_correct + +commit 0f9082afd65b1ee253b034f1615e699afac4966c +Author: Jan Timpe +Date: Fri Mar 24 08:32:09 2023 -0400 + + add count to big file test + +commit 1d01d1e347e89a30817cdb68a2b8c19e63167f19 +Author: Jan Timpe +Date: Fri Mar 24 08:31:39 2023 -0400 + + rm extra header/trailer check + +commit 173baa4ef100cf4d16a4fce98962f4a7cb91741c +Author: Miles Reiter +Date: Thu Mar 23 18:21:46 2023 -0400 + + Update faq.html + +commit 1f36dd1620e5cd15562cc05915d41e29016b10ea +Merge: 443c51b1c 438c6ca2f +Author: Miles Reiter +Date: Thu Mar 23 16:14:53 2023 -0400 + + Merge branch 'develop' into knowledge-center-faq-march + +commit 438c6ca2f8289b01a115c42f928ebbcf9a9e7403 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Mar 23 15:33:10 2023 -0400 + + Fix/2443 admin link in sitemap (#2450) + + * remove old approval/role checks in favor of selectors + + * update tests + + * rm code comment + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 0d7126780a0a50c6301e11e0a3dc176b40881290 +Author: Jan Timpe +Date: Thu Mar 23 10:59:49 2023 -0400 + + update tests with schema errors + +commit 95183a27afd6659d2f76e46dc2570e46c3fa7c99 +Merge: 6f4d31c7b 56dba8e99 +Author: Jan Timpe +Date: Thu Mar 23 10:37:09 2023 -0400 + + Merge branch 'chore/2408-refactor-preparsing' into chore/refactor-tanf-t1-parsing + +commit 56dba8e994f9632261b97ad6f0f124d61fbd4055 +Author: Jan Timpe +Date: Thu Mar 23 10:35:21 2023 -0400 + + improve schema mismatch handling + +commit 24308768b7a4d4b1a4335c2fda15eaad4b80d275 +Author: Jan Timpe +Date: Thu Mar 23 09:25:46 2023 -0400 + + reduce parse_datafile complexity + +commit 6f4d31c7b9ed63ddf4cc866267ee2308f9b5f683 +Author: Jan Timpe +Date: Thu Mar 23 08:44:33 2023 -0400 + + add t1 schema + +commit 5d1531d81f14f35218b680e7f354ca8fc0a917ca +Author: Jan Timpe +Date: Thu Mar 23 08:44:08 2023 -0400 + + only save if record exists + +commit ecf760ad6a4712cdcd32a876904fb325439c2d00 +Author: Jan Timpe +Date: Thu Mar 23 08:42:42 2023 -0400 + + update parser task call + +commit 443c51b1c9e014e5a6e68f10731207c0fad25901 +Author: Miles Reiter +Date: Thu Mar 23 01:44:23 2023 -0400 + + Update product-updates/knowledge-center/index.html + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit d1bd670c0d3f11fdd3ee4192ca508f8e92d7d340 +Author: Miles Reiter +Date: Thu Mar 23 01:44:14 2023 -0400 + + Update product-updates/knowledge-center/faq.html + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 2f7fd04125e62cc61e118d3a2fe8077e27190c32 +Author: Jan Timpe +Date: Wed Mar 22 14:29:08 2023 -0400 + + rm comments + +commit 0a0f7597c5790b07b7b2548c5fcc18f4a409f1e2 +Author: Jan Timpe +Date: Wed Mar 22 12:04:55 2023 -0400 + + fix parse section, blanks + +commit 30132350c8f33d51ad1b4ff58bfbd176c4bf411b +Author: Jan Timpe +Date: Wed Mar 22 11:16:46 2023 -0400 + + remove old preparser impl + +commit a1342dbe211961ffa7889b76c4925a155724b279 +Author: Jan Timpe +Date: Wed Mar 22 11:16:34 2023 -0400 + + fix some tests + +commit 0b89f5dc0f62bbf072a1ddad3811ab120b710f15 +Author: Jan Timpe +Date: Wed Mar 22 09:57:24 2023 -0400 + + add validator test, update docstrings + +commit c9152928d26b197087ed9d36140a67f1cb4f8c2d +Author: Jan Timpe +Date: Wed Mar 22 09:51:22 2023 -0400 + + create generic parse function for all schemas + +commit cb02745d0946c1ecaa5185bab164bad25ddb43da +Author: Jan Timpe +Date: Wed Mar 22 09:50:57 2023 -0400 + + create new header/trailer schema using RowSchema + +commit 18f36762e8072955d38c9ea65899eb834ce73d18 +Author: Jan Timpe +Date: Wed Mar 22 09:50:45 2023 -0400 + + add generic validator functions + +commit f6109d4536ccd59ba95e6e5b5a0ef7abd23278be +Author: Jan Timpe +Date: Wed Mar 22 09:41:05 2023 -0400 + + add helper methods to RowSchema and Field classes + +commit 7645e3f9599a23cc4f5d9c47b780a8dafb491ef2 +Author: Miles Reiter +Date: Tue Mar 21 10:54:54 2023 -0400 + + Copies over all changes from Test environment + +commit 8f5e514ea907ead90055320c4be8c31543317509 +Author: Jan Timpe +Date: Mon Mar 20 10:59:34 2023 -0400 + + lint + +commit 64d847e7f88365204a4042e276479c2a224ba058 +Author: Jan Timpe +Date: Mon Mar 20 10:48:32 2023 -0400 + + lift and shift search_indexes.parsers to parsers + +commit 926e626dadfd1fe81f8bdcd158f7efa50eef31cf +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Mar 17 10:58:21 2023 -0400 + + Fix/1641 stt code in user (#2446) + + * change location_id/location_type to region/stt + + * add stt_code to admin stt select, make searchable + + * add docstring + + * update stt string representation test + + * rm unused limit + + * use logger instead of print in migration + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit ca11a041000007f0764d1fee043e25f69f23d31b +Author: Miles Reiter +Date: Thu Mar 16 11:57:44 2023 -0400 + + Updates UX templates to include internal raft-review AC (#2388) + + * Update design-deliverable-issue-template.md + + * Update research-synthesis-issue-template.md + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit dc69604582c8b8c6746c34fcc9f350d96f20b3a9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Mar 16 11:46:20 2023 -0400 + + Changing flow if initial user and superuser (#2452) + +commit 5e568ea4f993ef8ad5ec3f89b629f3688c94ed3d +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Mar 16 08:10:55 2023 -0700 + + Create sprint-68-summary.md (#2454) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 393538bfb52da3512cd349c1c3d8fd7582624ed1 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Mar 16 10:53:50 2023 -0400 + + Downgrading to within HHS limits. (#2455) + + Please see https://github.com/raft-tech/TANF-app/pull/2441 + +commit 6b6b329a8f7c3d78d639acf24865be7009c88bea +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Mar 16 10:11:02 2023 -0400 + + Create CloudFoundry-DB-Connection.md (#2453) + +commit 251bffe564ffeb3f956094fd8e5163ad0404eb08 +Author: Cameron Smart +Date: Wed Mar 15 06:57:39 2023 -0700 + + Deploy locally with curl (#2447) + + * add command to deploy branch using curl + + * added comments CCI token + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> + +commit e8ba3f93e70c3a42c53499ec31ba746d1a371b57 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Mar 15 09:08:17 2023 -0400 + + remove reports useEffect (#2451) + +commit 6b6ef2bb89fc8a3f764ca9072a4c31d0647921b7 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Mar 14 11:44:34 2023 -0400 + + 1121 file parsing errors log (#2422) + + * DRF to expose model + + * added filtering to DRF + + * dev test changes + + * linting, change urls + + * del frontend utility + + * added frontend createXLReport from base64 + + * linting and correct backend URL + + * added pytests and corrected url + + * linting + + * readded permission for data_file + + * added permission for search indexes + + * for testing + + * Test frontend + + * corrected createXLS + + * added month field + + * checnged rpt_month_year and tests + + * Update IdleTimer.jsx + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 4ccabfc37c8d4751864a7c2cfaa318a4ebbed94d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Mar 13 17:02:03 2023 -0400 + + Debug/zap resource class bump (#2441) + + * Update base_config.yml + + * Update executors + + * Wrong class keyword + + * running against debug/zap-resource-class-bump branch, for debugging + + * Update .circleci/owasp/workflows.yml + + --------- + + Co-authored-by: George Hudson + +commit 304ccdec82becf178ccad771c54922c2ccee42f1 +Author: Cameron Smart +Date: Mon Mar 13 12:04:46 2023 -0700 + + Bug 2379 search form error count (#2444) + + * Set expected error count based on role. + + * use selector for role + + * fix test + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 30a48ac1e3b1db24762fe4ff552347a002d2a29f +Author: Cameron Smart +Date: Fri Mar 10 07:33:53 2023 -0800 + + Feat/1965 approved user homepage (#2440) + + * add resource cards to home page + + Changed how resource cards were styled to keep the padding correct on the home and splash page + + * move tests + + * remove roles and permissions from being dispalyed + + * reusable card logic + + * add id to card + + * fix card tests + + * fix home tests + + * Changed approval text, updated deadline text to caption. + + * fix tests + + * spelling and tests + + * spellin + +commit 27c4124d4119e4cdc61f1602c5e2037cbde96b61 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Mar 2 09:26:49 2023 -0500 + + Fixing logout flow (#2428) + + Noticed during testing that logout was failing locally. The login.gov message stated to not use token_hint and instead include client_id. + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 1e6918c78e1c8156f0a70e0f9ff9eef634f2656b +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Mar 1 16:11:02 2023 -0500 + + Fix/1641 three digit stt code (#2426) + + * update stt_code to 3 chars + + * allow saving user location without a group assigned + + * fix tests + + --------- + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 41be613e07a02e1cd5c248b8106a82a9ed326931 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Tue Feb 28 13:42:40 2023 -0800 + + Create sprint-67-summary file (#2433) + +commit ff33e1e3e2248783e2fb8a1bbc50c0a99ffa8074 +Author: Cameron Smart +Date: Wed Feb 22 06:07:01 2023 -0800 + + bug/2403 scheduled triggers (#2414) + + * add unless nigtly to non nightly + + * also don't run deployment from nightly owasp scan for prod + + --------- + + Co-authored-by: George Hudson + +commit 412b4993acc4ed6a67e62fc49da33a8d5263bfa1 +Merge: 826165041 450ea9533 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Feb 15 11:06:34 2023 -0800 + + Merge pull request #2413 from raft-tech/Smithh-Co-patch-2-1 + + Create sprint-66-summary.md + +commit 450ea95338279a69c26878501b87da11021450ef +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Feb 15 10:38:20 2023 -0800 + + Create sprint-66-summary.md + +commit 826165041544838d50d08b5b7bacc7f460fc259f +Author: George Hudson +Date: Wed Feb 15 11:09:12 2023 -0700 + + Devops/2337 deploy develop on pr merge (#2401) + + * added Action to kick off deploys to develop on merges to develop, with additional job of running e2e tests on deployed environment + + * fixed wrong parameter name in workflow + + * don't need to run tests in circleCI before deploy (should already have been run in PR to develop) and temporarily change branch tracked for develop env + + * update deploy script to add in DJANGO_DEBUG and CYPRESS_TOKEN to env for develop deploys + + * updated to track develop branch before PR to develop. Added to documentation + + * added empty line at and of file + + * added empty line at and of file + + * moved base and api url prefixes to env vars + + --------- + + Co-authored-by: George Hudson + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 030fb2b3c38ffee104b51c5f934fded6a8753b6a +Merge: 9c81ead03 5f7bc19de +Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> +Date: Tue Feb 14 11:24:53 2023 -0600 + + Merge pull request #2410 from raft-tech/knowledge-center-hotfix + + image update + +commit 5f7bc19de49df08886867e1cff1798e396e4023c +Author: Diana Liang +Date: Tue Feb 14 10:54:39 2023 -0600 + + image update + + image update + +commit 9c81ead03b895a879dc1a33912de831389dbe22b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Feb 8 09:28:49 2023 -0500 + + changed NC from sample to universe state (#2398) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 4768439fbfcfe83b360eeb8a91a19fd36a070dc5 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Feb 7 17:08:11 2023 -0500 + + image swap (#2397) + +commit 8cc731039d0c672e86e19be2299f35f139e70838 +Merge: 8773a3e30 b4705adba +Author: Miles Reiter +Date: Tue Feb 7 10:11:49 2023 -0500 + + Merge pull request #2394 from raft-tech/3.0-knowledge-center-additions + + Adds 3.0 content to knowledge center + +commit b4705adba0bd2b8d817fd05c2dc9cb54bfcd1ddb +Author: Miles Reiter +Date: Mon Feb 6 17:44:42 2023 -0500 + + Copies repo from test env + +commit 8773a3e30a8e83a14704c35ab2cd88824f52271c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Feb 6 14:28:48 2023 -0500 + + Introducing technical debt, too complex to fix tanf-dev (#2392) + + * Introducing technical debt, too complex to fix tanf-dev + + * More elegant solution from Mo + + * Undoing random newlines + +commit 7d3a08a9131fa8d9ac5c8502369b1a4703db9d18 +Author: Cameron Smart +Date: Mon Feb 6 06:12:16 2023 -0800 + + Feat/1007 file versioning (#2364) + + * get most recent file + + * actually returns most recent file + + * force deploy to sandbox + + * trigger pipeline + + * update env vars for elastic + + * added print statement to see if version is returned + + * added print statement to see if version is returned + + * use boto3 + + * boto3 client + + * corrects setting vars + + * use client.client + + * get specific file + + * use .Bucket + + * checking all versions + + * actually use client + + * print versionid + + * add version id to model + + * add version id to modeland migration + + * remove reload + + * empty commit + + * empty commit + + * blank is False + + * var name typo + + * add property + + * test version + + * new download function + + * fix dl function + + * fix dl function + + * extended download functionality to take versioning into account + + * Put file getting logic on backend + + * remove unused code + + * update ci to enable versioning + + * cicd for enabling versioning + + * syntax + + * syntax + + * syntax + + * syntax + + * add workflows + + * syntax + + * install dependencies + + * apt instead of apk + + * need sudo apt + + * sudo for move and chmod + + * setting env vars + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * syntax + + * install aws the ol fashion way + + * Abracadabra + + * use deploy on label + + * typo + + * aws already in executor? + + * with script + + * chmod new script + + * stop if the key is already created + + * stop if the key is already created + + * linting + + * fix pytest + + * force deploy to sandbox + + * debugging + + * pagination + + * deploy + + * better loop + + * add circle ci for enabling versioning + + * Add s3_versioning var to model and use in view + + * add frontend submission history + + * add pagination endpoint + + * fix paginator + + * add new current submission endpoint (wip) + + * merged branches, got latested submissions endpoint working + + * linting and tests + + * added db migration + + * fix download functionality + + * test s3 version + + * hook up submission history api + + * bug? + + * disable arrows when first/last page + + * fix api + + * outline tests + + * merge 1007 + + * fix messed up merge + + * fix submitted by api + + * actually fix the submitted_by api and frontend + + * use dynamic app name for key + + * move uploaded files to a new part of redux state + + * fix broken tests + + * segmented control tests + + * paginator tests + + * move submitted_by to serializer + + * submission history tests + + * reports submission history test + + * fix submission history button styling + + * create new getCurrentSubmission action/reducers, wire up to current submission frontend + + * lint + + * undo circle changes + + * undo deploy on push + + * dont rebuild on deploy + + * lint + + * add logging + + * print version on create + + * print filename + + * look at whole version object + + * filter by bucket prefix + + * get latest version with verioning key + + * lint + + * fix merge mistakes + + * Update tdrs-backend/tdpservice/data_files/models.py + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * rm latest submission endpoint (unused) + + * rm commented code + + * rm commented reindex + + * unused import + + * Delete job + + * Delete filename + + * consolidate conditionals + + * rm default pagination and add working queryset ordering + + * pr changes + + * fix paginator aria-label + + * a11y fixes + + * include year/section in data file upload path + + * rm unused + + * trigger pipeline + + * trigger pipeline + + * fix submission history loading for SSP file types + + * update s3 path + + * Devops/1007 develop fake (#2389) + + * Testing out new workflow on main branch. + + * Changing to fake branch to improve accuracy. + + * refactor conditionals for versioning run + + * fixed filters + + * fixed spacing + + * fixed spacing + + * testing develop deploy + + * tracking develop branch now. + + --------- + + Co-authored-by: Andrew Jameson + Co-authored-by: George Hudson + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: George Hudson + Co-authored-by: Andrew Jameson + Co-authored-by: George Hudson + +commit f7938d41ff66d34b9e17213bade2e6e924d8fa79 +Merge: 64e164c55 fb04b8eef +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Fri Feb 3 11:13:32 2023 -0800 + + Merge pull request #2380 from raft-tech/Smithh-Co-patch-1 + + sprint-65-summary.md + +commit fb04b8eef7b68832c6b19c6fcfc8f337e19c719c +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Feb 2 10:20:51 2023 -0800 + + Formatting - adding George to sum.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 2b6f9e652958e9213f05eb59a8517cab75e49464 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Feb 2 10:05:59 2023 -0800 + + Formatting closure statement + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 32dcf2894fe029786129c4ab013cd5cf51b62195 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Thu Feb 2 10:05:08 2023 -0800 + + Formatting Sprint Goal + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit ffabffdbc47e6d8812632b12171a0470aae498c0 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Feb 1 15:20:12 2023 -0800 + + Updated spring-65-summary.md + + -- Removed 1354 from completed + ++ Added closed (not merged) section + +commit f1a7ea1a36adf63a7d93c514742779d03c59aad2 +Merge: 3dd70c142 64e164c55 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Feb 1 14:11:46 2023 -0800 + + Merge branch 'develop' into Smithh-Co-patch-1 + +commit 3dd70c1428de8d8320f5422b7cf4eae252e375eb +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Wed Feb 1 13:37:29 2023 -0800 + + ++ George to Summary + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 64e164c55d4289a72d527ab5b34f5058a62b197a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Feb 1 13:53:39 2023 -0500 + + Feat/132 parser file to model, no validators (#2312) + + * install django-elasticsearch-dsl-drf + + * set up elastic infra + + * add search indexes app and wire up t1 submission type + + * fix elastic impl, configure remaining submission models + + * update settings + + * add docker dns env variable for elastic + + * fix elastic version locally + + * update example env + + * rm default elastic host + + * code cleanup and linting + + * fix test + + * signed auth headers for elastic requests in non-local environments + + * update elastic settings + + * update aws auth impl + + * update auth impl (inconsistent docs) + + * ws + + * unused import + + * pin deps + + * actually pin deps + + * update dsl for django 3 support + + * removed unused boto3 connection + + * add model mapping tests + + * pinned version note + + * rebuild search indexes on dev startup + + * damn linter + + * set env default + + * Update tdrs-backend/tdpservice/search_indexes/test/test_model_mapping.py + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * fix pipfile, permissions conflicts + + * move index rebuild to all envs + + * reorganize tests + + * relock deps + + * First commit on cleaner branch, starting new branch based on Friday talks about pulling in 1354 + + * remove extra document fields + + * update field lengths + + * Wrapping up a number of changes for today around trying out validators and how we'd translate validation errors up into our JSON field. Desperately needs testing + + * Removed FIPS from document, gotten myself into a state where I only get errors 'populate on re-entrant' + + * Fixed my import issue, unhelpful django error took me on a wild goosechase + + * Starting on new route given pairing yesterday, will seek to create a separate PR/branch for model validation. + + * Adding validate_header and relevant cerberus package + + * Finishing up header test, need tribe_code handled + + * Cleaned up header test. + + * Some linting fixes + + * Manual fixing for changes to t1 model fields + + * Missed 2 field name changes, appending. + + * Seems our model needs changing, again. + + * Keep forgetting to add validators, no big changes + + * Semi-successful parsing and minimal tests. + + * Clearly missing something on the parser_task. + + * Finished manual uploads. Some unit tests work + + * Several days of work and effort, web file upload seems successful, still need to improve tests drastically. + + * fixed header validation test + + * test_preparser_trailer done + + * commiting some experimental test work so i can rebase/merge/pull/push + + * Tweak to test for smaller bad test file + + * Large bad file did apparently have a good T1 line on 14,364, broke it. + + * Fixed trailer validation again + + * Changing up header tests given cerberus limitation. + + * All tests are passing. + + * linter cleanup and removing files to be rewritten in 1354 + + * Simplified preparse from lint_failure. + + * Broke data_files:test_api when calling @filenames + + * minor tweak to linter alias + + * Removing unnecessary TODO + + * Minor removals after proof-reading code. + + * Removing extra lines breaking flake8. + + * Reducing log traffic to unspam circleci. + + * Updated other tests for parser changes. + + * Upping code coverage. + + * lint extra newline + + * Improvement to test on get_trailer_row() + + * Tweaked issue with spy_count_check() + + * PR feedback #1, This might break CircleCI + + * Fixing lockfile hashes for new deps. + + * lint fixes + + * Apply suggested removals from code review (parserlog) + + * Handful of changes related to PR + + * lint fixes + + * Moved length check into parser. + + * Apply suggestions from code review + + * updating to new token name + + * Updating broken CircleCI token + + * Alex found a silent failure, changing how preparse() handles failures. + + * Update tdrs-backend/tdpservice/search_indexes/parsers/test/test_data_parsing.py + + * PR feedback -- multiple headers/trailers + + * Making line length for t1 permissive per feedback + + * Linter cleanup + + * 132 - Converted field names per Alex, gov lead (#2377) + + * Converted field names per Alex, gov lead + + * Fixing parser fields/tests + + --------- + + Co-authored-by: Jan Timpe + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: abottoms-coder + +commit 912da6693925bbaab11df8fcc7da403338a75589 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Feb 1 11:54:13 2023 -0500 + + Increase memory to resolve file upload errors (#2354) + + * increase per child memory for testing + + * enable rsa pub keys for paramiko to test + + * lint + + * testing low limit memory + + * increased memory and changed upload task config + + * removed logger + + * linting + + * increased clamav instance memory + + * Uncommented flower package + + * Added disabled algorithms + + --------- + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit f7250781285dfb65194c1672ce6db790cc142714 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Tue Jan 31 13:31:59 2023 -0800 + + Create sprint-65-summary.md + +commit 07afe9acba82c973e9af767732bd578e87c27145 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Tue Jan 31 13:21:55 2023 -0800 + + Adding Gantt diagram reference (#2375) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 481b3c5c3538850d83a630f7293d81d5baecd1d9 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Tue Jan 31 12:24:45 2023 -0800 + + Updated POCs on readme (#2374) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit b636a7302853c6be60af8f324ee7fdb75137b0b4 +Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> +Date: Fri Jan 27 12:20:40 2023 -0800 + + Added George Hudson (DevOps - Raft) (#2378) + +commit 60e5b05d2b7db900011259c8ccfb4867ceeb9516 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Jan 27 09:29:46 2023 -0500 + + Chore/2141 cypress (#2305) + + * add and configure cypress + + * move tests + + * add cypress authentication override/support + + * generate cypress users management cmd + + * update test w/ shared steps + + * add cypress docs + + * commit cypress support + + * fix editor noise + + * sp + + * add cypress circle ci job + + * formatting + + * format + + * format again + + * add npm install for cypress + + * linter + + * override cypress token + + * fix var name + + * add cypress users + + * change local token + + * store screenshots/videos as artifacts + + * adr title + + * update email domain + + * broken link + + * Update docs/Technical-Documentation/cypress-integration-tests.md + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * update test name + + * update owasp circle token + + * try set browser + + * oops + + * Update docs/Technical-Documentation/Architecture-Decision-Record/019-integration-tests.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + * Update docs/Technical-Documentation/Architecture-Decision-Record/019-integration-tests.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 70f47b7cf3ecc260efe862262df52f7202456f2e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 25 09:48:38 2023 -0500 + + Issue 2336: Documentation added for CircleCI IR (#2367) + + * documentation added for CircleCI IR + + * Update docs/Technical-Documentation/secret-key-rotation-steps.md + + syntax + + * Update docs/Security-Compliance/Incidence-Response/README.md + + fixed internal ref again + + * Update docs/Technical-Documentation/secret-key-rotation-steps.md + + extra underscore + + * fixed syntax + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 59818329895f991a27b91f647387ca1f1a29f8fc +Author: Cameron Smart +Date: Tue Jan 24 13:01:31 2023 -0800 + + Feat/217 revise stt model (#2363) + + * Change code to postal_code + + * add sample to model and populate + + * set State field to none in State type STTs + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit 953d8818e17eb4e4bb1ce25d2e5fcb10ce03310b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jan 24 09:27:55 2023 -0500 + + Driver/navigator raft reviews (#2362) + +commit d503dfa8e4c76f2d3d4c9860f279b166fce14554 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Fri Jan 20 10:02:19 2023 -0800 + + Create sprint-64-summary.md (#2361) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 372e5f171b517adb365c2e9bb7daf626fc6a2435 +Merge: 0af45269e fa712b71b +Author: Miles Reiter +Date: Thu Jan 19 12:48:10 2023 -0500 + + Merge pull request #2339 from raft-tech/january-project-update + + January project update + +commit fa712b71b2cedf1ffc0bef488ac417bc39c837d9 +Merge: b0d8ab27d 0af45269e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 19 11:23:49 2023 -0500 + + Merge branch 'develop' into january-project-update + +commit b0d8ab27d5ffaf9bbdbd8d4057a91d79b4fdee53 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 19 11:17:04 2023 -0500 + + Update product-updates/index.html + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 52774309efcbdaf136cea1476e04ba39f19798a4 +Author: Miles Reiter +Date: Thu Jan 19 01:07:54 2023 -0500 + + Small grammar fix + +commit c9172cf7b8bf122624d0b86f1efdc45f979d720b +Author: Miles Reiter +Date: Thu Jan 19 01:06:26 2023 -0500 + + Adds final two tweaks from Alex feedback / UX sync + +commit 0af45269ec654f1608314d77dfaa8781960e15e4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 18 14:27:47 2023 -0500 + + Update Sys-Admin-Acct-Mgmt.md (#2359) + + * Update Sys-Admin-Acct-Mgmt.md + + updating ssh connection documentation on GFE + adding account approval field + + * Update qasp-owasp-scan.yml + + token change + +commit 05d1b53474ec95a84400d79eaaaf0db51463f1ae +Author: Miles Reiter +Date: Tue Jan 17 00:50:25 2023 -0500 + + Copies knowledge center additions (response to Alex's feedback) + +commit cc01906003e183b9479ecfe4347da933dee3e9e9 +Author: Miles Reiter +Date: Fri Jan 13 19:00:03 2023 -0500 + + Update index.html + +commit 1a09f5b7e4b5b36fe8bc26b192a92a77f94e63b4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Jan 12 09:35:15 2023 -0500 + + Only prod shall have prod vars (#2348) + + * Only prod shall have prod vars + + * breaky breaky api token + +commit 63da449a1f4eccad8c3a8797c476746f07403c93 +Author: Cameron Smart +Date: Tue Jan 10 13:59:29 2023 -0800 + + No more robots (#2271) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit b81cdcd922dae649309837aa77a75d2be76dee37 +Merge: a993f75ef 2b7f1dd2f +Author: Miles Reiter +Date: Tue Jan 10 12:12:25 2023 -0500 + + Merge branch 'develop' into january-project-update + +commit a993f75ef93de0a87b7969f89ccf11b02ddd15b2 +Author: Miles Reiter +Date: Mon Jan 9 15:12:46 2023 -0500 + + One more padding reduction + +commit 90356bec7ea0389b88109bc73b22a9f30bd86733 +Author: Miles Reiter +Date: Mon Jan 9 15:06:27 2023 -0500 + + Reduces margins between headings + +commit 2b7f1dd2f8705ddcb061aebcb19725cb390f7409 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Jan 9 11:57:05 2023 -0800 + + Create sprint-63-summary.md (#2333) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit c5e1a096f4ad4d7651c8acdd9ae567503f2190eb +Author: Miles Reiter +Date: Mon Jan 9 12:57:31 2023 -0500 + + Updates IDs + +commit 0bff3793bfca0f633b742cd476dcbc7945f92371 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Jan 9 09:22:28 2023 -0800 + + Update Team-Composition.md (#2340) + + * Update Team-Composition.md + + * Update docs/How-We-Work/Team-Composition.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 15d55e521b8954c16d3747120cc472e43ed17b90 +Author: Miles Reiter +Date: Mon Jan 9 11:44:10 2023 -0500 + + Fixes typos + +commit f18da74426680bdcce93fcc0766e283f2df2229f +Author: Miles Reiter +Date: Fri Jan 6 02:20:35 2023 -0500 + + Merge Test Env into TANF-app branch + + - Jquery Version Bump + + - Adds new Project Update page & updates nav + + - Fixes highcharts issue that was breaking formatting in test environment + +commit 4057f5d364e56e223c82bf4bc65d9f3f42a22df3 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jan 3 07:04:10 2023 -0800 + + Create sprint-62-summary.md (#2322) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 4769538d780e00311e6d5c3a52916facc66027a0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Dec 21 10:45:05 2022 -0500 + + pipenv lock --keep-outdated (#2324) + + * pipenv lock --keep-outdated + + * Changing only the hash and reverting pipfile pin + +commit 8a41d76bc934e857aa1483d2e203ddd1f0e30b6d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Dec 20 13:49:56 2022 -0500 + + Hotfix - Automating Elasticsearch deployment variables (#2320) + + * First try at fixing pipeline + + * workaround for auto-deploy + + * instantiating logger + + * try again + + * After much testing, some updated settings for ES + + * Reverting deployment changes for polishing PR. + + * linter fix + + Co-authored-by: Cameron Smart + +commit e32e05902babe93566dcd737f85b60935aeab72a +Merge: cda3b8700 e6e269b92 +Author: Miles Reiter +Date: Fri Dec 16 16:59:28 2022 -0500 + + Merge pull request #2316 from raft-tech/2191-synthesis-update + + 2191 synthesis update + +commit e6e269b92263ad9b5fcd52bdca37133fca097764 +Merge: cd4aafeb5 cda3b8700 +Author: Miles Reiter +Date: Fri Dec 16 16:33:13 2022 -0500 + + Merge branch 'develop' into 2191-synthesis-update + +commit cd4aafeb57951eb9289869fc3a493b0fc7e17b28 +Author: Miles Reiter +Date: Fri Dec 16 16:32:44 2022 -0500 + + Update 2022, Fall - TDP 2.2 Pilot Expansion.md + + Makes link future proof for next project update + +commit cda3b8700bf8b72d239bf704ea478d05c9555bcd +Author: Miles Reiter +Date: Thu Dec 15 12:05:03 2022 -0500 + + Update dev-ready-design-issue-template & add readme link to a11y doc (#2299) + + * Update dev-ready-design-issue-template.md + + * Rename dev-ready-design-issue-template.md to design-deliverable-issue-template.md + + * Update README.md + + * Update README.md + +commit 83b30ad538881a36677221baa06db29cb51c413e +Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> +Date: Wed Dec 14 16:01:47 2022 -0600 + + Update README.md + + added Fall, 2022 research synthesis summary + +commit 33d1b5de8eefef23fb6572454a28ebd922b28a27 +Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> +Date: Wed Dec 14 14:50:20 2022 -0600 + + Update README.md + +commit 68c42eca966b2b3bdefe16e81d7b4085bd89c376 +Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> +Date: Wed Dec 14 14:47:26 2022 -0600 + + Create 2022, Fall - TDP 2.2 Pilot Expansion.md + +commit c86987bef918038be78e622a66287883844cebf4 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Dec 7 10:56:51 2022 -0800 + + Create sprint-61-summary.md (#2303) + +commit 8b9dc4e10cc559b0b4e2d4dae86708ea96da35d7 +Merge: 014056a0c 8409ad359 +Author: Cameron Smart +Date: Fri Dec 2 11:04:22 2022 -0800 + + Merge pull request #2284 from raft-tech/cicd-nightly-trigger-fix + + Cicd nightly trigger fix + +commit 8409ad359b618c2d18a56096fb94f990b6a6d81d +Merge: 5a2761bfe 014056a0c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Dec 2 13:52:32 2022 -0500 + + Merge branch 'develop' into cicd-nightly-trigger-fix + +commit 5a2761bfe0d2eb87ee29cee7e6b873c00f365b34 +Author: Cameron Smart +Date: Fri Dec 2 09:42:59 2022 -0800 + + update readme + +commit 113d353d08a0376f7634b208fa4dc72e3bd784d3 +Author: Cameron Smart +Date: Fri Dec 2 09:40:20 2022 -0800 + + Updated config.yml + +commit b1f502b25723384c46dfaf90ae05f87506cdf5f7 +Author: Cameron Smart +Date: Fri Dec 2 09:35:59 2022 -0800 + + consolidate generate config scripts + +commit ad0dc210b2cab5151aed8aa4d86312fa94ffc344 +Author: Cameron Smart +Date: Fri Dec 2 09:08:59 2022 -0800 + + Apply suggestions from code review + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit c5454213d3f7f811328fcb27cc8bf9d159aabdd4 +Author: Cameron Smart +Date: Thu Dec 1 10:39:24 2022 -0800 + + Apply suggestions from code review + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 014056a0cd022bcf3af44adc114e385c121211bb +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Dec 1 11:24:29 2022 -0500 + + Feature/1351 - elastic (#2160) + + * install django-elasticsearch-dsl-drf + + * set up elastic infra + + * add search indexes app and wire up t1 submission type + + * fix elastic impl, configure remaining submission models + + * update settings + + * add docker dns env variable for elastic + + * fix elastic version locally + + * update example env + + * rm default elastic host + + * code cleanup and linting + + * fix test + + * signed auth headers for elastic requests in non-local environments + + * update elastic settings + + * update aws auth impl + + * update auth impl (inconsistent docs) + + * ws + + * unused import + + * pin deps + + * actually pin deps + + * update dsl for django 3 support + + * removed unused boto3 connection + + * add model mapping tests + + * pinned version note + + * rebuild search indexes on dev startup + + * damn linter + + * set env default + + * Update tdrs-backend/tdpservice/search_indexes/test/test_model_mapping.py + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + + * fix pipfile, permissions conflicts + + * move index rebuild to all envs + + * reorganize tests + + * relock deps + + * remove extra document fields + + * update field lengths + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit aa54f3f9775836efbcad8ba33491bcbb3c746352 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Nov 29 13:55:30 2022 -0500 + + Found fix for chromium bug on startup (#2292) + +commit 9affb78361fdc23692c4fcd67f34cc0e4c3f2451 +Author: Cameron Smart +Date: Wed Nov 23 12:44:02 2022 -0800 + + run nightly on develop branch + +commit 4b227f9f91fe8e456d64975779329f4aed4c1767 +Author: Cameron Smart +Date: Wed Nov 23 12:00:41 2022 -0800 + + clean up config + +commit 2f3b439c4ea5f9b3870d156276c9fc0407b3a853 +Author: Cameron Smart +Date: Wed Nov 23 11:57:20 2022 -0800 + + fix small typo + +commit e0ffc3cf555042e97a49d6bae362a9bd8bb830f7 +Merge: cfe55c548 a659af004 +Author: Cameron Smart +Date: Wed Nov 23 11:38:13 2022 -0800 + + Merge branch 'develop' into cicd-nightly-trigger-fix + +commit a659af004b182928bf2857bb230cdde0888b3f63 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Nov 23 11:26:42 2022 -0800 + + Create sprint-60-summary.md (#2286) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit cfe55c54807d169eacc4b4b74bff1c6b16608a38 +Author: Cameron Smart +Date: Tue Nov 22 15:19:00 2022 -0800 + + add readme + +commit dccc84a08679cd37aa51c95a8618ebd7cc159967 +Merge: 44f558aa3 9f47745e7 +Author: Miles Reiter +Date: Tue Nov 22 17:31:32 2022 -0500 + + Merge pull request #2287 from raft-tech/knowledge-center-update-submission-graphic + + Update 2-search-component.png (SSP/TANF & Heading change) + +commit 9f47745e7e80049744ae05037b8b574f8d0eac5a +Author: Miles Reiter +Date: Tue Nov 22 17:03:41 2022 -0500 + + Update uploading-data.html + +commit c98b8d1dcfd5b54951d5ff39c2bcd745e3624268 +Author: Cameron Smart +Date: Tue Nov 22 13:33:24 2022 -0800 + + target develop + +commit 00cd12968ebd84e2e663fa6c4bd75160971c02ba +Author: Cameron Smart +Date: Tue Nov 22 13:24:42 2022 -0800 + + test on current branch + +commit e65f1ef585b231f27697455ba5fb4a91d8cf2f4c +Author: Cameron Smart +Date: Tue Nov 22 13:22:12 2022 -0800 + + test on current branch + +commit 9a405d14dc58d0489bc881a91a9de3b57e357202 +Author: Cameron Smart +Date: Tue Nov 22 13:21:01 2022 -0800 + + test on current branch + +commit e3da9ea35161565b64327a4e636a22b43e5720c4 +Author: Miles Reiter +Date: Tue Nov 22 16:18:10 2022 -0500 + + Update 1-tab-emphasis.png + +commit a906e5779a060cc3fd12e1b1a1d8d0d0f63705b5 +Author: Cameron Smart +Date: Tue Nov 22 13:15:31 2022 -0800 + + remove whitespace + +commit bd910d4eaa345d9083711c7ba82c216dca77c185 +Author: Cameron Smart +Date: Tue Nov 22 13:08:55 2022 -0800 + + move commands to utils + +commit 008aabfca7e5b8550af4fec4f8de4d5d244e6a38 +Author: Miles Reiter +Date: Tue Nov 22 16:02:15 2022 -0500 + + Update 2-search-component.png + +commit 571bd9c1caf9cd3b20552002febbfe3be99951f9 +Author: Cameron Smart +Date: Tue Nov 22 12:57:35 2022 -0800 + + move commands to utils + +commit 2d0fb13547276db5a410f22152030b94faa1a3b9 +Author: Cameron Smart +Date: Tue Nov 22 12:44:01 2022 -0800 + + add nightly to base config + +commit a2006a70873f76fd49a30685a70359e9ff72f3d6 +Author: Cameron Smart +Date: Tue Nov 22 12:40:06 2022 -0800 + + try with schedule in UI + +commit 44f558aa3136dd62000d44fe3475374ae88d937b +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Nov 22 15:20:29 2022 -0500 + + Feat/1866 celery beat and postgres backups (#2176) + + * Excessively spammy PoC + + * Less spammy, need to resolve exception in db_backup for local + + * running into localstack issues, have refactored db_backup.py significantly + + * added AWS access key + + * Cleanup and functional db_backup after pairing w/ Mo, need to test in deployed env + + * found better flag for local v. deployed + + * missed 1/2 conditionals that needed update + + * Different deployed env missing var that we added manually to other envs + + * tilde for home was including 'app' in pgpass path + + * didn't finish this thought on s3 uri + + * ignoring backups locally + + * Removing local-specific logic + + * Removing unnecessary postgre install no longer used by local runs of db_backup.py + + * Trying out gunicorn-based env var + + * Updating indents + + * minor logging update + + * Setting REDIS_URI outside of CircleCI + + * Quotes in docker envs break test_api* + + * Ignoring db_backup for code coverage as untestable + + * Finalizing cadence as review is complete. + + Co-authored-by: abottoms-coder + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit fe177c6ab3d696e3bc986b57410510867ede9dbf +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Nov 22 15:02:36 2022 -0500 + + Fix/1744 permission guards (#2258) + + * fix role selector + + * permission guard component to conditionally render based on redux state + + * use permission guard for data file page + + * use permission guard for data file nav item + + * add component tests for data file permission guard + + * require account approval to access data files + + * update ci? + + * fix ci img + + * ci img + + * rm old heroku keys workaround + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 13221d851cbdbd061cf62c566df00af6bffa95c5 +Author: Cameron Smart +Date: Tue Nov 22 10:21:11 2022 -0800 + + small change to github action + +commit 57d18afc26155086f6b72eb3635d1c50482a726c +Author: Cameron Smart +Date: Tue Nov 22 10:16:26 2022 -0800 + + separate nightly owasp github actions file + +commit 92c55f51a65877296a567d49a20a8780dffcf077 +Author: Cameron Smart +Date: Tue Nov 22 10:11:31 2022 -0800 + + Updated config.yml + +commit df693c4ce34ce524d03de2fa7fdd2e0c17393462 +Author: Cameron Smart +Date: Tue Nov 22 09:58:33 2022 -0800 + + test + +commit 1bb249baaec9370fcef4dcd0e9526a04d45d7341 +Author: Cameron Smart +Date: Tue Nov 22 07:46:36 2022 -0800 + + turn filter off + +commit 5d01d8899800dd05dfa5f2c80819a9d4713c713b +Author: Cameron Smart +Date: Tue Nov 22 07:20:17 2022 -0800 + + add filter + +commit 8d097ee98ac13df1fd620fc3a582561fbce015e5 +Author: Cameron Smart +Date: Tue Nov 22 07:17:50 2022 -0800 + + test trigger + +commit d1ea6b0a2ea9aada22c1ed0a599d3955f7a16b08 +Merge: 7b120111d 6f8e8a9b1 +Author: Cameron Smart +Date: Mon Nov 21 09:48:34 2022 -0800 + + Merge pull request #2259 from raft-tech/1373-split-circleci-config + + split config file with continuation orb + +commit 6f8e8a9b1d606daa3e13919425b02d19abdea32c +Author: Cameron Smart +Date: Mon Nov 21 09:07:58 2022 -0800 + + added separate workflow files + +commit 84ff7f7dda41f8d6821fd4cde046d89a4a282919 +Author: Cameron Smart +Date: Thu Nov 17 14:23:04 2022 -0800 + + reorder by stage + +commit 5e2e2d875df609c31c8c62e8c85dce5bd820c1f8 +Merge: 6f121b705 7b120111d +Author: Cameron Smart +Date: Wed Nov 16 13:20:46 2022 -0800 + + Merge branch 'develop' into 1373-split-circleci-config + +commit 7b120111d9c68c58c9287ee7c97924c334d6a828 +Merge: bc2055653 c6a301c51 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Nov 16 12:36:20 2022 -0500 + + Merge pull request #2270 from raft-tech/hotfix/gpg-key-rename + + fix ubuntu renamed gpg key err + +commit c6a301c51caa8f6a30c818a8a9b759b56826992e +Merge: 77bd17fc1 bc2055653 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Wed Nov 16 12:11:03 2022 -0500 + + Merge branch 'develop' into hotfix/gpg-key-rename + +commit 77bd17fc139c86c2ab77fe0641afa7311cc6eb47 +Author: Jan Timpe +Date: Tue Nov 15 15:39:05 2022 -0500 + + fix ubuntu renamed gpg key err + +commit bc2055653babcbe8477adea62efbe43eda621cda +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Tue Nov 15 09:51:38 2022 -0500 + + update buildpacks (#2254) + + * update buildpacks + + * update changelog + + * update python version and lock deps + + * sp + + * rm sp + +commit 6f121b70534296d39dd6c781e599e35f537d95d2 +Author: Cameron Smart +Date: Mon Nov 14 12:36:39 2022 -0800 + + Update Readme + +commit c1cfd0333a465c3fcb71d745f843e840fbf96dd7 +Author: Cameron Smart +Date: Mon Nov 14 12:04:12 2022 -0800 + + split config file with continuation orb + +commit 95142292f46e27ebb90b0e8a4f70557779c7ac4e +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Nov 9 12:47:37 2022 -0800 + + Create sprint-59-summary.md (#2252) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 52d975b5c3176a009d72d48d19a000b9db0a4fa0 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Nov 9 09:05:46 2022 -0800 + + Update Roadmap-and-Backlog.md (#2246) + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 4fae5a8f80fe0a32bd114c06c1f84714980c3c63 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Nov 9 11:26:04 2022 -0500 + + Hotfix for v2.2 for SSP data submission (#2251) + + * Hotfix for v2.2 for SSP data submission + + added filenames for UT for SSP data submission for v2.2! + + * ME also missing SSP filenames + + audited `states.csv` to confirm all SSP states had filenames. only UT and ME were missing these. + + * add space for ME SSP files + + * close quotes for ME SSP Section3 + +commit a0fd0b6ad646faa4d85c147a3767d818051a4747 +Author: Cameron Smart +Date: Tue Nov 8 09:31:11 2022 -0800 + + 1755 - As a data analyst, I need to be able to upload SSP data files (#2236) + + * added ssp boolean to stt model + + * changed stts and datafile models + + * made ssp editable + + * added radio buttons to frontend + + * send ssp to backend through drf + + * added frontent tests + + * removed comments, fixed radio button + + * change migrations + + * remove temp files + + * fixed test + + * linting + + * reorder ssp radios + + * Fixed db migrations. Added backend test + + * fixed serializer tests + + * removed redundant ssp in the model + + * changes for testing migration issue + + * updated db migrations + + * changed ssp and migration + + * make new migration + + * added ssp to populate + + * change ssp in migration only + + * fix file path + + * make ssp upeditable + + * update db migration order + + * new migrations + + * Changing populate_stts to be peek-ahead, always-update STT fields + + * Changing populate_stts to be peek-ahead, always-update STT fields + + * removing old request_access endpoint test + + * plz fix + + * add an irrelevant comment + + * rm comment + + * linting + + * linting + + * add frontend redux for fileType + + * use global file type state in post/get requests + + * support ssp in GET param + + * linting + + * fixed test + + * fixed REDIS_URI + + * add '-' to header + + * rm prints + + * cleaner if statement + + * spelin + + * rm stuffs + + * update quarter-month mapping for logentries + + * Adding our testfiles to gitignore and removing comments around filenames property. May update again soon + + * move file type filter logic to get_queryset + + * docstring + + * added test for Tribe datafile and moved Tribe logic to serializer + + * linting + + * removing print and logs + + Co-authored-by: mo sohani + Co-authored-by: abottoms-coder + Co-authored-by: Jan Timpe + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + Co-authored-by: Pennington + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + +commit cdc8d051511a0953a545d49db19b7c90126a1513 +Merge: 44ddd240f 59ad92758 +Author: Miles Reiter +Date: Tue Nov 8 12:19:02 2022 -0500 + + Merge pull request #2249 from raft-tech/knowledge-center-em-hotfix + + Hotfix: Closes Knowledge center 's + +commit 59ad927587978bf4f6ac8f496f81fc96e1d90fde +Author: Miles Reiter +Date: Tue Nov 8 12:12:32 2022 -0500 + + Copies hotfix from test environment + +commit 44ddd240f79632b28e74f66d860316fefe6a557b +Merge: c42845e64 717856818 +Author: Miles Reiter +Date: Tue Nov 8 11:12:26 2022 -0500 + + Merge pull request #2220 from raft-tech/knowledge-center-update-2.2 + + Copy all Knowledge Center changes from Test env. + +commit 71785681839d3f7463a23e7e269cd99c49eafd97 +Merge: 1ebaf0ba1 e59affd42 +Author: Miles Reiter +Date: Tue Nov 8 10:53:59 2022 -0500 + + Merge branch 'knowledge-center-update-2.2' of https://github.com/raft-tech/TANF-app into knowledge-center-update-2.2 + +commit 1ebaf0ba1a69d79b3c3c78ea782193149873c776 +Author: Miles Reiter +Date: Tue Nov 8 10:53:56 2022 -0500 + + Adds emphasis on email addresses + +commit e59affd42f1d0b1861f9664c56f2f5482f94cc7c +Merge: 38fdf99b5 c42845e64 +Author: Miles Reiter +Date: Tue Nov 8 10:00:13 2022 -0500 + + Merge branch 'develop' into knowledge-center-update-2.2 + +commit 38fdf99b505daa33eb9a5d61d54a9c517288f968 +Author: Miles Reiter +Date: Tue Nov 8 09:58:12 2022 -0500 + + Adds denied sentence & some more copyediting + +commit 0ce67aa3195dbbe6f1e7a8251e7edc3b8141a0a4 +Author: Miles Reiter +Date: Tue Nov 8 09:40:11 2022 -0500 + + Adds tweaks from Friday + +commit 96fcaead9854788a962c3fa7dfc05035989ee42a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Nov 7 11:25:29 2022 -0500 + + Update product-updates/knowledge-center/create-new-login.html + + this removes no-reply from this section. + +commit c42845e64154e18316d4b7cc7d729b4ae09fc662 +Merge: ec6b59ca2 cf0d85a53 +Author: Miles Reiter +Date: Fri Nov 4 15:06:23 2022 -0400 + + Merge pull request #2237 from raft-tech/lilybl1-patch-1 + + Update dev-ready-design-issue-template.md + +commit cf0d85a5333809fc3b799118b23cab4f53f798cb +Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> +Date: Fri Nov 4 14:00:59 2022 -0500 + + Update dev-ready-design-issue-template.md + + updated the title based on UX sync + +commit ec6b59ca2f10bb64c29f0271c3f0043a0d8752c9 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Nov 3 12:53:31 2022 -0400 + + Fix/992 notify data file search selection changes (#2209) + + * notify on search field changes + + * live update report header + + * rename modal + + * conditional render modal + + * remove comment + + * create a generic Modal component + + * rm class + + * add tests + + * rm unused + + * undo live changing report header + + * unset/reset prev selected values + + * hide submit button if there are search form changes + + * update tests + + * complete modal message + + * disable instead of hide submit + + * add `aria-disabled` to buttons + + * allow submissions for "old" search values + + * fix ofa admin stt selection + + * fix no stt set for non admins + + * clear files on cancel upload + + * trap focus when modal displayed + + * fix z-index + + * add tab key tests + + * focus header on modal display + + * describedby on modal desc + + Co-authored-by: Miles Reiter + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 5e0284b1e5ea45e577938533e864765a890fb9a1 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Nov 3 12:37:08 2022 -0400 + + Update docker-compose.yml (#2230) + + pinning zap version to 2.11.0 in preparation for next release. + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 404daf0b93d4abb19bc6a37e3ebaa5d12fd8e870 +Author: Cameron Smart +Date: Thu Nov 3 09:05:50 2022 -0700 + + Feat/1844 deactivate email (#2204) + + * Send emails warning for account deactivation + + * linting + + * added custom DAC logger + + * linting + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 7255966514760e233a42d675b02323feda3b5829 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Nov 3 11:23:26 2022 -0400 + + fix/2140 scroll upload alert into view (#2215) + + * scroll upload alert into view + + * add scrollIntoView mock for test + + Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> + +commit eee343af17e16867dad076f0f4e0016b103f3631 +Merge: baa5c69c6 53253fb0f +Author: Miles Reiter +Date: Tue Nov 1 17:27:48 2022 -0400 + + Merge branch 'develop' into knowledge-center-update-2.2 + +commit baa5c69c66f8afd7609d7e1966e219499ad1be9e +Author: Miles Reiter +Date: Tue Nov 1 17:25:31 2022 -0400 + + Adds "higher is better" to rating question + +commit 53253fb0faddda842426910d97cf62db565580d5 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Oct 28 16:45:27 2022 -0400 + + Update docker-compose.yml (#2218) + +commit ffeefe76e26cefd05e8f005f0aaf0a8e56587248 +Merge: 568c9fbd6 bd99ff17c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Oct 28 15:24:36 2022 -0400 + + Merge branch 'develop' into knowledge-center-update-2.2 + +commit bd99ff17ccb008a331a5ea5d5c3b84965e82eac3 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Oct 28 14:14:21 2022 -0400 + + Deps/zap broken executor (#2221) + + * pinning executor version to present value instead of using 'vague' current tag + +commit 568c9fbd6b94397fb2abcb17c97381282077299e +Author: Miles Reiter +Date: Fri Oct 28 11:58:44 2022 -0400 + + Copy all Knowledge Center changes from Test env. + + - Google Analytics + + - New Footer w/ ACF Privacy Policy & Jump To Top link + + - New Give Feedback form + + - Updated content & new imagery on Complete Resubmission, Existing Login, New Login pages + + - New (USWDS) icon-list based changelog on homepage + +commit cd20eb9b6c2d42c53bcd30a76e0453394bb54246 +Merge: 6c5178ddf f6713b96a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Oct 27 11:29:15 2022 -0400 + + Merge pull request #2200 from raft-tech/feature/email-on-data-submit + + 1845 - Email on data submit + +commit f6713b96a5dc0f414465da0f09bc70b8188c4a91 +Merge: 0930387b2 6c5178ddf +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 26 17:25:39 2022 -0400 + + Merge branch 'develop' into feature/email-on-data-submit + +commit 6c5178ddf9043e547ee898610dac076b06570a27 +Merge: 2d61e579e 0d22c2cbf +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 26 17:24:38 2022 -0400 + + Merge pull request #2210 from raft-tech/stevenino-patch-3 + + Create sprint-58-summary.md + +commit 0930387b2100b6be608b778f2a39585c9731ee4f +Author: Jan Timpe +Date: Wed Oct 26 14:12:23 2022 -0400 + + extra } + +commit 4db48ba23645920e3708d6ff9b46f39a28b82ffc +Author: Jan Timpe +Date: Wed Oct 26 13:50:09 2022 -0400 + + remove unused style + +commit d4cb9040fd78aad32266345f7f3da550746504d2 +Author: Jan Timpe +Date: Wed Oct 26 13:11:42 2022 -0400 + + add inline table style (gmail hack) + +commit 3c20bf0644c44721489d9efd459d5d3d15d82a98 +Author: Jan Timpe +Date: Wed Oct 26 13:01:47 2022 -0400 + + add table styling + +commit e8a19e1449df4aeb46f20f2fe024358ae06ba83e +Author: Jan Timpe +Date: Wed Oct 26 13:01:39 2022 -0400 + + allow style overrides + +commit 59cbdff7fae6cc8b02ca57abd6668b3846887b6f +Author: Jan Timpe +Date: Wed Oct 26 13:01:27 2022 -0400 + + add subject to email context + +commit 0d22c2cbfd4fda5ad21947caadcbc53688768383 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Oct 25 15:37:56 2022 -0700 + + Create sprint-58-summary.md + +commit d66b7451b5ce17831955cddc3801e020c1829674 +Author: Jan Timpe +Date: Tue Oct 25 18:15:30 2022 -0400 + + spell fix + +commit 0a490c4844acafedc1366a7a09be1d643d4857fe +Author: Jan Timpe +Date: Tue Oct 25 16:51:39 2022 -0400 + + update data submitted email template + +commit c88e89fc491b40e5af911f09612803aad81a41d6 +Author: Jan Timpe +Date: Mon Oct 24 15:44:28 2022 -0400 + + rm nullable from log + +commit ec10c5aee2a73b6c8ccb40611298999f3c90d666 +Author: Jan Timpe +Date: Mon Oct 24 15:31:56 2022 -0400 + + add django admin logging for submission emails + +commit 37589da992a1475491c03ce01fb41f877be24dc6 +Author: Jan Timpe +Date: Fri Oct 21 16:39:27 2022 -0400 + + linter driving me crazy + +commit 646851a320661f76c547659d3ff3cbad83439492 +Author: Jan Timpe +Date: Fri Oct 21 16:33:33 2022 -0400 + + move helpers into new module, update log + +commit 0670956e42ec38b8be130fd86e39bbca12e2eb65 +Merge: fc516c35f 2d61e579e +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Oct 21 16:08:23 2022 -0400 + + Merge branch 'develop' into feature/email-on-data-submit + +commit fc516c35f521b4cc3a9d15e6fcd29899f6d29b5a +Author: Jan Timpe +Date: Fri Oct 21 15:59:26 2022 -0400 + + linter + +commit 1d7b19211f11d6fa540faca41fb3ba49a7d5c111 +Author: Jan Timpe +Date: Fri Oct 21 15:52:54 2022 -0400 + + fix conflics + +commit 2d61e579e3c205cfe295c779e96b8d3c775ee7ef +Merge: 398e296d9 f86cc47ed +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Oct 21 15:33:21 2022 -0400 + + Merge pull request #2101 from raft-tech/doc/1104-boundary-diagram + + Issue 1104: Updated boundary diagrams for release 2+ + +commit 941f0d09cbe1ca5f7b3e949af631e777427fbc8e +Merge: df3c880e4 398e296d9 +Author: Jan Timpe +Date: Fri Oct 21 15:32:28 2022 -0400 + + Merge branch 'develop' into feature/email-on-data-submit + +commit df3c880e4c8f324071cd02266a6733825a633dc8 +Merge: f7327fa19 0707d063a +Author: Jan Timpe +Date: Fri Oct 21 15:27:51 2022 -0400 + + Merge branch 'develop' into feature/email-on-data-submit + +commit f86cc47ed1e96143ca72dda0b389eab15ed77ee2 +Merge: 60b066184 398e296d9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Oct 21 15:27:04 2022 -0400 + + Merge branch 'develop' into doc/1104-boundary-diagram + +commit 398e296d995b18c28ca783fe34c89c36e3d0207a +Merge: e3d14df85 bd4594c09 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Oct 21 15:24:33 2022 -0400 + + Merge pull request #2178 from raft-tech/feat/1814-account-access-emails + + Feat/#1814 #1840 #1839 #1334 account access emails + +commit 60b066184abd717588f26ed1c3159ff33d03e909 +Merge: 8d28bfe53 e3d14df85 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Oct 20 12:47:35 2022 -0400 + + Merge branch 'develop' into doc/1104-boundary-diagram + +commit bd4594c099ac422439a63aebc8db1006bb4ec122 +Author: Jan Timpe +Date: Thu Oct 20 12:44:54 2022 -0400 + + move context update + +commit 2f9a4cc6e91541ae42552e3c27b76ea61f812705 +Merge: 87e76c43e e3d14df85 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Thu Oct 20 09:30:49 2022 -0400 + + Merge branch 'develop' into feat/1814-account-access-emails + +commit 87e76c43e6fbd5fd5e2c230f74765bfcb6c365a1 +Author: Cameron Smart +Date: Wed Oct 19 20:43:23 2022 -0700 + + Template urls change based on frontend url + +commit c9494672131289e0aceddd4ec5a65ed19afd45b6 +Author: Jan Timpe +Date: Wed Oct 19 17:04:28 2022 -0400 + + linter + +commit 35b062e01ff1922ece5d7428076404085f67732c +Author: Jan Timpe +Date: Wed Oct 19 17:02:15 2022 -0400 + + move to email helper + +commit 3b395e9eee4b0048c7526e0e06240fab566d365d +Author: Jan Timpe +Date: Wed Oct 19 16:25:41 2022 -0400 + + linterr + +commit 3877e62222b66f0cd2af641ba28f60f6a7c9faf9 +Author: Jan Timpe +Date: Wed Oct 19 15:11:02 2022 -0400 + + adds a logger function for DAC logging of email status + +commit e3d14df85575e38ea1cacfcba32828e2e1f213a7 +Merge: 0707d063a 3a5fef1ec +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 19 10:51:01 2022 -0400 + + Merge pull request #2185 from raft-tech/stevenino-patch-3 + + Create sprint-57-summary.md + +commit 3a5fef1ec7a4fff2b282bb85a0e64c5db7e0a235 +Merge: 4079197ef 0707d063a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 19 10:29:07 2022 -0400 + + Merge branch 'develop' into stevenino-patch-3 + +commit f7327fa19072c77371117435ac085f8e53acfd03 +Author: Jan Timpe +Date: Tue Oct 18 15:26:57 2022 -0400 + + clean up logging and add test + +commit dc1ce32e21aceeb7183563a3cf06635dc887ac8c +Author: Jan Timpe +Date: Tue Oct 18 13:59:18 2022 -0400 + + First line should be in imperative mood + +commit 0896c038e0ed43dc7473a8cc89b3386ed7a6004f +Author: Jan Timpe +Date: Tue Oct 18 13:33:28 2022 -0400 + + lint + +commit 60a6ebdfc4731a22af67f7f4c9bfdaa51506afa3 +Author: Jan Timpe +Date: Tue Oct 18 13:26:26 2022 -0400 + + add data submitted email + +commit 126ca551393341ac77351ff1dd93b97d7e7e12b9 +Merge: c0e823250 97cd5175b +Author: Jan Timpe +Date: Tue Oct 18 12:23:36 2022 -0400 + + Merge branch 'feat/1814-account-access-emails' into feature/email-on-data-submit + +commit c0e823250c6b99e23e322f3b861b8c7b6dc1b922 +Author: Miles Reiter +Date: Wed Sep 28 14:34:15 2022 -0400 + + Correct title tag + +commit d1097fb1d8a4f465e23794defcf5a3c25745d8ed +Author: Miles Reiter +Date: Thu Sep 22 23:22:05 2022 -0400 + + Copies over all changes from test environment + +commit c3af696e303b9f1c37bcff5ac8770782ae2cb3f5 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 08:00:32 2022 -0700 + + Update docs/Sprint-Review/sprint-55-summary.md + +commit cb6f1838b0d8863dba6287757facd4e5e96030dc +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 08:00:20 2022 -0700 + + Update docs/Sprint-Review/sprint-55-summary.md + +commit eef2809d493ea3676c20779343540f01274008c1 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 14 09:42:27 2022 -0700 + + Create sprint-55-summary.md + +commit 3d9f6a8ea2486de5f7d8112286d45ffaf675496f +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 07:28:29 2022 -0700 + + Update docs/Sprint-Review/sprint-56-summary.md + +commit 93155811efd44f2ab785e036ce45cace874db1ca +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 07:28:20 2022 -0700 + + Update docs/Sprint-Review/sprint-56-summary.md + +commit 8342ef09ef1ea45ab7aeecfe8cded7dc5e623a7f +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 07:28:10 2022 -0700 + + Update docs/Sprint-Review/sprint-56-summary.md + +commit 02ebf8b03552438211f92b6f04c1b88772ecca26 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Sep 27 17:04:14 2022 -0700 + + Create sprint-56-summary.md + +commit 4527a6795ed91d4e84cc3db31cf880f8da097275 +Author: msohanifr +Date: Tue Sep 27 05:50:44 2022 -0400 + + Revert "Update README.md" + + This reverts commit b0cb11787c72360312328cfd26ea9ddc4e462c6c. + +commit 5642939c762e198bd9d3457d7f603378a48c0600 +Author: raftmsohani +Date: Mon Sep 26 14:25:07 2022 -0400 + + linting + +commit f96561d1da374b808a03a484468d6f105975ae0b +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Sep 26 14:11:28 2022 -0400 + + Update models.py + + Changed to include 'Tribal' interim section logic. + +commit c9fc31e37a0a8bca60ea5068c6d403e456e092aa +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Sep 26 12:28:04 2022 -0400 + + Update README.md + + trivial change. + +commit 510eea6b3269af83ef894b719ad81d60447ced0d +Author: raftmsohani +Date: Thu Sep 22 11:06:40 2022 -0400 + + removed new filename method + +commit b1ba2c3af8b8830262abd8a505e892a6e3268939 +Author: Cameron Smart +Date: Thu Sep 29 09:52:03 2022 -0700 + + Run scans when label is added + +commit 487b03abf93edb17ad6b93b865ae4ddcf43c9081 +Author: Cameron Smart +Date: Wed Sep 28 10:21:34 2022 -0700 + + disable proxy pass + +commit 008305d12b3a4f47ab169854d56f76e19ee4446b +Author: Cameron Smart +Date: Wed Sep 28 09:56:12 2022 -0700 + + test owasp + +commit 2b17c6f4c1ec6dab621821888e0293d2c820d905 +Author: Jan Timpe +Date: Thu Sep 15 11:23:25 2022 -0400 + + update timeout to match component timeout + +commit d52eede8b1a3e0f7ecbeff6b93503c1f9553f20b +Author: Jan Timpe +Date: Thu Sep 15 11:05:37 2022 -0400 + + add back welcome text + +commit 536499cffc3f9590ac274b88a91c49c385c77894 +Author: Jan Timpe +Date: Thu Sep 15 10:43:22 2022 -0400 + + fix user approved but not assigned role bug + +commit 751cd95ebbb12d330c017ef2029a719916e79845 +Author: Jan Timpe +Date: Thu Sep 15 10:43:05 2022 -0400 + + add new user role selectors + +commit df8a31622c6bf68c4c7bf3894c48ef0732877d39 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Sep 12 16:28:30 2022 -0700 + + Create sprint-54-summary.md + +commit 137a3ab9665ed242281ba701604128d182c65ea2 +Author: Miles Reiter +Date: Mon Sep 26 11:14:32 2022 -0400 + + Update docs/User-Experience/Research-Syntheses/2022, Summer - TDP 2.0 Pilot Program.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 0c637c85f42fc1b940bdc8cfb6e61bf69e64fc50 +Author: Miles Reiter +Date: Mon Sep 26 11:14:21 2022 -0400 + + Update docs/User-Experience/Research-Syntheses/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 10c3e1aee2511316310bf2e070e3f29dc475e5fd +Author: Miles Reiter +Date: Thu Sep 22 23:10:50 2022 -0400 + + Update README.md + +commit f44e41af3b1cbe51573f5460b4ca441a95d50244 +Author: Miles Reiter +Date: Thu Sep 22 23:02:13 2022 -0400 + + Create 2022, Summer - TDP 2.0 Pilot Program.md + +commit 1f497a8149405e4f3c1314983a1695c529537225 +Author: Jan Timpe +Date: Tue Sep 6 10:18:21 2022 -0400 + + update nginx and python buildpacks + +commit 0707d063a8d943fea682ba6d54d870699571fd64 +Merge: f8c0c84dc 22cfcb4d1 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Oct 18 08:01:27 2022 -0400 + + Merge pull request #2189 from raft-tech/release/v2.1.0 + + Release/v2.1.0 + +commit 97cd5175b8c236b953fe4c7e722666d003a8b6d9 +Author: Cameron Smart +Date: Mon Oct 17 10:07:52 2022 -0700 + + linting + +commit 9dadc38cab8b20923074832d70f1fe902f65644d +Merge: a42d5e6a7 22cfcb4d1 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Oct 14 14:18:40 2022 -0400 + + Merge branch 'release/v2.1.0' into feat/1814-account-access-emails + +commit 22cfcb4d16a5cace083154b69a88e221c0a28943 +Merge: c7895e948 6e938d4c9 +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Oct 14 13:37:05 2022 -0400 + + Merge pull request #2190 from raft-tech/release-v2.1-update + + Release v2.1 update + +commit 6e938d4c9207ead26561f4d46e81027de2496e74 +Author: Cameron Smart +Date: Thu Oct 13 11:26:35 2022 -0700 + + fix palley + +commit 753f10bc27281f58286bec2f57532cf67a581cda +Author: Cameron Smart +Date: Thu Oct 13 11:17:13 2022 -0700 + + fixed errors caused by merge + +commit 436f14a5fd67e47ffb67c38f7cbe98adfe1db475 +Merge: c7895e948 f8c0c84dc +Author: Cameron Smart +Date: Thu Oct 13 10:39:08 2022 -0700 + + Merge branch 'develop' into release/v2.1.0 + +commit a42d5e6a7a6c6bb0d4a9199024e69e5599aa64fd +Author: Cameron Smart +Date: Wed Oct 12 07:26:59 2022 -0700 + + revert config form test mode + +commit d71af803a1d857d443be4bab4a3104ba7497e14c +Author: Cameron Smart +Date: Tue Oct 11 19:03:37 2022 -0700 + + adressing pr comments + +commit 4079197ef367783932db0fcf8d1cba8c7dee45dc +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Oct 11 16:19:20 2022 -0700 + + Create sprint-57-summary.md + +commit 9d2a6955145f75530739661790d2f7d144a05ba2 +Author: Cameron Smart +Date: Fri Oct 7 12:01:15 2022 -0700 + + more logs + +commit 201d03a240907357b9e6a0d51602cd90a6b0631d +Author: Cameron Smart +Date: Fri Oct 7 11:40:37 2022 -0700 + + force deploy to sandbox + +commit e264ad6c90f28fe0f07ed4079ff4c9c1dd491c0a +Author: Cameron Smart +Date: Fri Oct 7 11:36:53 2022 -0700 + + prints for testing + +commit c1266f594eb89832f1debfaf083396abf42a90dd +Author: Cameron Smart +Date: Fri Oct 7 10:47:55 2022 -0700 + + Use base.html to extend templates + +commit 23949336d69a3ce68cffb896a1a66c2f777dcfef +Author: Cameron Smart +Date: Fri Oct 7 10:10:10 2022 -0700 + + add one more test, fix email + +commit d2db3a8e8025d6edaede161c0e34f8f492ee8bae +Author: Cameron Smart +Date: Wed Oct 5 17:07:03 2022 -0700 + + fix errors caused by merge, linting + +commit e63ca3efb989de9033dedb709081045ea60c9bf9 +Author: Cameron Smart +Date: Wed Oct 5 16:45:06 2022 -0700 + + Tested account status emails. Linting + +commit 0ffb99fd3e786741cbdce37a1f814cfca7bd7864 +Author: Jan Timpe +Date: Wed Oct 5 16:40:07 2022 -0700 + + Override save and from db to send emails. + When a change is made to the user account approval status an email will be triggered + Co-authored-by: Cameron Smart + +commit d1eda172f9e883f7fe16cd3b5fd813563ecadfe8 +Merge: a2c29efdf 68072aeee +Author: Cameron Smart +Date: Wed Oct 5 16:24:39 2022 -0700 + + Merged in need account approval code + Merged 68072aeee2edc62232f59fa7eb7844a5251e2c03 + +commit a2c29efdf720a907f0d147f407ba3cfa252eb07d +Author: Cameron Smart +Date: Wed Oct 5 15:43:26 2022 -0700 + + update test name + +commit 244e37c7564a9d8eae40b78fba5b21cb9e788199 +Author: Cameron Smart +Date: Wed Oct 5 14:45:49 2022 -0700 + + Added more email templates + + Templates for access request, approved, denied, and deactivated + +commit 5a24165d4b515db568f73fc83bb61d5641c9a783 +Author: Jan Timpe +Date: Wed Oct 5 14:40:55 2022 -0700 + + Logic to send emails all in email.py + +commit c7895e948424b1a2bbe10ab15f05b1cc725e02a1 +Merge: d0fb5cf86 39d18f7ff +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 5 16:58:50 2022 -0400 + + Merge pull request #2129 from raft-tech/feat/1952-celery-email-queue + + Feat/1952 celery email queue + +commit f8c0c84dc45fab335ade60987d1b5a991569ba5e +Merge: cff126aa5 4195bc03a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 5 12:31:14 2022 -0400 + + Merge pull request #2170 from raft-tech/bug/2102-label-owasp-scans-fail + + Bug/2102 label owasp scans fail + +commit 4195bc03a2b0f83335a10e9197da4c312de15beb +Merge: 7c129d889 cff126aa5 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Oct 5 12:23:47 2022 -0400 + + Merge branch 'develop' into bug/2102-label-owasp-scans-fail + +commit 39d18f7ff7b560ac6f0a9363f6a53cc11e9bced6 +Author: Cameron Smart +Date: Fri Sep 30 13:00:46 2022 -0700 + + linting + +commit f87e857faa305c8ee7c4fd00e26a36fb5bc8c91a +Author: Cameron Smart +Date: Fri Sep 30 12:56:17 2022 -0700 + + Another small change to doc string + +commit 69553b2c6b3e4fc177295d16c849cb82d83affb7 +Author: Cameron Smart +Date: Fri Sep 30 12:16:48 2022 -0700 + + small change to doc string + +commit d05639cfb6379685628ce80dc8578880eee28141 +Author: abottoms-coder +Date: Fri Sep 30 15:03:53 2022 -0400 + + Final clean-up commit done with Cameron for circleci and testing mail function + +commit e1c65adb1032a2b342fd40759daa87754a20bda9 +Author: abottoms-coder +Date: Fri Sep 30 14:26:37 2022 -0400 + + changing recipient for mail() and also adding redis as dependent service + +commit cff126aa5252f31be7103f89eb20981dee8d11ab +Merge: 01aa878f2 8329f73a0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 13:17:53 2022 -0400 + + Merge pull request #2155 from raft-tech/feat/2136-ACF-Titan-filename-from-STT-filename-table + + Feat/2136 acf titan filename from stt filename table + +commit 7c129d8893bc5baac4947e91ea7bdfa8c2a9b2f8 +Author: Cameron Smart +Date: Thu Sep 29 09:52:03 2022 -0700 + + Run scans when label is added + +commit 8329f73a0dd695ebef425516aa455592d103792a +Merge: d10e7ba18 01aa878f2 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 12:36:56 2022 -0400 + + Merge branch 'develop' into feat/2136-ACF-Titan-filename-from-STT-filename-table + +commit 01aa878f238052f976358355c66f8a0e93f9bf3e +Merge: c5d60bf5f 56ff8d026 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 12:25:53 2022 -0400 + + Merge pull request #2167 from raft-tech/stevenino-patch-3 + + Create sprint-56-summary.md + +commit 56ff8d0262dd0e09aa1ed238e22a64ced00191b9 +Merge: 539b1f6d2 c5d60bf5f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 12:19:43 2022 -0400 + + Merge branch 'develop' into stevenino-patch-3 + +commit c5d60bf5fef62cb2cde55084931d5f05e61f09bc +Merge: ca6266a03 ead0eb819 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 12:19:32 2022 -0400 + + Merge pull request #2139 from raft-tech/stevenino-patch-4 + + Create sprint-55-summary.md + +commit ead0eb819940f5aa65992bf75dc38ce1428ec345 +Merge: 27542bb21 ca6266a03 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 12:07:05 2022 -0400 + + Merge branch 'develop' into stevenino-patch-4 + +commit ca6266a03debba4fdad07adb3880f4f8ab6e1275 +Merge: bc94f4e93 e22e8d0b9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 29 12:06:58 2022 -0400 + + Merge pull request #2157 from raft-tech/project-updates-and-knowledge-center-updates + + Updates & Enhancements to Project Updates / Knowledge Center + +commit e22e8d0b91579c480c1e6ccabc19d0f293166086 +Merge: 3db920dc8 bc94f4e93 +Author: Miles Reiter +Date: Wed Sep 28 14:35:11 2022 -0400 + + Merge branch 'develop' into project-updates-and-knowledge-center-updates + +commit 3db920dc8765c9a9cdc52ff62492871103d2f6b2 +Author: Miles Reiter +Date: Wed Sep 28 14:34:15 2022 -0400 + + Correct title tag + +commit fe095f763d0f5ba941ab41e4bdda9a30c95e1aab +Author: Cameron Smart +Date: Wed Sep 28 10:21:34 2022 -0700 + + disable proxy pass + +commit 2944fa9e64c75b4cd8a482195c656febba166d35 +Author: Cameron Smart +Date: Wed Sep 28 09:56:12 2022 -0700 + + test owasp + +commit 27542bb21e108467ed5755aaec9bff41525dd883 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 08:00:32 2022 -0700 + + Update docs/Sprint-Review/sprint-55-summary.md + +commit 85d0647b4148cc9f19ca246156ac4dec6519c3dc +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 08:00:20 2022 -0700 + + Update docs/Sprint-Review/sprint-55-summary.md + +commit 539b1f6d285c0ffee4847dde2e83561079eda1fe +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 07:28:29 2022 -0700 + + Update docs/Sprint-Review/sprint-56-summary.md + +commit d6c7dd73ffcaa5dfda7f007b6e2d68edf6cfa13c +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 07:28:20 2022 -0700 + + Update docs/Sprint-Review/sprint-56-summary.md + +commit 03ec923540d21dcbab38388c1304ca13b95a5b81 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 28 07:28:10 2022 -0700 + + Update docs/Sprint-Review/sprint-56-summary.md + +commit 6996e4803cb5633c7a3f29887f1abf9fb559d78c +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Sep 27 17:04:14 2022 -0700 + + Create sprint-56-summary.md + +commit bc94f4e931ad993eb646eac42828a8bf5a12388e +Merge: 591b92a0a 814b33ec9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 27 14:27:45 2022 -0400 + + Merge pull request #2156 from raft-tech/docs/pilot-synthesis + + Docs/pilot synthesis + +commit ca7ce6095aec2bbe18ac22d385090bb0169aa2d1 +Author: Cameron Smart +Date: Tue Sep 27 11:24:42 2022 -0700 + + testing email + +commit 27e211623410396b815e6dcafc4e7789e1ca4f09 +Author: Cameron Smart +Date: Tue Sep 27 11:05:54 2022 -0700 + + testing email + +commit 814b33ec901cfc4595c5dcd05f4487928dc0fa28 +Merge: 1f26ec472 591b92a0a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 27 13:57:34 2022 -0400 + + Merge branch 'develop' into docs/pilot-synthesis + +commit 591b92a0a315a04bd2093e8d85f6a1225332b90e +Merge: 0a8e9c664 6379509cc +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 27 13:57:27 2022 -0400 + + Merge pull request #2143 from raft-tech/fix/approved-with-no-role-bug + + Fix/approved with no role bug + +commit 8030f0522143d6691b59cf593fba0151f4c1325a +Author: Cameron Smart +Date: Tue Sep 27 09:21:52 2022 -0700 + + deploy to sandbox + +commit d37f9fe3c6d22d57aa1f954870fe2b6f3063451d +Author: Cameron Smart +Date: Tue Sep 27 09:13:53 2022 -0700 + + test with email server + +commit d10e7ba18bdae938ac8259f86702ed0ba9e5181b +Author: msohanifr +Date: Tue Sep 27 05:50:44 2022 -0400 + + Revert "Update README.md" + + This reverts commit b0cb11787c72360312328cfd26ea9ddc4e462c6c. + +commit 6a7ffe864f7bfed95234cbda2c1c251490f8f8e7 +Author: raftmsohani +Date: Mon Sep 26 14:25:07 2022 -0400 + + linting + +commit 4600bcc0a2a547bec80f3bbb4d0bb9bdb3c72eee +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Sep 26 14:11:28 2022 -0400 + + Update models.py + + Changed to include 'Tribal' interim section logic. + +commit 6379509cc06c1877997c603402157adc5d5c1444 +Merge: 838928111 0a8e9c664 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Sep 26 13:41:11 2022 -0400 + + Merge branch 'develop' into fix/approved-with-no-role-bug + +commit 7ec501c465dabca763ad56d8e843b6fcbdfaf38d +Merge: 08f13a05c 0a8e9c664 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Sep 26 12:48:06 2022 -0400 + + Merge branch 'develop' into project-updates-and-knowledge-center-updates + +commit 1c985c5ea05ca7264e01c1cc02c1f8403e9a7b20 +Author: Cameron Smart +Date: Mon Sep 26 09:28:21 2022 -0700 + + remove docstrings, other small changes from pr review + +commit b0cb11787c72360312328cfd26ea9ddc4e462c6c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Sep 26 12:28:04 2022 -0400 + + Update README.md + + trivial change. + +commit 1f26ec472d0fa799ecf286fd5a2aa97aa7ad8f91 +Merge: 351278f90 0a8e9c664 +Author: Miles Reiter +Date: Mon Sep 26 11:14:39 2022 -0400 + + Merge branch 'develop' into docs/pilot-synthesis + +commit 351278f909787a70109221047451ded3298ba39e +Author: Miles Reiter +Date: Mon Sep 26 11:14:32 2022 -0400 + + Update docs/User-Experience/Research-Syntheses/2022, Summer - TDP 2.0 Pilot Program.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit cbd73f0f5cb8dcdd1e141294828aa495300c36ed +Author: Miles Reiter +Date: Mon Sep 26 11:14:21 2022 -0400 + + Update docs/User-Experience/Research-Syntheses/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit d601559c1b3745174419ddd20ae8a9dad6923374 +Merge: e8535be82 0a8e9c664 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Sep 26 09:42:26 2022 -0400 + + Merge branch 'develop' into feat/2136-ACF-Titan-filename-from-STT-filename-table + +commit 221be5001fd00d18dad75633f48cc13ee010f8f1 +Author: Cameron Smart +Date: Fri Sep 23 11:25:06 2022 -0700 + + Removing unnessesary validators, fix tests + +commit 0a8e9c6643fd7e51928bc924a3ba35e7d46100db +Merge: 5b55cadef f695c53bc +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 23 10:58:10 2022 -0400 + + Merge pull request #2126 from raft-tech/stevenino-patch-3 + + Create sprint-54-summary.md + +commit 08f13a05cd5c87c7fb5ccf80420552c3c8a26d62 +Author: Miles Reiter +Date: Thu Sep 22 23:22:05 2022 -0400 + + Copies over all changes from test environment + +commit a3879dce175fcd101cbce3a1769873e7c9066971 +Author: Miles Reiter +Date: Thu Sep 22 23:10:50 2022 -0400 + + Update README.md + +commit 9ba1f90f1c6de5bf5cd6f67d2582eb4cee9d9d46 +Author: Miles Reiter +Date: Thu Sep 22 23:02:13 2022 -0400 + + Create 2022, Summer - TDP 2.0 Pilot Program.md + +commit 95b342379b6647cfbc9bf56560a22c89981da46a +Author: Cameron Smart +Date: Thu Sep 22 10:26:37 2022 -0700 + + numpy style docstring + +commit 813d52a8e452cd6a1b0ced99f92956d3f03194bc +Author: Cameron Smart +Date: Thu Sep 22 09:46:24 2022 -0700 + + Comments from pr. + + Removed testing code from config, consolidated validations + +commit e8535be8254dc5c76d8e7d993319035e1d348264 +Author: raftmsohani +Date: Thu Sep 22 11:06:40 2022 -0400 + + removed new filename method + +commit f695c53bc5b4de5f8dd1e5df319b756437585c7b +Merge: acd07a88a 5b55cadef +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 22 10:04:53 2022 -0400 + + Merge branch 'develop' into stevenino-patch-3 + +commit d0fb5cf8653eb21c8436def2310cb2a4ec4be3b6 +Merge: 9772bf7da 6406be627 +Author: abottoms-coder +Date: Tue Sep 20 13:52:55 2022 -0400 + + Merge conflict resolution on pipfile.lock + +commit 55248bec5d4b2310d401c9444e3bac75dbb71106 +Author: Cameron Smart +Date: Mon Sep 19 14:16:32 2022 -0700 + + better comments + + confirmed that celery works as expected + +commit 957f6cd5d3d34c6e66fd408f79e6a180c5beb693 +Author: Cameron Smart +Date: Mon Sep 19 10:27:53 2022 -0700 + + raise exception when no emails sent + +commit 08c795db3821d33e55c1523b43a0a5333ed1211e +Author: Cameron Smart +Date: Mon Sep 19 10:16:02 2022 -0700 + + only need one shared task + +commit 69e8c6b39f0150c61d5c08c3356b34b74a890890 +Author: Cameron Smart +Date: Mon Sep 19 08:57:01 2022 -0700 + + test emails + +commit 785cabced84a23e9dade2b84b306453bb537c16c +Author: Cameron Smart +Date: Fri Sep 16 13:10:02 2022 -0700 + + fix test + +commit d4f75699944e58fcc9a408b4802295a7da7f0ebe +Author: Cameron Smart +Date: Fri Sep 16 12:37:26 2022 -0700 + + linting + +commit 4eec855f33e33a71e2d396afc9eca317e0e09232 +Author: Cameron Smart +Date: Fri Sep 16 12:24:07 2022 -0700 + + Better error handeling. + +commit 9772bf7dacda014ce186828d288364956d751253 +Merge: 7a26c8d5a 5344c3983 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 16 12:31:43 2022 -0400 + + Merge pull request #2147 from raft-tech/2138-ez-merge + + 2138 - increase pagination + +commit 9f33650cd01c52b5665929b277f1da65c1e70484 +Author: Cameron Smart +Date: Fri Sep 16 09:29:27 2022 -0700 + + one more type + +commit e1b9b358760a5c87633b6b2cb71b32710eee0dcb +Author: Cameron Smart +Date: Fri Sep 16 09:27:48 2022 -0700 + + removed unused files. + +commit 5344c398320c0140b7dd95547eadd517d01e7f6e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 16 12:23:33 2022 -0400 + + 2138 - increase pagination + +commit 7a26c8d5aeab40be911558453508328506763d74 +Merge: bf1d89e46 af5f23b85 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 16 10:26:42 2022 -0400 + + Merge pull request #1918 from raft-tech/feat/1133-files-transferred-to-ACF-Titan + + feat 1133 files transfer to ACF Titan + +commit 5b55cadefeac33c1427467022170bbe2a5fd8103 +Merge: 5eb027751 d53c0e2de +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 16 10:26:03 2022 -0400 + + Merge pull request #2114 from raft-tech/chore/restage-buildpack-envs + + Chore/restage buildpack envs + +commit 81d90820b619d17cf9c1292f772f07dbc0fd395a +Author: Cameron Smart +Date: Thu Sep 15 14:19:46 2022 -0700 + + remove test code + +commit 2499d29e19c96b60479f1292d2a548cf6436efb5 +Author: Cameron Smart +Date: Thu Sep 15 13:01:09 2022 -0700 + + one more fix + +commit 324562cfab593be85768e038c4e450acf93f7c93 +Author: Cameron Smart +Date: Thu Sep 15 12:32:15 2022 -0700 + + actualy fixed the emails this time + +commit a9e0ea707672bb56ac9fd5b71d9743dbc68c5372 +Author: Cameron Smart +Date: Thu Sep 15 11:53:27 2022 -0700 + + testing email, getting tests to pass + +commit 620b5df98ce5f64ef9bc0c3eeb7f81c0cf05ac4c +Author: Cameron Smart +Date: Thu Sep 15 11:42:26 2022 -0700 + + fixes to tests and send mail function params + +commit d53c0e2de6592cbb02c52e1a750482a8636a05f9 +Merge: e67929510 5eb027751 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Sep 15 13:38:15 2022 -0400 + + Merge branch 'develop' into chore/restage-buildpack-envs + +commit 988666e178b34910890f573303897c4a1e0a66d3 +Author: Cameron Smart +Date: Thu Sep 15 10:05:35 2022 -0700 + + remove garbage import + +commit 37ec515616075428a15975be48acb2a801538872 +Author: Cameron Smart +Date: Thu Sep 15 10:00:25 2022 -0700 + + fixed tests, testing subbmit data email, deploy to staging. + +commit 29c7162c0bb44d04a768f50aa028f71e269a91ca +Author: Cameron Smart +Date: Thu Sep 15 09:40:32 2022 -0700 + + using EmailMultiAlternatives for text and html emails + +commit 838928111d1b404513e21665a486bda2a7807146 +Author: Jan Timpe +Date: Thu Sep 15 11:23:25 2022 -0400 + + update timeout to match component timeout + +commit baac0b49c2ce4000723a8d0374635b7bb11e105e +Author: Jan Timpe +Date: Thu Sep 15 11:05:37 2022 -0400 + + add back welcome text + +commit 7ddc1a5ae91f956bbe2c60249589610336bf51a8 +Author: Jan Timpe +Date: Thu Sep 15 10:43:22 2022 -0400 + + fix user approved but not assigned role bug + +commit 7febba0489203ec26519b25cb7ad951e07a36551 +Author: Jan Timpe +Date: Thu Sep 15 10:43:05 2022 -0400 + + add new user role selectors + +commit 89ae5c1e27e08722d7dd126d3f1e27963cba241a +Author: Cameron Smart +Date: Wed Sep 14 17:27:32 2022 -0700 + + fixed tests + +commit 85a7da764480457f8baf5eb31ce31769cc20432d +Author: Cameron Smart +Date: Wed Sep 14 16:59:57 2022 -0700 + + fixed linting + +commit f1fb6689883d6b8f45d111bba4def8bc142c15d1 +Author: Cameron Smart +Date: Wed Sep 14 16:32:37 2022 -0700 + + added tests + +commit 6fcf6744d621e6c78a2f1e5ac2f4bde3e327aceb +Author: Cameron Smart +Date: Wed Sep 14 13:23:47 2022 -0700 + + log response + +commit 2a25cb3865e9f498b9f6e10a557f6c8b0f79a702 +Author: Cameron Smart +Date: Wed Sep 14 12:36:45 2022 -0700 + + deploy to raft + +commit 665520f52388033e869980348a4019cbbf59a5f1 +Author: Cameron Smart +Date: Wed Sep 14 12:30:44 2022 -0700 + + added email template and enums + +commit aa372202acce8cbd85a61f7615d2023035dc524e +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Sep 14 09:42:27 2022 -0700 + + Create sprint-55-summary.md + +commit af5f23b85b6f53ddab3d25be4685209c33c85cfe +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Sep 14 10:16:04 2022 -0400 + + Updated the comment + +commit c534e51b3f6a7b3ecc6a3346c8ac7b8a45014c7e +Merge: 1e0e4fb1e 3bb65174a +Author: raftmsohani +Date: Tue Sep 13 18:12:26 2022 -0400 + + merged 2090 + +commit 1e0e4fb1efa687f8ad235ee8b8159df0dbb172c2 +Author: Cameron Smart +Date: Tue Sep 13 14:51:26 2022 -0700 + + removed label force + +commit 3bb65174a88705462c1ee82f62554531528c46e4 +Author: raftmsohani +Date: Tue Sep 13 17:41:27 2022 -0400 + + changed the logic + +commit ce849d70429bbb989038205ed8475c64d1a5cae6 +Author: Cameron Smart +Date: Tue Sep 13 12:41:07 2022 -0700 + + force deployment when label is set to QASP REVIEW + +commit 1b622a4a4789479c78a2ab69855e67e25103fe1c +Author: Cameron Smart +Date: Tue Sep 13 09:17:34 2022 -0700 + + added email host variables + +commit 1b613fca3113dc9c6bedefaa2d32912af433f74c +Author: Cameron Smart +Date: Tue Sep 13 09:12:41 2022 -0700 + + added email tests + +commit a595f75e1760ac191c3d79ffc1ece3dd50ec78e6 +Author: Cameron Smart +Date: Tue Sep 13 09:12:15 2022 -0700 + + added email functions + +commit bf1d89e4668bc52027f2b528dfe2b271ad4aa62b +Merge: 857f2f94b fac3ac991 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 13 10:36:55 2022 -0400 + + Merge pull request #2128 from raft-tech/feat/catch-up-2.1.0 + + Feat/catch up 2.1.0 + +commit 5eb027751cb8632955689312d28d1f7d04e1cbc7 +Merge: 51217e381 68072aeee +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 13 08:50:32 2022 -0400 + + Merge pull request #2074 from raft-tech/feature/account-approval-statuses + + Account approval statuses + +commit 68072aeee2edc62232f59fa7eb7844a5251e2c03 +Merge: c841a95b6 51217e381 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Sep 13 08:41:13 2022 -0400 + + Merge branch 'develop' into feature/account-approval-statuses + +commit 51e676f71cc4b61545dadd333b0fca336dbc4e78 +Merge: 6c8f2e613 6cc737c90 +Author: raftmsohani +Date: Mon Sep 12 21:15:58 2022 -0400 + + corrected Tribe logic + +commit 6cc737c9084b0d5cd3bcfe25814147e46cb0407a +Author: raftmsohani +Date: Mon Sep 12 21:06:59 2022 -0400 + + corrected Tribe logic + +commit acd07a88a7d339d1dcace297b04c7e4e54187112 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Sep 12 16:28:30 2022 -0700 + + Create sprint-54-summary.md + +commit c841a95b655c717f7695c7ddd0e2ec2639996167 +Merge: 5e1957e6b 3d862b660 +Author: Jan Timpe +Date: Mon Sep 12 16:45:12 2022 -0400 + + Merge branch 'feature/account-approval-statuses' of github.com:raft-tech/TANF-app into feature/account-approval-statuses + +commit 5e1957e6b5a46c51d2dc571e9982478f3353abe9 +Author: Jan Timpe +Date: Mon Sep 12 16:45:07 2022 -0400 + + update user.deactivated reference + +commit 51217e38180db2d3c353393df41f11c0e68d3bf3 +Merge: 522e4b48d da31f1a69 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Sep 12 11:31:22 2022 -0400 + + Merge pull request #2110 from raft-tech/doc/1980-update-repo-readme + + Issue 1980: Update repo readme with security policy links and prod build metrics + +commit 6c8f2e613a217d261da49b3d37a8f7e246d7b204 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Sep 12 11:01:38 2022 -0400 + + Update models.py + +commit da31f1a6982e77ff0d004a7751e942ab75b2aabc +Merge: 3a57f5d63 522e4b48d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Sep 12 10:15:14 2022 -0400 + + Merge branch 'develop' into doc/1980-update-repo-readme + +commit 522e4b48dfa5c1fa84d570dd4b3d7b08c834f356 +Merge: 08ff803fe 6406be627 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Sep 12 09:22:00 2022 -0400 + + Merge pull request #2107 from raft-tech/feat/2054-owasp-scans-copied-to-prod-backend + + 2054 Owasp scans copied to prod DAC + +commit 857f2f94baff35f46e1db561239a71018b1785e0 +Merge: c9c11ac8f bb8e4339d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Sep 12 09:21:22 2022 -0400 + + Merge pull request #2089 from raft-tech/1979-vulnerability-disclosure-policy-link-to-TDP-frontend + + 1979 vulnerability disclosure policy link to tdp frontend + +commit 3a57f5d63a3d1b1b0791fda0cfa8cb70967f59e9 +Merge: df7de368d 08ff803fe +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Sep 9 15:24:50 2022 -0400 + + Merge branch 'develop' into doc/1980-update-repo-readme + +commit 6406be627d85092c65eea49283dd869e5dabfd1a +Merge: 9d5d24808 08ff803fe +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Sep 9 13:09:18 2022 -0400 + + Merge branch 'develop' into feat/2054-owasp-scans-copied-to-prod-backend + +commit 9d5d2480821478063ecef4f6e62475cf8e428ea5 +Author: Cameron Smart +Date: Fri Sep 9 09:49:51 2022 -0700 + + cleaner way to get project slug + +commit bb8e4339d3e13154ce51e46c1720dc74580e8c43 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Sep 9 12:39:19 2022 -0400 + + Update footer with capital Policy + +commit 8ae575c75c7c92a9dec2713c8dedb036f969702d +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Sep 9 12:10:20 2022 -0400 + + Updated test for Policy + +commit a1013c848f98a8473416548a3b6f4acda77442e7 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Sep 9 12:08:08 2022 -0400 + + Changed policy to capital + +commit bc08c381221bdf80ff41d1f5304e001359d43dec +Merge: d2513701b 642d573c0 +Author: raftmsohani +Date: Fri Sep 9 08:19:50 2022 -0400 + + Merge branch 'feat/2090-Transferred-files-must-renamed-ACF-Titan' into feat/1133-files-transferred-to-ACF-Titan + +commit 642d573c017abf42068b4516a7bc8e1640b164c3 +Author: raftmsohani +Date: Thu Sep 8 10:38:56 2022 -0400 + + linting + changed test file + +commit 5e916a837eb87053ded539b0e63752172968fb7b +Author: Cameron Smart +Date: Wed Sep 7 15:10:24 2022 -0700 + + better formatting and comments + +commit 58f9d2ce919ae32c9c9d844aaba4bb1ca5b27d00 +Author: Cameron Smart +Date: Wed Sep 7 15:03:54 2022 -0700 + + use sed to get slug from circle ci pipeline variables + +commit 3cd30dd11c21b68dcd679a1a05636bcc0e35d02c +Author: Cameron Smart +Date: Wed Sep 7 15:01:47 2022 -0700 + + added param type + +commit fb2c4b67f568005df89b44fdc05cd5a0d49986ae +Author: Cameron Smart +Date: Wed Sep 7 14:54:30 2022 -0700 + + set project slug from pipeline var + +commit 01aad6c3247067dc8f34deeca5b19e0ad1e42ecd +Author: Cameron Smart +Date: Wed Sep 7 12:08:49 2022 -0700 + + added better logs + +commit 3d862b660cb1d20a3870123b89ed3e0d0c3d5dd1 +Merge: 313a372a2 08ff803fe +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Sep 7 14:12:08 2022 -0400 + + Merge branch 'develop' into feature/account-approval-statuses + +commit d2513701bac3e8a208eaa5729c402e8f909fc9d8 +Author: raftmsohani +Date: Wed Sep 7 10:18:50 2022 -0400 + + linting + +commit 29259957e56e926039f7123604f27414a8f836b1 +Author: raftmsohani +Date: Wed Sep 7 10:09:45 2022 -0400 + + changed method to use property + +commit 728a71d21a992cdfa9f8908d4543d8ad20801aab +Author: raftmsohani +Date: Tue Sep 6 11:10:47 2022 -0400 + + changed stt.filename to return Tribal filename and added comment on TODO refactor + +commit 82b508e1e69d695963536699abacbbdb0bda8725 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue Sep 6 10:22:45 2022 -0400 + + Update sftp_upload task to use filename + + Updated the upload task to use filename instead of create_filename. The filename() method returns the filename based on STT code + +commit e679295105fac025e8488ab5b80deb601dc3e84d +Author: Jan Timpe +Date: Tue Sep 6 10:18:21 2022 -0400 + + update nginx and python buildpacks + +commit 08ff803fe3bebaf2bcce53149aa13afa33c67871 +Merge: e82e904d9 62e3929d3 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:59:44 2022 -0400 + + Merge pull request #2063 from raft-tech/stevenino-patch-2 + + Create sprint-53-summary.md + +commit 62e3929d3161b44b367ca65843064d49f0ef0f1b +Merge: 3a97eefd3 e82e904d9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:51:35 2022 -0400 + + Merge branch 'develop' into stevenino-patch-2 + +commit e82e904d9f4dcf8f2ce349c0897567c2d5e3c839 +Merge: 474e9145e 8eefb02fa +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:49:45 2022 -0400 + + Merge pull request #2045 from raft-tech/feat/CVE-2022-36359-django-update-3-2-15 + + Feat/CVE 2022 36359 django update 3 2 15 + +commit 8eefb02fa9f4c82773e9693e716f31849be6f0d2 +Merge: b5533e034 474e9145e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:44:39 2022 -0400 + + Merge branch 'develop' into feat/CVE-2022-36359-django-update-3-2-15 + +commit 474e9145ec4cde60f806980264040bc6fa736b55 +Merge: 2b87189a8 10ec910c2 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:41:53 2022 -0400 + + Merge pull request #1922 from raft-tech/adpennington-patch-1 + + Update security control implementation statements + +commit 10ec910c2ca8707b47f26ae89e4919a4d359cb7f +Merge: 15067e6bf 2b87189a8 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:29:56 2022 -0400 + + Merge branch 'develop' into adpennington-patch-1 + +commit b5533e03498afde1b9d58432969a9e8b9df21d6d +Merge: 1ef74e14e 2b87189a8 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Sep 2 11:25:15 2022 -0400 + + Merge branch 'develop' into feat/CVE-2022-36359-django-update-3-2-15 + +commit 73699e31151998cbbfdeb41fbc5f4b5e8d480e12 +Author: raftmsohani +Date: Fri Sep 2 10:29:04 2022 -0400 + + linting + +commit df7de368dad218806bb9855bfc32927fe9a50d52 +Author: Pennington +Date: Thu Sep 1 14:02:36 2022 -0400 + + formatting + +commit 3d33184fb442e8de43e2bdaad2dcec1412e3d9c3 +Author: Pennington +Date: Thu Sep 1 14:01:57 2022 -0400 + + update circle config to track codecov on master + +commit fa243f7123393927679e0b0b863ede26ec062971 +Author: Pennington +Date: Thu Sep 1 13:56:30 2022 -0400 + + update ADR005 to document decision to move away from NextGen + +commit cec6b96121e2abcf70e11477dcf29ace329bb7b4 +Author: Cameron Smart +Date: Tue Aug 30 15:16:43 2022 -0700 + + change project slug arg in circle ci. + force pushed because I accidentally added a commit to the wrong branch and removed it. + +commit 5d8aa1bb324d763f056f2a3b480802f8bed31f71 +Author: Pennington +Date: Thu Sep 1 11:58:40 2022 -0400 + + add links to privacy and vulnerability disclosure policies + +commit f75378e74a07b0d8f045c9fabc731d4554b57434 +Author: Pennington +Date: Thu Sep 1 11:41:16 2022 -0400 + + replaced references to nextgen with logingov + +commit 0f6f4a2b447a4802f2933071c1ba42d032b75d8d +Author: Pennington +Date: Thu Sep 1 11:39:33 2022 -0400 + + added production column to build table + +commit 313a372a2e09beab5c6c3d8845a43dcaf37e4e40 +Author: Jan Timpe +Date: Wed Aug 31 14:40:06 2022 -0400 + + add comment explaining admin user validation change + +commit 8d28bfe53aa0e5c3d2b028ef613a1e5556ca44d1 +Merge: 0fad2a175 2b87189a8 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Aug 30 17:14:36 2022 -0400 + + Merge branch 'develop' into doc/1104-boundary-diagram + +commit 0fad2a1753146ef829655e349fb33e1954c8b6c6 +Author: Pennington +Date: Tue Aug 30 16:48:30 2022 -0400 + + updated boundary diagrams for release 1 and 2+ + +commit 2b87189a8177cb2bbd92fecf0fe565ad222e923b +Merge: 0af229d63 f9c23d21f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 30 16:47:00 2022 -0400 + + Merge pull request #2099 from raft-tech/release/v2.0.1 + + Release/v2.0.1 + +commit f9c23d21f2e766762e1e7205752935af1a0b6a89 +Merge: fac3ac991 0af229d63 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 30 16:39:15 2022 -0400 + + Merge branch 'develop' into release/v2.0.1 + +commit 0af229d636050ef800e468407b5f92c94c13423e +Merge: e09f5c2be 37c5a2624 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 30 16:39:03 2022 -0400 + + Merge pull request #2098 from raft-tech/release/v2.0.0 + + Release/v2.0.0 + +commit 37c5a26249d16675e51d7471187630d4409b3e10 +Merge: aa3b9ecd9 e09f5c2be +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 30 16:32:16 2022 -0400 + + Merge branch 'develop' into release/v2.0.0 + +commit 4da951ada1b60933b854f4162461bfa6de60e9f7 +Author: raftmsohani +Date: Mon Aug 29 16:56:02 2022 -0400 + + added link to site map + +commit 7f9d63deeb2b9ebabf8de3c21e848e5c569ebc78 +Author: raftmsohani +Date: Mon Aug 29 16:31:03 2022 -0400 + + linting + +commit d0fe0d602fb330a026d9460d4d2fc3b28894d7a6 +Author: raftmsohani +Date: Mon Aug 29 15:34:38 2022 -0400 + + linting + +commit f9f67d7f25878df0e0585ac3ad361831028fe639 +Author: raftmsohani +Date: Mon Aug 29 14:07:05 2022 -0400 + + linting + +commit aa08c9ecfe08f753b7a7b1c8dd0545b945ccc6d3 +Author: raftmsohani +Date: Mon Aug 29 13:58:13 2022 -0400 + + linting + +commit 187966d434026dcac5197762aa922c93bb6b6cca +Merge: 4a2b79d1a c9c11ac8f +Author: raftmsohani +Date: Mon Aug 29 13:07:34 2022 -0400 + + merg release/v2.1.0 + +commit 15067e6bf1126c6439e66115335b4eabaee821a1 +Merge: c2201a7ca e09f5c2be +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 29 10:57:43 2022 -0400 + + Merge branch 'develop' into adpennington-patch-1 + +commit fac3ac991aff168d78465a19b5d0ca0b88b95dbd +Merge: aa3b9ecd9 c13ba7134 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 29 10:56:38 2022 -0400 + + Merge pull request #2070 from raft-tech/main + + 2038 - CSRF settings Bug fix for non-production sites + +commit c1ea90231077a9cf5333c3e455d78f815dd2d89d +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri Aug 26 14:33:21 2022 -0400 + + Update tdrs-backend/tdpservice/scheduling/test/test_file_upload.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit c13ba71348a46cebeb752a99e693fdb6d936adc4 +Author: Cameron Smart +Date: Fri Aug 26 11:26:43 2022 -0700 + + remove changes that did not fix owasp + +commit 5a88aaf6e0b3d0b99079b081af2d675618b76af6 +Author: Cameron Smart +Date: Fri Aug 26 11:13:36 2022 -0700 + + fix build in Dockerfile for owasp scan + +commit 9e4df883e54db23d6acbed8b66fdb7816b76b517 +Author: Cameron Smart +Date: Fri Aug 26 09:45:27 2022 -0700 + + fix owasp scan + +commit 271dc53f81d614b0ac6790275c88d6bd6c73d327 +Author: raftmsohani +Date: Fri Aug 26 12:11:46 2022 -0400 + + corrected the directory config + +commit 4a2b79d1a9e0aeb64987d9a0f6341d17c2c2784a +Author: raftmsohani +Date: Fri Aug 26 11:10:28 2022 -0400 + + added link to footer + +commit c9c11ac8f3ca6ed1d381efcb93222b56b5857339 +Merge: 4852f108f 40d3a7525 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 26 10:52:55 2022 -0400 + + Merge pull request #2069 from raft-tech/feat/1787-site-map-redo + + Feat/1787 site map redo + +commit 887a210260eaa4d7e619f01eee41eea1f4dbe2cf +Author: raftmsohani +Date: Thu Aug 25 21:29:47 2022 -0400 + + Changed redis_server_local to TRUE + +commit f88eeeec2ea5cfe6fede538bec2ea577b1176442 +Author: raftmsohani +Date: Thu Aug 25 21:13:51 2022 -0400 + + Added env var for owasp scan to use redis + +commit 4681a0ecfc4a550829f61fc0f77fd53d0642a15b +Author: raftmsohani +Date: Thu Aug 25 20:52:00 2022 -0400 + + Added env var for local Redis + +commit 4dac74dc67f4a6d4e6c8866efce2d0faa79bb509 +Author: raftmsohani +Date: Thu Aug 25 20:26:50 2022 -0400 + + increase timeout for OWASP + +commit f1680f04a7ec2d23fbe57962c40f4e24a1af7e0d +Author: raftmsohani +Date: Thu Aug 25 11:06:03 2022 -0400 + + increase timeout for OWASP + +commit ed4c9fc0da94e09be94b4b7a6fcf882c664f012f +Author: raftmsohani +Date: Thu Aug 25 10:49:55 2022 -0400 + + correct typo + +commit 49292ba68df67c76e99e72d4c85b2d7ca0212dbe +Author: raftmsohani +Date: Wed Aug 24 09:43:57 2022 -0400 + + test file reference change + +commit 911705718a1993a76ab1c900e420d3ca4a68abdd +Author: raftmsohani +Date: Wed Aug 24 09:32:30 2022 -0400 + + linting, chaging upload filename, etc + +commit 6ecf745293241186f0319e8328129b5debf834e0 +Author: Cameron Smart +Date: Tue Aug 23 17:58:02 2022 -0700 + + syntax + +commit 5ba34057abe1fc2f613ea198c85f711abfc3d066 +Author: Cameron Smart +Date: Tue Aug 23 17:51:55 2022 -0700 + + remove unneeded comments + +commit c7d8d443d40c4f86539de6b7ffd5d2bc08256913 +Author: Cameron Smart +Date: Tue Aug 23 17:25:32 2022 -0700 + + removed 'unsafe-inline' + +commit 663271ff8f57de89580e10f48782e8dfa1612218 +Author: Cameron Smart +Date: Tue Aug 23 16:56:14 2022 -0700 + + added 'unsafe-inline' + +commit 433a577df81f40ec585d8ac423169815a1aafe52 +Author: Cameron Smart +Date: Tue Aug 23 16:30:25 2022 -0700 + + syntax + +commit fd01704b8cde77700c2aaf197d109834ec94a3c0 +Author: Cameron Smart +Date: Tue Aug 23 16:24:29 2022 -0700 + + test clamav + +commit 22c5d79a6bb4e07a3d795e7bb2d21af3ae1acc2a +Author: Cameron Smart +Date: Tue Aug 23 14:08:55 2022 -0700 + + add /scan to AV_SCAN_URL + +commit 7ade1a0ae3d8fa23e1ee38557a67b9858e050b72 +Author: Cameron Smart +Date: Tue Aug 23 08:57:01 2022 -0700 + + remove testing code + +commit e8cc8eab6c64abb06e311f5e4f7d239284b90056 +Author: raftmsohani +Date: Tue Aug 23 09:20:28 2022 -0400 + + ENV variable for specific ACF TITAN directory + +commit a1d8cb033d7e8924cadd23e0543e419eca1c91a2 +Author: raftmsohani +Date: Tue Aug 23 09:04:51 2022 -0400 + + python script to change EOL with _ + +commit 721c9a46696abeecb956d482b4735fcc35d549e2 +Author: Cameron Smart +Date: Mon Aug 22 14:14:09 2022 -0700 + + move SessionMiddleware to common + +commit 17611f0cc1e790470030136c1bf6b8604f1f73ec +Author: Cameron Smart +Date: Mon Aug 22 14:11:16 2022 -0700 + + deploy to prod and staging + +commit 22dfaa4fd91c50212b0fa9e4cc3b1675b4037036 +Author: Cameron Smart +Date: Mon Aug 22 13:57:15 2022 -0700 + + reorder middleware + +commit 77678d25a30af6cbdb0e00a810bf614ca291e6ea +Author: Cameron Smart +Date: Mon Aug 22 13:49:39 2022 -0700 + + deploy to staging only + +commit a8add49df95d04957ed3d35ae00172e95fbe4266 +Author: Cameron Smart +Date: Mon Aug 22 10:11:24 2022 -0700 + + added session cookies code to prod settings + +commit 6aabed7b00c023d8ff8009e4a9bc1b50ec3b0229 +Author: Jan Timpe +Date: Mon Aug 22 13:07:12 2022 -0400 + + rm comment + +commit 93392d25c090341c1545af486696477489c25e40 +Merge: 8541623c4 18ce590f9 +Author: Jan Timpe +Date: Mon Aug 22 13:06:29 2022 -0400 + + Merge branch 'feature/account-approval-statuses' of github.com:raft-tech/TANF-app into feature/account-approval-statuses + +commit 8541623c4bb6ae956964bc75286a1c7e5d8cf71a +Author: Jan Timpe +Date: Mon Aug 22 13:06:26 2022 -0400 + + allow saving user without group + +commit ee3cf93239dbe9eeca2914a4c8fbfdca0d0bd0e8 +Author: Cameron Smart +Date: Fri Aug 19 18:45:32 2022 -0700 + + use common.py from main-rewind + +commit 08e0536601faf798cdf4ebf8278a0c3de0e22489 +Author: Cameron Smart +Date: Fri Aug 19 18:15:55 2022 -0700 + + middleware for prod + +commit f7585d465f586dc4d03862cd494fad45efd32fc3 +Author: Cameron Smart +Date: Fri Aug 19 17:40:55 2022 -0700 + + removed prod middleware form common.py + +commit 175f2711c2fff52706917325d8c7c659fb76c719 +Author: Cameron Smart +Date: Fri Aug 19 17:02:10 2022 -0700 + + using env.development + +commit 77c1b2a39347e71092a2429ab80017693283f369 +Author: Cameron Smart +Date: Fri Aug 19 16:37:44 2022 -0700 + + spelling mistake + +commit 8dab23e22072f477f1745ec7f92b8fc0f4e34b6f +Author: Cameron Smart +Date: Fri Aug 19 16:01:05 2022 -0700 + + using ALLOWED ORIGIN + +commit abd3353c8d614f4d46562708977a333ce3b24849 +Author: Cameron Smart +Date: Fri Aug 19 12:49:37 2022 -0700 + + trying to get it to work on in just prod + +commit 18ce590f949df19f9d1484ad1875442f1124cf01 +Merge: ef79b7669 e09f5c2be +Author: jtimpe <111305129+jtimpe@users.noreply.github.com> +Date: Fri Aug 19 15:02:13 2022 -0400 + + Merge branch 'develop' into feature/account-approval-statuses + +commit b769eea4789a900a86e2e6a42de89b31fff08ad5 +Author: Cameron Smart +Date: Fri Aug 19 11:39:01 2022 -0700 + + revert last commit, use old version of nginx conf + +commit 0e56cf3eb26c7d0a5bafa3753b9660e6994adb90 +Author: Cameron Smart +Date: Fri Aug 19 11:20:54 2022 -0700 + + cookies in Access-Control-Allow-Headers + +commit 31fd0ba1e4b4e40569211a6ffeea39d47e293f24 +Author: Cameron Smart +Date: Fri Aug 19 10:31:10 2022 -0700 + + trigger pipeline + +commit ade2e76fcf20db9df0dd2586ba7687f541d0e38a +Author: Cameron Smart +Date: Fri Aug 19 10:30:38 2022 -0700 + + run on staging + +commit 98eb805ec1df81acb48a8ea224663ec7776eb68d +Author: Cameron Smart +Date: Fri Aug 19 10:29:14 2022 -0700 + + fix prod allowed hosts typo + +commit 0ceb241667fa6ab6212047eb66319060a9284636 +Author: Cameron Smart +Date: Fri Aug 19 10:20:31 2022 -0700 + + don't add prod vars in staging + +commit dd1f3407e39084ee2263c80062325cb20c652ed8 +Merge: 7e56b5b5c aa3b9ecd9 +Author: Cameron Smart +Date: Fri Aug 19 09:22:54 2022 -0700 + + merged releaseV2.0.1 to main + +commit e09f5c2becac2c3c28a9b493a7eb3efc1a231bd9 +Merge: 4852f108f 8a43fadeb +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 19 12:12:45 2022 -0400 + + Merge pull request #2025 from raft-tech/doc/1422-v1-ato-updates + + Release 1 ATO documentation updates + +commit ef79b76696e7111ca109b6bba44586836c2de80e +Author: Jan Timpe +Date: Fri Aug 19 11:43:29 2022 -0400 + + linter again. i ran it locally this time + +commit ce9bc5c18b34819c334f162e3d23c51d907c28e6 +Author: Jan Timpe +Date: Fri Aug 19 11:36:09 2022 -0400 + + appease the linter + +commit 57dd3f3d6ef8e8dc662e4cfcd0d7ef324d4a44f0 +Author: Jan Timpe +Date: Fri Aug 19 11:04:58 2022 -0400 + + accursed linting and leftover code + +commit 8a43fadeb7d510b068b29c95530e04d111122d63 +Merge: 6e58cc8a5 4852f108f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 19 11:01:28 2022 -0400 + + Merge branch 'develop' into doc/1422-v1-ato-updates + +commit 794bc08d1e7b547f79e2e3668dead7beca6068b1 +Author: Jan Timpe +Date: Fri Aug 19 10:48:09 2022 -0400 + + comment for discussion + +commit c19c04a80fbb3379a0d8c6ccfdd1ddbda1776572 +Author: Jan Timpe +Date: Fri Aug 19 10:33:11 2022 -0400 + + update usages of `access_request` to use new selectors + +commit 15ec3854f5ccb0f745e8f9534f3f2739f6f1a187 +Author: Jan Timpe +Date: Fri Aug 19 10:32:39 2022 -0400 + + create selectors for account status checks + +commit 6d667aa49b7405aecd969ec3a7cebb0ec212faa9 +Author: raftmsohani +Date: Fri Aug 19 09:55:01 2022 -0400 + + 1133: linting + +commit cebfd507b8ed7488c3373f14d1a45b27d2a754e2 +Author: raftmsohani +Date: Fri Aug 19 08:36:48 2022 -0400 + + 1133: Added comments to settings files + +commit 7e56b5b5c709ba3c5aa3e417f252de644beeeec8 +Author: Cameron Smart +Date: Thu Aug 18 23:00:58 2022 -0700 + + run on prod + +commit e3319dd0cadc33f1afe246df43665658aceaa9af +Author: Cameron Smart +Date: Thu Aug 18 22:59:49 2022 -0700 + + circle ci config from releasev2 + +commit 448c3428a3421e45a0751c16448212cbe8261e07 +Author: raftmsohani +Date: Thu Aug 18 18:43:20 2022 -0400 + + 1133: disabled private key algorithms + +commit 741dd80b809fb05f25086bbf899caf2923fb43c3 +Author: raftmsohani +Date: Thu Aug 18 17:30:32 2022 -0400 + + 1133: look for key to false + +commit 1c6650e4d814026a98c8a437225a954f411733de +Author: raftmsohani +Date: Thu Aug 18 17:00:00 2022 -0400 + + 1133: changed to pkey to resolve primary key error + +commit d014b8a392d9bbefd4bfb8e6e79d43a5ef1fdc72 +Author: Jan Timpe +Date: Thu Aug 18 16:26:50 2022 -0400 + + remove comment, update admin + +commit 192c4eb0fa529442c81780f742dbdafeb9baeb88 +Author: Jan Timpe +Date: Thu Aug 18 16:20:53 2022 -0400 + + update access_request view + +commit ea130d6bf0a5817d7f706d1430bd34e8e0066f0e +Author: Jan Timpe +Date: Thu Aug 18 16:19:57 2022 -0400 + + update auth check + +commit 2cc64e86470b0c8e9725a3b89afdfdc269fca4c5 +Author: Jan Timpe +Date: Thu Aug 18 16:18:45 2022 -0400 + + update model admin, serializers, docs + +commit 928e426202e66b8e5bef8ececa462f263b139071 +Author: Cameron Smart +Date: Thu Aug 18 13:18:10 2022 -0700 + + update scripts + +commit cff58ff18b9e42b964bc27895022575a6b0af76e +Author: Jan Timpe +Date: Thu Aug 18 16:18:06 2022 -0400 + + add new approval statuses fields and update old field help text + +commit 1e551172d367bd9e637459978a093c636eb8e7d7 +Author: Jan Timpe +Date: Thu Aug 18 16:15:03 2022 -0400 + + fix docs link + +commit cf272d875dfd2d4b3de0cd863cec03cb6c89ec24 +Author: Cameron Smart +Date: Thu Aug 18 13:07:38 2022 -0700 + + coppied deploy scripts from release v2 + +commit 820017c85ae5d6258d3ab7abffbc5506791b1a0e +Author: Cameron Smart +Date: Thu Aug 18 12:46:45 2022 -0700 + + deploy to prod. dont deploy staging + +commit 38d40156ae937fdc043030fdbcaa2223551e11e3 +Author: raftmsohani +Date: Thu Aug 18 15:37:07 2022 -0400 + + 1133: changing private key and replace '_' with \n + +commit 73c5f51c099e3f8ad71c77576c24dcfb4ea17553 +Author: raftmsohani +Date: Thu Aug 18 15:01:53 2022 -0400 + + 1133: linting + +commit e82c2593ae750802a92f0e3fbbab2b0a9ecf17c7 +Author: raftmsohani +Date: Thu Aug 18 14:54:46 2022 -0400 + + 1133: Added end of line replacement for ssh key + +commit 4e52f2b27d1a07dad45d7df55827cf074bfdaca6 +Author: raftmsohani +Date: Thu Aug 18 14:28:17 2022 -0400 + + 1133: Removed default for testing + +commit 5ab9c960a10e2837a70bfc7d0ef60befa7b93d6f +Author: raftmsohani +Date: Thu Aug 18 14:10:49 2022 -0400 + + 1133: Added an env var + +commit 9cccf7529fa929390767387ad03094a0e892ea3b +Author: raftmsohani +Date: Thu Aug 18 13:55:59 2022 -0400 + + 1133: Added an env var + +commit 40d3a7525a19ad0c12c5a1f87f8f872b80f69d63 +Author: Cameron Smart +Date: Thu Aug 18 10:28:30 2022 -0700 + + fixed check for data files tab + +commit 36ea55779f89f7781f09ee25bbc5bdda47a9ee76 +Author: raftmsohani +Date: Thu Aug 18 13:09:22 2022 -0400 + + 1133: common settings file for env vars + +commit 440b32beb1e8ded79c32a42b7a8f13a34e9553d1 +Author: raftmsohani +Date: Thu Aug 18 13:01:55 2022 -0400 + + 1133: common settings file for env vars + +commit b31c3729af8ba67d30ee9d77366ca41e82d5e919 +Author: Cameron Smart +Date: Thu Aug 18 09:49:03 2022 -0700 + + added OFA admin to canViewAdmin + +commit 075371096997aec4d9794d048ca90167c8ea10d7 +Author: raftmsohani +Date: Thu Aug 18 12:34:10 2022 -0400 + + 1133: changed the pytest_key env var pull up to common.py + +commit 6cd1f1f4eacffeedcc0b72db7a4ff6e0887e9424 +Author: raftmsohani +Date: Thu Aug 18 11:58:08 2022 -0400 + + 1133: settings file linting + +commit ea861d205deb5fc42107e2bf0da40b98b5ed5814 +Author: raftmsohani +Date: Thu Aug 18 11:51:32 2022 -0400 + + 1133: settings file linting + +commit a2196a442f6843e2fdaf2838e2333e86b3bea01c +Author: raftmsohani +Date: Thu Aug 18 11:43:40 2022 -0400 + + 1133: settings file: added if statement + +commit 30b5162a3ac288cd43acbfbf9a687fa704f20bbd +Author: raftmsohani +Date: Thu Aug 18 11:33:40 2022 -0400 + + 1133: removed cat ACF key file + +commit b1b190d731618f7219c49b6aa8c640ceab26130e +Author: raftmsohani +Date: Thu Aug 18 11:08:13 2022 -0400 + + 1133: changed redis and celery memory by adding redis.conf, removed logging and print from testing, linting, changed the private key to env vars + +commit ebd50496fe7e6564cbaaf5306cc1ce023a293bcd +Author: raftmsohani +Date: Thu Aug 18 07:57:34 2022 -0400 + + 1133: changed redis and celery memory and added commenting + +commit 6b9d748694ec0d3eb173ddc4b2c82b83c0c820bd +Author: raftmsohani +Date: Wed Aug 17 19:08:02 2022 -0400 + + 1133: changed redis and celery memory + +commit 15343de1203d7fbfcc5c2471afbf6240ce3b8ee3 +Author: raftmsohani +Date: Wed Aug 17 18:40:06 2022 -0400 + + 1133: changed redis and celery memory + +commit 16a053c5a349eaee966bba72323a468ddff4c741 +Author: Cameron Smart +Date: Wed Aug 17 13:29:18 2022 -0700 + + fixed test and added new test + +commit 369165524c49909b84a6cdad3eddc1b3fed03b71 +Author: Cameron Smart +Date: Wed Aug 17 13:22:22 2022 -0700 + + Site map opens in same tab, Can only see data files if access approved + +commit 097a95345531f73581046dca3b301b5d137cf42a +Author: Cameron Smart +Date: Mon Aug 15 13:55:05 2022 -0700 + + removed comments + +commit 334210c80314b854f04706f389e328f422d10f28 +Author: Cameron Smart +Date: Wed Aug 10 13:15:50 2022 -0700 + + linting + +commit 1f516857ad3f5549cbe928465ffc8958c8ce02c9 +Author: Cameron Smart +Date: Wed Aug 3 16:37:54 2022 -0700 + + fixed tests + +commit bd3d5c5ef6bee5584a62c947e46ec4e3e6234bce +Author: Cameron Smart +Date: Wed Aug 3 11:01:18 2022 -0700 + + refactor canViewAdmin + +commit 9704cf2ca78b3e08c279cf149a49b77853a28290 +Author: Cameron Smart +Date: Mon Aug 1 10:09:23 2022 -0700 + + fixed test + +commit 0a2621b70bf7ce256ee40d4fdfcfc3e704d05aa1 +Author: Cameron Smart +Date: Wed Jul 27 10:26:34 2022 -0700 + + pass user to sitemap + +commit 05a4dd76cff47e8d760337fd504c5c6cd828c6ae +Author: Cameron Smart +Date: Tue Jul 26 09:11:13 2022 -0700 + + linting + +commit 08633ff5e2f5ee33cd56cc3510ae226fa50b1fc2 +Author: Cameron Smart +Date: Tue Jul 26 08:41:19 2022 -0700 + + working on tests + +commit 27ab0314e900a4a08061d7e8e6860e8b39db5ea2 +Author: Cameron Smart +Date: Mon Jul 25 13:46:47 2022 -0700 + + Starting on tests + +commit 06d2cab8804a55ee6d641fe24f35fc41d225ba30 +Author: Aaron Beavers +Date: Thu Jul 14 14:26:22 2022 -0400 + + Update tests + +commit 77feb194fd6274c5000aaaa1448017335fb9d1ca +Author: Aaron Beavers +Date: Thu Jul 14 14:26:18 2022 -0400 + + Lint and permission function + +commit 04a05e242e16c411b7a9845ab5cf99e0bcaee389 +Author: Aaron Beavers +Date: Thu Jul 14 14:25:42 2022 -0400 + + lint + +commit c24df751b950acf397ac85274e092d7a226a019c +Author: Aaron Beavers +Date: Tue Jul 12 14:03:04 2022 -0400 + + Update test to include initial state + +commit a78eede0ead1496579f2f23aa3ca8130cb9a8959 +Author: Aaron Beavers +Date: Tue Jul 12 14:02:49 2022 -0400 + + threading the needle + +commit 50ea005dc085401cbbf13d0516c0143622c645bf +Author: Aaron Beavers +Date: Tue Jul 12 14:02:07 2022 -0400 + + update admin element for authorized users only + +commit c54570213693f6142fdebf26cc4b3cf93cdd411c +Author: Aaron Beavers +Date: Tue Jul 12 11:24:59 2022 -0400 + + Add noopener + +commit ea9b8b0b2e4d303e9986421d64aa209adfb938aa +Author: Aaron Beavers +Date: Tue Jul 12 11:12:09 2022 -0400 + + lint tests + +commit 84871ebb1c60e68e46813a92ee4c9b5fac9ce0db +Author: Aaron Beavers +Date: Tue Jul 12 10:49:28 2022 -0400 + + Added tests and fixed admin link text + +commit 58309ec8928c7eaf97a2c83a477f106223c20c24 +Author: Aaron Beavers +Date: Tue Jul 12 10:39:28 2022 -0400 + + Don't show site map to non authenticated users + +commit 63411da3b620a56d956e51e711b4fba564fc54fc +Author: Aaron Beavers +Date: Mon Jul 11 15:37:20 2022 -0400 + + Add link to site map from footer + +commit 3ff3db727a4bcc867392b99da6205fab84687258 +Author: Aaron Beavers +Date: Mon Jul 11 15:37:06 2022 -0400 + + Add sitemap route + +commit 79933e9ed32bbfb5e07b22c7692a4bbb3073d459 +Author: Aaron Beavers +Date: Mon Jul 11 15:36:51 2022 -0400 + + Add SiteMap component + +commit 5913030e6acd8050a6538daeb271f1f220e75a09 +Author: raftmsohani +Date: Wed Aug 17 15:33:32 2022 -0400 + + 1133: permissions + +commit a8a852535746f1600c5d32b8d9d679ffdbda5c6d +Author: raftmsohani +Date: Wed Aug 17 15:27:06 2022 -0400 + + 1133: permissions + +commit 899b9031895cd09457b0eb4cc57b4ec36888125c +Author: raftmsohani +Date: Wed Aug 17 15:15:41 2022 -0400 + + 1133: removed scheduling + +commit 966b2c6c5bf2b5a2e1d66de0ee96697a4b9fc72a +Author: raftmsohani +Date: Wed Aug 17 13:47:29 2022 -0400 + + 1133: linting + +commit 878f6352284fe2f33eba60fe4c6a74df6a319b7d +Author: raftmsohani +Date: Wed Aug 17 13:30:31 2022 -0400 + + 1133: update config + +commit 21a14182b87d013758d9de43f9953728d7030d45 +Author: raftmsohani +Date: Wed Aug 17 13:09:05 2022 -0400 + + 1133: linting + +commit 2f19dc5527cb3be71aa55ca05d5bad00648299ff +Author: raftmsohani +Date: Wed Aug 17 13:03:36 2022 -0400 + + 1133: change celery.py for linting + +commit c4a899cea1407c59a8743273f58ef45448c5509c +Author: raftmsohani +Date: Wed Aug 17 12:57:40 2022 -0400 + + 1133: change celery start step + +commit 98ba904ef741ac750fc8e30bea3752fec72018b2 +Author: raftmsohani +Date: Wed Aug 17 12:52:04 2022 -0400 + + 1133: add logging to celery.py + +commit c737ed7859a1f74ed3d68fbdae085b9db8f3db79 +Author: raftmsohani +Date: Wed Aug 17 11:53:44 2022 -0400 + + 1133: add logging + +commit f29e7a9c22aedd303facb573313a2493e7e15c84 +Author: raftmsohani +Date: Wed Aug 17 11:37:36 2022 -0400 + + 1133: add logging + +commit f93005e084c24e27b542f2210b0d1a869ca07cde +Author: raftmsohani +Date: Wed Aug 17 11:21:03 2022 -0400 + + 1133: add logging + +commit e8e1e7410d3290c24b1f1c2a0598e94ed6fd24f4 +Author: raftmsohani +Date: Wed Aug 17 11:15:23 2022 -0400 + + 1133: add logging + +commit f7eaeb5e69357327938b17b29e665096061c7a11 +Author: raftmsohani +Date: Wed Aug 17 10:55:50 2022 -0400 + + 1133: add logging + +commit 0584942bfbabefdd6fe1f48428421d8e783a8fa6 +Author: raftmsohani +Date: Wed Aug 17 10:31:51 2022 -0400 + + 1133: add logging + +commit 0a00a4fa5931754ff92097cbd271fd13fdc0f05e +Author: raftmsohani +Date: Wed Aug 17 10:25:47 2022 -0400 + + 1133: add logging + +commit a759ed93121227aefa4629282ef590981d0a1ab4 +Author: raftmsohani +Date: Wed Aug 17 09:41:34 2022 -0400 + + 1133: added import + +commit 8e2fe88ee45f23a25f0a77b95dcb96996ea42f23 +Author: raftmsohani +Date: Wed Aug 17 08:46:01 2022 -0400 + + 1133: changes for passing the test + +commit 3a97eefd375ec4f05ea634fb924e5167687476b8 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Aug 16 16:57:03 2022 -0700 + + Create sprint-53-summary.md + +commit 2f62586104e0fe50edc28defc6a3f52cd46d500d +Author: Cameron Smart +Date: Tue Aug 16 11:24:35 2022 -0700 + + move semicolon + +commit 41846f8519c49972d82557a44aae6b3f1374fa68 +Author: Cameron Smart +Date: Tue Aug 16 10:17:51 2022 -0700 + + trigger pipeline + +commit 20bb9a3469d31af9c7c2015672c9ef30153b9c12 +Author: raftmsohani +Date: Mon Aug 15 12:17:15 2022 -0400 + + 1133: linting + +commit fc7f9baf0380badfa987e25a28f2ca4aeb50aa13 +Author: raftmsohani +Date: Mon Aug 15 11:29:15 2022 -0400 + + 1133: linting + +commit 63ad4c12ec02122699701d57f3b2efc03a7127c1 +Author: raftmsohani +Date: Mon Aug 15 10:55:19 2022 -0400 + + 1133: Upload Pytest, and linting + +commit 80312c410f30be6d04dedf378831a5110219a2e7 +Author: Aaron Beavers +Date: Wed Aug 10 13:00:38 2022 -0400 + + Whitespace for a deploy + +commit 5d8d0404adf714c4b990360fb33ef840043d938d +Author: Aaron Beavers +Date: Wed Aug 10 12:00:23 2022 -0400 + + remove stray quote + +commit 45f2dffcd9656a492aa21f8ab6af5928dbd6bb65 +Author: Aaron Beavers +Date: Wed Aug 10 11:44:10 2022 -0400 + + semicolons + +commit 1038f97cbabb718c8aa03501cf29e66cdc305104 +Author: Aaron Beavers +Date: Wed Aug 10 11:30:05 2022 -0400 + + We really love cloudfoundry's custom nginx syntax + +commit 87b9d95090a3719f48ead50c79cdc519dd2e0927 +Author: Aaron Beavers +Date: Wed Aug 10 11:10:09 2022 -0400 + + buildpacks need special magic for env vars + +commit a28b8547e9673f9cfa64163b36a0ca7f6a94a76f +Author: Aaron Beavers +Date: Wed Aug 10 10:30:25 2022 -0400 + + Add appname to set-env + +commit 4f7b9e3c3fb02f9dce12acc84f6702e1e4bb9f13 +Author: Aaron Beavers +Date: Wed Aug 10 10:08:16 2022 -0400 + + semicolons are fun + +commit d6b83ac051e813bda00e1f9ea861ca1718746537 +Author: Aaron Beavers +Date: Wed Aug 10 09:52:46 2022 -0400 + + Add env vars to frontend nginx server + +commit 7e618e7ef3ff4b4c15087129aff9f215fc13ea8e +Author: Aaron Beavers +Date: Wed Aug 10 09:52:28 2022 -0400 + + Allow Nginx to be configured from env vars + +commit 1ef74e14e6223be6ac16fd6142f4c12cd6c0dfd9 +Author: Aaron Beavers +Date: Wed Aug 10 09:47:57 2022 -0400 + + lint + +commit 064074e5f58872efd7a7e15d1e8aed9c8c3f271c +Author: Aaron Beavers +Date: Tue Aug 9 16:35:02 2022 -0400 + + Use a file response to leverage django 3.2.15 security update + +commit dcdf66786c9d27028f52cf4255efed179d2cc966 +Author: Aaron Beavers +Date: Tue Aug 9 16:23:46 2022 -0400 + + update django version + +commit aa3b9ecd943310562871b4f2a643c55f6506d084 +Merge: 04b35d866 6d93b6e89 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 9 15:39:28 2022 -0400 + + Merge pull request #2044 from raft-tech/bug/2035-manage-account-button + + linting + +commit 6d93b6e89d37b228076aa8dbebecb74496edbdf9 +Author: Cameron Smart +Date: Tue Aug 9 12:34:21 2022 -0700 + + linting + +commit 04b35d866b44e50043ffb44820872b254083f356 +Merge: b2968326d a780c2e90 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 9 15:16:30 2022 -0400 + + Merge pull request #2041 from raft-tech/bug/2035-manage-account-button + + Bug/2035 manage account button + +commit a780c2e90b72c0291c3eb4a484c3b9c4c0ecf3c6 +Author: Cameron Smart +Date: Tue Aug 9 12:08:51 2022 -0700 + + new line and moved prod env command + +commit 60b169bc30fae3ada4738ec840230e19b4c95c24 +Author: Cameron Smart +Date: Tue Aug 9 10:48:00 2022 -0700 + + modifications to button + +commit 0b60e29eb3088ad09248d2d8f9363ee447c81d1a +Author: Cameron Smart +Date: Tue Aug 9 10:41:23 2022 -0700 + + modify deploy scripts for different envs + +commit 172f2788060edcbd482fce077f79e95578ad3f4f +Author: Aaron Beavers +Date: Tue Aug 9 13:39:55 2022 -0400 + + don't deploy to prod any more + +commit c5de0b4f2a315298a8b750dd11cb4b1aa1a99123 +Author: Cameron Smart +Date: Tue Aug 9 10:33:51 2022 -0700 + + add environment variable to circleci + +commit 320f0b5cb9add966a578b88aa712b32fa6a11ea9 +Author: Aaron Beavers +Date: Mon Aug 8 16:04:37 2022 -0400 + + deploy + +commit 0dca013d6cd750bd4a6b2e27ac235c0ab1f83f6f +Author: Aaron Beavers +Date: Mon Aug 8 15:56:28 2022 -0400 + + deploy + +commit ab0cb5694c03c12e57067ff5120d76d106ebc03c +Author: Aaron Beavers +Date: Mon Aug 8 14:58:11 2022 -0400 + + Linting error + +commit c0372725e14c1165c38083867cd039b62c3b4937 +Author: Aaron Beavers +Date: Mon Aug 8 14:46:13 2022 -0400 + + Add log + +commit 41c175f412af5d2d1574dbf989d8efdadfe6e5a0 +Author: Aaron Beavers +Date: Mon Aug 8 14:45:55 2022 -0400 + + Fix environment environment variables + +commit e4d38612fd85a08817e62955b7067829769cbe78 +Author: abottoms-coder +Date: Mon Aug 8 10:49:16 2022 -0400 + + frontend whitespace lint issue + +commit 5771378a962cc0ee8530eebdc1549fd8ef8c9e3f +Author: abottoms-coder +Date: Mon Aug 8 10:41:54 2022 -0400 + + reverting quotattions in deployment script + +commit 58e2dbae874ec670389a7d90539cb6caa1477698 +Author: abottoms-coder +Date: Mon Aug 8 10:41:30 2022 -0400 + + commentation linting error fix + +commit 2b99c0222e32da6e5a2b5670d5988c56a98b4bfd +Author: abottoms-coder +Date: Mon Aug 8 10:29:54 2022 -0400 + + Frontend changes to both be up-to-date and also debugging cookie setting + +commit b134632a5e6eb0722b8014775999eb4bdc9440b6 +Author: abottoms-coder +Date: Mon Aug 8 10:18:06 2022 -0400 + + Trying to add quotations around value fixing ACFTITAN_KEY not being set in CircleCI + +commit 92ff0ddbd7462629ecf5ff02d671954a013773d2 +Author: abottoms-coder +Date: Mon Aug 8 10:14:44 2022 -0400 + + Conditionally setting headers for production in frontend auth.js + +commit f3dd976221f5bf3c871debc0327d82c0e0d1a103 +Author: abottoms-coder +Date: Mon Aug 8 09:54:48 2022 -0400 + + Removing cookies in allow-headers due to console errors and buttons not submitted + +commit c4674fda5041fd34fb46445fba0ecd81f44f91ca +Author: abottoms-coder +Date: Mon Aug 8 09:47:48 2022 -0400 + + cleanup print statement + +commit 9374e02e341c1c0de34726c3e6eb25187970b854 +Author: abottoms-coder +Date: Mon Aug 8 09:39:11 2022 -0400 + + Testing conditional middleware loading for cloud.gov + +commit 0faba42c1a4af5dfd8def7083cf749f0b8c5ef62 +Author: abottoms-coder +Date: Sat Aug 6 15:15:01 2022 -0400 + + reverting common to exclude django settings changes + +commit 8f452c0927df84421118e48f4031fd68e6baa705 +Author: abottoms-coder +Date: Sat Aug 6 14:37:51 2022 -0400 + + Trying to add cloud.gov to some django settings around cookies + +commit 35a651d8fdb33b4ffbe8d81eb97dcf3d973769e2 +Author: abottoms-coder +Date: Fri Aug 5 17:51:59 2022 -0400 + + removing session middleware entirely + +commit c8b5905b0fb579003f62ffc28cbc7374899a58dc +Author: abottoms-coder +Date: Fri Aug 5 17:33:34 2022 -0400 + + Commenting out session middleware reference to acf domain + +commit fc62965b53f1be32e046745d33764ebc92194fc0 +Author: abottoms-coder +Date: Fri Aug 5 17:26:01 2022 -0400 + + Updating session middleware to see if that's causing staging breakage + +commit af12fdf4bfa119595e4716205423d9859756c4c7 +Author: abottoms-coder +Date: Fri Aug 5 17:12:44 2022 -0400 + + setting django cookie settings like 1945 to rule those out as breaking staging + +commit 377d4d39efac4e74c840e059383835ce2840dabb +Author: abottoms-coder +Date: Fri Aug 5 17:06:08 2022 -0400 + + changing frontend to match 1945, doubt these affected it + +commit 9e5255fb5696e82111bd7b02675d8fc5dd5b16a2 +Author: abottoms-coder +Date: Fri Aug 5 16:43:27 2022 -0400 + + testing nginx changes from 1945on staging/main + +commit b2968326dd93a647683bb95b0ae43513447c23d1 +Merge: a3a2bcc52 2bd2a9649 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 8 15:41:36 2022 -0400 + + Merge pull request #2037 from raft-tech/feat/1945-back-out-axios + + Finalizing release 2.0.0 + +commit 2bd2a9649d8489e732a1eb0e27b6e5c8a98ee686 +Merge: 483d26385 a3a2bcc52 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 8 14:17:00 2022 -0400 + + Merge branch 'release/v2.0.0' into feat/1945-back-out-axios + +commit a3a2bcc52878c568cd6afa845dc73104524c7536 +Merge: 175d8baa1 5cab27f6e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 8 12:48:26 2022 -0400 + + Merge pull request #1971 from raft-tech/feat/1754-owasp-on-aditional-branches + + Feat/1754 owasp on aditional branches + +commit 175d8baa1598d2dc6a59ff8cf3a919099ab128e7 +Merge: a2787388d ed66fa3e3 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 8 12:46:58 2022 -0400 + + Merge pull request #2001 from raft-tech/bug/1995-clamav-not-detecting-malware + + bug/1995 clamav not detecting malware + +commit c2201a7ca709ef5b12d0d7005517bf0650af8ec4 +Merge: cebf3dc5a 4852f108f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 5 13:02:11 2022 -0400 + + Merge branch 'develop' into adpennington-patch-1 + +commit 4852f108f79e5cbb0b954cc8abbeaa5483bc5170 +Merge: 770f7f6ea 156679423 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 5 13:01:57 2022 -0400 + + Merge pull request #1996 from raft-tech/stevenino-patch-2 + + Update Roadmap-and-Backlog.md + +commit 15667942344ae21cf989bd6e500a4a25eeb62c56 +Merge: 9ac36921e 770f7f6ea +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 5 12:56:03 2022 -0400 + + Merge branch 'develop' into stevenino-patch-2 + +commit 770f7f6ea7d4eb69f0fdde3fb854524d23f742fe +Merge: a2787388d 5372590ef +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Aug 5 12:55:25 2022 -0400 + + Merge pull request #2016 from raft-tech/stevenino-patch-3 + + Create sprint-52-summary.md + +commit 483d26385c850a6029f0a3c8cb0f6fd00f954b04 +Author: abottoms-coder +Date: Fri Aug 5 11:21:56 2022 -0400 + + After local testing, we have a new nginx configuration to hopefully provide more insight into our production woes with login.gov. Additionally, I believe the changes in FRONTEND_BASE_URL will resolve our logout redirecting to localhost:3000 + +commit bf9511a07e5258b5502f8bd2a2fcbe92ec220de9 +Author: abottoms-coder +Date: Fri Aug 5 08:50:21 2022 -0400 + + Should be equivalent to Aaron's branch + +commit 79c17dd7238a04013ae01e27c98b856eeb3a370e +Author: abottoms-coder +Date: Thu Aug 4 18:08:10 2022 -0400 + + linting fix + +commit 0838d44aff1e13e3d1fded932c52c8dc684979cf +Author: abottoms-coder +Date: Thu Aug 4 17:53:42 2022 -0400 + + frontend common + +commit 4f2f4586ff38b4f0aba44ee58da191b8ac28b180 +Author: abottoms-coder +Date: Thu Aug 4 17:40:04 2022 -0400 + + frontend line by line additions + +commit cebf3dc5a103dc06fec00186ae7c6aeb00bf649f +Merge: 688590561 a2787388d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 4 17:35:02 2022 -0400 + + Merge branch 'develop' into adpennington-patch-1 + +commit 71cd676cd0ba01825d520f43de61ebf300a8e092 +Author: abottoms-coder +Date: Thu Aug 4 17:28:42 2022 -0400 + + readding more + +commit 64a3a9820bf92ba50c42d6e7365ecc0083eb8d05 +Author: abottoms-coder +Date: Thu Aug 4 17:13:03 2022 -0400 + + readding some other django settings for more testing + +commit 5cab27f6e30ce6852f8af4caf7305502ab6396f9 +Merge: 72e07e579 a2787388d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 4 16:39:43 2022 -0400 + + Merge branch 'develop' into feat/1754-owasp-on-aditional-branches + +commit 6d9bdc87babd37cbf2596340ba605bcf9c8a2e1c +Author: abottoms-coder +Date: Thu Aug 4 16:36:50 2022 -0400 + + Readding custom session middleware because testing is not successful + +commit 72e07e579297ab707b9199c74c94946b330eb946 +Author: Cameron Smart +Date: Thu Aug 4 13:10:52 2022 -0700 + + added logic for prod url + +commit 8d11c41f46f372609ea4454bfce67685a29b08f4 +Author: Cameron Smart +Date: Thu Aug 4 13:02:33 2022 -0700 + + added Alex's fix to ignore certain scans + +commit 63755ebb385437ad1b473489107729daad498800 +Author: abottoms-coder +Date: Thu Aug 4 15:23:07 2022 -0400 + + Re adding my branch name so we can test a deployment out to prod + +commit c58711c60078d38f3b8eff7763313eda7060e99d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu Aug 4 15:13:00 2022 -0400 + + Update tdrs-frontend/nginx/nginx.conf + + This was causing a silent failure of nginx. + +commit 6e58cc8a5398f1bdc588fc78183044c3399ee161 +Merge: 6b0989534 a2787388d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 4 14:09:04 2022 -0400 + + Merge branch 'develop' into doc/1422-v1-ato-updates + +commit 6b0989534ff5012fe5b143783170404ab467f08a +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 4 13:52:54 2022 -0400 + + fix date typp + +commit 185c7ea711f4e33efd53b23c267ac6c47e38c8fd +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 4 12:43:12 2022 -0400 + + security control statement for AT series for #953 + +commit 5eca1dbc763261a50f1235cd636b84388b6ad05a +Author: raftmsohani +Date: Thu Aug 4 10:23:41 2022 -0400 + + 1133: Linting + +commit 3cb3055e38cd198c298fe74796d1011485dc0f74 +Author: raftmsohani +Date: Thu Aug 4 10:13:30 2022 -0400 + + 1133: Added error handling, starting redis on cloud.gov script + +commit ed66fa3e343c3dbb8b49ec813e8be4963ded72ba +Merge: e4db73c6e a2787388d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 4 09:59:13 2022 -0400 + + Merge branch 'develop' into bug/1995-clamav-not-detecting-malware + +commit e4db73c6ed222348081b993a713d76e8c0d815f7 +Author: Cameron Smart +Date: Wed Aug 3 16:45:38 2022 -0700 + + moved AV_SCAN_URL to abstract config + +commit ee052df3ac573783673e560872c3f53b8b382599 +Author: abottoms-coder +Date: Wed Aug 3 15:52:30 2022 -0400 + + Removing our feature branch from deployment + +commit 0bce0efee56c0aac933d32ea988501e9e9d046f4 +Author: abottoms-coder +Date: Wed Aug 3 15:31:21 2022 -0400 + + Matching up frontend to original form + +commit 46ffef3815e26cee49bdb6522dd58eead1ca263a +Author: abottoms-coder +Date: Wed Aug 3 15:23:53 2022 -0400 + + Tweak to deploy-frontend to polish it up for prod + +commit b6d35be832ebc56062aa6a3ad7d35e027a624749 +Author: abottoms-coder +Date: Wed Aug 3 15:17:27 2022 -0400 + + changing allow headers within the auth check + +commit c9520fd3780b23bac8276eec2e859adc34011306 +Author: abottoms-coder +Date: Wed Aug 3 15:03:48 2022 -0400 + + Removing more CORS stuff and also minor tweak to deployment script + +commit 07668da9904d0faf813289ddf30e7dd94d528c1c +Author: abottoms-coder +Date: Wed Aug 3 14:47:13 2022 -0400 + + Undoing first set of django settings for crsf/cookies + +commit c3cd722d2033f7beae9e4cf0df308e3da24d49cf +Author: abottoms-coder +Date: Wed Aug 3 14:31:22 2022 -0400 + + Hardcoding the backend domain to prevent redoing this manual steps on every deploy + +commit af9c1d117d0a516418b0cfd945562d1ca3f66ec9 +Author: abottoms-coder +Date: Wed Aug 3 14:26:30 2022 -0400 + + Backing out session middleware customization + +commit 0686adbb5e533ad82f3ae501d472b95c41ec86d7 +Author: abottoms-coder +Date: Wed Aug 3 14:02:34 2022 -0400 + + changing branch name for deploying to prod + +commit aee46b372fa8cdc73e5aca335fdb2761020a4129 +Author: abottoms-coder +Date: Wed Aug 3 13:58:56 2022 -0400 + + Backing out axios changes for auth.js + +commit 9f95b48efd59dd942dc8ff74ea644dc9ae176f32 +Author: Cameron Smart +Date: Wed Aug 3 10:13:15 2022 -0700 + + remove unneeded code + +commit 6816619bf9ffa05b385911652de7b51f8d6eba6b +Author: Cameron Smart +Date: Wed Aug 3 09:52:05 2022 -0700 + + syntax + +commit ab5f73d710a5f426c6eb88dcaa29f9baeb54b8d2 +Author: Cameron Smart +Date: Wed Aug 3 08:29:07 2022 -0700 + + fixed up for pr + +commit 5372590efcc65071a2dd9dea74c3b20aad5e363f +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Aug 2 16:19:23 2022 -0700 + + Create sprint-52-summary.md + +commit 04ae250bd768e4c52c2c2871d05968a470ca1275 +Author: Cameron Smart +Date: Tue Aug 2 14:12:39 2022 -0700 + + If this works I am blamming the linter + +commit f442937604d059185a6d670a204b1598abe281cb +Author: Cameron Smart +Date: Tue Aug 2 12:22:01 2022 -0700 + + stop hourly scan + +commit a2787388d8597db9cd3e7a7958ceea4b0300aba1 +Merge: 7f484b669 49528417c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 2 15:14:10 2022 -0400 + + Merge pull request #2012 from raft-tech/andrew-jameson-patch-1 + + Updating backend FQDN per changes + +commit 49528417ca76a482e550b944689e031a33c6bb52 +Merge: 41639ff94 7f484b669 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 2 15:07:58 2022 -0400 + + Merge branch 'develop' into andrew-jameson-patch-1 + +commit 7f484b6690d934e211da93bbbd2b940275c31fe8 +Merge: ffe46ec82 96d32f2c1 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 2 15:07:52 2022 -0400 + + Merge pull request #2011 from raft-tech/final-knowledge-center-img-fix + + Corrects hrefs still looking for jpegs instead of jpgs + +commit 96d32f2c138723b49f8c545163b857fa85910905 +Merge: 105c25e72 ffe46ec82 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 2 14:58:13 2022 -0400 + + Merge branch 'develop' into final-knowledge-center-img-fix + +commit ffe46ec82a1be3d234d2aa1ea334a5efebbf3850 +Merge: 2d0f5d7fd 59d0e9389 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Aug 2 14:58:03 2022 -0400 + + Merge pull request #1937 from raft-tech/feat/1906-use-asterisk-on-access-form + + Feat/1906 use asterisk on access form + +commit f88e4cffc11711a3b5997aab39f131156d5fae59 +Author: Cameron Smart +Date: Tue Aug 2 11:33:05 2022 -0700 + + testing all branches + +commit 5ca7b04f8159f78c1af14cde2a15bbdefc76c6b4 +Author: raftmsohani +Date: Tue Aug 2 12:03:10 2022 -0400 + + 1133: additional log + +commit c3b2e65ca66ec7b9ae6a5b63f676cf85d8f33082 +Author: raftmsohani +Date: Tue Aug 2 11:54:14 2022 -0400 + + 1133: additional log + +commit 5597c5bbee1c61bcefa2442bb537af1f77071f88 +Author: raftmsohani +Date: Tue Aug 2 11:33:32 2022 -0400 + + 1133: additional log + +commit 30d5f7f89708c470830ed054d8b3f36385755232 +Author: raftmsohani +Date: Tue Aug 2 11:27:22 2022 -0400 + + 1133: additional log + +commit 4a83bba95a078082680b7a5c2fb8953311c0a4cb +Author: raftmsohani +Date: Tue Aug 2 10:24:26 2022 -0400 + + 1133: wrapped the task in try/exception + +commit 51c91de4503375e71c4b1afa9fb563830bfb323d +Author: raftmsohani +Date: Mon Aug 1 23:52:07 2022 -0400 + + 1133: corrected gunicorn_start.sh + +commit d1b31305a95f5cf8f4ac779754fff22d50edb02e +Author: raftmsohani +Date: Mon Aug 1 23:48:58 2022 -0400 + + 1133: corrected gunicorn_start.sh + +commit dd2d8f268f654d9dda73af7ae9444ff0787961cd +Author: raftmsohani +Date: Mon Aug 1 23:31:20 2022 -0400 + + 1133: corrected gunicorn_start.sh + +commit b518124b3bc03a6784210b213e0810e7f73908ea +Author: raftmsohani +Date: Mon Aug 1 22:56:53 2022 -0400 + + 1133: corrected gunicorn_start.sh + +commit d31af210bd5a05bcc2110986690f5263c251dbcf +Author: raftmsohani +Date: Mon Aug 1 22:38:44 2022 -0400 + + 1133: corrected flower uri + +commit 56559e68caa08895d7018011dbf2003f6d29ef4c +Author: raftmsohani +Date: Mon Aug 1 22:36:38 2022 -0400 + + 1133: absolute path instead of home path + +commit e4fb775092d5d4e73ba88ab9affbc545e6d0cea5 +Author: raftmsohani +Date: Mon Aug 1 22:10:16 2022 -0400 + + 1133: absolute path instead of home path + +commit ecdfc9e51c32ae6c5374a45379e48b0f7e7be436 +Author: Cameron Smart +Date: Mon Aug 1 15:42:30 2022 -0700 + + passed target_env into zap_scanner.sh + +commit 41639ff94eec9c1912a941285b5a95cabe6ca399 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Aug 1 16:57:24 2022 -0400 + + Updating backend FQDN per changes + + Kudos to Cameron + +commit a2268f3b69fa3e50fd83c7a7bad2df79ece02c95 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Aug 1 16:56:12 2022 -0400 + + update erd to latested from CircleCi + +commit 83df81f6b75faeba6954a02038f6a74c51083fae +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Aug 1 15:21:56 2022 -0400 + + update boundary diagram description + +commit a7d8a957118e1ba1b7c8446eacb87e89f26c5db3 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Aug 1 14:28:19 2022 -0400 + + updated bd with acf and non-acf user routes + +commit 105c25e72bf0d3528dda5e234391bdd8314c2da9 +Author: Miles Reiter +Date: Mon Aug 1 13:26:01 2022 -0400 + + Corrects hrefs still looking for jpegs instead of jpgs + +commit ac202a5ceca1c84c3deddfda6f1801e9309e321a +Author: raftmsohani +Date: Mon Aug 1 13:04:33 2022 -0400 + + 1133 - Refactored redis URI to env vars + +commit 59566502c3d39bc169cb9dc1a9a12b3d35e1f541 +Author: raftmsohani +Date: Mon Aug 1 12:47:38 2022 -0400 + + 1133 - Removed the test files + +commit 17cad9c7fc320099f754cf9a16e967c4db575d4d +Author: raftmsohani +Date: Mon Aug 1 12:27:24 2022 -0400 + + 1133 - Added redis-server to gunicorn_start.sh and changed the Celery broker/backend to run on the local redis-server + +commit 91384b7e47f71a4400a3f6b4362f6527fbc5321d +Author: raftmsohani +Date: Mon Aug 1 11:33:41 2022 -0400 + + added local redis + +commit 319b46d89338ee2706846aa67040935334055898 +Author: raftmsohani +Date: Mon Aug 1 10:57:10 2022 -0400 + + added dependency packages + +commit 25adae8bc19ef200702ca17ecb15c104689cf014 +Author: raftmsohani +Date: Mon Aug 1 10:12:58 2022 -0400 + + added redis-cli apt + +commit 01a04a1cd6fdd7ecf845dd3aa48bd126355c5b20 +Merge: eaa8e3284 2d0f5d7fd +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Aug 1 08:39:19 2022 -0400 + + Merge branch 'develop' into feat/1133-files-transferred-to-ACF-Titan + +commit 7b3cb04d63ef6018944ca764dd5178275b309f6d +Author: Aaron Beavers +Date: Fri Jul 29 17:14:13 2022 -0400 + + Add another header + +commit 02b0343892055b85dc9da379b96ffc53e48aa315 +Author: Aaron Beavers +Date: Fri Jul 29 16:53:47 2022 -0400 + + Add more headers + +commit af6cd7965818c9887bb59dd1f292c5e768731f23 +Author: Aaron Beavers +Date: Fri Jul 29 16:46:58 2022 -0400 + + add allowed headers: + +commit 8890023233a558d24e92e95dca4f79fdab47cc3e +Author: Aaron Beavers +Date: Fri Jul 29 16:16:53 2022 -0400 + + Add allow headers + +commit 975a1e777beaee93b2b2c40f8cc1a4b9221c7f55 +Author: Aaron Beavers +Date: Fri Jul 29 15:49:16 2022 -0400 + + MORE TYPOS! + +commit 561cfdf97a1771b193cfcaf3d3cf2c3ea78b4065 +Author: Cameron Smart +Date: Fri Jul 29 12:29:15 2022 -0700 + + hard code AV_SCAN_URL in cloudgov.py + +commit 9ba49cdbe175890f32651f0d58d03fb8138042d7 +Author: Aaron Beavers +Date: Fri Jul 29 15:28:42 2022 -0400 + + add semi colon + +commit f49c86f897de1381d5e6cfd00e864e2554e9e64a +Author: Aaron Beavers +Date: Fri Jul 29 15:18:05 2022 -0400 + + update the correct nginx file + +commit 6a678302816e6693ebf78696ea6876ea4e038c0e +Author: Aaron Beavers +Date: Fri Jul 29 15:02:20 2022 -0400 + + try adding access control allow origin to nginx + +commit b974cd95ba88380d991163490cd28ac411cf3076 +Author: Aaron Beavers +Date: Fri Jul 29 14:57:30 2022 -0400 + + try updating the nginx csp header + +commit 2cd955a4f9ae83e95b8f36954a7f2d9e67a8ca70 +Author: Aaron Beavers +Date: Fri Jul 29 14:49:26 2022 -0400 + + fix typo + +commit 5fec8d832daa8f1284a903b59192bf8395783d86 +Author: Aaron Beavers +Date: Fri Jul 29 14:39:57 2022 -0400 + + try wild card + +commit 4618ee7a053c717f9e04ca3299b6be1f9d500880 +Author: Aaron Beavers +Date: Fri Jul 29 14:25:03 2022 -0400 + + add header + +commit 624e4c20846db46116dd6f19295ecce2c7bd59d1 +Author: Aaron Beavers +Date: Fri Jul 29 13:58:10 2022 -0400 + + use wild cards + +commit bd3240c36ce12cc2123a9f9c41dd3157c2b3ab02 +Author: Aaron Beavers +Date: Fri Jul 29 13:40:41 2022 -0400 + + updated a few more cookie/csp settings + +commit 30bddc855fa52f6a76edefe1ff50dbf70bcc23a9 +Author: Aaron Beavers +Date: Fri Jul 29 11:07:26 2022 -0400 + + Hard code backend url into frontend deploy script + +commit d21350f0fe7d0837f67e20f114db7952b8150dfa +Author: Aaron Beavers +Date: Fri Jul 29 10:09:56 2022 -0400 + + Add a domain to csrf cookie + +commit eaa8e3284d2aad3a57ce9df331ed6019c8378d1f +Author: raftmsohani +Date: Fri Jul 29 09:46:20 2022 -0400 + + 1133 - Linting + +commit 4bba52020389b1f5f6e7e84faa32b8a9f904c786 +Author: raftmsohani +Date: Fri Jul 29 09:27:40 2022 -0400 + + 1133 - Linting + +commit 2f0bc798615e1cf4e6335ed45f919e3f32d73fdd +Author: raftmsohani +Date: Fri Jul 29 09:19:26 2022 -0400 + + 1133 - Linting + +commit 33276b0b6ea1634ed321ec493c1efa871a60f55b +Author: raftmsohani +Date: Fri Jul 29 09:10:53 2022 -0400 + + 1133 - Linting again + +commit 7f190c239a50a472b796653421fc636f383575cc +Author: raftmsohani +Date: Fri Jul 29 08:39:58 2022 -0400 + + 1133 - Linting + +commit 7a92e00d1546635734c00f247e1f3e24875d6480 +Author: raftmsohani +Date: Fri Jul 29 08:24:50 2022 -0400 + + 1133 - Removed the tasks app + +commit 384830f18d7f654c1c4ba8ebf7c5d466272dd99b +Author: raftmsohani +Date: Fri Jul 29 08:07:54 2022 -0400 + + 1133 - Removed the scheduled tasks + +commit c8ec5559266ae18ce28bb3948abec1e2da22307a +Author: Aaron Beavers +Date: Thu Jul 28 16:29:32 2022 -0400 + + Try typing these values different. + +commit f85aab2a26330e831655cf817d6639278ce16880 +Author: Aaron Beavers +Date: Thu Jul 28 16:04:39 2022 -0400 + + Uncomment frontend code. + +commit 6885905612b73ef12e201798b16b065e2a199370 +Merge: 50abe3438 2d0f5d7fd +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 14:52:35 2022 -0400 + + Merge branch 'develop' into adpennington-patch-1 + +commit 50abe3438f356c3235e5b8dc61418c2226bea195 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 14:24:02 2022 -0400 + + Update docs/Security-Compliance/Security-Controls/cm-7-2/index.md + + fix broken link cm7 + +commit 30792b3f15d4a549c6eed311d25aaaf0549a468e +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 14:22:07 2022 -0400 + + fix broken link in ra5 + +commit 5846a324570a404efd9d442e355cb6ea7892e74c +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 13:49:31 2022 -0400 + + fix broken link in ac-06 + +commit b0269452003fb67e97f617e57c4364d78e307625 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 13:40:30 2022 -0400 + + added evidence of clamav scans in DAC to cm7 + +commit 6f4da80dbee0c25c6b5f4e252342f5931d24eaa8 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 13:11:50 2022 -0400 + + updating RA-5 to include screenshots of owasp scans in DAC + +commit 881141daaf0e1fd24b65bfa0492e580815ea76a3 +Author: Cameron Smart +Date: Thu Jul 28 09:43:14 2022 -0700 + + append /scan to default AV_SCAN_URLs + +commit d67792afa8a8c231d43847eda07cb4110e675bd0 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 10:45:08 2022 -0400 + + IA-8 updated to note authentication inherited by acf ams too + +commit 0232856b37ef5dbc8b26831675bc6c491a64f98a +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 10:42:52 2022 -0400 + + Au-2 updated to include account logging for acf users inherited from acf ams + +commit 01400e1ee7371eee346097b7380415937a8467c8 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 10:32:29 2022 -0400 + + AC-7 updated to clarify that login attempts inherited from authentication services used by TDP + +commit a4fc0d172fed923bcf97073a4fdc38bef1c519b2 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 10:24:57 2022 -0400 + + AC-6 updated with acf ams authentication + +commit 628bc2ac18e462718a17c60f77bef4de9d5dbea4 +Author: raftmsohani +Date: Thu Jul 28 10:21:09 2022 -0400 + + 1133 - Added env vars, creating directories, putting the file, error handling. + +commit 8ec8a2c10726df3dd6dd3f8a8362d447ca610bfe +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jul 28 10:20:57 2022 -0400 + + AC-2 updated with permission groups and acf ams + +commit 9ac36921eae7c5c25a7115f739904ce1ff7d1e40 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Jul 27 16:44:10 2022 -0700 + + Update Roadmap-and-Backlog.md + +commit 321d4d409e78678d6b07645dd46e77a548c33366 +Author: Cameron Smart +Date: Wed Jul 27 13:01:13 2022 -0700 + + added prod parameters for owasp + +commit 4f6444ad8de797cfcda3c3c63558f17363dc8c15 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jul 26 13:10:54 2022 -0700 + + Update Roadmap-and-Backlog.md + +commit ae262ac2a661cfef15557c12e6931d25466d00d1 +Author: Aaron Beavers +Date: Tue Jul 26 15:45:37 2022 -0400 + + Add fixes to deploy-backend + +commit 4e5ea9511bd507a7d68f28105db6a3dba2741a55 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jul 26 11:20:37 2022 -0700 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit cfb751e45090f48a4aaa986ffab5c22ae07714a6 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jul 26 11:20:23 2022 -0700 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 53a7d9d58890f6df884dfa095d5210d4e3115777 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jul 26 11:19:51 2022 -0700 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 3220fdb197f2b460b3252653cfc9021a2104ae25 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jul 26 11:19:23 2022 -0700 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 59d0e9389711e84c43da9ebd677ad50919532602 +Merge: af58e02af 2d0f5d7fd +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jul 26 09:31:28 2022 -0400 + + Merge branch 'develop' into feat/1906-use-asterisk-on-access-form + +commit 2d0f5d7fd383daa5209ed93940d0a86cad39b5c6 +Merge: 3b8123a4f 5c4fc743a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jul 26 09:31:02 2022 -0400 + + Merge pull request #1973 from raft-tech/feat/1957-include-current-fiscal-year + + feat/1957 include current fiscal year + +commit 5c4fc743af63fab522fb2bf63838e48ccc7b5d0c +Merge: 48ba4058a 3b8123a4f +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jul 26 09:13:31 2022 -0400 + + Merge branch 'develop' into feat/1957-include-current-fiscal-year + +commit 3b8123a4ff1b20c50af9a6d6f38a1f7c23313c59 +Merge: c940e9417 487df4f9c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jul 26 09:13:18 2022 -0400 + + Merge pull request #1924 from raft-tech/feat/1788-resource-cards + + Feat/1788 resource cards + +commit 487df4f9c286b6d54116ddc966cf6514fa8bee5a +Merge: b436edbb6 c940e9417 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jul 26 08:50:19 2022 -0400 + + Merge branch 'develop' into feat/1788-resource-cards + +commit c940e941727a02109e0570a2f3baabb6d878e157 +Merge: 716f1092d 329e17760 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jul 26 08:48:18 2022 -0400 + + Merge pull request #1964 from raft-tech/feat/1750-failed-deployment + + Feat/1750 failed deployment + +commit 6104482ad68414fa422ef67f56ca7be58b3f7bfa +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Jul 25 14:42:15 2022 -0700 + + Update Roadmap-and-Backlog.md + +commit 5434ffaf181fa79a09defb0d3bdbad0350f294dc +Author: Cameron Smart +Date: Thu Jul 21 11:43:16 2022 -0700 + + added needed filter for schedule on nightly + +commit 56402897c0e06790215fbc52948566dfb243fc9d +Author: Cameron Smart +Date: Thu Jul 21 11:37:56 2022 -0700 + + check branches in nightly workflow + +commit 3c649135a22c2592391572a28910fb2b4b9ffa55 +Author: Cameron Smart +Date: Tue Jul 19 11:35:08 2022 -0700 + + test multiple jobs with their branches + +commit 27a5801a68e527aac6bd3f4c54573bd7fe17b36b +Author: Cameron Smart +Date: Tue Jul 19 10:49:31 2022 -0700 + + testing nightly owasp with filter and static var + +commit b7b12c5d7a351ac46961284e936c7d0b5aa74617 +Author: Cameron Smart +Date: Tue Jul 19 10:13:04 2022 -0700 + + testing nightly owasp + +commit 17328977dc0e9c5aa4247470d126d8df75d6531d +Author: Cameron Smart +Date: Tue Jul 19 10:06:32 2022 -0700 + + used pipeline var for backend env in nightly-owasp-scan + +commit 329e17760fca6f0ab13883cbd08d015ceee86b08 +Merge: c6dd7c61d 716f1092d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 25 15:40:09 2022 -0400 + + Merge branch 'develop' into feat/1750-failed-deployment + +commit b436edbb67066c39fb16458cc776a8ef6c176daf +Merge: 27bf5cd20 716f1092d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 25 14:52:09 2022 -0400 + + Merge branch 'develop' into feat/1788-resource-cards + +commit b9740ec7d70d8322c00c5e9fd0a25bcf501fd8bc +Author: Aaron Beavers +Date: Mon Jul 25 14:50:36 2022 -0400 + + new line under class doc string + +commit af58e02afb468bd8ab9f8ec8c981a998a696e5cf +Merge: ce49c209b 716f1092d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 25 14:45:23 2022 -0400 + + Merge branch 'develop' into feat/1906-use-asterisk-on-access-form + +commit 48ba4058aefaa2440e870ee56a7789f7c581cbc5 +Merge: 3351aeced 716f1092d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 25 14:45:09 2022 -0400 + + Merge branch 'develop' into feat/1957-include-current-fiscal-year + +commit e5a11a29a98501580147e3c8e2bc4138dabb4ccc +Author: Aaron Beavers +Date: Mon Jul 25 14:44:00 2022 -0400 + + Temporarily deploy to production from this branch + +commit 511db094161fc765f9a4e846896e42a4b7e00806 +Author: Aaron Beavers +Date: Mon Jul 25 14:34:21 2022 -0400 + + Add doc strings for lint + +commit 3b1bc5263adbc2728fad10999bda58ef47de1d33 +Author: Aaron Beavers +Date: Mon Jul 25 14:10:57 2022 -0400 + + git config change + +commit 6562209d1ca9c6ba9877da35d48fcb59ca01297f +Author: Aaron Beavers +Date: Mon Jul 25 14:10:33 2022 -0400 + + Some backend ENV vars + +commit ebda33754cbfe2ba7c9f9de8da7e32b1192882e3 +Author: Aaron Beavers +Date: Mon Jul 25 14:03:09 2022 -0400 + + Hack for prod route + +commit 4c48af228c2662d52a402e4a69f07366a359bd86 +Author: Aaron Beavers +Date: Mon Jul 25 14:02:43 2022 -0400 + + Use a variable again for CF_SPACE + +commit 70e3cbe03ea0ad4d1343bc7a5a5e0c0f245e0bc2 +Author: Aaron Beavers +Date: Mon Jul 25 13:59:24 2022 -0400 + + Add cloud.gov backend to allowed hosts + +commit 3427c86fba1b5946d427750928acd845c5b65810 +Author: Aaron Beavers +Date: Mon Jul 25 13:58:03 2022 -0400 + + Add ALLOWED_CORS_HEADERS + +commit 613cff54d769e49c6c03f85509248dbafd6d748b +Author: Aaron Beavers +Date: Mon Jul 25 13:57:41 2022 -0400 + + Update CSP_CONNECT_SRC + +commit 24acb2bd6264893f87f6886ee91e4b9c96c8540e +Author: Aaron Beavers +Date: Mon Jul 25 13:56:49 2022 -0400 + + Add Session Middleware Patch + +commit 58824c9c8b0fcbbaab621f55cf05fc27a21c0638 +Author: Aaron Beavers +Date: Mon Jul 25 13:54:15 2022 -0400 + + Update CSRF_HEADER_NAME + +commit 8082a68928066f8ef956c3cda0a8da4db5868392 +Author: Aaron Beavers +Date: Mon Jul 25 13:54:02 2022 -0400 + + Update CSRF_COOKIE_SAMESITE + +commit c5adb17e4857ae90e3b0a415fb0d36588076b4c2 +Author: Aaron Beavers +Date: Mon Jul 25 13:53:47 2022 -0400 + + update CSRF_COOKIE_SECURE + +commit 192fd86b6c51cc738678cd67e9d0e1d289523494 +Author: Aaron Beavers +Date: Mon Jul 25 13:53:29 2022 -0400 + + Update CSRF_TRUSTED_ORIGINS + +commit 14528db2b0af3cb5abad56830320b76485f125fb +Author: Aaron Beavers +Date: Mon Jul 25 13:53:01 2022 -0400 + + Reorder imports + +commit 498a7e7152eabcc2ba1b6ab2ebdad03de5dc6b98 +Author: Aaron Beavers +Date: Mon Jul 25 13:52:40 2022 -0400 + + Update SESSION_COOKIE_SAMESITE + +commit d432eb9a872e6b8888155d67beceef89eae53f46 +Author: Aaron Beavers +Date: Mon Jul 25 13:52:07 2022 -0400 + + update SESSION_COOKIE_SECURE + +commit 81c65c5100fdd30d2be84470511abb0800e82186 +Author: Aaron Beavers +Date: Mon Jul 25 13:51:38 2022 -0400 + + update csp default + +commit 93d63caf6fe0d49d2d7ad3af60d6729cbeec04bc +Author: Aaron Beavers +Date: Mon Jul 25 13:45:48 2022 -0400 + + Use tdpservice.middleware.SessionMiddleWare and reorder corsheaders line + +commit 7fd71020a16732b6f2daf4fbe61349faba40b9ba +Author: Aaron Beavers +Date: Mon Jul 25 13:44:51 2022 -0400 + + Add additional Headers to allowed + +commit 126f2fbef4c8d6f432b6548703419ed9734fdccb +Author: Aaron Beavers +Date: Mon Jul 25 13:43:56 2022 -0400 + + add csrf cookie the hard way + +commit eae660913a63fda451041512982d7ecf4490d659 +Author: Aaron Beavers +Date: Mon Jul 25 13:43:29 2022 -0400 + + Remove break lines + +commit 6bf210820dfadb3b9d3aed545a30dda0e1a403b6 +Author: Aaron Beavers +Date: Mon Jul 25 13:43:14 2022 -0400 + + Terraform syntax Error + +commit 5a2b3b5949db9f37715def597b32f4001d825d19 +Author: raftmsohani +Date: Mon Jul 25 11:56:34 2022 -0400 + + FileUpload - added error handling + +commit c587b5940b710fb40f4f6bc325c84b0f22153aaf +Author: raftmsohani +Date: Mon Jul 25 00:59:33 2022 -0400 + + FileUpload - Refactored scheduled task to let delay task to be scheduled + +commit 2f30262b6005ed7c881a76e0e26bb693dc39ccf4 +Author: raftmsohani +Date: Sun Jul 24 22:54:30 2022 -0400 + + FileUpload + +commit 3351aeced40c945e13ff37d800399aac1927a2c0 +Author: Cameron Smart +Date: Fri Jul 22 14:41:21 2022 -0700 + + linting + +commit ce49c209b63058018e7cf7e39f3c71a1d3366860 +Author: Cameron Smart +Date: Fri Jul 22 14:38:54 2022 -0700 + + added aria-req to combobox input for real + +commit a8f3e0911dd4c8962c0551585ca83fbc191f150d +Author: Cameron Smart +Date: Fri Jul 22 13:37:33 2022 -0700 + + Fixed a test + + The test I reverted before was actually correct + +commit 716f1092dbdabb56df5528c7e39f5bec99fecb44 +Merge: fd6594b5e b385bc5ab +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 22 16:31:05 2022 -0400 + + Merge pull request #1953 from raft-tech/feat/1951-production-login-variables + + feat/1951 Production Login Variables + +commit b385bc5abf470255a174edc375483e3a3ba86cfd +Merge: c415267dd fd6594b5e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 22 16:22:31 2022 -0400 + + Merge branch 'develop' into feat/1951-production-login-variables + +commit fd6594b5efaeacde8ce6a503ace58ce3402ecbe6 +Merge: 1a42b0b09 48eddc674 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 22 16:22:09 2022 -0400 + + Merge pull request #1974 from raft-tech/stevenino-patch-2 + + Create sprint-51-summary.md + +commit 48eddc674cfa0c65cce1c2638e3b08f16b18a9f8 +Merge: ba93d1e9f 1a42b0b09 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 22 16:16:31 2022 -0400 + + Merge branch 'develop' into stevenino-patch-2 + +commit 56f15a97e0e6e34e66beaf5679639df6763dc1c5 +Author: Cameron Smart +Date: Fri Jul 22 12:52:02 2022 -0700 + + reversed years and fixed tests + +commit 8af6d422e115005177b7642558cdfbebc34c4277 +Author: Cameron Smart +Date: Fri Jul 22 12:02:21 2022 -0700 + + remove false positive from test + +commit c415267ddb19592a51c573ffc7dfccf4a6e7ccc4 +Merge: 0ad9f8051 1a42b0b09 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jul 22 14:13:06 2022 -0400 + + Merge branch 'develop' into feat/1951-production-login-variables + +commit c6dd7c61d6afa8af1296791f6133999a90775384 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 22 10:20:00 2022 -0400 + + Update docs/Technical-Documentation/Failed-Deployment-Troubleshooting.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit fd7724e25afa06deacd6d99a2d2afedc75033ba2 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 22 10:19:54 2022 -0400 + + Update docs/Technical-Documentation/Failed-Deployment-Troubleshooting.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 1a42b0b0998072e85beb405fc864f9be425ebfcb +Merge: edea3cd7b ed65a1a01 +Author: Miles Reiter +Date: Thu Jul 21 15:06:39 2022 -0400 + + Merge pull request #1983 from raft-tech/knowledge-center-img-fix + + Knowledge center img fix + +commit c0a2652ba0450e6a092a8fba89b7286cb06013a4 +Author: raftmsohani +Date: Thu Jul 21 10:55:23 2022 -0400 + + Working scheduler + +commit ed65a1a0184f0814ddac137b4c422c779b575f34 +Author: Miles Reiter +Date: Wed Jul 20 23:07:03 2022 -0400 + + Remaining jpegs to jpg + +commit 91861e165956c1e2d03ea00bd8a3bef2e6fea662 +Author: Miles Reiter +Date: Wed Jul 20 23:04:18 2022 -0400 + + Jpeg to jpg — complete-data + +commit 85805a7b9e86ee301aa6b505d92cf11594058c1d +Author: Miles Reiter +Date: Wed Jul 20 23:03:31 2022 -0400 + + Delete .gitattributes.txt + +commit d211e0f658c3bd92bbe5b19e2cf26f5d3045645c +Author: Miles Reiter +Date: Wed Jul 20 22:55:52 2022 -0400 + + add images + +commit 07834f384e9cbc70afed57e9053144dc14772ae2 +Author: Miles Reiter +Date: Wed Jul 20 22:55:37 2022 -0400 + + remove images + +commit b7263928adee5c97b5bb82c7ff5cc9aeedd4f58a +Author: Miles Reiter +Date: Wed Jul 20 22:53:58 2022 -0400 + + Rename .gitattributes to .gitattributes.txt + +commit 1f4158e812c0eddebf43e25ca019d7cfa69a47bd +Author: Miles Reiter +Date: Wed Jul 20 22:53:06 2022 -0400 + + (re-add images) + +commit 8bce5063f2502e374df87bd2fbedce12a141d5e2 +Author: Miles Reiter +Date: Wed Jul 20 22:52:43 2022 -0400 + + Delete images + +commit f6111408514f8494da186ad296b3d8a1db73c7a6 +Author: Miles Reiter +Date: Wed Jul 20 22:52:10 2022 -0400 + + Create .gitattributes + +commit 580dfcac31ac2146ffa433acd6e519c786ca361f +Author: Miles Reiter +Date: Wed Jul 20 22:43:19 2022 -0400 + + (Re)Add img + +commit af487c03b91d7ebc7ee2dbf05d3fa839071291fd +Author: Miles Reiter +Date: Wed Jul 20 22:42:58 2022 -0400 + + Delete img + +commit 31740fbf63dfc93f2d8a9541c35425c6dd4fb01b +Author: Cameron Smart +Date: Wed Jul 20 12:36:05 2022 -0700 + + removed unneeded debugging code + +commit e87f4a8f3bafd8b15a06ac80c372810a51de51a2 +Author: Cameron Smart +Date: Wed Jul 20 12:25:00 2022 -0700 + + One more test + +commit 03cab3e3201f427038265a40410bb28a9418d370 +Author: Cameron Smart +Date: Wed Jul 20 12:12:27 2022 -0700 + + linting + +commit ae0528ff96fa572899e74e46026d791660d8a3c3 +Author: Cameron Smart +Date: Wed Jul 20 12:08:25 2022 -0700 + + removed duplicate test + +commit e1367d5395c90ee8e92013f1572bf484dd067792 +Author: Cameron Smart +Date: Wed Jul 20 12:06:48 2022 -0700 + + tested constructYear functionality + +commit 27bf5cd206000547d22168fd7b2b3d6c3c910f82 +Merge: f835792b4 edea3cd7b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jul 20 13:31:53 2022 -0400 + + Merge branch 'develop' into feat/1788-resource-cards + +commit 8382155a7e88e626bee8a5a5af787bbbb97c843c +Merge: f2f78d951 edea3cd7b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jul 20 11:16:34 2022 -0400 + + Merge branch 'develop' into feat/1906-use-asterisk-on-access-form + +commit ba93d1e9f7a6b622a97c67e4461ae6d848366c59 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jul 19 15:59:21 2022 -0700 + + Create sprint-51-summary.md + +commit 759cd7aaa95fbc3fbe78f58150c8178beb68b041 +Author: Cameron Smart +Date: Tue Jul 19 14:39:52 2022 -0700 + + linting + +commit 8c0ce59f4c0449c2e600df42c35e5157e1d1cd0c +Author: Cameron Smart +Date: Tue Jul 19 14:33:38 2022 -0700 + + fixed test + +commit 042876835b52119ff9dc3466eeef26dd322bcaa7 +Author: Cameron Smart +Date: Tue Jul 19 13:54:05 2022 -0700 + + year was off by 1 + +commit e913ca8ea2937553281d64361b521da329f0d6c0 +Author: Cameron Smart +Date: Tue Jul 19 12:46:12 2022 -0700 + + Function to return fiscal year options + +commit edea3cd7bdd69d277a91647e63d94c74d363326c +Merge: f9d994674 904019ed2 +Author: Aaron Beavers +Date: Tue Jul 19 13:24:58 2022 -0400 + + Merge pull request #1970 from raft-tech/fix/1789-cf-space + + revert cf space production + +commit 904019ed28872fd76caaf7436796183fba9cfe99 +Author: Aaron Beavers +Date: Tue Jul 19 12:29:34 2022 -0400 + + Fix terraform formating error in production + +commit 661c411848ac0d4439aa15aa37c29f1daf5383e4 +Author: raftmsohani +Date: Tue Jul 19 12:15:53 2022 -0400 + + added shceduled tasks + +commit f835792b4b5b41e0b6739849b711d09271c69833 +Author: Cameron Smart +Date: Tue Jul 19 07:58:39 2022 -0700 + + grammar fix on instruction card + +commit f59403e8e422e61f0b97d6b4ad07703c81c88993 +Author: Aaron Beavers +Date: Tue Jul 19 10:23:58 2022 -0400 + + revert cf space production + +commit 5dc7b1eba69b2cddf7769492617301da3a15721f +Merge: 959183ea5 f9d994674 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 19 08:49:37 2022 -0400 + + Merge branch 'develop' into feat/1788-resource-cards + +commit 15daafb4a6c1f3c4e07c16ded10066f3298512ec +Author: raftmsohani +Date: Tue Jul 19 06:38:09 2022 -0400 + + added upload task + +commit f9d994674622272b59de1123937a9e7bce367e50 +Merge: df4d98131 e73ad7375 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 18 16:52:20 2022 -0400 + + Merge pull request #1864 from raft-tech/feat/1746-new-routes-and-services-tanf-staging-space + + feat/1746-new-routes-and-services-tanf-staging-space + +commit 959183ea588dbb35ad1639d9996377729e19fbb9 +Merge: ec3f58cb9 df4d98131 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 16:36:04 2022 -0400 + + Merge branch 'develop' into feat/1788-resource-cards + +commit e73ad7375e3831b2f7edaf995bc585b2ec8fbd67 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 15:20:16 2022 -0400 + + adding more updates for PR #1864 + +commit d60beeb01fd621b697022d7120ecd861ab161369 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 15:16:46 2022 -0400 + + reverting testing branch back to hhs staging branch: main + +commit 44fe0142c0b306e5402d9e299e1cafe0d347257b +Merge: d8e9ba731 614be218a +Author: abottoms-coder +Date: Mon Jul 18 15:01:25 2022 -0400 + + Merge branch 'feat/1750-failed-deployment' of github.com:raft-tech/TANF-app into feat/1750-failed-deployment + +commit d8e9ba7318752d70c82513a34c248a53c2fd50fb +Author: abottoms-coder +Date: Mon Jul 18 15:01:11 2022 -0400 + + Removing line about JWT to not trigger git-secrets + +commit 614be218ab4b689a6b43d2ca6805a4d982ab6ed0 +Merge: 2f0b58afe df4d98131 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 18 14:44:43 2022 -0400 + + Merge branch 'develop' into feat/1750-failed-deployment + +commit 0ad9f80514d2c8979f388a6b54308d3da99e2028 +Author: Cameron Smart +Date: Mon Jul 18 11:43:09 2022 -0700 + + removed unneeded var + +commit dfe2c64fc33f8cc5b6a6abc81c7dce0e82b9e6c2 +Author: Cameron Smart +Date: Thu Jul 14 10:14:53 2022 -0700 + + propper env var names + +commit 9d658f95cfeae41e9a5510cd81e937bce432e3da +Author: Cameron Smart +Date: Wed Jul 13 09:54:13 2022 -0700 + + Append deploy variables to common.py + +commit 2f0b58afebccadac2f53f8d78c477c13632dba02 +Author: abottoms-coder +Date: Mon Jul 18 14:33:42 2022 -0400 + + updating ToC links + +commit e13346df63aecd44a9fe74da57c018dbc4cad3a5 +Author: abottoms-coder +Date: Mon Jul 18 14:27:13 2022 -0400 + + More updates for circleci + +commit 4e65bf2b56653fba653e2307679c6baa8f8fba50 +Author: abottoms-coder +Date: Mon Jul 18 13:43:20 2022 -0400 + + Added section on network connectivity + +commit 61cf7bc87bf164310e36a09e4047c647f41d3ddf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 13:21:23 2022 -0400 + + Update config.yml + + testing staging deployment for hhs:main. + +commit 380dffaa0805cfbecf52a8c47f36bf3ed450b862 +Merge: 402aee4ab df4d98131 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 13:01:19 2022 -0400 + + Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit df4d98131e6270b0bcaff71174472ab431d39398 +Merge: 5428ab1f5 3c26c9356 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 18 09:42:48 2022 -0400 + + Merge pull request #1907 from raft-tech/feat/1789-prod-gov-banner + + Feat/1789 prod gov banner + +commit 3c26c9356e8f9ef843dca8e744aa3f50a96bfacc +Merge: e1cb0dadb 5428ab1f5 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 18 09:35:53 2022 -0400 + + Merge branch 'develop' into feat/1789-prod-gov-banner + +commit 5428ab1f5189c5f797e2117e88b809d54b7d7d47 +Merge: d1fb30194 01222dcce +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 18 09:35:26 2022 -0400 + + Merge pull request #1900 from raft-tech/feat/1680-profile-stt-unapproved + + Feat/1680 profile stt unapproved + +commit 01222dcce139c66dce8bbe8965369081d32f26c2 +Merge: abad4e4d7 d1fb30194 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jul 18 09:24:17 2022 -0400 + + Merge branch 'develop' into feat/1680-profile-stt-unapproved + +commit f2f78d9519b255c679c741c07e79eaa14f14958c +Merge: 9bfa6b159 d1fb30194 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 09:07:20 2022 -0400 + + Merge branch 'develop' into feat/1906-use-asterisk-on-access-form + +commit ec3f58cb9f426477bae8259aa8b05abbff64d8aa +Merge: b5da5e7dc d1fb30194 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 18 09:06:29 2022 -0400 + + Merge branch 'develop' into feat/1788-resource-cards + +commit d1fb301949d0f34a0ad77e87b8b7e7a2b1af6671 +Merge: 7ba13f463 79a4b866e +Author: Miles Reiter +Date: Fri Jul 15 19:11:25 2022 -0400 + + Merge pull request #1940 from raft-tech/knowledge-center + + Adds finalized Knowledge Center Content + +commit 79a4b866ed28a2dfd658ba3798df9de5d1936b43 +Merge: 6bfcd05a0 7ba13f463 +Author: Miles Reiter +Date: Fri Jul 15 18:03:30 2022 -0400 + + Merge branch 'develop' into knowledge-center + +commit 9bfa6b159c8fd47334bdb7315cc2b904d33f80fa +Author: Cameron Smart +Date: Fri Jul 8 16:49:29 2022 -0700 + + added aria-req to combobox input + +commit 42ed2a5b581d3f35f51eaf7bd7151cd9d54d9a5e +Author: Cameron Smart +Date: Thu Jul 7 11:53:20 2022 -0700 + + fix frontend tests + +commit 3e35640ccf78769706e99bb2c334e6b54c800f8b +Author: Cameron Smart +Date: Thu Jul 7 11:39:05 2022 -0700 + + change required to * + +commit b5da5e7dc17ebf29d538372de909acb3f1cf39df +Author: Cameron Smart +Date: Mon Jul 11 16:00:46 2022 -0700 + + Aligned home button propperly + +commit faf98806474b2ee0650018fb6faf275c53c7ba51 +Author: Cameron Smart +Date: Mon Jul 11 14:37:40 2022 -0700 + + fix nav button alignment + +commit 52be8c176079ecbecdd141fc97c90e9664751520 +Author: Cameron Smart +Date: Mon Jul 11 14:33:31 2022 -0700 + + fix nav bar styling + +commit fc13af6452b83652ec7cdde82e6ce96ac3e708e2 +Author: Cameron Smart +Date: Mon Jul 11 12:46:51 2022 -0700 + + Fix header positioning + +commit bb1cbd96ed90e8dbb4bd505844182bdef8394b2b +Author: Cameron Smart +Date: Mon Jul 11 11:30:38 2022 -0700 + + Fix sign out button on home page width + +commit 22ae51950aba42e7e416adb5498666c18055a04a +Author: Cameron Smart +Date: Mon Jul 11 10:09:50 2022 -0700 + + change main container to use widescreen + +commit dd231134e6a654da0fbdf25c76b41f36ecdb6718 +Author: Cameron Smart +Date: Mon Jul 11 09:51:14 2022 -0700 + + remove unnneeded margins + +commit 14d613cfb1fadc9d5294c2ecd66336296bba2b5b +Author: Cameron Smart +Date: Fri Jul 8 17:10:08 2022 -0700 + + Fixed Fate typo + +commit f77a766051d257e96cc07be59d4824bf2e4dda67 +Author: Cameron Smart +Date: Fri Jul 8 16:43:08 2022 -0700 + + fixed eslint + +commit f3f37ee377fc9b4f78c397086f7fe1c84ff2028d +Author: Cameron Smart +Date: Fri Jul 8 16:36:27 2022 -0700 + + fixed tests + +commit 3312e93a4d8a976ca0e02f61cc71dfacadf6c9ec +Author: Cameron Smart +Date: Fri Jul 8 15:55:25 2022 -0700 + + remove broken tests + + they will return + +commit a370dbd14a60533f86c0a4dabc941b8cff46d17b +Author: Cameron Smart +Date: Fri Jul 8 14:13:48 2022 -0700 + + changed header/footer margins, final touches to styling + +commit 6285a16eaf0ba531a12efa4f4c0693c2b6c9d46c +Author: Cameron Smart +Date: Fri Jul 8 12:05:46 2022 -0700 + + refactored a tag into button component + +commit 7dc75c31203c333ecea5496ef4dc817595199c5b +Author: Cameron Smart +Date: Fri Jul 8 11:35:18 2022 -0700 + + fixed double focus when tabbing though buttons, started tests. + +commit da5f8f5322da8f3d32fb5bdff1d1775eeb2e5548 +Author: Aaron Beavers +Date: Wed Jul 6 15:01:48 2022 -0400 + + reverting mirage.js to develop + +commit 83c5f62887c133f735f115eeaa4c5e155f7a2cd4 +Author: Cameron Smart +Date: Tue Jul 5 15:53:32 2022 -0700 + + adjusting margin for mobile + +commit 9369494d3f87fb822b87c950c0e693719119d636 +Author: Cameron Smart +Date: Tue Jul 5 15:03:37 2022 -0700 + + Cards header in container for positioning + +commit 8c3e2be8c16333f4206e7e4558377358c8c9cb20 +Author: Cameron Smart +Date: Tue Jul 5 14:13:30 2022 -0700 + + no more horizontal overflow on mobile + +commit 3be5daa4c96d14b5c0bc92b28ddeda10b7aac8aa +Author: Cameron Smart +Date: Tue Jul 5 13:31:06 2022 -0700 + + opimized for mobile + +commit bc0b45b570abe8b5f95324a1617cd35e9d6ef1a5 +Author: Cameron Smart +Date: Tue Jul 5 10:32:01 2022 -0700 + + remove rolling strategy for clamav + +commit 8c03e1097860e71042b19953e4170c5ed66da047 +Author: Cameron Smart +Date: Fri Jul 1 15:28:07 2022 -0700 + + better layout + +commit 80da5f9b166c5d70d59ab5d7e36b7479b36d8874 +Author: Cameron Smart +Date: Fri Jul 1 14:53:42 2022 -0700 + + added background color + +commit a13bd95701f93083181f974475f8982f4ecb5edb +Author: Cameron Smart +Date: Fri Jul 1 14:28:14 2022 -0700 + + Added padding, formatted for widescreen + + removed more style classes from the .scss. I think I got the styles to match better without usa-card__heading, but I should talk to someone about this + +commit 2b9a4e6e886d117345f7246a1c55885f896bf0b2 +Author: Cameron Smart +Date: Fri Jul 1 13:09:17 2022 -0700 + + title and cards in same row + +commit 99f041f0d27a65a9bfdb2b9eeef48c39ca24c173 +Author: Cameron Smart +Date: Thu Jun 30 13:15:01 2022 -0700 + + card content all fits + +commit a0754a72a4d2c12c52bd12df58b7abf92150b1df +Author: Cameron Smart +Date: Thu Jun 30 12:06:18 2022 -0700 + + linked buttons and centered content + + there is still an issue with the height of the cards + +commit 67a9e60b0e9ca831a1757c264a936740420e9afc +Author: Aaron Beavers +Date: Wed Jun 29 11:49:13 2022 -0400 + + started work + +commit fc2164666c319417da75b05a0588e4b279e26387 +Author: Aaron Beavers +Date: Wed Jun 22 14:18:04 2022 -0400 + + update mirage + +commit 7ba13f463a2b2b1627314b72a2708da76c7468a2 +Merge: 2e897f25b cb6afbd26 +Author: Aaron Beavers +Date: Fri Jul 15 16:07:29 2022 -0400 + + Merge pull request #1961 from raft-tech/bug/fix-cf-install-for-circleci + + bug/fix-cf-install-for-circleci + +commit cb6afbd263f959be3708ab42a800fc406edf1029 +Author: Aaron Beavers +Date: Fri Jul 15 15:59:08 2022 -0400 + + Update .circleci/config.yml + +commit 0d2b09469b818613640a9c437cbb774947c9653e +Author: abottoms-coder +Date: Fri Jul 15 15:36:09 2022 -0400 + + initial commit, draft + +commit 8b66d53c12f9360d81a6ad796e0846a310d04f4c +Author: Cameron Smart +Date: Fri Jul 15 11:50:59 2022 -0700 + + install cf from source + +commit 06d2f0d13e638bec12a4bd80cdf73134d3e0b581 +Author: msohanifr +Date: Thu Jul 14 19:22:27 2022 -0400 + + added paramiko + +commit 06df91793b42f627092d03cac37d182da22dda3f +Author: msohanifr +Date: Thu Jul 14 11:11:11 2022 -0400 + + added the task for upload + +commit 6bfcd05a0965ebbb2eb7401a173964538e99b617 +Merge: cb473bb33 2e897f25b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jul 13 09:28:58 2022 -0400 + + Merge branch 'develop' into knowledge-center + +commit 2e897f25b3f63451de8528d9d62f450d74f559d8 +Merge: eb6a6ac80 d82bbcdf8 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jul 13 09:28:45 2022 -0400 + + Merge pull request #1912 from raft-tech/doc/1493-keyrotation + + Issue 1493: Update key rotation steps + +commit e1cb0dadb4308260a52a812b7c873e4325188d4c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jul 13 09:27:08 2022 -0400 + + Update scripts/deploy-frontend.sh + + testing prod context for qasp. this will be reverted. + + Co-authored-by: Aaron Beavers + +commit d82bbcdf8ead38426561d70eebc8967423e53120 +Merge: ed62c1cd6 eb6a6ac80 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jul 13 09:14:18 2022 -0400 + + Merge branch 'develop' into doc/1493-keyrotation + +commit 402aee4ab779a189185954880cb99f3e471b0e05 +Author: Aaron Beavers +Date: Tue Jul 12 15:36:20 2022 -0400 + + add diagram + +commit a92a98efc1d448bdf842ef5fadbbaaac3040fe71 +Merge: 9b865ce76 eb6a6ac80 +Author: Aaron Beavers +Date: Tue Jul 12 15:26:01 2022 -0400 + + Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit 9b865ce769fcdb31ca2c6a46b02c9b4acc13f5a0 +Author: Aaron Beavers +Date: Tue Jul 12 15:25:39 2022 -0400 + + Update .circleci/config.yml + +commit a5202b1a97cdb1ed31ee359ed44859bd6eacb6c2 +Author: Aaron Beavers +Date: Tue Jul 12 15:25:33 2022 -0400 + + Update .circleci/config.yml + +commit cb6298049e267cd2ef84f7f4f30351521a7aec5f +Author: Aaron Beavers +Date: Tue Jul 12 15:25:20 2022 -0400 + + Update .circleci/config.yml + +commit 5425fb43532155d086ebbf1748b07c86e5da9f12 +Author: Aaron Beavers +Date: Tue Jul 12 15:06:22 2022 -0400 + + Update .circleci/config.yml + +commit c5ac937d7b5899b793a03ce44f0a8c5545ca2e1e +Author: Aaron Beavers +Date: Tue Jul 12 15:06:06 2022 -0400 + + Update docs/Technical-Documentation/TDP-environments-README.md + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit bb1cd7880193502e263fcef28892d72debb3420a +Author: Aaron Beavers +Date: Tue Jul 12 15:05:56 2022 -0400 + + Update docs/Technical-Documentation/Architecture-Decision-Record/008-deployment-flow.md + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit cb473bb332c958485b3d3fa3b26367e3be8840f7 +Author: Miles Reiter +Date: Tue Jul 12 14:51:55 2022 -0400 + + Adds nav nesting fix + +commit 7ca218707d4ed5a50a93a21a656c4faf6b37a30c +Merge: ef1111ddb eb6a6ac80 +Author: Aaron Beavers +Date: Mon Jul 11 14:03:48 2022 -0400 + + Merge branch 'develop' into feat/1789-prod-gov-banner + +commit ef1111ddb3481a84709db2248ea035568b6c3b61 +Author: Aaron Beavers +Date: Mon Jul 11 13:59:25 2022 -0400 + + Updated test descriptions + +commit ac748bba8756bfe5ea63adb1ec5155872073cbf5 +Author: Aaron Beavers +Date: Mon Jul 11 13:56:18 2022 -0400 + + Updated test descriptions + +commit 463868dd4949ed1b1f6224b72de9102edc1fdd62 +Author: Miles Reiter +Date: Mon Jul 11 13:11:14 2022 -0400 + + Found one more a11y fix that didn't get into the main commit + +commit 81c8ea10dd66c2e5040023f06d996fcfaeb0d94d +Author: msohanifr +Date: Mon Jul 11 12:35:08 2022 -0400 + + added django_celery_beat + +commit c9c7b7bbea5292b548a12826999c1ce53cb7edfe +Author: msohanifr +Date: Mon Jul 11 09:40:00 2022 -0400 + + added a new app, and sub task + +commit 98adae78a38d1f570372ec9ec241fd487ae3fc13 +Author: Miles Reiter +Date: Mon Jul 11 00:48:18 2022 -0400 + + Adds finalized Knowledge Center Content + +commit eb6a6ac80230d971f9c1a11f889bb42a946aba1d +Merge: c890e290a e448de320 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 8 09:13:38 2022 -0400 + + Merge pull request #1933 from raft-tech/stevenino-patch-2 + + Create sprint-50-summary.md + +commit e448de3201a903ddd80cd1c33b962842f0da6945 +Merge: c211890cb c890e290a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 8 08:56:28 2022 -0400 + + Merge branch 'develop' into stevenino-patch-2 + +commit c890e290a63f0b19a49f512d2998b1650d609372 +Merge: 275d20b47 c849bb988 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 8 08:56:04 2022 -0400 + + Merge pull request #1911 from raft-tech/lilybl1-patch-1 + + Add files via upload + +commit c849bb988435fdd5c72f65a8e913148db7388df6 +Merge: 93af8cb1a 275d20b47 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jul 8 08:42:35 2022 -0400 + + Merge branch 'develop' into lilybl1-patch-1 + +commit c211890cbdef1e5ab6a9c401fafbaa150510077b +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Jul 6 16:53:57 2022 -0700 + + Create sprint-50-summary.md + +commit abad4e4d79bfeb136d18037b53375fe961dc9d4a +Merge: 127af5102 275d20b47 +Author: Aaron Beavers +Date: Wed Jul 6 09:29:19 2022 -0400 + + Merge branch 'develop' into feat/1680-profile-stt-unapproved + +commit 51c818cdbb9dd1369064e259ca2bd826781f7a23 +Author: msohanifr +Date: Wed Jul 6 02:12:53 2022 -0500 + + added __init__ + +commit 6cf5549de2382296098445b9d30f521a77b58985 +Author: msohanifr +Date: Wed Jul 6 02:10:16 2022 -0500 + + delete __init__ file + +commit 22a20e27bec5c641803f77675057b2247665b5cf +Author: msohanifr +Date: Wed Jul 6 02:08:40 2022 -0500 + + remove white space + +commit c595ffb1e732b08fff79156c2fd1f7b90b1011b5 +Author: msohanifr +Date: Wed Jul 6 01:54:15 2022 -0500 + + changes to use django-configurations + +commit c0068618f8d1123915f81756e4f5c1240b05d298 +Author: msohanifr +Date: Tue Jul 5 11:11:02 2022 -0500 + + corrections + +commit d880c6f0f686f1c523b7b9f047a87b4cad252a4d +Author: raftmsohani +Date: Fri Jul 1 15:05:20 2022 -0700 + + 1133: redis works with celery installed in scheduling app + +commit 6917bbb48f50bdacb77868f45d96ba466ce04275 +Author: raftmsohani +Date: Fri Jul 1 13:20:19 2022 -0700 + + 1133: redis works + +commit 72527386ea05d8bb3568ae1c6b88e4586028670e +Author: raftmsohani +Date: Fri Jul 1 06:56:46 2022 -0700 + + 1133: redis works, celery doesn't connect + +commit ed62c1cd6f478b838eaa53842341cde70d230869 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jul 1 09:23:07 2022 -0400 + + Update docs/Technical-Documentation/secret-key-rotation-steps.md + + fix link + +commit 275d20b473c942687cbbbaf3adca118a35052356 +Merge: 4bb9c188c 3d1cefbd3 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 29 16:25:35 2022 -0400 + + Merge pull request #1923 from raft-tech/andrew-jameson-patch-1 + + Update communication-tools.md + +commit 6adbf0e81bb80bd374d156a98112a079a8666490 +Author: Aaron Beavers +Date: Wed Jun 29 15:10:15 2022 -0400 + + lint + +commit 127af510289656aa110877e53d732771d42e5458 +Author: Aaron Beavers +Date: Wed Jun 29 15:08:11 2022 -0400 + + lint + +commit 8d5c4febbba5b04268c1e721119c55c98f5820ed +Author: Aaron Beavers +Date: Wed Jun 29 15:07:03 2022 -0400 + + lint + +commit 3d1cefbd377aed04ca5edd3ee2e61b31be2a8112 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 29 15:06:55 2022 -0400 + + Update communication-tools.md + +commit 97e44a7949fdc692514d0bd3ffbefcf563ec9657 +Author: Aaron Beavers +Date: Wed Jun 29 15:05:48 2022 -0400 + + lint + +commit fe556284a9208ff9188ed816181d52a8672d3cb5 +Author: Aaron Beavers +Date: Wed Jun 29 15:04:40 2022 -0400 + + lint + +commit 6d1545a611ea65d92f923022986a164b488e05b1 +Author: Aaron Beavers +Date: Wed Jun 29 15:00:08 2022 -0400 + + use it over test for consistancy with other tests + +commit 53657d251e3bf98ab502a7e58ce0d29cd2354fa5 +Author: Aaron Beavers +Date: Wed Jun 29 14:52:16 2022 -0400 + + remove code meant for future work + +commit cf50122ac289348c3c5f5cb003b29f76b9a6c328 +Author: Aaron Beavers +Date: Wed Jun 29 14:41:03 2022 -0400 + + lint + +commit c461f48200e2a753dee2285cadc6f5dab1104491 +Author: Aaron Beavers +Date: Wed Jun 29 14:25:41 2022 -0400 + + remove log + +commit a07a8dde77e2cdc095b89cfb6115d265477ec14b +Author: Aaron Beavers +Date: Wed Jun 29 14:24:12 2022 -0400 + + Federal staff no longer show blank region + +commit 420618d2da83afd9506016ada0e664d7cb1d8189 +Author: Aaron Beavers +Date: Wed Jun 29 13:39:47 2022 -0400 + + Revert "Revert "consoldate blocks"" + + This reverts commit abaa1f13aca4b8628d2d7fd5a748d63ba654cd24. + +commit abaa1f13aca4b8628d2d7fd5a748d63ba654cd24 +Author: Aaron Beavers +Date: Wed Jun 29 13:39:47 2022 -0400 + + Revert "consoldate blocks" + + This reverts commit 283bb96db5718ad04eaa43c5a2f7a5c7326a05c5. + +commit ea4ce5970fb69f5b74914244a5d37915afdeeef9 +Author: Pennington +Date: Wed Jun 29 13:54:28 2022 -0400 + + updating sc-4 re: prepper to analyst + +commit 5cde964cc80bebf175ed7345078201b30313d4b1 +Merge: 283bb96db 0bf88e6b0 +Author: Aaron Beavers +Date: Wed Jun 29 13:42:37 2022 -0400 + + merging + +commit 283bb96db5718ad04eaa43c5a2f7a5c7326a05c5 +Author: Aaron Beavers +Date: Wed Jun 29 13:39:47 2022 -0400 + + consoldate blocks + +commit 38d7f699112847d4eef8bbd1620f02146fcdabdb +Author: Pennington +Date: Wed Jun 29 13:19:56 2022 -0400 + + updating ac-2 re: permission groups and acf ams + +commit 0bf88e6b0d68adcff63cc80d3aed71a06597a189 +Author: Aaron Beavers +Date: Wed Jun 29 13:04:08 2022 -0400 + + remove debugging logs + +commit 166d5f0114059d634e042d8cf3dd78ad20423453 +Author: Aaron Beavers +Date: Wed Jun 29 12:25:46 2022 -0400 + + fix database connection issue + +commit 3e5514d14168040e26378542c2bcaf48f6b51e4b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 29 10:18:58 2022 -0400 + + Update index.md + + updating control statement with expanded list and description of TDP (prod) permission groups. + +commit 529380cf0a7e1387e3a06adfbc730124d40b7981 +Author: raftmsohani +Date: Tue Jun 28 09:41:02 2022 -0700 + + added ToDo comments where the logic has to be added + +commit b3bd2ba90720075d13a1a75c80f72aa00dda4d53 +Merge: 3b4b82f30 4bb9c188c +Author: Aaron Beavers +Date: Tue Jun 28 10:53:30 2022 -0400 + + Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit 3b4b82f308e10ce77906baf01129878236e400fb +Author: Aaron Beavers +Date: Tue Jun 28 10:53:24 2022 -0400 + + Update docs/Technical-Documentation/Architecture-Decision-Record/008-deployment-flow.md + +commit ae6102fe5da85ca6e1e601ce2c82bcff9c17679f +Author: Aaron Beavers +Date: Tue Jun 28 10:49:53 2022 -0400 + + lint + +commit 41176b9a8fb694e7c9314b6cfdff79a09b4d83c6 +Merge: 3db900648 0a04fb118 +Author: Aaron Beavers +Date: Tue Jun 28 10:31:01 2022 -0400 + + merge + +commit 3db9006487e4a85db8d2d9d0a9873b177d1f0afa +Author: Aaron Beavers +Date: Tue Jun 28 10:29:18 2022 -0400 + + updated tests + +commit 4bb9c188c412cd65b55fc30a34d6b68b212f26c4 +Merge: b00e6eca2 428c6c121 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 27 16:53:07 2022 -0400 + + Merge pull request #1830 from raft-tech/feat/1736-legacy-file-transfer + + Feat/1736 legacy file transfer + +commit 0a04fb11867c10998acae03511bd7566e0879768 +Merge: af5f47ce1 b00e6eca2 +Author: Aaron Beavers +Date: Mon Jun 27 16:34:40 2022 -0400 + + Merge branch 'develop' into feat/1680-profile-stt-unapproved + +commit af5f47ce1022e8994b7b796b8bc567048fa1c849 +Author: Aaron Beavers +Date: Mon Jun 27 16:28:10 2022 -0400 + + update region for non approved users + +commit 79341d6bc0685ebe9d5a87868971b369df88c0ab +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 27 15:42:08 2022 -0400 + + include circleci link + +commit aae45811d6a2641ec4721d188c503a12f16c17de +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 27 15:36:40 2022 -0400 + + updating key rotation steps + +commit f91df07c4ae361967135c109ca090bcf376b5082 +Author: Aaron Beavers +Date: Mon Jun 27 15:24:31 2022 -0400 + + typo + +commit bd85573fc9be6d5bfd99df14fe56fac26bddfe99 +Author: Aaron Beavers +Date: Mon Jun 27 15:10:41 2022 -0400 + + update strings for spaces + +commit 613b8ad4241011fa81482d050e925f2bf9da57a0 +Author: Aaron Beavers +Date: Mon Jun 27 14:37:59 2022 -0400 + + Update docs/Technical-Documentation/TDP-environments-README.md + +commit bf9fc57e754f41ca6bb99826ca2767e1aa7854f8 +Merge: 5127dd83b b00e6eca2 +Author: Aaron Beavers +Date: Mon Jun 27 14:37:39 2022 -0400 + + Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit 5127dd83ba1393db5d02101a35301650c626baee +Merge: b35565fad bffc06e69 +Author: Aaron Beavers +Date: Mon Jun 27 13:49:48 2022 -0400 + + merging + +commit b35565fadcbc98de71990ca383a0b59539db06fe +Author: Aaron Beavers +Date: Mon Jun 27 13:43:48 2022 -0400 + + update documentation + +commit 428c6c1214371ddc6e497119aa27a575e64fdf29 +Author: Aaron Beavers +Date: Mon Jun 27 13:22:24 2022 -0400 + + Update tdrs-backend/tdpservice/stts/migrations/0006_alter_stt_filenames.py + +commit 076496b2bbd6194ed83bcee8e1c7819917bf55fa +Author: Aaron Beavers +Date: Mon Jun 27 13:22:13 2022 -0400 + + Update tdrs-backend/tdpservice/stts/migrations/0006_alter_stt_filenames.py + +commit 400fab37b855868e2e26789691264021ca962e85 +Merge: 893d914b1 b00e6eca2 +Author: Aaron Beavers +Date: Mon Jun 27 13:19:57 2022 -0400 + + Merge branch 'develop' into feat/1736-legacy-file-transfer + +commit 93af8cb1a6cb36138013cc861adc89b4bd57e08d +Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> +Date: Mon Jun 27 11:42:11 2022 -0500 + + Add files via upload + +commit b00e6eca26805c7c3668d70f9e3f6593a71f9248 +Merge: d1ce85f6b c70159a54 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 27 10:07:38 2022 -0400 + + Merge pull request #1897 from raft-tech/stevenino-patch-2 + + Create sprint-49-summary.md + +commit c70159a548368283020a448c2ce860b817ddfb61 +Merge: e26c72bea d1ce85f6b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 27 09:40:43 2022 -0400 + + Merge branch 'develop' into stevenino-patch-2 + +commit 8ea168fd3d7a0e3f9701731330345d3d8022b450 +Merge: 41279ecea d1ce85f6b +Author: Aaron Beavers +Date: Mon Jun 27 09:20:29 2022 -0400 + + Merge branch 'develop' into feat/1789-prod-gov-banner + +commit 41279ecea10d09564652207186fa4962aa0f873e +Author: Aaron Beavers +Date: Fri Jun 24 16:26:05 2022 -0400 + + lint + +commit e5cba92adc8164bf0e473d647986f24499ce6a7b +Author: Aaron Beavers +Date: Fri Jun 24 16:18:51 2022 -0400 + + lint + +commit 87342ac790c24226c5922dd612efefb4bb4ed76a +Author: Aaron Beavers +Date: Fri Jun 24 16:12:23 2022 -0400 + + update gov banner and test + +commit d1ce85f6b93669600694ae80007e3902cc6c08f7 +Merge: 8b5be5458 6b0350d44 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jun 24 15:49:10 2022 -0400 + + Merge pull request #1908 from raft-tech/hotfix/clamav-dont-delete + + clamav was getting network policies nuked every deletion + +commit 6b0350d447a1f4b36868a83df21d01b2f0db6188 +Author: abottoms-coder +Date: Fri Jun 24 15:16:13 2022 -0400 + + clamav was getting network policies nuked every deletion + +commit 737520ad179c5a95f94864cbdbf16cd1294ec0d0 +Author: Aaron Beavers +Date: Fri Jun 24 14:11:17 2022 -0400 + + Update banner and add env var to deployment scripts + +commit 893d914b1efed0629825e5f4ddfecbc31220756d +Author: Aaron Beavers +Date: Fri Jun 24 10:22:10 2022 -0400 + + lint + +commit e01ca462d9d46c5891e6bcf25420f9ccf377e352 +Author: Aaron Beavers +Date: Fri Jun 24 10:18:51 2022 -0400 + + Added an additional assertion to confirm test is valid, and loop executes + +commit 633af2695cf08013736ee3c7dfadb62efaa56d59 +Author: Aaron Beavers +Date: Fri Jun 24 10:01:50 2022 -0400 + + remove call to command + +commit cb80c905dd81a147aa05592385610e7ed72cb493 +Merge: e40c58a04 8b5be5458 +Author: Aaron Beavers +Date: Thu Jun 23 10:08:08 2022 -0400 + + Merge branch 'develop' into feat/1680-profile-stt-unapproved + +commit e40c58a04cb765cd28f6f1b8c437bfe32988d821 +Author: Aaron Beavers +Date: Thu Jun 23 10:02:25 2022 -0400 + + update test + +commit a26443e530cd08c093c6009273d6e4c8ef05b40a +Author: Aaron Beavers +Date: Wed Jun 22 15:51:06 2022 -0400 + + Update page to show infered region + +commit d408914a4d262e54420081dac67a7d39094ef661 +Author: Aaron Beavers +Date: Wed Jun 22 15:50:44 2022 -0400 + + add region to seriazlizer + +commit 21231c798cdc0120dbbb9588ffb7603dcdc352fe +Author: Aaron Beavers +Date: Wed Jun 22 15:21:28 2022 -0400 + + remove incomplete thought + +commit ae632b650b7a2d108fd7481c0702586130487ad7 +Author: Aaron Beavers +Date: Wed Jun 22 15:20:56 2022 -0400 + + lint and commentary + +commit 255fd8de634eadf10603fd31d2ccf7db9e28b810 +Author: Aaron Beavers +Date: Wed Jun 22 14:38:13 2022 -0400 + + Default to federal government as STT if no name is available. + +commit 63086edf023abf32e85dfe4d2eb2a937b009226e +Author: Aaron Beavers +Date: Wed Jun 22 14:20:28 2022 -0400 + + update page + +commit a707e11d0b5068c9d0cdad96f9f6a4f8ce3e61c9 +Merge: c396df5c0 6e5b53e1b +Author: Aaron Beavers +Date: Wed Jun 22 14:19:06 2022 -0400 + + Merge branch 'develop' into feat/1680-profile-stt-unapproved + +commit 6e5b53e1bde349b2b463a9e21b6676dd6edb113f +Author: Aaron Beavers +Date: Wed Jun 22 14:18:04 2022 -0400 + + update mirage + +commit bffc06e69994ef4ca30fc04017140f9bb020eed9 +Merge: 47a0406a3 8b5be5458 +Author: Aaron Beavers +Date: Wed Jun 22 12:09:20 2022 -0400 + + Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit e26c72bea0a486e3c414090e3243502beef0ad18 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jun 21 17:04:52 2022 -0700 + + Update docs/Sprint-Review/sprint-49-summary.md + +commit 5a59722022c00f792cff98a5df191ed662721a03 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jun 21 17:03:54 2022 -0700 + + Update docs/Sprint-Review/sprint-49-summary.md + +commit 6d0d5c54e1c51305ee6b499a270bba8a5e098ba6 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jun 21 16:59:19 2022 -0700 + + Create sprint-49-summary.md + +commit 82e6ec1d10a408bf891320bb4daf0f7c3f9da398 +Author: Aaron Beavers +Date: Tue Jun 21 10:02:49 2022 -0400 + + Pass stt explicitly into data file factory to prevent duplicate key error in region model + +commit 8b5be5458180b4038583d496f47b0202d9a376fe +Merge: c1ee21510 6ace0d05e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jun 17 11:16:39 2022 -0400 + + Merge pull request #1877 from raft-tech/andrew-jameson-patch-1 + + Update pull_request_template.md + +commit 6ace0d05e681710b5af6e79d451098c35aac732d +Merge: e3da547c6 c1ee21510 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jun 17 10:26:34 2022 -0400 + + Merge branch 'develop' into andrew-jameson-patch-1 + +commit c1ee21510bfcf98deadf9862e06d3f67f18cc64b +Merge: c396df5c0 976029a8b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jun 17 10:26:19 2022 -0400 + + Merge pull request #1749 from raft-tech/feat/1631-periodic-database-backup + + 1631: Cloud database backup and restore + +commit e3da547c6cb677b663bf938ea4f58aca9aaa1438 +Merge: 1b40f758c c396df5c0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri Jun 17 10:22:50 2022 -0400 + + Merge branch 'develop' into andrew-jameson-patch-1 + +commit 47a0406a30a597ec3bafd97ea0ad512e93338097 +Author: Aaron Beavers +Date: Thu Jun 16 11:08:36 2022 -0400 + + change to test-main + +commit c5444a3a0842f5394ea26f899e368d21b7ad0c5d +Author: Aaron Beavers +Date: Wed Jun 15 15:08:01 2022 -0400 + + update terraform staging variables fmt + +commit 1991e70272ccc5d3471985a678d88c7c3fe85ee7 +Merge: 06b3be99b c396df5c0 +Author: Aaron Beavers +Date: Wed Jun 15 14:16:01 2022 -0400 + + Merge remote-tracking branch 'origin/develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit 06b3be99b4022f086c55cb0fef1fb60df2751f9a +Author: Aaron Beavers +Date: Wed Jun 15 14:12:29 2022 -0400 + + test + +commit 15fd7ede81c0482db9b4c23d9b48adbe8b119f86 +Author: Aaron Beavers +Date: Wed Jun 15 14:07:37 2022 -0400 + + update the filter for staging + +commit 56729d4dd7f742894a3772e6ff108d0d43c86a43 +Author: Aaron Beavers +Date: Wed Jun 15 14:07:18 2022 -0400 + + keep my undo files from getting into the project + +commit 0fb7de30afcda1f8988b36e1e39a60892f4ebee5 +Merge: e2478d512 c396df5c0 +Author: Aaron Beavers +Date: Wed Jun 15 13:35:55 2022 -0400 + + Merge remote-tracking branch 'origin/develop' into feat/1736-legacy-file-transfer + +commit e2478d5121ded75e3edda216eec7c790274e4e64 +Author: Aaron Beavers +Date: Wed Jun 15 13:35:39 2022 -0400 + + parse json + +commit 976029a8b7659dd47cfe7e7f805127d0dcca64e0 +Merge: 80376d0bd c396df5c0 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 15 12:47:18 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit c396df5c0a87fa4898bb4a7b93049777df21e68e +Merge: fe676b484 b52098fee +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 15 12:20:51 2022 -0400 + + Merge pull request #1867 from raft-tech/doc/1282-usermgmt + + Issue 1282: Update documentation on user management + +commit 80376d0bd85c0a8de9a83d29b1ec9db8547e2b27 +Merge: d142980f2 fe676b484 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 15 12:14:06 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit b52098fee09f69ce369798a687cd70044bdd9974 +Merge: 833d667d6 fe676b484 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 15 12:09:53 2022 -0400 + + Merge branch 'develop' into doc/1282-usermgmt + +commit fe676b4848919fc01aa523caf6c5f9a0a7842918 +Merge: 081b77bb4 ac11865d8 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 15 09:58:50 2022 -0400 + + Merge pull request #1771 from raft-tech/feat/1440-s3-prefix + + 1440/s3-prefix + +commit ac11865d855f4c9e8363845996782372471548ed +Merge: 1a4887ea2 081b77bb4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 15 09:53:16 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit 2a49718d10ccc4f2d428cb71c13adb924e4cac64 +Author: Aaron Beavers +Date: Wed Jun 15 09:39:47 2022 -0400 + + parse the json + +commit 081b77bb4b2164ac81aa9fada3ac65b9dd2fe741 +Merge: 2bd9a5222 8104648f4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 15 09:29:40 2022 -0400 + + Merge pull request #1774 from raft-tech/ops/1489 + + build(1489): Automate setting of default environment variables in Cloud.gov + +commit 772153529062bffb9b9f66cbac6c2791f60f4d20 +Author: Aaron Beavers +Date: Tue Jun 14 17:18:08 2022 -0400 + + migration for file names + +commit 1b40f758cc9974c2c0578746d724f74b8f44ff5e +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue Jun 14 14:51:42 2022 -0400 + + Update pull_request_template.md + + Unfortunately, keywords just link issue to PR, the linkage behavior cannot be changed. :( + +commit 4f9eed8d6a60dd15d9ee948fecc7d5564d83e93c +Author: Aaron Beavers +Date: Mon Jun 13 16:26:31 2022 -0400 + + lint + +commit 8104648f4661b80bfa7dbbf97801fc5523042e79 +Merge: 385492673 5520dd1df +Author: abottoms-coder +Date: Mon Jun 13 11:16:28 2022 -0400 + + Merge branch 'ops/1489' of github.com:raft-tech/TANF-app into ops/1489 + +commit 385492673ab1afef47449d6f1dacbd2d48d6c02b +Author: abottoms-coder +Date: Mon Jun 13 11:16:23 2022 -0400 + + Re-adding this, needed for rebuild context when done manually. Also removing set -e, we know the initial push for rebuild will fail, want script to run fully despite return codes + +commit 5520dd1df4e095801add8b05f9a1f8f4e19b8b0d +Merge: 2b42a1312 2bd9a5222 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 13 10:19:54 2022 -0400 + + Merge branch 'develop' into ops/1489 + +commit 601c001efb9b08caff6c708c75345488c79cd42f +Author: Aaron Beavers +Date: Fri Jun 10 13:14:56 2022 -0400 + + add new route to allowed hosts + +commit 15dfadcb4c1280ff28cd8ffbd402d6fcf12e322e +Author: Aaron Beavers +Date: Fri Jun 10 13:14:29 2022 -0400 + + start updates on circle config + +commit 833d667d614c43b17f19987e02139da7b7eb7c4a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jun 10 12:09:05 2022 -0400 + + Update docs/Technical-Documentation/user_role_management.md + + relative path cleanup + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 98a5cdb0690881e2c4b554d171d3f063ceededb5 +Merge: fedf0dd59 155edda5e +Author: Aaron Beavers +Date: Thu Jun 9 16:15:17 2022 -0400 + + Merge remote-tracking branch 'origin/feat/1440-s3-prefix' into feat/1746-new-routes-and-services-tanf-staging-space + +commit 0aec2e66fa04fb7398c3cb3968731a66321f8bd6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jun 9 15:38:52 2022 -0400 + + Update docs/Technical-Documentation/user_role_management.md + +commit e3bd4755f924dfc3bdcc99791b2a16444a37b3e5 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jun 9 15:31:01 2022 -0400 + + updated DAC documentation + +commit fedf0dd599a759c5176cffd9235a8f33ff0fe031 +Merge: c9309c504 55e2a35b8 +Author: Aaron Beavers +Date: Thu Jun 9 14:47:46 2022 -0400 + + Merge remote-tracking branch 'origin/ops/1489' into feat/1746-new-routes-and-services-tanf-staging-space + +commit 1a4887ea28049d890d39a03891abe62c835b7f86 +Author: Aaron Beavers +Date: Thu Jun 9 12:32:42 2022 -0400 + + Update tdrs-backend/tdpservice/data_files/models.py + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit ecd41a838d9b351812dffbc6646d044a0196bdd6 +Author: Aaron Beavers +Date: Thu Jun 9 11:58:44 2022 -0400 + + Update tdrs-backend/tdpservice/data_files/models.py + +commit c9309c504973095b202d4fb939b8bb30fbc44663 +Merge: 55d938abf 2bd9a5222 +Author: Aaron Beavers +Date: Thu Jun 9 11:13:46 2022 -0400 + + Merge remote-tracking branch 'origin/develop' into feat/1746-new-routes-and-services-tanf-staging-space + +commit bb3a6ed838e0143d4c09260d1ecc34e88df0e76c +Author: Aaron Beavers +Date: Thu Jun 9 10:57:41 2022 -0400 + + remove commented test + +commit 155edda5e9aebc3e10ff6ca4b0e99554762c851d +Merge: b94fcb109 2bd9a5222 +Author: Aaron Beavers +Date: Thu Jun 9 10:07:38 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit 7c8c753e73ca3524bff9108d5ed7a090d984b2f0 +Author: Aaron Beavers +Date: Thu Jun 9 09:53:01 2022 -0400 + + lint + +commit 2a743d90d11a68e9c9f8d05690f149862e4e990b +Author: Aaron Beavers +Date: Thu Jun 9 09:41:56 2022 -0400 + + lint + +commit d142980f2e9d253fa71dfbfab02459b4042805d7 +Merge: 5833467ef 0612f2bd5 +Author: Aaron Beavers +Date: Thu Jun 9 09:27:09 2022 -0400 + + Merge remote-tracking branch 'origin/feat/1631-periodic-database-backup' into feat/1631-periodic-database-backup + +commit 5833467ef83605169a9f1fb26594b204352a17d0 +Author: Aaron Beavers +Date: Thu Jun 9 09:26:05 2022 -0400 + + lint + +commit 0612f2bd53606da1ba9f934bb68476a5d861d8a8 +Merge: 2f10dbae5 2bd9a5222 +Author: Aaron Beavers +Date: Thu Jun 9 09:21:20 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit 55e2a35b8c9c6a82cfd7f0d2124928af68072942 +Merge: 2b42a1312 2bd9a5222 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jun 9 09:20:13 2022 -0400 + + Merge branch 'develop' into ops/1489 + +commit c403af4f39672204a268efab9927c4ec368d0986 +Merge: f3af8d666 2bd9a5222 +Author: Aaron Beavers +Date: Wed Jun 8 16:38:56 2022 -0400 + + Merge branch 'develop' into feat/1736-legacy-file-transfer + +commit f3af8d6661ebf82c87493d882223cb2dcd0ea360 +Author: Aaron Beavers +Date: Wed Jun 8 16:37:34 2022 -0400 + + choice migration + +commit 3c10d043ff48a743b358579ef3d7a4d359f848cb +Author: Aaron Beavers +Date: Wed Jun 8 16:35:47 2022 -0400 + + simplify test and remove left over imports + +commit e3d241ce0379a041ed7e012bc624a157c6fdeecf +Author: Aaron Beavers +Date: Wed Jun 8 16:34:07 2022 -0400 + + remove excessive test + +commit 6b08670a9d85ef0eec537246023df71af6793c4e +Author: Aaron Beavers +Date: Wed Jun 8 16:33:57 2022 -0400 + + add the rest of the possible section names to data file choice object + +commit 2b42a131270ac0a74feb87ccd92e747a0f439fa0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 8 16:10:52 2022 -0400 + + Update .github/workflows/deploy-on-label.yml + +commit cd89e0b1103a61cb55faba0d85ce8e06d573211a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 8 16:10:44 2022 -0400 + + Update scripts/deploy-backend.sh + +commit a3bee9591648a726153896713e2e4c7cd119c5ed +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 8 16:10:38 2022 -0400 + + Update scripts/deploy-backend.sh + +commit 2bd9a522292753042f57e4d0553a2fd1457a0fd7 +Merge: ef2be9cfb 30ee5afc9 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 8 15:05:34 2022 -0400 + + Merge pull request #1823 from raft-tech/dependabot/pip/tdrs-backend/develop/jwcrypto-1.3.1 + + Bump jwcrypto from 0.9.1 to 1.3.1 in /tdrs-backend + +commit 30ee5afc9381c4bedac7dc450dbfce5e31268fcd +Merge: 80ca40d95 ef2be9cfb +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 8 14:59:15 2022 -0400 + + Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/jwcrypto-1.3.1 + +commit ef2be9cfbf9f0fe0e855296d5fcc840f07171997 +Merge: 1bee3abe0 55a8106cf +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed Jun 8 14:59:02 2022 -0400 + + Merge pull request #1855 from raft-tech/stevenino-patch-2 + + Create sprint-48-summary.md + +commit fcef935eb3dbf409e81e689901c4514ea39f36b6 +Author: Aaron Beavers +Date: Wed Jun 8 14:41:22 2022 -0400 + + Added some explanatory comments + +commit 523d09e6995b3acd40e3c6b18eee034e218ce481 +Author: Aaron Beavers +Date: Wed Jun 8 14:36:05 2022 -0400 + + lint + +commit 732e39d42015b1019fb815d20414854e1e84eb7a +Author: Aaron Beavers +Date: Wed Jun 8 14:29:50 2022 -0400 + + DRYing out the tests + +commit ac0937ab572b2f31af7bfee276df4639356ce831 +Author: Aaron Beavers +Date: Wed Jun 8 14:04:44 2022 -0400 + + test passes + +commit b0dc82e9b18b2b2917e5434c84a22bcf5c1a71e3 +Author: Aaron Beavers +Date: Wed Jun 8 13:37:10 2022 -0400 + + WIP tests for data files + +commit d0b3b380a617904179cb3e23ea2593fbc2cf6bd5 +Author: Aaron Beavers +Date: Wed Jun 8 13:36:51 2022 -0400 + + parse json from csv file before comitting to model + +commit 4ef76aaffd076e40dd49135c1dd0a9b54716e7d2 +Author: Aaron Beavers +Date: Wed Jun 8 13:36:07 2022 -0400 + + Add getter for a data_files filename + +commit 610775c597ebf4a846f33920f437064c9fc8636a +Author: Aaron Beavers +Date: Wed Jun 8 13:35:35 2022 -0400 + + Add test confirming filenames field matches CSV + +commit 4316059977853b916dd3c34caa98ee40595db156 +Author: Aaron Beavers +Date: Wed Jun 8 13:35:12 2022 -0400 + + use json field + +commit 0d2120070fe10e3cd07a3487bc67640ef18e8b9b +Author: Aaron Beavers +Date: Wed Jun 8 10:10:17 2022 -0400 + + add legacy file transfer permissions + +commit 55a8106cfe80ac66ca9755f7cd51ff515813807c +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Jun 7 14:43:15 2022 -0700 + + Create sprint-48-summary.md + +commit b94fcb109b85883289e9be34b76cc683eabd153d +Author: Aaron Beavers +Date: Tue Jun 7 16:00:52 2022 -0400 + + remove unneeded code + +commit 1d063aeef3b0118dd2ff37a38c2fe4dd07e2bc97 +Author: Aaron Beavers +Date: Tue Jun 7 15:59:19 2022 -0400 + + document location setting choice + +commit 86016ead8412c6a31b9ceac67b0de73ea4494270 +Author: Aaron Beavers +Date: Tue Jun 7 15:47:10 2022 -0400 + + renamed sync for clarity + +commit 36ccfa9947240229b068c32f6d6f37969b488866 +Author: Aaron Beavers +Date: Tue Jun 7 15:46:58 2022 -0400 + + add backend sync to documentation + +commit fd9bdf1c6d5b8af56bb1873f98f711e664bd9ac6 +Author: Aaron Beavers +Date: Tue Jun 7 15:39:47 2022 -0400 + + update sync + +commit b32496971af334558d3c9d589fe547a33efc07f6 +Author: Aaron Beavers +Date: Tue Jun 7 15:06:51 2022 -0400 + + lint + +commit a984dfe0ed068b125f5fc1ac13bfb602688f420a +Merge: da6f44d0a 1bee3abe0 +Author: Aaron Beavers +Date: Tue Jun 7 13:31:59 2022 -0400 + + Merge branch 'develop' into feat/1736-legacy-file-transfer + +commit 2f10dbae5c04f47c62ecde41d19de2c21ec2d443 +Author: abottoms-coder +Date: Mon Jun 6 17:21:53 2022 -0400 + + Fixed stderr issue, added print statements + +commit da6f44d0ae535d34ee171fec2760cbdb058b3703 +Author: Aaron Beavers +Date: Mon Jun 6 16:26:47 2022 -0400 + + Update tdrs-backend/tdpservice/data_files/models.py + +commit 5820b79436b042473e3ae6ef10220756c03bf210 +Merge: caee092df cc629c255 +Author: Aaron Beavers +Date: Mon Jun 6 16:20:17 2022 -0400 + + Merge remote-tracking branch 'origin/feat/1736-legacy-file-transfer' into feat/1736-legacy-file-transfer + +commit caee092dfc99bca332409150c2b293ec8c371088 +Author: Aaron Beavers +Date: Mon Jun 6 16:18:38 2022 -0400 + + moved get_sha_sum function + +commit 8e5eacded62f2ad2973246c9af3ad3e01e0aaa44 +Merge: 972b3cd91 1bee3abe0 +Author: Aaron Beavers +Date: Mon Jun 6 15:19:49 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit 972b3cd910da9e3acd4f67919418337e54a70ced +Author: Aaron Beavers +Date: Mon Jun 6 15:14:53 2022 -0400 + + Update terraform/dev/main.tf + +commit 485beede6ef2bdf9f524a5ed093bab0015e11e51 +Author: Aaron Beavers +Date: Mon Jun 6 15:10:32 2022 -0400 + + Update tdrs-backend/tdpservice/settings/cloudgov.py + +commit a4621992efa05f0d4028fb6c09c52d761985039b +Author: Aaron Beavers +Date: Mon Jun 6 15:10:26 2022 -0400 + + Update tdrs-backend/tdpservice/settings/cloudgov.py + +commit 44a4021f5ce862d97bab74ab443a73df85263cb5 +Author: Aaron Beavers +Date: Mon Jun 6 15:10:20 2022 -0400 + + Update terraform/create_backend_vars.sh + +commit 78cc22919094d4879603018634fcbc663ddb32bf +Author: Aaron Beavers +Date: Mon Jun 6 15:09:56 2022 -0400 + + Update terraform/create_tf_vars.sh + +commit d3a444fe69451bcaba29a2bec5a0adb9696e5316 +Author: Aaron Beavers +Date: Mon Jun 6 15:09:34 2022 -0400 + + Update tdrs-backend/tdpservice/settings/cloudgov.py + +commit cc629c255e520704636ab3bf2b2b81a8b73bf9d4 +Author: Aaron Beavers +Date: Mon Jun 6 11:48:14 2022 -0400 + + lint + +commit d5267a1d7dde2546e749502dfb3e0cee42cb211a +Author: Aaron Beavers +Date: Mon Jun 6 11:48:05 2022 -0400 + + import file shasum from security module + +commit 80ca40d95c93c6146a403744ea4bc4c352cc3224 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jun 6 14:20:40 2022 +0000 + + Bump jwcrypto from 0.9.1 to 1.3.1 in /tdrs-backend + + Bumps [jwcrypto](https://github.com/latchset/jwcrypto) from 0.9.1 to 1.3.1. + - [Release notes](https://github.com/latchset/jwcrypto/releases) + - [Commits](https://github.com/latchset/jwcrypto/compare/v0.9.1...v1.3.1) + + --- + updated-dependencies: + - dependency-name: jwcrypto + dependency-type: direct:production + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 1bee3abe050c726a36b8b74f81662d8cfd2b1cef +Merge: 443436f63 329b35f31 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 6 10:16:07 2022 -0400 + + Merge pull request #1821 from raft-tech/dependabot/pip/tdrs-backend/develop/markdown-3.3.7 + + Bump markdown from 3.3.4 to 3.3.7 in /tdrs-backend + +commit 329b35f3104b427881389cb82bea7984fb93ec65 +Merge: db6b0dac7 443436f63 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 6 10:00:56 2022 -0400 + + Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/markdown-3.3.7 + +commit 443436f63844aaf6ed85fcd7380e7f22883a23cf +Merge: 147e22112 2448fa323 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 6 10:00:44 2022 -0400 + + Merge pull request #1822 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 + + Bump @lagunovsky/redux-react-router from 2.2.0 to 3.2.0 in /tdrs-frontend + +commit 2448fa3236ac1e5b013fd3bd4886d0a3bf5707a4 +Merge: 2157defb6 147e22112 +Author: abottoms-coder +Date: Mon Jun 6 09:54:42 2022 -0400 + + Resolved merge conflicts + +commit db6b0dac7d3cb96279a51d4402d6733c43912602 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jun 6 13:41:48 2022 +0000 + + Bump markdown from 3.3.4 to 3.3.7 in /tdrs-backend + + Bumps [markdown](https://github.com/Python-Markdown/markdown) from 3.3.4 to 3.3.7. + - [Release notes](https://github.com/Python-Markdown/markdown/releases) + - [Commits](https://github.com/Python-Markdown/markdown/compare/3.3.4...3.3.7) + + --- + updated-dependencies: + - dependency-name: markdown + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 147e221123d95fd159fb94b8170688dfb37ab1d5 +Merge: f47c4c5c1 44a3daf36 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 6 09:37:36 2022 -0400 + + Merge pull request #1800 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 + + Bump miragejs from 0.1.43 to 0.1.44 in /tdrs-frontend + +commit 44a3daf36150a68f63c8b323df755ab68e631c53 +Merge: 23e03ab4e f47c4c5c1 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon Jun 6 09:21:46 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 + +commit ad6af81f38f9693867501fd6173dabb95d331562 +Author: Aaron Beavers +Date: Fri Jun 3 15:44:18 2022 -0400 + + lint + +commit c5f04c1f83323f34759d577f051497d6b18297e3 +Merge: caaec43bd f47c4c5c1 +Author: Aaron Beavers +Date: Fri Jun 3 14:55:22 2022 -0400 + + Merge remote-tracking branch 'origin/develop' into feat/1736-legacy-file-transfer + +commit 0d2cd6b47af071bfc666a497a2f2b2c97bea8008 +Author: Aaron Beavers +Date: Thu Jun 2 16:28:14 2022 -0400 + + lint + +commit 47c4116c9a3604d1cd2ba446a0dc0f96687ac7f8 +Author: Aaron Beavers +Date: Thu Jun 2 16:07:44 2022 -0400 + + add location to s3 backends + +commit 1b818f3fbfe200c7728ee88fa9b76955c8a354ae +Author: Aaron Beavers +Date: Thu Jun 2 15:38:49 2022 -0400 + + lint + +commit a8154ce80bab8cc214f16cd739cbf723b77f18ce +Author: Aaron Beavers +Date: Thu Jun 2 15:31:49 2022 -0400 + + print settings + +commit 10f0c30265845e4323d5de7b5ed8eb7ce0c386b6 +Author: abottoms-coder +Date: Wed Jun 1 13:40:58 2022 -0400 + + Did the 'fi' get deleted by accident or is my bash-fu just weak? + +commit 69a24377f282ebc2318ba3a137f787a5b79345a2 +Author: abottoms-coder +Date: Tue May 31 17:01:52 2022 -0400 + + I love testing via CI + +commit d53aaf560a6699219cf6d17e520446b5bcf8735b +Author: abottoms-coder +Date: Tue May 31 16:52:43 2022 -0400 + + testing removing escaped quotes + +commit 25c7142cc632004da26fec30ef355f22277cf46c +Author: Aaron Beavers +Date: Thu May 26 14:42:04 2022 -0400 + + Update tdrs-backend/tdpservice/settings/cloudgov.py + +commit b86567aee94594ca8ce16b86851f6c72078d208b +Author: raftmsohani +Date: Thu May 26 09:19:30 2022 -0700 + + 1631: linting + +commit e9e8ebc5705eeb7c4285a9fc9df806e46dbbdd71 +Author: raftmsohani +Date: Thu May 26 08:59:34 2022 -0700 + + 1631: applied a couple of fixes + +commit cec64a462fa0812b8d0699143a1a9cfdc239acce +Merge: 89db633c8 f47c4c5c1 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 26 11:31:26 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit f47c4c5c1e41620de1c79b4656bf5d6f742e83c2 +Merge: 61b6d8088 f31cb4729 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 26 10:09:59 2022 -0400 + + Merge pull request #1798 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/axios-0.27.2 + + Bump axios from 0.26.0 to 0.27.2 in /tdrs-frontend + +commit f31cb472925197bfbac61eb9e83d7b2487bb0a12 +Merge: 998ae14f2 61b6d8088 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 26 09:58:33 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/axios-0.27.2 + +commit 61b6d8088a34899a28068f8ec78e67e062aea07b +Merge: 963cfc088 a768ca501 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 26 09:58:26 2022 -0400 + + Merge pull request #1825 from raft-tech/dependabot/pip/tdrs-backend/develop/django-filter-21.1 + + Bump django-filter from 2.4.0 to 21.1 in /tdrs-backend + +commit a768ca50115255095d30ce48068b10f70a3d9fa1 +Merge: 6f1babc5d 963cfc088 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 26 09:52:00 2022 -0400 + + Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/django-filter-21.1 + +commit 963cfc088f81aaf2ed53a43c68adb8a176dd4c3d +Merge: 16565b64d a00faaf66 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 26 09:51:28 2022 -0400 + + Merge pull request #1829 from raft-tech/stevenino-patch-2 + + Create sprint-47-summary.md + +commit 64193c7ddeff38ed05861ed9441c96210fa72fd1 +Author: raftmsohani +Date: Thu May 26 06:46:46 2022 -0700 + + 1631: cleanups + +commit 89db633c87c8f35f1d4c1a16d6ce23f4e84f40ab +Merge: 651734837 826edcb4a +Author: Aaron Beavers +Date: Wed May 25 14:37:28 2022 -0400 + + merge + +commit 651734837c393253fd77b74bd0c664a6c67a6614 +Author: Aaron Beavers +Date: Wed May 25 14:36:04 2022 -0400 + + update the rest of the environments + +commit dcf7379dc7bbf5361a10f71c7e7dfc6453b1f39c +Author: raftmsohani +Date: Wed May 25 11:19:37 2022 -0700 + + 1631: linting + +commit 1889fdea08abbb508ade5102417a6faaa5612b37 +Author: Aaron Beavers +Date: Wed May 25 14:15:54 2022 -0400 + + removed fun + +commit ce7566b8fe46f282cbc3c3f206527d4371c335fd +Author: raftmsohani +Date: Wed May 25 11:13:45 2022 -0700 + + 1631: printing + +commit 82f72a7948f5f28287781a002576039fe6e09f83 +Author: raftmsohani +Date: Wed May 25 10:42:38 2022 -0700 + + 1631: corrected -U option + +commit 826edcb4ab39d2a9abe7ef1042cd8db772fbbb34 +Author: Aaron Beavers +Date: Wed May 25 12:33:54 2022 -0400 + + Update tdrs-backend/tdpservice/settings/cloudgov.py + +commit 8c31576dd858321660c0324b296764cc8c3109ba +Author: raftmsohani +Date: Wed May 25 08:04:12 2022 -0700 + + 1631: linting + +commit c3c2501ad1803ae51d68ba68683b3a23f1ea643e +Author: raftmsohani +Date: Wed May 25 07:24:44 2022 -0700 + + 1631: linting + +commit a1f208e6db7bc85bec44bfb58f52a08792d5cf08 +Author: raftmsohani +Date: Wed May 25 06:57:39 2022 -0700 + + 1631: update pgpass + +commit 3512081d9b7d725d046ee94c950de9cc47a98d7c +Merge: 246357a12 16565b64d +Author: Aaron Beavers +Date: Wed May 25 09:33:12 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit f754d801d9488043ec18fa5609e68c601f660a90 +Author: raftmsohani +Date: Wed May 25 05:53:40 2022 -0700 + + 1631: removed --create and --clean option from restore + +commit 66856cc5a7c2697754542e8397901e37dd4083b2 +Author: raftmsohani +Date: Wed May 25 05:28:06 2022 -0700 + + 1631: added env PGPASSFILE to be used by createdb + +commit 55a31b01143aefb111a2626d7c1d3786a7e25fb9 +Author: raftmsohani +Date: Wed May 25 04:46:33 2022 -0700 + + 1631: linting + +commit 9f2978b2f6045fd686672f88c07330b440634ba5 +Author: raftmsohani +Date: Wed May 25 04:40:55 2022 -0700 + + 1631: linting + +commit e4f238cd75645c773ef8c66a90e03e05b8dbede6 +Author: raftmsohani +Date: Wed May 25 04:34:39 2022 -0700 + + 1631: removed prints + +commit a00faaf6644a70e8555a41fc73a35c385a192bce +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue May 24 14:07:11 2022 -0700 + + Create sprint-47-summary.md + +commit 24957eeb480ce1f35bd526ed7cce86cd1883552a +Author: abottoms-coder +Date: Tue May 24 15:32:53 2022 -0400 + + whitespace + +commit a69cc4e7e135df62588fabe9bfda9f90bd150ff9 +Author: abottoms-coder +Date: Tue May 24 15:14:13 2022 -0400 + + whitespace changes to retrigger ci and therefore redeploy + +commit 58025d118272aa2f876f5ecde2e73cdc52649a26 +Author: raftmsohani +Date: Tue May 24 12:11:18 2022 -0700 + + 1631: corrected the command line options + +commit ed0dc28afcdc5bf56c31339b6dcdcc8acd26a7b8 +Author: abottoms-coder +Date: Tue May 24 14:30:42 2022 -0400 + + not sure how I missed that we were calling the old script still...anyway, also deleted the weird temp flag check as we now have set-e + +commit b6eb9ab85c7ba19cc66fecdeef10983cea2a579f +Merge: 26d440bee 0e4ae6429 +Author: abottoms-coder +Date: Tue May 24 14:12:59 2022 -0400 + + Merge branch 'ops/1489' of github.com:raft-tech/TANF-app into ops/1489 + +commit 26d440beec53d8e1200075f64e64ac20656436da +Author: abottoms-coder +Date: Tue May 24 14:12:53 2022 -0400 + + setting error-exit for failed commands/expressions + +commit 0e4ae64294a960fd05f7e32044f2b9ed95deecdc +Merge: e2a4edd2a 16565b64d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 24 14:09:38 2022 -0400 + + Merge branch 'develop' into ops/1489 + +commit e2a4edd2a4aa3a0c15ca1d06f2340841c2b72ca5 +Author: abottoms-coder +Date: Tue May 24 14:09:25 2022 -0400 + + These escapes seem unnecessary + +commit 6f1babc5d4e96c0f1252bdb63e54fcf9382cf0db +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue May 24 16:14:31 2022 +0000 + + Bump django-filter from 2.4.0 to 21.1 in /tdrs-backend + + Bumps [django-filter](https://github.com/carltongibson/django-filter) from 2.4.0 to 21.1. + - [Release notes](https://github.com/carltongibson/django-filter/releases) + - [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst) + - [Commits](https://github.com/carltongibson/django-filter/compare/2.4.0...21.1) + + --- + updated-dependencies: + - dependency-name: django-filter + dependency-type: direct:production + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 998ae14f228afd63ddab896452f7d7dc01cebb97 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue May 24 16:11:40 2022 +0000 + + Bump axios from 0.26.0 to 0.27.2 in /tdrs-frontend + + Bumps [axios](https://github.com/axios/axios) from 0.26.0 to 0.27.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.26.0...v0.27.2) + + --- + updated-dependencies: + - dependency-name: axios + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 23e03ab4e3fc5a628075c158450756184eb724af +Merge: 3b8d95f70 16565b64d +Author: Aaron Beavers +Date: Tue May 24 12:11:20 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 + +commit 2157defb6ac1b44ffb2522258cd4ee53730366b3 +Merge: 39845c6b9 16565b64d +Author: Aaron Beavers +Date: Tue May 24 12:10:31 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 + +commit 16565b64d0162ff46bcfa7e19173b62ec41d3f89 +Merge: 607b1f09a 3d326cdc0 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue May 24 12:10:14 2022 -0400 + + Merge pull request #1824 from raft-tech/dependabot/pip/tdrs-backend/develop/psycopg2-binary-2.9.3 + + Bump psycopg2-binary from 2.9.1 to 2.9.3 in /tdrs-backend + +commit 39845c6b987946de8a087c2710990b67e42a5581 +Merge: c724cda46 607b1f09a +Author: Aaron Beavers +Date: Tue May 24 12:08:15 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 + +commit 246357a12114ea50b6826384256cb161365136dc +Merge: b8a1dfa7c 607b1f09a +Author: Aaron Beavers +Date: Tue May 24 09:40:54 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit 3d326cdc0f5090cf62089fbaae7eab228f74987a +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue May 24 13:29:27 2022 +0000 + + Bump psycopg2-binary from 2.9.1 to 2.9.3 in /tdrs-backend + + Bumps [psycopg2-binary](https://github.com/psycopg/psycopg2) from 2.9.1 to 2.9.3. + - [Release notes](https://github.com/psycopg/psycopg2/releases) + - [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS) + - [Commits](https://github.com/psycopg/psycopg2/commits) + + --- + updated-dependencies: + - dependency-name: psycopg2-binary + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 607b1f09a132b2d09a95b3994cea9b95587595b0 +Merge: e77e8df45 6bc562b7a +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 24 09:25:37 2022 -0400 + + Merge pull request #1820 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/eslint-8.16.0 + + Bump eslint from 8.15.0 to 8.16.0 in /tdrs-frontend + +commit 6bc562b7afad102c8eb050ce0a7ec70b30be5ef7 +Merge: 251ccbc08 e77e8df45 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 24 09:17:12 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/eslint-8.16.0 + +commit 7ee64dfe59a022a75f6f21ae2824af53ce2c8316 +Author: raftmsohani +Date: Tue May 24 05:24:52 2022 -0700 + + 1631: testing + +commit 07d589bc19b5d58657fe258976e0bd356562a506 +Author: raftmsohani +Date: Tue May 24 04:53:36 2022 -0700 + + 1631: removed try + +commit 1e0ea388f3596975ded823abda957c0d72c568b6 +Author: raftmsohani +Date: Tue May 24 04:15:44 2022 -0700 + + 1631: linting + +commit 758a42d99773103beafcbcc81ec4281b0708cdf6 +Author: raftmsohani +Date: Tue May 24 04:10:29 2022 -0700 + + 1631: added pg_pass file to restore function + +commit d340f6a51bb23524aaed97638e47423322b3dc69 +Author: raftmsohani +Date: Tue May 24 03:30:39 2022 -0700 + + 1631: added URI handling back + +commit 6098f78923557e5555ace132512d73b0fb25e79c +Merge: 9200fdb67 e77e8df45 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Tue May 24 05:37:00 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit b8a1dfa7c684ac07b53d4670842a30f42181962a +Author: Aaron Beavers +Date: Mon May 23 16:41:19 2022 -0400 + + varname + +commit 8bb9dd5a54d087c9d98bf8188de756021f34ff14 +Merge: 83b0bd73d 592b11e03 +Author: Aaron Beavers +Date: Mon May 23 16:18:20 2022 -0400 + + iMerge branch 'feat/1440-s3-prefix' of github.com:raft-tech/TANF-app into feat/1440-s3-prefix + +commit 83b0bd73d605387c377bddf1d254264afd23892c +Author: Aaron Beavers +Date: Mon May 23 16:09:29 2022 -0400 + + update circleci config + +commit 592b11e03176f3f92c0eba4b4f88e93c57033e24 +Merge: 8cb932db3 e77e8df45 +Author: Aaron Beavers +Date: Mon May 23 15:45:27 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit 8cb932db30b82ffccbe68b8ec11645daf3f64139 +Author: Aaron Beavers +Date: Mon May 23 15:38:37 2022 -0400 + + remove from main tf bucket and prefix + +commit e77e8df459e2bb1519744e2036cd9062f27fb56c +Merge: a8c2e04ed 87e67ce17 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 23 14:13:27 2022 -0400 + + Merge pull request #1812 from raft-tech/feat/1779-buildpack-version-pinning + + Buildpack version pinning + +commit 87e67ce1764c393b9ae3e80e9eefab406b67ffef +Merge: bd739f9ee a8c2e04ed +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 23 14:07:17 2022 -0400 + + Merge branch 'develop' into feat/1779-buildpack-version-pinning + +commit 3b8d95f70b9af9419d5698d6f3b7607338ea8504 +Merge: 735d4c4e6 a8c2e04ed +Author: Aaron Beavers +Date: Mon May 23 13:17:16 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 + +commit c724cda4646e6adfc1e51db835f6e7130fb4965e +Merge: e0a511d2f a8c2e04ed +Author: Aaron Beavers +Date: Mon May 23 12:18:30 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 + +commit 9200fdb67f23d371e6c30fd88bad0eccd3c66a16 +Author: raftmsohani +Date: Mon May 23 08:42:40 2022 -0700 + + 1631: remove tmp files + +commit 144b79edc8d0cc5c20595208e84d0760b822ab02 +Merge: 08e415e1d a8c2e04ed +Author: Aaron Beavers +Date: Mon May 23 11:38:26 2022 -0400 + + Merge branch 'develop' into ops/1489 + +commit c4223d605dacc0a8a26b985a96c1660fa526591b +Author: raftmsohani +Date: Mon May 23 07:18:14 2022 -0700 + + 1631: linting + +commit ed4bd77c2b4fe74417b115b9d2cd86681443c302 +Merge: 1942f6696 3d2850994 +Author: raftmsohani +Date: Mon May 23 07:07:20 2022 -0700 + + Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup + +commit 1942f6696d1700cb4fa7f90042007155887bb20e +Author: raftmsohani +Date: Mon May 23 07:06:37 2022 -0700 + + 1631: Added createdb for restoring to different database + +commit a8c2e04ed944bde37af1b9b416e7f9980be431be +Merge: c47ec76b2 9ad8dbc08 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 23 10:04:44 2022 -0400 + + Merge pull request #1782 from raft-tech/bug/1772-errors-when-submitting-files + + Bug/1772 errors when submitting files + +commit 9ad8dbc0804353395bbdafa918f2b99d9bd8573e +Merge: 556e3e22b c47ec76b2 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 23 09:58:47 2022 -0400 + + Merge branch 'develop' into bug/1772-errors-when-submitting-files + +commit e0a511d2f0c60798365ee19ba80011067bea33d7 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 23 06:39:28 2022 +0000 + + Bump @lagunovsky/redux-react-router in /tdrs-frontend + + Bumps [@lagunovsky/redux-react-router](https://github.com/lagunovsky/redux-react-router) from 2.2.0 to 3.2.0. + - [Release notes](https://github.com/lagunovsky/redux-react-router/releases) + - [Commits](https://github.com/lagunovsky/redux-react-router/compare/v2.2.0...v3.2.0) + + --- + updated-dependencies: + - dependency-name: "@lagunovsky/redux-react-router" + dependency-type: direct:production + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 251ccbc08897d1661a32c3b3782f2de297b33b15 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 23 06:36:17 2022 +0000 + + Bump eslint from 8.15.0 to 8.16.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.15.0 to 8.16.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.15.0...v8.16.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit c47ec76b238210dcb8706c316beec10b78fad75e +Merge: 3eefd5ed5 7e4a4f004 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 13:53:21 2022 -0400 + + Merge pull request #1818 from raft-tech/andrew-jameson-patch-1 + + Updating rotation steps after working on JWT keys + +commit 7e4a4f004299c08d8633bf754f31f2591b306352 +Merge: 4ad062050 3eefd5ed5 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 13:28:16 2022 -0400 + + Merge branch 'develop' into andrew-jameson-patch-1 + +commit 4ad0620503f1905b7512c3686251a28d53f49808 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 13:27:19 2022 -0400 + + Update secret-key-rotation-steps.md + +commit 735d4c4e678dcd565c21a38eda4e032e833c5b53 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri May 20 15:59:57 2022 +0000 + + Bump miragejs from 0.1.43 to 0.1.44 in /tdrs-frontend + + Bumps [miragejs](https://github.com/miragejs/miragejs) from 0.1.43 to 0.1.44. + - [Release notes](https://github.com/miragejs/miragejs/releases) + - [Changelog](https://github.com/miragejs/miragejs/blob/master/CHANGELOG.md) + - [Commits](https://github.com/miragejs/miragejs/compare/v0.1.43...v0.1.44) + + --- + updated-dependencies: + - dependency-name: miragejs + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 3eefd5ed50a331051122b149833c76ce766809b3 +Merge: 8f6bc5633 2c3091aad +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 11:58:37 2022 -0400 + + Merge pull request #1817 from raft-tech/dependabot/pip/tdrs-backend/develop/gunicorn-20.1.0 + + Bump gunicorn from 20.0.4 to 20.1.0 in /tdrs-backend + +commit 08e415e1d085622f902703b2b065dc9cf8a7565a +Merge: b3179be5d 8f6bc5633 +Author: abottoms-coder +Date: Fri May 20 11:47:55 2022 -0400 + + Resolving merge conflict + +commit 2c3091aadcb61389fabed09779647cec26986d04 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri May 20 15:34:37 2022 +0000 + + Bump gunicorn from 20.0.4 to 20.1.0 in /tdrs-backend + + Bumps [gunicorn](https://github.com/benoitc/gunicorn) from 20.0.4 to 20.1.0. + - [Release notes](https://github.com/benoitc/gunicorn/releases) + - [Commits](https://github.com/benoitc/gunicorn/compare/20.0.4...20.1.0) + + --- + updated-dependencies: + - dependency-name: gunicorn + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 8f6bc5633b0019564783e072639c2a4fd368710c +Merge: fa2df46cb aa722ab15 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 11:31:09 2022 -0400 + + Merge pull request #1809 from raft-tech/dependabot/pip/tdrs-backend/develop/django-cors-headers-3.12.0 + + Bump django-cors-headers from 3.7.0 to 3.12.0 in /tdrs-backend + +commit c1c0037493ccf0adb5d06334e45460cef3555715 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 11:28:43 2022 -0400 + + Update secret-key-rotation-steps.md + +commit aa722ab1515a2420bab7b54ae0666be27750caa6 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri May 20 15:17:57 2022 +0000 + + Bump django-cors-headers from 3.7.0 to 3.12.0 in /tdrs-backend + + Bumps [django-cors-headers](https://github.com/adamchainz/django-cors-headers) from 3.7.0 to 3.12.0. + - [Release notes](https://github.com/adamchainz/django-cors-headers/releases) + - [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/HISTORY.rst) + - [Commits](https://github.com/adamchainz/django-cors-headers/compare/3.7.0...3.12.0) + + --- + updated-dependencies: + - dependency-name: django-cors-headers + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit fa2df46cbae9f66aeeff373da7678e2c717127be +Merge: ce9278427 06e61b5f0 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri May 20 11:11:21 2022 -0400 + + Merge pull request #1804 from raft-tech/dependabot/pip/tdrs-backend/develop/django-csp-3.7 + + Bump django-csp from 3.6 to 3.7 in /tdrs-backend + +commit 06e61b5f002aea7b69f56a89967f7da3e8a2fbc0 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri May 20 14:30:14 2022 +0000 + + Bump django-csp from 3.6 to 3.7 in /tdrs-backend + + Bumps [django-csp](https://github.com/mozilla/django-csp) from 3.6 to 3.7. + - [Release notes](https://github.com/mozilla/django-csp/releases) + - [Changelog](https://github.com/mozilla/django-csp/blob/main/CHANGES) + - [Commits](https://github.com/mozilla/django-csp/commits/3.7) + + --- + updated-dependencies: + - dependency-name: django-csp + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit ce927842701bdd435aa94b33f586e86b21b63db3 +Merge: 1f750884b 02e907b31 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 10:26:19 2022 -0400 + + Merge pull request #1815 from raft-tech/dependabot/pip/tdrs-backend/develop/pyjwt-2.4.0 + + Bump pyjwt from 2.1.0 to 2.4.0 in /tdrs-backend + +commit 6255b5801be773e16979e26229d50df87662fd1b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 10:19:58 2022 -0400 + + Updating rotation steps after working on JWT keys + +commit 02e907b31180e68b3fdf18622c35226b6a219597 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri May 20 13:19:17 2022 +0000 + + Bump pyjwt from 2.1.0 to 2.4.0 in /tdrs-backend + + Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.1.0 to 2.4.0. + - [Release notes](https://github.com/jpadilla/pyjwt/releases) + - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) + - [Commits](https://github.com/jpadilla/pyjwt/compare/2.1.0...2.4.0) + + --- + updated-dependencies: + - dependency-name: pyjwt + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 1f750884b8d05eebe6a5d2ea88b9b1301f1d37dc +Merge: 20cbdf48c 488d24fd6 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 09:12:45 2022 -0400 + + Merge pull request #1805 from raft-tech/dependabot/pip/tdrs-backend/develop/djangorestframework-3.13.1 + + Bump djangorestframework from 3.12.4 to 3.13.1 in /tdrs-backend + +commit 3d285099451019883a20a3addf8e3a27ae23a5db +Merge: 7a177bcbc 20cbdf48c +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri May 20 09:03:46 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit 488d24fd6216ee1beb7371b331d2ba3a8336664b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri May 20 13:03:06 2022 +0000 + + Bump djangorestframework from 3.12.4 to 3.13.1 in /tdrs-backend + + Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.12.4 to 3.13.1. + - [Release notes](https://github.com/encode/django-rest-framework/releases) + - [Commits](https://github.com/encode/django-rest-framework/compare/3.12.4...3.13.1) + + --- + updated-dependencies: + - dependency-name: djangorestframework + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 20cbdf48c7f898f6fc263635677b671f17b476eb +Merge: ae11dc937 009a23638 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 20 08:58:50 2022 -0400 + + Merge pull request #1801 from raft-tech/dependabot/pip/tdrs-backend/develop/requests-2.27.1 + + Bump requests from 2.26.0 to 2.27.1 in /tdrs-backend + +commit 009a236383defb6b66b98efbc5a81eb6067645f5 +Author: raftmsohani +Date: Fri May 20 05:20:27 2022 -0700 + + corrected module import + +commit 6ec6910da5c07408f1d09ce1111042eb2193d97c +Author: abottoms-coder +Date: Thu May 19 11:34:34 2022 -0400 + + Updating notation to match rest of file, this is a troubleshooting step + +commit 36354e8d53f0653383b23810d65b93e0a6a44044 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu May 19 14:18:16 2022 +0000 + + Bump requests from 2.26.0 to 2.27.1 in /tdrs-backend + + Bumps [requests](https://github.com/psf/requests) from 2.26.0 to 2.27.1. + - [Release notes](https://github.com/psf/requests/releases) + - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) + - [Commits](https://github.com/psf/requests/compare/v2.26.0...v2.27.1) + + --- + updated-dependencies: + - dependency-name: requests + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit ae11dc937f25d5f33322d8f0e7d942c8d77460a9 +Merge: da6c7f3bd e60b23fd2 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 19 10:14:25 2022 -0400 + + Merge pull request #1803 from raft-tech/dependabot/pip/tdrs-backend/develop/django-storages-1.12.3 + + Bump django-storages from 1.11.1 to 1.12.3 in /tdrs-backend + +commit e60b23fd2d1340d6461a2b74de5094b04c68122e +Merge: 413688bf0 da6c7f3bd +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 19 09:52:03 2022 -0400 + + Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/django-storages-1.12.3 + +commit bd739f9eea6c357c712e2b7ea87181f1e90ac5cc +Merge: 971497c5e da6c7f3bd +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 18 10:46:20 2022 -0400 + + Merge branch 'develop' into feat/1779-buildpack-version-pinning + +commit 971497c5eed13beb7a0a6f22bcee3dab0df70006 +Author: abottoms-coder +Date: Wed May 18 10:22:35 2022 -0400 + + reverting shortcut + +commit 3d757dcd0bfac998b62b7ecdd3455ad490cdf335 +Author: abottoms-coder +Date: Wed May 18 10:21:58 2022 -0400 + + Minor typo, also updating doc again + +commit 481ec9453ea5190b7f6ffcec532de12c921fb096 +Author: abottoms-coder +Date: Wed May 18 10:17:43 2022 -0400 + + Doc update for new process + +commit 59ae21edb309247c3e065a9b5f3fb72e725fc491 +Author: abottoms-coder +Date: Wed May 18 10:03:32 2022 -0400 + + Updating frontend manifest to pin nginx conf + +commit da6c7f3bd7e8fd717d70cfc3a451614d8ad3cc08 +Merge: d1876e552 d1cf1f155 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 18 09:56:01 2022 -0400 + + Merge pull request #1808 from raft-tech/docs/sitemap + + Docs/sitemap + +commit 06b739528791a480bb4b8eb515a7cd08aec45da2 +Merge: 44049bdcb 22b7e5403 +Author: abottoms-coder +Date: Wed May 18 09:55:50 2022 -0400 + + Merge branch 'feat/1779-buildpack-version-pinning' of github.com:raft-tech/TANF-app into feat/1779-buildpack-version-pinning + +commit 44049bdcb44371b4bd6239dd70a3ec96966b6ab6 +Author: abottoms-coder +Date: Wed May 18 09:55:40 2022 -0400 + + Trying this syntax one last time before emailing support + +commit 413688bf0c589835fa9da8088defdfec365c3a14 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed May 18 13:51:17 2022 +0000 + + Bump django-storages from 1.11.1 to 1.12.3 in /tdrs-backend + + Bumps [django-storages](https://github.com/jschneier/django-storages) from 1.11.1 to 1.12.3. + - [Release notes](https://github.com/jschneier/django-storages/releases) + - [Changelog](https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst) + - [Commits](https://github.com/jschneier/django-storages/compare/1.11.1...1.12.3) + + --- + updated-dependencies: + - dependency-name: django-storages + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit d1cf1f15503cb30715946e41a5d4922b3ce6f927 +Merge: 0e3d911ef d1876e552 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 18 09:49:09 2022 -0400 + + Merge branch 'develop' into docs/sitemap + +commit d1876e5521bb639c0ad2451cc71c3b37b2d3fa69 +Merge: 9931caeb4 c006c4c8d +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 18 09:47:21 2022 -0400 + + Merge pull request #1810 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/eslint-8.15.0 + + Bump eslint from 8.13.0 to 8.15.0 in /tdrs-frontend + +commit 22b7e5403b73a2860bfb6d7375965a69f15165e2 +Merge: f9d85e064 9931caeb4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 18 09:46:33 2022 -0400 + + Merge branch 'develop' into feat/1779-buildpack-version-pinning + +commit f9d85e0643c1ddbdf31bb8b20bd556a236d343c8 +Author: abottoms-coder +Date: Wed May 18 09:31:27 2022 -0400 + + Interpretting docs differently for versions + +commit 80bf01ba587befc3fb3c0f9d2fd5e87bf7105c86 +Author: abottoms-coder +Date: Wed May 18 09:27:33 2022 -0400 + + Shortcut for deployments + +commit c006c4c8df5c60997e6d58fe6f217c76a0176d97 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed May 18 13:22:36 2022 +0000 + + Bump eslint from 8.13.0 to 8.15.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.13.0 to 8.15.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.13.0...v8.15.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 9931caeb4e259d38a12d0b712ff1a75887b0b4c8 +Merge: 480e30e80 27d9796c4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 18 09:20:54 2022 -0400 + + Merge pull request #1799 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/concurrently-7.2.0 + + Bump concurrently from 7.1.0 to 7.2.0 in /tdrs-frontend + +commit 3365fabdcd2fd42c13aa4ce3c209625417dab8a9 +Author: abottoms-coder +Date: Wed May 18 09:19:45 2022 -0400 + + Testing out different syntax for buildpack versioning + +commit 0e3d911ef3dbeabf99f45c3353316731504f902c +Author: Diana Liang +Date: Tue May 17 14:08:27 2022 -0500 + + Site Map PDFs + + Adding the site map PDFs to the Dev Ready Design folder in GitHub + +commit b3179be5dc7310e87fa630efe8b742f76b18f40b +Author: abottoms-coder +Date: Tue May 17 13:02:58 2022 -0400 + + Tweak for git secrets, thought this was pushed + +commit 27d9796c4205fd6519c47628a020d89e62ac1382 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue May 17 15:26:06 2022 +0000 + + Bump concurrently from 7.1.0 to 7.2.0 in /tdrs-frontend + + Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 7.1.0 to 7.2.0. + - [Release notes](https://github.com/open-cli-tools/concurrently/releases) + - [Commits](https://github.com/open-cli-tools/concurrently/compare/v7.1.0...v7.2.0) + + --- + updated-dependencies: + - dependency-name: concurrently + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 480e30e8004360cbc6b67b9600436aa1d1ed5164 +Merge: 209f3d35c 60b597fb4 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 17 11:24:17 2022 -0400 + + Merge pull request #1806 from raft-tech/dependabot/pip/tdrs-backend/develop/awscli-1.24.1 + + Bump awscli from 1.23.13 to 1.24.1 in /tdrs-backend + +commit 60b597fb42db9a10d35634879ad56619d148daf2 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue May 17 14:25:39 2022 +0000 + + Bump awscli from 1.23.13 to 1.24.1 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.23.13 to 1.24.1. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.23.13...1.24.1) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 209f3d35c2cfd9f96a884beab8c5a9813e363275 +Merge: 55d938abf 1428227dc +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 17 10:10:02 2022 -0400 + + Merge pull request #1796 from raft-tech/andrew-jameson-patch-1 + + Update dependabot.yml + +commit 1428227dc83d55f167ae67bdba5f03b499853d3c +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 17 09:01:18 2022 -0400 + + Update dependabot.yml + +commit 7a177bcbcaee70ef0762733a9ea4ed255215a6d9 +Author: raftmsohani +Date: Mon May 16 16:20:28 2022 -0700 + + 1631: Corrected the args + +commit f8c3db19975feba53d3825916fdce2116df10383 +Author: raftmsohani +Date: Mon May 16 16:17:07 2022 -0700 + + 1631: Corrected the args + +commit 5e7acd5649cf62d3b27673569825141af05b33d6 +Author: raftmsohani +Date: Mon May 16 15:46:43 2022 -0700 + + 1631: URI + +commit 1bb751e30bb438d5591af267c2331b55993c5973 +Author: Aaron Beavers +Date: Mon May 16 16:44:14 2022 -0400 + + Move the variables around + +commit 5c8c87a793d2aacc819d11a3391854e72b8a4e02 +Author: Aaron Beavers +Date: Mon May 16 16:29:31 2022 -0400 + + use aws_backend as variable name + +commit 7057d45e242a7bc4cf03503734933bcf02be691c +Author: Diana Liang +Date: Mon May 16 13:45:11 2022 -0500 + + Create SiteMap Sample.pdf + +commit de777122acad92f6f6d7c72f9441a945dd755a32 +Author: Aaron Beavers +Date: Mon May 16 11:43:41 2022 -0400 + + Update tdrs-backend/tdpservice/settings/common.py + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 6d3f0468673a9b7a8edf3d1ef8b985ffc0ea9c28 +Author: raftmsohani +Date: Sun May 15 07:43:40 2022 -0700 + + 1631: linting + +commit 26abdf686c759b895db2d67abedf0d32d6a7aa6f +Author: raftmsohani +Date: Sun May 15 07:04:44 2022 -0700 + + 1631: Refactored restore + +commit d509b1e8b97d9b6511ab18e1072fba6e38e31d7c +Author: raftmsohani +Date: Sat May 14 13:33:19 2022 -0700 + + 1631: debug + +commit 74805165a850ac2f90e31713462fe1501a3eda21 +Author: raftmsohani +Date: Sat May 14 12:03:40 2022 -0700 + + 1631: Linting + +commit 06e609452c8b2b77ae0a1c140efa2b5c16afd5ca +Merge: 7000c994b 4d075ed8f +Author: raftmsohani +Date: Sat May 14 11:56:17 2022 -0700 + + Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup + +commit 7000c994b21604a4a93a0e8eeec2d46a9f230300 +Author: raftmsohani +Date: Sat May 14 11:55:37 2022 -0700 + + 1631: Reverted the URI back for backup and restore functions + +commit 3f3bf3b742705cda87381dc4626fa8f8fd99443a +Author: abottoms-coder +Date: Fri May 13 17:23:12 2022 -0400 + + Some minor refactoring of this script, rather unhappy. Will look into alternative tools/languages + +commit 328fc9b9f28526b655e5ced673b8cb10d9941aa2 +Author: abottoms-coder +Date: Fri May 13 16:50:03 2022 -0400 + + Minor tweak for backend looping and being exact with git-secrets + +commit 8a127e131cc4d338f4816730120b52329326bec5 +Author: Aaron Beavers +Date: Fri May 13 15:38:55 2022 -0400 + + fix format + +commit 038d69dfc5c37e0aaede1a63ac80df6cf6bb59a9 +Author: Aaron Beavers +Date: Fri May 13 15:10:21 2022 -0400 + + lint + +commit 406763ac41b75d789922c88da8a5bfd7d5a7cc3e +Author: Aaron Beavers +Date: Fri May 13 15:01:02 2022 -0400 + + resolve merge conflict + +commit 374049f71b6765ae0219cb59df3e8cbac06f8fca +Merge: aaf96aeb7 55d938abf +Author: Aaron Beavers +Date: Fri May 13 14:59:07 2022 -0400 + + Merge remote-tracking branch 'origin/develop' into feat/1440-s3-prefix + +commit aaf96aeb7220352a25a224a12df2ae465a67a522 +Author: Aaron Beavers +Date: Fri May 13 14:57:09 2022 -0400 + + change parameter type + +commit fef0a3c0f926970b1a6cf8a563b3eb1ff38a30a6 +Author: Aaron Beavers +Date: Fri May 13 14:55:53 2022 -0400 + + thread the needle + +commit f64e170f56a9c7a6b082c79f63b92ddf69d3810c +Author: Aaron Beavers +Date: Fri May 13 14:31:43 2022 -0400 + + update circleci config + +commit 3be369852fc7545c97442438a27e211f033994bd +Author: Aaron Beavers +Date: Fri May 13 14:26:21 2022 -0400 + + update terraform + +commit 55d938abf3cd31d06395737278451c4ea562f37a +Merge: 3e79e79ab e69113563 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 13 10:05:00 2022 -0400 + + Merge pull request #1783 from raft-tech/ADPennington-patch-1 + + Update ADR 009 with production deployment flow + +commit e69113563ceed69d610ca3599e57c4dc90c8214d +Merge: f3c297d15 3e79e79ab +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Fri May 13 09:24:29 2022 -0400 + + Merge branch 'develop' into ADPennington-patch-1 + +commit 4d075ed8f378bd731d6a83b4bde0986e907ffeb1 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri May 13 06:58:39 2022 -0400 + + Revert back the changes + +commit f68a509b8f940d9c75118b4eecd2ac39f70b93fd +Merge: 597e4bec7 32ce8e111 +Author: raftmsohani +Date: Fri May 13 03:54:09 2022 -0700 + + Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup + +commit 597e4bec7e5a486d393ac0eba323afffe5b37195 +Author: raftmsohani +Date: Fri May 13 03:53:28 2022 -0700 + + 1631: Corrected the backup method as well as README.md file + +commit 556e3e22b0734e0dfd77f50faf58d42f4acc6083 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 12 16:33:29 2022 -0400 + + Update .github/workflows/deploy-on-label.yml + +commit cf55dc9329abd6d2e62814b607a12dc7aaa0b97d +Merge: 1a8ed4cc1 68f601572 +Author: abottoms-coder +Date: Thu May 12 16:32:41 2022 -0400 + + Merge branch 'bug/1772-errors-when-submitting-files' of github.com:raft-tech/TANF-app into bug/1772-errors-when-submitting-files + +commit 1a8ed4cc1ff196dabefc584c22c006c4e1b772c9 +Author: abottoms-coder +Date: Thu May 12 16:32:27 2022 -0400 + + Just needed the right port, cleaning up for PR + +commit 68f6015725bdc827fe68348ee70bb39dbd6159c1 +Merge: 8b02845e9 3e79e79ab +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 12 16:28:11 2022 -0400 + + Merge branch 'develop' into bug/1772-errors-when-submitting-files + +commit 3e79e79ab6b7bdce7f68382a5d9c4215a7bf092b +Merge: fd479f30b ca6f91c02 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 12 15:51:18 2022 -0400 + + Merge pull request #1751 from raft-tech/fix/1415 + + chore(1415): bump django-admin-508 to 0.2.0 + +commit ca6f91c02d62da4f2366e5ebbb2b53295c3ea3fb +Author: abottoms-coder +Date: Thu May 12 15:31:34 2022 -0400 + + updating lock + +commit 0b82f4e7bfd67e81c3c0a2fa60b77012fae0cbad +Merge: b5836b68c fd479f30b +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 12 15:11:40 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit fd479f30b8d7b13b771107d1f494badda24b80a4 +Merge: 40d9c9894 a196d4830 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Thu May 12 15:11:17 2022 -0400 + + Merge pull request #1767 from raft-tech/feat/1707-improve-backend-logging + + As a developer, I want to improve our backend logging formatter + +commit b5836b68c0e8e99f87e9f739dce5ccdca6426ac0 +Merge: 43bee110e 40d9c9894 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu May 12 14:26:38 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit a196d483092d15fb25bb30df0174152a3f13eb3d +Merge: 8b231848d 40d9c9894 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu May 12 14:20:44 2022 -0400 + + Merge branch 'develop' into feat/1707-improve-backend-logging + +commit f3c297d15c4977d106e7a26c18dcd9987fa00820 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu May 12 13:23:23 2022 -0400 + + Update ADR 009 with production deployment flow. + + Adding additional step for government to trigger deployment to the production environment. + +commit 8b02845e9d23c3b3bdf525fb06b74e09303d8b05 +Author: abottoms-coder +Date: Thu May 12 10:33:19 2022 -0400 + + dash v underscore + +commit 8cee84a1bcf109a8233e9a059ddc2145b283db87 +Author: abottoms-coder +Date: Thu May 12 10:23:27 2022 -0400 + + left .git + +commit c1aab3f89f26a192e87ac5b418853f291db5a5a4 +Author: abottoms-coder +Date: Thu May 12 10:15:14 2022 -0400 + + reverting buildpack versions, syntax issue + +commit 6e0a9c61c9a3d58d93b20138d3785badae9987c1 +Author: abottoms-coder +Date: Thu May 12 10:00:01 2022 -0400 + + catching up logging because I can't troubleshoot rn + +commit 74d27fd821cf8707153cc5a47906ba501c1d6ecb +Author: abottoms-coder +Date: Wed May 11 18:37:05 2022 -0400 + + Potential solutions for cloud.gov breaking our environments. + +commit dbbfd297d5aec9e4b39d9552a7dea7c5029d88e2 +Author: abottoms-coder +Date: Wed May 11 17:03:10 2022 -0400 + + short term hack to speed up redeploys + +commit afd4b539ef9e79947bcc8be2699fd8c3aede7164 +Author: abottoms-coder +Date: Wed May 11 17:02:04 2022 -0400 + + Changing AV URLs since these env vars seem empty on deployed sites + +commit 32ce8e1119b82346c7509aced1f9ef52ec64ec75 +Merge: b7b9434a9 40d9c9894 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 11 14:31:44 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit 40d9c989490fcdae0aa90a02558a630e6d3482a0 +Merge: 0d08bce19 6ddeb8694 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 11 14:26:21 2022 -0400 + + Merge pull request #1780 from raft-tech/hotfix/python3.10.4-upgrade-for-cloud-gov + + hotfix for Python version and buildpack changelog + +commit 6ddeb86940284012ebba743b602981f4182cbe7c +Author: abottoms-coder +Date: Wed May 11 12:34:04 2022 -0400 + + hotfix, runs locally for me, need CI to confirm I didn't break everything + +commit 0d08bce19370eaa43dad489bb62836920e933605 +Merge: 2f2b5fe07 c7a273888 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 11 10:29:24 2022 -0400 + + Merge pull request #1777 from raft-tech/stevenino-patch-2 + + Create sprint-46-summary.md + +commit c7a273888ef295549a0ec55b2799bcc1658fd5df +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue May 10 15:11:23 2022 -0700 + + Create sprint-46-summary.md + +commit 5c63eb08a3dc7ddd9820bf0564deb32b6d75318a +Merge: e24e79b84 2f2b5fe07 +Author: Jorge Gonzalez +Date: Tue May 10 15:32:32 2022 -0400 + + Merge branch 'develop' into ops/1489 + +commit 43bee110e6c5ad16c978ec24d4b8412e5bf83b22 +Merge: 0cceb1811 e307ed963 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 10 13:47:33 2022 -0400 + + Merge pull request #1776 from raft-tech/deps/ipython-fix-for-1415 + + Deps/ipython fix for 1415 + +commit e307ed96386958714b3fb4684de8c471ea0c2555 +Merge: 03133812c 0cceb1811 +Author: abottoms-coder +Date: Tue May 10 12:28:15 2022 -0400 + + merge conflicts via lock + +commit 03133812ca11fd21425635b6f3b82beaf54ad590 +Author: abottoms-coder +Date: Tue May 10 12:24:26 2022 -0400 + + deleted lockfile and regenerated + +commit 0cceb181166cd4c6f54e0bce369c345a0468c0a2 +Merge: b76abf62e 2f2b5fe07 +Author: Jorge Gonzalez +Date: Tue May 10 10:13:26 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit 474a4473ccb0ffd69929dca4cf7c5869013f5e32 +Author: Aaron Beavers +Date: Tue May 10 10:02:07 2022 -0400 + + Add todo comment + +commit 8b231848ddfb8f12131b9daf367f423e48ee8b7b +Merge: 69c94e531 2f2b5fe07 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 10 09:47:49 2022 -0400 + + Merge branch 'develop' into feat/1707-improve-backend-logging + +commit eb31dd3d57c0af994e774c789d06822ce44e339c +Author: Aaron Beavers +Date: Tue May 10 09:35:36 2022 -0400 + + Update tdrs-backend/tdpservice/settings/cloudgov.py + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 2f2b5fe078d6ce604d30add33356427bf86fe72c +Merge: 4ed33f9ab 5e7cb16a0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Tue May 10 08:57:25 2022 -0400 + + Merge pull request #1773 from raft-tech/deps/cve-21699-ipython + + Removing ipython + +commit c9bd8840247363b69d815a4b85809492eb5b1f3f +Merge: 7502a5a88 4ed33f9ab +Author: Aaron Beavers +Date: Mon May 9 16:40:19 2022 -0400 + + Merge branch 'develop' into feat/1440-s3-prefix + +commit 7502a5a886f98bf49ac13332bea4649974b8a7bf +Merge: d86eefca5 5eaccc9e0 +Author: Aaron Beavers +Date: Mon May 9 16:26:25 2022 -0400 + + Merge branch 'feat/1707-improve-backend-logging' into feat/1440-s3-prefix + +commit 5e7cb16a008a542cb027a51528ed26370fc210a3 +Merge: d9363b4f7 4ed33f9ab +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 9 16:03:52 2022 -0400 + + Merge branch 'develop' into deps/cve-21699-ipython + +commit 69c94e5316d57cf7d978e57f01f23cca1e1aa42e +Merge: 4e4646d56 4ed33f9ab +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 9 15:50:12 2022 -0400 + + Merge branch 'develop' into feat/1707-improve-backend-logging + +commit 4e4646d562c7cf3babd3d86f9591bc2cdfc624fc +Author: abottoms-coder +Date: Mon May 9 15:49:28 2022 -0400 + + accounting for local development as well per Aaron's feedback on PR + +commit e24e79b84e917803a02d83a56aa7b08751c0a0b5 +Author: Jorge Gonzalez +Date: Mon May 9 14:42:57 2022 -0400 + + ignore deploy script for secrets check + +commit 611b323e675a32441476498bd6f9d98ebf879824 +Merge: 9b808ef57 4ed33f9ab +Author: Jorge Gonzalez +Date: Mon May 9 11:58:33 2022 -0400 + + Merge branch 'develop' into ops/1489 + +commit 5eaccc9e039c1e4f73980cafaab410909a92d3cf +Author: abottoms-coder +Date: Mon May 9 11:57:18 2022 -0400 + + Resolving local issue w/ Aaron + +commit caaec43bd31cce7d8a828f77300a246cfb7ec890 +Author: abottoms-coder +Date: Mon May 9 11:28:30 2022 -0400 + + updating tests + +commit b7b9434a9f1e83cc925362ba414d55d692c7546d +Author: raftmsohani +Date: Mon May 9 08:06:19 2022 -0700 + + 1631: Added URI credential extraction + +commit b76abf62ea35228d0529bcdc458f12950b7c6956 +Merge: eb9942161 4ed33f9ab +Author: Jorge Gonzalez +Date: Mon May 9 10:57:19 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit 4ed33f9abd4f64de294ec79cad6f508fb166c5a7 +Merge: d34b27b2e 1f62a47f0 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Mon May 9 10:52:39 2022 -0400 + + Merge pull request #1770 from raft-tech/docs/envs + + docs: update tdp-environments diagrams + +commit eb99421614958adb4c8f1b658a214b4484a9f3c5 +Author: Jorge Gonzalez +Date: Mon May 9 10:40:48 2022 -0400 + + empty commit to trigger a new build + +commit 64401b5be2372dee8f6ce53618fe2a62c359c164 +Author: raftmsohani +Date: Sun May 8 12:39:47 2022 -0700 + + 1631: Linting + +commit 154ac963f180a0bda9af1e5c27a685d2fb1f800f +Author: raftmsohani +Date: Sun May 8 12:34:08 2022 -0700 + + 1631: Revised README.md, and revised the db_backup.py + +commit cd50e5849a8f9efd585bbb8491622e2930942bf6 +Author: raftmsohani +Date: Sun May 8 08:08:11 2022 -0700 + + 1631: Added .pgpass + +commit d14a951871f6564c80a5f5489e7d540b96e97ab8 +Author: raftmsohani +Date: Sat May 7 12:54:55 2022 -0700 + + 1631: added missing username + +commit 5f967893e782390477817f2b5dfcbc0a22c72f99 +Author: raftmsohani +Date: Sat May 7 12:31:02 2022 -0700 + + 1631: linting + +commit 2c67e8dac85caebce7d14f4fb3a37e7f9f9b4c33 +Author: raftmsohani +Date: Sat May 7 12:24:07 2022 -0700 + + 1631: pg_restore command correction + +commit 9e85b811a87376c58ead7bf3f3b3dde528af300d +Author: raftmsohani +Date: Sat May 7 09:13:59 2022 -0700 + + 1631: Linting + +commit 395b4f8842823947446757da0d0ec3715cfbbc4f +Author: raftmsohani +Date: Sat May 7 08:55:32 2022 -0700 + + 1631: Revised Pg_Restore to use options + +commit e3095cc172d3634e36de2a83ae3b1b98e9836a19 +Author: raftmsohani +Date: Sat May 7 08:22:20 2022 -0700 + + 1631: Revised Pg_Restore to use options + +commit b2ec66c15f0d777cb19dffa40ccc3bf59f7e260b +Author: abottoms-coder +Date: Fri May 6 17:24:49 2022 -0400 + + First steps for LFT + +commit d86eefca50cc57f3fd2bc6dfa1d150a7fb75e8eb +Merge: f649c5aff f7f7e9431 +Author: Aaron Beavers +Date: Fri May 6 15:54:37 2022 -0400 + + Merge remote-tracking branch 'origin/feat/1707-improve-backend-logging' into feat/1440-s3-prefix + +commit 9b808ef57e205212aff2a67a11ea147bc77a5323 +Author: Jorge Gonzalez +Date: Fri May 6 13:18:40 2022 -0400 + + build: update backend env vars and deploy scripts + +commit 51d5bd4ba7aafcb535f02c92428c9800be145ec8 +Author: raftmsohani +Date: Fri May 6 07:20:39 2022 -0700 + + 1631: Revised README.md + +commit b463f3ec9208e192d345cbc34b4ab91a3d1a1dd4 +Author: raftmsohani +Date: Fri May 6 07:18:35 2022 -0700 + + 1631: Revised README.md + +commit 87479bc4d75c5f3aba66cc3ded5283439247373d +Author: raftmsohani +Date: Fri May 6 07:13:47 2022 -0700 + + 1631: Revised README.md + +commit 7bee202c2c7ef03160b17cd7ff535788ee153f29 +Merge: 60b65b4e0 d34b27b2e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri May 6 09:47:10 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit 7ab303025349ef04d7b2238f2d04e1ec6f886d54 +Author: raftmsohani +Date: Fri May 6 05:40:08 2022 -0700 + + 1631: Added README.md for backup script + +commit 8e63618b8b5745a407baf793c18264397a2ea3b1 +Author: raftmsohani +Date: Fri May 6 05:03:02 2022 -0700 + + 1631: filename/path correction + +commit d754e8dbde55603eba8193bcd479d65337822ee6 +Author: raftmsohani +Date: Fri May 6 04:34:11 2022 -0700 + + 1631: linting + +commit d9e3711d6871b41d2ee77c4ad52e64dc880ed029 +Author: raftmsohani +Date: Fri May 6 04:24:45 2022 -0700 + + 1631: linting + +commit 9550977475f6a6a348b0ecbafc1cc6885f562183 +Author: raftmsohani +Date: Fri May 6 04:01:20 2022 -0700 + + 1631: linting + +commit 66779ee6987c4530fa34ee4e2a8805392b8e1c41 +Author: raftmsohani +Date: Fri May 6 03:56:11 2022 -0700 + + 1631: linting + +commit 866c780d6b1e2b399685707e43d61af15352cc8f +Author: raftmsohani +Date: Fri May 6 03:33:52 2022 -0700 + + 1631: linting + +commit 0afd0f01d158ecf6433751b8a8774fc770cef69b +Author: raftmsohani +Date: Fri May 6 03:28:06 2022 -0700 + + 1631: added list command + +commit 1910877679e857bdf0f4d12869630255548bcd58 +Author: raftmsohani +Date: Fri May 6 03:19:43 2022 -0700 + + 1631: changed default dump file directory to /tmp + +commit 11cf1ad156949cc9727bc4a0272f647984bf8f6f +Author: raftmsohani +Date: Fri May 6 03:10:51 2022 -0700 + + 1631: solving permission denied on pg_dump + +commit 844602cb27417d2d93a06891d5e4e9c21cd01c96 +Author: raftmsohani +Date: Fri May 6 02:41:10 2022 -0700 + + 1631: added the script folder to make the script available in the backend + +commit 0450f7e531fbf65b4429aafba210d008cc464bee +Merge: 98e02461d d34b27b2e +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Fri May 6 04:58:59 2022 -0400 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit f649c5aff3bb78f9b9a7c77a1bd44aafbf2082cd +Author: Aaron Beavers +Date: Thu May 5 23:11:45 2022 -0400 + + use app name + +commit ec8c8d96063879381a9f8c9e8a0c84ff437e3a6c +Author: Aaron Beavers +Date: Thu May 5 12:48:26 2022 -0400 + + add to media url + +commit 7a04c757644c7e18db99ea2a92646ffac8cbd801 +Author: Aaron Beavers +Date: Thu May 5 12:44:37 2022 -0400 + + logs minor update + +commit e3ed367019b7fc3a4bc024dd1631a6e17f2dc8eb +Author: raftmsohani +Date: Thu May 5 08:38:30 2022 -0700 + + 1736: Model change and added method for STT + +commit 98e02461d8d555102d64b556f1bfa8dae173d033 +Author: raftmsohani +Date: Thu May 5 08:33:05 2022 -0700 + + 1631: Moved the script to script folder + +commit 81e7786b628438e85dde11cb54f180ef16f68023 +Merge: 7a9a92f23 af245b538 +Author: Aaron Beavers +Date: Wed May 4 16:24:12 2022 -0400 + + Merge remote-tracking branch 'origin/feat/1707-improve-backend-logging' into feat/1440-s3-prefix + +commit 7a9a92f231087b11776eb48874dfc68e3e719f15 +Author: Aaron Beavers +Date: Wed May 4 15:38:40 2022 -0400 + + sync + +commit f7f7e94310ca869af2a992146caee75a4130bb16 +Author: abottoms-coder +Date: Wed May 4 15:23:43 2022 -0400 + + Minor tweaks from PR and also the gunicorn todo trial + +commit 3ec7ce648008d72579639fc5a5233a57eab52ca1 +Author: raftmsohani +Date: Wed May 4 10:26:35 2022 -0700 + + 1631: Added authentication skip commands for database restore + +commit 7438b59126dd4f91a6d232345cd03c67afa2ca88 +Author: Aaron Beavers +Date: Wed May 4 13:21:09 2022 -0400 + + set aws 3s location to app name + +commit f24cd4bdd69429ebf222d3fe07e6253edc6b0c83 +Author: abottoms-coder +Date: Wed May 4 11:50:16 2022 -0400 + + Reverting DJANGO_DEBUG + +commit 1f62a47f0c333d251b9c90ccee6fd18796f2b900 +Author: Jorge Gonzalez +Date: Wed May 4 10:52:42 2022 -0400 + + docs: update tdp-environments diagrams + +commit d34b27b2e7a4f632d6da34a750d82a74f87b1bfb +Merge: 6c331fcbc bd8bbec87 +Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> +Date: Wed May 4 10:08:03 2022 -0400 + + Merge pull request #1768 from raft-tech/fix/tfstates + + hotfix: update s3 tfstates bucket for terraform + +commit bd8bbec87450c3742768542f4676fef19492c506 +Author: Jorge Gonzalez +Date: Wed May 4 10:00:24 2022 -0400 + + Update docs/Technical-Documentation/TDP-environments-README.md + + Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> + +commit 946f886e52ea5a13642380325404bc1402514119 +Author: Jorge Gonzalez +Date: Wed May 4 09:51:03 2022 -0400 + + build: update s3 tfstates bucket for terraform + +commit 56afa3d8ee1dde654236a1ae175c4a5ac8fc3e06 +Author: abottoms-coder +Date: Wed May 4 09:36:30 2022 -0400 + + After some testing and tuning, logging seems to work as expected. Reverting gunicorn script to previous state + reload + +commit d9363b4f75548cc12c8bab425ccb043ef03939c4 +Author: abottoms-coder +Date: Tue May 3 14:25:05 2022 -0400 + + Can I just remove ipython? I don't see why our app needs this at all + +commit b0f82d9333186529837db360e3606cb3feafd4d1 +Author: abottoms-coder +Date: Tue May 3 13:58:29 2022 -0400 + + Restructuring so we have tdpservice-specific logging practices and don't raise to root. Also removing unnecessary level-setting as this should be fine in only the formatters. + +commit e704e44d93673f4e8deb4f5837c6dfb6d2d29734 +Author: abottoms-coder +Date: Tue May 3 11:10:10 2022 -0400 + + Found the missing piece + +commit ecf557b951f0206c943f3872323e498e9a056d89 +Merge: 1a62d9f6b 6c331fcbc +Author: abottoms-coder +Date: Tue May 3 09:29:57 2022 -0400 + + Merge branch 'develop' into feat/1707-improve-backend-logging + +commit 1a62d9f6b51a8978a80f2c531a81ce00a4365fc0 +Author: abottoms-coder +Date: Tue May 3 09:29:23 2022 -0400 + + Changing up console logging + +commit 60b65b4e08b57db8c4e8bf82457063e11eaa822d +Merge: 392035434 6c331fcbc +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon May 2 15:23:20 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit 6c331fcbc74095425dbc8332f7b30018ff754143 +Merge: 941b5aa7a 6b95612ed +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon May 2 14:12:27 2022 -0400 + + Merge pull request #1764 from raft-tech/master + + build(895): Configure CircleCI to deploy to production + +commit 6b95612edca32ac57b0d2886a98130bf8855143c +Merge: 83b8050ae 47a00e692 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon May 2 13:50:50 2022 -0400 + + Merge pull request #1766 from raft-tech/feat/895-var-updates + + Updating cloud.gov org name and django settings ALLOWED_HOSTS for pro… + +commit 39203543415b84faa0d983b9a45a9e62d407fc22 +Merge: 14cb6bb90 941b5aa7a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon May 2 12:10:32 2022 -0400 + + Merge branch 'develop' into fix/1415 + +commit 47a00e6928f7b3a5e3a5ea6be1d8561d62028fc3 +Author: abottoms-coder +Date: Mon May 2 08:52:59 2022 -0400 + + Updating cloud.gov org name and django settings ALLOWED_HOSTS for prod var + +commit 83b8050ae2f734cce089b9a2645a308f33ea1795 +Merge: 157649d15 941b5aa7a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon May 2 08:26:16 2022 -0400 + + Merge branch 'develop' into master + +commit 941b5aa7a669a25e1c93914940e93e53ac3c6e26 +Merge: d02a946f3 14435225c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon May 2 08:24:31 2022 -0400 + + Merge pull request #1729 from raft-tech/feat/1619-hhs-id-field-for-ams + + Use hhs_id for ACF AMS logins + +commit 157649d15547b8e0c7eefc0f398c52d32ba373ae +Author: Jorge Gonzalez +Date: Fri Apr 29 14:59:25 2022 -0400 + + update TDP-environments-README.md + +commit 992a575aa36a7be6f7260c8f27c2bd68f698fab6 +Author: Jorge Gonzalez +Date: Fri Apr 29 13:07:22 2022 -0400 + + add dev deploy job + +commit 78e1280cc0dccfb2cb80587fef3a46f52ba390a7 +Author: Jorge Gonzalez +Date: Fri Apr 29 12:22:29 2022 -0400 + + update rds and s3 service plans + +commit 14435225c2ec95b7035afdecd600f34006c4a52e +Merge: 61e669d30 d02a946f3 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 29 12:21:15 2022 -0400 + + Merge branch 'develop' into feat/1619-hhs-id-field-for-ams + +commit ab417ceadf7eaccd10f0217dc80da74e02fb0240 +Merge: dd1992136 38dbbc213 +Author: Jorge Gonzalez +Date: Fri Apr 29 12:19:03 2022 -0400 + + Merge remote-tracking branch 'origin/master' + + # Conflicts: + # tdrs-backend/tdpservice/settings/cloudgov.py + +commit dd1992136ba580a1bbc7d8004e6c8a4e4b1dcd8d +Author: Jorge Gonzalez +Date: Fri Apr 29 12:18:33 2022 -0400 + + lint + +commit 38dbbc21375933758b6f38cb70b2ce1b3ade2247 +Author: Jorge Gonzalez +Date: Fri Apr 29 12:18:33 2022 -0400 + + lint + +commit f4ea6993481bcee367130eae7278769b2a85d3df +Author: Jorge Gonzalez +Date: Fri Apr 29 11:59:24 2022 -0400 + + add git-secrets exclusion + +commit 3f8f714b2c605e40521f0226c33dc22d25b84376 +Author: raftmsohani +Date: Thu Apr 28 13:11:18 2022 -0700 + + 1631: corrected the db_restore function + +commit 0784dac7b88f217116b8553d4d87233b86734ac0 +Author: Jorge Gonzalez +Date: Thu Apr 28 14:53:36 2022 -0400 + + add build and test back + +commit 983675931e8e1755daa49194fec3ceb7159e45e4 +Author: Jorge Gonzalez +Date: Thu Apr 28 13:53:01 2022 -0400 + + update deploy scripts + +commit d88b21e94344af332977b81b858c35e92454a229 +Merge: 2e6297668 d02a946f3 +Author: Jorge Gonzalez +Date: Thu Apr 28 12:07:31 2022 -0400 + + Merge branch 'develop' into master + +commit db966d0a8e8789c3f77ae250aecf32299e06ac57 +Author: raftmsohani +Date: Wed Apr 27 19:38:35 2022 -0700 + + 1631: linting + +commit 3d42344db6e7f12dc9cc5879442da06c7ed939fb +Author: raftmsohani +Date: Wed Apr 27 19:28:36 2022 -0700 + + 1631: linting + +commit 65dca291a8fc95e2724a2c82696e19afddb4b939 +Author: raftmsohani +Date: Wed Apr 27 19:21:45 2022 -0700 + + 1631: linting + +commit 39d56db24acacd02425c5967350e1beb837f8578 +Author: raftmsohani +Date: Wed Apr 27 19:12:54 2022 -0700 + + 1631: linting + +commit b1ada8548f30b97fa6d09074c397f7f4052c426d +Merge: 2a6794e0c d9cd9591e +Author: raftmsohani +Date: Wed Apr 27 19:05:36 2022 -0700 + + Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup + +commit 2a6794e0cf6d63b5d74f9f3f2bf51502bc806aab +Author: raftmsohani +Date: Wed Apr 27 19:05:09 2022 -0700 + + 1631: linting + +commit d9cd9591e6921f064a464dc4393f86b9084202ec +Merge: 61ea40028 d02a946f3 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 27 18:53:48 2022 -0700 + + Merge branch 'develop' into feat/1631-periodic-database-backup + +commit 61ea40028a189c983c04b9bad0c5c0e5ef9ee9eb +Author: raftmsohani +Date: Wed Apr 27 18:47:45 2022 -0700 + + 1631: added cmd vars + +commit 4db66374c87bfa969b7c576460ab28c6dfea0121 +Author: abottoms-coder +Date: Wed Apr 27 15:51:30 2022 -0400 + + reducing to one worker to always be refreshing with latest and setting debug=true + +commit af245b538b699c0a5230e62390f213f69f370ee6 +Author: abottoms-coder +Date: Wed Apr 27 15:23:50 2022 -0400 + + Updating gunicorn for reload, mem on buildpack manifest + +commit 14cb6bb9009e02897eca83a52947a44f0c67abae +Merge: 7afa5fe79 d02a946f3 +Author: Jorge Gonzalez +Date: Wed Apr 27 08:48:31 2022 -0400 + + Merge branch 'develop' of https://github.com/raft-tech/TANF-app into fix/1415 + +commit d02a946f3d28ccb1da96ffd8ff3c5031dfb18d0a +Merge: 0c4a81dc8 b871d3bc2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 26 16:48:18 2022 -0400 + + Merge pull request #1762 from raft-tech/dependabot/pip/tdrs-backend/django-3.2.13 + + Bump django from 3.2.11 to 3.2.13 in /tdrs-backend + +commit 2e6297668da6db0e894741e99da3dd2cfbd7712e +Author: Jorge Gonzalez +Date: Tue Apr 26 15:13:35 2022 -0400 + + tweak db_name based on env + +commit 87093229c2225edf11d70ea5944ca34d44298864 +Merge: 6b44c2743 0c4a81dc8 +Author: Jorge Gonzalez +Date: Tue Apr 26 15:10:38 2022 -0400 + + Merge branch 'develop' into master + +commit 6b44c27435f204948d77a717a959cc6df555dafc +Author: Jorge Gonzalez +Date: Tue Apr 26 15:06:12 2022 -0400 + + tweak db_name based on env + +commit b871d3bc22d2a33c23f337abae059f11d5150db7 +Merge: b78c49aec 0c4a81dc8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 26 14:58:13 2022 -0400 + + Merge branch 'develop' into dependabot/pip/tdrs-backend/django-3.2.13 + +commit 0c4a81dc8ab0846dd43d8987b9e9891523a340a2 +Merge: 890a21e3b 87be8abef +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 26 14:57:55 2022 -0400 + + Merge pull request #1763 from raft-tech/stevenino-patch-1-1 + + Create sprint-45-summary.md + +commit 87be8abef58cad5f6562bb5b05d63a9e17de6260 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Apr 26 10:18:49 2022 -0700 + + Create sprint-45-summary.md + +commit b3c5b1fe77a97d520258999bdc42759d0ce2e2bc +Author: abottoms-coder +Date: Tue Apr 26 09:48:12 2022 -0400 + + testing gunicorn-worker theory, also commenting out 'set -e' + +commit c486a9b36055595928aef9e9ae4357ebf1f21bbc +Author: Jorge Gonzalez +Date: Tue Apr 26 09:43:51 2022 -0400 + + test old db name in param + +commit 7afa5fe796a99837c7949b1c04fda380ab0e2395 +Author: Jorge Gonzalez +Date: Tue Apr 26 09:21:31 2022 -0400 + + chore(1415): bump django-admin-508 to 0.2.0 + +commit d7f3c30f67c07391b91490d45e1fc8a150c0a51e +Author: raftmsohani +Date: Mon Apr 25 18:40:15 2022 -0700 + + 1631: database-backup.py: backup, restore, save to s3 + +commit b78c49aec35d02a0361858b884606b3ad913dabc +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Apr 25 20:05:28 2022 +0000 + + Bump django from 3.2.11 to 3.2.13 in /tdrs-backend + + Bumps [django](https://github.com/django/django) from 3.2.11 to 3.2.13. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/3.2.11...3.2.13) + + --- + updated-dependencies: + - dependency-name: django + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 890a21e3baff3ada8bb86259378feb88af340818 +Merge: 4d4affe01 94537253b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 25 15:59:06 2022 -0400 + + Merge pull request #1761 from raft-tech/deps/dependency-fix-nose-prog + + Hotfix - "nose-progressive" dependency build failure + +commit 61e669d3048c89eac5d9877274ced263472ea54d +Merge: ef9d9c5eb 94537253b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 25 15:24:36 2022 -0400 + + Merge pull request #1760 from raft-tech/deps/dependency-fix-nose-prog + + Local testing is successful + +commit 94537253b0e8d6a418e349972a1f7612f8483249 +Author: abottoms-coder +Date: Mon Apr 25 15:14:01 2022 -0400 + + Local testing is successful + +commit ef9d9c5eb9871bf5c1d05520aa3dd93b18d2265e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 25 09:31:29 2022 -0400 + + Revert tdrs-backend/manifest.yml + +commit 5b92a03c5deeead157a24a9bebb8ca553a879bc0 +Author: raftmsohani +Date: Thu Apr 21 12:40:05 2022 -0700 + + 1631: linting + +commit 260f941f1a103a81c2df96dea08408ea383dc901 +Author: raftmsohani +Date: Thu Apr 21 12:17:29 2022 -0700 + + 1631: linting + +commit 973db146264b8c778d28264107674f5112f2bf05 +Author: raftmsohani +Date: Thu Apr 21 11:53:36 2022 -0700 + + 1631: removed import json because of linting problem + +commit d1d077c3a1c6fe411c30b2fe570558294608290a +Author: raftmsohani +Date: Thu Apr 21 10:38:07 2022 -0700 + + 1631: moved database-backup.py to parent directory to make it available + +commit e3c74394f73209790154d285e10cd33430f648fb +Author: Jorge Gonzalez +Date: Thu Apr 21 13:30:14 2022 -0400 + + fix: db name + +commit 761ff8718f6d27220ad6ea6efaf29caa6efed462 +Author: Jorge Gonzalez +Date: Thu Apr 21 13:17:35 2022 -0400 + + test set space explicitly + +commit cb0be0f8fc6af319929f3ca5205a9be34557e9c2 +Author: raftmsohani +Date: Thu Apr 21 10:12:39 2022 -0700 + + 1631: updated database-backup.py to include the local backup and test s3 + +commit 8ef7aaf6837a7ef7a6cfe3088730a5e2e34b322e +Author: Jorge Gonzalez +Date: Thu Apr 21 13:02:43 2022 -0400 + + test changes + +commit 8fec7450c49a12f31a5a247f015de4849be74e8f +Author: Jorge Gonzalez +Date: Thu Apr 21 12:47:46 2022 -0400 + + test changes + +commit 11b081c2907be79abdf8b07b4c6ecc90260205fa +Author: Jorge Gonzalez +Date: Thu Apr 21 12:23:12 2022 -0400 + + nit + +commit c2a8748842ea62814d32bdf56cbff0c92f678dd2 +Author: Jorge Gonzalez +Date: Thu Apr 21 11:59:39 2022 -0400 + + fix: org name + +commit 66f1b13bb1e56f345b61765e9396651dcb0b80bf +Author: Jorge Gonzalez +Date: Thu Apr 21 11:58:15 2022 -0400 + + fix: pass in parameters to login-cloud-dot-gov for prod + +commit c477fa6e7293ffc212abf187ae07774707181926 +Author: Jorge Gonzalez +Date: Thu Apr 21 11:57:38 2022 -0400 + + fix: pass in parameters to login-cloud-dot-gov for prod + +commit a9245cfd39b160ce57febf5af8999da7b25c2080 +Merge: 4d4affe01 93e852def +Author: Jorge Gonzalez +Date: Thu Apr 21 11:44:34 2022 -0400 + + Merge pull request #1759 from raft-tech/feat/895 + +commit 93e852def9879b39e63b0de63847ef631f55e28c +Author: Jorge Gonzalez +Date: Thu Apr 21 10:49:18 2022 -0400 + + fix: cf space names + +commit 591dfd1c28e35c5b299660480350dd9b15b1c05a +Merge: 0e1ec3226 4d4affe01 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Apr 21 10:25:20 2022 -0400 + + Merge branch 'develop' into feat/1619-hhs-id-field-for-ams + +commit ae715e6f16524d64aa8a4b22441d79cd90baba29 +Merge: 8bc1b0a36 4d4affe01 +Author: Jorge Gonzalez +Date: Thu Apr 21 10:06:22 2022 -0400 + + Merge branch 'develop' into feat/895 + +commit 8bc1b0a3697a82cfc034892e75426b6e1876b65c +Author: Jorge Gonzalez +Date: Thu Apr 21 10:06:02 2022 -0400 + + feat: init prod circleci config + +commit 4d4affe01db680e15df0011fb25c71937d3b39b5 +Merge: 00ee01fdb 4bbf7c441 +Author: Jorge Gonzalez +Date: Wed Apr 20 14:06:04 2022 -0400 + + Merge pull request #1758 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/async-2.6.4 + +commit 4bbf7c441b2d7b1c0031e34a7fdade4af818d96b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Apr 20 16:17:32 2022 +0000 + + Bump async from 2.6.3 to 2.6.4 in /tdrs-frontend + + Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. + - [Release notes](https://github.com/caolan/async/releases) + - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) + - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) + + --- + updated-dependencies: + - dependency-name: async + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 00ee01fdbde202b3abacf823e2ad596bbfadc956 +Merge: 82a03eb67 6029f24e3 +Author: Jorge Gonzalez +Date: Wed Apr 20 12:16:28 2022 -0400 + + Merge pull request #1743 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.3 + +commit 4e21ac2184be9231856bb866c213f3c1cc4fd6a8 +Author: raftmsohani +Date: Tue Apr 19 11:09:49 2022 -0700 + + 1631: Added postgres deb file + +commit a440d9ae45d940013944a956b195aff553917f24 +Author: raftmsohani +Date: Tue Apr 19 10:44:40 2022 -0700 + + 1631: Added postgres deb file + +commit 568c4aeb9dd113ae6d71679bff2599da308437ff +Author: raftmsohani +Date: Tue Apr 19 10:14:19 2022 -0700 + + 1631: Added postgres deb file + +commit 52b13fb3b1af4ee5905dff739bbdbca5bd0bf036 +Author: raftmsohani +Date: Tue Apr 19 09:54:31 2022 -0700 + + 1631: Changed apt file + +commit 21b2d7060fef27bddf2fea259ded9e5670c3ce8b +Author: raftmsohani +Date: Tue Apr 19 09:18:47 2022 -0700 + + 1631: Changed postgres-client version to 12 using debian + +commit a65904ac33de5b7bd8e222be2acb20daeb39e1ca +Author: raftmsohani +Date: Tue Apr 19 09:17:36 2022 -0700 + + 1631: Changed postgres-client version to 12 using debian + +commit 6029f24e317d9b8985cb5d315fb7fe3e085954f5 +Merge: 9356c9a48 82a03eb67 +Author: Miles Reiter +Date: Tue Apr 19 12:08:39 2022 -0400 + + Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.3 + +commit e40512e18b2259163dc3964f31235105387f8e65 +Author: raftmsohani +Date: Tue Apr 19 08:41:24 2022 -0700 + + 1631: Changed postgres-client version to 12 using debian + +commit 55fbebb710349d6f6c16199671f0470efe2137f5 +Author: raftmsohani +Date: Tue Apr 19 08:05:16 2022 -0700 + + 1631: Changed postgres-client version to 12 + +commit 82a03eb67dd00ed4d43bae3072e75b86ff9d772e +Merge: 8395ab8e4 853e7212f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 18 15:25:59 2022 -0400 + + Merge pull request #1747 from raft-tech/stevenino-patch-1 + + Create Sprint 44 Summary.md + +commit 853e7212f6a98175bc270649033df44076b4c3ed +Merge: 12419632e 8395ab8e4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 18 15:15:02 2022 -0400 + + Merge branch 'develop' into stevenino-patch-1 + +commit 0e1ec3226b23db4f6756058ddd6f14e79f8ee619 +Merge: 47f643cc0 8395ab8e4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 18 15:13:20 2022 -0400 + + Merge branch 'develop' into feat/1619-hhs-id-field-for-ams + +commit 47f643cc03b705f27281fb42919db22a1b976e33 +Author: abottoms-coder +Date: Mon Apr 18 15:12:34 2022 -0400 + + Cleaning up files for PR + +commit 60fd34af9c6b48344d00576515915bccb1146eb1 +Author: abottoms-coder +Date: Mon Apr 18 15:06:07 2022 -0400 + + Missed deploy-on-label + +commit 40971f80d6f6675a97185fdd5be1c8f9240cdad4 +Author: abottoms-coder +Date: Mon Apr 18 14:39:52 2022 -0400 + + Undoing changes made during development to hopefully reduce size of PR + +commit a00b7aa23cc1753a7a28a96cbf08557b64fd0e91 +Author: Jorge Gonzalez +Date: Mon Apr 18 14:32:46 2022 -0400 + + feat: init prod terraform config + +commit 7518e18742204df7abd059bb386aa637749528d3 +Author: abottoms-coder +Date: Mon Apr 18 14:27:41 2022 -0400 + + Improvements for PR + +commit 16229212148287892abd620e0b6792446bcdd7b2 +Author: abottoms-coder +Date: Mon Apr 18 11:32:07 2022 -0400 + + updating exception + +commit f484278dd3a451ba60a5d9b0d38170a4f10d9080 +Author: abottoms-coder +Date: Mon Apr 18 11:25:43 2022 -0400 + + updating error handling again + +commit d81690061e0bb0aae2dd82736c31f192d67eb3c2 +Author: abottoms-coder +Date: Mon Apr 18 11:13:18 2022 -0400 + + Debugging prints again + +commit ed550b0ab24548af5d4ec70b7bcde8f62c6eaff3 +Author: abottoms-coder +Date: Mon Apr 18 11:02:19 2022 -0400 + + reverting to gunicorn logging + +commit bf9f86d671828b2daab07cdf6fbfceef8430aa8d +Author: abottoms-coder +Date: Mon Apr 18 10:12:29 2022 -0400 + + Updating error handler and logger + +commit 1a2f48eb454fdb70233a9c0899af1c920d3d56ee +Author: abottoms-coder +Date: Mon Apr 18 09:44:53 2022 -0400 + + Reworking logic due to duplicate key issue when using save() + +commit 58a761560e617b480352c01d91bd42afe8b71100 +Author: abottoms-coder +Date: Mon Apr 18 08:58:34 2022 -0400 + + new exception handler + +commit 859f68e8d727df43ce0d007b33933570802cc606 +Author: abottoms-coder +Date: Fri Apr 15 16:48:39 2022 -0400 + + playing with log level as cloud.gov is misbehaving + +commit 8395ab8e4201d6c458981ce3c7585df1f03ae08e +Merge: 8d90f867f 54338ab76 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Apr 15 16:33:14 2022 -0400 + + Merge pull request #1753 from raft-tech/ADPennington-patch-1 + + Update erd job to run on develop branch + +commit 7ddf6aced844dd4fafe8619664222e35ca6daa1c +Author: abottoms-coder +Date: Fri Apr 15 16:08:36 2022 -0400 + + CircleCI found linting issue I didn't have locally 2 + +commit a55898770deadfe3bef2077f37db8298a224b4e5 +Author: abottoms-coder +Date: Fri Apr 15 16:04:16 2022 -0400 + + CircleCI found linting issue I didn't have locally + +commit f9b8d11976dfd3e9f35d38339640f5118be0c6ea +Author: abottoms-coder +Date: Fri Apr 15 15:58:47 2022 -0400 + + What else to say? Need to commit to test in deployed env also upping ram to 512 maybe + +commit e9ff950f66ef3362d1c4bf41a2ec2eef0c8a1e66 +Author: abottoms-coder +Date: Fri Apr 15 15:46:47 2022 -0400 + + Fixing unit tests + +commit 54338ab76a383b45d856ff682da26883259eceeb +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 15 13:24:00 2022 -0400 + + Update erd job to run on develop branch + + updating job to run on `develop` branch (formerly `raft-tdp-main`) + +commit 82d249f545b28f116982f37dab2b8c4251b52cdd +Author: abottoms-coder +Date: Fri Apr 15 12:24:50 2022 -0400 + + Logic for updating hhs_id, initial test plus flake8 linting updates + +commit 662c7a3c9d8a9185172b7b633af23f7c9aa761c0 +Author: abottoms-coder +Date: Fri Apr 15 11:44:54 2022 -0400 + + Fixed migrations causing unit test failures + +commit 9959b811364503a63afee18a6692d89087d45a06 +Author: abottoms-coder +Date: Fri Apr 15 10:00:50 2022 -0400 + + Fixed and tested tdrs-make-migrations + +commit 19534b127eb1ea175c487550a470b67f15d45669 +Author: abottoms-coder +Date: Fri Apr 15 09:52:18 2022 -0400 + + New migration for model changes, updates to tests, notes about unusable tdrs-run/make-migrations + +commit e4a3adaa6c5affdcb53c341cdf80347930e10c15 +Author: abottoms-coder +Date: Fri Apr 15 09:19:17 2022 -0400 + + reordering auth flags and debugging + +commit 8d90f867fa8cf8be641eed4f9e8472e475f80a65 +Merge: 7214e8e67 81cf8202a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Apr 14 14:02:37 2022 -0400 + + Merge pull request #1740 from raft-tech/abottoms-coder-patch-1 + + DAC508 and a11y PR process change + +commit 81cf8202ac8e654f0784c95d4fb3852b045655c7 +Merge: fb47da0a3 7214e8e67 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Apr 14 13:49:37 2022 -0400 + + Merge branch 'develop' into abottoms-coder-patch-1 + +commit ba3c920e5f1718c4382eb6864924c5cfb4c9744e +Author: raftmsohani +Date: Thu Apr 14 09:21:57 2022 -0700 + + 1631: Changed the order for buildpacks + +commit ec353526e8efe17efb333a16c5b6de114bda4419 +Author: raftmsohani +Date: Thu Apr 14 06:49:25 2022 -0700 + + 1631: Added APT to the buildpacks + +commit dbb18ac057132d13ee10f9f4659d7c6727425420 +Author: raftmsohani +Date: Thu Apr 14 05:47:34 2022 -0700 + + 1631: Multiple apps in manifest.yml + +commit ba7473b3bfdd78bfec3a6a16a54dd4329ce43185 +Author: raftmsohani +Date: Wed Apr 13 13:08:23 2022 -0700 + + 1631: Added APT build-pack to manifest.buildpack.yml + +commit 0aac714108317d34a66910add320190efbd6e33d +Author: raftmsohani +Date: Wed Apr 13 12:18:39 2022 -0700 + + 1631: Removed the APT package + +commit 8da799a28c72aa6756a154edd046ac34bd874646 +Author: raftmsohani +Date: Wed Apr 13 09:06:20 2022 -0700 + + 1631: Reversed the manifest order + +commit 0b556abb81c0feef509666e69cd3add165dde24b +Author: raftmsohani +Date: Wed Apr 13 08:54:01 2022 -0700 + + 1631: Reversed the manifest order + +commit 4ee77f82e55323e37967fb2db9dcafdaa2ba13b4 +Author: raftmsohani +Date: Wed Apr 13 08:18:56 2022 -0700 + + 1631: Corrected flag from y to f + +commit cf3d3791daceefe490e48b6a22c8861b7144b041 +Author: raftmsohani +Date: Wed Apr 13 08:07:41 2022 -0700 + + 1631: Changed the flag for manifest + +commit 7214e8e673bd1c8df836fa12b2228a76fda05002 +Merge: 8d8c5e145 e138afa33 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 13 09:53:20 2022 -0400 + + Merge pull request #1731 from raft-tech/doc/1726-release-strategy + + Documentation for release branching and versioning strategy + +commit 077d1e4bae10fae07d5c87d9e9a6b8cee1c47fdf +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 13 09:48:23 2022 -0400 + + Delete .env + +commit e138afa3307233b12af34b4cbdba497a38495dfb +Author: abottoms-coder +Date: Wed Apr 13 09:44:11 2022 -0400 + + link fix, incidence response + +commit 9c2fa424249859458eef20747134f8e6350b68e0 +Merge: db838b4ec 8d8c5e145 +Author: abottoms-coder +Date: Wed Apr 13 09:42:26 2022 -0400 + + Merge conflict resolving for incident response + +commit ab30e791dcb1c4892b2c0025999a9135858f1962 +Merge: de5fdc119 d9312482c +Author: raftmsohani +Date: Wed Apr 13 06:41:36 2022 -0700 + + Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup + +commit de5fdc11989070d48afe272a693d45b7d7da6b54 +Author: raftmsohani +Date: Wed Apr 13 06:33:38 2022 -0700 + + 1631: added .env file for deployment + +commit 8d8c5e1450536c681b1647eca903f47de080abb4 +Merge: 29a3eaaaf 247584767 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 13 09:03:00 2022 -0400 + + Merge pull request #1739 from raft-tech/docs/project-update-april + + Docs/ Adds April Project Update + +commit 2475847675d4af911c1728a5640058c252357d51 +Merge: 4753c0526 29a3eaaaf +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 13 08:56:00 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/project-update-april + +commit 29a3eaaafd0d5aa55a7936cd873d77c11b93c30a +Merge: 235234443 fb634eea3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 13 08:55:24 2022 -0400 + + Merge pull request #1719 from raft-tech/docs/update-ux-templates + + Docs - Update UX issue templates + +commit d9312482c04b9a4126ce0875ecf02577eff3d2b0 +Merge: bd6541a33 235234443 +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Wed Apr 13 00:50:15 2022 -0700 + + Merge branch 'raft-tdp-main' into feat/1631-periodic-database-backup + +commit bd6541a3388820b3a33bd987121439fc8976bc57 +Author: raftmsohani +Date: Wed Apr 13 00:43:30 2022 -0700 + + 1631: added APT buildpack and initial python script for database backup + +commit 12419632ea6f67b3fb275dbaef9beeb220e3fa99 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Apr 12 16:50:22 2022 -0700 + + Create Sprint 44 Summary.md + +commit 9356c9a48f8f4f1c2dc376590d6f2065311260cb +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Apr 12 19:15:21 2022 +0000 + + Bump uswds from 2.13.2 to 2.13.3 in /tdrs-frontend + + Bumps [uswds](https://github.com/uswds/uswds) from 2.13.2 to 2.13.3. + - [Release notes](https://github.com/uswds/uswds/releases) + - [Commits](https://github.com/uswds/uswds/compare/v2.13.2...v2.13.3) + + --- + updated-dependencies: + - dependency-name: uswds + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit fb634eea324338c2d4edc709345651ed915c415b +Merge: 43e65fe49 235234443 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 12 15:14:17 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit 235234443f1b2a831cbe558700fffadf6534c2e3 +Merge: 67d8b6974 a47805711 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 12 15:14:08 2022 -0400 + + Merge pull request #1732 from raft-tech/fix/1487 + + fix(1487): upgrade django-admin-508 to fix select all action + +commit a47805711f42ed44cb8a9af38d82a4a0c1e71627 +Author: Jorge Gonzalez +Date: Tue Apr 12 14:15:04 2022 -0400 + + fix: Upgrade django-admin-508 to fix select all action + +commit 43e65fe49b0f5f7b6ba22db71f56e463705106db +Merge: 9ee013279 67d8b6974 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 12 11:54:39 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit 67d8b6974adf8dba5bf5fad433e87793cfec8d0e +Merge: cdb3bae9b acc25ec64 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 12 11:54:22 2022 -0400 + + Merge pull request #1742 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.5 + + Bump @testing-library/react from 12.1.4 to 12.1.5 in /tdrs-frontend + +commit acc25ec64b9c3413d4776e905c6ed0ae2e63eddc +Merge: 2f02266c2 cdb3bae9b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 12 11:18:31 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.5 + +commit cdb3bae9b341ecc8facc6a1e1c3aaeab26621382 +Merge: 8cbfff91a 048de98f0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 12 11:18:16 2022 -0400 + + Merge pull request #1664 from raft-tech/feat/1414-upgrade-django-admin-508 + + [feat/1414,1412,1411] upgrade django admin 508 to latest stable version + +commit 2f02266c20f23907f80e6a2306e7e66ae6cbffc0 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Apr 12 11:02:55 2022 +0000 + + Bump @testing-library/react from 12.1.4 to 12.1.5 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.4 to 12.1.5. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.4...v12.1.5) + + --- + updated-dependencies: + - dependency-name: "@testing-library/react" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 9ee0132797fb93eb87e6f18c29fbd622ea39d46a +Merge: 4f40fd552 8cbfff91a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 15:22:33 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit db838b4eca89778e91aa3873c32803110989e603 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 15:19:22 2022 -0400 + + Delete TANF-Git-Workflow.jpg + +commit 27bd53873569f5d8db2ce396b3bb6f414c8c86fd +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 15:18:52 2022 -0400 + + Update 009-git-workflow.md + +commit 194137a560bff12181cd0f41ef969c5929232d48 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 13:27:16 2022 -0400 + + Update docs/Technical-Documentation/Architecture-Decision-Record/008-deployment-flow.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 048de98f0efd03ce2fdf68889c42d507708f0590 +Merge: a0738a981 8cbfff91a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Apr 11 10:46:15 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit 8cbfff91ad7b280d3b1ae8b2ffbe78e9f3c0fb90 +Merge: 9787e13e2 41cd45d6c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 09:43:27 2022 -0400 + + Merge pull request #1741 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.13.0 + + Bump eslint from 8.12.0 to 8.13.0 in /tdrs-frontend + +commit 41cd45d6c616e0e0001fa15bdced494201766abc +Merge: db7aea7b7 9787e13e2 +Author: Jorge Gonzalez +Date: Mon Apr 11 09:17:53 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.13.0 + +commit 9787e13e24a9db0a2b24538839ca9edc7a7a7a24 +Merge: e000170a7 87795d418 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 09:11:27 2022 -0400 + + Merge pull request #1730 from raft-tech/adp/1642-ird-sysadmin + + Issue 1642: IRP for compromised sys admin acct + +commit 87795d418f6645c232e02a3fe84b03c7d094c46e +Merge: 069471528 e000170a7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 09:05:06 2022 -0400 + + Merge branch 'raft-tdp-main' into adp/1642-ird-sysadmin + +commit e000170a72c89c1b977a6dc0e144b109a10209a9 +Merge: d7f4003f6 28eab5d6c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 11 09:04:53 2022 -0400 + + Merge pull request #1674 from raft-tech/feat/1658-read-only-dac + + feat(1658): Make various models read-only through Django Admin + +commit db7aea7b74b8cab41c611113c9a398e9ce00f183 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Apr 11 06:18:42 2022 +0000 + + Bump eslint from 8.12.0 to 8.13.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit ab5e40819114c4d5265644b9f68ff63c914365cd +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Apr 8 15:08:19 2022 -0400 + + Update 018-versioning-and-releases.md + +commit 069471528f0a8aba9fa69f19a98b883c7281ea0c +Merge: 2fcb01f27 d7f4003f6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 8 12:33:13 2022 -0400 + + Merge branch 'raft-tdp-main' into adp/1642-ird-sysadmin + +commit 2fcb01f27682ee45cfbcfa293887d4fa484b23bd +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 8 12:30:13 2022 -0400 + + spelled out IR folder + +commit fb47da0a3d78aa29ead00a97527c31be9769e662 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Apr 8 11:40:53 2022 -0400 + + Update 009-git-workflow.md + +commit 8c7f30c9e5864c9bece35efe10eab1d7a7c06811 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Apr 8 11:36:12 2022 -0400 + + Update 009-git-workflow.md + +commit 1d232711a2a589cf14d786d9d355094f65efe1a8 +Author: abottoms-coder +Date: Fri Apr 8 10:56:51 2022 -0400 + + flake8 indentation + +commit 3491870f0d8cc83e535da506243fe1c31bb9a480 +Author: abottoms-coder +Date: Fri Apr 8 10:54:37 2022 -0400 + + reverting any recent changes to gunicorn + +commit 962b7b3c1dfcb17c2148d4374fd6a6d6edfc6301 +Author: abottoms-coder +Date: Fri Apr 8 10:43:34 2022 -0400 + + testing logging vs. logger + +commit 5955fb6b17908cafedce61f29e2ea4cd0a52da5e +Author: abottoms-coder +Date: Fri Apr 8 10:10:21 2022 -0400 + + updating the field, finally! + +commit c9eda806aee5f4eb413b4e2f5226ee39245eb82b +Author: abottoms-coder +Date: Fri Apr 8 09:51:31 2022 -0400 + + yet another debug commit + +commit 4753c052662b08f18b82a8e172a72de1e842fe72 +Author: Miles Reiter +Date: Fri Apr 8 00:11:07 2022 -0400 + + Adds April Project Update + +commit 4f40fd552f45548b501448ea1e2bf6b03aa9f9db +Merge: 6052536a0 d7f4003f6 +Author: Miles Reiter +Date: Thu Apr 7 23:33:34 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit 38e0864fca3ba76f86537288dafd01a27567d4a9 +Author: abottoms-coder +Date: Thu Apr 7 15:49:46 2022 -0400 + + extra _ also failing tests, simplifying + +commit 2cdf722beab55cde4704e04abab17b0cb7d78819 +Author: abottoms-coder +Date: Thu Apr 7 15:15:15 2022 -0400 + + trying deploy, couldn't deploy via script + +commit 3f1667fb3eb0e59bdcbbf8e8a2d45aa1eadab373 +Author: abottoms-coder +Date: Thu Apr 7 13:29:25 2022 -0400 + + i hate when the server doesn't reload + +commit 1de11f548a732746595320a9035607b9262563bb +Author: abottoms-coder +Date: Thu Apr 7 13:11:49 2022 -0400 + + debugging this way is awful2 + +commit e3ed78b00e77ed19b2c1271c38aea120e9c33031 +Author: abottoms-coder +Date: Thu Apr 7 12:22:24 2022 -0400 + + debugging this way is awful + +commit 2898cd6f8168ec30eda0426b6eb3c0a9ec3180b9 +Author: abottoms-coder +Date: Thu Apr 7 12:09:22 2022 -0400 + + keyerror exception + +commit f62b315f55302f184c3af80536357168985b9861 +Author: abottoms-coder +Date: Thu Apr 7 11:49:12 2022 -0400 + + missed ) + +commit 9be7fbabc3eed32f03900c94db9d344cb96c2c51 +Author: abottoms-coder +Date: Thu Apr 7 11:44:07 2022 -0400 + + hopefully final debugging push/deploy + +commit a0738a981359d983a37e24017d9209768d29aa4c +Merge: e64edd651 d7f4003f6 +Author: Jorge Gonzalez +Date: Thu Apr 7 11:42:39 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit 28eab5d6c2af4b47a12e98c19d31dccc365c0865 +Merge: 0934cbbb1 d7f4003f6 +Author: Jorge Gonzalez +Date: Thu Apr 7 10:32:15 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit d7f4003f69ceff070133fb18431c0d9b672139d2 +Merge: d98946658 68a76dc40 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Apr 7 10:14:55 2022 -0400 + + Merge pull request #1738 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.50.0 + + Bump sass from 1.49.11 to 1.50.0 in /tdrs-frontend + +commit 68a76dc40444a8f8fbe5fcc16da68ec172c0df7a +Merge: 72f5b6cdb d98946658 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Apr 7 10:08:31 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.50.0 + +commit d98946658a8545dc5fa1244a95b532cca26951d2 +Merge: d2121afaa 564fb06e3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Apr 7 10:08:22 2022 -0400 + + Merge pull request #1724 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 + + chore: Upgrade react-router and react-router-dom + +commit 564fb06e36e810b465c224570e63bb9a7f671354 +Merge: 844850e80 d2121afaa +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Apr 7 09:56:26 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 + +commit 72f5b6cdb18e6dd1a51f6697dbd365e358d60562 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Apr 7 06:13:37 2022 +0000 + + Bump sass from 1.49.11 to 1.50.0 in /tdrs-frontend + + Bumps [sass](https://github.com/sass/dart-sass) from 1.49.11 to 1.50.0. + - [Release notes](https://github.com/sass/dart-sass/releases) + - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) + - [Commits](https://github.com/sass/dart-sass/compare/1.49.11...1.50.0) + + --- + updated-dependencies: + - dependency-name: sass + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 2809410959b727272cadaafdafb7ed1723f7798d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:46:36 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + +commit 73fa6ea2ace8dba38d8828636b67184a9e4692a3 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:45:46 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + render missing words + +commit f524bb5ad963a26827614064497827f8c294e358 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:44:42 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + render missing words. + +commit 6e2ce9e11d3066cb07f91be8ff6c781a6fec5bcf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:42:30 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 7a0205653301bfe31172065115666ae1fbb310e4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:42:07 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + Co-authored-by: Steve Nino <101280598+stevenino@users.noreply.github.com> + +commit 55743f36a10e7c914cbd5eb1233b608948d67fdb +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:41:45 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + using github for images. + +commit 32b1b0764f636c747a9511b868bfa8f529c288c1 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:40:38 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 1271c772a3d70155f8f0fa87d3c0d34de7388722 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:40:24 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + using github for images. + +commit 64edf96c0f26cde5c363d93f2c6eae1cc273a167 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:39:29 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + using github for images. + +commit b4738c3c994186e9132471ff74cd6b58d6bca434 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:39:07 2022 -0400 + + Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md + + using github for images. + +commit 2fbc286ab13566acf9e9bd1357691ec8ae6073ca +Merge: 9baaa6c64 d2121afaa +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 16:19:11 2022 -0400 + + Merge branch 'raft-tdp-main' into adp/1642-ird-sysadmin + +commit d2121afaa03e6534e672d4d701b41733f55aedd1 +Merge: d4c32477c b99542eed +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 6 15:01:45 2022 -0400 + + Merge pull request #1722 from raft-tech/spike/1614-erd-automation + + [Spike]Entity Relation Diagram Automation + +commit 844850e806dbf2bff542b3386f86028780865554 +Merge: 7ecb70c50 d4c32477c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 13:42:19 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 + +commit b99542eed244defef4807d42851f82db6d0c8e40 +Merge: 597ec83ad d4c32477c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 6 13:04:56 2022 -0400 + + Merge branch 'raft-tdp-main' into spike/1614-erd-automation + +commit d4c32477c5b22f16edddc4aec08f8003879ef1ca +Merge: 45b7b1000 59e48f004 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 6 13:04:15 2022 -0400 + + Merge pull request #1720 from raft-tech/stevenino-patch-1 + + Update team-meetings.md + +commit 59e48f004fb16f4d811c8e328ce473287f6edea6 +Merge: 796c2e947 45b7b1000 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 6 12:57:30 2022 -0400 + + Merge branch 'raft-tdp-main' into stevenino-patch-1 + +commit 45b7b10006a9e18070727e1b6fc1a44d766a81a9 +Merge: 5c1ec2aa6 245e61114 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 6 12:55:47 2022 -0400 + + Merge pull request #1735 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.4 + + Bump @testing-library/jest-dom from 5.16.3 to 5.16.4 in /tdrs-frontend + +commit 6052536a0b6dbca6cecdc081253fa4c1ace3a411 +Merge: 48fcefcec 5c1ec2aa6 +Author: Miles Reiter +Date: Wed Apr 6 12:05:07 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit 7ecb70c502610a986c3b137724725c6871a240a6 +Merge: 067290a7f 5c1ec2aa6 +Author: Jorge Gonzalez +Date: Wed Apr 6 11:04:52 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 + +commit 245e61114c9a934bd9efc1b8b766630aba76573f +Merge: 58de08b45 5c1ec2aa6 +Author: Jorge Gonzalez +Date: Wed Apr 6 11:03:06 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.4 + +commit 5c1ec2aa69fcc4c1a88763e7730c37dacf6ff8a4 +Merge: e0f44fd9d 120a50798 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Apr 6 10:44:04 2022 -0400 + + Merge pull request #1703 from raft-tech/hotfix/clamav-env-var + + CLAMAV_NEEDED env var cleanup + +commit 8015554f50313b485a1204aeef07cfa13fb1fc20 +Author: abottoms-coder +Date: Wed Apr 6 10:24:32 2022 -0400 + + trying prints + +commit 58de08b45c0160901d901be16ec91b8307c4232d +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Apr 6 06:14:12 2022 +0000 + + Bump @testing-library/jest-dom from 5.16.3 to 5.16.4 in /tdrs-frontend + + Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.16.3 to 5.16.4. + - [Release notes](https://github.com/testing-library/jest-dom/releases) + - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/jest-dom/compare/v5.16.3...v5.16.4) + + --- + updated-dependencies: + - dependency-name: "@testing-library/jest-dom" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit eda4f898da4089e1b9cfb9b4cc4474e4cde7cdbe +Author: abottoms-coder +Date: Tue Apr 5 16:26:09 2022 -0400 + + clamav is hungry + +commit 1cb66ee0b14f9368f74415ece6114529b4941b60 +Author: abottoms-coder +Date: Tue Apr 5 16:07:07 2022 -0400 + + putting hhsid behind if block for tests + +commit 0bf1cb391e17c57d7dc7d5b4aca684d077c6c782 +Author: abottoms-coder +Date: Tue Apr 5 15:57:39 2022 -0400 + + Updated wrong manifest + +commit 85d6bf58c307e49e1573629334d275c37990b98a +Author: abottoms-coder +Date: Tue Apr 5 15:53:17 2022 -0400 + + Dropping mem req + +commit 013c018b04b7420068cf0c0cb5a817449977b921 +Author: abottoms-coder +Date: Tue Apr 5 15:49:11 2022 -0400 + + Figuring out circleci + +commit 05da8145d77fd702fc1af9490486f2cf832c4c9c +Author: abottoms-coder +Date: Tue Apr 5 15:46:29 2022 -0400 + + Also experimenting with circleci + +commit ac4f75a1f2bb43415e37f6e1f37a4238fb2a5f05 +Author: abottoms-coder +Date: Tue Apr 5 15:40:20 2022 -0400 + + playing with different logging settings + +commit 120a5079890debe2f69526ebab5f3452640b6797 +Merge: ae5f2f7b8 e0f44fd9d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Apr 5 15:33:19 2022 -0400 + + Merge branch 'raft-tdp-main' into hotfix/clamav-env-var + +commit 3431c1ffa1c4373f37c1c37d56521fca72aecc7f +Author: abottoms-coder +Date: Tue Apr 5 14:36:05 2022 -0400 + + Removing old frontend docs, updates badges stuff. + +commit 5cbb0873a23edbbe64a888a34cb4e090e0d93e5a +Merge: 2266d24c0 36244858b +Author: abottoms-coder +Date: Tue Apr 5 14:28:06 2022 -0400 + + Merge conflict + +commit 2266d24c06ed5136440c520d5e8a1035be32a969 +Author: abottoms-coder +Date: Tue Apr 5 14:26:39 2022 -0400 + + Updates to use develop instead of raft-tdp-main in the docs folder + +commit a389f76cc8e51028c2d7c591a0e6b38c9e8fb8d5 +Author: abottoms-coder +Date: Tue Apr 5 14:17:48 2022 -0400 + + updating references to raft-tdp-main and absolute github links vs relative + +commit 0934cbbb11cb4784d18a783ccf95cb8a5f102483 +Merge: d8d2da522 e0f44fd9d +Author: Jorge Gonzalez +Date: Tue Apr 5 11:05:35 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit 067290a7f54ef48788d251a43c112227a6bdce7a +Merge: ed2f94dc8 e0f44fd9d +Author: Jorge Gonzalez +Date: Tue Apr 5 11:00:35 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 + +commit e0f44fd9d63f6463bf5debcd15ba2a2e2d50eb69 +Merge: 1d1de9734 e27d9058c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 10:59:32 2022 -0400 + + Merge pull request #1727 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.1.0 + + Bump concurrently from 7.0.0 to 7.1.0 in /tdrs-frontend + +commit d8d2da522435d95a1cfcf9f4cd972b2e3994842e +Merge: 87e72fe28 1d1de9734 +Author: Jorge Gonzalez +Date: Tue Apr 5 10:59:31 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit ae5f2f7b8d5cbf0d5ec8232fc0e18c959541c95b +Merge: 31b3b6322 1d1de9734 +Author: Jorge Gonzalez +Date: Tue Apr 5 10:57:50 2022 -0400 + + Merge branch 'raft-tdp-main' into hotfix/clamav-env-var + +commit 597ec83adfce81828fd1a034211637a798f802a4 +Merge: 900134bb2 1d1de9734 +Author: Jorge Gonzalez +Date: Tue Apr 5 10:56:47 2022 -0400 + + Merge branch 'raft-tdp-main' into spike/1614-erd-automation + +commit ed2f94dc84d96334484778a87dc360894a462a0b +Author: Jorge Gonzalez +Date: Tue Apr 5 10:52:45 2022 -0400 + + chore: bump react-router and react-router-dom + +commit 36244858bac80def6458b9fac5484fc2445e32a1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 10:26:36 2022 -0400 + + Update 009-git-workflow.md + +commit 2945a6b502455c7bc3c174db807ebb3c385cf444 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 10:23:23 2022 -0400 + + Update 018-versioning-and-releases.md + +commit d194736e5b6f6a03574c7efbce12a2a9a56317cb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 10:10:37 2022 -0400 + + Update 018-versioning-and-releases.md + +commit 62d36025fb3454127f76b45d1c6c1787ed4e6e91 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 10:04:40 2022 -0400 + + Update 018-versioning-and-releases.md + +commit 1885f780c3c8052ca3538cab324b0d9b5fe7c9cb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 09:56:32 2022 -0400 + + Update 008-deployment-flow.md + +commit 32b5c8c2e55a54a088da41e68066089ea7bb622f +Author: abottoms-coder +Date: Tue Apr 5 09:45:52 2022 -0400 + + First take at docs + +commit 44424d483e779ec3973b6a2ce73844fa741a0a95 +Author: abottoms-coder +Date: Tue Apr 5 09:38:23 2022 -0400 + + Creation of dummy file + +commit 266368f72f5ad8742a193127144a9ee73cb3672e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Apr 5 09:34:59 2022 -0400 + + Update 008-deployment-flow.md + +commit 9baaa6c64e3a6d19325e975599fc13929bb222eb +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Apr 4 17:16:49 2022 -0400 + + update sysadmin response drill + +commit 22dd090d396a3e7fd2d2058f7e3a982664d11003 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Apr 4 17:09:25 2022 -0400 + + added IR subdir, moved secrets md, added sysadmin md + +commit dc6e20a837f451287266b355996b268ca4af1c61 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Apr 4 16:44:35 2022 -0400 + + updated sc readme to mention new ir subdir + +commit 92bfd89f810f69853b2e5354b5dca4cc923d6f1b +Author: abottoms-coder +Date: Mon Apr 4 16:32:42 2022 -0400 + + undoing bypass + +commit 624ecf5650450e918955b4f8dac3e093094db9ed +Author: abottoms-coder +Date: Mon Apr 4 16:21:23 2022 -0400 + + bypassing build-test checks pt2 + +commit 07c9302ddcea87bed8cf2da0e9b0eff17d5c133a +Author: abottoms-coder +Date: Mon Apr 4 16:19:21 2022 -0400 + + bypassing build-test checks + +commit ace2a9106738e90168168114d24a7da4a33a35cd +Author: abottoms-coder +Date: Mon Apr 4 16:15:56 2022 -0400 + + updating logging to stdout, rnd2 + +commit f156f61916d93ef91ae76e17cadc83e058a7133f +Author: abottoms-coder +Date: Mon Apr 4 16:09:25 2022 -0400 + + updating logging to stdout + +commit 48fcefcecda10b1381ae194a4e593dcc57521dcc +Merge: 209274b79 1d1de9734 +Author: Miles Reiter +Date: Mon Apr 4 16:07:46 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit 779e3691b6825c27d1b89f76cff3591d695e5db1 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Apr 4 19:50:33 2022 +0000 + + Bump react-router-dom from 6.2.2 to 6.3.0 in /tdrs-frontend + + Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.2.2 to 6.3.0. + - [Release notes](https://github.com/remix-run/react-router/releases) + - [Commits](https://github.com/remix-run/react-router/commits/v6.3.0/packages/react-router-dom) + + --- + updated-dependencies: + - dependency-name: react-router-dom + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit e27d9058cb1d9e5f6fd9c821ca278ad7fd80e10b +Merge: efd5ca42d 1d1de9734 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 4 15:49:31 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.1.0 + +commit 1d1de9734fc7c1582c2456704d3f47a81f593682 +Merge: dcbd0c085 c38180f84 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 4 15:49:22 2022 -0400 + + Merge pull request #1701 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.18 + + Bump @fortawesome/react-fontawesome from 0.1.17 to 0.1.18 in /tdrs-frontend + +commit c38180f84b7b5037df5d87f9b9f020e9a04ce894 +Merge: 7282183e7 dcbd0c085 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 4 15:42:01 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.18 + +commit efd5ca42d7974d09e8f75376a1d466b7b2db1bb2 +Merge: 1585b8b78 dcbd0c085 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 4 15:41:49 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.1.0 + +commit dcbd0c0853ba6eb49517c5e40aae198434418c76 +Merge: 4ef3bb303 80fbfecfb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Apr 4 15:41:37 2022 -0400 + + Merge pull request #1728 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.11 + + Bump sass from 1.49.9 to 1.49.11 in /tdrs-frontend + +commit fc6b8fbb7fe2c90c08d8251dff4c7a3ed031d55b +Author: abottoms-coder +Date: Mon Apr 4 15:35:50 2022 -0400 + + Adding garbage debugging for local testing + +commit 209274b798a6b91ca61147c9e65d94f84f0643bc +Author: Miles Reiter +Date: Mon Apr 4 12:19:05 2022 -0400 + + Update .github/ISSUE_TEMPLATE/research-synthesis-issue-template.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit a1e06a36c08b3d95bddb57942356ef130d9896d4 +Author: Miles Reiter +Date: Mon Apr 4 12:18:53 2022 -0400 + + Update .github/ISSUE_TEMPLATE/research-planning-issue-template.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 62107cf6c0e383ed998603887b55be7071d4b7f6 +Author: Miles Reiter +Date: Mon Apr 4 12:18:37 2022 -0400 + + Update .github/ISSUE_TEMPLATE/research-synthesis-issue-template.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 07d435a87da690412214bd70af9986c52985d080 +Author: Miles Reiter +Date: Mon Apr 4 12:13:08 2022 -0400 + + Update .github/ISSUE_TEMPLATE/research-planning-issue-template.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 2a9c60e6dbc916af55ff4de3a3c77fce147fecb1 +Author: Miles Reiter +Date: Mon Apr 4 12:06:32 2022 -0400 + + Update .github/ISSUE_TEMPLATE/dev-ready-design-issue-template.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 3c8d4b50ead4eac86fa16bc92d20cb629c117555 +Author: Miles Reiter +Date: Mon Apr 4 12:06:24 2022 -0400 + + Update .github/ISSUE_TEMPLATE/dev-ready-design-issue-template.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit f4fab5948d8b9b79b023e38f3a6821e21b62d2cf +Author: abottoms-coder +Date: Mon Apr 4 11:59:00 2022 -0400 + + Minor updates, pushing + +commit 80fbfecfbc29d710883d690da3e8ad6bbd79d405 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Apr 4 06:11:56 2022 +0000 + + Bump sass from 1.49.9 to 1.49.11 in /tdrs-frontend + + Bumps [sass](https://github.com/sass/dart-sass) from 1.49.9 to 1.49.11. + - [Release notes](https://github.com/sass/dart-sass/releases) + - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) + - [Commits](https://github.com/sass/dart-sass/compare/1.49.9...1.49.11) + + --- + updated-dependencies: + - dependency-name: sass + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 1585b8b7894c61ac32009fef899af60c4132c511 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Apr 4 06:11:36 2022 +0000 + + Bump concurrently from 7.0.0 to 7.1.0 in /tdrs-frontend + + Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 7.0.0 to 7.1.0. + - [Release notes](https://github.com/open-cli-tools/concurrently/releases) + - [Commits](https://github.com/open-cli-tools/concurrently/compare/v7.0.0...v7.1.0) + + --- + updated-dependencies: + - dependency-name: concurrently + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit e64edd65156a719eacb6afc1f9585cfeeb004254 +Author: Aaron Beavers +Date: Fri Apr 1 14:40:27 2022 -0400 + + update pipfile + +commit 87e72fe28e03d741b927063105ff3d1853978cec +Merge: 66c93c8f0 4ef3bb303 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 1 13:08:02 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit 4ef3bb30308029255dc0362e80dba4ad21dce473 +Merge: be5538101 5578bad0e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Apr 1 13:07:34 2022 -0400 + + Merge pull request #1699 from raft-tech/feat/1692-data-file-upload-bug + + Feat/1692 data file upload bug + +commit 5578bad0e69760080ff4f6625fa58febc9dad188 +Merge: 2c3a1e7cb be5538101 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Apr 1 12:56:48 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug + +commit 66c93c8f01ca9ece815622b6eba7c9835b631903 +Merge: c4cf68554 be5538101 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 1 12:30:09 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit fed3819a841ff4c1e66de637cb42711417fc68d5 +Merge: 72b6ad0aa be5538101 +Author: Miles Reiter +Date: Fri Apr 1 12:02:01 2022 -0400 + + Merge branch 'raft-tdp-main' into docs/update-ux-templates + +commit 2c3a1e7cbac557c16c393bf1ead2c07058d44ef6 +Author: Aaron Beavers +Date: Fri Apr 1 10:25:10 2022 -0400 + + lint + +commit be55381017d6ecfba3782f3712e8e6fbf3a5fc49 +Merge: b744ac501 13f2ebf40 +Author: Miles Reiter +Date: Fri Apr 1 09:51:55 2022 -0400 + + Merge pull request #1702 from raft-tech/Update-Dev-Ready-Designs + + Adds submission history dev ready PDFs + +commit 13f2ebf40eea164a131e93a3497aca1f92966e2e +Merge: da589e5f8 b744ac501 +Author: Miles Reiter +Date: Fri Apr 1 09:46:04 2022 -0400 + + Merge branch 'raft-tdp-main' into Update-Dev-Ready-Designs + +commit a0c54acb15cb22490d3dd0f4b491104e64fe14d6 +Author: Aaron Beavers +Date: Thu Mar 31 16:35:15 2022 -0400 + + Add permissions to test + +commit 3c57310c7704ebd0a7adbe662975a5f3fd7da159 +Author: Aaron Beavers +Date: Thu Mar 31 16:22:27 2022 -0400 + + leverage permission list to decide if data files tab is visible + +commit 31b3b63220cf4e1d1ec5ce9caf31ee93cd531ef9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Mar 31 13:43:09 2022 -0400 + + Update tdrs-backend/tdpservice/settings/common.py + +commit 900134bb27b8dd94c8c959cb3692ad83efb05516 +Merge: 65d1b96fd b744ac501 +Author: Jorge Gonzalez +Date: Thu Mar 31 11:00:35 2022 -0400 + + Merge branch 'raft-tdp-main' into spike/1614-erd-automation + +commit 65d1b96fdc22fc693222bae80f8eee4d3cf2c499 +Author: abottoms-coder +Date: Thu Mar 31 09:28:00 2022 -0400 + + Cleanup of old command and reverting back branch + +commit 796c2e947291fa4b0fdfb966670f19e33e3d09d1 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Wed Mar 30 16:11:33 2022 -0700 + + Update team-meetings.md + +commit 36ddcb444ea07292bbb4ab673feff6dd08b4efd1 +Author: abottoms-coder +Date: Wed Mar 30 17:38:58 2022 -0400 + + can we run w/o sudo? + +commit dd0895b3ffc1742987d821e814238243e93f2213 +Author: abottoms-coder +Date: Wed Mar 30 17:30:32 2022 -0400 + + can we run w/o installing graphviz twice? + +commit ec982c946022982441c0ea267d4d0014efec6ba7 +Author: abottoms-coder +Date: Wed Mar 30 17:22:12 2022 -0400 + + can we run w/o backend spinup? + +commit 72b6ad0aaa2520aa4802c4288e233e30bf78e507 +Author: Miles Reiter +Date: Wed Mar 30 17:16:27 2022 -0400 + + Update research-synthesis-issue-template.md + +commit 9482728a7b285d8deba9bc957fd0738ff47625ef +Author: abottoms-coder +Date: Wed Mar 30 17:15:08 2022 -0400 + + running inside containers for pythonpath + +commit ce9ddf498b9d6c74e401bc7b8fedfbbfe572f034 +Author: abottoms-coder +Date: Wed Mar 30 17:13:44 2022 -0400 + + I wish local circleci would work + +commit f6384a9af8baaeedac352077499c89d2bb5de326 +Author: Miles Reiter +Date: Wed Mar 30 17:13:27 2022 -0400 + + Update research-synthesis-issue-template.md + +commit 47c3284a4cf2db8ec8e8fe8bc8665be0b6fca1ee +Author: Miles Reiter +Date: Wed Mar 30 17:12:48 2022 -0400 + + Create research-synthesis-issue-template.md + +commit d7fa0a6cb213cefbe288eec9baa0cd8a80d607f3 +Merge: 4f807ceec b744ac501 +Author: Miles Reiter +Date: Wed Mar 30 17:10:47 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit ba6fbd0f2a7df928c99671d38434a4b9bb9bf8d4 +Author: Miles Reiter +Date: Wed Mar 30 17:10:08 2022 -0400 + + Update research-planning-issue-template.md + +commit db32ddc230ee9d205e4815b36c1dce115f91b240 +Author: Miles Reiter +Date: Wed Mar 30 17:09:50 2022 -0400 + + Update research-facilitation-issue-template.md + +commit 97ae557593facbb343871a7b3740b6fe541ff006 +Author: abottoms-coder +Date: Wed Mar 30 17:09:42 2022 -0400 + + Might need this sudo-check here + +commit 6160f1721a8cae9e45bafda94a4f9234b6a1f957 +Author: abottoms-coder +Date: Wed Mar 30 17:08:24 2022 -0400 + + Might need this dev package + +commit b8d70f347dafbc4f15fcb57fe54e7f0bee32fe58 +Author: Miles Reiter +Date: Wed Mar 30 17:07:43 2022 -0400 + + Rename research-planning-issue-template-.md to research-planning-issue-template.md + +commit df3f729dded0a8d61b84d04fa893e059926c24ba +Author: Miles Reiter +Date: Wed Mar 30 17:07:20 2022 -0400 + + Update and rename research-facilitation-issue-template to research-facilitation-issue-template.md + +commit c123dee0a3530e398381ded53a0bd3896b328812 +Author: abottoms-coder +Date: Wed Mar 30 17:06:57 2022 -0400 + + Changing branch name to get this to run + +commit 874b1ec3e71de0200ad6ba67be48f802d2df2404 +Author: Miles Reiter +Date: Wed Mar 30 17:06:55 2022 -0400 + + Create research-facilitation-issue-template + +commit 8e2448cc49e7f7357ca690ad1f8a200de25e9a49 +Author: abottoms-coder +Date: Wed Mar 30 17:04:29 2022 -0400 + + Validated cfg + +commit 3ba3bb601f8bbdb5e3a5cb74ca0ee2a821b58a2a +Author: Miles Reiter +Date: Wed Mar 30 16:55:40 2022 -0400 + + Update research-planning-issue-template-.md + +commit 7d7448aec2fd0eedd69eae430bbf11a3f547e70b +Author: Miles Reiter +Date: Wed Mar 30 16:55:08 2022 -0400 + + Update and rename research-issue-template-.md to research-planning-issue-template-.md + +commit ab0f63f8f0357ed0455c590d78cb6e113e657dcb +Author: abottoms-coder +Date: Wed Mar 30 16:49:01 2022 -0400 + + First test in circleci + +commit 56b45fe6afe22e934f19e5cbe4974d1678dab524 +Author: Miles Reiter +Date: Wed Mar 30 16:09:34 2022 -0400 + + Update dev-ready-design-issue-template.md + +commit 56784b4d9e8b5c04a6376ab87c00ecf57fb5011b +Author: Miles Reiter +Date: Wed Mar 30 16:09:04 2022 -0400 + + Update and rename design-issue-template.md to dev-ready-design-issue-template.md + +commit 7282183e7468b3bdda5d54bf8f133bfa818f331c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Mar 30 19:08:08 2022 +0000 + + Bump @fortawesome/react-fontawesome in /tdrs-frontend + + Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.17 to 0.1.18. + - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) + - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.17...0.1.18) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/react-fontawesome" + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit b744ac501b027278fe9fda7c58f34690ea47101d +Merge: 1a385c2ff a67fc4e4a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 30 15:06:40 2022 -0400 + + Merge pull request #1710 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-6.1.1 + + Bump @fortawesome/fontawesome-svg-core from 1.3.0 to 6.1.1 in /tdrs-frontend + +commit a67fc4e4a230662d123f10476935389bc4e9e357 +Merge: 75d58d34f 1a385c2ff +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 30 15:00:48 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-6.1.1 + +commit 1a385c2ff57bc4f27eb50cab088f90f6239ee633 +Merge: 8fd867808 b2c23afe1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 30 15:00:36 2022 -0400 + + Merge pull request #1718 from raft-tech/stevenino-patch-1 + + Create sprint-43-summary.md + +commit b2c23afe1292e6d72f611e13d6ecb0b72c4e877a +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Mar 30 10:40:10 2022 -0400 + + Update docs/Sprint-Review/sprint-43-summary.md + +commit 3448fd43031f28f274d369b13bff060387632289 +Merge: 7195a9647 8fd867808 +Author: Aaron Beavers +Date: Wed Mar 30 10:29:08 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug + +commit c4555ffb3373463529b685f801f6a5bfa8cb40c7 +Author: abottoms-coder +Date: Wed Mar 30 09:42:15 2022 -0400 + + cleaning up variable for debugging line + +commit 4f807ceecb13595a390afa1970276484111561c1 +Merge: 0723ee6b8 8fd867808 +Author: Miles Reiter +Date: Tue Mar 29 20:30:42 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit 30332f4e6d44c93a8ec79e7207ae15bcc817df77 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Mar 29 16:51:40 2022 -0700 + + Create sprint-43-summary.md + +commit 0723ee6b81e7498c1aca4f5cbd451a90360462d5 +Author: Aaron Beavers +Date: Tue Mar 29 15:45:43 2022 -0400 + + update django admin 508 to 0.1.8 + +commit da589e5f899f3f38139e5c1199b273dce9014f7a +Merge: b9165a9c5 8fd867808 +Author: Miles Reiter +Date: Tue Mar 29 10:10:07 2022 -0400 + + Merge branch 'raft-tdp-main' into Update-Dev-Ready-Designs + +commit 75d58d34f978d740484a81efc10fd3285e446545 +Merge: aab4fdf33 8fd867808 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 29 09:55:11 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-6.1.1 + +commit 8fd8678081f08d4e307e8be3d02c18eb871b7e96 +Merge: 3a7e78346 d8a0c7198 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 29 09:41:46 2022 -0400 + + Merge pull request #1712 from raft-tech/stevenino-patch-1 + + Update team-meetings.md + +commit b9165a9c5a03aff7448e5412174540cba5abb61b +Author: Miles Reiter +Date: Tue Mar 29 00:01:57 2022 -0400 + + Update README.md + +commit d8a0c7198df40a82aaa95600c8a880744f6aa433 +Merge: 04977d428 3a7e78346 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Mar 28 14:10:36 2022 -0700 + + Merge branch 'raft-tdp-main' into stevenino-patch-1 + +commit 652980199e0216be094c47b9257bbefd8c3c0ac0 +Author: abottoms-coder +Date: Mon Mar 28 16:02:04 2022 -0400 + + Per feedback from Aaron, adjusting to explicit type casts and handling of this variable. Also made an improvements to wait_for_services + +commit 04977d42880fb1c1eb7c465abe5de3fffce10849 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Mar 28 12:59:49 2022 -0700 + + Update docs/How-We-Work/team-meetings.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 2dc7cb368f4f1688ffa4febb388e72458704f2ef +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Mar 28 12:59:26 2022 -0700 + + Update docs/How-We-Work/team-meetings.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 0cbc737ea41274e1fa2af71d76fb53903b354ca6 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Mar 28 12:59:09 2022 -0700 + + Update docs/How-We-Work/team-meetings.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 3a7e78346280d38fe20691a83ca0c434f4e0cadb +Merge: 47088018a 914dae51e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 28 14:44:02 2022 -0400 + + Merge pull request #1675 from raft-tech/feat/1640-stt-form + + feat(1640): optionally display the STT field based on user email address + +commit aab4fdf33690e1e84cdc3c1ed50caf1a886a099b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Mar 28 18:33:25 2022 +0000 + + Bump @fortawesome/fontawesome-svg-core in /tdrs-frontend + + Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.3.0 to 6.1.1. + - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) + - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/Font-Awesome/commits/6.1.1) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/fontawesome-svg-core" + dependency-type: direct:production + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 914dae51ebf569002c11a5a4d1a06003df687534 +Merge: 7fd64bca7 47088018a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 28 14:32:24 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit 47088018a86ee2e3529d3d6fd3244cd602850052 +Merge: d820396c4 d783c8990 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 28 14:32:09 2022 -0400 + + Merge pull request #1714 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/minimist-1.2.6 + + Bump minimist from 1.2.5 to 1.2.6 in /tdrs-frontend + +commit 7c03dea46788f7c7fcc45942377a426ce9df5eba +Author: Aaron Beavers +Date: Mon Mar 28 11:07:32 2022 -0400 + + update django admin 508 + +commit 61a65ff7f39205f618c1bc4ad1013cb5c6aaef19 +Merge: 80ffd4de3 d820396c4 +Author: Aaron Beavers +Date: Mon Mar 28 11:00:36 2022 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit 7fd64bca73fec7339034f00928ee8ed073feb05f +Merge: 9e42069c7 d820396c4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Mar 28 10:43:52 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit d783c8990942f7e48e4c3fc34797cf6e76f87d77 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Mar 28 14:33:59 2022 +0000 + + Bump minimist from 1.2.5 to 1.2.6 in /tdrs-frontend + + Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. + - [Release notes](https://github.com/substack/minimist/releases) + - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) + + --- + updated-dependencies: + - dependency-name: minimist + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit d820396c4dbc861fc652ed873430a2e0f3c5a6fc +Merge: 1f109fbdc a10396e08 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 28 10:32:22 2022 -0400 + + Merge pull request #1715 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.12.0 + + Bump eslint from 8.11.0 to 8.12.0 in /tdrs-frontend + +commit 9e42069c72f6caf2afba100db5ffe46a8c68b9be +Merge: 4fcfc9220 1f109fbdc +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Mar 28 10:28:02 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit a10396e089be1f37f37385cce9ef1494b52f6f42 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Mar 28 13:05:50 2022 +0000 + + Bump eslint from 8.11.0 to 8.12.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 1f109fbdcbd403ffcab77111bde1cf39133b597f +Merge: 5a93004d3 194fc5342 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 28 09:04:32 2022 -0400 + + Merge pull request #1713 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.3 + + Bump @testing-library/jest-dom from 5.16.2 to 5.16.3 in /tdrs-frontend + +commit 194fc5342f74f8756c648196afd5d6b09004750a +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Mar 25 17:06:47 2022 +0000 + + Bump @testing-library/jest-dom from 5.16.2 to 5.16.3 in /tdrs-frontend + + Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.16.2 to 5.16.3. + - [Release notes](https://github.com/testing-library/jest-dom/releases) + - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/jest-dom/compare/v5.16.2...v5.16.3) + + --- + updated-dependencies: + - dependency-name: "@testing-library/jest-dom" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 5a93004d365ea5389d21d6a50987641d23a29620 +Merge: bc19beb49 eedb0282e +Author: Jorge Gonzalez +Date: Fri Mar 25 13:05:36 2022 -0400 + + Merge pull request #1711 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-6.1.1 + +commit 8a2db7f2f017aafab7f14b2db06bdcf07f92fda8 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 25 11:06:45 2022 -0400 + + Update docs/How-We-Work/team-meetings.md + +commit 2c1bf3bddbfe3960f04ea52a745c4a54dba203fc +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Fri Mar 25 07:44:13 2022 -0700 + + Update docs/How-We-Work/team-meetings.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit a4da1501ead0ed9a0bee24c2b8205659cb8e6efc +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 25 10:24:57 2022 -0400 + + Update docs/How-We-Work/team-meetings.md + +commit a7bf2918d4d096ec8e949fd18434281004e0b108 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 25 10:23:53 2022 -0400 + + Update docs/How-We-Work/team-meetings.md + +commit c47a3d12028e03c5afa95286ab1115eede500365 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 25 10:22:26 2022 -0400 + + Update docs/How-We-Work/team-meetings.md + +commit 26738884495d6eabd8d0c461f94b57d8eafd811e +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 25 10:19:09 2022 -0400 + + Update docs/How-We-Work/team-meetings.md + +commit f1513295cee1fbec48c2f7632096b2a4d37f9434 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Thu Mar 24 13:12:50 2022 -0700 + + Update team-meetings.md + + Updating with the new meeting cadence and the updated descriptions of the meetings along with the facilitator role. + +commit bc8d7563b8325a6085fe250d8c5a6cdb45ce9a55 +Merge: 4a36c2adb 7195a9647 +Author: abottoms-coder +Date: Thu Mar 24 13:45:42 2022 -0400 + + Merge branch 'feat/1692-data-file-upload-bug' into hotfix/clamav-env-var + +commit 4fcfc92208116746ff9a34343a9c3cf6bf0db5d1 +Author: Jorge Gonzalez +Date: Thu Mar 24 11:57:58 2022 -0400 + + fix: request access validation tests + +commit 7195a9647393c37149a05d39cbb892ba493bd0d1 +Merge: 40c03e97f bc19beb49 +Author: Aaron Beavers +Date: Thu Mar 24 11:42:10 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug + +commit 40c03e97fc1f02095a8c35686223302ce42d517c +Author: Aaron Beavers +Date: Thu Mar 24 11:27:02 2022 -0400 + + lint + +commit 4a36c2adb9ccb1639c872742111a1d15eefc7748 +Author: abottoms-coder +Date: Thu Mar 24 11:22:01 2022 -0400 + + Added explaining comment + +commit 88e826cb3b347e36b7201cc5239df4016784046f +Author: abottoms-coder +Date: Thu Mar 24 11:13:28 2022 -0400 + + Tweaking the alias + +commit abdb05867e1d2e33b4d8931050994b8674fe275f +Merge: 3424f92d1 2a3039210 +Author: abottoms-coder +Date: Thu Mar 24 10:21:32 2022 -0400 + + Merge branch 'feat/1692-data-file-upload-bug' into hotfix/clamav-env-var + +commit 3424f92d1c095121e94def07783635cb9bdb610b +Author: abottoms-coder +Date: Thu Mar 24 10:20:45 2022 -0400 + + new alias + +commit 2a30392104776f5bedd6e4f98e2df685e1d044be +Author: Aaron Beavers +Date: Wed Mar 23 15:10:41 2022 -0400 + + Developers can now have an stt assigned to them + +commit 46e626994fba88ee49a029dd9480764cc3ba6064 +Merge: 2a8a295c8 bc19beb49 +Author: Jorge Gonzalez +Date: Wed Mar 23 09:28:46 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit eedb0282e81713db7709c553dae688ad998eb0d9 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Mar 23 06:17:37 2022 +0000 + + Bump @fortawesome/free-solid-svg-icons in /tdrs-frontend + + Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 6.0.0 to 6.1.1. + - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) + - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.0.0...6.1.1) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/free-solid-svg-icons" + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit bc19beb498dc89a3041667829b6a77e659f04d04 +Merge: 8e489767e 613c63fe0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 22 10:19:16 2022 -0400 + + Merge pull request #1704 from raft-tech/doc/1592-sitemapsynthesis + + Create Sitemap Survey Research Synthesis.md + +commit b14df5814a907c8202ebd50cd7167863018a36c7 +Author: Aaron Beavers +Date: Tue Mar 22 09:55:44 2022 -0400 + + Fix prettier linting issue + +commit 613c63fe0f407d679b8227125f1929829c61cceb +Merge: 4f697754c 8e489767e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 22 09:21:53 2022 -0400 + + Merge branch 'raft-tdp-main' into doc/1592-sitemapsynthesis + +commit 8e489767ebaa00739142bc23a7e9e336e92afd76 +Merge: beb83329e 612205b8d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 22 09:21:47 2022 -0400 + + Merge pull request #1695 from raft-tech/stevenino-patch-1 + + Create sprint-42-summary.md + +commit 612205b8dfb7920d70633f31265e6e7b60c79610 +Merge: 82144d2c8 beb83329e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 22 09:15:25 2022 -0400 + + Merge branch 'raft-tdp-main' into stevenino-patch-1 + +commit beb83329e3fe9a135b790d396317311895e3644d +Merge: c7fcaf961 98a0a3fb5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 22 09:15:05 2022 -0400 + + Merge pull request #1696 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.6.0 + + Bump prettier from 2.5.1 to 2.6.0 in /tdrs-frontend + +commit 98a0a3fb514f3c4eaad9da13a2abb946c8a0a699 +Merge: e19cb6fdb c7fcaf961 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 21 13:40:40 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.6.0 + +commit 82144d2c8d0da08ef2c8d9ed93ae59e0710f5323 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Mar 21 09:25:47 2022 -0700 + + Update docs/Sprint-Review/sprint-42-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 75a5b50bdecc1ada60cd9aa2ba5133bc165e6d20 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Mon Mar 21 09:25:36 2022 -0700 + + Update docs/Sprint-Review/sprint-42-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 4f697754c5cd9ef00b47b80285b285f4fea8cb25 +Author: spurayannur <89534038+sreedevip@users.noreply.github.com> +Date: Mon Mar 21 12:20:08 2022 -0400 + + Create Sitemap Survey Research Synthesis.md + +commit d6477ce3fee2625ac7f376475ee44d656f4c5489 +Author: abottoms-coder +Date: Mon Mar 21 11:57:52 2022 -0400 + + Added set-backend for all runs of deploy_backend for testing -- hope this always sets updated vars now + +commit f2c63425dd01c596b0f1eb4d97884816992a0f64 +Author: abottoms-coder +Date: Mon Mar 21 10:26:10 2022 -0400 + + one line change for a default + +commit 093faf979c7333bfa4ecb739f8aedd1fec938e73 +Author: Miles Reiter +Date: Fri Mar 18 17:26:47 2022 -0400 + + Update README.md + +commit 132d3a4d701934557596c2dc2b1e62c47b00e33a +Author: Miles Reiter +Date: Fri Mar 18 15:45:31 2022 -0400 + + Adds submission history dev ready PDFs + +commit baedbeb046df569090d22f6d12bc39e553d60381 +Merge: 4a64278d3 78491e6cf +Author: Aaron Beavers +Date: Fri Mar 18 13:18:20 2022 -0400 + + Merge remote-tracking branch 'origin/feat/1692-data-file-upload-bug' into feat/1692-data-file-upload-bug + +commit 4a64278d31ac745a399ec363202b6ec1e99741e5 +Author: Aaron Beavers +Date: Fri Mar 18 13:06:52 2022 -0400 + + remove unused code + +commit 78491e6cff75ec619871cd2e7010da2122f4ec9a +Merge: 9a18d7d18 c7fcaf961 +Author: Miles Reiter +Date: Fri Mar 18 12:34:35 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug + +commit 2a8a295c8309759c52984179ae5f17f870df872a +Merge: 1ff79ee37 c7fcaf961 +Author: Jorge Gonzalez +Date: Thu Mar 17 15:33:47 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit c7fcaf961eacf997540caa22177b522d9ba02464 +Merge: 5597c28f8 dafa30d35 +Author: Miles Reiter +Date: Thu Mar 17 15:11:24 2022 -0400 + + Merge pull request #1688 from raft-tech/restore-stakeholder-and-personas + + Restore stakeholder and personas + +commit 72d2c666bdbc29cdf9fa8c7be0af2afee5228fe0 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Thu Mar 17 07:40:26 2022 -0700 + + Update docs/Sprint-Review/sprint-42-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 867f076e03adf9a163fa1a148256edb483a0e677 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Thu Mar 17 07:37:23 2022 -0700 + + Update docs/Sprint-Review/sprint-42-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 9a18d7d1882ff06e059ba8274ba9324ed3fae719 +Author: Aaron Beavers +Date: Wed Mar 16 14:28:45 2022 -0400 + + update tests to pass for new changes + +commit be9c23d1d837837c0421b77f7fab4b430cb6d29d +Author: Aaron Beavers +Date: Wed Mar 16 14:28:36 2022 -0400 + + Add new permission code with helpers + +commit 533a15370e4c0497535cc2f3cff4286c4892147e +Author: Aaron Beavers +Date: Wed Mar 16 14:28:20 2022 -0400 + + remove old permission code + +commit 1ff79ee37c9f02524e2acaf81f1be05dbef96eaa +Author: Jorge Gonzalez +Date: Wed Mar 16 10:45:38 2022 -0400 + + fix: stt form validation + +commit c4cf68554af38c923b118a8a02bfc872ae61879d +Merge: bdc67c49c 5597c28f8 +Author: Jorge Gonzalez +Date: Wed Mar 16 09:21:22 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit e19cb6fdbe4fcf7788e7aa8bf0f5e76e95f49172 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Mar 16 06:10:53 2022 +0000 + + Bump prettier from 2.5.1 to 2.6.0 in /tdrs-frontend + + Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. + - [Release notes](https://github.com/prettier/prettier/releases) + - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) + + --- + updated-dependencies: + - dependency-name: prettier + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 4f4b21c0ca19048970edc2d630d68d5712e36361 +Author: Steve Nino <101280598+stevenino@users.noreply.github.com> +Date: Tue Mar 15 13:49:45 2022 -0700 + + Create sprint-42-summary.md + +commit 80ffd4de3c35c0df517f9a3426f767187910d564 +Merge: 9b05d03c7 5597c28f8 +Author: Aaron Beavers +Date: Tue Mar 15 13:12:40 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit c9eadd0621fea8ed805439b7a926c011ed73c981 +Merge: 61aaccaed 2f74f47a4 +Author: Jorge Gonzalez +Date: Tue Mar 15 12:26:31 2022 -0400 + + Merge branch 'feat/1640-stt-form' of https://github.com/raft-tech/TANF-app into feat/1640-stt-form + +commit 61aaccaed1d7d02fea5b8dfb287e5bc991ebe9fc +Author: Jorge Gonzalez +Date: Tue Mar 15 12:26:16 2022 -0400 + + fix: frontend tests + +commit 2f74f47a47c2fe0b4f32267eb508d9160de28eb8 +Merge: 52fd673bc 5597c28f8 +Author: Jorge Gonzalez +Date: Tue Mar 15 11:52:15 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit dafa30d35ba5f3b5fdc995f56170b2ee42c9de1a +Merge: ca4a52e63 5597c28f8 +Author: Miles Reiter +Date: Tue Mar 15 11:09:42 2022 -0400 + + Merge branch 'raft-tdp-main' into restore-stakeholder-and-personas + +commit ca4a52e63795c3d9aeae10418b8a3d90263e0da3 +Author: Miles Reiter +Date: Tue Mar 15 11:09:35 2022 -0400 + + Update docs/User-Experience/Research-Syntheses/2020, Summer - Understanding Stakeholders and creating personas.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 0bed32393e81b3163fbc2829f40b86acb3d1ad4b +Author: Miles Reiter +Date: Tue Mar 15 11:09:30 2022 -0400 + + Update docs/User-Experience/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 34bac865b86eee04d702e880af70cd994cc8b68b +Author: Miles Reiter +Date: Tue Mar 15 11:09:15 2022 -0400 + + Update docs/User-Experience/README.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 5597c28f8efc6cc866505c10df1a863dd33324e9 +Merge: a5e7ee06f f4b01dc84 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 15 10:07:43 2022 -0400 + + Merge pull request #1648 from raft-tech/feat/skip-clamav-locally + + Skip clamav locally + +commit f4b01dc848ad1e7a351224429824fd8ff57e9f08 +Merge: 5f7b595fb a5e7ee06f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Mar 15 09:14:23 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/skip-clamav-locally + +commit bdc67c49cfb8a02fe3e5bd74d9e85f14e791be67 +Merge: ebd91d4eb a5e7ee06f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Mar 15 09:14:08 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit 52fd673bc7c53fea1d52c37588403a82e4412385 +Merge: b78f42232 a5e7ee06f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Mar 15 09:11:05 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit 1af7c4a4dcd5c30477fba1de05043e65ca5280f0 +Merge: 4d9723c8f a5e7ee06f +Author: Miles Reiter +Date: Mon Mar 14 17:24:13 2022 -0400 + + Merge branch 'raft-tdp-main' into restore-stakeholder-and-personas + +commit 4d9723c8fa314d1ef767694169529cb6ca88ed6c +Author: Miles Reiter +Date: Mon Mar 14 17:20:15 2022 -0400 + + Corrects link + +commit a5e7ee06f11ccf426feab6218b0c2fa1fde79767 +Merge: 85a6a48ae b2e97966d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 14 17:18:40 2022 -0400 + + Merge pull request #1687 from raft-tech/lfrohlich-patch-1 + + Update with Steve's name + +commit 699f69357b208342620a9e9674e560984e2ac18b +Author: Miles Reiter +Date: Mon Mar 14 17:17:59 2022 -0400 + + Updates main UX readme with direct link to stakeholders and personas doc + +commit e316e0068228a3c6be67b736c6d9602d90519392 +Author: Miles Reiter +Date: Mon Mar 14 17:16:14 2022 -0400 + + Updates readme with a non placeholder description for stakeholders doc + +commit 9b5c821fa332088d24bbd26a9ecbef9bc2d9f550 +Author: Miles Reiter +Date: Mon Mar 14 17:12:07 2022 -0400 + + Fixes small layout issue + +commit 8dbf36209d76531657610cddbd8ec409fcd57787 +Author: Miles Reiter +Date: Mon Mar 14 17:11:22 2022 -0400 + + Update existing markdown doc with updated content + +commit b2e97966d73f693f3a2c2638eb3e8cdf974f2409 +Merge: 2e7d162c4 85a6a48ae +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 14 17:09:30 2022 -0400 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-1 + +commit 36c94aee0f036a825b211e84a52b7d50eac31f87 +Author: Miles Reiter +Date: Mon Mar 14 17:09:08 2022 -0400 + + Delete Stakeholders-and-Personas.md + +commit 85a6a48ae859144e9f24abe69738a85f64aebdda +Merge: 248db158a 0c1b257fa +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 14 15:35:54 2022 -0400 + + Merge pull request #1689 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.11.0 + + Bump eslint from 8.10.0 to 8.11.0 in /tdrs-frontend + +commit b78f422329f63337da0c5500d6942507fa9e7f79 +Author: Jorge Gonzalez +Date: Mon Mar 14 14:52:15 2022 -0400 + + fix: validation + +commit 4a75b9d68fabb623ee42badc7da87a0ae9349ca6 +Merge: 73c1d6985 248db158a +Author: Jorge Gonzalez +Date: Mon Mar 14 14:07:10 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit 9b05d03c7c0390e61597fa68ea4a753b7d1f1983 +Author: Aaron Beavers +Date: Mon Mar 14 14:00:56 2022 -0400 + + update django admin 508 to 0.1.6 + +commit 0c1b257fa2b59084072fed2a6871787560f1408b +Merge: 002398018 248db158a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 14 13:38:33 2022 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.11.0 + +commit 248db158ac510af425113aad8f24ed790e958c4c +Merge: dce4b5f4d e5256a7b2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Mar 14 13:38:26 2022 -0400 + + Merge pull request #1668 from raft-tech/feat/1358-ocio-groups + + feat(1358): create default ACF OCIO permissions group + +commit ebd91d4eb33af332bbcbb9087039133a1bba3365 +Merge: 6b49644f3 dce4b5f4d +Author: Jorge Gonzalez +Date: Mon Mar 14 10:00:55 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit 73c1d69853d3dc9fcef750ab1e6d6ad6a71b52c5 +Merge: 436154239 dce4b5f4d +Author: Jorge Gonzalez +Date: Mon Mar 14 10:00:24 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit 5f7b595fb2429aeaad7c0ae3095c94964fbebe17 +Merge: f107ea66a dce4b5f4d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Mar 14 09:21:20 2022 -0400 + + Merge branch 'raft-tdp-main' into feat/skip-clamav-locally + +commit 00239801814e77c555bcf201ff1d04eb0ab7aeae +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Mar 14 06:16:02 2022 +0000 + + Bump eslint from 8.10.0 to 8.11.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit cc63b67fc420823a11f924ea58af86df8ccb1e96 +Author: Miles Reiter +Date: Sun Mar 13 23:29:44 2022 -0400 + + Update README.md + +commit df619577449e392e12c2053e0e08b02261d6a730 +Author: Miles Reiter +Date: Sun Mar 13 23:27:38 2022 -0400 + + Adds link to restored doc to readme + +commit 175111dacfb4188700675051d892ec675c59acb4 +Author: Miles Reiter +Date: Sun Mar 13 23:15:36 2022 -0400 + + Update and rename Stakeholders-And-Personas.md to Stakeholders-and-Personas.md + +commit f9d8c12300fcc9a96df7522d2339b16df3ecb216 +Author: Miles Reiter +Date: Sun Mar 13 23:08:35 2022 -0400 + + Create Stakeholders-And-Personas.md + +commit 2e7d162c4a2b6601a71fa00690f7c48f0a5a4a9b +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 11 16:30:38 2022 -0500 + + Update docs/How-We-Work/Team-Composition.md + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 1a9699a4a3d05c81ee33d97ccb08da96bda0b578 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 11 15:09:16 2022 -0500 + + Update Team-Composition.md + +commit e679457b2846086407792f5e5a070fe0bba38503 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Mar 11 15:03:25 2022 -0500 + + Update with Steve + +commit e5256a7b2dd016330c6bb501804c0906d731db0a +Merge: bf8c0c5fa dce4b5f4d +Author: Jorge Gonzalez +Date: Fri Mar 11 13:11:36 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1358-ocio-groups + +commit dce4b5f4decfabfac72ece14f7be8da871f91144 +Merge: 139dbd8fe f8b87f736 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 11 12:03:44 2022 -0500 + + Merge pull request #1685 from raft-tech/update-default-su + + Update cloudgov.py + +commit f8b87f736c729087e0e5c8142e2fe9f3d1d312f3 +Merge: e3183c31a 139dbd8fe +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 11 11:44:25 2022 -0500 + + Merge branch 'raft-tdp-main' into update-default-su + +commit 139dbd8fea49a6264fc9c02521c93899aec903ff +Merge: 83e870f87 898400a28 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 11 11:44:09 2022 -0500 + + Merge pull request #1678 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.2 + + Bump uswds from 2.12.1 to 2.13.2 in /tdrs-frontend + +commit 898400a28c000fee1f07450a8e52e89a25f34bd4 +Merge: 9cb4177cd 83e870f87 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 11 11:35:51 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.2 + +commit 83e870f8732ab2a102023c12a7422664f785a6f5 +Merge: 2ff63dc3a 939a40e3a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 11 11:35:39 2022 -0500 + + Merge pull request #1677 from raft-tech/react-router-bump + + chore(react-router): Bump react-router and react-router-dom to 6.2.2 + +commit e3183c31a7854017da8f0ca1fdf57eb88c04f7cf +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 11 11:21:33 2022 -0500 + + Update cloudgov.py + +commit 939a40e3a780f375e93baf6895771acb8253457c +Merge: 8b5878731 2ff63dc3a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Mar 11 10:15:28 2022 -0500 + + Merge branch 'raft-tdp-main' into react-router-bump + +commit f107ea66a6732e4a33002e984871d957ca9b386d +Merge: 7eda7e70d 2ff63dc3a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Mar 10 17:01:00 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/skip-clamav-locally + +commit 7eda7e70d46c6dd8a010c42bfa64a814a7a4d5bb +Author: abottoms-coder +Date: Thu Mar 10 16:49:19 2022 -0500 + + dummy commit to trigger deployment + +commit 9cb4177cdac64964a0ad20ba3c8e6e7be8951461 +Merge: 908fa9222 2ff63dc3a +Author: Jorge Gonzalez +Date: Thu Mar 10 14:46:35 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.2 + +commit 436154239455f93a56af1b6bb30089ece6e1c4fc +Author: Jorge Gonzalez +Date: Thu Mar 10 14:45:33 2022 -0500 + + fix: address Home tests with the stt box guard + +commit aefe4b34726e3a9eedf42107a2ff221a4a2a0d29 +Merge: 4a0215a77 2ff63dc3a +Author: Jorge Gonzalez +Date: Thu Mar 10 14:34:56 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit ec53557493e9837b8ac1b00dcebfc886a98a1591 +Merge: ec8234e4c d33e27a51 +Author: abottoms-coder +Date: Thu Mar 10 12:21:47 2022 -0500 + + Merge from local-dockerfile branch + +commit 2ff63dc3a6ebbc87425e59680845f73ac366ab26 +Merge: d1d313ef0 08766da1a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Mar 10 12:19:15 2022 -0500 + + Merge pull request #1683 from raft-tech/deps/buildpack-updates + + Update buildpack-changelog.md + +commit ec8234e4c7d04ec98005a2f12499b0ecfffbb264 +Author: abottoms-coder +Date: Thu Mar 10 12:18:44 2022 -0500 + + Adding CLAMAV_NEEDED as necessary/default envvar for cloud.gov deployments with this script..hopefully... + +commit 3db6a7d0a747b83ec7be039a8621556452ab06fd +Author: abottoms-coder +Date: Thu Mar 10 12:07:46 2022 -0500 + + Resolved login loop, needed to match target + +commit 08766da1a863c6ef29cf730a049702b2d432d93d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Mar 10 10:50:48 2022 -0500 + + Update buildpack-changelog.md + +commit 8b587873161c4424aab26069a640624d9e34c9e9 +Merge: 8be7364bf d1d313ef0 +Author: Jorge Gonzalez +Date: Thu Mar 10 10:27:04 2022 -0500 + + Merge branch 'raft-tdp-main' into react-router-bump + +commit 908fa9222479312f6751bf89c564d6978d49d00f +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Mar 10 14:21:30 2022 +0000 + + Bump uswds from 2.12.1 to 2.13.2 in /tdrs-frontend + + Bumps [uswds](https://github.com/uswds/uswds) from 2.12.1 to 2.13.2. + - [Release notes](https://github.com/uswds/uswds/releases) + - [Commits](https://github.com/uswds/uswds/compare/v2.12.1...v2.13.2) + + --- + updated-dependencies: + - dependency-name: uswds + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit d1d313ef08943c792de22aca853aa4825a94633b +Merge: 3d554fd34 e974a3e5f +Author: Jorge Gonzalez +Date: Thu Mar 10 09:20:37 2022 -0500 + + Merge pull request #1681 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.4 + +commit e974a3e5f135c5106146542a2879e3e5fe8586c2 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Mar 10 06:11:10 2022 +0000 + + Bump @testing-library/react from 12.1.3 to 12.1.4 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.3 to 12.1.4. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.3...v12.1.4) + + --- + updated-dependencies: + - dependency-name: "@testing-library/react" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 3d554fd34166cc7ceaff988fbed0c7f12e881254 +Merge: 1f497618a a95d0bf0f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 9 11:56:53 2022 -0500 + + Merge pull request #1659 from raft-tech/feat/1439-separate-rds-databases + + Feat/1439 separate rds databases + +commit a95d0bf0fb1284ee513207dc2abdf0ece3afa299 +Merge: e69ed9f1a 1f497618a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 9 11:35:04 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1439-separate-rds-databases + +commit 1f497618abe653fc6b3f2f2566758650c85ba041 +Merge: 4891de4bf 953138be6 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Mar 8 12:59:11 2022 -0500 + + Merge pull request #1657 from raft-tech/feat/1540-shared-authentication-tests + + Feat/1540 shared authentication tests + +commit 4a0215a77b42e9e21e77aaa323eefa09490bb794 +Merge: 8c18312a1 4891de4bf +Author: Jorge Gonzalez +Date: Tue Mar 8 11:08:49 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1640-stt-form + +commit e69ed9f1ad6503a170bd785139b44d95679a84dd +Merge: 01a1be118 4891de4bf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Mar 7 17:07:49 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1439-separate-rds-databases + +commit 953138be6890bea131e0e2ce843840a2efbf08a1 +Merge: 313d0fca9 4891de4bf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Mar 7 17:07:31 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests + +commit 8be7364bfba225df083979e1cf9747463f1ece68 +Author: Jorge Gonzalez +Date: Mon Mar 7 11:32:37 2022 -0500 + + chore: upgrade react-router packages; remove unused resolutions block + +commit 6b49644f3a55eb6f5a697364654aea2f1deaefb4 +Merge: 523ce5514 4891de4bf +Author: Jorge Gonzalez +Date: Mon Mar 7 11:15:08 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit 4891de4bfb6679db43691160fb9cbb7d50387873 +Merge: 832073f8f 4e0ec3ea0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Mar 4 14:04:43 2022 -0500 + + Merge pull request #1673 from raft-tech/feat/1534-updating-to-latest-zaproxy + + Issue 1534: Fix zap scan parameters + +commit 523ce55141288d200197a80f31bdb2f541dc975c +Author: Jorge Gonzalez +Date: Fri Mar 4 10:00:59 2022 -0500 + + fix: deregister LogEntry + +commit 4e0ec3ea042f225027062cb6f0bfb5ba5c9c6892 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Mar 4 10:00:27 2022 -0500 + + reverting temp scan rules used for testing + +commit 9da69c6ef3e1807c9761e3f478b3662cbe31b05a +Author: Jorge Gonzalez +Date: Thu Mar 3 17:03:37 2022 -0500 + + chore: lint + +commit 8c18312a1a4c30c415e0ed37fd8568bfc078657d +Author: Jorge Gonzalez +Date: Thu Mar 3 16:53:00 2022 -0500 + + feat: optionally display the STT field based on user email address + +commit cb8dce3273d744557fce2824a15ed618335c401c +Merge: 0e56a72b4 832073f8f +Author: Jorge Gonzalez +Date: Thu Mar 3 16:42:15 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1658-read-only-dac + +commit 0e56a72b44679fce4b0d2407cb1ac97c827cb894 +Author: Jorge Gonzalez +Date: Thu Mar 3 16:23:16 2022 -0500 + + feat: make various django-admin models permanently read-only + +commit 9670e94dca18a81f2d56f99f4687f3c69b204ef3 +Merge: 62d4c16fc 832073f8f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 16:35:33 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1534-updating-to-latest-zaproxy + +commit 832073f8ff6404e6bfa4ad60246296b440e25a08 +Merge: 22d35e24c ef66a00cc +Author: Jorge Gonzalez +Date: Thu Mar 3 16:35:06 2022 -0500 + + Merge pull request #1655 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/history-5.3.0 + +commit 62d4c16fcfcef4e8d1de353c6ed58d777a976f82 +Merge: 80f98c17a 22d35e24c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 15:47:14 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1534-updating-to-latest-zaproxy + +commit bf8c0c5fabf0acbe7e88ae306dd8a92ecb48f202 +Merge: 24ca01c39 22d35e24c +Author: Jorge Gonzalez +Date: Thu Mar 3 15:28:37 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1358-ocio-groups + +commit 24e669302482da7b6d1f074e1e9622979457d477 +Merge: 43a79fdbf 22d35e24c +Author: Jorge Gonzalez +Date: Thu Mar 3 15:28:33 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 + +commit 313d0fca9e90a901c24f9733c46c5b1b4cee7204 +Merge: ea9eae687 22d35e24c +Author: Jorge Gonzalez +Date: Thu Mar 3 15:28:25 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests + +commit ef66a00cc0c8d0374ec4ee387f79361802d8c126 +Merge: ba5b7592c 22d35e24c +Author: Jorge Gonzalez +Date: Thu Mar 3 15:27:42 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/history-5.3.0 + +commit 22d35e24c9021698dad8dbd2435294a6227bd2d0 +Merge: bd721f22d aabc0f909 +Author: Jorge Gonzalez +Date: Thu Mar 3 15:27:17 2022 -0500 + + Merge pull request #1670 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-config-prettier-8.5.0 + +commit ea9eae687131085a7cd8dd54c2658c1be4aada9e +Merge: a06e4aa07 bd721f22d +Author: Jorge Gonzalez +Date: Thu Mar 3 15:26:59 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests + +commit 80f98c17a1194c60b65ef119d697a309d74b3899 +Merge: e254889c9 bd721f22d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 15:24:05 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1534-updating-to-latest-zaproxy + +commit 24ca01c390af6a73ebf61154dd18282f5c23c780 +Author: Jorge Gonzalez +Date: Thu Mar 3 14:37:54 2022 -0500 + + feat: redirect relevant users to django admin + +commit d709cfaa4c8025f4ef18a74b55e8f3fdae8da761 +Author: Jorge Gonzalez +Date: Thu Mar 3 14:12:24 2022 -0500 + + fix: test + +commit e254889c94a48f90256ed6a82c9fbe3b62c3bfaa +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 13:35:40 2022 -0500 + + cleanup--undoing test changes herein + +commit c1674584ab83c3aef1ad62e11d5e4d2fc752fd1b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 13:08:43 2022 -0500 + + globalexclude syntax change + +commit cbc85f79c1e8e48ec7ef96743f755ad623e43f9c +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 12:38:55 2022 -0500 + + enable statements + +commit 6bc4cc791dd60124cf31d6f2a5899b25c7593091 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Mar 3 11:52:33 2022 -0500 + + excluding s3 buckets + +commit beb65cfb6b478d90e31682ddb55f29500cc17aab +Merge: f766debde bd721f22d +Author: Jorge Gonzalez +Date: Thu Mar 3 10:58:42 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1358-ocio-groups + +commit ba5b7592ceecaf6f72943400de6c30d5e9d8fcb4 +Merge: 0c5befbb8 bd721f22d +Author: Jorge Gonzalez +Date: Thu Mar 3 10:58:12 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/history-5.3.0 + +commit aabc0f9098bc66b7063a3ecfcbe6162023228031 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Mar 3 06:11:28 2022 +0000 + + Bump eslint-config-prettier from 8.4.0 to 8.5.0 in /tdrs-frontend + + Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.4.0 to 8.5.0. + - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) + - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v8.4.0...v8.5.0) + + --- + updated-dependencies: + - dependency-name: eslint-config-prettier + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 3b54406f07ffd5b4491694933f412b5e79bc4c98 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 16:58:37 2022 -0500 + + added cdn to global exclude and undo 1455 test + +commit 01a1be118269d626f8adce2561dc3e1d8d8a3d8d +Author: abottoms-coder +Date: Wed Mar 2 15:44:08 2022 -0500 + + Tweak to be generic for staging/prod in the future + +commit 718bb5c02c917ebcd4a9d0ea727b73789d203200 +Author: abottoms-coder +Date: Wed Mar 2 15:40:52 2022 -0500 + + fixing whitespace, misc + +commit 3140fb346c460d9dd023d1e3a1e198173eb8da59 +Author: abottoms-coder +Date: Wed Mar 2 15:38:17 2022 -0500 + + manually reverting all references to the automation of creating a DB + +commit 37b82c7a3806c2f907513514eb254bf10181364e +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 15:27:08 2022 -0500 + + confirming 1455 fixed id + +commit e9f1a17b19b5eadf6537541d848119c9d5703ace +Author: abottoms-coder +Date: Wed Mar 2 15:25:59 2022 -0500 + + try local_exec + +commit f7ed459da4f833c7bef9108658744b40e3a37324 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 15:23:08 2022 -0500 + + confirming 1455 + +commit 59676e3d0e6dc4071ffc75089880b549b0bf9046 +Author: abottoms-coder +Date: Wed Mar 2 15:08:50 2022 -0500 + + reverting the reversion of underscore + +commit 1e8201f3c7478d3d61c2fa1300512b1e0a31f58f +Author: abottoms-coder +Date: Wed Mar 2 14:55:04 2022 -0500 + + removing fake code + +commit e26206c9766f6c640c9781ee6323249a562ab624 +Author: abottoms-coder +Date: Wed Mar 2 14:50:14 2022 -0500 + + get rid of underscore in terry/main + +commit a7abf5aad04338b184f12f72a772a6779b88612c +Author: abottoms-coder +Date: Wed Mar 2 14:48:00 2022 -0500 + + Slowing down + +commit 083174d6bb00a241c01e139b5aeae4ce80084495 +Author: abottoms-coder +Date: Wed Mar 2 14:43:04 2022 -0500 + + trying with label + +commit 7d226b6615084b0ccbb15463858509b11908ce95 +Author: abottoms-coder +Date: Wed Mar 2 14:33:42 2022 -0500 + + less escapes + +commit 7eba60555de2e3a27b0947b21abecbd6613b5bce +Author: abottoms-coder +Date: Wed Mar 2 14:32:45 2022 -0500 + + syntax for interpolating var into string for terry + +commit fdd715eefb0fb9bbd03f78485914f3c0ca908c4c +Author: abottoms-coder +Date: Wed Mar 2 14:29:43 2022 -0500 + + workaround for commiting fastest + +commit e0540a2d17b7cb64e1b2cc61a4b8269087ffc0f7 +Author: abottoms-coder +Date: Wed Mar 2 14:28:37 2022 -0500 + + workaround for commiting fasterer + +commit 67044f008cb7ba755a7e9fd5a11f974bf0df01ee +Author: abottoms-coder +Date: Wed Mar 2 14:27:53 2022 -0500 + + workaround for commiting faster + +commit cafa784469b795ca2484da124c5350d03b40bd9d +Author: abottoms-coder +Date: Wed Mar 2 14:25:06 2022 -0500 + + First stab w/ Terraform + +commit bd721f22d8ab00665822dc8b7ec5a191f62f8635 +Merge: a710af2c1 e82d905f0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 2 13:49:21 2022 -0500 + + Merge pull request #1669 from raft-tech/sprint-summary-41 + + Create sprint-41-summary.md + +commit e82d905f0f9d7974c0fbd584b92ab198728df592 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Mar 2 13:36:47 2022 -0500 + + Create sprint-41-summary.md + +commit f673d7993db88b85946e9fc38bd3c4961fb4d483 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 12:13:38 2022 -0500 + + add one nontdp url + +commit 5edac20e05a443caa19c14502d8b4d3984fd0106 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 10:17:36 2022 -0500 + + remove addl urls to check root issues of exit 5 + +commit 28b52acf6c6c72f6b40a8a51d477f3c6738e724d +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 09:54:12 2022 -0500 + + fix tabs + +commit 61e7605b8ea6fe085afa944e5346becef3a1f89c +Merge: 9a816ba6e 5aba79dee +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 09:36:29 2022 -0500 + + Merge branch 'feat/1534-updating-to-latest-zaproxy' of https://github.com/raft-tech/TANF-app into feat/1534-updating-to-latest-zaproxy + +commit 9a816ba6eba07151579b6e327de58e17c9a14354 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 09:35:25 2022 -0500 + + replaced spaces with tabs + +commit 5aba79deec11ad6cea5a708567ba3f96fe7c1fd6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 09:24:48 2022 -0500 + + Update zap.conf + + removing blank line + +commit 182cdcec663ef0463d55f44beb94000c923e743a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 08:51:09 2022 -0500 + + Update config.yml + + run job twice per hour + +commit c77da1f1fdb1104999fc764ea9e267d301c69e1f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 08:43:22 2022 -0500 + + Update config.yml + + run every hour at 15 after + +commit f1a8366f58b321bd35abbd7e9197a0610bc89320 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 08:40:50 2022 -0500 + + testing if adding nontdp urls to zap config will exclude from rpt + +commit 7932780cf2faf97ffc6df2955eb9a4798c34cd77 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 2 08:36:00 2022 -0500 + + increasing frequency of job to every hour + +commit f766debde8e4847db86e239ae82a43ef60f55289 +Merge: 586fe2238 a710af2c1 +Author: Jorge Gonzalez +Date: Tue Mar 1 10:49:50 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1358-ocio-groups + +commit 586fe2238f1b45c8663ebf7c53f03de680e5874a +Author: Jorge Gonzalez +Date: Tue Mar 1 10:38:36 2022 -0500 + + fix: migration + +commit d22713a6ef2c4713b8622e21c93edc05831464ad +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 28 16:19:55 2022 -0500 + + Update config.yml + + increased owasp scan job timeout to 60min on remote branch. cron job will run twice a day. + +commit a710af2c1035996cfe006a5e6160dd08231a6e37 +Merge: 3475687f0 d024c46a5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 14:48:34 2022 -0500 + + Merge pull request #1663 from raft-tech/valcollignon-patch-1 + + Update sprint-40-summary.md + +commit 0c5befbb8883347b8da1984e09e35ac56f8bb962 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 28 18:57:39 2022 +0000 + + Bump history from 5.2.0 to 5.3.0 in /tdrs-frontend + + Bumps [history](https://github.com/remix-run/history) from 5.2.0 to 5.3.0. + - [Release notes](https://github.com/remix-run/history/releases) + - [Commits](https://github.com/remix-run/history/compare/v5.2.0...v5.3.0) + + --- + updated-dependencies: + - dependency-name: history + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit d024c46a5d0266914bdafc0f32e08c0b623a5646 +Merge: 610072edc 3475687f0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 13:56:37 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 3475687f09c98aaeed1beb05df2b9b39e91c4820 +Merge: 2c20a917d a56387dbc +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 13:56:30 2022 -0500 + + Merge pull request #1633 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.26.0 + + Bump axios from 0.25.0 to 0.26.0 in /tdrs-frontend + +commit 610072edc4b78a4c424afb97371d507eab2078d1 +Merge: db80d0bd7 2c20a917d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 13:56:26 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit a56387dbc7aa7f3c5a43314bd99e68ea5b8079f8 +Merge: 68cec035b 2c20a917d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 12:24:56 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.26.0 + +commit 2c20a917d69b8e4a5f56e2311d5720ca7838f837 +Merge: e98c5fa41 425b91828 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 12:24:46 2022 -0500 + + Merge pull request #1660 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.9 + + Bump sass from 1.49.8 to 1.49.9 in /tdrs-frontend + +commit 43a79fdbf7b21b00553506f2b53f3229f8e7c839 +Author: Aaron Beavers +Date: Mon Feb 28 11:27:12 2022 -0500 + + upgrade django admin 508 to 0.1.5 + +commit a06e4aa077bec37e06b5f13691a107040e2eee63 +Merge: c7f47b0d8 e98c5fa41 +Author: Jorge Gonzalez +Date: Mon Feb 28 11:12:54 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests + +commit db80d0bd78494fe54eb474d492632c638bb0c9bc +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Mon Feb 28 10:36:13 2022 -0500 + + Update sprint-40-summary.md + +commit a4aa57cd516de3abc8b0fe2e3cd08df6be9bc70a +Merge: fe92ea4e6 e98c5fa41 +Author: Jorge Gonzalez +Date: Mon Feb 28 10:08:56 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1358-ocio-groups + + # Conflicts: + # tdrs-backend/tdpservice/users/models.py + +commit fe92ea4e6f5099a3246adc2b8eafb3d61ed3a440 +Author: Jorge Gonzalez +Date: Mon Feb 28 10:03:50 2022 -0500 + + feat: prevent ocio staff users from having region and stt + +commit 68cec035b81a18e57bc2317920c23da33bdc0369 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 28 14:44:25 2022 +0000 + + Bump axios from 0.25.0 to 0.26.0 in /tdrs-frontend + + Bumps [axios](https://github.com/axios/axios) from 0.25.0 to 0.26.0. + - [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.25.0...v0.26.0) + + --- + updated-dependencies: + - dependency-name: axios + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 425b91828a998943369e4192a5846a222c360805 +Merge: df7d5653d e98c5fa41 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 09:43:25 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.9 + +commit e98c5fa418af72b0bfeb1cc518cb4f2574b05252 +Merge: 4740ee4ec a0f22e3f7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 28 09:43:13 2022 -0500 + + Merge pull request #1661 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.10.0 + + Bump eslint from 8.9.0 to 8.10.0 in /tdrs-frontend + +commit a0f22e3f7b950e012fd4976d793863ed98c387cc +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 28 06:12:48 2022 +0000 + + Bump eslint from 8.9.0 to 8.10.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.9.0 to 8.10.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.9.0...v8.10.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit d133784d4415a443ee6c06e9fa5da26af64a00ac +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 25 14:25:05 2022 -0500 + + Update docker-compose.yml + +commit df7d5653d304dcdf03339875c56d73aed538fb48 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Feb 25 06:19:44 2022 +0000 + + Bump sass from 1.49.8 to 1.49.9 in /tdrs-frontend + + Bumps [sass](https://github.com/sass/dart-sass) from 1.49.8 to 1.49.9. + - [Release notes](https://github.com/sass/dart-sass/releases) + - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) + - [Commits](https://github.com/sass/dart-sass/compare/1.49.8...1.49.9) + + --- + updated-dependencies: + - dependency-name: sass + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 5b1b86be5eef400b201be7d05eb0a2cc21df59ed +Author: abottoms-coder +Date: Thu Feb 24 17:35:14 2022 -0500 + + Reverting terraform changes, commenting in bad practices + +commit 699ac98f0e4d807b34ae5b74213745beed21e640 +Author: abottoms-coder +Date: Thu Feb 24 17:32:23 2022 -0500 + + Third attempt + +commit 77bd4b56b1771bd1ef030ac0e6edbb5948aac3ce +Author: abottoms-coder +Date: Thu Feb 24 17:28:39 2022 -0500 + + Attempt #2 on getting terraform to create my database dynamically. + +commit d5c0727b40445d29bbca073ab6768347a96e33c4 +Author: abottoms-coder +Date: Thu Feb 24 16:38:57 2022 -0500 + + Attempting to throw a parameter into terraform and create the named DB through it. + +commit c7f47b0d858053b0daf5a808b9b53c279e6c76f8 +Merge: 5495ecb49 4740ee4ec +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Thu Feb 24 12:13:34 2022 -0800 + + Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests + +commit 830b3c980331a930ae066a5ab89f3c0cf40ad1bf +Author: abottoms-coder +Date: Thu Feb 24 13:12:39 2022 -0500 + + reverting sqlcreate in gunicorn + +commit 57cd9591f9b5663142956a153a12aa22f12c5d9f +Author: abottoms-coder +Date: Thu Feb 24 11:43:42 2022 -0500 + + Cleanup of old db_name code + +commit 34d0c72255d288c556abc75ae39fa5fc936923e4 +Author: abottoms-coder +Date: Thu Feb 24 11:42:51 2022 -0500 + + Improvement needed, but have automated database creation via our deploy pipelines and have setup connection within cloudgov.py settings. + +commit 7a1f4ab97fc8d6c6b1f2e9333dcd312372b322f3 +Author: abottoms-coder +Date: Thu Feb 24 09:54:44 2022 -0500 + + First stab at automation of database creation upon startup. I could call this ticket done right now if I just manually created them when we spun up the rds instance. + +commit 5495ecb493e527eb28a776a4d8259a432d282048 +Author: raftmsohani +Date: Thu Feb 24 05:26:19 2022 -0800 + + 1540: Added dot to docstring for TestLoginParam class + +commit 54e9423ea5fd7bd978b7f440c9fe3b8221c79c52 +Author: raftmsohani +Date: Thu Feb 24 05:17:29 2022 -0800 + + 1540: Added docstring for TestLoginParam class + +commit f5431ec0493e594ac49734b9ef1b5a3061e082f2 +Author: raftmsohani +Date: Thu Feb 24 05:07:47 2022 -0800 + + 1540: Removed blank lines after function docstring + +commit a605a9a2ba18a3ac6aaab69a7705080e01643fcd +Author: raftmsohani +Date: Thu Feb 24 04:52:33 2022 -0800 + + 1540: Removed excessive lines to pass circleci + +commit d3d67caca63b98951167a133b75c6f23d6879791 +Author: raftmsohani +Date: Thu Feb 24 04:33:32 2022 -0800 + + 1540: Removed unused variables to pass circleci + +commit 50d90c0e6bd6596460be633f9097ef5e67c31f07 +Author: raftmsohani +Date: Wed Feb 23 10:58:46 2022 -0800 + + 1540: Added mock to pass circleci + +commit 4740ee4ec3d4aee4d77585f523b4fa3abf7c6388 +Merge: 717edd4f8 0aa063664 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 23 11:50:32 2022 -0500 + + Merge pull request #1656 from raft-tech/revert-1635-deps/security-vulnerabilities-django-ipython + + Revert "Bump Django and ipython" + +commit 0aa0636646655a7b8349dce79d97409093104853 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 23 11:05:35 2022 -0500 + + Revert "Bump Django and ipython" + +commit d33e27a51a9126dd0cf22c8a69b447a8db4110ab +Author: abottoms-coder +Date: Wed Feb 23 10:49:35 2022 -0500 + + Received 2to3 error deploying to buildpack, trying to downgrade to avoid + +commit b3c4a354c60cd7675d696f69153feb4ede76f714 +Merge: 01d29a4bc 717edd4f8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 23 09:51:44 2022 -0500 + + Merge branch 'raft-tdp-main' into local-dockerfile + +commit 717edd4f888471e0445d4c9f1f4557d27b01c18c +Merge: ae4900528 e6a65dce3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 23 09:40:33 2022 -0500 + + Merge pull request #1635 from raft-tech/deps/security-vulnerabilities-django-ipython + + Bump Django and ipython + +commit e6a65dce3bb884030f6aaa7ba7a145b3b3b8d476 +Merge: 666a2bd82 ae4900528 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 23 09:29:30 2022 -0500 + + Merge branch 'raft-tdp-main' into deps/security-vulnerabilities-django-ipython + +commit ae4900528d8887741adf84e6b39435f4851f3d1d +Merge: 3ff068373 d79468135 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 23 09:25:03 2022 -0500 + + Merge pull request #1654 from raft-tech/hotfix/a11y-env-migration + + Tweaking migration and shell script for backend vars + +commit ab8af03a69e27e4495dd4d9e82a36e848481bec9 +Author: raftmsohani +Date: Wed Feb 23 05:39:13 2022 -0800 + + 1540: Cleaned parametrization + +commit d7946813539747b7fe11d7d9f30efa79235c81cf +Merge: 04c907601 3ff068373 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 17:00:36 2022 -0500 + + Merge branch 'raft-tdp-main' into hotfix/a11y-env-migration + +commit 666a2bd82e5cfe51e37fe7e609327399777e2b04 +Merge: 2a8be27f3 3ff068373 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 16:24:43 2022 -0500 + + Merge branch 'raft-tdp-main' into deps/security-vulnerabilities-django-ipython + +commit 04c907601efbc0ba1fbbd5b7b50b6efb3e7149dd +Author: abottoms-coder +Date: Tue Feb 22 16:18:21 2022 -0500 + + Incorporation types per Aaaron + +commit a2f6d5e961633132f27310bcfc6b96d62b6c2994 +Author: abottoms-coder +Date: Tue Feb 22 16:00:03 2022 -0500 + + Importing exception + +commit d5a741f796019d383fd404e9d75e0ad26da50d55 +Author: abottoms-coder +Date: Tue Feb 22 15:36:14 2022 -0500 + + Tweaking migration and shell script for backend vars + +commit 3ff06837319081f8e3c8468932465b96c4252ee0 +Merge: dd62a0e2a 4cadb3203 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 15:07:24 2022 -0500 + + Merge pull request #1636 from raft-tech/feat/1567-add-tabletop-checkbox + + Add table top section to pr template + +commit 4cadb3203c560a5586f5fd2a3528d00e1c4d5b67 +Merge: eee8e87eb dd62a0e2a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 14:53:22 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1567-add-tabletop-checkbox + +commit dd62a0e2a873c0627f5d86ee5c962e0adcc63de4 +Merge: 0aff933b1 f2765ff6a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 09:41:57 2022 -0500 + + Merge pull request #1652 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/url-parse-1.5.9 + + Bump url-parse from 1.5.4 to 1.5.9 in /tdrs-frontend + +commit f2765ff6add6c5487aac4dbb4941153a8f6efa0a +Merge: a1562d429 0aff933b1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 09:30:53 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/url-parse-1.5.9 + +commit 0aff933b1a0d0e6b854062268d45df90fb3bfff5 +Merge: ebed4e06d 3ba9898a9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 09:30:13 2022 -0500 + + Merge pull request #1651 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-config-prettier-8.4.0 + + Bump eslint-config-prettier from 8.3.0 to 8.4.0 in /tdrs-frontend + +commit a1562d429a4ad52571711e5e5b53518cb8455c5e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Feb 22 14:20:13 2022 +0000 + + Bump url-parse from 1.5.4 to 1.5.9 in /tdrs-frontend + + Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.4 to 1.5.9. + - [Release notes](https://github.com/unshiftio/url-parse/releases) + - [Commits](https://github.com/unshiftio/url-parse/compare/1.5.4...1.5.9) + + --- + updated-dependencies: + - dependency-name: url-parse + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit 3ba9898a9a018d5a99e917b161df2f57412aa259 +Merge: 75a363571 ebed4e06d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 09:19:01 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-config-prettier-8.4.0 + +commit ebed4e06d3c422d356e9d431d3d77924d78fc57b +Merge: ee8c699ce 19bbae00a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 22 09:18:51 2022 -0500 + + Merge pull request #1650 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/follow-redirects-1.14.9 + + Bump follow-redirects from 1.14.7 to 1.14.9 in /tdrs-frontend + +commit 75a363571874a32bbd54822e9fa9248814ca456d +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 21 06:13:30 2022 +0000 + + Bump eslint-config-prettier from 8.3.0 to 8.4.0 in /tdrs-frontend + + Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.3.0 to 8.4.0. + - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) + - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v8.3.0...v8.4.0) + + --- + updated-dependencies: + - dependency-name: eslint-config-prettier + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 19bbae00af045ea9a5dce9fac90e63a657ddfaf4 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Feb 18 21:17:42 2022 +0000 + + Bump follow-redirects from 1.14.7 to 1.14.9 in /tdrs-frontend + + Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.9. + - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) + - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.14.9) + + --- + updated-dependencies: + - dependency-name: follow-redirects + dependency-type: indirect + ... + + Signed-off-by: dependabot[bot] + +commit ee8c699ce93a9cfa36150f56797e1a67da24ed29 +Merge: d2ba59d8c 0f8b5ffd4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 18 16:15:30 2022 -0500 + + Merge pull request #1571 from raft-tech/feat/1495-organized-first-experience-profile + + feat(1495): As UX lead, I want the user to have a organized first experience for the Profile page + +commit 0f8b5ffd4b806d3c8b7c70a8719d03def0563164 +Merge: d199e6a12 d2ba59d8c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 18 15:51:18 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit d2ba59d8ce1a05b5608afe765f9bbb9b3934b2fa +Merge: 43c55ca51 7d10b2389 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 18 15:51:03 2022 -0500 + + Merge pull request #1644 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.8 + + Bump sass from 1.49.7 to 1.49.8 in /tdrs-frontend + +commit 51faf10014feb8e553d77b85aa94ec5e052574f9 +Author: abottoms-coder +Date: Fri Feb 18 12:20:22 2022 -0500 + + Changes for skipping clamav locally, also reverted version of compose and added an alias + +commit 01d29a4bc47b12da9330dcf3f0ca2aab03e5dd6e +Author: Jorge Gonzalez +Date: Fri Feb 18 11:09:01 2022 -0500 + + tweak dockerfiles + +commit 13118ca8616a8947ecfe684541f783db043150c7 +Author: Jorge Gonzalez +Date: Fri Feb 18 10:58:11 2022 -0500 + + add proper local dockerfiles + +commit 0583c383aee1794d09e5d47abd89ad755a8b784a +Author: Jorge Gonzalez +Date: Fri Feb 18 10:51:15 2022 -0500 + + add proper local dockerfiles + +commit ab01cb2097d66103440c13613f5230132bc8a930 +Author: raftmsohani +Date: Fri Feb 18 07:27:31 2022 -0800 + + 1540: Finished adding all the parametrized tests. Needs cleanup + +commit d199e6a12f7ac5c57238beeba78ff2ca23080e98 +Merge: 24511c8f8 fc41ee4bc +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 18 09:06:13 2022 -0500 + + Merge pull request #1572 from raft-tech/feat/1387-locations + + feat(1387): As a System Admin, I should not be able to set conflicting STT and region attributes for a user + +commit 7d10b23897a5613cdabe86c0aaa8b5de1b76d705 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Feb 18 06:13:21 2022 +0000 + + Bump sass from 1.49.7 to 1.49.8 in /tdrs-frontend + + Bumps [sass](https://github.com/sass/dart-sass) from 1.49.7 to 1.49.8. + - [Release notes](https://github.com/sass/dart-sass/releases) + - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) + - [Commits](https://github.com/sass/dart-sass/compare/1.49.7...1.49.8) + + --- + updated-dependencies: + - dependency-name: sass + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 6c1193a491d60b91843c0033b573caf34aa57b3c +Author: raftmsohani +Date: Thu Feb 17 19:47:44 2022 -0800 + + 1540: Added testsusing getfixturevalue method + +commit 74814298ab2ec7b88a6f324a1a49b6e1e9ee3cc4 +Author: Jorge Gonzalez +Date: Thu Feb 17 17:20:20 2022 -0500 + + feat: create default ocio group with read-only permissions to + +commit 24511c8f8bce7d6b62e1e3f027883e950ebd4a98 +Merge: 7f2c1c0b7 43c55ca51 +Author: Jorge Gonzalez +Date: Thu Feb 17 10:12:58 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 43c55ca51c421b47ff26bdcc8552700b955eb0bb +Merge: 6ab4e0f8b a10588584 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 16 13:48:02 2022 -0500 + + Merge pull request #1639 from raft-tech/valcollignon-patch-1 + + Create sprint-40-summary.md + +commit a10588584bffe40236d545a158143234eb1617c1 +Merge: 2321906c3 6ab4e0f8b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 16 13:38:23 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit fc41ee4bcf658497a82f0d98884fef614c2eefe4 +Merge: 352c26e95 6ab4e0f8b +Author: Aaron Beavers +Date: Wed Feb 16 13:31:23 2022 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1387-locations + +commit 6ab4e0f8bfd225c7dbccf99cb03ccaa01a39b8d2 +Merge: ea5d34868 4733665ad +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 16 10:03:41 2022 -0500 + + Merge pull request #1638 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.3 + + Bump @testing-library/react from 12.1.2 to 12.1.3 in /tdrs-frontend + +commit 2321906c3de37b8c1f1c54221b7f34d4dd46d8a4 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Feb 16 09:54:03 2022 -0500 + + Create sprint-40-summary.md + +commit eee8e87ebd626317b03736bd9e42819dd13cc0ff +Author: Aaron Beavers +Date: Wed Feb 16 09:51:45 2022 -0500 + + Update .github/pull_request_template.md + +commit 4733665ad70adef0a805582aef3cef2ce71951f5 +Merge: 0fd026e82 ea5d34868 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 16 09:50:48 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.3 + +commit ea5d34868fe743affe8bc9cdd77fc124d48a70c7 +Merge: 07e93c577 c54ed2b29 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 16 09:50:34 2022 -0500 + + Merge pull request #1632 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.9.0 + + Bump eslint from 8.8.0 to 8.9.0 in /tdrs-frontend + +commit 0fd026e824d7d4274ab4a345cc421e3051864c71 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Feb 16 06:09:21 2022 +0000 + + Bump @testing-library/react from 12.1.2 to 12.1.3 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.2 to 12.1.3. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.2...v12.1.3) + + --- + updated-dependencies: + - dependency-name: "@testing-library/react" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 9109ef338b2af1ea8394fb806eb61f3b9f1a80e0 +Author: Aaron Beavers +Date: Mon Feb 14 16:57:27 2022 -0500 + + Add table top section to pr template + +commit 352c26e95f17ae5e38127e0d29398cb87c052ce4 +Author: Aaron Beavers +Date: Mon Feb 14 11:28:13 2022 -0500 + + Cleaned up remove federal gov stt migration + +commit 2a8be27f3814332c396c1acd1c82927265acdef0 +Author: abottoms-coder +Date: Mon Feb 14 11:21:48 2022 -0500 + + Updated pipfile + +commit c54ed2b29fb8277904cd7dac51ef1e20b0279f0a +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 14 15:24:58 2022 +0000 + + Bump eslint from 8.8.0 to 8.9.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.8.0 to 8.9.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.8.0...v8.9.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 07e93c577bbe03958d3456a802740d522718a6e9 +Merge: dd24e1ab0 1a36ff317 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 14 10:23:36 2022 -0500 + + Merge pull request #1617 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-6.0.0 + + Bump @fortawesome/free-solid-svg-icons from 5.15.4 to 6.0.0 in /tdrs-frontend + +commit 1a36ff3171a70688730848bef032676b11b59e16 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Feb 14 14:52:27 2022 +0000 + + Bump @fortawesome/free-solid-svg-icons in /tdrs-frontend + + Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 5.15.4 to 6.0.0. + - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) + - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/5.15.4...6.0.0) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/free-solid-svg-icons" + dependency-type: direct:production + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit dd24e1ab0f3789a6af7897cce902e4286f800935 +Merge: f2a4abf2b 0539fae06 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 14 09:51:20 2022 -0500 + + Merge pull request #1618 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.3.0 + + Bump @fortawesome/fontawesome-svg-core from 1.2.36 to 1.3.0 in /tdrs-frontend + +commit 27ddf4dec3aaf8bf26dcea89f7b3d9b84a9f1b51 +Merge: fbd1c918e f2a4abf2b +Author: Aaron Beavers +Date: Mon Feb 14 09:40:35 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1387-locations + +commit b5ec645ad1cb3496d0822288418c863bce13c3aa +Author: raftmsohani +Date: Mon Feb 14 05:06:27 2022 -0800 + + 1540: Amended "test_login_with_bad_nonce_and_state" to dynamically add fixtures. Added fixtures was causing the tests to fail previously + +commit 7f2c1c0b7473225244ebb99dda4e9e9450abade5 +Merge: d0664691b f2a4abf2b +Author: Jorge Gonzalez +Date: Fri Feb 11 10:36:07 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 0539fae06508dc2d731f0192d19668ee9fcb11a8 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Feb 11 14:18:25 2022 +0000 + + Bump @fortawesome/fontawesome-svg-core in /tdrs-frontend + + Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.2.36 to 1.3.0. + - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) + - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/Font-Awesome/commits) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/fontawesome-svg-core" + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit f2a4abf2b83d956bf74e3963c29b6a15ef5c8770 +Merge: f6ad08624 4f2017ca7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 11 09:17:07 2022 -0500 + + Merge pull request #1625 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/wait-on-6.0.1 + + Bump wait-on from 6.0.0 to 6.0.1 in /tdrs-frontend + +commit 4f2017ca7ce15ada8c2f0298d87c513fa8a30f19 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Feb 11 06:23:00 2022 +0000 + + Bump wait-on from 6.0.0 to 6.0.1 in /tdrs-frontend + + Bumps [wait-on](https://github.com/jeffbski/wait-on) from 6.0.0 to 6.0.1. + - [Release notes](https://github.com/jeffbski/wait-on/releases) + - [Commits](https://github.com/jeffbski/wait-on/compare/v6.0.0...v6.0.1) + + --- + updated-dependencies: + - dependency-name: wait-on + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit fbd1c918e1ae789adc3071f00b6dcad33d663a99 +Author: Aaron Beavers +Date: Thu Feb 10 15:02:41 2022 -0500 + + simplify location migration + +commit 01f4c729f47573674a8630292b7bc499829fe202 +Author: Aaron Beavers +Date: Thu Feb 10 15:02:29 2022 -0500 + + simplify location migration + +commit 275ccca2e6cbd87ff43035916463c76b5ac8bcdc +Author: raftmsohani +Date: Thu Feb 10 11:36:47 2022 -0800 + + 1540: Added parametrized version of req_factory + +commit 15218329797c5a969fa01560d56642ba31d491b1 +Author: Aaron Beavers +Date: Thu Feb 10 12:45:41 2022 -0500 + + Fail gunicorn if any steps fail + +commit 62a6d5924a5a552f5ed4fb41d545f460d64eacbd +Author: raftmsohani +Date: Thu Feb 10 09:05:37 2022 -0800 + + 1540: Removed unparametrized "test_login_with_bad_nonce_and_state" tests + +commit d0664691b634bbe315a80d2e1a2db396b5cdaa97 +Merge: 2e4f7164d f6ad08624 +Author: Jorge Gonzalez +Date: Thu Feb 10 11:36:21 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit f6ad08624e02823d5e57d9866fe2a508f2e2a453 +Merge: ed8871c29 3c9b1d86c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 10 10:26:58 2022 -0500 + + Merge pull request #1622 from raft-tech/abottoms-coder-patch-1 + + Removing redundant request for ACs + +commit 3c9b1d86c376d677d831b9a98d9fa12ee6c82477 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 10 10:00:30 2022 -0500 + + Removing redundant request for ACs + +commit efddfff5149eb2b67e1b9102bd6e36f29e948868 +Author: Aaron Beavers +Date: Thu Feb 10 09:57:40 2022 -0500 + + remove logging + +commit 9d550559c8b80d79ef4194c8aa5863388a02c2dc +Author: raftmsohani +Date: Thu Feb 10 06:14:45 2022 -0800 + + 1540: CircleCI failed: Removed blank EOF + +commit 97e5fab1727e43dd01bfa704d14cc24fa452588f +Author: raftmsohani +Date: Thu Feb 10 06:03:45 2022 -0800 + + 1540: Parametrized LoginDotGov and AMS for test_login_with_bad_nonce_and_state + +commit b1438fab6cfda189ca18ddf285ebb8b323e39a77 +Author: raftmsohani +Date: Wed Feb 9 15:25:26 2022 -0800 + + 1540: parametrized fixture. Have to add fixtures for AMS test to be able to use same fixture + +commit 067aba4aabdd81ca335eada4105570abb37b018c +Author: Aaron Beavers +Date: Wed Feb 9 15:55:04 2022 -0500 + + Tests pass + +commit 23989c99e3bbd33a01baf79717a6b0af69802bfa +Author: Aaron Beavers +Date: Wed Feb 9 15:18:10 2022 -0500 + + Use safe access operator + +commit 2e4f7164d788388708c4fcdd6b0081483ca9518f +Author: Jorge Gonzalez +Date: Tue Feb 8 16:32:19 2022 -0500 + + feat: add a11y improvement + +commit e2b960cbe70851061669684f87e15937883da20f +Author: Aaron Beavers +Date: Tue Feb 8 16:43:55 2022 -0500 + + Initial work on frontend + +commit 6595c74dd766e966625477b6f450a1e10436338c +Author: Aaron Beavers +Date: Tue Feb 8 16:43:46 2022 -0500 + + Migrations naming conflicts resolved + +commit 4d669225f865b35ffb1b938a70e420367d566a45 +Author: Aaron Beavers +Date: Tue Feb 8 15:48:19 2022 -0500 + + resolve serializer conflict + +commit 111fab59ed8118eb2e3c98fd747503b22987b130 +Merge: 72af088a4 2a644a679 +Author: Aaron Beavers +Date: Tue Feb 8 15:40:44 2022 -0500 + + Merge remote-tracking branch 'origin/feat/1495-organized-first-experience-profile' into feat/1387-locations + +commit 72af088a430f69359c3f8ade74118c991924c3c3 +Author: Aaron Beavers +Date: Tue Feb 8 15:25:40 2022 -0500 + + Remove federal territory + +commit 70312a755d578c6fb37a2263b64f868704c09820 +Author: Aaron Beavers +Date: Tue Feb 8 15:25:26 2022 -0500 + + Remove dev stuff + +commit 2a644a679e34b2f596a5efe86936bb3f7d04ed16 +Merge: d84423019 ed8871c29 +Author: Jorge Gonzalez +Date: Tue Feb 8 14:58:19 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit ed8871c29a0ac3470e1ce6b7407033082cd88987 +Merge: 41c40f417 92b0c297c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 8 14:54:05 2022 -0500 + + Merge pull request #1616 from raft-tech/techdocs-updates-1526 + + Issue 1526: Updates to tech doc subdir + +commit 92b0c297c5d010fc4d55b122f40e89bd1d35b84c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Feb 8 12:21:28 2022 -0500 + + Update README.md + + added terraform ref link + +commit 7b4ab25cbd3e92061a4113e04061cd2ed41bd7ca +Author: abottoms-coder +Date: Tue Feb 8 09:12:49 2022 -0500 + + updates to unit-tests.md with testing commands + +commit 54a994c7611352f14f7171e0eee5383d5193cdde +Author: Aaron Beavers +Date: Mon Feb 7 16:31:11 2022 -0500 + + Syntax error + +commit d8442301903900d1165ae8a6d151a84a955de051 +Author: Jorge Gonzalez +Date: Mon Feb 7 15:39:00 2022 -0500 + + feat: add various test fixes and a11y improvements + +commit 61b1815b157daefb0baf0090e812f383367667c4 +Author: Aaron Beavers +Date: Mon Feb 7 15:55:51 2022 -0500 + + add a condition to migration + +commit f1f776b2c07a2a5ca8a1000579a0de4cccffc322 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 12:18:10 2022 -0500 + + update ref links in main readme + +commit 2904f8694c4cf25ebc4e206b15a5198ecab5dda2 +Merge: 4ff2f798c 41c40f417 +Author: Aaron Beavers +Date: Mon Feb 7 11:22:32 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1387-locations + +commit 6780472d10c68bce4f2a214be32c1b95a5652703 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 10:37:00 2022 -0500 + + del obsolete docs/ readme + +commit 20d29bcf4d6eb03a2d3a44bb354f3fd241f8e782 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 10:33:10 2022 -0500 + + ref raft a11y guidelines in hww expectations doc + +commit df9601ce73d149377a9b5b418f8a2afdc774729b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 10:26:46 2022 -0500 + + reference commands.sh in unit-tests md + +commit edc41f85bab4e7f7fa6c102cd3931d5112a7ee68 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 10:12:26 2022 -0500 + + renamed rotation doc + +commit b651096432643d78cdb802a6b5ed5caa3ae1aef2 +Merge: 39759abd2 41c40f417 +Author: Jorge Gonzalez +Date: Mon Feb 7 09:56:08 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit b7c2aa7b5e9aa25752b4749216a66710f8b0ed80 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 09:55:09 2022 -0500 + + replace obsolete gitflow diagram + +commit ef86f0afebd63b6b8fa71f5841d53cad840046ef +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 09:51:15 2022 -0500 + + del obsolete tech docs + +commit 2aa7ebd3b82ffcadfb096cf819f1ee78eb6db32b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 09:48:11 2022 -0500 + + promote database/ docs one level up and del database/ + +commit e0463ab1a986b51f6190a5a4efb013051de0d2f1 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 7 09:45:44 2022 -0500 + + move data-downloads doc into adr013 + +commit 41c40f4172e89cb6058568187a79bd5017a0d9ad +Merge: 4eef5d22f 81e0fd79f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Feb 7 09:27:06 2022 -0500 + + Merge pull request #1615 from raft-tech/feat/1526-tech-doc-readme + + Create README.md + +commit 39759abd2846d04bf220602483197b70014cb483 +Merge: f757f6056 4eef5d22f +Author: Jorge Gonzalez +Date: Fri Feb 4 14:53:51 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1495-organized-first-experience-profile + +commit 81e0fd79facd104f2c280f4476262118c433e873 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 4 15:30:59 2022 -0500 + + Update README.md + +commit 024fe88fe30daa436ef48e05c987d6ee31635142 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 4 15:27:40 2022 -0500 + + Update README.md + +commit 7c5ab9c0a2ffd59aa639c883d3d3094cc0506393 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 4 15:25:05 2022 -0500 + + Create README.md + +commit 4eef5d22f16fcb9f7fdd49448ff96c4dd438ddf6 +Merge: c660b8125 197110a4a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Feb 4 12:09:14 2022 -0500 + + Merge pull request #1506 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 + + refactor(1576): Upgrade react-router packages and refactor related components + +commit 197110a4aff48ac420bf0d5755a5f3f37aa0cbcf +Merge: 72273256c c660b8125 +Author: Jorge Gonzalez +Date: Fri Feb 4 11:53:27 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 + +commit f757f605678c2c30b9899e539e7c6323e4e2b0e5 +Author: Jorge Gonzalez +Date: Fri Feb 4 10:34:03 2022 -0500 + + fix: assign stt when access request is made + +commit e92d3f24800a31b5264b962957f8aecf655f92b4 +Merge: 1a9188586 c660b8125 +Author: Jorge Gonzalez +Date: Thu Feb 3 15:25:04 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit c660b8125163b5419f4d228b70f5c251884ba90d +Merge: 14bc7c248 6f2e9fec2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 3 14:47:16 2022 -0500 + + Merge pull request #1611 from raft-tech/abottoms-coder-patch-1 + + Update 009-git-workflow.md + +commit 6f2e9fec20e53cbd28c31e64a2a5b86742c7d8d2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 3 13:47:52 2022 -0500 + + Update 009-git-workflow.md + +commit 1a91885867d12964a10fb0068b74c7f8a79e9567 +Merge: 2b577dab9 14bc7c248 +Author: Jorge Gonzalez +Date: Thu Feb 3 11:43:31 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1495-organized-first-experience-profile + +commit 72273256ca761dccb6a474e5a657955fd356e390 +Merge: 1790b4022 14bc7c248 +Author: Jorge Gonzalez +Date: Thu Feb 3 11:38:09 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 + +commit 14bc7c248964be28f88e2f61cf5098323a0284a2 +Merge: 47fe9cdf2 27761cd77 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 3 09:36:10 2022 -0500 + + Merge pull request #1608 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.2 + + Bump @testing-library/jest-dom from 5.16.1 to 5.16.2 in /tdrs-frontend + +commit 27761cd773130ec5b43d9c66333e6b22d9e151fb +Merge: bbe731091 47fe9cdf2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 3 09:13:38 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.2 + +commit 47fe9cdf2c84d32b3e323988405eb9e8a09aef95 +Merge: d9fbbff98 e24b3b135 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 3 09:13:26 2022 -0500 + + Merge pull request #1583 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 + + Bump axios from 0.24.0 to 0.25.0 in /tdrs-frontend + +commit e24b3b13594c313e6eebf9e9840906f68ad77709 +Merge: 76dd1510b d9fbbff98 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Feb 3 09:07:06 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 + +commit bbe731091a10963f3e519258412680997d5bafa7 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Feb 3 06:14:23 2022 +0000 + + Bump @testing-library/jest-dom from 5.16.1 to 5.16.2 in /tdrs-frontend + + Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.16.1 to 5.16.2. + - [Release notes](https://github.com/testing-library/jest-dom/releases) + - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/jest-dom/compare/v5.16.1...v5.16.2) + + --- + updated-dependencies: + - dependency-name: "@testing-library/jest-dom" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit d9fbbff9841761fda8770e7859c3dd74fb290c54 +Merge: 6f272b6e1 9ab34d96b +Author: Aaron Beavers +Date: Wed Feb 2 16:49:57 2022 -0500 + + Merge pull request #1607 from raft-tech/hotfix/1596-script-name + + 1596 *PROJECT UPDATES* (PROMISE ITS THE LAST ONE GUYS) + +commit 9ab34d96b70f2abddf4acd40aaa7504fb85b5cbe +Author: Aaron Beavers +Date: Wed Feb 2 16:32:37 2022 -0500 + + *PROJECT UPDATES* + +commit 6f272b6e1d4ff830de78e0c5571a73f43720346c +Merge: 22d7118bd 5cef59c00 +Author: Aaron Beavers +Date: Wed Feb 2 16:10:50 2022 -0500 + + Merge pull request #1606 from raft-tech/hotfix/1596-script-name + + Hotfix/1596 script name + +commit 5cef59c00e33a20752e02495f91ff990cce5d2df +Author: Aaron Beavers +Date: Wed Feb 2 15:45:39 2022 -0500 + + use correct script name + +commit 95c18939c6dfd2b640063c341da226d4d178143f +Author: Aaron Beavers +Date: Wed Feb 2 15:45:27 2022 -0500 + + Update script variable names + +commit c12421e4b43af3c48e92dd4a33a130df8f4d25ac +Author: Aaron Beavers +Date: Wed Feb 2 15:44:49 2022 -0500 + + Rename folder + +commit 1790b40221173dd5f54bf4d24c7ed89fa5ba5712 +Merge: 23520fcfb 22d7118bd +Author: Jorge Gonzalez +Date: Wed Feb 2 14:19:26 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 + +commit 23520fcfbfff3a16cdf1bde0ac07bbf2ae32de3c +Author: Jorge Gonzalez +Date: Wed Feb 2 14:18:54 2022 -0500 + + test: fix EditProfile.test.js + +commit 5c54937ae86f591fa565e4243b37e8e9d9e101a0 +Author: Jorge Gonzalez +Date: Wed Feb 2 14:14:29 2022 -0500 + + test: fix LoginCallback.test.js + +commit 22d7118bdf16dcbdded2ebd12e11ebba0d46d852 +Merge: eb399533a e3b26f246 +Author: Aaron Beavers +Date: Wed Feb 2 14:09:38 2022 -0500 + + Merge pull request #1603 from raft-tech/feat/1596-change-product-update-site-domain + + Change domain from live-comms to product-updates + +commit e3b26f246f98df4444092c18919ebe2cab4e0816 +Author: Aaron Beavers +Date: Wed Feb 2 13:15:03 2022 -0500 + + update job name + +commit 347aaf7daccc19cd048bfc7526839e727b424bd9 +Author: Jorge Gonzalez +Date: Wed Feb 2 13:14:47 2022 -0500 + + test: fix SplashPage.test.js + +commit 19ead368f6c5c47c6d85fe625be0fd5cb7ffd492 +Author: Jorge Gonzalez +Date: Wed Feb 2 12:41:29 2022 -0500 + + test: fix privateroute test + +commit 5345c38b8e6e4b9326f85e861e1f5ba8bd92dfb7 +Author: Aaron Beavers +Date: Wed Feb 2 12:46:05 2022 -0500 + + Change domain + +commit 5f53cf31f92cc69f9476abcf36285a6cae90f9d0 +Merge: 2dd8a79d6 eb399533a +Author: Jorge Gonzalez +Date: Wed Feb 2 12:28:55 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 + +commit 76dd1510b9c89d3fb4e3eb22adeeb1a36003c86c +Merge: 389ebad0f eb399533a +Author: Jorge Gonzalez +Date: Wed Feb 2 12:14:42 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 + +commit 2b577dab98dafd963408bbf547bc2e85dac25545 +Merge: 4ce250b63 eb399533a +Author: Jorge Gonzalez +Date: Wed Feb 2 12:13:57 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit eb399533a0499803e1e4bdc13908638fde32cf15 +Merge: 0696b92f2 374ac49e1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Feb 2 12:12:29 2022 -0500 + + Merge pull request #1600 from raft-tech/bug/1170-session-before-login + + Hotfix/1170 Ensure user session is created after email is verified + +commit 374ac49e1159fdddee999314d7feecda293bdd25 +Merge: 1379ed0bc 0696b92f2 +Author: Jorge Gonzalez +Date: Wed Feb 2 11:09:40 2022 -0500 + + Merge branch 'raft-tdp-main' into bug/1170-session-before-login + +commit 4ce250b635a97454efe75769ac1b5928e3e07e61 +Author: Jorge Gonzalez +Date: Wed Feb 2 11:07:53 2022 -0500 + + test: remove dead tests + +commit 1379ed0bc7ed28a5858cac6a173d57ed7b010dd6 +Merge: 63c4f1e03 37296f57c +Author: abottoms-coder +Date: Wed Feb 2 11:01:54 2022 -0500 + + Merge branch 'bug/1170-session-before-login' of github.com:raft-tech/TANF-app into bug/1170-session-before-login + +commit 63c4f1e0350ef19e4a69567b109b8aee8dfaad71 +Author: abottoms-coder +Date: Wed Feb 2 11:01:37 2022 -0500 + + moving login_msg per commentary + +commit 216ee8e286e06ce24712122620f1335931571b06 +Author: Jorge Gonzalez +Date: Wed Feb 2 10:48:21 2022 -0500 + + test: improve expectation + +commit 8780d931f3784029f2f2dae6974076cd40947559 +Merge: 84c1f697e a7f76dd7e +Author: Jorge Gonzalez +Date: Wed Feb 2 10:38:59 2022 -0500 + + Merge remote-tracking branch 'origin/feat/1495-organized-first-experience-profile' into feat/1495-organized-first-experience-profile + +commit 84c1f697eef2d4376ad312e5b50fb28c648f0962 +Author: Jorge Gonzalez +Date: Wed Feb 2 10:38:53 2022 -0500 + + test: revert copy fix + +commit a7f76dd7ebe71483a9c5b345e875b70039ced9f0 +Merge: 5b54e8395 0696b92f2 +Author: Jorge Gonzalez +Date: Wed Feb 2 10:32:06 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 5b54e8395879ca001bfb123021a70a5971bf0641 +Author: Jorge Gonzalez +Date: Wed Feb 2 10:31:53 2022 -0500 + + test: add new Profile tests + +commit b31904998752c2d9b31b8bdc594498932b3095e8 +Author: Jorge Gonzalez +Date: Wed Feb 2 09:26:08 2022 -0500 + + refactor: home and profile components + +commit 66a8416c9f13274968dbfa774448ffb55bafa844 +Author: Jorge Gonzalez +Date: Wed Feb 2 09:20:29 2022 -0500 + + feat: tweak ams user behavior on profile page + +commit 389ebad0f894f80b37803d887716f57d9b03673f +Merge: 5de8e6d77 0696b92f2 +Author: Jorge Gonzalez +Date: Wed Feb 2 09:14:09 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 + +commit 0696b92f2de1f87e18eae56712bf20a3adb92d04 +Merge: 97560eb39 d4c01a030 +Author: Jorge Gonzalez +Date: Wed Feb 2 09:13:35 2022 -0500 + + Merge pull request #1601 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.7 + +commit 4ff2f798c7adb7473766142703299f16fba22ef1 +Merge: bb7e9bace 97560eb39 +Author: Aaron Beavers +Date: Wed Feb 2 08:50:42 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1387-locations + +commit d4c01a0304f169bca8d08265e931fad49023f469 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Feb 2 06:16:29 2022 +0000 + + Bump sass from 1.49.4 to 1.49.7 in /tdrs-frontend + + Bumps [sass](https://github.com/sass/dart-sass) from 1.49.4 to 1.49.7. + - [Release notes](https://github.com/sass/dart-sass/releases) + - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) + - [Commits](https://github.com/sass/dart-sass/compare/1.49.4...1.49.7) + + --- + updated-dependencies: + - dependency-name: sass + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 37296f57cba93017eb8f2ff06daa691e0bfa8916 +Merge: 4d507e653 97560eb39 +Author: Jorge Gonzalez +Date: Tue Feb 1 16:47:39 2022 -0500 + + Merge branch 'raft-tdp-main' into bug/1170-session-before-login + +commit 97560eb39885243e65420ce92f8d2a84b2aa5adc +Merge: 4cefeb444 78c7d3e2a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 16:20:46 2022 -0500 + + Merge pull request #1597 from raft-tech/1595-font-fixes-for-live-comms + + 1595 font fixes for live comms + +commit 78c7d3e2af41641dce0c39254e0d998130f5b20a +Merge: d0dced4fa 4cefeb444 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 15:15:25 2022 -0500 + + Merge branch 'raft-tdp-main' into 1595-font-fixes-for-live-comms + +commit 4cefeb4441901b271ec9b4f2d151f4ec61b3f7cd +Merge: 5bfd97f4d ecccbb332 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 15:15:11 2022 -0500 + + Merge pull request #1598 from raft-tech/valcollignon-patch-1 + + Create sprint-39-summary.md + +commit ecccbb332b583612f4a911ce57e61e70bc40ea01 +Merge: 5d38aa1ee 5bfd97f4d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 15:09:26 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 5bfd97f4d7eed4a952c63264a983d70103b438a2 +Merge: 139bae206 fa5b5403b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 15:09:12 2022 -0500 + + Merge pull request #1599 from raft-tech/valcollignon-patch-2 + + Update team-meetings.md + +commit 4d507e653e3096ca6365aaed416b20cd6518626f +Author: abottoms-coder +Date: Tue Feb 1 15:02:02 2022 -0500 + + Adapting to ensure verify_email() is fired before login_user() by refactoring handle_user() to only call login_user once at the end. + +commit cf078dec3469dfe732c5836efd126d4336b8b4d6 +Author: Jorge Gonzalez +Date: Tue Feb 1 15:00:31 2022 -0500 + + feat: fix profile banner behavior + +commit 511b904640af8d7a2b36e84de4374c98898e0828 +Author: Jorge Gonzalez +Date: Tue Feb 1 14:38:36 2022 -0500 + + test: fix previous Home tests + +commit fa5b5403be4903008e2e041f0900771d4f9c6216 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Feb 1 14:16:55 2022 -0500 + + Update team-meetings.md + +commit 09c8776809f79ec9ab76e1185ca3257549b59749 +Merge: bec15788d 139bae206 +Author: Jorge Gonzalez +Date: Tue Feb 1 13:59:20 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 5d38aa1ee9351bbb55767ad73544ee0f7e748a7c +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Feb 1 13:40:18 2022 -0500 + + Create sprint-39-summary.md + +commit d0dced4fa1c7eefc5e9f2c531cee6c0af407596e +Author: Miles Reiter +Date: Tue Feb 1 12:54:41 2022 -0500 + + Update readme to reflect name/upcoming route changes + +commit 76a930d3a49205a5ee15981a92a5a388d52a9319 +Author: Miles Reiter +Date: Tue Feb 1 12:49:16 2022 -0500 + + Fixes one more link, completes version bump + +commit 544235f00856a6bcb807ee28e67b2fddce02287d +Author: Miles Reiter +Date: Tue Feb 1 12:45:59 2022 -0500 + + Version bumps jqeury + + (Gets us up to 100% on best practices in a lighthouse audit) + +commit 0001944420dd391a3ba270d1b20bbbaeb8182893 +Author: Miles Reiter +Date: Tue Feb 1 12:30:54 2022 -0500 + + Adds missing fonts that cause 404s + +commit 5de8e6d77deb7fd1e5825597af151fa0a24cf26c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Feb 1 17:02:54 2022 +0000 + + Bump axios from 0.24.0 to 0.25.0 in /tdrs-frontend + + Bumps [axios](https://github.com/axios/axios) from 0.24.0 to 0.25.0. + - [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.24.0...v0.25.0) + + --- + updated-dependencies: + - dependency-name: axios + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 139bae2063755eca339900704b4b2e02c455fe28 +Merge: a70a4aa33 6f9bb4c4f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 12:01:44 2022 -0500 + + Merge pull request #1594 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.4 + + Bump sass from 1.49.0 to 1.49.4 in /tdrs-frontend + +commit bec15788dfd1c26fa5bb0502e31fc8faeed24fbe +Merge: 0b11890a0 a70a4aa33 +Author: Jorge Gonzalez +Date: Tue Feb 1 10:32:56 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 6f9bb4c4f88ca0830c2ee60cb6839416703438f9 +Merge: dbddc559d a70a4aa33 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 10:25:25 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.4 + +commit a70a4aa33806b818bd4be202e10cb6ee878025f7 +Merge: ea0cf3c4d 43fb8400f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Feb 1 10:17:21 2022 -0500 + + Merge pull request #1549 from raft-tech/feat/470-commands + + Feat (470): Script commands for development operations + +commit dbddc559dac3df8616305f78befd988e9e3200dc +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Feb 1 06:13:00 2022 +0000 + + Bump sass from 1.49.0 to 1.49.4 in /tdrs-frontend + + Bumps [sass](https://github.com/sass/dart-sass) from 1.49.0 to 1.49.4. + - [Release notes](https://github.com/sass/dart-sass/releases) + - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) + - [Commits](https://github.com/sass/dart-sass/compare/1.49.0...1.49.4) + + --- + updated-dependencies: + - dependency-name: sass + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 0b11890a046e3d0e709256eb9f05acb13f865d22 +Merge: a6c9f900c 5226852bf +Author: abottoms-coder +Date: Mon Jan 31 16:51:06 2022 -0500 + + Merge branch 'feat/1495-organized-first-experience-profile' of github.com:raft-tech/TANF-app into feat/1495-organized-first-experience-profile + +commit a6c9f900c1d29fc17a2696a3e55d4c50f3cc41b1 +Author: abottoms-coder +Date: Mon Jan 31 16:50:54 2022 -0500 + + Fixed broken unit tests by adding new field into reference response object. + + Also added an explicit test for ensuring that the flag will be updated by hitting the new endpoint with a patch request + +commit 5226852bf9a2058c7133dd33820022342ed12d66 +Author: Jorge Gonzalez +Date: Mon Jan 31 15:48:37 2022 -0500 + + fix: refactor and improve various frontend tests + +commit 0f2eab0a1bf132b686bd4e4da0fd0b7c3eae6e58 +Merge: 26132216c ea0cf3c4d +Author: Jorge Gonzalez +Date: Mon Jan 31 14:25:09 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 43fb8400f1e61db7e0a03f60e2a3c1ed0f5e6fe8 +Merge: 3dd53bbb9 ea0cf3c4d +Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> +Date: Mon Jan 31 14:20:36 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/470-commands + +commit 3dd53bbb9ebc2d5fd6d14fd36ff57357c073ab1a +Author: Mo +Date: Mon Jan 31 14:13:25 2022 -0500 + + resolve conflicts + +commit bb7e9bace13f6a16d4427cfd7c71d5d28061c473 +Author: Aaron Beavers +Date: Mon Jan 31 12:52:59 2022 -0500 + + updated migrations + +commit 5b81431113767f3afdc1c118c5439ce44989fab5 +Author: Aaron Beavers +Date: Mon Jan 31 12:15:06 2022 -0500 + + Remove dev code + +commit ea0cf3c4dd717a665575101525845453042d190b +Merge: af224233c 7e86ce5ce +Author: Jorge Gonzalez +Date: Mon Jan 31 10:44:56 2022 -0500 + + Merge pull request #1584 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.17 + +commit 07e1dac3ad4ec0fbf66cbc6c05925db60a9973d9 +Merge: 7b986e6f5 af224233c +Author: Jorge Gonzalez +Date: Mon Jan 31 10:38:07 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1387-locations + +commit 26132216cd1db269371edbdbbf1f44653dcb522a +Author: Jorge Gonzalez +Date: Mon Jan 31 10:37:11 2022 -0500 + + fix: remove dead pa11y test + +commit fc8bc308b23c9e0f8e8185610ab770dbd7411b44 +Author: Jorge Gonzalez +Date: Mon Jan 31 10:24:42 2022 -0500 + + style: lint + +commit 463b84200970b44dc2585339effd62a5485fb9e5 +Merge: 362deb3c8 af224233c +Author: Jorge Gonzalez +Date: Mon Jan 31 10:10:34 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 362deb3c856c7de8e68d3bcd077f8b4de700a2e7 +Author: Jorge Gonzalez +Date: Mon Jan 31 10:09:37 2022 -0500 + + style: lint + +commit 7e86ce5ce716798cb14c7f404a8cf2c6652d0125 +Merge: e2afa5e2a af224233c +Author: Jorge Gonzalez +Date: Mon Jan 31 09:37:27 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.17 + +commit af224233c81217ece56b4373209104913388c23a +Merge: 832b066e0 2ece0138b +Author: Jorge Gonzalez +Date: Mon Jan 31 08:34:14 2022 -0500 + + Merge pull request #1589 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.8.0 + +commit 2ece0138bb2910697a0b43de4c1285fce84bc23b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jan 31 06:11:06 2022 +0000 + + Bump eslint from 8.7.0 to 8.8.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 8.7.0 to 8.8.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v8.7.0...v8.8.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit e5b8656749dec90eda1c1a9f406985eddd2471e8 +Author: Programming +Date: Fri Jan 28 13:56:13 2022 -0800 + + Added user filter in the admin page in order to filter users based on access_request field + +commit e2afa5e2a1e76b08514a72389c9325d777b20ed0 +Merge: e35f4008a 832b066e0 +Author: Jorge Gonzalez +Date: Fri Jan 28 15:56:59 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.17 + +commit 7b986e6f5b27af518571561dd0ea12a2f31824e6 +Merge: 834ce366a 832b066e0 +Author: Jorge Gonzalez +Date: Fri Jan 28 15:39:52 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1387-locations + +commit 832b066e0226529d069096f7363b72d6ef11bb0c +Merge: f164aeff6 a105ada8b +Author: Jorge Gonzalez +Date: Fri Jan 28 15:32:29 2022 -0500 + + Merge pull request #1588 from raft-tech/hotfix/live-comms-job + +commit a0aef70d39e40d56f41c3605484d780c75c841b1 +Merge: 73c78a2cb f164aeff6 +Author: Jorge Gonzalez +Date: Fri Jan 28 15:28:17 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit a105ada8b1a7c33b484a6fa109f4a0248d6cda78 +Merge: 2bd73c4f6 f164aeff6 +Author: Jorge Gonzalez +Date: Fri Jan 28 15:26:35 2022 -0500 + + Merge branch 'raft-tdp-main' into hotfix/live-comms-job + +commit 2bd73c4f6eb30e6ad04e50493babbbb185f3682c +Author: Aaron Beavers +Date: Fri Jan 28 15:23:54 2022 -0500 + + add pre steps + +commit f164aeff6ab4e2c7ffda308c3e9c7927d610042c +Merge: 2b80fbbcc e1c417ac1 +Author: Jorge Gonzalez +Date: Fri Jan 28 15:20:44 2022 -0500 + + Merge pull request #1587 from raft-tech/hotfix/live-comms-job + +commit e1c417ac1dedf8127297f04c16acebe05abae98b +Merge: 94505a2c8 2b80fbbcc +Author: Jorge Gonzalez +Date: Fri Jan 28 15:15:10 2022 -0500 + + Merge branch 'raft-tdp-main' into hotfix/live-comms-job + +commit 94505a2c8fd43e4565d0225508dbd4fd79d844be +Author: Aaron Beavers +Date: Fri Jan 28 15:13:06 2022 -0500 + + Add parameters + +commit 357316bc235e541e9661bbbfd9d83f881fadb398 +Author: Aaron Beavers +Date: Fri Jan 28 15:06:29 2022 -0500 + + Add new job for live comms deploy + +commit 73c78a2cb8389887812a0eb7037626ffe054a904 +Author: Jorge Gonzalez +Date: Fri Jan 28 14:52:24 2022 -0500 + + feat: fix Home page behavior based on roles + +commit 2b80fbbcc8575892ae8f244ff276d834bed969d9 +Merge: bd7c621c9 e8272b98c +Author: Jorge Gonzalez +Date: Fri Jan 28 14:09:23 2022 -0500 + + Merge pull request #1586 from raft-tech/hotfix/deploy-live-comms-permission + +commit e7d56c34d9171c7660ad43323ed680f6116e50f8 +Author: Jorge Gonzalez +Date: Fri Jan 28 14:08:09 2022 -0500 + + feat: add manage account button and copy to Profile.jsx + +commit e8272b98c8ff67de73a656c7f4550b28621ab50a +Author: Aaron Beavers +Date: Fri Jan 28 14:02:48 2022 -0500 + + Deploy script should be executable + +commit 834ce366a04d8f27187f61e80bb77952fc5464c9 +Merge: 81e4a31ab bd7c621c9 +Author: Jorge Gonzalez +Date: Fri Jan 28 13:50:20 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1387-locations + +commit bd7c621c9f1cdf3d400143cd1e47ade53479f030 +Merge: 2d262297a 166d8e96c +Author: Jorge Gonzalez +Date: Fri Jan 28 13:36:15 2022 -0500 + + Merge pull request #1548 from raft-tech/feat/1545-migrate-live-comms-site + +commit 166d8e96c3dca3e36f14c57a0e942088cfde97a9 +Merge: dc4d27e3c 2d262297a +Author: Jorge Gonzalez +Date: Fri Jan 28 13:29:42 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1545-migrate-live-comms-site + +commit 81e4a31ab3272d4efa71be86cfeb4ea65195bd96 +Author: Aaron Beavers +Date: Fri Jan 28 13:00:03 2022 -0500 + + lint + +commit e35f4008a16b341b90c664a68c56f46d8fe26947 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jan 28 17:59:12 2022 +0000 + + Bump @fortawesome/react-fontawesome in /tdrs-frontend + + Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.16 to 0.1.17. + - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) + - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.16...0.1.17) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/react-fontawesome" + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 2d262297a09ac8df501e882f84e5032b159fd2cb +Merge: b6d4d29bc 3a13dc1b3 +Author: Jorge Gonzalez +Date: Fri Jan 28 12:58:14 2022 -0500 + + Merge pull request #1581 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.0.0 + +commit 3a13dc1b3b3f063417de61055b32cfe9f45c6ce9 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jan 28 17:50:32 2022 +0000 + + Bump concurrently from 6.5.1 to 7.0.0 in /tdrs-frontend + + Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 6.5.1 to 7.0.0. + - [Release notes](https://github.com/open-cli-tools/concurrently/releases) + - [Commits](https://github.com/open-cli-tools/concurrently/compare/v6.5.1...v7.0.0) + + --- + updated-dependencies: + - dependency-name: concurrently + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit b6d4d29bc01f0b45d63df48a4fa75995b4f7773a +Merge: 94b3f6dc1 f821b6d7e +Author: Jorge Gonzalez +Date: Fri Jan 28 12:49:11 2022 -0500 + + Merge pull request #1573 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/pa11y-ci-3.0.1 + +commit 55d5130fd330d0cd54927bbca2a9e8cd62a0fc7d +Author: Aaron Beavers +Date: Fri Jan 28 12:43:18 2022 -0500 + + Add form validation + +commit f821b6d7edb9588d287281e5de87a909f07a373e +Author: Aaron Beavers +Date: Fri Jan 28 12:15:00 2022 -0500 + + Revert "update node orb" + + This reverts commit a64e1668ad0da45fc619e1dd12e952a63e62cee8. + +commit b710d25c10a4cf3d103b381058220beb6f989ee2 +Author: Aaron Beavers +Date: Fri Jan 28 11:40:42 2022 -0500 + + Revert "Update docker file for chrome error in pa11y" + + This reverts commit f8d6eb9ba7908e334b76c5b0d33f7e50fa8984be. + +commit dc4d27e3cb73120b653faef2bae1896af453a153 +Merge: 6d45cc044 94b3f6dc1 +Author: Jorge Gonzalez +Date: Fri Jan 28 12:34:13 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1545-migrate-live-comms-site + +commit b2255b4b219d3ba69c5c2432af9b626ec360947f +Merge: db1334904 94b3f6dc1 +Author: Aaron Beavers +Date: Fri Jan 28 12:30:15 2022 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/pa11y-ci-3.0.1 + +commit db1334904d86e4b152dca7223dbf69111ab285f0 +Author: Aaron Beavers +Date: Fri Jan 28 12:21:43 2022 -0500 + + Use sudo + +commit 94b3f6dc17d7849dff11ff3ad444e4102ce74bbb +Merge: c2d0f122e 631fc8c4d +Author: Jorge Gonzalez +Date: Fri Jan 28 12:16:50 2022 -0500 + + Merge pull request #1578 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/node-sass-7.0.1 + +commit 6d45cc044875220620e559fde440347252f6400c +Author: Miles Reiter +Date: Fri Jan 28 12:15:02 2022 -0500 + + Fix mobile nav label inconsistency + +commit a64e1668ad0da45fc619e1dd12e952a63e62cee8 +Author: Aaron Beavers +Date: Fri Jan 28 12:15:00 2022 -0500 + + update node orb + +commit f8d6eb9ba7908e334b76c5b0d33f7e50fa8984be +Author: Aaron Beavers +Date: Fri Jan 28 11:40:42 2022 -0500 + + Update docker file for chrome error in pa11y + +commit 631fc8c4d6dc4a4909f12e0c446a53d081bef318 +Merge: d7bcfd4e0 c2d0f122e +Author: Jorge Gonzalez +Date: Fri Jan 28 10:49:15 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/node-sass-7.0.1 + +commit 10feb518fb59d83fab845ba94987e9bbecfae1ad +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jan 28 15:47:40 2022 +0000 + + Bump pa11y-ci from 2.4.2 to 3.0.1 in /tdrs-frontend + + Bumps [pa11y-ci](https://github.com/pa11y/ci) from 2.4.2 to 3.0.1. + - [Release notes](https://github.com/pa11y/ci/releases) + - [Changelog](https://github.com/pa11y/pa11y-ci/blob/master/CHANGELOG.md) + - [Commits](https://github.com/pa11y/ci/compare/2.4.2...3.0.1) + + --- + updated-dependencies: + - dependency-name: pa11y-ci + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit fce4aa5c30d89237c256e004a8df088c1d7403df +Merge: 4cd2ed014 c2d0f122e +Author: Jorge Gonzalez +Date: Fri Jan 28 10:44:33 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1545-migrate-live-comms-site + +commit c2d0f122e76c8cefa3d9a7df50cf568472b43bd0 +Merge: a205a8e9e afe575848 +Author: Jorge Gonzalez +Date: Fri Jan 28 10:42:44 2022 -0500 + + Merge pull request #1555 from raft-tech/feat/1545-add-site-files + +commit afe575848c0820ac618e4c0462ac05af9084c0f4 +Merge: 0a1e08abe a205a8e9e +Author: Jorge Gonzalez +Date: Fri Jan 28 10:37:01 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1545-add-site-files + +commit d7bcfd4e04f1d0af7a91665bd527322d47bd4db8 +Author: Jorge Gonzalez +Date: Fri Jan 28 10:23:36 2022 -0500 + + chore: replace node-sass with sass + +commit 4cd2ed014190c7166474f48e5b909e38d2f3aada +Author: Miles Reiter +Date: Thu Jan 27 14:28:24 2022 -0500 + + Fixed font-related 404s, fixed broken nav link items + +commit d4b28d3d5a995536637c787e08eb818e20b825fc +Author: Jorge Gonzalez +Date: Thu Jan 27 12:07:32 2022 -0500 + + feat: check access request for navitems + +commit bb3be3e908bd19b1bc0cd10c611553b02de40bb2 +Author: Jorge Gonzalez +Date: Thu Jan 27 10:51:42 2022 -0500 + + feat: add user info to profile page + +commit a840782a0e44ff27ae4bc4e6f1d8d8278df2df37 +Author: Aaron Beavers +Date: Thu Jan 27 10:14:12 2022 -0500 + + lint + +commit 8ce20404239fd3a9a5bc2fc18208b0ba7679e235 +Author: Aaron Beavers +Date: Thu Jan 27 09:23:39 2022 -0500 + + lint + +commit 92cad51cb90c92bcd55acf26fbe032a49bc61c61 +Author: Aaron Beavers +Date: Thu Jan 27 09:23:34 2022 -0500 + + Remove some logs + +commit 6472e9bc27cee10bff5c741d8aca62f01b223f12 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jan 27 06:15:53 2022 +0000 + + Bump node-sass from 6.0.1 to 7.0.1 in /tdrs-frontend + + Bumps [node-sass](https://github.com/sass/node-sass) from 6.0.1 to 7.0.1. + - [Release notes](https://github.com/sass/node-sass/releases) + - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) + - [Commits](https://github.com/sass/node-sass/compare/v6.0.1...v7.0.1) + + --- + updated-dependencies: + - dependency-name: node-sass + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 925bd0f9203bbb8637076dc1cd173e045b5ea8ad +Author: Jorge Gonzalez +Date: Wed Jan 26 16:38:49 2022 -0500 + + refactor: Home and Profile pages + +commit c36b1c8efbb61e7cced171e552dc69932ff3ce5c +Author: Aaron Beavers +Date: Wed Jan 26 15:27:17 2022 -0500 + + lint and auto migrations (compress these down) + +commit 9fcc23544b4296cf398089cb3ae81324c986f633 +Author: Aaron Beavers +Date: Wed Jan 26 14:22:02 2022 -0500 + + Update live-comms/June-2021-Update.html + +commit d61cc1979b714d184f494fb4b9bfd3a54eab3c43 +Author: Aaron Beavers +Date: Wed Jan 26 14:21:53 2022 -0500 + + Update live-comms/June-2021-Update.html + +commit 7763c7f3c2ac13f13bc3930a7a218dd7629cb984 +Author: Aaron Beavers +Date: Wed Jan 26 14:21:47 2022 -0500 + + Update live-comms/June-2021-Update.html + +commit 82994cc3ef8b03d04064b0fca0999861ed4b4e5e +Author: Aaron Beavers +Date: Wed Jan 26 14:21:40 2022 -0500 + + Update live-comms/August-2021-Update.html + +commit acdbd6bf1b13aae1e0f4234bd622aa3c27236fe0 +Author: Aaron Beavers +Date: Wed Jan 26 14:21:30 2022 -0500 + + Update live-comms/August-2021-Update.html + +commit f9b9e5dcb3da6d00f716cf0e7f2446e6a15a6aa6 +Author: Miles Reiter +Date: Wed Jan 26 13:49:55 2022 -0500 + + Remove TTS related 'contributing' markdown, add background and review details to 'readme' + +commit 9c3d3a5918bfd73bf03650a18a2424043ca66f14 +Author: Aaron Beavers +Date: Wed Jan 26 10:42:52 2022 -0500 + + lint + +commit 9b9c5df0e6948d17341a4133eed16f701a61af82 +Author: Aaron Beavers +Date: Wed Jan 26 10:01:58 2022 -0500 + + lint + +commit 000a060b1053fb22aaaa3e3c5525aa85b97548a5 +Merge: ef2d6692c a205a8e9e +Author: Jorge Gonzalez +Date: Wed Jan 26 09:29:27 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1495-organized-first-experience-profile + +commit 2dd8a79d6bd9ca30d312598345ef643d3eb0c964 +Author: Jorge Gonzalez +Date: Wed Jan 26 09:28:41 2022 -0500 + + refactor: Header.jsx + +commit 71c3214f0e970948ed15ccf4c8385a55202cbec8 +Author: Aaron Beavers +Date: Wed Jan 26 09:17:55 2022 -0500 + + add migrations + +commit e64bf61bd00e05f362081b7d7f9c430e9e3c57e5 +Author: Aaron Beavers +Date: Tue Jan 25 14:46:15 2022 -0500 + + Validate other roles location + +commit 9591ea89e7ad8fa8416c9e81965be62cfd2ee37a +Author: Jorge Gonzalez +Date: Tue Jan 25 12:55:57 2022 -0500 + + fix: replace connected-react-router + +commit 2cd0f9a249d74cc8c3953b9c4940d3f957dd4878 +Author: Jorge Gonzalez +Date: Tue Jan 25 12:16:04 2022 -0500 + + fix: upgrade Redirect components to Navigate + +commit 9044fee57481cfc40c0fc3320f3b54ae5d83cb8e +Author: Miles Reiter +Date: Tue Jan 25 12:11:50 2022 -0500 + + Migrates remaining imgur links, adds alt text, adds research synthesis link, fixes paragraph width + +commit 1cf516737bb5753f254bea5762b51389673f8896 +Author: Jorge Gonzalez +Date: Tue Jan 25 12:09:31 2022 -0500 + + fix: install latest react-router which should have been done in parallel + +commit fee4a9b96102b17932d1c256ab1abbf894dd5354 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jan 25 17:04:09 2022 +0000 + + Bump react-router-dom from 5.3.0 to 6.2.1 in /tdrs-frontend + + Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 5.3.0 to 6.2.1. + - [Release notes](https://github.com/remix-run/react-router/releases) + - [Commits](https://github.com/remix-run/react-router/commits/v6.2.1/packages/react-router-dom) + + --- + updated-dependencies: + - dependency-name: react-router-dom + dependency-type: direct:production + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit a205a8e9ebb9e97bfbfc5c9aee6cb27335c9bc55 +Merge: 065054937 cfbd8c773 +Author: Jorge Gonzalez +Date: Tue Jan 25 12:02:56 2022 -0500 + + Merge pull request #1551 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.7.0 + +commit cfbd8c7737766692bbcc17fc2517d8d92bc9d0c6 +Merge: 395e80256 065054937 +Author: Jorge Gonzalez +Date: Tue Jan 25 10:44:06 2022 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.7.0 + +commit 395e802568f81d969946d4d5088ffe5c568aecf2 +Author: Jorge Gonzalez +Date: Tue Jan 25 10:05:26 2022 -0500 + + fix: add missing eslint dep + +commit 06505493778c339393ed32ff83ac6cd77c95aef8 +Merge: 96a2ceb21 a4d41bb6a +Author: Jorge Gonzalez +Date: Tue Jan 25 10:10:09 2022 -0500 + + Merge pull request #1516 from raft-tech/feat/1413-tooltip-improvements + +commit a4d41bb6af2137edb6f6cab9d93824434447b0b0 +Merge: 06ba344c8 96a2ceb21 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 25 09:57:53 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1413-tooltip-improvements + +commit 5218c35296bffb30cdef053c65be76469ed72671 +Author: Aaron Beavers +Date: Tue Jan 25 09:53:14 2022 -0500 + + more lint + +commit f0140ace8a5d16e8311cd1573a9f15bfb87a4810 +Author: Aaron Beavers +Date: Tue Jan 25 09:42:29 2022 -0500 + + more lint + +commit 2e4cf881064e06ac994b7210655c0bb3938de9fd +Author: Aaron Beavers +Date: Tue Jan 25 09:37:16 2022 -0500 + + more lint + +commit dda08d5ae03781bfc194b8e361cac94f8171ab67 +Author: Aaron Beavers +Date: Tue Jan 25 09:25:56 2022 -0500 + + lint + +commit 1b69a6a2fc0104a0e8a67646aa4a6c0b9e5ec6cf +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jan 25 14:18:12 2022 +0000 + + Bump eslint from 7.32.0 to 8.7.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.7.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v7.32.0...v8.7.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 96a2ceb213f7d38f9a3d3c142146dbc018057587 +Merge: 6cd5e1a28 c0d2c6853 +Author: Jorge Gonzalez +Date: Tue Jan 25 09:16:48 2022 -0500 + + Merge pull request #1538 from raft-tech/build/854-npm-migration + +commit 549d1c86c0d723ac2cdb72cf00ac33784ac81903 +Merge: 04c6c9603 6cd5e1a28 +Author: Aaron Beavers +Date: Mon Jan 24 19:04:16 2022 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1387-locations + +commit 04c6c9603f5d8ec7ee43999fa4952e621376d08d +Author: Aaron Beavers +Date: Mon Jan 24 19:04:10 2022 -0500 + + all existing tests pass + +commit c0d2c68538b1f1a0d7c6acbdcee913849fa46c73 +Author: Jorge Gonzalez +Date: Mon Jan 24 15:44:59 2022 -0500 + + build: disable audit in ci + +commit ffde074f67fb95e394b5dcbed3cf766a5552c537 +Author: Aaron Beavers +Date: Mon Jan 24 14:48:34 2022 -0500 + + use old non minified css file + +commit 3af5d467ad92390bf45ddb1b78dedcc999185262 +Merge: 405bcff9d 6cd5e1a28 +Author: Jorge Gonzalez +Date: Mon Jan 24 14:22:52 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/470-commands + +commit 9f05efff0262e9380d6509b81dca82329662dee0 +Merge: 70c140566 6cd5e1a28 +Author: Jorge Gonzalez +Date: Mon Jan 24 14:17:26 2022 -0500 + + Merge branch 'raft-tdp-main' into build/854-npm-migration + +commit c6e9cb278c6c313a0dd52ef4c3a43083a39ce9a2 +Author: Aaron Beavers +Date: Mon Jan 24 14:03:03 2022 -0500 + + Update documentation + +commit ad135d92db898170d0cc14b3e8c04076f48e89cb +Merge: 5823f7db9 0a1e08abe +Author: Aaron Beavers +Date: Mon Jan 24 14:02:44 2022 -0500 + + Merge branch 'feat/1545-add-site-files' into feat/1545-migrate-live-comms-site + +commit c2df5c9e3a91aeeea59b93ad722812d7e4d35cb9 +Author: Aaron Beavers +Date: Mon Jan 24 13:30:49 2022 -0500 + + Migrations and models set + +commit 6cd5e1a28458cfb2d1a73ffbfd75921e26be0a2f +Merge: 89e7b6c06 e7c87a866 +Author: Jorge Gonzalez +Date: Mon Jan 24 12:14:44 2022 -0500 + + Merge pull request #1556 from raft-tech/adp/1527-ux-updates + +commit e7c87a866d013d481bb8d429deca27eb70163353 +Merge: 37467b941 89e7b6c06 +Author: Jorge Gonzalez +Date: Mon Jan 24 11:44:35 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1527-ux-updates + +commit 405bcff9d155df0a05e3b343a42fd0e4dc2573c4 +Merge: c3ee613a5 89e7b6c06 +Author: Jorge Gonzalez +Date: Mon Jan 24 10:24:25 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/470-commands + +commit 70c1405667f18fe717194329053bafde6494e16a +Merge: 9ece040b3 89e7b6c06 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 24 10:23:59 2022 -0500 + + Merge branch 'raft-tdp-main' into build/854-npm-migration + +commit ef2d6692cf9586d3ada8314c4fa9f00f8dc3a303 +Merge: d4129c1b6 89e7b6c06 +Author: Jorge Gonzalez +Date: Mon Jan 24 09:51:28 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile + +commit 06ba344c844cb650f871a5af57f94f044e3a4630 +Author: Jorge Gonzalez +Date: Mon Jan 24 09:43:14 2022 -0500 + + fix merge conflicts + +commit 94e3f4de5d9ac4e65cc05c86008b151d4e1f3dfe +Merge: 30d82a3fe 89e7b6c06 +Author: Jorge Gonzalez +Date: Mon Jan 24 09:40:54 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements + +commit 89e7b6c061026fbfefce5ddceeacb473e47654fa +Merge: ff4824b1a 460bfe7cb +Author: Jorge Gonzalez +Date: Mon Jan 24 09:39:20 2022 -0500 + + Merge pull request #1468 from raft-tech/fix/1419 + +commit 460bfe7cb5155a08f82481e4ec1c6dd7b0124563 +Merge: 25c1088d5 ff4824b1a +Author: Jorge Gonzalez +Date: Mon Jan 24 09:28:56 2022 -0500 + + Merge branch 'raft-tdp-main' into fix/1419 + +commit ff4824b1a21d5c57504575592f54f20fbc27361a +Merge: a50fd8531 d0b68110e +Author: Jorge Gonzalez +Date: Mon Jan 24 09:28:03 2022 -0500 + + Merge pull request #1537 from raft-tech/feat/1449-a11y-dependabot-label + +commit 25c1088d5be2eb3cc6eecf81658e49d6ced19919 +Merge: deb3170fa a50fd8531 +Author: Jorge Gonzalez +Date: Mon Jan 24 09:14:04 2022 -0500 + + Merge branch 'raft-tdp-main' into fix/1419 + +commit d0b68110e8bf48975e91e8724a8816ba261e17f8 +Merge: 44ccc62a1 a50fd8531 +Author: Jorge Gonzalez +Date: Mon Jan 24 09:13:57 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label + +commit a50fd8531793617400777bf797f25d8fcd1f460d +Merge: f3bf2c398 7fbc9230e +Author: Jorge Gonzalez +Date: Mon Jan 24 09:13:33 2022 -0500 + + Merge pull request #1565 from raft-tech/issue/1563-django-3.2.11-again + +commit d4129c1b64a42a6caa7a79b1109ba0d55196ba53 +Author: Mo +Date: Sat Jan 22 13:20:41 2022 -0500 + + add background handling function for access request + +commit c3ee613a5e760eb7a65c091d0198cda3d39d5235 +Author: Programming +Date: Sat Jan 22 04:42:50 2022 -0800 + + Changed tdrs-restart: to start backend first + +commit 7334010bb066a0e891ec0480e59f42a21e1d08a1 +Author: Programming +Date: Sat Jan 22 04:32:12 2022 -0800 + + Changed tdrs-start: to start backend first + +commit 7fbc9230e461581238eeaaa5ed102db5e36dcde3 +Merge: dc592f0ca f3bf2c398 +Author: Jorge Gonzalez +Date: Fri Jan 21 15:34:33 2022 -0500 + + Merge branch 'raft-tdp-main' into issue/1563-django-3.2.11-again + +commit deb3170faf2baf30528150cb07dd608631c6d267 +Merge: 2ef559944 f3bf2c398 +Author: Jorge Gonzalez +Date: Fri Jan 21 15:33:35 2022 -0500 + + Merge branch 'raft-tdp-main' into fix/1419 + +commit 30d82a3fe0353570ef3758a33fd79716c312158e +Author: Jorge Gonzalez +Date: Fri Jan 21 14:28:50 2022 -0500 + + fix merge conflicts + +commit 2d7d244442c08d89eaadf022ae338816c813121c +Merge: 5e1bcf74b f3bf2c398 +Author: Jorge Gonzalez +Date: Fri Jan 21 14:26:41 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements + +commit 0a1e08abe06cc709aae053c1c05dc12f2829c34a +Author: Aaron Beavers +Date: Fri Jan 21 14:15:30 2022 -0500 + + Remove a lot of files + +commit f3bf2c3983d976fa5ea73dfaefa5bcc28206ffe5 +Merge: a0ab9a2de f400f16e8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jan 21 14:04:12 2022 -0500 + + Merge pull request #1528 from raft-tech/issues/782-python-latest + + build(782): Upgrade Python to v3.10.1 + +commit 6e9a5493b5ff065eebd4a91822f5a69f2e8c1081 +Author: Programming +Date: Fri Jan 21 10:47:25 2022 -0800 + + corrected lint + +commit 43d0644ebb5806803c94d56fd101c8a57769a648 +Author: Aaron Beavers +Date: Fri Jan 21 12:42:00 2022 -0500 + + confirmed owasp commands work + +commit b6ae5b264014960e81dcc077da2f247833ef5eba +Author: Aaron Beavers +Date: Fri Jan 21 10:57:36 2022 -0500 + + comment tdrs function listing command + +commit 3d6f0ef4b2973aaf8bde89600a864f354e91a8c4 +Author: Aaron Beavers +Date: Fri Jan 21 10:55:38 2022 -0500 + + Converted a few functions to aliases and add/update comments + +commit 680308642eec087f0360c148d751e7edfe4d08ea +Author: Aaron Beavers +Date: Fri Jan 21 10:54:44 2022 -0500 + + Added white space + +commit 7a2ab85f26596971ed4cb2a0ba57b65f4f93916d +Author: Aaron Beavers +Date: Fri Jan 21 10:54:02 2022 -0500 + + remove misleading comment + +commit b1158e4b92e398687fd95ae5b63d430db911b3f1 +Merge: 2a7fa52ab a0ab9a2de +Author: Jorge Gonzalez +Date: Fri Jan 21 10:19:50 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1545-add-site-files + +commit 6adf85c42feecf7555072e4ceffcc638d2411ea3 +Author: Aaron Beavers +Date: Fri Jan 21 10:15:10 2022 -0500 + + use npm + +commit 3ea13e616cdc799721283df62e266e446cc34402 +Author: Aaron Beavers +Date: Fri Jan 21 10:14:56 2022 -0500 + + succeed loudly for lint + +commit 8a526c6803161012357c8d45b521972e12aedb96 +Merge: 4122b8e91 9ece040b3 +Author: Aaron Beavers +Date: Fri Jan 21 10:13:59 2022 -0500 + + Merge branch 'build/854-npm-migration' into feat/470-commands + +commit f400f16e819976780545e816a2485eaf9943c311 +Merge: c50f4ab36 a0ab9a2de +Author: Jorge Gonzalez +Date: Fri Jan 21 09:49:14 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/782-python-latest + +commit 9ece040b3c35176d7771da050a15ceb0d8247f59 +Merge: bbe9b7073 a0ab9a2de +Author: Jorge Gonzalez +Date: Fri Jan 21 09:46:14 2022 -0500 + + Merge branch 'raft-tdp-main' into build/854-npm-migration + +commit 44ccc62a18917a98769fd38c435659fa6ec7594b +Merge: 73398c15b a0ab9a2de +Author: Jorge Gonzalez +Date: Fri Jan 21 09:44:14 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label + +commit a0ab9a2de3f8f3f2a2e9e24cd3c94ca263126ca6 +Merge: df4ce50d1 bad09f9e3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jan 21 09:19:11 2022 -0500 + + Merge pull request #1535 from raft-tech/feat/1353-elastisearch-adr + + Elastisearch Implementation ADR + +commit 4122b8e9162d82722e3fb3fe0b49eccca8345791 +Author: Programming +Date: Thu Jan 20 16:15:29 2022 -0800 + + corrected tdrs-backend-compose + +commit d3e562453aa79af9008ff6730b512f43795c9722 +Author: Programming +Date: Thu Jan 20 14:27:46 2022 -0800 + + corrected backend hard restart command + +commit bad09f9e38072e1dda3b90cc530a8d634549268c +Merge: 05241fbbb df4ce50d1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 20 16:39:34 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1353-elastisearch-adr + +commit df4ce50d1fd257949269b8979bf571469e420ed8 +Merge: 8a95b108c d6e0060d9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 20 16:36:49 2022 -0500 + + Merge pull request #1536 from raft-tech/feat/1170-ams-for-ofa + + feat(1170): Enforce AMS usage for ACF Staff + +commit d6e0060d9f1cb642018cda699293ed66a63b79e9 +Merge: 0334eda95 8a95b108c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 20 16:31:19 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1170-ams-for-ofa + +commit 2ef55994477c841429244c6c882dc2abfd46db1c +Merge: 3ab63f564 8a95b108c +Author: Jorge Gonzalez +Date: Thu Jan 20 15:13:29 2022 -0500 + + Merge branch 'raft-tdp-main' into fix/1419 + +commit dc592f0caf32064de0c0d8e6861302d58037033f +Author: abottoms-coder +Date: Thu Jan 20 14:56:58 2022 -0500 + + Updating pipfile from python3.10 branch, I resolved conflicts wrong + +commit 5e1bcf74bad0cbf27aa056a880f442a2e06c2035 +Merge: cb0f131eb 8a95b108c +Author: Jorge Gonzalez +Date: Thu Jan 20 14:44:10 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1413-tooltip-improvements + +commit 73398c15b78c85955f85b29e1caab5239fdfaf1c +Merge: cd682cb27 8a95b108c +Author: Jorge Gonzalez +Date: Thu Jan 20 14:38:10 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label + +commit 5823f7db93d1093d21d31462ae9e9ce400643b0c +Author: Miles Reiter +Date: Thu Jan 20 14:07:35 2022 -0500 + + Updates content, tweaks css for paragraph text + +commit 05241fbbbd22ea2d7419b6247419298ddf1e47d1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 20 13:43:40 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md + + Co-authored-by: Jorge Gonzalez + +commit d2ecbc5cce41f550839d2ed0eba58941ca9fe270 +Author: Aaron Beavers +Date: Thu Jan 20 13:29:00 2022 -0500 + + update links referencing index + +commit d1b99e783fcb91581b7190532001fb726e3e026f +Author: Aaron Beavers +Date: Thu Jan 20 12:52:43 2022 -0500 + + Apply suggestions from code review + +commit f30a4ef9232643a3ea20ffcc3f3bcceff784678d +Author: Aaron Beavers +Date: Thu Jan 20 12:49:57 2022 -0500 + + Update scripts/deploy-live-comms.sh + +commit 1580801952bb4dd737f85648f5cb789ac3fbd130 +Author: Aaron Beavers +Date: Thu Jan 20 12:38:04 2022 -0500 + + shortened some definitions to aliases and added a new shortcut function + +commit 55986022dc093da62ebda0be042a5bde8dd85fa6 +Author: Aaron Beavers +Date: Thu Jan 20 12:37:17 2022 -0500 + + Added an example + +commit 8a95b108c39863f80bf0d4b11451a847f7cfc333 +Merge: e3f16edc5 1fc7e47d8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 20 11:41:31 2022 -0500 + + Merge pull request #1554 from raft-tech/valcollignon-patch-2 + + Create sprint-38-summary.md + +commit 1fc7e47d807a4f66a07ebc791a339c2889f6a442 +Merge: 5cb9403a6 e3f16edc5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 20 11:35:27 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-2 + +commit 63aa88e94753e6f03d73b796be08f8c469047539 +Author: Aaron Beavers +Date: Thu Jan 20 10:47:31 2022 -0500 + + Update some links + +commit 37467b94127337bb6bf9d92d0309c8a14fba7ce0 +Merge: 4b016c2b4 e3f16edc5 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 20 10:23:21 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1527-ux-updates + +commit 4b016c2b4580c048a09e0b450ab4c5ed69d0b46b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 20 10:08:34 2022 -0500 + + update ref links + +commit 895820c43a0e1ce23a1f17ffae02f5958d59d616 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 20 09:15:05 2022 -0500 + + fix ux ref links in background dir + +commit 9465af6b5a90927673f24b9cb628640c3d9a835b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 19 18:22:29 2022 -0500 + + make design folder apparent with readme + +commit 618525aa07a1fbe1ca68bde80392fa050cbe93b0 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 19 18:02:23 2022 -0500 + + moved and renamed synethesis docs + +commit 9c73f541fc9bf327c93e2efac6d46d8dfa0a9974 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 19 17:57:52 2022 -0500 + + del old docs and folders and move doc content + +commit 23d5b6e45407ec547e234e630e3860160856ff90 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 19 17:43:26 2022 -0500 + + add docs + +commit ba4e65c7833beca23ab4d0f2469d2aee76401036 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 19 17:33:04 2022 -0500 + + add readmes to dir + +commit 939d73f8a8412cc253dbefe2a4b56f79910b3eec +Author: Aaron Beavers +Date: Wed Jan 19 15:10:24 2022 -0500 + + Update commands.sh + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 5b763095974e5c0031afe3929ef56d4ad2d5bf51 +Author: Aaron Beavers +Date: Wed Jan 19 15:00:05 2022 -0500 + + move deployment + +commit 3ab63f5642b1156d699682fb86236fa512c45538 +Author: Aaron Beavers +Date: Wed Jan 19 14:46:45 2022 -0500 + + add authenication garud for sign out removed on accident + +commit 0334eda955c635968f3968963a4c1b810ef9579e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 13:58:56 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/login.py + +commit bc64cd7dd8034a455ae48d9a1457aa5188d4c8f0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 13:51:28 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/login.py + +commit 7c37ed69078b613bed37e96549fd7cd1a65269f3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 13:46:31 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/login.py + +commit 3819ebf7fc9b4950784810137c32de152143e7ec +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 13:46:23 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/login.py + +commit bbe9b70735a3927fdeef3bbd87c12cf1081fbdd3 +Author: Jorge Gonzalez +Date: Wed Jan 19 13:24:06 2022 -0500 + + Update trufflehog-exclude-patterns.txt + +commit c9b8e1c446fb757c16a9a9b962f47dc03d159940 +Merge: 94a080ea3 e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 12:10:15 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1170-ams-for-ofa + +commit cb0f131eb83214fa8dee65514704224a1f46ea2d +Author: Jorge Gonzalez +Date: Wed Jan 19 11:26:02 2022 -0500 + + fix: Pipfile.lock merge conflicts + +commit 95aa58503d7387a680d2fd15b518e236ed1d5c5a +Merge: f5b445fb5 e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:23:14 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements + +commit c50f4ab3641497654d7b7adf0ff167a206415ec3 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:19:12 2022 -0500 + + fix: Pipfile.lock merge conflicts + +commit 588c26fb5fd4f0ea7c746986aef4c02dab8bfce4 +Merge: 2b5856a8f e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:16:52 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into issues/782-python-latest + +commit 292266caf754609c609b5d30cb515a48b11371e0 +Merge: 82d67bbfc e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:09:52 2022 -0500 + + Merge branch 'raft-tdp-main' into fix/1419 + +commit cd682cb27ddc65915181133a092f8ee30baf7092 +Merge: 3a05c8511 e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:06:44 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label + +commit 83fddff8f77f0dbe78c5936bfe3b03ce5dd07815 +Merge: 1d5129a11 e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:05:08 2022 -0500 + + Merge branch 'raft-tdp-main' into build/854-npm-migration + +commit 40d021c92c88ee9eacb8c7b8244c6782059685ef +Merge: 208fa0b89 e3f16edc5 +Author: Jorge Gonzalez +Date: Wed Jan 19 11:01:01 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1353-elastisearch-adr + +commit e3f16edc55ddddca3d0a043fa33958c9cf0aaac0 +Merge: cf951f717 db97039df +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 10:10:23 2022 -0500 + + Merge pull request #1553 from raft-tech/valcollignon-patch-1 + + Update README.md + +commit 76342ac62a755c319db3006f27401959970fc7fb +Author: Aaron Beavers +Date: Wed Jan 19 10:01:45 2022 -0500 + + update references to close.svg + +commit db97039dfbc9a11ba6f3668796789da22b19dadf +Merge: bf068593b cf951f717 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 09:28:07 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit cf951f717de9f206578aae900429015ebfb7ea55 +Merge: 09640db47 70114a4ee +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 09:24:29 2022 -0500 + + Merge pull request #1542 from raft-tech/adp/1522-ps-updates + + Issue 1522: Updating TANF-app/doc/Product-Strategy/ + +commit 5cb9403a6ef81c58a561e31b1448a303c0929156 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Jan 19 09:20:59 2022 -0500 + + Update sprint-38-summary.md + + Moved completed issues to Closed/Merged/Completed section + +commit 70114a4eeaad2a5903f9256831126d6067517f63 +Merge: 802b48f4a 09640db47 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 09:17:50 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1522-ps-updates + +commit 09640db472e31cc2c2f91a5939d69a1bb26d27e7 +Merge: 2253caa4b 4d4b51ef4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 09:17:48 2022 -0500 + + Merge pull request #1547 from raft-tech/adp/1523-hww-updates + + Issue 1523: Updating TANF-app/doc/How-We-Work/ + +commit 4d4b51ef404650603e75aed814d25a3a5672cc22 +Merge: 89dcdc450 2253caa4b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 19 09:04:10 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1523-hww-updates + +commit 94a080ea35af52192d2b6bddca605e3fdbd8fa47 +Merge: a552803f3 2253caa4b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 18 16:42:03 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1170-ams-for-ofa + +commit 2253caa4b91f58fe44aeec5f07cf37d649fbc437 +Merge: 11fd8101f 3fb939900 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 18 16:41:57 2022 -0500 + + Merge pull request #1539 from raft-tech/adp/1521-background-updates + + Issue 1521: Updating TANF-app/doc/Background/ + +commit fc11b3cef56b183eafe7ea6baed516642a22dd72 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Jan 18 14:02:43 2022 -0500 + + Create sprint-38-summary.md + +commit bf068593b7fee35b109c7c133fa9c549a87cb6b6 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Jan 18 13:59:39 2022 -0500 + + Update README.md + + Fixing spelling error + +commit 3fb939900f2d0ee5b231d15d227cba881ed1b6f8 +Merge: 3197922b7 11fd8101f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 18 12:10:51 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1521-background-updates + +commit 11fd8101f1084fcde9ad87c0e7adf7f6e469cf47 +Merge: 2a2cca6cb 52081d665 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 18 12:10:26 2022 -0500 + + Merge pull request #1369 from raft-tech/feat/1136-ams + + feat(1136): Accept AMS OpenID + +commit 52081d6653ee5a81938d49c784d674343e74eb65 +Author: Jorge Gonzalez +Date: Tue Jan 18 10:41:18 2022 -0500 + + build: prevent faulty deploys from missing settings + +commit 95e4db9b15351d00a4e11af011f1aae2bcccdc18 +Author: Jorge Gonzalez +Date: Tue Jan 18 10:23:05 2022 -0500 + + Update tdrs-backend/tdpservice/settings/common.py + +commit 89dcdc4508e32f50b1b5e27ea27f2aa69156f3db +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 18 09:31:03 2022 -0500 + + Update docs/How-We-Work/our-priorities-values-expectations.md + + url fix + +commit 855ccea1cdb8b1275dbe2f754d2120aa2b9b72ef +Merge: 24cf7c18e 2a2cca6cb +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 18 06:20:55 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 6bec2de23e286db22a6a85f83d852309d6c1a8e4 +Author: Aaron Beavers +Date: Fri Jan 14 16:44:23 2022 -0500 + + Add deployment scripts + +commit 08905c0b28819fb417c3e04ff2d5e875d9da0043 +Merge: a79fa7c27 2a2cca6cb +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 16:20:14 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1523-hww-updates + +commit a79fa7c278f50322cb36d2644c1493769b19e400 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 16:13:42 2022 -0500 + + fix priorities md name + +commit 2a2cca6cb3e42fa1bbe51329fe63fb5916d8562e +Merge: d009f7d27 5aa23cca6 +Author: Miles Reiter +Date: Fri Jan 14 15:57:32 2022 -0500 + + Merge pull request #1546 from raft-tech/1269-add-fall-2021-research-synthesis + + 1269 add fall 2021 research synthesis + +commit a552803f393a0887e6176d50cb42fa686414368c +Merge: 24c8d5ecf bd1eeaaf7 +Author: abottoms-coder +Date: Fri Jan 14 15:57:31 2022 -0500 + + Merge branch 'feat/1170-ams-for-ofa' of github.com:raft-tech/TANF-app into feat/1170-ams-for-ofa + +commit 24c8d5ecf2f936df3762245e4803bcb19ffbe115 +Author: abottoms-coder +Date: Fri Jan 14 15:57:20 2022 -0500 + + Minor tweaks after looking at the PR diff + +commit 6c79c781033340441e5908113c6286309311ca86 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:47:49 2022 -0500 + + update PR template links + +commit 823325d3d31fee8bc2ea8e6d2f622e68f0f78d14 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:40:47 2022 -0500 + + update PR template + +commit ac297f744a426b8d7606c4267cd14d5de0011326 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:39:37 2022 -0500 + + updated mtgs md + +commit a6f0cbda6838d344b34a633a2cdb41051176899c +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:37:51 2022 -0500 + + updated team comp + +commit b4c6dd16ae69904faa3b40d0892871b012e26328 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:36:28 2022 -0500 + + del quality md + +commit bfa8b2eb10121d41de57bd31ad883789966f78d4 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:35:40 2022 -0500 + + create priorities md + +commit 94ae59d5c2d3d5a2c94c54d9f7867f66180193fa +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:32:11 2022 -0500 + + del DoD and manual chks md + +commit 64544017f4441e4edb81b05e64b49027616f8eb6 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:28:00 2022 -0500 + + moved mtgs workflow and comm tools md + +commit ad202198cf920f4f85359ce2cca569c14c005d83 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:23:53 2022 -0500 + + del kickoff md + +commit 88f3b92a67511b57f3d759510859a961a9f0d050 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:20:21 2022 -0500 + + del branching md + +commit 9461c3bebd3fa9ffbaa78a4ac90a8d2f6a067cbd +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:19:14 2022 -0500 + + del gov a11y md + +commit eef232a83b9c9ae751054451dd8ff091689f463c +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:17:53 2022 -0500 + + moved heuristics md + +commit 6b516d2cad4a5bb6543e250b144fd3d9603dd550 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jan 14 15:15:23 2022 -0500 + + added ToC to subdir + +commit 5aa23cca61a035e089fb6ab6ee3d3a5bf73a9537 +Author: Miles Reiter +Date: Fri Jan 14 14:25:28 2022 -0500 + + Update README.md + +commit bde7884fcb4c55c0c998fd7158e2ab1e79d00f53 +Author: Miles Reiter +Date: Fri Jan 14 14:17:09 2022 -0500 + + Update 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md + +commit df59304fd0ca80c8722abc0d62d67b7dd73ba6a7 +Author: Miles Reiter +Date: Fri Jan 14 14:16:32 2022 -0500 + + Update 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md + +commit b54e666f5508af54932931561ecc0890771ba6aa +Author: Miles Reiter +Date: Fri Jan 14 14:13:54 2022 -0500 + + Update 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md + +commit 2a7fa52abea9a7fbdf332692b3ed8af7458f422d +Author: Aaron Beavers +Date: Fri Jan 14 14:09:23 2022 -0500 + + initial addition of files from miles repo + +commit bd1eeaaf7279bd9ce2cd9bbf617e902593fa72aa +Merge: 0d3bb5efe 24cf7c18e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jan 14 12:47:14 2022 -0500 + + Merge branch 'feat/1136-ams' into feat/1170-ams-for-ofa + +commit 0d3bb5efeffb9e560bcba8329e9f3f857e459b57 +Author: abottoms-coder +Date: Fri Jan 14 12:15:00 2022 -0500 + + Removing obsolete/dead Login.gov-specific get() + +commit f27d6dd319d9cc3b20a6af1e4cdd022053832f1c +Author: abottoms-coder +Date: Fri Jan 14 12:13:17 2022 -0500 + + Refactoring with Jorge + +commit 9064672ccbc9ea0824e1cd5bfcee5a6ca4c94adb +Author: abottoms-coder +Date: Fri Jan 14 11:51:20 2022 -0500 + + v12 was breaking my ubuntu environment, using latest resolves issues. + +commit aa2c966a330d17b38d4696079702aa089a56ae8c +Author: Aaron Beavers +Date: Fri Jan 14 11:39:18 2022 -0500 + + add owasp commands + +commit 882c81e2f51979b1a3a4e1daf68a534f039caffc +Author: Aaron Beavers +Date: Fri Jan 14 11:36:43 2022 -0500 + + tweaked a few commands and added namespaces + +commit 3a05c8511d086fdd61dcabfd2a5deb4078a3dc59 +Merge: 6cf1d1528 d009f7d27 +Author: Aaron Beavers +Date: Fri Jan 14 09:27:32 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label + +commit 802b48f4ae0a646e4b9f852cea207521e1fae295 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 13 17:15:27 2022 -0500 + + updated roadmap md + +commit b4faace3438a4ba06878ff1f6213ba426a548a78 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 13 17:14:17 2022 -0500 + + updated vision md + +commit 127e9972a2397269f15f3148c86509932d605b80 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 13 17:12:46 2022 -0500 + + updated considerations md + +commit 0f986d5aff13f57e250a44358b3c2223132f56c9 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 13 17:11:10 2022 -0500 + + del prodtastic md bc moved into considerations md + +commit bb88d8ef335c6f7338b505bf58bd3f0b1068ab93 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 13 17:09:13 2022 -0500 + + added readme with TOC + +commit 3197922b7660c2ddf6dd3ed370687cbfa467e913 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 13 13:41:02 2022 -0500 + + Update docs/Background/Current-TDRS.md + +commit 9fe49509d198849d135f41c50ed234d73da42ec9 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 13 13:40:56 2022 -0500 + + Update docs/Background/README.md + +commit 24cf7c18ed3c350e9be82245b427bf882d2bbed2 +Merge: e9855905a d009f7d27 +Author: Jorge Gonzalez +Date: Thu Jan 13 11:08:07 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 2b5856a8f51940fbe349301f4135f18f7f032af2 +Merge: a123bdf77 1857d57a1 +Author: abottoms-coder +Date: Thu Jan 13 10:50:20 2022 -0500 + + Merge branch 'issues/782-python-latest' of github.com:raft-tech/TANF-app into issues/782-python-latest + +commit a123bdf772a39a279653f7bfd7e5d2ae9a967d52 +Author: abottoms-coder +Date: Thu Jan 13 10:50:06 2022 -0500 + + Including patch now, retested locally + +commit 208fa0b89e1498b06cd37fd3fa62f6745bd7d73f +Author: abottoms-coder +Date: Thu Jan 13 10:45:43 2022 -0500 + + Melding Alex's context statement into the doc + +commit 0198b9ddc1ba4a331a5b72b724f708d3a21466ab +Author: abottoms-coder +Date: Thu Jan 13 10:39:10 2022 -0500 + + Feedback from review + +commit bf32f2036ccfd409e1d02cfdf5dd6ed179088be7 +Author: abottoms-coder +Date: Thu Jan 13 10:37:06 2022 -0500 + + Incorporating better pro/con from John's file + +commit e9be5979e0bbee66f3ace8ff62b475f1fc907d72 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 13 10:29:32 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit b87457f084c7a8e5709de36c4c1dc7ec449aa2c0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 13 10:29:26 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit d0e0b57eb87a29b0b481272e709ec239282c7e4c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 13 10:28:35 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 1d5129a11769069f28f8b6421c7edd7bc23c411f +Merge: 581a6bf12 d009f7d27 +Author: Jorge Gonzalez +Date: Thu Jan 13 09:39:54 2022 -0500 + + Merge branch 'raft-tdp-main' into build/854-npm-migration + +commit 17c0d3e4e932036003c109c299b11693787b49b5 +Author: Miles Reiter +Date: Wed Jan 12 22:31:13 2022 -0500 + + Rename 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History to 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md + +commit a133a3717e92d2fc093ebee876107d63ce28ddcc +Author: Miles Reiter +Date: Wed Jan 12 22:30:26 2022 -0500 + + Create 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History + +commit e449c87899cee61617c5c65041935db2fa4f0bf1 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 12 17:27:03 2022 -0500 + + Update docs/Background/Current-TDRS.md + + updated date + +commit b1fbfda3a732557114b90adaa69455050c4f1c41 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 12 17:18:12 2022 -0500 + + Update docs/Background/Current-TDRS.md + + fix link + +commit 99ffd69a7dffccb4c47f7b428453b83d59e8071a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 12 17:00:40 2022 -0500 + + Update docs/Background/Current-TDRS.md + + fixing link + +commit 7788c4cd2097cbd0dac01f11fdeaa16f25259f27 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 12 16:58:43 2022 -0500 + + Update docs/Background/Current-TDRS.md + + fixing link + +commit 127be17d4d487ef9ef8155f2f20b30d7a2adc57b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 12 16:38:44 2022 -0500 + + added TOC, updated tdrs and agency context, del prototype dir + +commit 634df30754c63d0795733a0ebc82a15fd41a778c +Author: abottoms-coder +Date: Wed Jan 12 16:08:30 2022 -0500 + + imperative mood wording fix + +commit 581a6bf12d0116b3e0c3189f838e0de54d74141c +Author: Jorge Gonzalez +Date: Wed Jan 12 14:53:31 2022 -0500 + + build(854): migrate from yarn to build/854-npm-migration + +commit e4d58b2ecd26c781b47fbf3b35997ac24becda9b +Author: abottoms-coder +Date: Wed Jan 12 15:54:48 2022 -0500 + + linter documentation fix + +commit e90fc073a8d09f8f71605a53f36eaa715514eda8 +Author: abottoms-coder +Date: Wed Jan 12 15:47:52 2022 -0500 + + minor pep8 fix + +commit c3ed42a7fc889d11571835bf52f55e59e59f22f5 +Author: abottoms-coder +Date: Wed Jan 12 15:47:14 2022 -0500 + + First sloppy version of handle_email + +commit d009f7d2730264714e5c34f4718690550ff4def4 +Merge: 6a951689f d4cd9d2ec +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 12 15:33:43 2022 -0500 + + Merge pull request #1454 from raft-tech/feat/1425-pa11y + + Fix pa11y screenshots + +commit b7f77d97c187ba3ae4ff3f72fb0e3caaa585ca83 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 12 15:09:54 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md + + Co-authored-by: Jorge Gonzalez + +commit 3874a959f1870040903dd41eaa34173ae59d8d07 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 12 15:09:49 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md + + Co-authored-by: Jorge Gonzalez + +commit e9855905a83c917b589489911015868fdb9e1461 +Author: Jorge Gonzalez +Date: Wed Jan 12 13:21:37 2022 -0500 + + build: fix codecov patch config + +commit d4cd9d2ec62b3a38ccc33ea361f3bf8965176ee2 +Merge: 08e017ae2 6a951689f +Author: Aaron Beavers +Date: Wed Jan 12 13:16:01 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1425-pa11y + +commit cbe12f1a2236ff565ef72309a2b974a1baf94c83 +Author: abottoms-coder +Date: Wed Jan 12 13:14:12 2022 -0500 + + linting fixes as it blocks deployment + +commit 922a95e8820a250cfbe8b29ed79eb68d19d12723 +Author: Jorge Gonzalez +Date: Wed Jan 12 13:01:58 2022 -0500 + + test: missing state nonce tracker case + +commit 82d67bbfcafcf99b0b7f5fd0014cf39758b423ec +Author: Aaron Beavers +Date: Wed Jan 12 12:17:23 2022 -0500 + + Move preventDefault inside condition + +commit 58b26bba4ce2e8b1046bfa73cb637a7cadf8f843 +Author: abottoms-coder +Date: Wed Jan 12 12:16:52 2022 -0500 + + Adding debug logging for looking at requests.META + +commit 901d628d990bbe2d1a753a11b0f29de30f123589 +Author: Jorge Gonzalez +Date: Wed Jan 12 11:38:25 2022 -0500 + + test: tweak customauthentication test + +commit 8344f6eecebbcac378bad941102ab24ff55abce5 +Author: abottoms-coder +Date: Wed Jan 12 11:27:54 2022 -0500 + + First draft, will submit to draft PR for feedback + +commit 813b0545ad3684123b88e1ec86c24ec8f91cc2a9 +Merge: 2e0476a34 6a951689f +Author: Jorge Gonzalez +Date: Wed Jan 12 09:15:17 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 1857d57a17daca23cd7117cc4d9566d4a40e7d64 +Merge: 59adf1523 6a951689f +Author: Jorge Gonzalez +Date: Wed Jan 12 09:13:35 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/782-python-latest + +commit 6a951689ff154e7cd9d5b041c4d8931e1a9d3276 +Merge: 84db84320 141151159 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 12 08:58:11 2022 -0500 + + Merge pull request #1533 from raft-tech/adp/1525-sr-updates + + Issue 1525: added readme to sprint review subdir + +commit a261afdf46a036a1fcfc9575c9bff0f28a0268f7 +Author: abottoms-coder +Date: Tue Jan 11 18:19:02 2022 -0500 + + Tests and code are working, side-stepped an inheritance issue, will need to refactor for cleanliness + +commit 54e630132cdbbb69d4076a6478a4947002128d31 +Author: abottoms-coder +Date: Tue Jan 11 17:00:34 2022 -0500 + + Admin test now uses acf email + +commit 586ec94efdc721c99f44f0322113ce26ca72bcc7 +Author: abottoms-coder +Date: Tue Jan 11 16:49:48 2022 -0500 + + It's messy, but I finally got a successful test on the base case for an admin user w/ acf email. Want to save state + +commit 59adf1523cb5b6577bb9663baa7a4b6bac0ea2ec +Merge: 874110421 84db84320 +Author: Jorge Gonzalez +Date: Tue Jan 11 14:10:01 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/782-python-latest + +commit 14115115906538510c7e42a378c173f71cc9f327 +Merge: cac15baaf 84db84320 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 11 13:37:36 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1525-sr-updates + +commit 84db84320840d105e2d9bece2d9e1a82aa320272 +Merge: a162830fd 0b9749ae7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 11 13:37:02 2022 -0500 + + Merge pull request #1531 from raft-tech/adp/1524-sc-updates + + Issue 1524: security-compliance subdir updates + +commit 0b9749ae70d6cbcb9066e2361ba83c96a27dff51 +Merge: 4e3cbe462 a162830fd +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 11 13:09:41 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/1524-sc-updates + +commit 547f48960be338bd8f3b4dda478ad0b02631c9c8 +Author: abottoms-coder +Date: Tue Jan 11 11:32:37 2022 -0500 + + Adding my tests to latest from 1136 AMS ticket/branch + +commit 2e0476a34f2597704c942f4384686cbeba201816 +Author: Jorge Gonzalez +Date: Tue Jan 11 11:24:20 2022 -0500 + + fix: change backend login_url redirect to frontend url + +commit 2b4391b931176810e01e5895736b7873bdb2ad5e +Merge: fff559de7 64c52406d +Author: abottoms-coder +Date: Tue Jan 11 10:25:45 2022 -0500 + + Merge branch 'feat/1136-ams' of github.com:raft-tech/TANF-app into feat/1136-ams + +commit 8741104218e7ff92f95c6afa12c82e30b9fa0f22 +Merge: 56ae9fb89 a162830fd +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jan 11 10:06:27 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/782-python-latest + +commit a162830fdd3389d72112619b730d8430165e44a3 +Merge: 4eecdc4d5 074ecb9c2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jan 10 17:28:22 2022 -0500 + + Merge pull request #1437 from raft-tech/feat/573-script-docs + + scripts directory README documentation + +commit 56ae9fb893bc007d541d3b84a337da1b30b47de3 +Merge: 5113af6d8 4eecdc4d5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jan 10 17:27:23 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/782-python-latest + +commit 5113af6d8d0bb5b92d0f2225a9f3fa4ff44e3766 +Author: abottoms-coder +Date: Mon Jan 10 17:16:51 2022 -0500 + + messed up my pipfile which is why flake8 wasn't found + +commit 231356f376e86751f3d167f5384177d70cf17795 +Author: abottoms-coder +Date: Mon Jan 10 16:55:59 2022 -0500 + + updating lock file + +commit 68d2c7dcf636321b83f03afebc36f4a2062f6812 +Author: abottoms-coder +Date: Mon Jan 10 16:51:23 2022 -0500 + + typos on these files, 3.10 + +commit 002b87304f79688dd30a42f8199844978b511b5e +Author: abottoms-coder +Date: Mon Jan 10 16:50:43 2022 -0500 + + trying 3.10 + +commit 21ab0539fdaa2d806f7648909810612d52424bf9 +Author: abottoms-coder +Date: Mon Jan 10 16:33:44 2022 -0500 + + Updates per running trufflehog locally + +commit 86d486f9f90393f8e7daef744aa425db5ebb7828 +Author: abottoms-coder +Date: Mon Jan 10 15:38:21 2022 -0500 + + python v3.9.9 instead + +commit 7b17a15ff0fc5a45aabbcb549e5b35ded0c3da43 +Author: abottoms-coder +Date: Mon Jan 10 15:35:55 2022 -0500 + + testing other changes + +commit 64c52406d23226e9c0daed024cce90212c536bc7 +Author: Jorge Gonzalez +Date: Mon Jan 10 15:26:02 2022 -0500 + + refactor: various nits and fixes + +commit cac15baaf64d5773e7a87bae9fd43bfddc8e4f77 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:26:54 2022 -0500 + + added readme to subdir + +commit 4e3cbe4627ca1db1ce19ddb048ad4e7e71e8a4ad +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:15:07 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit d95973e01244ced5e3fd9867bb5119e3f1aac919 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:13:26 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit b5fc0346a0b5c9987d358934246fae51537f8cb6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:12:47 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit 1e24b95172e4f7e21ae860f04361a1523d403a4a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:11:50 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit 900888874851d35e85f420bac2189598981c9656 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:11:08 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit ed10ccc00afb5398025a05302f4325a3b67c2ee8 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:08:41 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit a1a1ee78ea04d605cbd9728ab23c2b4141290794 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:03:41 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit 3fc5298c022158bc3295580536d18f296794dce6 +Author: Jorge Gonzalez +Date: Mon Jan 10 14:01:02 2022 -0500 + + fix: logout uri params + +commit 3fca280eea126727780bdc353686256d81b5451d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 14:00:21 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit 13f15315797ac00e918ab1e2b4e03f682f556601 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 13:59:09 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit 6fbd9bfd61441eeb9d5cdce4e946b11508d6c888 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 13:58:08 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + +commit 2146529293088eea4f3b1e893841a63463fab5ea +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 13:52:40 2022 -0500 + + Update docs/Security-Compliance/Secret-Key-Mgmt.md + + fixed broken link + +commit 033a2c158b62504de6b04325733bb75b3219f355 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 10 13:23:24 2022 -0500 + + updated TOC and secret key md + +commit 6cf1d1528aa6ee73edbd92471b964c1d37888341 +Author: Aaron Beavers +Date: Fri Jan 7 19:53:18 2022 -0500 + + add a11y label to frontend dependabot prs + +commit c38f229197b16f5d68b245babbf95093ade229a8 +Author: Jorge Gonzalez +Date: Fri Jan 7 16:18:09 2022 -0500 + + refactor: re-introduce ci success requirement + +commit 0ea550e81455e1d6a0649c6e11a6df2dadd85792 +Merge: e51a518fe 4eecdc4d5 +Author: Jorge Gonzalez +Date: Fri Jan 7 15:44:44 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit e51a518fe50b64637beb2bc658aa10ed1201c4ca +Author: Jorge Gonzalez +Date: Fri Jan 7 12:01:09 2022 -0500 + + test with ams state factory + +commit 4975b7b796842d6ec9202ab0f1c842b41172e5c7 +Author: Aaron Beavers +Date: Fri Jan 7 15:41:05 2022 -0500 + + name space migration functions + +commit 074ecb9c2a81d393af7763d86fbb286e3f879e11 +Author: Aaron Beavers +Date: Fri Jan 7 14:46:47 2022 -0500 + + Update "where its used" for deploy infrastructure sections + +commit 67eafa53083ff9c9b77a756d342a14b56af1f27a +Merge: cba5ae7e1 4eecdc4d5 +Author: Aaron Beavers +Date: Fri Jan 7 14:39:35 2022 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/573-script-docs + +commit 4eecdc4d5225715dc21de2aadf5f92841b05de66 +Merge: 5da0b91e5 cbe91433a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jan 7 12:11:56 2022 -0500 + + Merge pull request #1515 from raft-tech/adp/repo-doc-structure-update + + Issue 1477: Updated main readme, doc structure, and secret key md + +commit fff559de7013545f825ce8337a01fa4bd41b1c80 +Author: Jorge Gonzalez +Date: Fri Jan 7 12:01:09 2022 -0500 + + test with ams state factory + +commit 143794cd9eec504351090cd1ea21f046a5025330 +Author: Jorge Gonzalez +Date: Fri Jan 7 11:19:13 2022 -0500 + + test 2 + +commit fbf915f2803af2fcd86143073c1a92ec22bd93a4 +Author: Jorge Gonzalez +Date: Fri Jan 7 10:25:28 2022 -0500 + + test 2 + +commit 1ce9ae91ecb13f0b4f520fc87bc789f1bb189c99 +Author: Jorge Gonzalez +Date: Fri Jan 7 09:57:55 2022 -0500 + + test + +commit b70076ccc2db6bfbaff3f941466de133fda875ea +Author: Jorge Gonzalez +Date: Fri Jan 7 09:32:55 2022 -0500 + + style: lint + +commit 99b1174f5c3b5d26ea5726b0b857f9492b0de897 +Author: Aaron Beavers +Date: Thu Jan 6 14:51:41 2022 -0500 + + documented some functions, added several more + +commit 80aff15d1052a8da499055846208be9cb7843f8b +Author: Aaron Beavers +Date: Thu Jan 6 14:20:36 2022 -0500 + + resolve conflict with comments + +commit d1a7ac753c1a451df4847c29380436ab881eaf3e +Author: Jorge Gonzalez +Date: Thu Jan 6 14:18:35 2022 -0500 + + Update tdrs-backend/docs/remote-development.md + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 113a0193a5e0f03a55723d3ac0d69b9b8bafc7ff +Author: Jorge Gonzalez +Date: Thu Jan 6 14:18:28 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/login.py + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 7bb9234f753340f7113375cb53dc0f5e3b75d4c7 +Author: Jorge Gonzalez +Date: Thu Jan 6 14:18:20 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/login_redirect_oidc.py + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 9e7e68ab1744cc3d810de5e474cf617aa3ca825b +Author: Jorge Gonzalez +Date: Thu Jan 6 14:18:13 2022 -0500 + + Update tdrs-backend/tdpservice/users/api/utils.py + + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 30210191e629b4e1f157236e0fca180022d61808 +Merge: 4beb63a35 5da0b91e5 +Author: Jorge Gonzalez +Date: Thu Jan 6 14:14:59 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 9fd24ea2ca0c69562116520fc1c5a4f6f4507af8 +Author: Programming +Date: Thu Jan 6 10:51:34 2022 -0800 + + added commands and shell header + +commit cbe91433aa3083fafa3a4554af334fceb2b2a6f9 +Merge: be5d14346 17a95d7ec +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 6 12:25:04 2022 -0500 + + Merge pull request #1529 from raft-tech/issues/1477-ADR-conflict + + Moving 1082 ADR files into folder rename from 1515 + +commit 17a95d7ec879275f0d605f96f8d097f9b20c3d19 +Author: abottoms-coder +Date: Thu Jan 6 12:10:15 2022 -0500 + + Incorporating new changes from 1515 + +commit fe61d0d161239253531382eeb749fc2aa29a01ab +Author: abottoms-coder +Date: Thu Jan 6 12:06:13 2022 -0500 + + Moving 1082 ADR files into folder rename from 1515 + +commit be5d14346c0d93b4b8544687e819bc73ca5e8646 +Merge: c1c2c4233 5da0b91e5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 6 11:51:57 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/repo-doc-structure-update + +commit 5da0b91e52f9d811c4e73b82afa8af70ae0411cb +Merge: 72c0f9257 62a09c56f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 6 11:51:46 2022 -0500 + + Merge pull request #1488 from raft-tech/issues/1082-ADR-edits + + Issue 1082: Updating ADRs + +commit 4beb63a3530ec6df4fb4ca5f15f78126d77b62c2 +Merge: b3e8833de 72c0f9257 +Author: Jorge Gonzalez +Date: Thu Jan 6 11:24:47 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 62a09c56f6b3aa075d91bfca8e5e156610f7c180 +Merge: 842a7027f 72c0f9257 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jan 6 11:21:36 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/1082-ADR-edits + +commit 011ea0c307dd60b40c3535aed30730229b090c58 +Author: Aaron Beavers +Date: Thu Jan 6 11:08:26 2022 -0500 + + Added a few commands, not working + +commit 842a7027f6f7e3dd30d65a87cade664e87832631 +Author: abottoms-coder +Date: Thu Jan 6 10:41:37 2022 -0500 + + Moved ADRs to Technical Docs per request from ADPennington + +commit c1c2c4233afafb8b3f42b462cdb319e9491629d0 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 6 10:17:55 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/009-git-workflow.md + + spelling! + +commit 60a0f27567890d77124a1a45bf35dc2f9b9c8b85 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Jan 6 10:17:08 2022 -0500 + + Update docs/Technical-Documentation/Architecture-Decision-Record/009-git-workflow.md + + spelling! + +commit 15c10c2999607a326d2d5967025bf5bf4eefed83 +Author: Alexandra Pennington +Date: Thu Jan 6 10:05:48 2022 -0500 + + updated 009ADR with diagram + +commit de78fdc5a6bd01aa6ccbf0e5e002a9eb89ec7acc +Merge: 6a97c84a9 72c0f9257 +Author: Alexandra Pennington +Date: Thu Jan 6 09:47:58 2022 -0500 + + Merge branch 'raft-tdp-main' into adp/repo-doc-structure-update + +commit 6cf442dcd34f24fab6a8e73114d62b12286bc65d +Author: abottoms-coder +Date: Wed Jan 5 17:14:04 2022 -0500 + + Undoing local change for localstack + +commit 7cc45e53e34333c3c871e72a4e6ebbf6ae8f0927 +Author: abottoms-coder +Date: Wed Jan 5 17:13:34 2022 -0500 + + Updating to python3.10 using ppa:deadsnakes + +commit a4c0c5a0afb770fd8a244c11cb651ab407c89a2d +Author: Aaron Beavers +Date: Wed Jan 5 17:05:34 2022 -0500 + + Initial work done on command script + +commit 86833f5771811aa8e1c24075f589fcd505a7fc81 +Author: abottoms-coder +Date: Wed Jan 5 16:59:22 2022 -0500 + + Updated piplock and tested locally + +commit f5b445fb5b08197a5410dd2748019c08d216f807 +Merge: 3402b6837 72c0f9257 +Author: Jorge Gonzalez +Date: Wed Jan 5 16:22:22 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements + +commit 3402b6837d75339f7c6229b343d53e822d52f2f6 +Author: Jorge Gonzalez +Date: Wed Jan 5 16:22:08 2022 -0500 + + build: update django-admin-508 to 0.1.4 + +commit 72c0f925760d7ea27d4846e0cabc6591ffde7750 +Merge: e1921ef68 cf87ebece +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:43:02 2022 -0500 + + Merge pull request #1517 from raft-tech/valcollignon-patch-3 + + Update Team-Composition.md + +commit cf87ebece53f351de7aa9758ac20b7df210c91fd +Merge: 6e73dde68 e1921ef68 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:23:39 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-3 + +commit e1921ef68504e5dde5864c390e085499f47e351d +Merge: 3b8ac2303 545ae6ca3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:23:28 2022 -0500 + + Merge pull request #1469 from raft-tech/valcollignon-patch-2 + + Update communication-tools.md + +commit 545ae6ca34d216f47c98aef5496fd120479f4891 +Merge: 6cad76843 3b8ac2303 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:14:20 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-2 + +commit 3b8ac23032bdb5a032ae8192cd87a2cbebc58951 +Merge: 56e26e38b b126eb5d0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:14:03 2022 -0500 + + Merge pull request #1519 from raft-tech/lfrohlich-patch-5 + + Update Acquisition.md + +commit b126eb5d0530401c1586b38c705af3516487c723 +Merge: ce5d23552 56e26e38b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:06:02 2022 -0500 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-5 + +commit 56e26e38b6ec256d01894eb73aa99e7e7d5747c2 +Merge: 15cff6046 1656ea945 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 13:05:37 2022 -0500 + + Merge pull request #1382 from raft-tech/lfrohlich-patch-2 + + Update our-workflow.md + +commit 1656ea945834bbd33a903491635909908b60b410 +Merge: 1c288c2bf 15cff6046 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 12:58:04 2022 -0500 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-2 + +commit 15cff6046e2e414d9fec22dcb2fcabb06af0d4a0 +Merge: 61ba4c702 94cccf7a5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 12:57:23 2022 -0500 + + Merge pull request #1518 from raft-tech/valcollignon-patch-4 + + Create sprint-37-summary.md + +commit b3e8833ded300b96e1e9899aa7842ebc0c983dca +Merge: 87a0afbe7 61ba4c702 +Author: Jorge Gonzalez +Date: Wed Jan 5 12:51:31 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit 94cccf7a5f344894ff2a490a0eca135738b2ea01 +Merge: 415647971 61ba4c702 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 12:49:37 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-4 + +commit 61ba4c702f0ef8f99caf5a178187ba586b9662dd +Merge: 837574415 84765103b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jan 5 12:45:41 2022 -0500 + + Merge pull request #1509 from raft-tech/valcollignon-patch-1 + + sprint-36-summary.md + +commit 6cad76843300b76fb7e73e2bd621c3edaf9f239d +Merge: ea40e328f 837574415 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jan 5 09:27:16 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-2 + +commit 84765103bdab28caccd610c9963a23308130289f +Merge: ed487d518 837574415 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 4 17:13:20 2022 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 415647971f95573921311019fdd650d89b4b4e6a +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 4 17:11:03 2022 -0500 + + Update docs/Sprint-Review/sprint-37-summary.md + +commit ed487d518aec57561634b2ffc174659b76a45592 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 4 17:10:18 2022 -0500 + + Update docs/Sprint-Review/sprint-36-summary.md + +commit ce5d23552528b769bc6893e82dcc8f3d924caa23 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 4 17:04:32 2022 -0500 + + Update docs/Acquisition/Acquisition.md + +commit da5a95450480e7d3623899b12ea2fbda6b41767f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 4 16:54:47 2022 -0500 + + Update Acquisition.md + + Added COR delegation letter for Lauren Frohlich + +commit 3415f843ccbd89f689d628ae6c0f2a184332086a +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Jan 4 16:39:26 2022 -0500 + + Create sprint-37-summary.md + +commit 6e73dde68a957442ad2b99f5e7d9b637fc9ac50e +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Jan 4 14:52:36 2022 -0500 + + Update Team-Composition.md + +commit 0cf39591efbabeecbd741885e1ded27a3723d88f +Merge: 9233415d8 837574415 +Author: Aaron Beavers +Date: Tue Jan 4 14:35:35 2022 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1413-tooltip-improvements + +commit 6a97c84a9696c0b3b0a16da152f72e3b05091343 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 4 13:53:43 2022 -0500 + + Update README.md + +commit 3556117d30db4d26c087787ee6019122adc8bc7a +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 4 13:34:02 2022 -0500 + + updated main readme, doc structure, moved secret key md + +commit 824818916190d17e65bda30943c871b1c38fa6c8 +Merge: d9671c41c 837574415 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jan 4 08:31:56 2022 -0500 + + Merge branch 'raft-tdp-main' into issues/1082-ADR-edits + +commit 87a0afbe77897c3c6dec7c361fae3ae9283f9f80 +Author: Jorge Gonzalez +Date: Mon Jan 3 17:18:40 2022 -0500 + + test: fix and refactor login tests + +commit ddf2ac0bac1fabc742fab71c9f140c28ee7d7c99 +Author: Jorge Gonzalez +Date: Mon Jan 3 16:28:37 2022 -0500 + + test: add additional ams test + +commit ad04b8299ef210926e4f1278a6dc332c8f1ab057 +Merge: 1d0c5e78f 837574415 +Author: Jorge Gonzalez +Date: Mon Jan 3 16:00:36 2022 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit 1d0c5e78f198998416f6595f968263f0876f44da +Author: Jorge Gonzalez +Date: Mon Jan 3 11:22:39 2022 -0500 + + test: fix latest AMS tests and refactor fixtures + +commit 837574415af7c57e182684a75bbcf4d942d3b62a +Merge: 8dc8fa34b a559f52f7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jan 3 15:43:54 2022 -0500 + + Merge pull request #1513 from raft-tech/abottoms-coder-patch-1 + + Update 011-buildpacks.md + +commit a559f52f788077d1c5136646282a1488ebc96305 +Merge: 782ba0d63 8dc8fa34b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 3 15:30:43 2022 -0500 + + Merge branch 'raft-tdp-main' into abottoms-coder-patch-1 + +commit 782ba0d6388f2b52418185570cb0ff3595f2c048 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 3 15:30:12 2022 -0500 + + updated w/ ADR format and moved restaging steps into dropdown + +commit 1c288c2bff81735e167e80e315ec955b792038d7 +Merge: 9998253d1 8dc8fa34b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 3 15:06:50 2022 -0500 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-2 + +commit 8dc8fa34ba08458c7423180ff0813586ff6b0c8c +Merge: 069654062 4f4862d8e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jan 3 14:28:57 2022 -0500 + + Merge pull request #1514 from raft-tech/issues/1508-buildpack-update-48 + + Update buildpack-changelog.md + +commit 9998253d150c7b10f2ba55be3c90a5b6bf4d5b6b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 3 13:55:29 2022 -0500 + + Update docs/How-We-Work/team-charter/our-workflow.md + + link to workflows added + +commit d1c2da3935ed3259816babf533dd7dcb088c44e0 +Merge: 75bd068da 069654062 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 3 13:18:13 2022 -0500 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-2 + +commit 75bd068da98ea46e93e54da8f0d19bc25f29a2e5 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jan 3 13:14:26 2022 -0500 + + updated workflow md with diagram + +commit cba5ae7e1736b66e069de49e2ea34e6ae1c1a6ae +Author: Aaron Beavers +Date: Mon Jan 3 11:56:20 2022 -0500 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit d9671c41cda748aa50e0d5529a2cd745578042d7 +Author: abottoms-coder +Date: Mon Jan 3 11:55:38 2022 -0500 + + Updating numbering at the top of those that have been renamed for consistency + +commit 0a73f2c59f349ae901f20161359146c43a192687 +Author: abottoms-coder +Date: Mon Jan 3 11:54:03 2022 -0500 + + Per draft PR discussion, moved tabletop doc and updated numbering. + +commit 4f4862d8e4eb227e80aec9defb2701675ac7e881 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jan 3 11:19:48 2022 -0500 + + Update buildpack-changelog.md + +commit 8042070e898cffbd4ebb17b09cfb2c214cbaf855 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jan 3 11:03:39 2022 -0500 + + Update 011-buildpacks.md + + While following these steps, wanted to update formatting. + +commit 6af381e756e9bf91b77e9f78bb6bc701635cdb57 +Author: Aaron Beavers +Date: Mon Jan 3 10:27:18 2022 -0500 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit ca01dac398e29f007fd693ee19e9ed343cc174d7 +Author: Jorge Gonzalez +Date: Mon Jan 3 10:10:53 2022 -0500 + + fix: lockfile + +commit 39086dce369a43a1ec480feb6c9402fb2c604d1b +Merge: 1bbd391c9 069654062 +Author: Jorge Gonzalez +Date: Mon Jan 3 10:00:56 2022 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + + # Conflicts: + # tdrs-backend/Pipfile.lock + +commit d14e361dd7b7c3f490144b87dcde17a1ba74b5dd +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Dec 29 11:45:28 2021 -0500 + + updating 013,015, and 017 + +commit b5bd7f0319d8b9fb279cfb87a06043361e63ac38 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 28 15:53:20 2021 -0500 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit b2a3dc87d5ad757bed4a120813006f956d6473a4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 28 15:52:24 2021 -0500 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit dffd79adf7a5ae87cf1a93c8adf655c76cf45089 +Merge: 84493288a 0b03e1d5f +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 28 15:39:37 2021 -0500 + + Merge branch 'issues/1082-ADR-edits' of https://github.com/raft-tech/TANF-app into issues/1082-ADR-edits + +commit 84493288af741715b4dd1936bac922ba6e8cdc53 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 28 15:39:09 2021 -0500 + + updating 009,010,011,012, and 014 + +commit 0b03e1d5fcd0223bdb556873fe44dd6b22132684 +Merge: 334e98214 069654062 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Dec 27 14:56:53 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1082-ADR-edits + +commit 334e982141cc3d189fe4ea2026d12ee2c5414b2b +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Dec 27 14:55:32 2021 -0500 + + updating 005, 006, 007, and 008 + +commit 0696540626671600205d746142a42f1f972b15aa +Merge: 0951e65d9 a91493144 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 22 12:03:53 2021 -0500 + + Merge pull request #1503 from raft-tech/update/1502-django-3.2.10 + + update django to version 3.2.10 + +commit 32cc637a639b357f88e25e4da9468bb97ba58f14 +Merge: 099e3df2a 0951e65d9 +Author: Aaron Beavers +Date: Wed Dec 22 12:01:52 2021 -0500 + + Merge branch 'raft-tdp-main' into fix/1419 + +commit 099e3df2a96c2bf14f8e863ae77a2060c2d37cae +Author: Aaron Beavers +Date: Wed Dec 22 11:47:54 2021 -0500 + + remove white space + +commit bc57314031362a5d911725275360d4985f0b28e5 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Dec 22 11:26:59 2021 -0500 + + sprint-36-summary.md + +commit a9149314436b2a24bf7b5d9c28cef095c96fb2c2 +Author: abottoms-coder +Date: Tue Dec 21 13:35:34 2021 -0500 + + updated lockfile + +commit efd774ec780cadc7c8880c1bd633eaa196ba6e5a +Merge: d8908c409 0951e65d9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 21 10:27:23 2021 -0500 + + Merge branch 'raft-tdp-main' into update/1502-django-3.2.10 + +commit 0951e65d92462c6f774314b5ec600b3d47f6397b +Merge: 70fa36bbf fa7cfea21 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 21 10:24:46 2021 -0500 + + Merge pull request #1490 from raft-tech/fix/1143-dac-fonts + + build(1143): Update django-admin-508 with default fonts to address S3 CORS issues + +commit d8908c4098d046708ad9ab006f4b3bc5dcebe4da +Merge: ec09f5a74 70fa36bbf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 21 09:53:45 2021 -0500 + + Merge branch 'raft-tdp-main' into update/1502-django-3.2.10 + +commit fa7cfea213a53eab38bf874d61c90b3a7a65c038 +Merge: d996050b1 70fa36bbf +Author: Jorge Gonzalez +Date: Tue Dec 21 09:45:23 2021 -0500 + + Merge branch 'raft-tdp-main' into fix/1143-dac-fonts + +commit 70fa36bbfaa312a349e27a553727024fa3b80365 +Merge: 9233415d8 696ff9a2e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Dec 20 15:45:07 2021 -0500 + + Merge pull request #1501 from raft-tech/doc/1484-github-mattermost-connect + + Update communication-tools.md + +commit d996050b1d38fdd7107ceb0a7d18bb6a7587547b +Author: Jorge Gonzalez +Date: Mon Dec 20 15:23:48 2021 -0500 + + build: update django-admin-508 to 0.1.3 + +commit 696ff9a2eb6e490339eb0b01a0441f15687c2e02 +Merge: 1a238471a 9233415d8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Dec 20 15:20:10 2021 -0500 + + Merge branch 'raft-tdp-main' into doc/1484-github-mattermost-connect + +commit dd08aa3df74721d467555b7c7677296543c3bcec +Merge: aa7cde12c f9f19dea3 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Dec 20 13:06:38 2021 -0500 + + Merge branch 'issues/1082-ADR-edits' of https://github.com/raft-tech/TANF-app into issues/1082-ADR-edits + +commit aa7cde12cb05d1ce223cb6fecdd60294dfaab568 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Dec 20 13:05:58 2021 -0500 + + updating 001 and 003 + +commit f9f19dea34398ab89337d606f072d9a7b16c6c14 +Author: abottoms-coder +Date: Mon Dec 20 12:21:26 2021 -0500 + + Merged two ADRs in 008 and renamed other ADRs to have sequential numbering. + +commit 3a8a613be50439114a93043d930718269dd4593d +Author: abottoms-coder +Date: Mon Dec 20 11:49:36 2021 -0500 + + Updates to ADRs. Might consider deletion of 008, will discuss with Alex. + +commit 143dbf3d9091e1babc7f6a940db94a75d8997e2a +Author: abottoms-coder +Date: Mon Dec 20 11:10:38 2021 -0500 + + Having VM issues, rebooting partway + +commit 1bbd391c92c20efd20834e9b75744da569be65a1 +Author: Jorge Gonzalez +Date: Fri Dec 17 16:09:20 2021 -0500 + + test: abstract more of TestLoginAMS + +commit 15b8b1b392148baf43fb47d4ea5544f88c308f7c +Author: abottoms-coder +Date: Fri Dec 17 15:23:17 2021 -0500 + + Setting up template for standard formatting across all ADRs + +commit 7a1ccc5defed16ef1123c4b3ee53937eb6aaffa5 +Author: abottoms-coder +Date: Fri Dec 17 14:59:42 2021 -0500 + + final link fix, maybe + +commit 51663ce7e0a35ebfa12e63d070c66df2c881e922 +Author: abottoms-coder +Date: Fri Dec 17 14:58:19 2021 -0500 + + links again + +commit e3472403f3f6b0e5cd23880051c62016b7a0bbf9 +Author: abottoms-coder +Date: Fri Dec 17 14:55:35 2021 -0500 + + links again + +commit 32c74c66797548afb5f663d72e9fe46d4160c663 +Author: abottoms-coder +Date: Fri Dec 17 14:51:10 2021 -0500 + + fixing broken ToC links + +commit f2416b4c86215450353b139b5a83be194f7766da +Merge: 84a0479c4 0ce4e5aa0 +Author: abottoms-coder +Date: Fri Dec 17 14:48:13 2021 -0500 + + Merge branch 'feat/573-script-docs' of github.com:raft-tech/TANF-app into feat/573-script-docs + +commit 84a0479c415b5d76473ae35f816212ae206d7b9e +Author: abottoms-coder +Date: Fri Dec 17 14:48:03 2021 -0500 + + added ToC per Alex + +commit e9ebd98b4248dfac7774e42a85ccbc61e2f7af34 +Author: Jorge Gonzalez +Date: Fri Dec 17 13:21:01 2021 -0500 + + test: add TestLofinAMS class with local mock + +commit c5b0ce911e74318be61a777a7005eb003e708c7b +Author: Jorge Gonzalez +Date: Fri Dec 17 10:12:19 2021 -0500 + + feat: add ams logout handler + +commit 0ce4e5aa065bf8b972cda6fd98ccba0e9299bd6f +Author: abottoms-coder +Date: Thu Dec 16 15:41:25 2021 -0500 + + Added details in the sections for where they're used for the check scripts + +commit 711bb1e763a0c019b823be0d083a24095aff5cab +Author: Jorge Gonzalez +Date: Thu Dec 16 12:28:23 2021 -0500 + + test: add requests_mock and initial ams test + +commit ec09f5a743240f211717e8aa1749c7d00c781c03 +Author: Aaron Beavers +Date: Thu Dec 16 12:29:26 2021 -0500 + + update django to version 3.2.10 + +commit f1aa41869229728096aa48c772f59bd4bda5e82c +Merge: bca61fba3 9233415d8 +Author: Jorge Gonzalez +Date: Wed Dec 15 14:55:13 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit bca61fba3e13a481fdb2ea8043b5bd07a47223e7 +Author: Jorge Gonzalez +Date: Wed Dec 15 14:54:59 2021 -0500 + + docs: add remote development guide + +commit 9233415d830d9facde436e6cc8c768040e1ffe97 +Merge: 97869f4a4 9188b3ddc +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 14:43:56 2021 -0500 + + Merge pull request #1485 from raft-tech/valcollignon-patch-3 + + Create sprint-35-summary.md + +commit b81e107ac41180fab7c719924b56ef9a99aaa35c +Author: Aaron Beavers +Date: Wed Dec 15 14:40:26 2021 -0500 + + add more ignore comments + +commit 833743194d7b4788d6d798e6f459109b1d0f32cd +Merge: 3c9c4e546 97869f4a4 +Author: Aaron Beavers +Date: Wed Dec 15 14:38:48 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into fix/1419 + +commit 9188b3ddcf7013f4bc43c1da383db3a231c69659 +Merge: 87c959d42 97869f4a4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 14:29:47 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-3 + +commit 97869f4a4baf9ab2d9e4b1ae631e07846b223fa7 +Merge: 8cb75e27c e7d95394f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 14:29:36 2021 -0500 + + Merge pull request #1458 from raft-tech/valcollignon-patch-1 + + Create sprint-34-summary.md + +commit e7d95394f7f9ab18238356cf97faeb6bb3e091fc +Merge: 1022ebd4e 8cb75e27c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 14:21:32 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 7365d6c5a47b4f17edeacf5a312d99bddbe057c7 +Author: Aaron Beavers +Date: Wed Dec 15 14:06:35 2021 -0500 + + sync readme + +commit 1a238471ab4f8e5098125faebb072e310d652799 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 12:13:09 2021 -0500 + + Update communication-tools.md + +commit d2bd35d47bdde5a4aa647d676e6405b2a33f7b85 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 12:08:39 2021 -0500 + + Update communication-tools.md + +commit 8cb75e27c962cb972350868039dbf6f1c4330f7b +Merge: ddcf5f96a 989663145 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 15 10:50:00 2021 -0500 + + Merge pull request #1464 from raft-tech/build/1405-django + + build(1405): update django to 3.2.9 + +commit 93796f8a7149e0874aea5ac85f9023c765707b3f +Author: Jorge Gonzalez +Date: Tue Dec 14 16:37:18 2021 -0500 + + fix: auth test + +commit 48ff5130f5d845f4c2a86001a15f539c7d7f681f +Author: Jorge Gonzalez +Date: Tue Dec 14 14:40:02 2021 -0500 + + fix: django admin login url + +commit 712d1c0625d8560237e89f20678a42a5bbc055dd +Author: Jorge Gonzalez +Date: Tue Dec 14 13:33:45 2021 -0500 + + styles: fix lint issues, remove additional logs, remove unused vars, add docstrings + +commit e0c80cc1b920f4196a6fa32c2693dfe0a27bfa4b +Author: Aaron Beavers +Date: Mon Dec 13 15:32:05 2021 -0500 + + Got all existing tests to pass again + +commit 4df654556934ceac51dce23af2491516302721ac +Author: Aaron Beavers +Date: Mon Dec 13 15:31:46 2021 -0500 + + update frontend tests + +commit 3c9c4e546f9ff24be55e06560ab8cfafaaf5f995 +Author: Aaron Beavers +Date: Mon Dec 13 13:19:18 2021 -0500 + + removed some logs, added an ignore comment for jest + +commit 2419cbe6affbc7e9efcb2e8092a46c713820b784 +Author: Aaron Beavers +Date: Fri Dec 10 14:50:39 2021 -0500 + + update several tests + +commit 6265e0fc471d1ee7e8a5019928a41282e507b0f4 +Author: Aaron Beavers +Date: Fri Dec 10 13:54:46 2021 -0500 + + update import names and small url updates + +commit fc4144c672ef0b964983fad13d1b5fb247fccec1 +Author: Aaron Beavers +Date: Fri Dec 10 10:29:27 2021 -0500 + + fix tab key navigation order + +commit 92e8f93425e50bd8fdde69b10f15d60644609f84 +Merge: 9fab24ab4 ddcf5f96a +Author: Aaron Beavers +Date: Thu Dec 9 15:37:21 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into fix/1419 + +commit 8711fed37bfc7c9e16a4bd138542d2c62c769f5a +Merge: 455864bd6 ddcf5f96a +Author: Jorge Gonzalez +Date: Thu Dec 9 12:11:52 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit afacc4800bdb37276a5648b655791d7301f6ca83 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Dec 9 10:35:26 2021 -0500 + + Update 001 ADR template.md + +commit 9896631451455d4fd5bac7dbf93b0219e40227aa +Merge: 030ee3289 ddcf5f96a +Author: Jorge Gonzalez +Date: Thu Dec 9 10:28:20 2021 -0500 + + Merge branch 'raft-tdp-main' into build/1405-django + +commit ddcf5f96abba76b2d38249d0210faa1f3f35386b +Merge: 8fab7892f 1ef4aa465 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Dec 9 10:28:09 2021 -0500 + + Merge pull request #1486 from raft-tech/abottoms-coder-patch-1 + + Update 018-developer-tabletops.md + +commit 1ef4aa46582a3cdd97a38ff645e7601bac30064f +Merge: c758b180f 8fab7892f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Dec 9 09:38:17 2021 -0500 + + Merge branch 'raft-tdp-main' into abottoms-coder-patch-1 + +commit 455864bd6bac6e28a6a3a504e3321daa7b7e2787 +Author: Jorge Gonzalez +Date: Wed Dec 8 17:15:15 2021 -0500 + + feat: log in users via hhs + +commit 030ee3289fcb940db9921493a0f8c6f355fcaf06 +Merge: fe11123c6 8fab7892f +Author: Jorge Gonzalez +Date: Wed Dec 8 16:13:09 2021 -0500 + + Merge branch 'raft-tdp-main' into build/1405-django + +commit 8fab7892f64d330256aacf3c8a71e7c119220ccd +Merge: d96436a64 b521d9cb5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 16:07:02 2021 -0500 + + Merge pull request #1475 from raft-tech/issues/dependabot-security-alerts + + Dependabot security alerts + +commit c758b180f1a5a960e576ef6acfa63ce7326f2445 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 15:41:22 2021 -0500 + + Update 018-developer-tabletops.md + + Minor typo/tweak to formatting + +commit b521d9cb58a15d71ad6ef426f7a769197e79b06a +Merge: 988f6bfb4 d96436a64 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 15:29:47 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts + +commit d96436a641d47195a510dbefe7ce1a37448c94e9 +Merge: 2fa5c7be3 d94dbadc2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 15:29:39 2021 -0500 + + Merge pull request #1467 from raft-tech/fix/1451 + + fix(1451): remove sidenav menu for logged out users + +commit bd7d9eab4328c030d74f136862fcb85cb0e4066b +Author: Jorge Gonzalez +Date: Wed Dec 8 13:51:02 2021 -0500 + + refactor: remove ams client assertion func + +commit 5edd14dae597577b64457e84070156b5f52e970e +Merge: aed8323c7 2fa5c7be3 +Author: Jorge Gonzalez +Date: Wed Dec 8 13:48:43 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + + # Conflicts: + # tdrs-backend/docker-compose.yml + +commit aed8323c702491dcb9bc4bcc068781fcb053ec6d +Author: Jorge Gonzalez +Date: Wed Dec 8 13:47:25 2021 -0500 + + refactor: fix token request shape + +commit 9d64207011529a18ef37ae3586552dd815b17039 +Author: Aaron Beavers +Date: Wed Dec 8 12:31:58 2021 -0500 + + add arguements extracted from cf cli + +commit d94dbadc29da6c8b16fb9409a3da1c4c198a8813 +Merge: 940fec880 2fa5c7be3 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Dec 8 11:24:47 2021 -0500 + + Merge branch 'raft-tdp-main' into fix/1451 + +commit 08e017ae22024e83dae676cc85c46f3522a2a23e +Merge: 33d631809 2fa5c7be3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 11:17:10 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1425-pa11y + +commit 2fa5c7be3114ed8359fccb9482cf46b0175a3bc8 +Merge: e3ef55e45 01db1169b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 11:16:52 2021 -0500 + + Merge pull request #1457 from raft-tech/feat/1036-logging-level-by-env + + Logging level dictated by env var + +commit 4678b1fd74bdff255c9f8736ba0874a518fcbfd9 +Author: Aaron Beavers +Date: Wed Dec 8 11:11:34 2021 -0500 + + Add descriptions to deployment scripts + +commit 998925054a2758b8a58ea773cf00965eb4a74757 +Author: Aaron Beavers +Date: Wed Dec 8 11:08:57 2021 -0500 + + Add usage to deploy-backend fs + +commit fe11123c6eaa8f8b6565fc8f35a96dbe1f7552f5 +Merge: 519e46350 e3ef55e45 +Author: Jorge Gonzalez +Date: Wed Dec 8 10:30:25 2021 -0500 + + Merge branch 'raft-tdp-main' into build/1405-django + +commit 940fec8806e2e0b0d4917289c1d52d8394df964f +Merge: 3db67c6fe e3ef55e45 +Author: Jorge Gonzalez +Date: Wed Dec 8 10:09:30 2021 -0500 + + Merge branch 'raft-tdp-main' into fix/1451 + +commit c205f9ba9498917de0c7602c5f0edd83573d4b9c +Author: Aaron Beavers +Date: Wed Dec 8 09:59:36 2021 -0500 + + update usage + +commit 01db1169b131d3d06b0c18fa601824e3d06d620b +Author: abottoms-coder +Date: Wed Dec 8 09:56:29 2021 -0500 + + reverting localstack version change -- was previously grasping at straws + +commit 67460d27b0155eea65f24375dc37e2593b167ad1 +Merge: 0eecd5803 9167448c4 +Author: Aaron Beavers +Date: Wed Dec 8 09:52:44 2021 -0500 + + Merge remote-tracking branch 'origin/feat/573-script-docs' into feat/573-script-docs + +commit 0eecd58031770b5adbd04f598aaf0b4e750c9559 +Author: Aaron Beavers +Date: Wed Dec 8 09:50:59 2021 -0500 + + add real world examples for zap-scanner.sh + +commit 90db30d868f2e8bdc29e567495469c0166be8c40 +Author: abottoms-coder +Date: Wed Dec 8 09:46:49 2021 -0500 + + Need to tell CircleCI to pull the environment variable into the docker container for TDP/backend + +commit a318fa66511c265f7be1d2b0cf3bebc0cbd88f78 +Merge: 7e70c51e2 e3ef55e45 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Dec 8 09:27:08 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit 988f6bfb4d085762179861329c018c286355d082 +Merge: d6637af46 e3ef55e45 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Dec 8 08:30:55 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts + +commit 87c959d42220acaa7bfa8c08b9a8484de897eaf1 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Dec 7 20:02:02 2021 -0500 + + Create sprint-35-summary.md + +commit 7e70c51e2a25bf5f8c84dc963d44558355fe5025 +Merge: 9dd4358b1 846a4382c +Author: abottoms-coder +Date: Tue Dec 7 17:00:56 2021 -0500 + + Merge branch 'feat/1036-logging-level-by-env' of github.com:raft-tech/TANF-app into feat/1036-logging-level-by-env + +commit 9dd4358b138a1469ebca66457913105cf92702c5 +Author: abottoms-coder +Date: Tue Dec 7 17:00:45 2021 -0500 + + Trying latest localstack version (13.0), resolves issue locally + +commit e3ef55e4584b23f590a9eca97df262c49f0d576e +Merge: ea4df7fa6 2fcaec070 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 14:19:01 2021 -0500 + + Merge pull request #1465 from raft-tech/1406-git-secrets-bug + + git-secrets-check PATH update + +commit d6637af460bf66c1e13717fd9e3987bb3cdb8485 +Merge: 7e11a16e3 ea4df7fa6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 7 11:38:56 2021 -0600 + + Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts + +commit 846a4382c93fd6b6459d856811f650103ab87d98 +Merge: 600260078 ea4df7fa6 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 12:35:48 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit 2fcaec07020be213b20804e34e2968d8f2dc243e +Merge: 52fcc06f3 ea4df7fa6 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 12:35:33 2021 -0500 + + Merge branch 'raft-tdp-main' into 1406-git-secrets-bug + +commit ea4df7fa683e1e95f6d01003884dcf5856343f0d +Merge: cd1a5f699 2d08acb01 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 12:35:09 2021 -0500 + + Merge pull request #1430 from raft-tech/issues/1165-zap-cache-control-header + + Issue 1165: Resolve Cache Control header error by ZAP + +commit 2d08acb01949db70d976268a8396b6659743671b +Merge: 2d9c038a6 cd1a5f699 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 12:25:11 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit 6002600782a828f763e1305e8a9f608c0187ace1 +Merge: 2c96f127c cd1a5f699 +Author: John Willis +Date: Tue Dec 7 12:23:13 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit 33d631809f842f871f8fc1ce095df0716cdfd714 +Author: Aaron Beavers +Date: Tue Dec 7 12:10:56 2021 -0500 + + remove /login test + +commit 52fcc06f355e836f757a4dfc1b8fa6c225858282 +Merge: 2b3caa0eb cd1a5f699 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 7 10:51:20 2021 -0600 + + Merge branch 'raft-tdp-main' into 1406-git-secrets-bug + +commit cd1a5f699c99a00e89adbede1ea1c8da81ac8b79 +Merge: 1b806880c 1e08ef68b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 11:45:56 2021 -0500 + + Merge pull request #1473 from raft-tech/valcollignon-patch-6 + + Delete team-charter.md + +commit 399ac397d1283e2efbe6d97166af510956499b86 +Author: Aaron Beavers +Date: Tue Dec 7 10:26:13 2021 -0500 + + add a list of possible deployment strategies + +commit 7e11a16e3295d11f9690e4adeac37e176edf8da1 +Merge: f39faeb90 1b806880c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 10:20:50 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts + +commit 606633b0990141e7e992898427a1884b9e8b857c +Merge: 4123cce5a 1b806880c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 7 09:15:43 2021 -0600 + + Merge branch 'raft-tdp-main' into feat/1425-pa11y + +commit 2b3caa0eb685dcf150c5091a8d0ae96fd184ece4 +Merge: 7492e14c7 1b806880c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 7 08:40:04 2021 -0600 + + Merge branch 'raft-tdp-main' into 1406-git-secrets-bug + +commit f39faeb90aeb3e785720758181008c96eec073dd +Author: abottoms-coder +Date: Tue Dec 7 09:29:03 2021 -0500 + + Updates to resolutions per code review + +commit 2c96f127c6817092be9bcf08b658b5d6b9b2009b +Merge: 77fd76538 1b806880c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 7 08:17:38 2021 -0600 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit 2d9c038a637037afd5e22f63250f6c9018ad4d43 +Merge: 3dc4c712d 1b806880c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Dec 7 08:14:55 2021 -0600 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit 1e08ef68ba91eb309ac19b0a002f2dfcc7fb3c18 +Merge: 5fcaa83ef 1b806880c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 09:11:15 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-6 + +commit 1b806880ca07252f1a062200ace73e8503ea0564 +Merge: 81a834ce8 42e68a69d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 09:11:05 2021 -0500 + + Merge pull request #1474 from raft-tech/issues/1427-remove-cypress + + Issue 1427: Remove usage of Cypress in the project + +commit 42e68a69d0c98f88daa5a5d40f2d0b23c5d1a2a3 +Merge: 405981110 81a834ce8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Dec 7 09:00:38 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1427-remove-cypress + +commit 3dc4c712dd1dfc57e86a440a0a026fde16af7ef0 +Merge: 5766da4a4 81a834ce8 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Dec 6 14:49:38 2021 -0600 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit b7fb6b32e62c53aaece245044f3bd3e243e5f88c +Merge: ad0909118 81a834ce8 +Author: Jorge Gonzalez +Date: Mon Dec 6 15:46:55 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit ad0909118020c83bc711c62a17cb473d2acecebb +Author: Jorge Gonzalez +Date: Mon Dec 6 15:35:46 2021 -0500 + + refactor: test new token endpoint payload + +commit 519e463500e5e17cb0ecaf5731817ae34430bc5f +Merge: fbc70e3ba 81a834ce8 +Author: Jorge Gonzalez +Date: Mon Dec 6 15:37:29 2021 -0500 + + Merge branch 'raft-tdp-main' into build/1405-django + +commit 9167448c4857a52c104011b288bd23b7e80fb7bb +Author: Aaron Beavers +Date: Mon Dec 6 11:55:24 2021 -0500 + + Add description to zap scanner and expand usage + +commit 864791434116a8858b883edc401408dbee6be58d +Author: Aaron Beavers +Date: Mon Dec 6 11:39:03 2021 -0500 + + sync with hackmd + +commit 7492e14c7827ca5d107bc930ea1a6cc41398d789 +Merge: a786e8f4a 81a834ce8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Dec 6 11:17:49 2021 -0500 + + Merge branch 'raft-tdp-main' into 1406-git-secrets-bug + +commit 5fcaa83efdf479e7bb3f3c08d46a02779b59f436 +Merge: 15cffafe0 81a834ce8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 16:57:38 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-6 + +commit 81a834ce876374bc2413c96db312aef67a43e6f6 +Merge: e2b34d39e 79de86f3a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 16:56:04 2021 -0500 + + Merge pull request #1470 from raft-tech/valcollignon-patch-3 + + Update team-meetings.md + +commit 5766da4a41c290266e6d44b1bbeaf5d968bbae93 +Merge: 72ce5ca40 e2b34d39e +Author: John Willis +Date: Fri Dec 3 16:21:26 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit 4059811107e5b539633318a0d036c8ab2098d5b2 +Merge: c0d5bcf46 e2b34d39e +Author: John Willis +Date: Fri Dec 3 16:21:07 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1427-remove-cypress + +commit 79de86f3a827e13a73af92f0de975f7eeed50cc1 +Merge: ceca54b74 e2b34d39e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 16:18:07 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-3 + +commit e2b34d39e68bdbe7f40a09ef33920a525ddad341 +Merge: 93f49eff0 dd3b47be0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 16:17:53 2021 -0500 + + Merge pull request #1471 from raft-tech/valcollignon-patch-4 + + Update sprint-schedule.md + +commit dd3b47be0129aeb056ecd1954b463c536fe7240e +Merge: 2398f8065 93f49eff0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 16:05:08 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-4 + +commit 15cffafe02eac95632e60fe556b6c7bbe559b55d +Merge: fdad16776 93f49eff0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 16:04:55 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-6 + +commit ceca54b74967017d4b4b7ac3dcf4685bc9eadf52 +Merge: 3c416f777 93f49eff0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 15:20:10 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-3 + +commit 93f49eff006955a32e60df4c3897fe1064dc0c91 +Merge: 84c4bf76a add68480a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 15:19:51 2021 -0500 + + Merge pull request #1472 from raft-tech/valcollignon-patch-5 + + Update our-team-and-values.md + +commit 4123cce5ac2856521302b2cd50b3d38ca2e3ebfa +Author: Aaron Beavers +Date: Fri Dec 3 12:52:51 2021 -0500 + + Update tdrs-frontend/src/index.js + + Co-authored-by: John Willis + +commit 28f99e1ce471ef2e1115bf813ea4957b963999dd +Merge: ff12e2647 84c4bf76a +Author: Aaron Beavers +Date: Fri Dec 3 12:38:49 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1425-pa11y + +commit 77fd76538af82c13ffbea04b587887f9b6a5b431 +Author: abottoms-coder +Date: Fri Dec 3 11:45:35 2021 -0500 + + Merge conflict linter update + +commit 3c416f777fa4e42ffa802ab159582df493e9b8eb +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Dec 3 11:39:44 2021 -0500 + + Update docs/How-We-Work/team-charter/team-meetings.md + +commit f7e07aadc308a00d83ed2a671e3817c376539df6 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Dec 3 11:39:39 2021 -0500 + + Update docs/How-We-Work/team-charter/team-meetings.md + +commit 25832d0d3438ab5114232a206291dfb081c8c424 +Merge: b4372b58d 84c4bf76a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Dec 3 11:32:32 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit 07df5daf8ab27cf98ef87b2214e804ec648a4333 +Author: abottoms-coder +Date: Fri Dec 3 11:29:38 2021 -0500 + + Updating dependencies per alerts from dependabot + +commit 9fab24ab4b3b21b3bad7ec6311482312a1dd55e5 +Author: Aaron Beavers +Date: Thu Dec 2 16:18:57 2021 -0500 + + Work on tablocking header menu + +commit 97a4fac1b72e138c402ca67ee978c621c4129f4d +Merge: 4f663c2a0 84c4bf76a +Author: Jorge Gonzalez +Date: Thu Dec 2 10:16:10 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 4f663c2a0631d27b7d042a448da11baeb8a18bdc +Author: Jorge Gonzalez +Date: Thu Dec 2 10:16:02 2021 -0500 + + refactor: add temp loggers + +commit a786e8f4ac1ef0e0d10284f49bc32d48c0b09139 +Author: abottoms-coder +Date: Thu Dec 2 10:00:18 2021 -0500 + + prepping for final review + +commit 6de41091b0a6c899281279e9c5efe5ebbc04d524 +Author: abottoms-coder +Date: Thu Dec 2 09:59:09 2021 -0500 + + wanting to prove secrets finds secrets + +commit 016312eddf0ee67534545f4783abf1a3c187c7ca +Author: abottoms-coder +Date: Thu Dec 2 09:56:25 2021 -0500 + + other improvements + +commit 2480c4d581b50779e1339c1da43bfefa60794bb7 +Author: abottoms-coder +Date: Thu Dec 2 09:50:45 2021 -0500 + + seriously? a single period. + +commit bd2c80a7fa5c00a4c02ffdb02f46695bbdb395c7 +Author: abottoms-coder +Date: Thu Dec 2 09:46:36 2021 -0500 + + try 2 + +commit c72fd154284dd940309b36610795c1163e6b5ee6 +Author: abottoms-coder +Date: Thu Dec 2 09:32:26 2021 -0500 + + Trying something discussed in code review + +commit 13d5ced8c136c2a112b233dd9a9c171bca2e5b3a +Author: Jorge Gonzalez +Date: Wed Dec 1 14:53:05 2021 -0500 + + refactor: update ams redirect uris + +commit 72ce5ca40a4644ec5be6db2a3a0904cc435e145b +Merge: 384f39828 84c4bf76a +Author: John Willis +Date: Wed Dec 1 13:25:09 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit c0d5bcf46e9e2f5cab3cdbb9256e275c035f0495 +Author: John Willis +Date: Wed Dec 1 13:20:56 2021 -0500 + + Added missing link to pa11y for frontend README + +commit f99dba82748a769725e97d8ccbfed1e3057fb307 +Author: John Willis +Date: Wed Dec 1 13:18:29 2021 -0500 + + Regenerated yarn.lock + +commit 91061f0ea48d86ba9b0758a313b54a4e5f5c3567 +Author: John Willis +Date: Wed Dec 1 12:54:45 2021 -0500 + + Removed Cypress from the project + +commit fdad167762178e3c284fdd398c7d29e16369ce66 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Dec 1 12:26:24 2021 -0500 + + Delete team-charter.md + +commit add68480a625db7788e9877d5c4bc3d71d5a4da2 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Dec 1 11:36:27 2021 -0500 + + Update our-team-and-values.md + +commit 2398f8065070d53e05d1c9d9089b57178231ef74 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Dec 1 11:32:55 2021 -0500 + + Update sprint-schedule.md + +commit 02852de247491facc264b40cf78f927e0a4f2860 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Dec 1 11:26:14 2021 -0500 + + Update team-meetings.md + +commit ea40e328fefece3bc422037fafc59487e2463bfc +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Dec 1 11:21:48 2021 -0500 + + Update communication-tools.md + +commit f51bc9551e7c496fbf51d4ae3f2b6449972c35ee +Author: Aaron Beavers +Date: Wed Dec 1 10:22:39 2021 -0500 + + Update zap scanner description + +commit f5fac436253cf262ced981a5e0572298a9382b4a +Author: Aaron Beavers +Date: Wed Dec 1 10:22:20 2021 -0500 + + Rewording some of the checks descriptions + +commit 14efedf3339bdbfff06ede15be5091164d9b927c +Author: Jorge Gonzalez +Date: Tue Nov 30 17:16:12 2021 -0500 + + fix: sidenav focus issue with keyboard navigation + +commit 3db67c6fe8abadee48b50b89edb6961015d2ad7e +Author: Jorge Gonzalez +Date: Tue Nov 30 16:19:39 2021 -0500 + + fix: remove sidenav menu for logged out users + +commit fc6f43a99784857603eca1f35c848bf754731952 +Author: abottoms-coder +Date: Tue Nov 30 14:45:58 2021 -0500 + + Found issue with pull request template, the interjection of the word 'issue' was breaking the linking functionality. + +commit 8e0046e5908839f572db46994cbc481ddc99e1a5 +Author: abottoms-coder +Date: Tue Nov 30 14:34:07 2021 -0500 + + Reverting superfluous changes that don't fix bug + +commit 7526ae26ea777f3b033b9c2c8881c468182a258b +Author: abottoms-coder +Date: Tue Nov 30 14:27:44 2021 -0500 + + Was able to recreate git 'secrets' not found in image. Changing path in script there seemed to resolve + +commit 69fd9829281d2df4cc1512be20fe4eb50d18a24f +Author: abottoms-coder +Date: Tue Nov 30 14:15:51 2021 -0500 + + Shell into same image CircleCI use shows the an issue with github not cloning -- recent stackoverflows show to use https which works. + +commit fbc70e3baabc0976f06b12c563091a479f5b9e1b +Author: Jorge Gonzalez +Date: Tue Nov 30 13:55:18 2021 -0500 + + build: update django to 3.2.9 + +commit 78ed07a73f40b43e3c484befd62aa62f1a87f94e +Author: abottoms-coder +Date: Tue Nov 30 13:49:06 2021 -0500 + + Adding some error checks and an explicit bash call vs checking $PATH + +commit 03eda0088f0ea3003411caa8d02644cd8283820a +Author: Aaron Beavers +Date: Tue Nov 30 13:32:11 2021 -0500 + + Mostly moving sections around to make more sense + +commit 614ff5aaa53e6c87181ed39673815fc783ed2ce0 +Author: Aaron Beavers +Date: Tue Nov 30 13:31:49 2021 -0500 + + Remove description + +commit 82fc9f6ea2f184309c82bf31e4522ff744c593dc +Author: Aaron Beavers +Date: Tue Nov 30 13:29:19 2021 -0500 + + Add references to real inputs + +commit 84c4bf76a3a31416c474df63225c8f8d084297de +Merge: ad0c0fb38 d9fb23d0a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 30 13:21:55 2021 -0500 + + Merge pull request #1450 from raft-tech/ops/1447-node + + build(1447): As a developer, I want to use an LTS version of Node in the project + +commit 4dc5ff311ba99534e9550026917ebda5fe2ec8f2 +Merge: 57bb813f0 ad0c0fb38 +Author: Jorge Gonzalez +Date: Tue Nov 30 12:50:04 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit 384f39828e52f17f1c09164686b3a2ccf1c48a79 +Merge: 60f2d4ca1 ad0c0fb38 +Author: John Willis +Date: Tue Nov 30 09:57:59 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit d9fb23d0a03f0d5047bcd818f2989669340f6d71 +Merge: bfa0f4583 ad0c0fb38 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 30 09:56:54 2021 -0500 + + Merge branch 'raft-tdp-main' into ops/1447-node + +commit ad0c0fb38d9d81f6b81e75760a0340bcfadf4fa0 +Merge: 931a9bfc7 fbed5e005 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 30 09:56:37 2021 -0500 + + Merge pull request #1448 from raft-tech/issues/1403-zap-500-errors + + Issue 1403: Fix 500 errors found by ZAP scans + +commit fbed5e005eb04c142c8fc7e850cf3ebabfff18b7 +Merge: ab3337cf8 931a9bfc7 +Author: John Willis +Date: Wed Nov 24 15:43:56 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1403-zap-500-errors + +commit ff12e26470789ead3ff4b37822fc26cd95a7cfb6 +Merge: f0a853086 363c822b2 +Author: Aaron Beavers +Date: Wed Nov 24 11:36:14 2021 -0500 + + Merge remote-tracking branch 'origin/feat/1425-pa11y' into feat/1425-pa11y + +commit f0a853086c83ba24c98d49d3ff77e18464c23115 +Author: Aaron Beavers +Date: Fri Nov 19 13:22:01 2021 -0500 + + Revert "Auto stash before rebase of "origin/raft-tdp-main"" + + This reverts commit 0bcbfe0868d88bd8e7d6c682bb4236198bb06efa. + +commit 363c822b251b3409ee39012536e60cf734e0526e +Merge: a1baf3f01 931a9bfc7 +Author: Aaron Beavers +Date: Wed Nov 24 11:34:34 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1425-pa11y + +commit 57bb813f0e523c33c44a7c61edfe25d1abfedb79 +Author: Jorge Gonzalez +Date: Tue Nov 23 17:10:31 2021 -0500 + + fix: ams request auth scope + +commit 1022ebd4e05ceb72e4c13125c336c37246b7ff31 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Nov 23 16:25:29 2021 -0500 + + Create sprint-34-summary.md + +commit b4372b58dffe54a55f638572c61d2ca09e92cf8b +Author: abottoms-coder +Date: Tue Nov 23 16:07:15 2021 -0500 + + Feedback from PR + +commit 9a0c96ce252023bc91d3d88922bc56c694c41514 +Author: abottoms-coder +Date: Tue Nov 23 11:54:43 2021 -0500 + + Removing unused imports after refactor + +commit 2ed5a15f2fbce43eff617024af7476839e8c52ca +Merge: bf3d70bd6 77552c8e4 +Author: abottoms-coder +Date: Mon Nov 22 15:50:09 2021 -0500 + + Merge branch 'feat/1036-logging-level-by-env' of github.com:raft-tech/TANF-app into feat/1036-logging-level-by-env + +commit bf3d70bd63671e287a5f0c3e284c27163c03cb9e +Author: abottoms-coder +Date: Mon Nov 22 15:50:01 2021 -0500 + + Changes from working with John + +commit 8038971fead62a393660dc34394a10443270e8e0 +Author: Aaron Beavers +Date: Mon Nov 22 15:47:20 2021 -0500 + + Apply suggestions from code review + + Co-authored-by: John Willis + Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> + +commit 73302ee5d0c42a7dc0a5dd219b78a5c41b71194f +Merge: dff0627e6 931a9bfc7 +Author: Jorge Gonzalez +Date: Mon Nov 22 15:42:37 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit dff0627e688b4457c55f4e7ca0725e15f655ba3e +Author: Jorge Gonzalez +Date: Mon Nov 22 15:42:26 2021 -0500 + + build: add ams vars to docker-compose + +commit 60f2d4ca16a8b957fffcca382f498b09162e5f80 +Merge: af61b410a 931a9bfc7 +Author: John Willis +Date: Mon Nov 22 14:14:00 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit a1baf3f01ebe4654a549c563388785a54b0367ab +Author: Aaron Beavers +Date: Mon Nov 22 14:11:47 2021 -0500 + + Add to be visible to action statement + +commit 77552c8e440016cf8edd4fa4fe2269a8daf160ff +Merge: 67222fa60 931a9bfc7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 11:12:40 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit 67222fa60491ed204b9b169264a8dcf1585255b4 +Merge: 14091d0d0 00b670e33 +Author: abottoms-coder +Date: Mon Nov 22 11:11:28 2021 -0500 + + Merge branch 'feat/1036-logging-level-by-env' of github.com:raft-tech/TANF-app into feat/1036-logging-level-by-env + +commit 14091d0d04782376aa9739544fdb24e5d2c82143 +Author: abottoms-coder +Date: Mon Nov 22 11:11:22 2021 -0500 + + linter complains about line-length + +commit 931a9bfc7f423c050a2a543ea251a1811c8ec3ae +Merge: e233ed34e 8699b4a6f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 11:08:27 2021 -0500 + + Merge pull request #1407 from raft-tech/spike/1347-shared-cloud-services + + Update to environments to show new databases in RDS service + +commit 00b670e33b78d9958770928f6c90d9c3212b7614 +Merge: a2f59ebc0 e233ed34e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 10:54:22 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env + +commit a2f59ebc0cfd491a249833e432d5e399a177a2a2 +Author: abottoms-coder +Date: Mon Nov 22 10:45:42 2021 -0500 + + Made the level used almost universally. I did not modify wait_for_postgres as it's not in the django app. + +commit 8699b4a6f1b1737ec8ccefdc5b95249e940166c6 +Merge: 785e9ed80 e233ed34e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 10:41:05 2021 -0500 + + Merge branch 'raft-tdp-main' into spike/1347-shared-cloud-services + +commit e233ed34e25c6af38abfba3be5711f64105a4461 +Merge: 935cbc8ee 82bb05333 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 10:40:56 2021 -0500 + + Merge pull request #1424 from raft-tech/issues/1108-data-files-redux-state + + Issue 1108: Fix state issues with Data Files Download button + +commit 82bb05333e319443deb5ef66771807de59b9d4b8 +Merge: f8eb150b3 935cbc8ee +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 10:09:12 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state + +commit 935cbc8eeb25464c19047a379e3c46842d7dff80 +Merge: eac106ff9 4e3f2614e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 10:09:04 2021 -0500 + + Merge pull request #1453 from raft-tech/ops/1452-buildpacks-restage + + docs(1452): update buildpack-changelog.md after restage updates + +commit 4e3f2614e96baf77db2039b71b890c6f7579f074 +Merge: 162292b30 eac106ff9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 10:00:48 2021 -0500 + + Merge branch 'raft-tdp-main' into ops/1452-buildpacks-restage + +commit f8eb150b3cbb74a582fdf9c993c2ddf0153aebf3 +Merge: 53a3d3018 eac106ff9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 09:42:27 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state + +commit eac106ff9216cac121a522b3f03d4c6f26835560 +Merge: 250db18a2 e0257486e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 22 09:42:14 2021 -0500 + + Merge pull request #1383 from raft-tech/feat/1331-splashpage + + Issue 1331: Change splash page background image + +commit 9283ace23a94a10886d5969e1a28de822bb49a09 +Author: Aaron Beavers +Date: Mon Nov 22 08:48:27 2021 -0500 + + add , lint + +commit a97559687075f5a06442e13a08ecbc8e494e319d +Author: Aaron Beavers +Date: Fri Nov 19 14:15:48 2021 -0500 + + lint and cleanup + +commit 0bcbfe0868d88bd8e7d6c682bb4236198bb06efa +Author: Aaron Beavers +Date: Fri Nov 19 13:22:01 2021 -0500 + + Auto stash before rebase of "origin/raft-tdp-main" + +commit 42fbdfb9c033e1e3c530df7f105ad173ab1438ae +Author: Aaron Beavers +Date: Fri Nov 19 13:17:41 2021 -0500 + + fix dispatch + +commit cf19418edb85fb45fa1cace4754d48ef8191273b +Author: Aaron Beavers +Date: Fri Nov 19 13:17:22 2021 -0500 + + Add logs end pont + +commit dfdd009af6ef4ee73cbdffe40840e44cb50e4fc4 +Author: Aaron Beavers +Date: Fri Nov 19 13:16:12 2021 -0500 + + add pa11y actions + +commit 24e95a8bd53ef69f2eea64324663e73991568c98 +Author: Aaron Beavers +Date: Thu Nov 18 11:33:20 2021 -0500 + + move mirage start call + +commit 2fd8c2d83a40fb7ea72e9f942bd6c8e6c75f7f2b +Author: Jorge Gonzalez +Date: Fri Nov 19 13:05:27 2021 -0500 + + build: tweak for test deployments + +commit f5e4bdef99db181bba02d60d5d83007c31e9e291 +Author: Jorge Gonzalez +Date: Fri Nov 19 12:48:08 2021 -0500 + + fix: add hhs_id to admin.py + +commit 2a0a1a5fa811b2e72e6137054f0003957106af85 +Author: Jorge Gonzalez +Date: Thu Nov 18 11:54:43 2021 -0500 + + refactor: add ams client assertion + +commit af61b410a94ecec8c1e2769780af1c407144eb12 +Merge: 3c39f29ec 250db18a2 +Author: John Willis +Date: Thu Nov 18 11:24:56 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit 53a3d3018123094d36c3945dfc317f8ef8934114 +Merge: 631fae64d 250db18a2 +Author: John Willis +Date: Thu Nov 18 11:24:46 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state + +commit 162292b3062f75d866fd69bd6c5dc7ebfab8aad3 +Author: Jorge Gonzalez +Date: Thu Nov 18 10:02:27 2021 -0500 + + docs: update buildpack-changelog.md + +commit ab3337cf870675217d6aca81c3a6a0d2ef0f9728 +Author: John Willis +Date: Wed Nov 17 17:36:19 2021 -0500 + + Added STTPrimaryKeyRelatedField, fixed test errors, update frontend to send only ID of STT + +commit bfa0f4583bef63b8ba87d4ce4e973ed35367bdd5 +Author: Jorge Gonzalez +Date: Wed Nov 17 14:50:18 2021 -0500 + + build: update all node versions to latest LTS v16.13 + +commit 882f753e88a66069e7ec8194b5b74f095bb1a991 +Author: John Willis +Date: Wed Nov 17 13:53:06 2021 -0500 + + Fix linter errors + +commit 528c60310938c183b2e51e3dc02820e4295bc5a6 +Merge: abc456d6e 250db18a2 +Author: Jorge Gonzalez +Date: Wed Nov 17 13:46:20 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit d8537880e7c69a205c9421a830b1c94b18c6812a +Author: John Willis +Date: Wed Nov 17 13:44:05 2021 -0500 + + Fix 500 errors found by ZAP scans + +commit e0257486eb220fecfbe4b5d191fe9760399ae738 +Merge: 3876396c9 250db18a2 +Author: Jorge Gonzalez +Date: Tue Nov 16 15:26:52 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1331-splashpage + +commit 250db18a2f2659b9907fc540394fe62c27d20fe9 +Merge: fadfc3b9e 08d516549 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 15:22:33 2021 -0500 + + Merge pull request #1435 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.15.0 + + Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /tdrs-frontend + +commit 08d5165493d00de4732ba24fd48be85840942a7e +Merge: 70362d49e fadfc3b9e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 14:45:58 2021 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.15.0 + +commit fadfc3b9ee15aea1e7b993e24a91ebf5803dd98c +Merge: 0ad5b8386 d440d4d5d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 14:45:47 2021 -0500 + + Merge pull request #1432 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/tar-6.1.11 + + Bump tar from 6.1.0 to 6.1.11 in /tdrs-frontend + +commit 3c39f29ec11fa6ba10965d90f1b663161c7fc472 +Merge: dcb2a4756 0ad5b8386 +Author: John Willis +Date: Tue Nov 16 13:42:27 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit dcb2a4756c63213ac07c0e05ebb145a1e128e882 +Author: John Willis +Date: Tue Nov 16 13:06:28 2021 -0500 + + tighten frontend cache-control header + +commit 70362d49ea4a0910802555929251cf1d21b4c685 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Nov 16 18:05:41 2021 +0000 + + Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /tdrs-frontend + + Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.14.1 to 5.15.0. + - [Release notes](https://github.com/testing-library/jest-dom/releases) + - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/jest-dom/compare/v5.14.1...v5.15.0) + + --- + updated-dependencies: + - dependency-name: "@testing-library/jest-dom" + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit d440d4d5d37219bf89c805a0be2e77e6abc64ccb +Merge: 0d86d2acf 0ad5b8386 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 13:01:07 2021 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/tar-6.1.11 + +commit 0ad5b83865d03affaaeee6741faf66517da14980 +Merge: 5b9017346 104792d78 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 13:00:57 2021 -0500 + + Merge pull request #1433 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/tmpl-1.0.5 + + Bump tmpl from 1.0.4 to 1.0.5 in /tdrs-frontend + +commit 104792d78f64f53b38d16567d4f3c4ef3bb30749 +Merge: a833ad8b8 5b9017346 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 12:01:32 2021 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/tmpl-1.0.5 + +commit 5b9017346747d16658b7b6c79ea6997e583d446a +Merge: 9400ec16e b09c34ebd +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 12:01:23 2021 -0500 + + Merge pull request #1428 from raft-tech/lfrohlich-patch-5 + + Update COR delegation + +commit 81b4eb4b8c0a50242c7348372c486d0f52ced354 +Author: John Willis +Date: Tue Nov 16 11:22:23 2021 -0500 + + Added missing semicolon + +commit 10c281d70090cf4846646e6b025dfb0ed75eeffe +Merge: 6770a7609 9400ec16e +Author: John Willis +Date: Tue Nov 16 11:20:26 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit 631fae64db54217bc033101afd31e7ef9f77e79c +Merge: db87da5bf 9400ec16e +Author: John Willis +Date: Tue Nov 16 11:18:19 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state + +commit abc456d6e2aaec0942d9ab99ab49d3d5862b877f +Merge: 66bd8ceaa 9400ec16e +Author: Jorge Gonzalez +Date: Tue Nov 16 10:36:14 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit b09c34ebd86aa03915bdbceb9859da6a74bc846d +Merge: 171f26aea 9400ec16e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 16 10:00:25 2021 -0500 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-5 + +commit c0c9423dcd4d9b87930eb655a74dd8f2701e3dcf +Merge: 1fe8f9c00 9400ec16e +Author: Aaron Beavers +Date: Tue Nov 16 00:31:55 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/573-script-docs + +commit 171f26aeaca5f5ea29faf0f322e6f30cf49183b7 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Nov 15 15:26:38 2021 -0500 + + Update docs/How-We-Work/Team-Composition.md + +commit a8872a377cd7e9eb41bc8f26c4f468adfede2085 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Nov 15 15:23:06 2021 -0500 + + Update docs/How-We-Work/Team-Composition.md + +commit 0c1eb13688c1586b62e2f9471d55f4a9eb2e5d75 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 15 15:13:52 2021 -0500 + + Update docs/How-We-Work/Team-Composition.md + +commit b33a4ee8befb47158a70613f3079f67052869855 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 15 15:13:43 2021 -0500 + + Update docs/How-We-Work/Team-Composition.md + +commit 9400ec16e6350baa0630e6cd5752010fc4b6e0ce +Merge: c4fdaeeb3 85cac12c0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 15 14:52:13 2021 -0500 + + Merge pull request #1431 from raft-tech/valcollignon-patch-1 + + Create sprint-33-summary.md + +commit 85cac12c0a2b5d94d5659f9ecc3b589a21df0a9f +Merge: 20747e2fc c4fdaeeb3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 15 14:45:11 2021 -0500 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 66bd8ceaa8c3aa6eb9f8e554acb3874f24e3c807 +Author: Jorge Gonzalez +Date: Mon Nov 15 13:58:50 2021 -0500 + + nit + +commit 31e5c8ab49052268554822f2df26a0920aff0d84 +Merge: 019990aaf c4fdaeeb3 +Author: Jorge Gonzalez +Date: Mon Nov 15 13:56:13 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 019990aaf6183ae90581964b67c2c89025e2b3f7 +Author: Jorge Gonzalez +Date: Mon Nov 15 13:53:43 2021 -0500 + + split up token oidc handlers for each auth provider + +commit 1fe8f9c0045713e1c55ba7aee234588b7a785e41 +Author: Aaron Beavers +Date: Mon Nov 15 13:22:04 2021 -0500 + + Formatting and trailing whitespace + +commit db35f3fa82df48948d3082bd9c1e79086a155a2e +Author: Aaron Beavers +Date: Mon Nov 15 13:21:37 2021 -0500 + + Update script readme + +commit e033b12f7eb9191dd9f569310a8ff711518d6350 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 15 12:41:55 2021 -0500 + + Update Team-Composition.md + +commit 20747e2fc52d5551aef35f4488355065175e2842 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 15 12:08:59 2021 -0500 + + Update docs/Sprint-Review/sprint-33-summary.md + +commit 0d86d2acf018479dad9018d4a8f1c10305562be2 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Nov 15 15:12:13 2021 +0000 + + Bump tar from 6.1.0 to 6.1.11 in /tdrs-frontend + + 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 a833ad8b840d568e64aeb4aced5372b30f9bd016 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Nov 15 15:12:08 2021 +0000 + + Bump tmpl from 1.0.4 to 1.0.5 in /tdrs-frontend + + 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 c4fdaeeb3ca330f2f8437fb3b36792acba575379 +Merge: df507699e 7270e6ab6 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 15 10:10:53 2021 -0500 + + Merge pull request #1423 from raft-tech/hotfix/coa-dependency-resolution + + Force resolution of sub dependency `coa` to prevent security issues + +commit 0f24cde0e03bff10835fbb619172d2f7581e3095 +Merge: 9cec3e350 df507699e +Author: Jorge Gonzalez +Date: Mon Nov 15 10:04:05 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit 7270e6ab6e30e117cb10aa5693177f9d316bf917 +Merge: 9a7e8fc1d df507699e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Nov 12 13:30:41 2021 -0500 + + Merge branch 'raft-tdp-main' into hotfix/coa-dependency-resolution + +commit 6770a76098053c06a21c2edb983c266d99d4db56 +Merge: 2ddd6addf df507699e +Author: John Willis +Date: Wed Nov 10 15:09:53 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header + +commit 2ddd6addf75a5dc1abeba8c3c9379bf58c556158 +Author: John Willis +Date: Wed Nov 10 15:05:08 2021 -0500 + + Added NoCacheMiddleware to add Cache-Control headers for Django + +commit db87da5bfcf696d444b452382e9b4b95221b63dc +Merge: e9fded2ed df507699e +Author: John Willis +Date: Wed Nov 10 15:04:13 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state + +commit 9cec3e350f2f6c3af203010f8fe7044ed3b4a032 +Author: Jorge Gonzalez +Date: Wed Nov 10 14:12:08 2021 -0500 + + split up oidc auth handlers for easier testing + +commit 3876396c9beb530b7f3e1d1510490a1d1d593bb2 +Merge: ed7c9b086 df507699e +Author: Jorge Gonzalez +Date: Wed Nov 10 13:25:55 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1331-splashpage + +commit df507699eafeac89f91cd3444309951dffeae6fe +Merge: b19e7e382 2127ee7f2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Nov 10 09:16:05 2021 -0500 + + Merge pull request #1400 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.7.0 + + Bump cypress from 8.6.0 to 8.7.0 in /tdrs-frontend + +commit 2127ee7f259a3c156edd288ace004427f0f72cf4 +Merge: c861a5ede b19e7e382 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Nov 10 09:01:20 2021 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.7.0 + +commit b19e7e38206bb674b2ffab110ed867f76249b5f3 +Merge: 9b823dde9 84b15f32c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Nov 10 09:00:43 2021 -0500 + + Merge pull request #1398 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.24.0 + + Bump axios from 0.23.0 to 0.24.0 in /tdrs-frontend + +commit 802961a78fc66ccfe3e8cc9dab14dce8e73e851d +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Nov 9 17:03:49 2021 -0500 + + Create sprint-33-summary.md + +commit b054af3ce2fbb909bcb5da5666e4ec88001b6826 +Author: John Willis +Date: Tue Nov 9 16:23:17 2021 -0500 + + Add frontend Cache-Control header to buildpack nginx + +commit ed7c9b0865fcbf93ba4a96fb87c1da9009bfb7a9 +Merge: 564682c6a 9b823dde9 +Author: Jorge Gonzalez +Date: Tue Nov 9 13:30:27 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1331-splashpage + +commit 6d3634481dabf8e16ef8941d943b446e7950e299 +Merge: aa87411b6 9b823dde9 +Author: Jorge Gonzalez +Date: Tue Nov 9 13:09:36 2021 -0500 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 564682c6ac002c5f83ac5685fd9b595a8d1a4c63 +Author: Jorge Gonzalez +Date: Tue Nov 9 12:31:40 2021 -0500 + + style: add box-shadow to main splashpage panel + +commit e9fded2ed7252e2d5367ca535bf417a1e8d82c61 +Merge: 712787b7e 9b823dde9 +Author: John Willis +Date: Tue Nov 9 12:18:08 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state + +commit 9a7e8fc1d17435da7b2bb09fe39e80870a821292 +Merge: 2a28c6ea7 9b823dde9 +Author: John Willis +Date: Tue Nov 9 12:18:01 2021 -0500 + + Merge branch 'raft-tdp-main' into hotfix/coa-dependency-resolution + +commit 84b15f32cb801c22a53f70a9282fa2d08770dd2c +Merge: 255b1fa05 9b823dde9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 9 12:10:01 2021 -0500 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.24.0 + +commit 9b823dde931eb04281b6413a3d11b01c71d836e7 +Merge: f482b5879 319023dd9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 9 12:09:44 2021 -0500 + + Merge pull request #1404 from raft-tech/hotfix/1013-part-2 + + Issue 1013: Hotfix part 2 + +commit 712787b7efad1575f6530a382363315c16b046b5 +Author: John Willis +Date: Mon Nov 8 17:06:11 2021 -0500 + + Added test case for submission error + +commit 4f34ade5fbe3fd25e425f7ed594379caf2253e8f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 8 17:01:34 2021 -0500 + + Update Team-Composition.md + +commit c290704eebb858f76f86b70599610e2c5e73c487 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 8 16:59:54 2021 -0500 + + Add Lauren Frohlich COR delegation + +commit 078882b47de5a946a14f8cb90a5d3a41d966d58f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 8 16:58:19 2021 -0500 + + Delete COR_Delegation_Dvora_Wilensky.pdf + + Deleting Dvora's COR delegation + +commit 776a8480faf507c6251183b29a489c0f2f5d2d1a +Author: John Willis +Date: Mon Nov 8 16:36:30 2021 -0500 + + Added unit test for submit action + +commit 9e099e4af2770e2005f1416e0cf84168b8d3dade +Author: John Willis +Date: Mon Nov 8 15:18:29 2021 -0500 + + Added unit test for SET_FILE_SUBMITTED reducer + +commit 319023dd93c4cdc1d6ce0180f00eddf02ef1b10c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Nov 8 10:51:16 2021 -0500 + + Update docs/Technical-Documentation/circle-ci.md + + undoing temp change. + +commit d701607634f90759fbbc8717f0779915ca0d1c3b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Nov 8 10:35:23 2021 -0500 + + Update docs/Technical-Documentation/circle-ci.md + + testing. will undo shortly. + +commit 27bfcfe535a3e13b4f470f4b59236eccf4d7df01 +Merge: 2958a5c9b f482b5879 +Author: John Willis +Date: Fri Nov 5 16:54:28 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1013-part-2 + +commit f0f02959d5b21f44e7a49f864038e04ec0e25496 +Author: John Willis +Date: Fri Nov 5 16:40:31 2021 -0400 + + Implemented SET_FILE_SUBMITTED reducer, added setLocalAlertState for errors caught from Data File submissions + +commit 596ff05253d3aef46cfb0abc5c82c4336b2cff5d +Author: abottoms-coder +Date: Fri Nov 5 12:41:46 2021 -0400 + + Changes to first file, will look for other logger settings + +commit 2a28c6ea7cd2393698728389cd2b4c70b5eb1e63 +Author: John Willis +Date: Fri Nov 5 10:48:51 2021 -0400 + + Force resolution of sub dependency coa to prevent security issues + +commit 2b1e877e2f472c4c98a68beda8020b212d3b7f43 +Author: John Willis +Date: Thu Nov 4 18:09:51 2021 -0400 + + Added SET_FILE_SUBMITTED redux reducer + +commit aa87411b6e95731129354fd7879d1d75e403363e +Author: Jorge Gonzalez +Date: Thu Nov 4 16:23:42 2021 -0400 + + Various tweaks + +commit 49a428e88e9d602ceb63efbdaad4fa03e94eaf03 +Merge: 5a9c1d39c f482b5879 +Author: Jorge Gonzalez +Date: Wed Nov 3 10:55:47 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit 2958a5c9bf1306d9bc2df43f39030d614dca4ac0 +Author: abottoms-coder +Date: Wed Nov 3 10:12:34 2021 -0400 + + testing via insignificant doc change (undo) + +commit c8d4144f81b267e42a4601b76fd7be4f6fdeee7c +Author: abottoms-coder +Date: Wed Nov 3 09:51:24 2021 -0400 + + testing via insignificant doc change + +commit f482b5879b108515682e4382b499be679d43dbe7 +Merge: ac5d7fe34 ad9e06f27 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Nov 3 09:28:45 2021 -0400 + + Merge pull request #1384 from raft-tech/feat/1367-zap-scanner-tuning + + Issue 1367: Updated zap-scanner.sh to utilize a different ZAP script based on target + +commit ad9e06f2726a519b7647311720150b21ad685a4f +Merge: 245a8fc95 ac5d7fe34 +Author: John Willis +Date: Tue Nov 2 15:16:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1367-zap-scanner-tuning + +commit 5778801107c3a2493b83a8330a04ef61ea59fc11 +Merge: b7e55ecae ac5d7fe34 +Author: John Willis +Date: Tue Nov 2 13:39:15 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1013-part-2 + +commit b7e55ecaeccd0167af120dd974047796ab28fea7 +Author: John Willis +Date: Tue Nov 2 13:04:39 2021 -0400 + + Remove unused config key + +commit fe5a1fa2cf6ad63720fc7283058d7cc8d3ab3561 +Author: John Willis +Date: Tue Nov 2 12:12:19 2021 -0400 + + Misc cleanup and context additions + +commit 4e7539d43e9ff56f5cb6a12c283f4da6d4bc7be3 +Author: John Willis +Date: Tue Nov 2 11:50:54 2021 -0400 + + Fix typo :/ + +commit 31fe8cbc5c46c41222f02e21c472a57d8c43032c +Author: John Willis +Date: Tue Nov 2 11:45:24 2021 -0400 + + Prevent GitHub Action from running for other label events + +commit d168e0fdf90f7f05db752cda88923554da6593a0 +Merge: 6c3542d3b ac5d7fe34 +Author: Jorge Gonzalez +Date: Tue Nov 2 11:22:33 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1331-splashpage + +commit 6c3542d3bcdc0aad53fef6a4d1c3fefd35d8fc91 +Author: Jorge Gonzalez +Date: Tue Nov 2 11:21:00 2021 -0400 + + Update spash page background image on page refresh + +commit e4e86102507e8fcc4505a7b5a90ef476a73f7665 +Author: John Willis +Date: Tue Nov 2 11:08:27 2021 -0400 + + Debugging + +commit ac5d7fe346f5355781fc738826deae1dbbd219d5 +Merge: 17fd0fd5c a325ccc98 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 2 10:38:17 2021 -0400 + + Merge pull request #1402 from raft-tech/valcollignon-patch-1 + + Create sprint-32-summary.md + +commit a325ccc98af8b5b31080821456bed57ab3a30201 +Merge: ced390353 17fd0fd5c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 2 10:15:01 2021 -0400 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 17fd0fd5cf5434f05944c87b843d3d55e6d8c5f7 +Merge: a4ff39ca3 92cf794b0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Nov 2 10:13:08 2021 -0400 + + Merge pull request #1409 from raft-tech/feat/1408-adr-devops-branch + + 1408: Update to ADR + +commit 3f964ff142134060a459385e740f73d016b6595d +Author: John Willis +Date: Mon Nov 1 17:22:51 2021 -0400 + + Cast comparison for HAS_QASP_LABEL to string for use in conditional + +commit 7d93100f8ab7146b110cb7100d14422f2c5fcf60 +Author: John Willis +Date: Mon Nov 1 17:05:45 2021 -0400 + + Updated documentation to match updated behavior + +commit e8d9905131977802aaf87a191d6a19fca0d54f55 +Author: John Willis +Date: Mon Nov 1 16:40:25 2021 -0400 + + Update wait-for-it step to run from zaproxy to check web container availability + +commit 74e820e84013664e9a88de3f42cdedbbdd180108 +Author: John Willis +Date: Mon Nov 1 16:02:25 2021 -0400 + + Added wait for backend-owasp-scan to allow services to launch before scanning + +commit c944ae75d8151e1b2377d5240d87b50667933817 +Author: John Willis +Date: Mon Nov 1 15:49:00 2021 -0400 + + Test alternate if condition + +commit ff830b99d2218a03ee7c2649e9b4d07ed657bdd3 +Author: John Willis +Date: Mon Nov 1 15:47:55 2021 -0400 + + Test expression syntax + +commit 8972481f51f3b91b7ac52e25cf7466d1a384d115 +Author: John Willis +Date: Mon Nov 1 15:44:54 2021 -0400 + + Remove debugging code from github action + +commit 13442c9897c5cd37d5ad1c69ec0e8e1578cce5d3 +Author: John Willis +Date: Mon Nov 1 15:42:57 2021 -0400 + + Debugging pt 3 + +commit 88961760e1bc74da8ab02edde81611adf1da816c +Author: John Willis +Date: Mon Nov 1 15:42:01 2021 -0400 + + Debugging pt 2 + +commit c78b6691fe968cbe2cd4d99549cfc94be5903aa6 +Author: John Willis +Date: Mon Nov 1 15:41:13 2021 -0400 + + debugging + +commit c3e5c44004b01beaf8367ba4a133cf1a2d64f376 +Author: John Willis +Date: Mon Nov 1 15:38:32 2021 -0400 + + Test different syntax + +commit 17e15a5a93120875ce1fbf66568760990cec47bd +Author: John Willis +Date: Mon Nov 1 15:36:05 2021 -0400 + + Temporarily remove if condition in github action + +commit 8c99832312c4b669b6e428837989ecc150e0176c +Author: John Willis +Date: Mon Nov 1 15:34:36 2021 -0400 + + alternative env var reference + +commit 82343847957a02086169ccd7332614a7a14918f9 +Author: John Willis +Date: Mon Nov 1 15:22:05 2021 -0400 + + Added new owasp-scan workflow and removed OWASP scans from build-and-test jobs. Updated Github Action to only look for the QASP review label and pass the appropriate payload if so + +commit 92cf794b01212ade64bf97aee15c32868039ea3b +Author: abottoms-coder +Date: Mon Nov 1 14:30:38 2021 -0400 + + 1408: Update to ADR + +commit 785e9ed80b468d19487d3b210415c37ab609ef7e +Merge: 81983cea4 a4ff39ca3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Nov 1 11:11:18 2021 -0400 + + Merge branch 'raft-tdp-main' into spike/1347-shared-cloud-services + +commit 81983cea44ad5855d34cb0d3bf1df8222f331674 +Author: abottoms-coder +Date: Mon Nov 1 11:04:28 2021 -0400 + + Renaming file + +commit ef994d2fe4ea2d7952522871d3e2d755ba69de3b +Author: abottoms-coder +Date: Mon Nov 1 10:59:30 2021 -0400 + + Updating png and removing stray arrow + +commit 90941bbe11ab3d9376feaef069af9bd22bb840b6 +Author: abottoms-coder +Date: Mon Nov 1 10:51:52 2021 -0400 + + Update to environments to show new databases in RDS service + +commit 5a9c1d39cfc52810a82fe33cf07544a33074945b +Author: Jorge Gonzalez +Date: Thu Oct 28 15:53:07 2021 -0400 + + Increase max line length for everyone's sanity + +commit 3ac7288d08a93e4b1c626ee60aeef0f0057e1eeb +Author: Jorge Gonzalez +Date: Thu Oct 28 14:52:06 2021 -0400 + + Lint fixes + +commit a061431895ffb0723991b792247ab9c5fc8ea67b +Author: Jorge Gonzalez +Date: Thu Oct 28 14:18:10 2021 -0400 + + Fetch hhsid for authentication + +commit d93386d8ccebace24e2905ebf8306061203762e5 +Author: John Willis +Date: Wed Oct 27 13:08:13 2021 -0400 + + Remove third party action in favor of built in concurrency groups + +commit 9726899e5e2c8c3a98d5adc59b193452fabdbff2 +Author: John Willis +Date: Wed Oct 27 13:01:04 2021 -0400 + + Cancel previous workflow runs for github checks action to prevent duplicate calls to CircleCI + +commit 2a6334ce085e6111461c9e99de20edfa5c451dc3 +Author: John Willis +Date: Wed Oct 27 12:23:55 2021 -0400 + + Trying different syntax + +commit 640ce9831d489869c736cb88f6843d65c01e1e4d +Author: John Willis +Date: Wed Oct 27 12:21:51 2021 -0400 + + Simplify github actions if conditional + +commit ced390353c686e33adbc586d0bf6e4ef43833d17 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Oct 27 12:17:40 2021 -0400 + + Update docs/Sprint-Review/sprint-32-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 9a61f47dd9d856f367a999e60b009793af846d36 +Author: John Willis +Date: Wed Oct 27 12:07:17 2021 -0400 + + Comment out conditional for testing + +commit ed98d76127060e7df14d3b4e34acd6ee2c719701 +Author: John Willis +Date: Wed Oct 27 11:59:43 2021 -0400 + + Prevent GitHub Action from initiating workflows if there are no matching labels found + +commit a18c069c6ca1f761d29c9a688db41f8c983880bc +Author: John Willis +Date: Wed Oct 27 11:47:35 2021 -0400 + + Prevent secrets-check workflow from running twice for open PRs + +commit 02009c8d24831c3ba75d610a512e76b285469657 +Author: John Willis +Date: Wed Oct 27 11:37:23 2021 -0400 + + Remove old workflow from circleci config and split out secrets-check into its own workflow + +commit f1b90921f32209bf85a3fa5cc5eaf0cbe960ab32 +Author: John Willis +Date: Wed Oct 27 11:12:11 2021 -0400 + + Swap out double quotes for single quotes in github workflow + +commit 245a8fc95650c403e188dc6629fe33f7ff4c4354 +Author: John Willis +Date: Tue Oct 26 16:55:42 2021 -0400 + + Put additional alert on WARN + +commit 71bea0e3e399abcfaf4cc3924ad696f87ffb696e +Merge: 60f83f061 a4ff39ca3 +Author: John Willis +Date: Tue Oct 26 16:25:03 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1367-zap-scanner-tuning + +commit 60f83f06170be146348cb954f5ffc097b6ca8d86 +Author: John Willis +Date: Tue Oct 26 16:15:44 2021 -0400 + + Removed unused CSP files, classify new alerts from api scan, utilize zap2docker-stable base image + +commit 74228a050bb2388c3b181931c6592b5b5e0f1e5e +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Tue Oct 26 12:33:12 2021 -0400 + + Create sprint-32-summary.md + +commit 223d38271a2ef5797e067e6779db93f937275dc7 +Merge: d90ebdde9 a4ff39ca3 +Author: Jorge Gonzalez +Date: Tue Oct 26 12:03:51 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit d90ebdde9b6d03285120dde8680422644bd2e17b +Author: Jorge Gonzalez +Date: Tue Oct 26 12:03:40 2021 -0400 + + feat: nits and initial hhsid support + +commit a4ff39ca392591c4c218ad86df3bff5056d73152 +Merge: 6f1d8d367 faf6c8e90 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 26 11:37:37 2021 -0400 + + Merge pull request #1394 from raft-tech/ops/1378-buildpacks + + Issue 1378: Cloud.gov Buildpack Update (10-13-2021) + +commit faf6c8e903e797725a93f723d97dfa471674faa6 +Merge: aedca45b6 6f1d8d367 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 26 10:59:22 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/1378-buildpacks + +commit c861a5ede3b306169a806a00685dbb51debbc9ba +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Oct 26 06:12:38 2021 +0000 + + Bump cypress from 8.6.0 to 8.7.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 8.6.0 to 8.7.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v8.6.0...v8.7.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 255b1fa05f3a364b8ba8c0bad1783e049f6eb3e9 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Oct 26 06:11:41 2021 +0000 + + Bump axios from 0.23.0 to 0.24.0 in /tdrs-frontend + + Bumps [axios](https://github.com/axios/axios) from 0.23.0 to 0.24.0. + - [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.23.0...v0.24.0) + + --- + updated-dependencies: + - dependency-name: axios + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit c6faa77791a186f2f244235d08eb9107aba6842d +Author: John Willis +Date: Mon Oct 25 17:03:47 2021 -0400 + + Import cleanup, linting + +commit df6229cdf16045cb1d23f1a71bafb17328568924 +Author: John Willis +Date: Mon Oct 25 16:57:48 2021 -0400 + + Fixed issue that caused swagger.json to not be appended to the backend URL, enhance openapi spec for data files years list endpoint to fix invalid CSP error + +commit 7f898f78b3dfe6cf60bef0ed6eff8e7ce85865a2 +Merge: 18fc39abb 6f1d8d367 +Author: Jorge Gonzalez +Date: Mon Oct 25 16:36:49 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1331-splashpage + +commit 91defb8c7c0363484b576b659f440433f34e6434 +Merge: 5b086666f 6f1d8d367 +Author: John Willis +Date: Mon Oct 25 12:00:06 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1367-zap-scanner-tuning + +commit 6f1d8d367ee6267bccaf1109b70c6891b7cef3a1 +Merge: a1c243976 092a002e6 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 13:21:28 2021 -0400 + + Merge pull request #1377 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.23.0 + + Bump axios from 0.21.2 to 0.23.0 in /tdrs-frontend + +commit 092a002e6ee00533f1f0bccbd837a300af4650d3 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Oct 21 16:59:16 2021 +0000 + + Bump axios from 0.21.2 to 0.23.0 in /tdrs-frontend + + Bumps [axios](https://github.com/axios/axios) from 0.21.2 to 0.23.0. + - [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.2...v0.23.0) + + --- + updated-dependencies: + - dependency-name: axios + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit a1c24397678febc4726579b6b8a41b25c0d173da +Merge: 2d4b5a778 8e60bf3ed +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 12:53:21 2021 -0400 + + Merge pull request #1388 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.16 + + Bump @fortawesome/react-fontawesome from 0.1.15 to 0.1.16 in /tdrs-frontend + +commit 8e60bf3edb714946c18bf4903720a2050b1a080b +Merge: e13ff24de 2d4b5a778 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 12:03:09 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.16 + +commit 2d4b5a778bd22af6c61e8102fa9712294a8fed19 +Merge: 16e4330aa 7b4fdf289 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 12:03:01 2021 -0400 + + Merge pull request #1390 from raft-tech/ADPennington-patch-1 + + Create WH_CybersecurityEO.md + +commit ba2128c01eae7c84fbfbf43810b175cd3499c74c +Merge: 612e706d2 16e4330aa +Author: Jorge Gonzalez +Date: Thu Oct 21 11:47:01 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams + +commit 7b4fdf289d0a9b1b1c34696865b8eed967800840 +Merge: 0c9df0cd9 16e4330aa +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 11:46:05 2021 -0400 + + Merge branch 'raft-tdp-main' into ADPennington-patch-1 + +commit 16e4330aa3ad41e7a897e2728aa8085df370723f +Merge: 1dbce20ee fd693cb93 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 11:45:59 2021 -0400 + + Merge pull request #1393 from raft-tech/valcollignon-patch-1 + + Create sprint-31-summary + +commit fd693cb9347eb689a4fd05b187a8bc82241af6ec +Merge: aa5eb09c1 1dbce20ee +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 11:34:29 2021 -0400 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 1dbce20eec48a8aaa8532e1cad1c0b39bd3fc52c +Merge: b7e00064f aa170b5e0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 11:33:50 2021 -0400 + + Merge pull request #1223 from raft-tech/feat/1054-dac-a11y + + Issue 1054: Update django-admin-508 for a11y fixes (part 2) + +commit aa170b5e050e57c0aeb3ad77338ca81768f55001 +Merge: 59cac0d88 b7e00064f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 11:14:17 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1054-dac-a11y + +commit b7e00064fa7b8c04d7384a4e31a2126cbc9efe10 +Merge: 9470bfa03 55fb89280 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 11:13:46 2021 -0400 + + Merge pull request #1380 from raft-tech/docs/880-ci-audit-template + + Added CI/CD Health Check Document + +commit 55fb89280614a18c6db31e68530093ddf4ce5085 +Merge: 44f6d3cc2 9470bfa03 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 10:28:20 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/880-ci-audit-template + +commit aedca45b6181a989825662416fe9d0b6de537dba +Author: Jorge Gonzalez +Date: Thu Oct 21 09:55:48 2021 -0400 + + docs: Update buildpack-changelog.md + +commit 9470bfa03b5b07ed22c01b0eda99db8228a7abe5 +Merge: c39fbb014 840b4f801 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 21 09:27:24 2021 -0400 + + Merge pull request #1391 from raft-tech/1013-hotfix + + 1013 hotfix + +commit aa5eb09c16f77da056a861fe2253ae3fb83701bf +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Oct 20 16:58:50 2021 -0400 + + Rename sprint-31-summary to sprint-31-summary.md + + added ".md" so will format as a markdown + +commit e8614d4656935fc5ec170cc987820422852f4a49 +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Wed Oct 20 15:47:39 2021 -0400 + + Create sprint-31-summary + +commit 840b4f801d71acb040b09581ea2fd9b4530ff22c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Oct 20 14:51:30 2021 -0400 + + Update .github/workflows/check-on-label.yml + + === for JavaScript? + +commit 44f6d3cc2fbeccf62708e1cf0dd1f9cd0333890c +Merge: 76207fa13 c39fbb014 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Oct 20 13:05:23 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/880-ci-audit-template + +commit e13ff24deeab2c3c1bcacad730fb1901da3cb4d2 +Merge: 296107aef c39fbb014 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Oct 20 11:51:21 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.16 + +commit b88ac3407abc08c13ec81478de26fb2d559d2396 +Author: Aaron Beavers +Date: Tue Oct 19 23:13:37 2021 -0400 + + use project slug from github.repository + +commit 8b908aa34f37b9542ce71afc7a726c9d81eb0765 +Author: Aaron Beavers +Date: Tue Oct 19 23:12:56 2021 -0400 + + Add condition to only run if the repository is from raft or HHS + +commit 0c9df0cd973129ed7b7a616863cd4a418af7a762 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 19:04:36 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit e617e72d91eae33211258c93535ab312dee53839 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 19:03:03 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit 69de413169552e3744fe440d2bafa191e74b2994 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 18:59:59 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit 29749d7cf048a893119368b29fd6fc7f526667dd +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 18:58:44 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit efc2251bb74e0ccdbf1271ff0d32c2551e98f6df +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 18:56:01 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit 18af67438c50f6731f4b67dbead2a6d239bb11a2 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 18:53:14 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit d269c0454a407ae6ce957c5d56946fbe7aa0604d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 18:49:14 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 205947414b77e99274bf543c0f07aa73355d5317 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 15:47:58 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit b910a72e5506de59703f2693349e28b7ef12754e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 15:32:46 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit b681ac66a2300dccc655da56161a14e54fe9f5c6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 15:31:40 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit 1185240f868bbd3609d1491a1c4c803704179c16 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 15:28:41 2021 -0400 + + Update docs/Security-Compliance/WH_CybersecurityEO.md + +commit 0009dff47d27d2a3a5052d93fe7e81ade851010b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 15:26:53 2021 -0400 + + Create WH_CybersecurityEO.md + + Closes #1338 + +commit 612e706d298de062e2a2052e3bb6bbd5c4496f51 +Merge: 3dae31da5 c39fbb014 +Author: Jorge Gonzalez +Date: Tue Oct 19 14:35:32 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 59cac0d88c29ea4791d70d27987f25bc2fef01f1 +Merge: 3611db923 c39fbb014 +Author: Jorge Gonzalez +Date: Tue Oct 19 14:34:56 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1054-dac-a11y + +commit 3611db9238a9b427c32383af03132234395bda68 +Author: Jorge Gonzalez +Date: Tue Oct 19 14:32:57 2021 -0400 + + fix: bump django-admin-508 + +commit a49ad0fd8a93aadb3d8908e491a673d3ec7d8661 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Oct 19 14:23:07 2021 -0400 + + Update docs/How-We-Work/team-charter/our-workflow.md + +commit 80f67d30d55aa6cf0cbe4c8d31b83b77f6c59d40 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Oct 19 14:20:45 2021 -0400 + + Update our-workflow.md + +commit c39fbb014c42cf0ba34be9b1d3822a25c04713bd +Merge: ee8991b64 2d63f0405 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 12:00:15 2021 -0400 + + Merge pull request #1366 from raft-tech/feat/1013-revised + + Feat/1013 revised + +commit 2d63f0405740eca67892c0a5048e6fff686698b8 +Merge: 497955bb6 ee8991b64 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 11:39:44 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1013-revised + +commit ee8991b6482302164f98533a5405d18a4531750c +Merge: f37a17642 e5811e67b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 11:39:37 2021 -0400 + + Merge pull request #1386 from raft-tech/valcollignon-patch-1 + + Update Team-Composition.md + +commit e5811e67b6256cc8c310528a446c94ded681af40 +Merge: f28e207cb f37a17642 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 10:46:12 2021 -0400 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 296107aefb9901e3c95209ab644214a90f61bb6d +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Oct 19 14:42:44 2021 +0000 + + Bump @fortawesome/react-fontawesome in /tdrs-frontend + + Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.15 to 0.1.16. + - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) + - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.15...0.1.16) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/react-fontawesome" + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit f37a1764266c89dcab8f1477995fafcb4c03f002 +Merge: 204b54a4e a90bdbf3c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 10:38:29 2021 -0400 + + Merge pull request #1375 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.6.0 + + Bump cypress from 8.5.0 to 8.6.0 in /tdrs-frontend + +commit f28e207cb122e48af4406de109e275792fe8f7fb +Merge: 168cc866c 204b54a4e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 10:25:30 2021 -0400 + + Merge branch 'raft-tdp-main' into valcollignon-patch-1 + +commit 497955bb6925ae3bfdd6ce3e68d34423a59d9ae5 +Merge: 55975253f 204b54a4e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 09:43:39 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1013-revised + +commit a90bdbf3ce2d893b859803dc889aa1e74278d8f7 +Merge: 120315a20 204b54a4e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 09:41:48 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.6.0 + +commit 204b54a4ea23caa0d738d5b5acd2f2d099f13d86 +Merge: 1dcb6fcc7 ba5c8e909 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 09:41:42 2021 -0400 + + Merge pull request #1339 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 + + build(deps): bump miragejs from 0.1.41 to 0.1.42 in /tdrs-frontend + +commit ba5c8e9091fc727fc4a7a7453e608b887dd47752 +Merge: 70fbdf923 1dcb6fcc7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 09:11:07 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 + +commit 55975253f6b146712bccad1d615a72d6c6bbf78c +Merge: 9898696b9 1dcb6fcc7 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 19 09:08:59 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1013-revised + +commit 120315a201efe06fe303ea0ba7dcba7c4920d904 +Merge: 2ced93cbf 1dcb6fcc7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 09:04:34 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.6.0 + +commit 1dcb6fcc7ace845a1b880dc56808778f8e6d4885 +Merge: ad53f1353 420efa354 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 19 09:02:24 2021 -0400 + + Merge pull request #1286 from raft-tech/backend/1052/regional-staff + + Backend/1052/regional staff + +commit 420efa35411cf94c798d28e4796c516fec031584 +Author: Aaron Beavers +Date: Mon Oct 18 11:17:56 2021 -0400 + + add merge file + +commit 168cc866c6a035e128c736a35555787ce66dd951 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Oct 18 11:07:21 2021 -0400 + + Update Team-Composition.md + +commit 078a6e40d225482f0766f1a8a6020ff2749f02b7 +Author: Aaron Beavers +Date: Mon Oct 18 10:42:42 2021 -0400 + + updated migration name index + +commit eca73beeca92c3c87cfb843a4c2e7dfaf63d0ed0 +Merge: aa9b8047b ad53f1353 +Author: Jorge Gonzalez +Date: Mon Oct 18 10:34:01 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1054-dac-a11y + +commit 2d5ea193deb253ba40aacd7028505d74dd317abe +Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> +Date: Mon Oct 18 10:23:01 2021 -0400 + + Update Team-Composition.md + +commit ed5c220ce43a8c3fd6dfd846c879b2a38ae4a580 +Merge: ce04a0d95 ad53f1353 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Oct 18 09:02:15 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1052/regional-staff + +commit 70fbdf92333b8d64abaae1e25e077da442864c1e +Merge: bff65b269 ad53f1353 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Oct 18 09:01:13 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 + +commit 18fc39abb5397fec562261843e61bbb01450c225 +Author: Jorge Gonzalez +Date: Fri Oct 15 15:09:04 2021 -0400 + + test: new SplashPage background updates + +commit 9898696b9895294fe6d5a86ce646585690144571 +Author: Aaron Beavers +Date: Fri Oct 15 14:53:38 2021 -0400 + + Add temporary build-and-test + +commit 08759cb9b1517902af9cf8b0f1fb579a4d18bf5e +Author: Aaron Beavers +Date: Fri Oct 15 14:53:28 2021 -0400 + + add documentation for labels + +commit ce04a0d95f56697d2b41ace8d0176ed95d87991e +Author: Aaron Beavers +Date: Thu Oct 14 22:03:01 2021 -0400 + + Update tdrs-backend/tdpservice/users/migrations/0023_add_regional_staff_group.py + + Co-authored-by: John Willis + +commit 5b086666f47b19598c899bfeed54c748d4a24d85 +Author: John Willis +Date: Thu Oct 14 17:40:54 2021 -0400 + + Updated zap-scanner.sh to utilize a different ZAP script based on target + +commit efca693d40c7c37e30a443968b32f4e42c134a08 +Author: Jorge Gonzalez +Date: Thu Oct 14 17:13:32 2021 -0400 + + fix: Bump interval + +commit 0006a6c2cc2069cb74e1ecc07d243e7afd47ba43 +Author: Jorge Gonzalez +Date: Thu Oct 14 17:09:53 2021 -0400 + + feat/1331: Change splash page background image + +commit c9cb2dc39c356a6db47498669459acd1d5485afa +Merge: b334a7d2f ad53f1353 +Author: Aaron Beavers +Date: Thu Oct 14 14:13:07 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1013-revised + +commit 8419cab8932e603ad1634967a93d20a592ce78ad +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Oct 14 10:27:07 2021 -0400 + + Update our-workflow.md + +commit b334a7d2f3b697fc3b1397422810f83ef9ac775c +Author: Aaron Beavers +Date: Wed Oct 13 18:09:29 2021 -0400 + + Add qasp pipeline + +commit 76207fa130e25b5baf83988c2546fef4bd4f7ba9 +Merge: 5167f5854 ad53f1353 +Author: John Willis +Date: Wed Oct 13 17:03:55 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/880-ci-audit-template + +commit 5167f58541bd81acbad983854e4ab41793abe2d3 +Author: John Willis +Date: Wed Oct 13 16:44:35 2021 -0400 + + Added CI/CD Health Check Document + +commit ad53f13537b42222bca51fc2668d1badb64bb488 +Merge: be2f649c9 471ac2748 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Oct 13 15:56:17 2021 -0400 + + Merge pull request #1364 from raft-tech/doc/1004-key-rotation-adr + + Creating ADR addendum to note our management of the Cloud.gov platform + +commit bff65b269fa7949693fb95046415a70ee160ff74 +Merge: 543b7ffdd be2f649c9 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Oct 13 15:35:52 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 + +commit 471ac274848f957519e31573a441837e5ac7e4e4 +Merge: 76d7e55be be2f649c9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Oct 13 15:30:24 2021 -0400 + + Merge branch 'raft-tdp-main' into doc/1004-key-rotation-adr + +commit 76d7e55be546f18a51547ac85a24f30f25b9a542 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Oct 13 15:17:48 2021 -0400 + + Update docs/Architecture Decision Record/003 Application hosting.md + + Co-authored-by: John Willis + +commit aa9b8047bcd24eb38221e38b2af9c4f0e7ffe681 +Merge: a08879fa4 be2f649c9 +Author: Jorge Gonzalez +Date: Wed Oct 13 14:20:13 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1054-dac-a11y + +commit 41a46aa273f03b582e6f8433676e3f11f0943c7c +Author: Aaron Beavers +Date: Tue Oct 12 13:44:53 2021 -0400 + + Add frontend and backend flags + +commit 2ced93cbf7a464ab7d572723a1e8ed77cb3cd16b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Oct 12 16:09:33 2021 +0000 + + Bump cypress from 8.5.0 to 8.6.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 8.5.0 to 8.6.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v8.5.0...v8.6.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit be2f649c9ba0027812c5b0f0a8a4539ec9f5e169 +Merge: d5bdaeab8 10ab4149b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 12 12:00:46 2021 -0400 + + Merge pull request #1365 from raft-tech/feat/1258-disable-ignored-owasp-rules + + Issue 1258: Reduce false positives in OWASP ZAP reports + +commit f38430644dade153a77bdcd10998e3419ed8e43c +Merge: cccbae792 d5bdaeab8 +Author: Aaron Beavers +Date: Tue Oct 12 10:33:33 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1013-revised + +commit 10ab4149bc1064d4ade01ff9aeb5d4876a891a54 +Merge: 01888b70a d5bdaeab8 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 12 09:07:20 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1258-disable-ignored-owasp-rules + +commit 543b7ffdd771f8d1c1f8f14b1ab61e18ae4d8c2b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Oct 8 15:29:47 2021 +0000 + + build(deps): bump miragejs from 0.1.41 to 0.1.42 in /tdrs-frontend + + Bumps [miragejs](https://github.com/miragejs/miragejs) from 0.1.41 to 0.1.42. + - [Release notes](https://github.com/miragejs/miragejs/releases) + - [Changelog](https://github.com/miragejs/miragejs/blob/master/CHANGELOG.md) + - [Commits](https://github.com/miragejs/miragejs/compare/v0.1.41...v0.1.42) + + --- + updated-dependencies: + - dependency-name: miragejs + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit d5bdaeab820a76e523e5312b0ed545d212b14a24 +Merge: 0a3c29da4 7b3a6c88f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Oct 8 11:24:56 2021 -0400 + + Merge pull request #1371 from raft-tech/feat/remove-immutable-dep + + Removing 'immutable' dep + +commit 7b3a6c88fd3516b17fb75046867c7c4dae4a80f2 +Merge: b2198d10f 0a3c29da4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Oct 8 11:06:31 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/remove-immutable-dep + +commit 0a3c29da4569509e7f7e30427f0c9cd7f66d5d06 +Merge: 30810a5fc 1e4816763 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Oct 8 11:06:23 2021 -0400 + + Merge pull request #1318 from raft-tech/feat/1135-auth-source + + Issue 1135: Allow user to choose their authentication source + +commit 01888b70a4418904f92fc05913bdfee8633fc643 +Merge: 0c8b68865 30810a5fc +Author: John Willis +Date: Fri Oct 8 10:50:24 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1258-disable-ignored-owasp-rules + +commit 1e4816763eec79cde2bf581473753703ac76f427 +Merge: 1c0e44539 30810a5fc +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Oct 8 10:12:17 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1135-auth-source + +commit a08879fa4b977a3a3189dac98d02328b9f49b1a6 +Author: Jorge Gonzalez +Date: Thu Oct 7 16:16:41 2021 -0400 + + fix(1054): Update django-admin-508 to v0.1.1 + +commit 30810a5fc7c8c16848689d043c9fe433550942a0 +Merge: a19c65540 3e6bebaf9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 7 15:42:03 2021 -0400 + + Merge pull request #1327 from raft-tech/tech-deep-dives + + Added additional technical documentation from deep dive sessions + +commit 3e6bebaf9624ca516694cb7136d08b90f5dfcaae +Merge: 078d10c78 a19c65540 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Oct 7 15:01:57 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit b2198d10fccaf90891e2629b84140807a8b2d916 +Author: Jorge Gonzalez +Date: Thu Oct 7 11:54:11 2021 -0400 + + Update yarn.lock + +commit 5a28cda4230e47c4f7a413bd67526de12e79c5dc +Author: abottoms-coder +Date: Thu Oct 7 11:22:42 2021 -0400 + + Removing dep + +commit 3dae31da5a9e92cd4c087ebdff7fbf01a4931a4b +Author: Jorge Gonzalez +Date: Thu Oct 7 10:31:05 2021 -0400 + + Minor fixes + +commit e07b4bdf17be34342474ece0919f145791e6bdd7 +Merge: 05fcf33e8 a19c65540 +Author: Jorge Gonzalez +Date: Thu Oct 7 10:27:57 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 05fcf33e880ba6a3f34fa7e8923553f0936fcb8e +Author: Jorge Gonzalez +Date: Thu Oct 7 09:51:04 2021 -0400 + + Minor refactor + +commit fd249c3998209d95cf9ed59941258369fdb8810e +Author: Jorge Gonzalez +Date: Thu Oct 7 09:37:28 2021 -0400 + + update token params request + +commit a19c6554046194648c39663a6f81546ef9e9fbdf +Merge: c51f6ce01 fdc0015c9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Oct 7 09:34:14 2021 -0400 + + Merge pull request #1343 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.5.0 + + Bump cypress from 8.3.1 to 8.5.0 in /tdrs-frontend + +commit 1b62fa29f84f365b3fc8e79d8752c392dfa705c6 +Merge: e1c21cb17 c51f6ce01 +Author: Jorge Gonzalez +Date: Thu Oct 7 09:19:31 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit d44dfa974c217fc5384dc85520dc605e4a9d6792 +Author: Aaron Beavers +Date: Wed Oct 6 23:30:21 2021 -0400 + + Fix typo in doc string + +commit 6c79925e27eafe7d7c8f7c836ae4d4116c0a3570 +Author: Aaron Beavers +Date: Wed Oct 6 21:57:55 2021 -0400 + + Add doc string to tests + +commit ee37c87e85698eaad1a9c9daf8877f06a1fe5daf +Author: Aaron Beavers +Date: Wed Oct 6 21:57:48 2021 -0400 + + remove unused import + +commit e1c21cb179a0fa4e918df53c8e5bc7078f4f24c6 +Author: Jorge Gonzalez +Date: Wed Oct 6 14:27:06 2021 -0400 + + refactor and generalize views + +commit cccbae79283fef8ad76636045a59d188d9f224f6 +Author: Aaron Beavers +Date: Wed Oct 6 15:00:26 2021 -0400 + + Add unlabeled event type + +commit 078d10c780a44e9a80aac3ff6b36c69459de9cb9 +Author: John Willis +Date: Wed Oct 6 13:55:08 2021 -0400 + + Address QASP feedback + +commit b337cf7a8586217bb17ac62fa5b1a3c6e2a4ef15 +Author: Aaron Beavers +Date: Wed Oct 6 13:44:25 2021 -0400 + + Removed backend and frontend flags + +commit c4f015cd7eeeb1eded9fcc11fd6345ee11c42c28 +Author: Aaron Beavers +Date: Wed Oct 6 12:24:07 2021 -0400 + + remove quotes for values that now guarantee a value + +commit e57c19a8e6602ab3f8bff8ac70320375e53079eb +Author: Aaron Beavers +Date: Wed Oct 6 12:18:11 2021 -0400 + + remove typo + +commit 8ae08ab0462a0e9f6441b581032a70fa0a6f7301 +Author: Aaron Beavers +Date: Wed Oct 6 12:11:31 2021 -0400 + + missing single quote + +commit 5a17d84729d66d5f0bd18a0b8b434a42da2329b9 +Author: Aaron Beavers +Date: Wed Oct 6 12:02:48 2021 -0400 + + Add white space for readability + +commit d8808beee3d34a7f5aa7d8dc2377f295cef6e4f3 +Author: Aaron Beavers +Date: Wed Oct 6 12:00:17 2021 -0400 + + Use result of contains and remove ifs + +commit 443eb9f3888d16d2da9b8a419bc381f0f2d3ef3c +Author: Aaron Beavers +Date: Wed Oct 6 11:54:00 2021 -0400 + + Add initial values to outputs + +commit bd5a44f8c2ac7f5037cde8f8b14b1d712abb054b +Merge: 812f81c89 c51f6ce01 +Author: Aaron Beavers +Date: Wed Oct 6 11:45:59 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1013-revised + +commit 812f81c89d440c317a4dbdbc97e76aa1cf9e9613 +Author: Aaron Beavers +Date: Wed Oct 6 11:42:18 2021 -0400 + + Remove extra whitespace + +commit c44dd4876446b432b20bcb63d82d5799a1ea963b +Author: Aaron Beavers +Date: Wed Oct 6 10:53:33 2021 -0400 + + remove comment + +commit 351817502ca868666dc790a46bcec12b9b85d213 +Author: Aaron Beavers +Date: Wed Oct 6 10:01:19 2021 -0400 + + update name of job + +commit 630b018a22d2b7a86087fad436a987889e8ab6e9 +Author: Aaron Beavers +Date: Wed Oct 6 02:38:49 2021 -0400 + + add pull request type + +commit 7911bfb7ff0876de59ca45b41f50d65b87df1eed +Author: Aaron Beavers +Date: Wed Oct 6 02:24:44 2021 -0400 + + Remove status checks + +commit d7b539f13ac915dfddee98f59731605200d35b22 +Author: Aaron Beavers +Date: Wed Oct 6 02:14:37 2021 -0400 + + update qasp label + +commit 1c9757a7ce65dad7dac3d5d0ce0e18ef952c9562 +Author: Aaron Beavers +Date: Wed Oct 6 02:13:51 2021 -0400 + + update step ids + +commit 6c2a30d68796ed27e886572445a092f773c1a018 +Author: Aaron Beavers +Date: Wed Oct 6 02:10:43 2021 -0400 + + Add push event type + +commit c85c4811cdf4a9300f5dc1bf7562aaf4a8e83741 +Author: Aaron Beavers +Date: Wed Oct 6 01:57:01 2021 -0400 + + remove labeled event type + +commit 44f14d2ff8ce28d45ff126b4e97ca971d4e80110 +Author: Aaron Beavers +Date: Wed Oct 6 01:43:39 2021 -0400 + + add qasp parameters to backend + +commit 6cc0e78e5ecb6aa1c48d5b2cbcd5e89d830f8a45 +Author: Aaron Beavers +Date: Wed Oct 6 01:40:15 2021 -0400 + + add parameters and condition for frontend + +commit ee352f3a523adc7b730a5c5febe4c13cf6197d6e +Author: Aaron Beavers +Date: Wed Oct 6 00:41:28 2021 -0400 + + Add owasp pipeline parameter + +commit 905b93eb07912cf4ab61f37e27cf6859089ecb10 +Author: Aaron Beavers +Date: Wed Oct 6 00:12:10 2021 -0400 + + add github action + +commit 50b6c93eb5fb330f7d9ec43f0194ccefa889a3d8 +Author: Aaron Beavers +Date: Tue Oct 5 19:50:00 2021 -0400 + + fix owasp parameter type + +commit 7da264b3e3251fe6c6bd5885bed286b8fab8cb36 +Author: Aaron Beavers +Date: Tue Oct 5 19:08:14 2021 -0400 + + modify owasp to run only if parameter present + +commit 0c8b688650c21a01aecd057c381c92fa7f56777d +Author: John Willis +Date: Tue Oct 5 17:57:24 2021 -0400 + + Mount zap-hook in a different directory to prevent conflicts with reports dir + +commit 3e180c39bac9a01ac0b46bacd4b2390597b09036 +Author: John Willis +Date: Tue Oct 5 17:37:23 2021 -0400 + + Fix interpretation errors in git secrets config + +commit 9fcc678b3ce2a8dc66a5456e5b57cc75e679e29f +Author: John Willis +Date: Tue Oct 5 17:34:47 2021 -0400 + + Update git secrets config to reflect changes in docker-compose + +commit 588511f03f41b2df7f2b8fb9a45ac28764615d22 +Merge: cc06b3cbc c51f6ce01 +Author: John Willis +Date: Tue Oct 5 17:28:42 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit cf30e889b911618c260f3465db0186fc12110484 +Merge: 5c475ac71 c51f6ce01 +Author: John Willis +Date: Tue Oct 5 17:27:16 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1258-disable-ignored-owasp-rules + +commit 5c475ac7186f712356b81651a955823b18c7ac3b +Author: John Willis +Date: Tue Oct 5 17:07:02 2021 -0400 + + Issue 1258: Reduce false positives in OWASP ZAP reports + +commit fdc0015c98bae34c0650302f28aa49c09e4c8ce6 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Oct 5 19:58:41 2021 +0000 + + Bump cypress from 8.3.1 to 8.5.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 8.3.1 to 8.5.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v8.3.1...v8.5.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit c51f6ce010bc7efb287ce3b11661a6bff9d3d346 +Merge: 7f7c82278 fec5a9a24 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Oct 5 15:55:15 2021 -0400 + + Merge pull request #1340 from raft-tech/feat/1161-owasp-scan-logs + + Issue 1161: Implement storage of nightly OWASP ZAP scan results + +commit fec5a9a243209e99f3cc9960109a3295d0b8738a +Author: John Willis +Date: Tue Oct 5 15:09:49 2021 -0400 + + Reverted QASP review change that didn't get carried over right from suggestions + +commit 6e5ca3b180a8cfea39e6798d9ee217ae33b82bf2 +Author: John Willis +Date: Tue Oct 5 15:07:11 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 37081a93917dbde72bf715a031a7eb31e318680c +Author: Aaron Beavers +Date: Tue Oct 5 13:29:04 2021 -0400 + + Update tests + +commit 70e5c8d572385a454b60ebef6cd398c67c2e89ec +Author: Aaron Beavers +Date: Tue Oct 5 13:28:45 2021 -0400 + + uncache group membership properties + +commit 1c0e44539783dc4b9a471660f74c53ebbdaaa1bf +Merge: 25b64ca93 7f7c82278 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Oct 5 11:23:15 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1135-auth-source + +commit 0e84505526f722cee1a276d2989e1ba1fa2ea316 +Author: abottoms-coder +Date: Tue Oct 5 09:56:24 2021 -0400 + + Creating ADR addendum to note our management of the Cloud.gov platform + +commit 9b4ee32574f6a44e5ce64f478b7e55e208481e7c +Author: Alexandra Pennington +Date: Tue Oct 5 09:02:29 2021 -0400 + + qasping 1161 + +commit 6840d474b518506beda205fa44a216281187bb7a +Author: Jorge Gonzalez +Date: Mon Oct 4 15:37:28 2021 -0400 + + tweak initial ams auth request + +commit 5fd0a3cbb7bc2af0e6c99ef3bb6979c7b3074afe +Merge: c6ffc0007 7f7c82278 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Oct 4 14:50:58 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs + +commit 7f7c822787e06117e946fa7b5d063ef7d76bf5d2 +Merge: 255fa39cd 695c067db +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 11:55:50 2021 -0400 + + Merge pull request #1360 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.2 + + Bump @testing-library/react from 12.1.0 to 12.1.2 in /tdrs-frontend + +commit 695c067db098fdabba29750baeb2c3ee03f55606 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Oct 4 15:26:32 2021 +0000 + + Bump @testing-library/react from 12.1.0 to 12.1.2 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.0 to 12.1.2. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.0...v12.1.2) + + --- + updated-dependencies: + - dependency-name: "@testing-library/react" + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 255fa39cd64b5e3c85a95cb78682eaa74a00648b +Merge: c8775a313 826f3d8e3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 11:22:43 2021 -0400 + + Merge pull request #1359 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.3.0 + + Bump concurrently from 6.2.1 to 6.3.0 in /tdrs-frontend + +commit 826f3d8e3b061dc9c5bb90a8eca0a5a83c7aa097 +Merge: b03127df7 c8775a313 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 11:05:06 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.3.0 + +commit c8775a3131a0fc945f2e9b1f0810c4fbf21f528e +Merge: b6d357f01 7cce86508 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 10:49:51 2021 -0400 + + Merge pull request #1341 from raft-tech/feat/deps-spam-reduction + + Reduce dependabot spam + +commit b03127df7232a83c2c57febeb3eff480e9854f88 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Oct 4 14:35:47 2021 +0000 + + Bump concurrently from 6.2.1 to 6.3.0 in /tdrs-frontend + + Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 6.2.1 to 6.3.0. + - [Release notes](https://github.com/open-cli-tools/concurrently/releases) + - [Commits](https://github.com/open-cli-tools/concurrently/compare/v6.2.1...v6.3.0) + + --- + updated-dependencies: + - dependency-name: concurrently + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 7cce8650819ebc2c9e69521aac236e26de571584 +Merge: fb2a2d953 b6d357f01 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 10:32:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/deps-spam-reduction + +commit b6d357f0157c78ee74e97b44369f3cce3261afd5 +Merge: abee56462 4d1776d80 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 10:32:08 2021 -0400 + + Merge pull request #1324 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.1 + + Bump prettier from 2.4.0 to 2.4.1 in /tdrs-frontend + +commit 4d1776d80d2341fdd4fc28b906177e3b27d6c212 +Merge: 05ac26bca abee56462 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 10:15:53 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.1 + +commit abee5646289342be1d181bc6af23ce539f37fd90 +Merge: 1a134fbd9 723feb986 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 10:15:47 2021 -0400 + + Merge pull request #1322 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-cypress-2.12.1 + + Bump eslint-plugin-cypress from 2.11.3 to 2.12.1 in /tdrs-frontend + +commit 723feb9866c1c24df44380f36ab9e480103f56dc +Merge: 8484fc4a5 1a134fbd9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Oct 4 09:39:31 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-cypress-2.12.1 + +commit fb2a2d953b693b941d1baea4684f6de1ee4a73fc +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Oct 1 16:09:17 2021 -0400 + + Update docs/Architecture Decision Record/016-dependabot-dependency-management.md + +commit 4b8e8f723b328a798d118845ddfe7fb8b10264c8 +Merge: 5109614fd 1a134fbd9 +Author: Jorge Gonzalez +Date: Fri Oct 1 15:44:54 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1136-ams + +commit 5109614fdaf765ffc2bd53a0c855e0732bf39535 +Author: Jorge Gonzalez +Date: Fri Oct 1 15:44:41 2021 -0400 + + init + +commit c6ffc00071677929ca66e55cc58b9e2dd4c5e120 +Author: John Willis +Date: Fri Oct 1 15:22:52 2021 -0400 + + Added markdown document for Django Admin logging + +commit 252e19772e68a94779ffbd817911d010b4b64cde +Author: John Willis +Date: Fri Oct 1 15:01:04 2021 -0400 + + Reverted testing changes + +commit 87478ecb90ef68863bd9a63e7b327bad3d4e39ed +Author: abottoms-coder +Date: Fri Oct 1 10:52:05 2021 -0400 + + Updating ADR + +commit 25b64ca93c330c93de35519fffafaabb528f951d +Merge: 93a800fee 1a134fbd9 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Oct 1 09:24:20 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1135-auth-source + +commit 4e72b295ed38cc4831502ed9d1593e15a78ca520 +Author: John Willis +Date: Thu Sep 30 13:37:36 2021 -0400 + + Temporarily comment out waiting for status checks for deployment; due to the on hold nightly workflow preventing checks from completing + +commit 7c53f382f5a5deef864683d0cb81ed7fc1ab84d4 +Author: John Willis +Date: Thu Sep 30 13:18:55 2021 -0400 + + Temp changes to circleci config for tabletop demo + +commit 55e6c0f9fd2ba40879d35736f58b4187d9d3b950 +Merge: 058b70292 1a134fbd9 +Author: John Willis +Date: Thu Sep 30 11:11:28 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs + +commit cc06b3cbc6fe329947b598a916e8fdb6d40adb97 +Merge: 519e7a973 1a134fbd9 +Author: John Willis +Date: Thu Sep 30 11:11:13 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit 4522b6f273468eeb6a6b1617d91c80e3f966d5c8 +Author: Aaron Beavers +Date: Thu Sep 30 10:49:05 2021 -0400 + + test that exceptions are raised if a groups null fields are assigned values + +commit 17ff2d2c3e531fec9c42424f652241871a879041 +Author: Aaron Beavers +Date: Thu Sep 30 10:48:39 2021 -0400 + + remove debugging print + +commit 1a134fbd9067f44dc4707d1ff0cf0314c94742cf +Merge: 834ef7d82 0a5be07cc +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 30 10:34:21 2021 -0400 + + Merge pull request #1344 from raft-tech/lfrohlich-patch-3 + + Update links Current-TDRS.md + +commit 0a5be07ccc5f406b093c399e2556db95799be790 +Merge: 768d19eb7 834ef7d82 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 30 09:12:15 2021 -0400 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-3 + +commit 834ef7d82dadca6c7d9cf4518fe282ed181724ed +Merge: 92fe84ca3 203973595 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 30 09:12:08 2021 -0400 + + Merge pull request #1342 from raft-tech/lfrohlich-patch-2 + + Update Roadmap-and-Backlog.md + +commit a33c5ebff1ce141ee663f1edd74cad3641da9b28 +Merge: 66a2fd760 a52a3c053 +Author: abottoms-coder +Date: Wed Sep 29 11:59:32 2021 -0400 + + Merge branch 'feat/deps-spam-reduction' of github.com:raft-tech/TANF-app into feat/deps-spam-reduction + +commit 66a2fd76003714a329cec13b1f0f64923915ed82 +Author: abottoms-coder +Date: Wed Sep 29 11:59:23 2021 -0400 + + Adding comment to provide documentation on new keyword used + +commit 519e7a973d49b9413818d71028cc8c78a9991ba9 +Merge: fbd5699bd 92fe84ca3 +Author: John Willis +Date: Wed Sep 29 11:18:00 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit 2039735955bfb98907c063481e279c2c4639b2f5 +Merge: 15644ecad 92fe84ca3 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Sep 29 09:51:32 2021 -0400 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-2 + +commit 15644ecad3f2597a039cc02d41eb1c8cd8ed80b5 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Sep 29 09:50:50 2021 -0400 + + Update Roadmap-and-Backlog.md + +commit eee2ec2cfaf06ce79aed4c0d727d89de1fb2dfdc +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Sep 29 09:49:15 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 94412dbdb2110c4e3d269619d39c0f28ba15b8de +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Sep 29 09:46:02 2021 -0400 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 058b70292061d7375105243fffc7be3c181541fa +Author: John Willis +Date: Tue Sep 28 16:01:37 2021 -0400 + + linter fixes + +commit 85b04efd3da89207632e7f1e4f19469f8d7d7412 +Author: John Willis +Date: Tue Sep 28 15:50:59 2021 -0400 + + Code coverage improvements + +commit a52a3c053b27c5f1428ac6061dd2d5d814a8baa0 +Merge: 7b04b9124 92fe84ca3 +Author: John Willis +Date: Tue Sep 28 12:20:50 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/deps-spam-reduction + +commit 506fb4de7533e49acd4616b08b7d47517b98cc37 +Merge: c77e321b6 92fe84ca3 +Author: John Willis +Date: Tue Sep 28 12:12:02 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs + +commit 92fe84ca3e656f44e77cfd7f573b34e0628fcfe6 +Merge: 4ebd15de7 0711c09df +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Sep 28 12:05:18 2021 -0400 + + Merge pull request #1332 from raft-tech/ops/1191-codecov + + fix(1191) Codecov: Frontend uploads fail to find coverage report + +commit 0711c09df9680d341af24a53593efc86f039015e +Merge: 7aa6a70c4 4ebd15de7 +Author: John Willis +Date: Tue Sep 28 11:43:46 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/1191-codecov + +commit 7b04b9124ff004566c6536e1ab5deb17f0e13ee8 +Merge: 0329a259f b3a321649 +Author: abottoms-coder +Date: Tue Sep 28 10:59:29 2021 -0400 + + Merge branch 'feat/deps-spam-reduction' of github.com:raft-tech/TANF-app into feat/deps-spam-reduction + +commit 0329a259f36bd469cbe6525eab444e97271d26a7 +Author: abottoms-coder +Date: Tue Sep 28 10:58:37 2021 -0400 + + Update per Jorge + +commit 768d19eb7c8e9ec50db2544b4d363634c5804558 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Sep 28 10:53:16 2021 -0400 + + Update Current-TDRS.md + +commit 67ae5413bf5bd5979bea9e2bd1839a45354715a7 +Author: Aaron Beavers +Date: Tue Sep 28 10:28:05 2021 -0400 + + Remove extra new line after doc string + +commit b3a3216491d8192c4aa8bd862082f645d231ea33 +Merge: e087dd4e8 4ebd15de7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Sep 28 09:01:45 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/deps-spam-reduction + +commit 8ffec2d966005709887bcf5b2cd1ebfcbf47188c +Author: Aaron Beavers +Date: Mon Sep 27 20:42:32 2021 -0400 + + update migration + +commit 2eaf40d171dc66cf1f01420ea93b4a3422b5b939 +Merge: a0c31d8c5 4ebd15de7 +Author: Aaron Beavers +Date: Mon Sep 27 18:45:30 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1052/regional-staff + +commit a0c31d8c520d4c8492617555cfd69da8acbbc622 +Author: Aaron Beavers +Date: Mon Sep 27 15:22:00 2021 -0400 + + remove single use variable + +commit 0f3b137dd7f3b366a9bb6e71b6160a34ef58e782 +Author: Aaron Beavers +Date: Mon Sep 27 13:49:41 2021 -0400 + + Add doc strings for new functions + +commit 146a3b2c89cafcce5b2601c366518ef2e805808b +Author: Aaron Beavers +Date: Mon Sep 27 12:45:08 2021 -0400 + + All tests passing + +commit 27532bfa095dc46e1044ceeaef23316dff3aecbf +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Sep 27 10:39:20 2021 -0400 + + Update Roadmap-and-Backlog.md + +commit ff8d9d2a5d7515048170f0b2130ace67ecb3201d +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Sep 27 10:33:31 2021 -0400 + + Update Roadmap-and-Backlog.md + +commit 7aa6a70c4a190de4e35b12eee0abac3e17a92e6a +Author: Jorge Gonzalez +Date: Mon Sep 27 10:12:52 2021 -0400 + + Update codecov.yml + +commit c77e321b6bcb61c8706275356bb989e5b49d4470 +Author: John Willis +Date: Fri Sep 24 16:59:49 2021 -0400 + + Revert testing steps + +commit b111905b1b5b31dace7bdab48126d64432c42639 +Author: John Willis +Date: Fri Sep 24 16:29:49 2021 -0400 + + Fix CF run-task command interpolation + +commit d85e6bbf768dc3b26ca4ab4b5869b8ca3c7ee3b5 +Author: John Willis +Date: Fri Sep 24 16:01:03 2021 -0400 + + Call cf-check script with sudo to support machine-executors as well + +commit edaf6481c8a78d0c881a4ffb03ae031859219248 +Author: John Willis +Date: Fri Sep 24 15:58:44 2021 -0400 + + Update permissions tests + +commit f2d20643f793eb6dbc87fa65ef6f074cdfc031d3 +Author: John Willis +Date: Fri Sep 24 15:55:52 2021 -0400 + + Revert executor change + +commit 3cfdfd7b3431654f4f9cf2306b0d5361a313aaeb +Author: John Willis +Date: Fri Sep 24 15:46:35 2021 -0400 + + Test docker-executor for CF CLI + +commit f85cdbce7b6cf3f17f9ede257f8d640e5dbcd7ea +Author: John Willis +Date: Fri Sep 24 15:43:53 2021 -0400 + + Added cf-check step to nightly-owasp-scan so CF CLI will be available; linter fixes + +commit e3ddb1435b2c3dda9bff99c5bb5b815db320eea3 +Author: John Willis +Date: Fri Sep 24 15:18:10 2021 -0400 + + Testing modifications to CircleCI config + +commit e087dd4e8a88d21a5f927af15b4a4bc7fced08ee +Author: abottoms-coder +Date: Fri Sep 24 14:23:30 2021 -0400 + + Per talking with Alex, splitting more precisely into front/backend deps + + As an aside, about half the frontend packages targetted here are devDependencies + +commit a88facc8eefa9a61230d88c5df70e2ec735ebcb9 +Merge: c401e82cb 4ebd15de7 +Author: John Willis +Date: Fri Sep 24 13:56:59 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs + +commit 22d2410f411d80a5e718d12f16f6995735dffc94 +Author: Aaron Beavers +Date: Fri Sep 24 12:38:32 2021 -0400 + + update logic to look directly for a users region + +commit 4ebd15de7a9b1e39323a809d9ef3b0e608f3f334 +Merge: 49c7736f1 fc56e17ab +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Sep 24 12:37:05 2021 -0400 + + Merge pull request #1242 from raft-tech/amilash-patch-3 + + create sprint-27-summary.md + +commit eb9df18f96e26a25f1fcc8064c118952ffb7baec +Author: Aaron Beavers +Date: Fri Sep 24 12:15:53 2021 -0400 + + add test for regional user stt assignment exception + +commit dff63bcd3cc0d91b3b5f770519bfff9d74f587c5 +Author: Aaron Beavers +Date: Fri Sep 24 12:15:10 2021 -0400 + + update existing tests to accept region/user exclusivity + +commit fc56e17ab7c51c16648a40c3f8676f84c06f2263 +Merge: 763b2f38d 49c7736f1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Sep 24 12:06:24 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-3 + +commit fbd5699bd2357fd29804ad6c6f46490afd837406 +Merge: ad1fb6808 49c7736f1 +Author: John Willis +Date: Fri Sep 24 11:43:15 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit b3aa9c4d6d2db931a9b947e45f79bd299e19008e +Author: Aaron Beavers +Date: Fri Sep 24 11:41:49 2021 -0400 + + Override save method for stt and region assignment + +commit 49c7736f1454d24629acd94ffea5e6594d41f3c3 +Merge: 81e21503e 92cf09e4a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Sep 24 10:38:28 2021 -0400 + + Merge pull request #1321 from raft-tech/backend/1291-clam-av-scan-logs + + Issue 1291: Implement storage of ClamAV scan results + +commit 92cf09e4a1d300dd597094ccbc1d71a3c3591ac7 +Author: John Willis +Date: Fri Sep 24 10:01:50 2021 -0400 + + Update tdrs-backend/tdpservice/security/models.py + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 2182e9cf55c4865ba547ced3581b7953c280b480 +Author: abottoms-coder +Date: Fri Sep 24 09:20:03 2021 -0400 + + Pushing first try, might try their dry run script + +commit ad1fb6808bce3cab80ff5647f6483c12910e1c95 +Merge: 22301d33b 81e21503e +Author: John Willis +Date: Fri Sep 24 08:57:11 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit 2a45e0d3414411b1aacd2c7b0d5659e5da705d19 +Merge: 1cda44e06 81e21503e +Author: John Willis +Date: Fri Sep 24 08:46:53 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs + +commit 34a52d0c15a35e5d7c495c164c045867b9c18dec +Merge: 4df9dae88 81e21503e +Author: Jorge Gonzalez +Date: Thu Sep 23 10:42:13 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/1191-codecov + +commit 4df9dae88056634a35a797ab156f8513899b8cce +Author: Jorge Gonzalez +Date: Wed Sep 22 13:21:06 2021 -0400 + + ci: test custom codecov config + +commit c401e82cbcbcb2ab626a3d90894b0a3bb7961cf6 +Author: John Willis +Date: Wed Sep 22 18:36:14 2021 -0400 + + Fix ValueError from referencing temporary file outside of context manager + +commit 4ca4b68bee1f826b9f85e74a918dda5650938356 +Author: John Willis +Date: Wed Sep 22 18:23:34 2021 -0400 + + Most of the way there, need to add tests and misc clean up + +commit 93a800fee468742d0c5c9cfe1789a4ea62cfa19e +Merge: 31b96bb7f 81e21503e +Author: Jorge Gonzalez +Date: Wed Sep 22 10:33:41 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1135-auth-source + +commit 31b96bb7f93fefca7af1d1a00824e453380dafc3 +Author: Jorge Gonzalez +Date: Wed Sep 22 10:33:33 2021 -0400 + + fix: button line height + +commit 1bff043bdca5e90b511cf38f2be439eb508d1fe7 +Author: Aaron Beavers +Date: Wed Sep 22 10:01:16 2021 -0400 + + Update tdrs-backend/tdpservice/conftest.py + + Co-authored-by: John Willis + +commit 946957634707051a2f66af473348db72aaf5a331 +Author: Aaron Beavers +Date: Wed Sep 22 10:01:08 2021 -0400 + + Update tdrs-backend/tdpservice/users/migrations/0022_add_regional_staff_group.py + + Co-authored-by: John Willis + +commit eb140edec6ce8e165387c19d3f20c718d2a04fe3 +Author: John Willis +Date: Tue Sep 21 17:44:34 2021 -0400 + + Updates to zap scanner script, added model for OwaspZapScan + +commit 81e21503edda70dd5d8dffa06776a460d3681535 +Merge: 6c7a66074 df5d481ef +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Sep 21 15:20:03 2021 -0400 + + Merge pull request #1328 from raft-tech/ops/1308-buildpacks + + Issue: 1308 Cloud.gov Buildpack Update (9-9-2021) + +commit df5d481ef6d3b4b4aaf0b1ece28c655aa52b3f01 +Merge: 767a86ad6 6c7a66074 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Sep 21 14:59:58 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/1308-buildpacks + +commit ba0029d155d2736a9cec6634803960a001182b5c +Author: John Willis +Date: Mon Sep 20 17:41:14 2021 -0400 + + Added start of management command to process OWASP ZAP scans + +commit 22301d33b9448cdebcf6696fbe45e0e7ef0fcc4c +Merge: caee22c8f 6c7a66074 +Author: John Willis +Date: Mon Sep 20 12:03:45 2021 -0400 + + Merge branch 'raft-tdp-main' into tech-deep-dives + +commit 1cda44e06782c20d5af5c13e8f205eff2ae21fc7 +Merge: 772cbe43e 6c7a66074 +Author: John Willis +Date: Mon Sep 20 12:03:38 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs + +commit ac797ef2b27e7d82282c31267ce10780ee557d58 +Author: Jorge Gonzalez +Date: Mon Sep 20 11:07:33 2021 -0400 + + fix(codecov): correct path in frontend converage upload script + +commit 6c7a66074d81437d6697e98acff319701e0921e2 +Merge: 3794506d9 ff2ddaa53 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 20 10:32:32 2021 -0400 + + Merge pull request #1317 from raft-tech/feat/1152 + + Issue 1152: Remove upper "Sign In" link + +commit ff2ddaa53b23206d0c0105832a46605f79114b57 +Merge: a1faf5b40 3794506d9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 20 10:09:37 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1152 + +commit 3794506d98de73c1ee39a638f13a6aaf3ccb45f8 +Merge: 3e9a3116d 2e60ff100 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 20 10:09:19 2021 -0400 + + Merge pull request #1306 from raft-tech/fix/1257-login-button + + Issue 1257: Fix Broken Sign In button on Home page + +commit 2e60ff100ee242f533575170d1bf3e7b3ab16aaf +Merge: 37bb606f5 3e9a3116d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 20 09:45:59 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/1257-login-button + +commit 3e9a3116d1b005f109b97edeefb2a91c837acb97 +Merge: 1cb27c3d5 7cf4351cf +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 20 09:39:39 2021 -0400 + + Merge pull request #1311 from raft-tech/docs/1208-csp-inline-waiver + + New ADR for resolving 1208 and 907. + +commit 7cf4351cfa52eaba62e2fa8783ba21bf7f71afd4 +Merge: 934d50b74 1cb27c3d5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 20 09:10:40 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/1208-csp-inline-waiver + +commit 767a86ad6d1598d9a6034cfe4d7073c129fb71f3 +Author: Jorge Gonzalez +Date: Fri Sep 17 15:59:17 2021 -0400 + + docs: Update buildpack-changelog.md + +commit caee22c8f3c7aff4319ac5b1b387f1550bc33119 +Author: John Willis +Date: Fri Sep 17 15:10:08 2021 -0400 + + Added additional technical documentation from deep dive sessions + +commit 934d50b74d1246b8d5ee0c4f89e0e75a977195f8 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Sep 17 13:38:34 2021 -0400 + + Update docs/Architecture Decision Record/019-zap-waiver.md + +commit 772cbe43e5b99aa2f8a2ae3c256f1db128971b0b +Author: John Willis +Date: Fri Sep 17 12:47:53 2021 -0400 + + Cast AV scan settings to integer + +commit 22b0f33c36d8ab812d33d2436d961988fe68ccd3 +Merge: b7a534b1e 1cb27c3d5 +Author: John Willis +Date: Fri Sep 17 12:36:47 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs + +commit a1faf5b406850415f97a7446574e02a3141b529a +Author: Jorge Gonzalez +Date: Fri Sep 17 11:00:46 2021 -0400 + + Minor style fix + +commit b834f8eedda49aa89dc1a0032886673c0ea502d3 +Merge: 43a5e0ef8 37bb606f5 +Author: Jorge Gonzalez +Date: Fri Sep 17 10:59:31 2021 -0400 + + Merge branch 'fix/1257-login-button' into feat/1152 + +commit 3df8d6f02476149cd7fe05e49d7febfefc44a13c +Merge: cbd9fb6b6 37bb606f5 +Author: Jorge Gonzalez +Date: Fri Sep 17 10:58:41 2021 -0400 + + Merge branch 'fix/1257-login-button' into feat/1135-auth-source + +commit cbd9fb6b671c4c93b9ca085f1ef3f494ea0def9e +Merge: 26eeaf1a4 1cb27c3d5 +Author: Jorge Gonzalez +Date: Fri Sep 17 10:56:50 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1135-auth-source + +commit 37bb606f58ff32ea3a06041f084d25ddde8f7a64 +Merge: 99f3ecb79 1cb27c3d5 +Author: Jorge Gonzalez +Date: Fri Sep 17 10:56:35 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/1257-login-button + +commit 43a5e0ef87a0defb26fabbcdba432f139506ca00 +Merge: 49f8dc695 1cb27c3d5 +Author: Jorge Gonzalez +Date: Fri Sep 17 10:56:13 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1152 + +commit 49f8dc695aa831893d890f08e1e1cdc52635ab54 +Author: Jorge Gonzalez +Date: Mon Sep 13 10:37:36 2021 -0400 + + refactor: remove upper "Sign In" link + +commit 0114ef68545e8e95268e99bb792b093579b41121 +Author: abottoms-coder +Date: Fri Sep 17 10:10:21 2021 -0400 + + Updates per PR, also switching status to 'accepted' + +commit 1cb27c3d5f647a4b57660d30fccd490d5a066219 +Merge: 07c709718 37d54bbae +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Sep 17 09:25:11 2021 -0400 + + Merge pull request #1294 from raft-tech/feat/928-404-page + + Issue 928: Implement 404 page + +commit 463373c8b675ad79fd96550dd93b6cff73307991 +Author: Aaron Beavers +Date: Thu Sep 16 14:06:52 2021 -0400 + + Add tests for regional user update permissions + +commit 26eeaf1a4d58619856558cc956619ff393c45fa0 +Author: Jorge Gonzalez +Date: Thu Sep 16 10:56:28 2021 -0400 + + fix: splashpage tests + +commit 81c3e58a7664fb887883bc6cc4b4dfd9130270f0 +Author: Aaron Beavers +Date: Thu Sep 16 09:52:03 2021 -0400 + + Remove lint + +commit 09311b42d192d2c206f8ca0982fc59ff7cdd7979 +Author: Aaron Beavers +Date: Thu Sep 16 09:40:54 2021 -0400 + + Update tdrs-backend/tdpservice/stts/models.py + + Co-authored-by: John Willis + +commit 6d833e7cc4ecc2300a39508fee61430e336723bf +Author: Aaron Beavers +Date: Thu Sep 16 09:35:46 2021 -0400 + + Removed lint around doc string + +commit 05ac26bcab51e11ff504418e49246ebb8b4e4cbb +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 16 06:13:14 2021 +0000 + + Bump prettier from 2.4.0 to 2.4.1 in /tdrs-frontend + + Bumps [prettier](https://github.com/prettier/prettier) from 2.4.0 to 2.4.1. + - [Release notes](https://github.com/prettier/prettier/releases) + - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/prettier/compare/2.4.0...2.4.1) + + --- + updated-dependencies: + - dependency-name: prettier + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit b7a534b1ec4085b8c66fa8e7b27f6018a62498d0 +Author: John Willis +Date: Wed Sep 15 17:26:11 2021 -0400 + + More code coverage + +commit 5bc46a6f66c15c155eb06bda2a87ac509b6b5e30 +Author: John Willis +Date: Wed Sep 15 15:29:28 2021 -0400 + + More code coverage + +commit 4e1e545fe88545162c34e52eeb5ce176a75ccf83 +Author: John Willis +Date: Wed Sep 15 13:36:44 2021 -0400 + + Code coverage + +commit 8acb8bcaa9b02414443082745413297e125add87 +Author: John Willis +Date: Wed Sep 15 12:29:24 2021 -0400 + + Additional code coverage, linter fixes + +commit 47bdc15c99c644f67a4f76c6637f572791182856 +Author: John Willis +Date: Wed Sep 15 11:50:08 2021 -0400 + + Increased code coverage + +commit e776054c4b858d2e30e6678963f9f38884c936a2 +Author: Aaron Beavers +Date: Wed Sep 15 11:19:13 2021 -0400 + + Remove lint + +commit 37d54bbaee8e5d5bb256e9c60b2e5d6f32225f86 +Merge: c774ccde0 07c709718 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Sep 15 09:31:20 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/928-404-page + +commit 8484fc4a5fa8682f59d0cbbd532849e6762644d6 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Sep 15 06:16:43 2021 +0000 + + Bump eslint-plugin-cypress from 2.11.3 to 2.12.1 in /tdrs-frontend + + Bumps [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) from 2.11.3 to 2.12.1. + - [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases) + - [Commits](https://github.com/cypress-io/eslint-plugin-cypress/compare/v2.11.3...v2.12.1) + + --- + updated-dependencies: + - dependency-name: eslint-plugin-cypress + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit b6437921fc67231f8bc8dab98fe7e373cf54ac45 +Author: John Willis +Date: Tue Sep 14 16:51:22 2021 -0400 + + Fix tests + +commit a95300f5908239467e8507b795c3b5a138f6b0b9 +Author: John Willis +Date: Tue Sep 14 15:22:51 2021 -0400 + + Linter fixes + +commit bfc04f83971a686df898d1677757ccb92283dd3a +Merge: 121d8c82d 07c709718 +Author: John Willis +Date: Tue Sep 14 15:11:21 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs + +commit 121d8c82db520af6e9c4a0199f050072d5734ff2 +Author: John Willis +Date: Tue Sep 14 13:50:01 2021 -0400 + + Handle uncaught exceptions, linting/comment fixes + +commit 300a3fc40eb0a1eff616104af6e286460ae0ae15 +Merge: fd4cabe8e 07c709718 +Author: Aaron Beavers +Date: Tue Sep 14 11:52:32 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1052/regional-staff + +commit fd4cabe8e3831d75a8643f49d10b3bc0f5ff4a6e +Author: Aaron Beavers +Date: Tue Sep 14 11:51:36 2021 -0400 + + Implement negative test + +commit 647de7ddc14dc8f87f59649877f2139bfffe8c25 +Author: John Willis +Date: Mon Sep 13 17:12:18 2021 -0400 + + Updated ClamAVClient to log scan results for infected and error states, added permissions for ClamAVFileScan model + +commit 7471e0729fdd84e41221f4ed736bd0c9817ea96d +Author: John Willis +Date: Mon Sep 13 16:09:40 2021 -0400 + + Fix TypeError raised by permissions for regional staff data file downloads + +commit e7f9633fc2c9b77119e73ddb8231432b84e9f25b +Author: John Willis +Date: Mon Sep 13 15:36:16 2021 -0400 + + Added ClamAVFileScan model to track all file scans performed by ClamAV, added new security app to house auditing models + +commit 7dc94ae649af1534cdb3cd84997dc196d92af125 +Author: Aaron Beavers +Date: Mon Sep 13 15:26:23 2021 -0400 + + cleaned up lint + +commit a63c42672fdbac341083beb3e70d759487ab884d +Author: Aaron Beavers +Date: Mon Sep 13 15:19:03 2021 -0400 + + create new stt/region for fixtures + +commit 8d9731a33007562f1f5c75dc41bbae436ad420aa +Merge: 827bce0bb 07c709718 +Author: Jorge Gonzalez +Date: Mon Sep 13 14:51:40 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1135-auth-source + +commit 827bce0bbe036552490cc097a2591a0aaf9f159a +Merge: 979e308ae 99f3ecb79 +Author: Jorge Gonzalez +Date: Mon Sep 13 14:49:56 2021 -0400 + + Merge branch 'fix/1257-login-button' into feat/1135-auth-source + + # Conflicts: + # tdrs-frontend/src/components/SplashPage/SplashPage.jsx + +commit 979e308aed947a73941842376eae2c7d45ccc32a +Author: Jorge Gonzalez +Date: Mon Sep 13 13:59:21 2021 -0400 + + feat: add login with ACF AMS button to SplashPage + +commit 2c46719426dd37df65c1e933c2310ad02b58017d +Author: Aaron Beavers +Date: Mon Sep 13 12:35:24 2021 -0400 + + Start adding test + +commit 07c709718e32f68a6cb3c826169e765301f06006 +Merge: e435c1309 d2a71c666 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 11:51:08 2021 -0400 + + Merge pull request #1316 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.40 + + Bump awscli from 1.20.38 to 1.20.40 in /tdrs-backend + +commit d2a71c6667996a571f3bceb22ec5c43880f3b158 +Merge: d5ffbd3e1 e435c1309 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 11:32:04 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.40 + +commit e435c1309a06a578a2a80b55dcf954d81a3be7d3 +Merge: a7c7b23d8 a3b521f6d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 11:31:28 2021 -0400 + + Merge pull request #1315 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.0 + + Bump @testing-library/react from 12.0.0 to 12.1.0 in /tdrs-frontend + +commit d5ffbd3e1aebc540f808ba1a2879b690df925963 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Sep 13 14:52:09 2021 +0000 + + Bump awscli from 1.20.38 to 1.20.40 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.38 to 1.20.40. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.38...1.20.40) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit a3b521f6dcbab8247d98b8713d495f1410a1974c +Merge: 879a03b7b a7c7b23d8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 10:46:22 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.0 + +commit a7c7b23d8a7025dca976f6a1c0dbe660dca1f692 +Merge: 75aa73d42 c2d8e2915 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 10:46:04 2021 -0400 + + Merge pull request #1312 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.0 + + Bump prettier from 2.3.2 to 2.4.0 in /tdrs-frontend + +commit 879a03b7be6c7051e0454ec53110759f9554930f +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Sep 13 14:30:11 2021 +0000 + + Bump @testing-library/react from 12.0.0 to 12.1.0 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.0.0 to 12.1.0. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.0.0...v12.1.0) + + --- + updated-dependencies: + - dependency-name: "@testing-library/react" + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 99f3ecb79bb08f38a6c28a021fb1dcd588f1c7c5 +Merge: 21e16f574 75aa73d42 +Author: Jorge Gonzalez +Date: Mon Sep 13 10:28:19 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/1257-login-button + +commit c2d8e29157726966a4b3dde02115e1ba4fef2a4c +Merge: 2f4a7ce96 75aa73d42 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 10:25:04 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.0 + +commit 75aa73d4217b80d3a5fd0356df66cffd356ada91 +Merge: 7ed1b4c5b 882024c7f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 10:24:55 2021 -0400 + + Merge pull request #1300 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-5.3.0 + + Bump react-router-dom from 5.2.0 to 5.3.0 in /tdrs-frontend + +commit 2f4a7ce96e3aabee49440cebb0cd9cd56cd6a117 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Sep 13 14:10:01 2021 +0000 + + Bump prettier from 2.3.2 to 2.4.0 in /tdrs-frontend + + Bumps [prettier](https://github.com/prettier/prettier) from 2.3.2 to 2.4.0. + - [Release notes](https://github.com/prettier/prettier/releases) + - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/prettier/compare/2.3.2...2.4.0) + + --- + updated-dependencies: + - dependency-name: prettier + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 882024c7f1b9b51faf41f43693f289209dd29559 +Merge: f22e49e1f 7ed1b4c5b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 10:05:11 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-5.3.0 + +commit 7ed1b4c5b73383e81bebb0961d5517e244a2fc4f +Merge: 0ccc592df eb330ba77 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 10:05:04 2021 -0400 + + Merge pull request #1298 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-redux-7.2.5 + + Bump react-redux from 7.2.4 to 7.2.5 in /tdrs-frontend + +commit eb330ba779eb9ef3e16c206b82f14d47540c640d +Merge: e627491cf 0ccc592df +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Sep 13 09:36:02 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-redux-7.2.5 + +commit 21e16f574c10bf461c671d287c8accec43e2f26e +Author: Jorge Gonzalez +Date: Fri Sep 10 14:20:09 2021 -0400 + + fix: test coverage + +commit 3cefaf532b64832a68ab9338779a1c8ea32ee235 +Merge: d7a3d96ce 0ccc592df +Author: Jorge Gonzalez +Date: Fri Sep 10 14:12:06 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/1257-login-button + +commit c774ccde067752843eaee3edaa7e75f8f4123cc7 +Merge: e2655c101 0ccc592df +Author: John Willis +Date: Fri Sep 10 10:12:14 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/928-404-page + +commit 0ccc592dfba320efcaa7a2351f8210e049b136ad +Merge: fd234f6fb ef0f26e38 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Sep 10 09:14:43 2021 -0400 + + Merge pull request #1266 from raft-tech/devops/1260-circle-ci-api-v2 + + Issue 1260: Migrate Dev Deployments to Circle CI API V2 + +commit 763b2f38ddec4e6080c6df03c27c9403e8760143 +Author: John Willis +Date: Thu Sep 9 16:24:09 2021 -0400 + + Update docs/Sprint-Review/sprint-27-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit ef0f26e38c00b6971e9c4aa3644721f14343459c +Merge: 35c32294a fd234f6fb +Author: John Willis +Date: Thu Sep 9 15:03:03 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 + +commit 09f27803906ecf223a69622ee53d5cebfd2b9ac8 +Author: Aaron Beavers +Date: Thu Sep 9 14:20:38 2021 -0400 + + Update permissions + +commit 694f4fb4f62ea944b7b7298879ffe1d956df33b6 +Author: Aaron Beavers +Date: Thu Sep 9 14:20:12 2021 -0400 + + refactor ownership check call points + +commit 41b3185e336be95dab2fb899397612128cdd626a +Author: Aaron Beavers +Date: Thu Sep 9 14:13:58 2021 -0400 + + Refactor is_ calls + +commit 18a7c86583a27bb51f32cf48b4545dc807def97f +Merge: ccd6155cc 3447b340e +Author: Aaron Beavers +Date: Thu Sep 9 13:54:29 2021 -0400 + + Merge remote-tracking branch 'origin/backend/1052/regional-staff' into backend/1052/regional-staff + +commit 3447b340e6f7ff7cbcef013412a103e03d31b294 +Merge: efb47cb36 2aa1fa93e +Author: Aaron Beavers +Date: Thu Sep 9 13:54:05 2021 -0400 + + Merge remote-tracking branch 'origin/backend/1052/regional-staff' into backend/1052/regional-staff + +commit efb47cb362a91e7fb44708eb5cf3af2c86eb11bb +Merge: aff72fcb9 fd234f6fb +Author: Aaron Beavers +Date: Thu Sep 9 13:32:10 2021 -0400 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into backend/1052/regional-staff + merging tests + +commit fd234f6fbfaa929cee6f3c9f3cce83129f903e08 +Merge: abb7826d1 1e72ceb8b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 9 12:55:14 2021 -0400 + + Merge pull request #1228 from raft-tech/backend/1065/sysadmin-group + + [Backend] Add sys admin (1065) + +commit e2655c10183d28c483ff3b3c583073b936e48242 +Author: Jorge Gonzalez +Date: Thu Sep 9 12:26:09 2021 -0400 + + Fix typo + +commit 0cc0fa1bae31b683c3c80134b027c42f00c7b7c8 +Author: Jorge Gonzalez +Date: Thu Sep 9 12:15:12 2021 -0400 + + Remove invalid test + +commit 7c32639c0bbc9ca4c310a0040673f4425be1f04c +Author: Jorge Gonzalez +Date: Thu Sep 9 12:10:05 2021 -0400 + + Fix active nav item issue in certain cases + +commit e627491cfdfb8a15f4eddfa49460c587c1143737 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 9 15:55:23 2021 +0000 + + Bump react-redux from 7.2.4 to 7.2.5 in /tdrs-frontend + + Bumps [react-redux](https://github.com/reduxjs/react-redux) from 7.2.4 to 7.2.5. + - [Release notes](https://github.com/reduxjs/react-redux/releases) + - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) + - [Commits](https://github.com/reduxjs/react-redux/compare/v7.2.4...v7.2.5) + + --- + updated-dependencies: + - dependency-name: react-redux + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit f22e49e1f4d2d83420458c5de26bd9246ba9acdd +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 9 15:54:53 2021 +0000 + + Bump react-router-dom from 5.2.0 to 5.3.0 in /tdrs-frontend + + Bumps [react-router-dom](https://github.com/ReactTraining/react-router) from 5.2.0 to 5.3.0. + - [Release notes](https://github.com/ReactTraining/react-router/releases) + - [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md) + - [Commits](https://github.com/ReactTraining/react-router/compare/v5.2.0...v5.3.0) + + --- + updated-dependencies: + - dependency-name: react-router-dom + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 486d207294a3b8df38f37df5f295a14386b3faee +Merge: e232b4046 abb7826d1 +Author: Jorge Gonzalez +Date: Thu Sep 9 11:53:55 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/928-404-page + +commit e232b40466c5d403cdd76b3ad1a7ce5dba1f7ff4 +Author: Jorge Gonzalez +Date: Thu Sep 9 11:53:04 2021 -0400 + + Apply tabIndex tweak to 404-page header + +commit 1e72ceb8b08b654a9b400d948e00a03013b7f650 +Merge: 13922cbe0 abb7826d1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 9 11:50:48 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1065/sysadmin-group + +commit abb7826d161a3ec88d3e7352567d3f2dd0e65c57 +Merge: a175de73d 514045b26 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 9 11:50:22 2021 -0400 + + Merge pull request #1310 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.21.2 + + build(deps): bump axios from 0.21.1 to 0.21.2 in /tdrs-frontend + +commit 444f0a7686d9d01c8dae2c9db348339f30250865 +Author: abottoms-coder +Date: Thu Sep 9 11:48:36 2021 -0400 + + New ADR for resolving 1208 and 907. + +commit 514045b26dd75004f163f3f9f80d1e9aa5b6ca2d +Merge: e636e2c70 a175de73d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 9 11:32:56 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.21.2 + +commit a175de73d058d0d132d2f59f8bdea2010aac439b +Merge: 27506fabc 63c0bd249 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 9 11:32:43 2021 -0400 + + Merge pull request #1264 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.12.1 + + Bump uswds from 2.12.0 to 2.12.1 in /tdrs-frontend + +commit ccd6155cc2a94bc84f627a55f40d35d99d5ab83a +Author: Aaron Beavers +Date: Thu Sep 9 11:30:01 2021 -0400 + + Add is_regional_staff cached property to User model + +commit 8763438f3087b6b37c9961df54000e7aadce3404 +Author: Aaron Beavers +Date: Thu Sep 9 11:28:39 2021 -0400 + + Update permissions given to regional staff + +commit 13922cbe03167aa6f06155b2dca0104ddd2ce137 +Merge: a54f9500b 27506fabc +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Sep 9 10:59:22 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1065/sysadmin-group + +commit 63c0bd249d93392a2ec665702e6744597e8b37e2 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 9 13:22:37 2021 +0000 + + Bump uswds from 2.12.0 to 2.12.1 in /tdrs-frontend + + Bumps [uswds](https://github.com/uswds/uswds) from 2.12.0 to 2.12.1. + - [Release notes](https://github.com/uswds/uswds/releases) + - [Commits](https://github.com/uswds/uswds/compare/v2.12.0...v2.12.1) + + --- + updated-dependencies: + - dependency-name: uswds + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit e636e2c702bc502f792521e7b490eaaa4c758447 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 9 13:18:10 2021 +0000 + + build(deps): bump axios from 0.21.1 to 0.21.2 in /tdrs-frontend + + 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 + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 27506fabcd24d7f305b829b948ea865f735d1d56 +Merge: 4c6b6c4f4 cfebbc7f5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 9 09:13:27 2021 -0400 + + Merge pull request #1307 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.38 + + build(deps-dev): bump awscli from 1.20.30 to 1.20.38 in /tdrs-backend + +commit cfebbc7f57afd3addf8336bac21dde50ae995f65 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 9 06:22:23 2021 +0000 + + build(deps-dev): bump awscli from 1.20.30 to 1.20.38 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.30 to 1.20.38. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.30...1.20.38) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 2bd22ff3dd4222dfeef65d44448e854131fb8cc8 +Author: Aaron Beavers +Date: Wed Sep 8 14:36:44 2021 -0400 + + Import permission query helpers + +commit 20e250ca008aa2616baad84384294627d047be54 +Author: Jorge Gonzalez +Date: Wed Sep 8 13:52:07 2021 -0400 + + Remove phone number and add hhs email to contact us button + +commit d7a3d96cee4e6e02f3a4601cb13fd6dc3224ab2e +Author: Jorge Gonzalez +Date: Wed Sep 8 13:25:17 2021 -0400 + + fix(1257): Broken Sign In button on Home page + +commit 9d0ce5720ee37797694fdca36dd53f4d0fe143c7 +Merge: e17e62963 4c6b6c4f4 +Author: Jorge Gonzalez +Date: Wed Sep 8 09:50:52 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/928-404-page + +commit 35c32294aa3f2ade04da94d682ec05c6657d879d +Author: John Willis +Date: Tue Sep 7 16:59:50 2021 -0400 + + Remove unnecessary default for deploy-dev job + +commit d1df9a48492178c2a8b1ccd6b0f1ffcab48ea3c6 +Merge: 373d73d40 4c6b6c4f4 +Author: John Willis +Date: Tue Sep 7 16:56:52 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 + +commit 2aa1fa93ed1db07aaadae762ada0a6adbb79688d +Author: Aaron Beavers +Date: Tue Sep 7 14:08:13 2021 -0400 + + Deal with conflict chunk + +commit 4116a542f22dcda8c537841f7cee96964185214b +Author: Aaron Beavers +Date: Tue Sep 7 14:08:00 2021 -0400 + + Update migration for permissions + +commit 79e087a19be97a2c4b701c9b984cb92b803b59b2 +Author: Aaron Beavers +Date: Tue Sep 7 13:19:48 2021 -0400 + + Remove unnessisary changes to spacing + +commit 4c6b6c4f4c046a4d52013498fc4b261199ae76f3 +Merge: 5d05520ef a441efef3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Sep 7 12:36:12 2021 -0400 + + Merge pull request #1303 from raft-tech/hotfix/trufflehog + + Issue 1296: Fix Trufflehog scan + +commit ac03737f1eaebb3b3208e5e59252cfcf6e898b5f +Author: Aaron Beavers +Date: Tue Sep 7 11:09:08 2021 -0400 + + Update tdrs-backend/tdpservice/users/permissions.py + + Co-authored-by: John Willis + +commit a441efef3a81c8abac2c098b1b44f09b17f2970d +Merge: fc22e464a 5d05520ef +Author: Jorge Gonzalez +Date: Tue Sep 7 10:03:29 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/trufflehog + +commit fc22e464a65bca70ec4c8575a5f68e1a09ddd3e9 +Author: Jorge Gonzalez +Date: Tue Sep 7 09:40:37 2021 -0400 + + hotfix: fix trufflehog scans in upstream merges + +commit 5d05520efa8464c57c00b0dc30876d0cd1b7cb3a +Merge: 981d87cdc 5ebf67655 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Sep 3 13:00:42 2021 -0400 + + Merge pull request #1295 from raft-tech/hotfix/trufflehog + + Issue 1296 [hotfix]: fix trufflehog scans in upstream repos + +commit 5ebf67655fa2badf689660797abe09a00ee18817 +Author: Jorge Gonzalez +Date: Thu Sep 2 15:42:07 2021 -0400 + + hotfix: fix trufflehog scans in upstream repos + +commit 981d87cdca7be8a831b4554c059eb68e7d59a83d +Merge: 3a25764cb ece5377ec +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 14:26:34 2021 -0400 + + Merge pull request #1284 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-4.0.0 + + Bump eslint-plugin-prettier from 3.4.1 to 4.0.0 in /tdrs-frontend + +commit e17e62963287570a4f0ebe2a592ce50ad0dcb38f +Merge: 510d3ea14 3a25764cb +Author: Jorge Gonzalez +Date: Thu Sep 2 12:14:51 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/928-404-page + +commit ece5377ec017945808d295a7726852047506ba93 +Merge: ac13b293e 3a25764cb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 11:57:54 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-4.0.0 + +commit 3a25764cb946a53ad4ecc9e64798a96e8debf8d5 +Merge: 2168af7a4 6a659385d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 11:57:40 2021 -0400 + + Merge pull request #1279 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.1 + + Bump cypress from 8.3.0 to 8.3.1 in /tdrs-frontend + +commit 6a659385dcd590a7c8d7ceb97dffb5dd46772052 +Merge: 8f39b8b27 2168af7a4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 11:27:36 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.1 + +commit 2168af7a48064d8fcefaa88f1ea5844b7c58086f +Merge: a40810ca5 6c39eef7e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 11:27:05 2021 -0400 + + Merge pull request #1243 from raft-tech/devops/969-dynamic-jwt-tests + + Dynamic jwt_cert_key for unit tests + +commit ac13b293eef6777b68219b18f3c5b98880f778e5 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 2 15:13:29 2021 +0000 + + Bump eslint-plugin-prettier from 3.4.1 to 4.0.0 in /tdrs-frontend + + Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.4.1 to 4.0.0. + - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) + - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) + - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits/v4.0.0) + + --- + updated-dependencies: + - dependency-name: eslint-plugin-prettier + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 8f39b8b279126efa8cb09797093fa0cbfc6f2cb1 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Sep 2 15:13:21 2021 +0000 + + Bump cypress from 8.3.0 to 8.3.1 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 8.3.0 to 8.3.1. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v8.3.0...v8.3.1) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 6c39eef7e4b42c9460127b27b683af671e4ec3f3 +Merge: 8d4b05fed a40810ca5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 11:10:43 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests + +commit a40810ca5f27636a9503db9057d4e97b13cfc502 +Merge: ee8f75939 60bd7b847 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Sep 2 11:10:27 2021 -0400 + + Merge pull request #1234 from raft-tech/ci/966-trufflehog + + Issue 966: Add a Circle CI testing step that confirms no secret keys have been committed + +commit 60bd7b84701c7a6e0331228c223e689df08e88f5 +Merge: 0fbf7f5be ee8f75939 +Author: Jorge Gonzalez +Date: Thu Sep 2 10:44:23 2021 -0400 + + Merge branch 'raft-tdp-main' into ci/966-trufflehog + +commit 510d3ea1402f59557986985bb33a820f6ae5d923 +Author: Jorge Gonzalez +Date: Thu Sep 2 10:02:23 2021 -0400 + + feat: implement 404 page + +commit 8d4b05fed765d7e86ea4963423062ff40fd7f4f3 +Merge: da985804e ee8f75939 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Sep 1 16:43:08 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests + +commit ee8f75939de0ba8b1f0851363c98d9fbe9c171cf +Merge: 1f27023c9 9bb520aa5 +Author: Miles Reiter +Date: Wed Sep 1 15:56:02 2021 -0400 + + Merge pull request #1283 from raft-tech/round-7-docs + + Round 7 docs + +commit aff72fcb931d7a91b115e50b5bd91fc084c4d70a +Merge: e6ef64c26 1f27023c9 +Author: Aaron Beavers +Date: Wed Sep 1 12:48:13 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1052/regional-staff + +commit 9bb520aa582c85e478630f2b5209cc6d521995fe +Author: Miles Reiter +Date: Wed Sep 1 12:03:55 2021 -0400 + + Update 2021, Summer - Communicating Errors in TDP & Validations With Regional Staff.md + +commit eec56cba12e27c3dce0caebff57f7769e7e421a4 +Merge: 70d8930a3 1f27023c9 +Author: Miles Reiter +Date: Wed Sep 1 11:58:40 2021 -0400 + + Merge branch 'raft-tdp-main' into round-7-docs + +commit 70d8930a3d37070b28c0fd23cc57337d3c6281f8 +Author: Miles Reiter +Date: Wed Sep 1 11:54:05 2021 -0400 + + Update docs/User-Research/2021, Summer - Communicating Errors in TDP & Validations With Regional Staff.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit a54f9500bc2692fb4486b3ea009ebb5348b4817e +Author: Aaron Beavers +Date: Wed Sep 1 11:46:00 2021 -0400 + + Removed migrations + +commit da985804e15929eb5d77fa6e25fc8e055bdbff40 +Merge: d9ee150c1 1f27023c9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Sep 1 11:02:36 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests + +commit 1f27023c917cb7aefd90fee2a0a6d4e2c18ace9b +Merge: 07e47df3d fcfe0e581 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Sep 1 09:44:32 2021 -0400 + + Merge pull request #1244 from raft-tech/feat/1012-welcome-page + + Issue 1012: Implement welcome page for logged-in users + +commit fcfe0e58132230dbe405124d739f65c934be63fa +Merge: 57eaf62ce 07e47df3d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Sep 1 09:23:50 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1012-welcome-page + +commit 07e47df3d88d088307a9f3ada34e16eef8090011 +Merge: 7187b4a58 181f971d2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Sep 1 09:23:42 2021 -0400 + + Merge pull request #1250 from raft-tech/backend/900/dev-group + + Backend/900/dev group + +commit 0fbf7f5be2f2054ef90a12bc925b4668e0cd7425 +Author: Jorge Gonzalez +Date: Tue Aug 31 13:21:28 2021 -0400 + + ci: add step to scan for secrets with trufflehog + +commit 181f971d294e43486c1e34e354910bb950b5f2c9 +Merge: d172721f9 7187b4a58 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Aug 31 13:15:40 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/900/dev-group + +commit d172721f9ff98474e8c7767d77121142d9a233c8 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Aug 31 12:58:01 2021 -0400 + + Update tdrs-backend/tdpservice/settings/common.py + + undoing testing step. + +commit 373d73d40befe9eaa7490b2db02f71ab65e9d9ca +Merge: bf8b7e830 7187b4a58 +Author: John Willis +Date: Tue Aug 31 12:56:41 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 + +commit 7187b4a58ee04608547a97220e30ed9c80e96c9c +Merge: c5a6df168 5804dcb15 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 31 12:28:05 2021 -0400 + + Merge pull request #1253 from raft-tech/docs/808-pr-template-update + + PR template update + +commit ae09bb520814368e5113a6c5980f9d8517671bc4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Aug 31 12:00:08 2021 -0400 + + Update tdrs-backend/tdpservice/settings/common.py + + for testing + +commit d9ee150c102747ff36cba7403f0b0ca878280b38 +Merge: e7e7da4ea c5a6df168 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 31 11:48:31 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests + +commit 4f9c8f90f76c080ea610bdd11c8136c1720ffad2 +Merge: cfe62ae30 c5a6df168 +Author: Aaron Beavers +Date: Tue Aug 31 11:46:35 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1065/sysadmin-group + +commit 5804dcb154ce997b7ab99ce3d50d05519c97dc91 +Merge: fbd270c70 c5a6df168 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 31 10:56:34 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/808-pr-template-update + +commit fbd270c707b8698a6cb0739170b2f7ce084970e8 +Author: abottoms-coder +Date: Tue Aug 31 10:56:12 2021 -0400 + + Fixing broken link + +commit e6ef64c263d1a697405747734b7814f769199e80 +Author: Aaron Beavers +Date: Tue Aug 31 09:26:26 2021 -0400 + + Update white space lint + +commit dd503449f07dfcb88f03c6539545c4ed3a64a045 +Author: Aaron Beavers +Date: Tue Aug 31 09:13:29 2021 -0400 + + Add logic for restriting regional staff to their region + +commit ff3a27d539414c6475c783b1465d44e00acb4cad +Merge: 5faf1b6c1 c5a6df168 +Author: Miles Reiter +Date: Mon Aug 30 18:25:16 2021 -0400 + + Merge branch 'raft-tdp-main' into round-7-docs + +commit 5faf1b6c16212acc0baf54c9e242532d388d81b7 +Author: Miles Reiter +Date: Mon Aug 30 18:21:28 2021 -0400 + + Fix/update linking + +commit 089e93975de11b4eb2ed9598779b5753e4862cd0 +Author: Miles Reiter +Date: Mon Aug 30 18:14:05 2021 -0400 + + Create 2021, Summer - Communicating Errors in TDP & Validations With Regional Staff.md + +commit bf8b7e830681bfc30e1bed418c04c7b65b9e947e +Merge: 8870c560a c5a6df168 +Author: John Willis +Date: Mon Aug 30 16:53:37 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 + +commit 8870c560a73151857fab25939ceaa1d184d88076 +Author: John Willis +Date: Mon Aug 30 16:52:37 2021 -0400 + + Updated documentation in deploy-on-label and restored previously commented out status checks + +commit 62765db535537efeeca97637c65db082a412f817 +Author: John Willis +Date: Mon Aug 30 16:35:29 2021 -0400 + + Removed now unused jobs + +commit 803b0e0890019070b2b72052873034baa77c7c37 +Author: John Willis +Date: Mon Aug 30 16:28:46 2021 -0400 + + the quote is in the right place now... + +commit 57eaf62ce4ace708ca022b2ed882ba519ef80260 +Merge: 08a99b79a c5a6df168 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Aug 30 16:27:52 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1012-welcome-page + +commit 6da505adf92dd4904badf1ea3cef334f93205b0e +Author: John Willis +Date: Mon Aug 30 16:26:51 2021 -0400 + + Add missing quotes + +commit 89211372a3814b18f28aaedc3e622b3a12853782 +Merge: 7f002a543 c5a6df168 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 30 16:26:14 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/900/dev-group + +commit 669a3666e762a52f7e7925003b3837d81576a228 +Author: John Willis +Date: Mon Aug 30 16:24:12 2021 -0400 + + fix variable not getting replaced + +commit c5a6df168cfd54a83e361c4b85dbbd2b2eb11e95 +Merge: a294aab50 78d359c44 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 30 16:22:05 2021 -0400 + + Merge pull request #1230 from raft-tech/backend/901-model-permissions + + Issue 901: Remove usage of is_superuser in favor of Model and object level permissions + +commit d778ef13e1a33776603ba2016d215fa674330cec +Author: John Willis +Date: Mon Aug 30 16:20:33 2021 -0400 + + Testing single deploy-dev job with parameters + +commit 38cda9c9ac62cb0dfd3286f282e35962bfb4b8ba +Author: John Willis +Date: Mon Aug 30 16:11:44 2021 -0400 + + Testing nesting conditionals + +commit 7c3f226b763077a3ff448a5d384f83b2b64dcb95 +Author: John Willis +Date: Mon Aug 30 16:08:38 2021 -0400 + + Testing deploy env in job name + +commit 3519910846d011d9f1f6d79c89f887e37e31f211 +Author: John Willis +Date: Mon Aug 30 15:58:32 2021 -0400 + + Testing different API token + +commit 7230bd09b2ddb689aea8efcfede4bd5e17d704f3 +Author: Miles Reiter +Date: Mon Aug 30 15:54:55 2021 -0400 + + Adds Readme changes + +commit 08a99b79aa956d57fe95d224f2404ae24db7163b +Merge: 078c5a51e a294aab50 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Aug 30 15:46:24 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1012-welcome-page + +commit 78d359c44c76fcfa784cddb8d45c6b92d8377a12 +Merge: 26d2e18fe a294aab50 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Aug 30 09:32:14 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 9ae8e39ba2ec85170b68c5b2ebe1044ea9d2776e +Author: abottoms-coder +Date: Fri Aug 27 17:05:20 2021 -0400 + + Updating this to closes leverages zenhub's auto-linking feature so now all PRs will come pre-linked to their parent ticket + + https://help.zenhub.com/support/solutions/articles/43000615530-zenhub-issue-and-pr-connections + +commit a294aab50cd2ba6f4264b3ef996df0e1e92710c0 +Merge: 1a92f0c3c 6551e6d6d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Aug 27 15:33:15 2021 -0400 + + Merge pull request #1268 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.30 + + Bump awscli from 1.20.28 to 1.20.30 in /tdrs-backend + +commit e7e7da4eaa3049e27e333b566e5425b84f40bdbf +Author: abottoms-coder +Date: Fri Aug 27 13:27:59 2021 -0400 + + Updating per nits from PR + +commit 8fffdfa66ab2852e034a5ec89b393524721c1d76 +Author: abottoms-coder +Date: Fri Aug 27 13:18:06 2021 -0400 + + Updates to documentation per the tabletop discussion + +commit 6551e6d6d4843b01142a439194f06cdbae506b28 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Aug 27 06:22:59 2021 +0000 + + Bump awscli from 1.20.28 to 1.20.30 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.28 to 1.20.30. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.28...1.20.30) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 26d2e18fe102112368fc4e4b72b80d24084aec4a +Merge: 0e7d66d8a 1a92f0c3c +Author: John Willis +Date: Thu Aug 26 15:27:33 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 0e7d66d8ae2c255cd91a7091e1d204786d09892b +Author: John Willis +Date: Thu Aug 26 15:26:59 2021 -0400 + + Added version to Data Files admin + +commit 1a92f0c3c6716e58a0046a6b480d9abb3155d914 +Merge: 3d91f5396 23f84c357 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 26 12:00:50 2021 -0400 + + Merge pull request #1220 from raft-tech/backend/795-postgres-volume + + Issue 795: Persist database contents over docker restarts + +commit 23f84c35738982c6b4d5a1d2707c1cb610261aef +Merge: 86f18c464 3d91f5396 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 26 10:28:29 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit 3d91f539640db70068b76efd5b7e4c2314f0f60a +Merge: 0239d0e47 60b75e71f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 26 10:16:15 2021 -0400 + + Merge pull request #1265 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.0 + + Bump cypress from 8.2.0 to 8.3.0 in /tdrs-frontend + +commit 60b75e71f16ece6867b1be30e6133184e287db2d +Merge: be44b4028 0239d0e47 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 26 09:47:39 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.0 + +commit 0239d0e47da20519ceaf5340507dd6dd0781a095 +Merge: 29ff5f7f6 b262fa798 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 26 09:47:06 2021 -0400 + + Merge pull request #1255 from raft-tech/hotfix/1254-csp-fix + + Issue 1254 (hotfix): DAC Styling changed by CSP header changes + +commit 6351f1548fa14fc3fc8e91d5c08343b6bde00fb9 +Author: John Willis +Date: Wed Aug 25 17:42:15 2021 -0400 + + test simpler payload + +commit a0685d946af4241588d26ce4cb8972967de62294 +Author: John Willis +Date: Wed Aug 25 17:39:56 2021 -0400 + + Version mismatch again... + +commit 39ece3ea3dcab75df9e430c7ff5978ce0c868b46 +Author: John Willis +Date: Wed Aug 25 17:38:10 2021 -0400 + + Use exact version number, since latest tag isn't set up for circleci-trigger-action + +commit 576f8b6bc04670c115619fcb1da78a2ed7e01165 +Author: John Willis +Date: Wed Aug 25 17:36:40 2021 -0400 + + Temporarily commented out preventing deployments until PR checks pass for quicker testing + +commit 9b33b6a90b32ec8e7bb648f2fde1b6b7af88ccd0 +Author: John Willis +Date: Wed Aug 25 17:29:45 2021 -0400 + + WIP: Use alternate GH action to trigger pipeline build with CircleCI API v2 + +commit 214bcf332b46751786515545c86356665d15a883 +Merge: 67a92bd32 066218f02 +Author: John Willis +Date: Wed Aug 25 14:43:46 2021 -0400 + + Merge remote-tracking branch 'origin/hotfix/1254-csp-fix' into backend/901-model-permissions + +commit b262fa798ac35defc9b75e5b8c4bcb1905164366 +Merge: 066218f02 29ff5f7f6 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 14:30:35 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix + +commit be44b40286c7fb0d57a1611a1458c24c0483ee4c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Aug 25 16:32:53 2021 +0000 + + Bump cypress from 8.2.0 to 8.3.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 8.2.0 to 8.3.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v8.2.0...v8.3.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 29ff5f7f63f7565ba3ec02bb523854e85056f266 +Merge: 5c32d78e4 6fefde1bd +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 12:28:16 2021 -0400 + + Merge pull request #1263 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-3.4.1 + + Bump eslint-plugin-prettier from 3.4.0 to 3.4.1 in /tdrs-frontend + +commit 6fefde1bd4d7b2f8a3fadf4b871830e6c97153ae +Merge: 47681f9e4 5c32d78e4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 12:11:26 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-3.4.1 + +commit 5c32d78e4711f644969b4b34629343f4a82d419a +Merge: c49b74d49 ef5dd6119 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 12:11:17 2021 -0400 + + Merge pull request #1262 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.2.1 + + Bump concurrently from 6.2.0 to 6.2.1 in /tdrs-frontend + +commit 47681f9e4eb4ccf28b3e9596432ccd8d73703072 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Aug 25 15:57:45 2021 +0000 + + Bump eslint-plugin-prettier from 3.4.0 to 3.4.1 in /tdrs-frontend + + Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.4.0 to 3.4.1. + - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) + - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) + - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits) + + --- + updated-dependencies: + - dependency-name: eslint-plugin-prettier + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit ef5dd6119b18a4aa7d74f120f3d154c55d4e5396 +Merge: d36e1d077 c49b74d49 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 11:54:03 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.2.1 + +commit 066218f02ed83874cfca3860285c5e9c63ae6908 +Merge: f516720b1 c49b74d49 +Author: Jorge Gonzalez +Date: Wed Aug 25 11:53:15 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix + +commit c49b74d497f04738f18fabee28ef99e64223ae36 +Merge: b5278e780 6cfb62ddb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 11:53:14 2021 -0400 + + Merge pull request #1225 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 + + Bump @fortawesome/fontawesome-svg-core from 1.2.35 to 1.2.36 in /tdrs-frontend + +commit d36e1d077f23b401adbdf95744dee96fe3a0b590 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Aug 25 15:42:15 2021 +0000 + + Bump concurrently from 6.2.0 to 6.2.1 in /tdrs-frontend + + Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 6.2.0 to 6.2.1. + - [Release notes](https://github.com/open-cli-tools/concurrently/releases) + - [Commits](https://github.com/open-cli-tools/concurrently/compare/v6.2.0...v6.2.1) + + --- + updated-dependencies: + - dependency-name: concurrently + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 6cfb62ddb02136185921bc1f1b85cdbd620eb715 +Merge: 4e621a46b b5278e780 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 11:38:29 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 + +commit b5278e7804e1f64e5a79d4574f5d327e5d8b337d +Merge: 69effd0ce 6f056f034 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 11:37:28 2021 -0400 + + Merge pull request #1261 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.28 + + Bump awscli from 1.20.27 to 1.20.28 in /tdrs-backend + +commit cfe62ae30b83d4d3c3466bc0eef92e4dda757c70 +Author: Aaron Beavers +Date: Wed Aug 25 11:30:26 2021 -0400 + + remove zap doc + +commit 6f056f034a832a2020a7484768e0a5c90c482e68 +Merge: 3576715bf 69effd0ce +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 11:05:50 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.28 + +commit 69effd0ceabf066daca626f827db9a27635c1a2f +Merge: 0c5539c7a 023f28e7f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 11:05:30 2021 -0400 + + Merge pull request #1206 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-5.15.4 + + Bump @fortawesome/free-solid-svg-icons from 5.15.3 to 5.15.4 in /tdrs-frontend + +commit f516720b1b2f78e0fd322e830f4be073c3478be2 +Merge: 2d6633557 0c5539c7a +Author: Jorge Gonzalez +Date: Wed Aug 25 10:59:43 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix + +commit 3576715bfa6326559f884fad8b913572b8d399ed +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Aug 25 14:59:29 2021 +0000 + + Bump awscli from 1.20.27 to 1.20.28 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.27 to 1.20.28. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.27...1.20.28) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 2d66335578c839b41576b245dd510bba3e00a05d +Author: Jorge Gonzalez +Date: Wed Aug 25 09:41:52 2021 -0400 + + fix: add s3 resources to csp header + +commit 023f28e7fa701d827a29442f11c853fa465f8273 +Merge: 236cd7ba0 0c5539c7a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 10:45:42 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-5.15.4 + +commit 0c5539c7ad479b1be623801bf7a0749247d45940 +Merge: 62fd5e292 c85706486 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 10:45:35 2021 -0400 + + Merge pull request #1189 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/file-type-16.5.3 + + Bump file-type from 16.5.2 to 16.5.3 in /tdrs-frontend + +commit 236cd7ba0429f4bd208808019705aab2ec366082 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Aug 25 14:34:26 2021 +0000 + + Bump @fortawesome/free-solid-svg-icons in /tdrs-frontend + + Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 5.15.3 to 5.15.4. + - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) + - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/5.15.3...5.15.4) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/free-solid-svg-icons" + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit c857064864a35fe108e0a846386f34142d6bb4d7 +Merge: dc4a8d054 62fd5e292 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 10:29:30 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/file-type-16.5.3 + +commit 62fd5e292007deef1840de0d32bdb306c9a38598 +Merge: 93e9b4895 5544ea493 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 10:29:23 2021 -0400 + + Merge pull request #1188 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/redux-4.1.1 + + Bump redux from 4.1.0 to 4.1.1 in /tdrs-frontend + +commit c2c03395c658e6e5e9a9cd22b12d1c28950f54b4 +Merge: 605c74464 32c178935 +Author: Aaron Beavers +Date: Wed Aug 25 10:23:00 2021 -0400 + + Merge remote-tracking branch 'origin/hotfix/1254-csp-fix' into backend/1052/regional-staff + +commit 32c178935d1dc0731ce063d9e37937e0b0d0a29d +Merge: 09e68b2eb 93e9b4895 +Author: Jorge Gonzalez +Date: Wed Aug 25 10:20:48 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix + +commit dc4a8d0549eda7bfb96d80043b324be50a1abee7 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Aug 25 14:16:31 2021 +0000 + + Bump file-type from 16.5.2 to 16.5.3 in /tdrs-frontend + + Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.5.2 to 16.5.3. + - [Release notes](https://github.com/sindresorhus/file-type/releases) + - [Commits](https://github.com/sindresorhus/file-type/compare/v16.5.2...v16.5.3) + + --- + updated-dependencies: + - dependency-name: file-type + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 5544ea49322b13daa82b61be9c39cd53e3172afc +Merge: bdaeaf7e4 93e9b4895 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 10:10:03 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/redux-4.1.1 + +commit 93e9b4895c50786b0bf18e158ea8d2e99c8891de +Merge: c7d84cad5 a993107ae +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 10:09:57 2021 -0400 + + Merge pull request #1187 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.15 + + Bump @fortawesome/react-fontawesome from 0.1.14 to 0.1.15 in /tdrs-frontend + +commit a993107ae55e59ef32d6d8a08e830ce6c0ec581b +Merge: 38132d3c4 c7d84cad5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 09:51:30 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.15 + +commit c7d84cad5c7480b2d11270def1ac5652fb7db441 +Merge: 7dcb0bd6a 9791c9213 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 09:51:22 2021 -0400 + + Merge pull request #1148 from raft-tech/amilash-patch-1 + + update sprint-schedule.md + +commit 09e68b2eb2b149de6be9b41580c12f7e988faba3 +Author: Jorge Gonzalez +Date: Wed Aug 25 09:41:52 2021 -0400 + + fix: add s3 resources to csp header + +commit 9791c9213655a827a1c84bdca3f62fefde1a564b +Merge: 8c28ac9f1 7dcb0bd6a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 25 09:36:40 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit 089aac6e133302f7d5e1c0b464cc1a4c7c2217c5 +Author: abottoms-coder +Date: Wed Aug 25 09:35:38 2021 -0400 + + Update as requested in PR + +commit 67a92bd3246c16d6e6fcdd9e3a53d897f35404ab +Author: John Willis +Date: Tue Aug 24 16:14:21 2021 -0400 + + Added tests to ensure Groups have the correct permissions after migration + +commit 06fdb56b04900e88a1f297b9fb20a2e2aabbb0f3 +Merge: 559feb122 7dcb0bd6a +Author: John Willis +Date: Tue Aug 24 15:46:27 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix + +commit 605c74464d76e06ee99b03c02538063d316ac451 +Merge: 7dcb0bd6a d9725a13d +Author: Aaron Beavers +Date: Tue Aug 24 11:45:02 2021 -0400 + + Merge remote-tracking branch 'origin/backend/901-model-permissions' into backend/1052/regional-staff + +commit d9725a13dc41e32cac40053ed883ca8a8ffbedf8 +Merge: b0b66e615 7dcb0bd6a +Author: John Willis +Date: Tue Aug 24 10:58:25 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 7f002a543b0ff36d126b2f1af79009c1a2c879a2 +Author: Aaron Beavers +Date: Tue Aug 24 10:27:45 2021 -0400 + + Update tdrs-backend/tdpservice/users/migrations/0021_add_dev_group.py + + Co-authored-by: John Willis + +commit 4e621a46be3ae929e96ff66378ac90dc084262e4 +Merge: aef6099e2 7dcb0bd6a +Author: John Willis +Date: Tue Aug 24 10:19:08 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 + +commit 078c5a51e0283f663530fc71dcca874b87c846c6 +Author: Jorge Gonzalez +Date: Tue Aug 24 10:11:10 2021 -0400 + + refactor: generic signOut util + +commit 45312ae879d945fce413c6453b580bf78cd1aa55 +Author: Jorge Gonzalez +Date: Tue Aug 24 09:45:23 2021 -0400 + + Update tdrs-frontend/src/components/Welcome/Welcome.jsx + + Co-authored-by: John Willis + +commit d579105ab20444ad21cf53f0b336c29678275271 +Author: Jorge Gonzalez +Date: Tue Aug 24 09:44:24 2021 -0400 + + fix: tweak button styles + +commit 3e8153f75afffaad5132cd025195495a6f267c9e +Merge: 7009bb70e 7dcb0bd6a +Author: Jorge Gonzalez +Date: Tue Aug 24 09:39:00 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/1012-welcome-page + +commit 38132d3c4e46b352642ed201d5e9d0e5bb9dadae +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Aug 24 13:14:49 2021 +0000 + + Bump @fortawesome/react-fontawesome in /tdrs-frontend + + Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.14 to 0.1.15. + - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) + - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.14...0.1.15) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/react-fontawesome" + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit bdaeaf7e4fd7ce36fc9a428b3f57dcfbdac77c1e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Aug 24 13:14:07 2021 +0000 + + Bump redux from 4.1.0 to 4.1.1 in /tdrs-frontend + + Bumps [redux](https://github.com/reduxjs/redux) from 4.1.0 to 4.1.1. + - [Release notes](https://github.com/reduxjs/redux/releases) + - [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md) + - [Commits](https://github.com/reduxjs/redux/compare/v4.1.0...v4.1.1) + + --- + updated-dependencies: + - dependency-name: redux + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 7dcb0bd6acb416ac2119a82031d4fad0ec6f3800 +Merge: 50b23220a 76eddf611 +Author: John Willis +Date: Tue Aug 24 09:10:15 2021 -0400 + + Merge pull request #1256 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.27 + + Bump awscli from 1.20.25 to 1.20.27 in /tdrs-backend + +commit 8c28ac9f188fd538c6d8025c226e45fa6a52ec71 +Merge: 592b0d8c4 50b23220a +Author: John Willis +Date: Tue Aug 24 09:09:45 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit 76eddf6113729c8dd974cbd783ab318af1c41c3f +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Aug 24 06:14:59 2021 +0000 + + Bump awscli from 1.20.25 to 1.20.27 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.25 to 1.20.27. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.25...1.20.27) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 7009bb70e1db939999ed64fc67bb4c45518041de +Author: Jorge Gonzalez +Date: Mon Aug 23 14:29:52 2021 -0400 + + feat: Implement welcome page for logged-in users + +commit 559feb122ca773284e5ae44a6abd476e952b55a7 +Author: Jorge Gonzalez +Date: Mon Aug 23 12:22:19 2021 -0400 + + fix: csp style-src and form-action headers breaking DAC resources + +commit b0b66e6159a0e7efe8cac07f5fe552dbb4efaebd +Author: John Willis +Date: Mon Aug 23 12:00:11 2021 -0400 + + Code coverage + +commit caf2463664ecb5737ba34af1691d8f99b1b86ebe +Author: John Willis +Date: Mon Aug 23 11:02:17 2021 -0400 + + Code coverage + +commit ba8432f7964e6ac9b63621820d92cb20e04b7f37 +Author: abottoms-coder +Date: Mon Aug 23 10:46:48 2021 -0400 + + Well, symlinks no longer work right in git and qasp is missing some headers found in the previous PR template. Have also added significant updates to fulfill the ACs of 808 + +commit 3f69ef6855919246b86c66c8697c5d34ef422063 +Author: abottoms-coder +Date: Mon Aug 23 10:07:07 2021 -0400 + + Symlink for PR template + +commit a21bfc54649e4ece170fb7b0ab4d40fa3b2fe794 +Merge: be82f2e98 50b23220a +Author: John Willis +Date: Mon Aug 23 09:18:33 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 50b23220a2a25873954bf32d19d13a8db4cced5e +Merge: aed92bfde f881f867c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 23 09:18:26 2021 -0400 + + Merge pull request #1137 from raft-tech/feat/1053-dac-a11y + + Issue 1053: Update django-admin-508 for a11y fixes + +commit 86f18c4642800f0c40a7487cfc31dc6a8f51f44c +Merge: 0bb8ee6a2 aed92bfde +Author: John Willis +Date: Mon Aug 23 09:15:18 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit 904500951d52f1c7feb384529466a413d0924b19 +Author: Aaron Beavers +Date: Fri Aug 20 15:30:33 2021 -0400 + + Update migration + +commit 4ab34c545fcc367a35d119efd38ebe6af3cbd8d8 +Author: Aaron Beavers +Date: Fri Aug 20 15:25:39 2021 -0400 + + Update failing test + +commit 0ad75912eba5804615e9c3bf3ac90faa8cfb9954 +Author: Aaron Beavers +Date: Fri Aug 20 13:03:22 2021 -0400 + + Add migration to create developer only when setting is true + +commit 1bb4d950d1f38e9d7a96e0b9c72832af771ad274 +Author: Aaron Beavers +Date: Fri Aug 20 13:02:56 2021 -0400 + + Add developer group flag to settings + +commit f881f867c297796303ddc8ecdf8d7eae6abea09c +Author: Jorge Gonzalez +Date: Fri Aug 20 11:32:07 2021 -0400 + + feat(a11y): Update django-admin-508 for django-admin fixes + +commit be82f2e9800545e06a1f2149386443bda33e59c5 +Merge: b656f8b87 aed92bfde +Author: John Willis +Date: Thu Aug 19 16:30:08 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit b656f8b87ba68b2babcddf10c198f8364a29dbb0 +Author: John Willis +Date: Thu Aug 19 16:25:24 2021 -0400 + + Refactored the rest of the permission clasess to be backed by Django Model Permissions and implement custom object_permission where needed + +commit aed92bfde7ab51efcf3ab180514bc78143b4e091 +Merge: d35110ef2 01f91b57b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 19 16:19:22 2021 -0400 + + Merge pull request #1222 from raft-tech/backend/1192/set-csp-header + + Backend/1192/set csp header + +commit 01f91b57ba8cd17e1848e9e7635dd2a758eccffa +Merge: a99b44043 d35110ef2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 19 16:05:05 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1192/set-csp-header + +commit d35110ef262a49abf7995f92c9ddfd4c9a18542d +Merge: 7f463d189 eeacfd62a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 19 16:04:57 2021 -0400 + + Merge pull request #1236 from raft-tech/hotfix/1235-pdfs-showing-modified + + Gitattributes update for silencing "modified" pdfs + +commit eeacfd62a20106a2923888ed1f8f5656f61a373a +Merge: cc67e132c 7f463d189 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 19 11:44:01 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1235-pdfs-showing-modified + +commit a99b44043f893a23d41390eae84fadf90f75a46f +Merge: a01914046 7f463d189 +Author: Aaron Beavers +Date: Thu Aug 19 10:25:49 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1192/set-csp-header + +commit 7f463d189daf9bf237d605146407c9b856917840 +Merge: 9aea06b06 1cbb8b276 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 19 10:04:10 2021 -0400 + + Merge pull request #1184 from raft-tech/amilash-patch-2 + + create sprint-26-summary.md + +commit 1cbb8b2768b56771020f820f66010e8f80d567ef +Merge: c14f640a5 9aea06b06 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 19 09:49:43 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-2 + +commit 2905f0452755198ba90fc94090417dca711d47bb +Author: John Willis +Date: Wed Aug 18 17:45:09 2021 -0400 + + Updated DataFilePermissions to use DjangoModelPermissions; fixed issue where migrations wouldn't assign permissions on a clean database + +commit 0bb8ee6a26e1133abcb37d70685b24d7c3be4c16 +Merge: 446ed0601 9aea06b06 +Author: John Willis +Date: Wed Aug 18 14:46:23 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit b6b1ac6647a0d8c87690314ac8db2bfe6bd31c6d +Merge: 4040edee8 9aea06b06 +Author: John Willis +Date: Wed Aug 18 14:40:49 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 9aea06b06a9b6ceaa56bcfb54dcc4509ac7e153d +Merge: 17b02304f 2ac3b1797 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 18 12:15:20 2021 -0400 + + Merge pull request #1227 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 + + Bump awscli from 1.20.18 to 1.20.21 in /tdrs-backend + +commit c14f640a56a22a4d8b42f8464c9788cddbfa1de6 +Merge: 581fbfdc3 17b02304f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 18 11:39:12 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-2 + +commit 2ac3b179704a4fdcb57ac315a1c9e8b775edb659 +Merge: a2fc62207 17b02304f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Aug 18 11:38:47 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 + +commit 0106b8e2b293044987dcdcfb3c0561aa7c61627c +Author: abottoms-coder +Date: Wed Aug 18 11:36:31 2021 -0400 + + Flake8 updates, thanks CircleCI + +commit b25d67a9bfdd271a5247a52fd803e8d3073397ed +Author: abottoms-coder +Date: Wed Aug 18 10:57:46 2021 -0400 + + Updates from flake8 styling and minor improvements + +commit 38f32568e97de290a878084d50eb61e849aee57f +Author: abottoms-coder +Date: Wed Aug 18 09:45:36 2021 -0400 + + Tests complete successfully with new private_key + +commit 4040edee88bbce75c7acccc028761236f16d0805 +Author: John Willis +Date: Tue Aug 17 17:51:40 2021 -0400 + + Fixed migration for OFA Admin permissions and added migrations for Data Analyst and OFA System Admin + +commit 3d0625e6556b1f8790695543a3af63126cc53070 +Author: Angela Milash +Date: Tue Aug 17 11:24:32 2021 -0700 + + Update sprint-27-summary.md + + updated summary description to be more explicit. + +commit 581fbfdc3b554a5d2ded6142715bc76bf3a08b98 +Author: Angela Milash +Date: Tue Aug 17 10:58:23 2021 -0700 + + Update docs/Sprint-Review/sprint-26-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 2085bcabe3bc139c84c8c0cd7274ad329c20ef3d +Author: Angela Milash +Date: Tue Aug 17 10:55:43 2021 -0700 + + create sprint-27-summary.md + + Ready for review + +commit cc67e132c6f50f816dcdd9768bb7deb1fd09450a +Merge: 0d5850fd7 17b02304f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Aug 17 12:34:17 2021 -0400 + + Merge branch 'raft-tdp-main' into hotfix/1235-pdfs-showing-modified + +commit 446ed060142707b11652adf31095f83e928af1af +Merge: 5cb2f5810 17b02304f +Author: John Willis +Date: Tue Aug 17 12:24:38 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit 1581768a6e31e93d01aad6b6b35685492fc56e5c +Author: John Willis +Date: Tue Aug 17 12:22:15 2021 -0400 + + Fixed improper arguments to permissions.add by spreading queryset + +commit 336c0f103d8a1194c19b5685af873af27585a461 +Merge: 8cfb59e23 17b02304f +Author: John Willis +Date: Tue Aug 17 12:21:07 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 17b02304f8477ab62769ae0837be67344799c05a +Merge: c36edb9d2 1606c1ca7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 17 12:02:05 2021 -0400 + + Merge pull request #1160 from raft-tech/backend/755/rename_reports + + Backend/755/rename reports + +commit a2fc622075ee890929a23603d86b8ec4512a97a5 +Merge: c89f70016 c36edb9d2 +Author: John Willis +Date: Tue Aug 17 11:56:37 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 + +commit 5cb2f5810392ad3cfbfa7f2c94b81fad41c042b9 +Merge: 296f04c8f c36edb9d2 +Author: John Willis +Date: Tue Aug 17 11:55:35 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit 1606c1ca74961598d1406b00e7666306c04de144 +Merge: a8895b7a5 c36edb9d2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 17 10:46:30 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/755/rename_reports + +commit c36edb9d2a3f5861728b50f5c217b38135f7d966 +Merge: 55289dbf5 3ae296375 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 17 10:46:21 2021 -0400 + + Merge pull request #1179 from raft-tech/backend/970-django-settings-cg-envs + + Issue 970: Refactor environment variable usage to utilize Django settings + +commit 0d5850fd73e0a78f2b0453c0223fb51848fa2788 +Author: abottoms-coder +Date: Tue Aug 17 10:45:52 2021 -0400 + + Changing to ignore pdf changes as this has been causing issues of late + +commit 8cfb59e233f1c1d3188e369799b25f19ac42d55e +Merge: 28a0289ee 55289dbf5 +Author: John Willis +Date: Tue Aug 17 10:29:44 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/901-model-permissions + +commit 3ae29637565247251f17442f9001dc8a3919089a +Merge: ea26a8f1d 55289dbf5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 17 10:25:33 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs + +commit 28a0289ee0385d5783f036b2d9b95c211b589520 +Author: John Willis +Date: Mon Aug 16 17:10:34 2021 -0400 + + Added migration to add permissions to OFA Admin Group + +commit a01914046fb8f31d318ec740fc017f26a202c549 +Author: Aaron Beavers +Date: Mon Aug 16 13:40:43 2021 -0400 + + Add comment to explain future work + +commit f43aad18efb786f9d3dd1911ec4867d71ea33a64 +Author: Aaron Beavers +Date: Mon Aug 16 13:40:19 2021 -0400 + + Add original static back + +commit 0676f00b9fbe520e95989b5e91336c6694228468 +Author: Aaron Beavers +Date: Mon Aug 16 13:40:00 2021 -0400 + + Import settings + +commit a8895b7a55cfa36f4e4ed75109a7a57a7876bb8c +Author: Aaron Beavers +Date: Mon Aug 16 13:18:01 2021 -0400 + + Update tdrs-backend/tdpservice/data_files/migrations/0009_update_log_entry_content_type.py + + Co-authored-by: John Willis + +commit ea26a8f1dd5c916d86239353111414a46c20a498 +Author: John Willis +Date: Mon Aug 16 12:30:58 2021 -0400 + + Fix decryption issues when DJANGO_SECRET_KEY is not set due to regenerated values in settings + +commit b973d49a6685f60536285fa3c28b204c6bd87a87 +Author: Aaron Beavers +Date: Mon Aug 16 10:46:44 2021 -0400 + + Remove work comment + +commit 5491eb93d3172f59c8d6543d1f02fa8a8c917350 +Merge: c5bd868ea 55289dbf5 +Author: Aaron Beavers +Date: Mon Aug 16 10:36:04 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1192/set-csp-header + +commit c89f70016e28d7f342d16ea2d7fb172abc49e4d4 +Merge: 350fae8af 55289dbf5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 16 09:55:32 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 + +commit 55289dbf5fa2381eede096b03287ebd3aba8a587 +Merge: dd309a5d8 5fcc88b5c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 16 09:55:12 2021 -0400 + + Merge pull request #1205 from raft-tech/fix-line-endings-zap-doc + + Fix line ending inconsistencies for Zap Scan HTML Report markdown + +commit 5fcc88b5c40e41dcd869366f60771fe2538fc5c7 +Merge: 431a09270 dd309a5d8 +Author: John Willis +Date: Mon Aug 16 09:12:07 2021 -0400 + + Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc + +commit 0a3f5fc3243701d7a767068916a778a31ba303de +Merge: 52debeb77 dd309a5d8 +Author: John Willis +Date: Mon Aug 16 09:12:04 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs + +commit 296f04c8fffde64f66eb21e8d69512d559b5fc01 +Merge: c70897414 dd309a5d8 +Author: John Willis +Date: Mon Aug 16 09:12:00 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit 350fae8aff6a606470adb58c34161a4a5b3671fc +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Aug 16 06:28:37 2021 +0000 + + Bump awscli from 1.20.18 to 1.20.21 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.18 to 1.20.21. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.18...1.20.21) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit de98f626471ea1a6aec3f17d21b4e1056a14f604 +Author: John Willis +Date: Fri Aug 13 16:58:36 2021 -0400 + + WIP: Added migration to remove is_superuser flag from all users except initial super user configured via environment variable + +commit f1173b2c92c91ee4fd94a4881be92bded36dd716 +Author: abottoms-coder +Date: Fri Aug 13 16:40:03 2021 -0400 + + ensuring these tutorial steps are saved + +commit 415613b9fd1dfcd9e238851ca8e205bacc9125fb +Author: abottoms-coder +Date: Fri Aug 13 08:38:26 2021 -0400 + + 11/11 of the TestLogin tests pass using the new fixtures and methods + +commit bc3578dd7a75a082b7134e8aabe473acc0b757cf +Author: abottoms-coder +Date: Thu Aug 12 17:34:26 2021 -0400 + + Have a formula for refactoring that seems to be working well. 5/11 done + +commit c5bd868ea78f462437896e40127eb8a507998acd +Author: Aaron Beavers +Date: Thu Aug 12 12:02:30 2021 -0400 + + Delete index.html + +commit aef6099e28ba9778119edec6e43f6aa7539a0d57 +Merge: bd4df67f3 dd309a5d8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 12 11:38:56 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 + +commit dd309a5d8b8faf6c5ab9cc300c4526c7ca64d1ba +Merge: 22f800c3f 4ae9e8de9 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 12 11:38:25 2021 -0400 + + Merge pull request #1142 from raft-tech/feat/907-csp-xss + + Issue 907: Add client-side Content Security Policy to mitigate XSS + +commit 4ae9e8de93122590214e88b30b84fcfcb7936fc7 +Merge: a3df27be0 22f800c3f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 12 11:01:45 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/907-csp-xss + +commit bd4df67f35d7ed375baa6a0f738569ed8d599163 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Aug 12 14:49:06 2021 +0000 + + Bump @fortawesome/fontawesome-svg-core in /tdrs-frontend + + Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.2.35 to 1.2.36. + - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) + - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) + - [Commits](https://github.com/FortAwesome/Font-Awesome/commits) + + --- + updated-dependencies: + - dependency-name: "@fortawesome/fontawesome-svg-core" + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 22f800c3fa346ba62ba6e6c46db5fe89dee5d540 +Merge: cef6a474c 7cd580a44 +Author: John Willis +Date: Thu Aug 12 10:43:18 2021 -0400 + + Merge pull request #1203 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.2.0 + + Bump cypress from 8.0.0 to 8.2.0 in /tdrs-frontend + +commit a3df27be0435680e0b151771bae7953463f874b2 +Merge: 7552bbdb9 cef6a474c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Aug 12 08:28:44 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/907-csp-xss + +commit c11da42352fb051dd8a66ed2e74f6c05a79b6fbd +Author: abottoms-coder +Date: Wed Aug 11 17:43:30 2021 -0400 + + Stopping point for today, reading docs on fixtures/marks -- may need to rewrite tests as parametrize() is for iteration on a data list + +commit 7cd580a44cbc961c1e787afda6403d99d9b8cac8 +Merge: 7fbd1d32e cef6a474c +Author: John Willis +Date: Wed Aug 11 15:52:10 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.2.0 + +commit cef6a474cefaf269fc89cb6826e92fef3f4eef8e +Merge: dd26582ea adf27e9b5 +Author: John Willis +Date: Wed Aug 11 15:51:59 2021 -0400 + + Merge pull request #1219 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.18 + + Bump awscli from 1.20.16 to 1.20.18 in /tdrs-backend + +commit f3c0bf93ab8e9c8a19473672d35a068218648735 +Merge: 6e2e90106 dd26582ea +Author: Aaron Beavers +Date: Wed Aug 11 14:44:18 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/1192/set-csp-header + +commit 6e2e9010636ccc5d9a86aade0d10eae45930196b +Author: Aaron Beavers +Date: Wed Aug 11 13:23:23 2021 -0400 + + remove style src from csp settings + +commit 3cb9164d46bcd0c836ca755d2504148e7ba0f235 +Author: Aaron Beavers +Date: Wed Aug 11 12:15:05 2021 -0400 + + Add space after class doc string + +commit 8ddf5ecde28c33f26d695e2ce9d1500fa2d7d3e1 +Author: Aaron Beavers +Date: Wed Aug 11 11:53:01 2021 -0400 + + Add docstring for index template + +commit 7552bbdb9918eb51446090279dea7bac0717abcd +Merge: 7e28b12fd dd26582ea +Author: John Willis +Date: Wed Aug 11 13:33:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/907-csp-xss + +commit feb0d153e49e75b21f42c4d9c9bafc0dff48e4c7 +Author: abottoms-coder +Date: Wed Aug 11 11:53:41 2021 -0400 + + Split up fixture into multiple and have two successful tests + + Will start propogating changes to other tests and see what refactoring is needed + +commit d6f3b2dabbe8551c6e32dc2ba8e11a2b0700815e +Author: Aaron Beavers +Date: Wed Aug 11 11:41:10 2021 -0400 + + Add index html template + +commit 2579001386e5bac0256a4400a2c33571e6a03d97 +Author: Aaron Beavers +Date: Wed Aug 11 10:52:52 2021 -0400 + + remove unused import + +commit 76a2e1300c50cc13bc9b3f96a7eb64aaeb5dab78 +Merge: 8fb4e659a dd26582ea +Author: Aaron Beavers +Date: Wed Aug 11 10:16:45 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/755/rename_reports + +commit 8fb4e659a41e70753c3b2efe6812174090621fc5 +Author: Aaron Beavers +Date: Wed Aug 11 09:41:01 2021 -0400 + + Make log entry content type migration null safe + +commit 52debeb772b75bc116f2681b3fbd0e771a3c0309 +Merge: 880ade384 dd26582ea +Author: John Willis +Date: Tue Aug 10 16:30:59 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs + +commit 431a092708535d14b64be4e90556034a1ebb83d7 +Merge: c3a655154 dd26582ea +Author: John Willis +Date: Tue Aug 10 16:30:42 2021 -0400 + + Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc + +commit c708974148d4ded42e50aa588ded08d6174745f6 +Merge: 241b7592d dd26582ea +Author: John Willis +Date: Tue Aug 10 16:28:16 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/795-postgres-volume + +commit 241b7592d549c945df0da7f3384f27cd3034fe3e +Author: John Willis +Date: Tue Aug 10 16:28:09 2021 -0400 + + update README + +commit 8be35d2822d91f3300fdf788bbe6888a352d35bd +Author: John Willis +Date: Tue Aug 10 16:12:27 2021 -0400 + + Issue 795: Persist database contents over docker restarts + +commit 4bdfb19515c82fe8324e061e74a9ac68ddad1a38 +Author: Aaron Beavers +Date: Tue Aug 10 15:48:41 2021 -0400 + + Add new migration for log entries content type + +commit 0fcd13c8b776b6bce410d9ada33d4317cde41829 +Author: Aaron Beavers +Date: Tue Aug 10 15:48:23 2021 -0400 + + Remove extra line + +commit adf27e9b5b91eb4bc54873fc9ea7309463b8850e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Aug 10 19:36:56 2021 +0000 + + Bump awscli from 1.20.16 to 1.20.18 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.16 to 1.20.18. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.16...1.20.18) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 7fbd1d32edf59c4c3076310dd1cd1623c34d32ab +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Aug 10 19:34:02 2021 +0000 + + Bump cypress from 8.0.0 to 8.2.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 8.0.0 to 8.2.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v8.0.0...v8.2.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit dd26582eac29b28222b92d737746c95bd9a70a51 +Merge: 2be644dc2 ff1f1407a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 10 15:30:39 2021 -0400 + + Merge pull request #1080 from raft-tech/devops/1044/pally-auth + + Devops/1044/pally auth + +commit ff1f1407aac807fa67ff87de7180dc66d2a39c15 +Merge: c195bca51 2be644dc2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 10 15:14:55 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1044/pally-auth + +commit 2be644dc2bac5e1267ee01f2e51142dbc72880fe +Merge: 95901472a faaaaa666 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Aug 10 12:09:31 2021 -0400 + + Merge pull request #1167 from raft-tech/feat/965-git-secrets-hooks + + Issue 965: Automatic secrets checking + +commit b692eb0ae91bc4addbac435a4570245def0b547f +Merge: f677d69e0 95901472a +Author: Aaron Beavers +Date: Tue Aug 10 11:56:43 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/755/rename_reports + +commit a2fc21be970e03446ff8e6afbcad8e08ef5b4622 +Author: Aaron Beavers +Date: Tue Aug 10 11:18:07 2021 -0400 + + Add index view + +commit b0b86a605d24a4fb9bb67dac15ff98bc5d0d08d7 +Merge: ac1bd96a7 880ade384 +Author: abottoms-coder +Date: Mon Aug 9 17:44:51 2021 -0400 + + Merge for #970 and starting over with smaller fixtures + +commit 880ade384283a19ee87932525869b5ed0fef99ce +Author: John Willis +Date: Mon Aug 9 13:16:25 2021 -0400 + + Enforce DJANGO_SU_NAME requirement for local dev + +commit ac1bd96a7eb99c1ae865f1da4a2ad39686532fc0 +Author: abottoms-coder +Date: Mon Aug 9 12:53:42 2021 -0400 + + First commit, still need to propagate to relevant functions but believe this works with some of the tests + +commit 2bd426479e65ee5c5ce78e28dc3e5ae08547000d +Author: John Willis +Date: Mon Aug 9 11:28:10 2021 -0400 + + Added test case for JWT_KEY not set + +commit faaaaa6663bb6c62b416612adaecb7815c453962 +Merge: 60708b743 95901472a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 9 10:21:48 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks + +commit 0babad353b4d05081a47b1690279ca8d27d866c0 +Author: Aaron Beavers +Date: Mon Aug 9 10:14:44 2021 -0400 + + WIP + +commit 60708b7439c91dbb34684b11faca4a5de30eaf8b +Author: abottoms-coder +Date: Mon Aug 9 09:59:48 2021 -0400 + + Update per PR feedback + +commit 1ed2642efdc23b497c303cf6d5d4948f7ba19829 +Merge: 5bd2bb4fb 95901472a +Author: John Willis +Date: Mon Aug 9 09:45:03 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs + +commit c3a6551547e2fd2325333563f4888c1cca332172 +Merge: 222047b34 95901472a +Author: John Willis +Date: Mon Aug 9 09:40:55 2021 -0400 + + Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc + +commit 95901472ac5fa0fe21d4bc5af54ed228ee03dece +Merge: 06ab6011b 53889d0eb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 9 09:32:19 2021 -0400 + + Merge pull request #1171 from raft-tech/dependabot-dev-deps-adr-update + + Updated ADRs to reflect process for merging devDependencies + +commit 53889d0eb9d4175bf8fc336bbe463afdcb441169 +Merge: 2d7a34a4b 06ab6011b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 9 09:12:10 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-dev-deps-adr-update + +commit 06ab6011bcfea23cc620ec6e7e73250048835c2a +Merge: 829257b9c f6e1cd935 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Aug 9 09:11:32 2021 -0400 + + Merge pull request #1211 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.16 + + Bump awscli from 1.20.15 to 1.20.16 in /tdrs-backend + +commit f6e1cd9355b448527ccfbc78e795d7a72bdb6714 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Aug 9 06:40:18 2021 +0000 + + Bump awscli from 1.20.15 to 1.20.16 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.15 to 1.20.16. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.15...1.20.16) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 547d68a7707e490e84ad838eb527398d7815ab23 +Merge: 0753eb3fd 829257b9c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Aug 6 14:40:08 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks + +commit 829257b9c4f40c2d426e7a2b029b69ebd02a4177 +Merge: 4b296fac7 51870c36e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Aug 6 14:22:15 2021 -0400 + + Merge pull request #1207 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.15 + + Bump awscli from 1.20.9 to 1.20.15 in /tdrs-backend + +commit 7e28b12fd3a493af3a433ca69c8c254d9e2e5f2d +Merge: afa5d240a 4b296fac7 +Author: Jorge Gonzalez +Date: Fri Aug 6 13:45:32 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/907-csp-xss + +commit 0753eb3fd7424c6084a63ff36722302d368061db +Author: abottoms-coder +Date: Fri Aug 6 11:57:29 2021 -0400 + + Re-learning circleCI syntax + +commit 861784999a79aae0e00249174d22792d815183bd +Author: abottoms-coder +Date: Fri Aug 6 11:55:16 2021 -0400 + + Changing up CI architecture for this check per PR request + +commit a76044f8203b104d2fd256da2a71520686195981 +Merge: cbb6fdd92 4b296fac7 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Aug 6 10:20:14 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks + +commit 51870c36ef9af8a0208311166a224a27ac870f5b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Aug 6 06:22:03 2021 +0000 + + Bump awscli from 1.20.9 to 1.20.15 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.9 to 1.20.15. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.9...1.20.15) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 5bd2bb4fbe03d462efe018c981b5ffb07ff95b48 +Author: John Willis +Date: Thu Aug 5 16:06:23 2021 -0400 + + Fix linter errors + +commit a7bb61112b9cf7b624892139ed09be89dc64b5ed +Author: John Willis +Date: Thu Aug 5 16:05:25 2021 -0400 + + Remove all direct usage of env vars in favor of Django settings + +commit f677d69e0163181c21b543dee7a6596ac86fa2b9 +Author: Aaron Beavers +Date: Thu Aug 5 15:24:07 2021 -0400 + + Update report urls frontend + +commit 34c9506b0ee16c649b3d144adcf55fab4f07bcce +Author: Aaron Beavers +Date: Thu Aug 5 15:23:39 2021 -0400 + + Add auto generated migration file + +commit fe1704ab686c244d3496a454f75cb79ceaf4a202 +Author: Angela Milash +Date: Thu Aug 5 12:12:00 2021 -0700 + + Update docs/Sprint-Review/sprint-26-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 2de279a3d7a078c432e89bf24f76b84f259df81c +Author: Angela Milash +Date: Thu Aug 5 12:11:54 2021 -0700 + + Update docs/Sprint-Review/sprint-26-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 592b0d8c45d27059c25d8e9bfb892bfe8ba7cf14 +Author: Angela Milash +Date: Thu Aug 5 12:10:58 2021 -0700 + + update sprint-schedule.md + + updated with new times + +commit 041f3cba1a7ec274d3b6cfaebbe36c4fece062ab +Author: Angela Milash +Date: Thu Aug 5 12:06:37 2021 -0700 + + Update docs/How-We-Work/team-charter/sprint-schedule.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 35b2b1296142db3fe3270a33b403bb6f6cfd9418 +Merge: b55015d23 4b296fac7 +Author: John Willis +Date: Thu Aug 5 13:47:52 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs + +commit 222047b3464624273eb5dcc5b7b31c1561b8da6f +Merge: f80f93c5f 4b296fac7 +Author: John Willis +Date: Thu Aug 5 13:47:46 2021 -0400 + + Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc + +commit 2d7a34a4b0fce44fd1971ac017b6cd0a11a99944 +Merge: ca24fd2ed 4b296fac7 +Author: John Willis +Date: Thu Aug 5 13:38:03 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-dev-deps-adr-update + +commit f758be5d12d99fefdc2d45ee600dbae4bb0072e7 +Merge: 968accea4 4b296fac7 +Author: Aaron Beavers +Date: Thu Aug 5 12:29:08 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/755/rename_reports + +commit 4b296fac79d5a34db4a631763c6abbcfffb48bb0 +Merge: f6e23ee11 f4c220994 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 5 11:41:15 2021 -0400 + + Merge pull request #1172 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-7.32.0 + + Bump eslint from 7.31.0 to 7.32.0 in /tdrs-frontend + +commit ca24fd2edf244c1181b2c37403819b99a51af78f +Merge: 467e52910 f6e23ee11 +Author: John Willis +Date: Thu Aug 5 10:53:46 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-dev-deps-adr-update + +commit f80f93c5f405311b11eb437175eeb16fe2567499 +Merge: ef3e9a7f2 f6e23ee11 +Author: John Willis +Date: Thu Aug 5 10:51:05 2021 -0400 + + Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc + +commit f4c2209942b5f07124ca44b6436f98c18ab15f68 +Merge: 8241ff79d f6e23ee11 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 5 10:44:03 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-7.32.0 + +commit f6e23ee11d6760b7dbb2a5af2640c739e9db55ed +Merge: 5bb6d9a47 30c57ef51 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Aug 5 10:43:55 2021 -0400 + + Merge pull request #1151 from raft-tech/devops/967-django-secret-key-generation + + Issue 967: Dynamically generate DJANGO_SECRET_KEY for initial deployments + +commit ef3e9a7f2dd644b02249c0a6867248a2c7fecd48 +Author: John Willis +Date: Thu Aug 5 10:26:20 2021 -0400 + + Fix line ending inconsistencies for Zap Scan HTML Report markdown + +commit c195bca5166859ef15eaff2cd392278f5a522f97 +Author: Aaron Beavers +Date: Wed Aug 4 23:02:10 2021 -0400 + + Ignore untestable mirage logic + +commit afa5d240aa2bb00791daccc72d16d6c9896624e6 +Author: Jorge Gonzalez +Date: Wed Aug 4 18:26:00 2021 -0400 + + Remove cloud.gov from circleci nginx + +commit a60f40c607a8ea328de003b1c76a3b80d2d9fd78 +Author: Jorge Gonzalez +Date: Wed Aug 4 18:24:13 2021 -0400 + + Add INLINE_RUNTIME_CHUNK to .env + +commit 7f499c5c32e57b732173df57d2e443cfa3256b10 +Author: Jorge Gonzalez +Date: Wed Aug 4 15:03:08 2021 -0400 + + Add various fixes to CSP headers + +commit 791b6462c7c9baf0105e40b478e1b41d77e8cd05 +Author: Aaron Beavers +Date: Wed Aug 4 11:48:38 2021 -0400 + + Update yarn lock file + +commit 968accea455d72b935284b059562d9681dbf0e0c +Author: Aaron Beavers +Date: Wed Aug 4 10:21:19 2021 -0400 + + rename report to data files in merged model file + +commit 6222433b3a8ed5f12c0ca145d80a1d24896455c8 +Merge: 2b240e642 5bb6d9a47 +Author: Aaron Beavers +Date: Wed Aug 4 10:13:01 2021 -0400 + + Merge with issues remote-tracking branch 'origin/raft-tdp-main' into backend/755/rename_reports + +commit 2b240e642fc43161e119575bb0cf7142e0d4c074 +Author: Aaron Beavers +Date: Wed Aug 4 10:06:56 2021 -0400 + + Update tdrs-backend/tdpservice/conftest.py + + Co-authored-by: John Willis + +commit eb47ebf07fd33a9b12dff1a5a204b8497e5fd28b +Author: Jorge Gonzalez +Date: Wed Aug 4 10:02:46 2021 -0400 + + fix: Add client-side CSP policy to nginx + +commit cbb6fdd923f71d96f24ce01b6b3ec2465f0071f5 +Merge: 3d3b82c47 5bb6d9a47 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Aug 4 09:36:11 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks + +commit e9319c7e9c9e733e82a3e47db13cf8cf86a291ae +Merge: 691e2dc2b 5bb6d9a47 +Author: Aaron Beavers +Date: Tue Aug 3 22:50:19 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1044/pally-auth + +commit 0b94d9b5b7c8a6ee7834f0195b8cd3bfea569d78 +Author: Angela Milash +Date: Tue Aug 3 10:40:10 2021 -0700 + + Update docs/Sprint-Review/sprint-26-summary.md + + You beat me to it, thanks Alex + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 0c50409dcb7712d5d60be714883cf1e6c6eb7444 +Author: Angela Milash +Date: Tue Aug 3 10:22:05 2021 -0700 + + create sprint-26-summary.md + + create sprint-26-summary.md and populate based on status as of 08032021 10:21am PST + +commit b55015d230567b844d7eb924bb28e438080cca60 +Author: John Willis +Date: Mon Aug 2 16:51:43 2021 -0400 + + WIP: Migrating environment variable usage to settings + +commit 30c57ef51aa3104b65224db523e1588e7fe272b4 +Merge: 2d41b2c70 5bb6d9a47 +Author: John Willis +Date: Mon Aug 2 15:58:52 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation + +commit 2d41b2c708c7ff692e407d239aa32c8bad0ad631 +Author: John Willis +Date: Mon Aug 2 15:57:45 2021 -0400 + + Prevent parse error on nested JSON + +commit 8241ff79de8c176dc9b43517fe4d42944aed22ef +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Aug 2 06:15:45 2021 +0000 + + Bump eslint from 7.31.0 to 7.32.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 7.31.0 to 7.32.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v7.31.0...v7.32.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 467e52910761b6e03543961ec78b36aaf8e28a13 +Author: John Willis +Date: Fri Jul 30 17:02:03 2021 -0400 + + Update docs/Architecture Decision Record/016-dependabot-dependency-management.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit b5735ff268d486a9ea5c58be824b0b403152da30 +Author: John Willis +Date: Fri Jul 30 14:26:43 2021 -0400 + + Updated ADRs to reflect process for merging devDependencies + +commit 5bb6d9a471f3606f4d2d54a6610f15ee3180da21 +Merge: e238031c0 e20c64858 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 30 10:12:17 2021 -0400 + + Merge pull request #1164 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 + + Bump awscli from 1.20.3 to 1.20.9 in /tdrs-backend + +commit 3d3b82c47f219ec7c95bf2a3faf5092bcf20a3a9 +Merge: 2a1d4b925 e238031c0 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 15:45:35 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks + +commit 2a1d4b92592328c0d3e4044deb0b9eaab5de61a0 +Author: abottoms-coder +Date: Thu Jul 29 15:39:54 2021 -0400 + + Minor tweak to config file + +commit 9c45973df9d54ecd12502c9729e522ae6adbf401 +Author: Aaron Beavers +Date: Thu Jul 29 15:20:46 2021 -0400 + + clean up long lines + +commit 11018c5ffbe8f8d1adc99ae2e522b2ef23a7fc9a +Author: Aaron Beavers +Date: Thu Jul 29 15:09:57 2021 -0400 + + update migrations + +commit b78db4bc5f794a8e2cfef9f8c73639309f31e4e9 +Author: abottoms-coder +Date: Thu Jul 29 15:00:42 2021 -0400 + + Whoops, missed the config with the regexs + +commit 7f10150fa9e9d361473d00231e12da0ce83654c1 +Author: abottoms-coder +Date: Thu Jul 29 14:53:42 2021 -0400 + + Minor tweaks to script for verbosity + +commit eaab3c31b3ccae9c2777897e9e060723814e69b3 +Author: abottoms-coder +Date: Thu Jul 29 14:44:07 2021 -0400 + + Accidently removed a line from this file + +commit 28f4281ebea1aee9037d77ef9b45ca9ae72913dd +Author: abottoms-coder +Date: Thu Jul 29 14:36:50 2021 -0400 + + Trying tweak to path for clone + +commit 8f695ae49d6eb74eb9d0ec33ab08318657098575 +Author: abottoms-coder +Date: Thu Jul 29 14:32:08 2021 -0400 + + After digging, it's just a shellscript, no make necessary? Also trying to move it to tmp + +commit 70feb4eae11e792adef9a7c98977ab864cc6a8ff +Author: abottoms-coder +Date: Thu Jul 29 13:58:31 2021 -0400 + + There should be a better way to test CI...anyway, hoping we can bypass the previous permissions block + +commit d57746606a5e2678f52d4b6d3503ce30a2397d7d +Author: abottoms-coder +Date: Thu Jul 29 13:53:54 2021 -0400 + + If clause was wrong, checking that install now works + +commit e54e44cd78076a4ac1236866cd09c3961a097d2a +Author: abottoms-coder +Date: Thu Jul 29 13:50:06 2021 -0400 + + CI couldn't find gs bin via alias, hoping a correct name will fix + some debugging. + +commit 21e8e89f3e275f5c01e930711de11b59a6daef9b +Author: Aaron Beavers +Date: Thu Jul 29 13:33:51 2021 -0400 + + Get passing tests + +commit e20c64858a70fee0734dae9036e18be9cfeed6d3 +Merge: aceb2b660 e238031c0 +Author: John Willis +Date: Thu Jul 29 13:21:16 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 + +commit 1116716e6741147852cf9b4309999121af37642c +Author: abottoms-coder +Date: Thu Jul 29 12:13:42 2021 -0400 + + Adding CircleCI automation checks after testing + +commit 437339ca5a32aac32116a6ef32f391f7baad59d8 +Merge: 705cd51a7 e238031c0 +Author: John Willis +Date: Thu Jul 29 11:52:53 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation + +commit e238031c06ab689354551edaae8c4cc0c4380d58 +Merge: eb28b367f 34e77c79e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:50:35 2021 -0400 + + Merge pull request #1031 from raft-tech/adp/usermgmt-updates + + Issue 962: update user mgmt docs + +commit 705cd51a7b86aeaaeafdcf27050664f71cc51369 +Merge: b22b39123 eb28b367f +Author: John Willis +Date: Thu Jul 29 11:40:31 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation + +commit aceb2b66086596462c8f35d2daef7bbbf67c5e13 +Merge: b02f7b61d eb28b367f +Author: John Willis +Date: Thu Jul 29 11:38:22 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 + +commit 34e77c79ef4cc48c9d6c128c31c2d114b1a30fdf +Merge: 0b2bc0ce3 eb28b367f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:31:52 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/usermgmt-updates + +commit eb28b367f52f798df1b831d911022e61db1c419c +Merge: c3c33ac6b a641a1c72 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:31:36 2021 -0400 + + Merge pull request #1123 from raft-tech/backend/971-s3-deployed-settings + + Issue 971: Fix S3 settings usage for deployed environments + +commit b02f7b61d18a7c97b2bf14ce9a322896ab68a64c +Merge: fbaa7d67e c3c33ac6b +Author: John Willis +Date: Thu Jul 29 11:24:22 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 + +commit a641a1c72cbdb837af48ad590d670f046f38ebdd +Merge: de8b6839f c3c33ac6b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:16:59 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings + +commit c3c33ac6bcede8651dfff8a7ccc8aba8f35f4e0a +Merge: f53256fb2 a5de66b15 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:16:32 2021 -0400 + + Merge pull request #1103 from raft-tech/devops/1032/scheduled-owasp + + Devops/1032/scheduled owasp + +commit a5de66b15d746ba4e8573e30dd4d102440b7bed4 +Merge: 00503b016 f53256fb2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:01:37 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp + +commit f53256fb288e1022a0096053a7a6eb3072d69d0f +Merge: 636e72184 eb75daf61 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 29 11:00:26 2021 -0400 + + Merge pull request #1149 from raft-tech/devops/968-codecov-validation + + Issue 968: Codecov Uploader update and validation + +commit de8b6839f25adcd9cd32f0db21871a7cac44fa4f +Author: John Willis +Date: Thu Jul 29 10:28:29 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 1481606cec91d02b08e31f3a0a6c12f70db722ba +Author: abottoms-coder +Date: Thu Jul 29 09:56:40 2021 -0400 + + Testing again + +commit 00503b01634688d377b7800f614e07a459b09896 +Author: Aaron Beavers +Date: Thu Jul 29 09:54:30 2021 -0400 + + Remove old zap scan scripts + +commit c4382f3eee72922715af6f7974c086f7ff2be24b +Author: Aaron Beavers +Date: Thu Jul 29 09:53:40 2021 -0400 + + Remove unnessisary code + +commit a51072a25ab11b7b652545fb30e3be487589c2c1 +Author: Aaron Beavers +Date: Thu Jul 29 09:16:56 2021 -0400 + + Update .circleci/config.yml + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 3441c2d718c6b661a6e79ec9887143d24b626940 +Author: Aaron Beavers +Date: Thu Jul 29 09:16:24 2021 -0400 + + Update .circleci/config.yml + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit fbaa7d67e5e7e8e8fd11f6b7ed878a1b7dc0c25e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jul 29 06:22:34 2021 +0000 + + Bump awscli from 1.20.3 to 1.20.9 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.3 to 1.20.9. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.3...1.20.9) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 0a07972801488786449bb47dec3b5cdacfbc102b +Author: Aaron Beavers +Date: Wed Jul 28 16:28:07 2021 -0400 + + Create new model and begin debugging tests + +commit 6ffd8fc9b443fcfcff1a9ed475804b66a271a8ec +Author: Aaron Beavers +Date: Wed Jul 28 13:46:39 2021 -0400 + + Auto stash before merge of "backend/755/rename_reports" and "origin/backend/755/rename_reports" + +commit 275bea09d3b5a0ca04ee5c9553253185dffb06a3 +Merge: 9a5cd7039 9e2b293d2 +Author: Aaron Beavers +Date: Wed Jul 28 13:45:51 2021 -0400 + + Merge remote-tracking branch 'origin/backend/755/rename_reports' into backend/755/rename_reports + +commit def843d4ed1a6fc147bbce49b88982f6b8095e08 +Merge: ec622fdef 636e72184 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jul 28 13:38:55 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp + +commit 9a5cd70391a1a228500202a263bb61e80349625a +Author: Aaron Beavers +Date: Wed Jul 28 13:35:05 2021 -0400 + + Replace all migration dependency references to reports + +commit 9e2b293d2397da40b7de44cc41fd0f42c69c5588 +Author: Aaron Beavers +Date: Wed Jul 28 12:38:52 2021 -0400 + + Add dependencies to migration + +commit 8af869de94432156769787e107a4051acde183a0 +Author: Aaron Beavers +Date: Wed Jul 28 12:38:38 2021 -0400 + + Rename migration files that contain references to report + +commit df3cd49b8f846b727f2d2fc3cb776fbf96d4d30f +Author: Aaron Beavers +Date: Wed Jul 28 12:27:45 2021 -0400 + + Replace all migration dependency references to reports + +commit c93299f3aff5e2b881df7f5a66f76c4979d018fb +Author: Aaron Beavers +Date: Wed Jul 28 12:26:57 2021 -0400 + + Replace all migration model name references. + +commit 2719ac4635d73abe5c0e9962828fd23c7b7aa8bb +Author: Aaron Beavers +Date: Wed Jul 28 12:26:06 2021 -0400 + + Replace all instances of report with data file in non migration files + +commit eb75daf61a775f8a49884016ea30099cf12d7ef4 +Author: John Willis +Date: Wed Jul 28 12:04:22 2021 -0400 + + Remove now unnecessary if block + +commit 82eea30e09d8d54754243c4eb9e9da9aec3c40df +Merge: 655814cfc 636e72184 +Author: John Willis +Date: Wed Jul 28 11:58:14 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/968-codecov-validation + +commit b22b391239c0dc2b77be44d2bce2c842652966c5 +Merge: dc9a6a0d5 636e72184 +Author: John Willis +Date: Wed Jul 28 11:57:57 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation + +commit 5654c0b3a5dd7e4db200a1f47533c20780957423 +Merge: 5c495ca12 636e72184 +Author: John Willis +Date: Wed Jul 28 11:57:47 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings + +commit 655814cfc65f6222476cffb10700e2e6ec585e4f +Author: Jorge Gonzalez +Date: Wed Jul 28 11:35:59 2021 -0400 + + Remove branch name check from current flag step + +commit 636e72184857f74650d061e4b9bc42fec0d90b9f +Merge: 1d5aaeb17 eeded0d1d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jul 28 10:37:29 2021 -0400 + + Merge pull request #1145 from raft-tech/adp/stt_updates + + Updated STT attributes + +commit ec622fdef7cb2a3f6090c34ed406fce09ee3b74b +Merge: 3b2c290fb 1d5aaeb17 +Author: Aaron Beavers +Date: Wed Jul 28 09:53:51 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1032/scheduled-owasp + +commit eeded0d1def273e65fd609417029c9dd6efbc4a7 +Merge: fc8af6c7b 1d5aaeb17 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jul 28 09:42:01 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/stt_updates + +commit 3b2c290fbbe4e6bdd506378ef9a073c9da0141e3 +Author: Aaron Beavers +Date: Wed Jul 28 09:30:40 2021 -0400 + + add docker compose step for frontend + +commit f24ed58be97fd1b5890604339085c3b720e827db +Author: Aaron Beavers +Date: Wed Jul 28 08:37:46 2021 -0400 + + Fix syntax error + +commit b35e457fb72b511523fa43eb137dede9b5e5c3d6 +Author: Aaron Beavers +Date: Wed Jul 28 08:29:52 2021 -0400 + + Add more fine grain control of variables + +commit 0b2bc0ce3b8ada4ea70c6b4e8f887da946592600 +Merge: e892636d6 1d5aaeb17 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 17:11:24 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/usermgmt-updates + +commit e892636d67ec60826dabc2fdfeef00bd2e43718a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 17:11:17 2021 -0400 + + Update docs/Technical-Documentation/user_role_management.md + +commit 6161d112277a9ab1c4e6d63b08a82a645e4cae33 +Author: Aaron Beavers +Date: Tue Jul 27 16:19:59 2021 -0400 + + rename typo in arguement + +commit bbc3dddde51e834ca7cb0a4db52fd8efc972bfd7 +Author: Aaron Beavers +Date: Tue Jul 27 16:06:06 2021 -0400 + + fix permissions minor tweaks, working script + +commit 491a213d6f0b3ebe1f4fcb7a176a4b27f9e45589 +Author: Aaron Beavers +Date: Tue Jul 27 15:03:41 2021 -0400 + + Add extension to zap scanner call + +commit b9ffe90bd02ce7a0c5704507b86c53974fc48701 +Author: Aaron Beavers +Date: Tue Jul 27 14:45:59 2021 -0400 + + update all calls to zap-scanner to use more general script + +commit 1d5aaeb17c263833e7073653705cfafd7790a023 +Merge: b541ab1e7 be4194c7f +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jul 27 14:43:06 2021 -0400 + + Merge pull request #1061 from raft-tech/feat/834-upload-download-connect-real-endpoints + + Issue 834: Connect frontend to real API endpoints for download & upload + +commit 32465d2f57d275d1035c49ddb23d5fbe707fc72d +Author: Aaron Beavers +Date: Tue Jul 27 14:40:54 2021 -0400 + + update paths + +commit 172055d609d30f51155cd4c44519ea43a2a04f01 +Author: Aaron Beavers +Date: Tue Jul 27 13:12:55 2021 -0400 + + Be more specific in description of target_dir location + +commit cd0b0e5e73a24db7283b91b2ac19764d1117548c +Author: Aaron Beavers +Date: Tue Jul 27 12:59:30 2021 -0400 + + Refer to TARGET_DIR + +commit 780fa364cf389ffb3c91f6a99aef6fa2884bc777 +Merge: 119cf6fdc b541ab1e7 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 12:53:16 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/usermgmt-updates + +commit fc8af6c7b642542384eff3e8ecf8e1ed6c697d90 +Merge: 337a67712 b541ab1e7 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 12:40:23 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/stt_updates + +commit 119cf6fdc6995b2a53f90c21bbb18b6657d550af +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 12:37:38 2021 -0400 + + updated screenshots + +commit dc9a6a0d5bff34059495f7e3a89a8e198e178d1b +Author: John Willis +Date: Tue Jul 27 12:33:17 2021 -0400 + + Remove unneeded DJANGO_SECRET_KEY declaration in docker-compose.yml + +commit 2110129b4e039073edd9358cb673389b5ee5c0fa +Author: John Willis +Date: Tue Jul 27 12:30:01 2021 -0400 + + Dynamically generate DJANGO_SECRET_KEY for initial deployments + +commit 9e7961d6b1301afca8ae69f3f16b65b1b39655a9 +Author: Aaron Beavers +Date: Tue Jul 27 12:11:40 2021 -0400 + + Add unified zap scan script + +commit 5c495ca1281e02df9d403b345883fe004c60acc3 +Author: John Willis +Date: Tue Jul 27 11:10:22 2021 -0400 + + Fix space name for prod + +commit be4194c7f2ae3d502e06fa0db949e9763e57a6f0 +Merge: 4cf699cac b541ab1e7 +Author: John Willis +Date: Tue Jul 27 11:08:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit 51b344ba2a1a726589160f65bba6bcdb6b0bd9a6 +Merge: 5d3d0c3de b541ab1e7 +Author: John Willis +Date: Tue Jul 27 11:03:37 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/968-codecov-validation + +commit b541ab1e76ce72d2f44380f02218490b8eafc404 +Merge: 5bc722d3b d4ada0139 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jul 27 10:54:04 2021 -0400 + + Merge pull request #1077 from raft-tech/docs/1045-restaging-for-buildpack-updates + + Updated buildpack documentation for restaging process + +commit 0c65d1be45dffebca1dec071e5a5ca79eb89b680 +Merge: 379a9e2c8 5bc722d3b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jul 27 10:24:00 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings + +commit 5d3d0c3de520a3cd37cc35435b94b88839d599cb +Author: John Willis +Date: Tue Jul 27 10:19:32 2021 -0400 + + Revert branch change for testing codecov uploads + +commit f830e4ef15416cb87e9d318fd9571532ed8dc2a3 +Merge: 45f100a59 5bc722d3b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 10:17:31 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/usermgmt-updates + +commit 337a67712ca6419c0b687a3c6fc7c209335087b9 +Merge: e34a2dcd2 5bc722d3b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 09:32:19 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/stt_updates + +commit e34a2dcd2a16abddb1a5038e6df68ac68c2f216e +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 27 09:17:04 2021 -0400 + + updated tribe in test_commands + +commit 86ac35a55c3dafe68199989ffd11554848064ff8 +Author: John Willis +Date: Mon Jul 26 19:01:12 2021 -0400 + + Fix coverage report path + +commit 764dd9c573e07370c7ccda9d68a2c1efde3ebf5a +Author: John Willis +Date: Mon Jul 26 18:51:13 2021 -0400 + + Remove old upload step + +commit ca1884e5984384c42383598de978baf10a0a83a6 +Author: John Willis +Date: Mon Jul 26 18:43:34 2021 -0400 + + Updated Codecov uploader to new version and added file integrity checks + +commit d4ada013900da2ba1d028cf97e3984db17f4cb8f +Merge: ecea405e5 5bc722d3b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 15:16:26 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/1045-restaging-for-buildpack-updates + +commit ecea405e54e5d602204f3d02706c16ee0f846369 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 15:15:21 2021 -0400 + + Update docs/Architecture Decision Record/011-buildpacks.md + + including link to issue. + +commit 8aa7cd80c0478a53afc1f8e49ed7843b37fc2de5 +Author: Angela Milash +Date: Mon Jul 26 12:14:35 2021 -0700 + + update sprint-schedule.md + + updated with our current meetings and reoccurring meetings + +commit 5bc722d3b67835e672e39579fb7ffd888eceb640 +Merge: db68f9032 504e0750d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jul 26 15:02:15 2021 -0400 + + Merge pull request #1128 from raft-tech/amilash-patch-1 + + create sprint-25-summary.md + +commit 4dcf39a42ce931b5e7b4eab638a01da6ec1db8ac +Merge: 10baed234 db68f9032 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 14:53:41 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/1045-restaging-for-buildpack-updates + +commit 10baed234060770a5a4c4697475c96052274382b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 14:52:09 2021 -0400 + + Update 011-buildpacks.md + + added ADR update date + +commit 504e0750d6b8863de0f5506ab6541400a110ce0e +Merge: 414d8254f db68f9032 +Author: Angela Milash +Date: Mon Jul 26 11:44:40 2021 -0700 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit 3611847e301fb2a6fddd942db168c61c0cd634e5 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 14:18:37 2021 -0400 + + Update .circleci/config.yml + +commit 00ef716e8c5b4d44bdeb624d4ed3b88015ab535d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 14:17:34 2021 -0400 + + Update .circleci/config.yml + +commit f5024d3acd7e2f12c4fc3d0506db2b584b66dd22 +Author: Aaron Beavers +Date: Mon Jul 26 13:59:33 2021 -0400 + + Add backend scan, correct store artifacts directive + +commit 89ec7a8e439f3f588c2d164a8ba72b8be85084fc +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 12:24:25 2021 -0400 + + Update .circleci/config.yml + + for testing + +commit d6c84bd94121c0ce4a0ab14462d60ec29240bdd7 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 12:24:15 2021 -0400 + + Update .circleci/config.yml + + for testing + +commit 4cf699cac931a00fe274fd982a897a921ee3db59 +Merge: 191c6ea90 db68f9032 +Author: John Willis +Date: Mon Jul 26 11:39:34 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit 414d8254f4fcde200eb6c80e88df446f2cd54cc3 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jul 26 10:41:55 2021 -0400 + + Update docs/Sprint-Review/sprint-25-summary.md + +commit a1c5002ab10beb4eff428107753ac60393c4faa0 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jul 26 10:41:41 2021 -0400 + + Update docs/Sprint-Review/sprint-25-summary.md + +commit 63f36c6f2ed6e7c773133158e24805eaa5a81128 +Merge: e3f8a1929 db68f9032 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 09:45:53 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp + +commit db68f9032160525bd6d596effa89f8c6c089fe9e +Merge: 357c7b335 8538f1302 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jul 26 09:42:13 2021 -0400 + + Merge pull request #1124 from raft-tech/backend/755/rename-data-prepper-role + + Replace every instance of data prepper with data analyst + +commit e3f8a19296116b3e99a7546cf4b3a0f8931e832d +Merge: 6bd2df550 357c7b335 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 09:41:29 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp + +commit 8538f1302e74461a08488daf9b58d589e7af4659 +Merge: fa88db6a4 357c7b335 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jul 26 08:27:17 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/755/rename-data-prepper-role + +commit af005348c151ed3279b9ab86cb6d7638c5129aae +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jul 23 17:06:43 2021 -0400 + + updated stt attribues + +commit 691e2dc2bdc48f0c4038423ac70fe095c192ceb9 +Author: Aaron Beavers +Date: Fri Jul 23 15:44:37 2021 -0400 + + Split up a long comment + +commit 4d6647ef4645630a87c58f6b76222bacb36aefd7 +Author: Aaron Beavers +Date: Fri Jul 23 15:44:25 2021 -0400 + + Integrate login state update action to splash page login button + +commit b9cb21cab731c18fd87b74d41936327704a490a5 +Author: Aaron Beavers +Date: Fri Jul 23 15:43:59 2021 -0400 + + Add condition to not follow mock flags if the url matches a production pattern + +commit 8c1da0ab0efaa7d3fd57a3e2745281673fd4480e +Author: Aaron Beavers +Date: Fri Jul 23 15:33:02 2021 -0400 + + Replace inline logic with dispatch to action setMockLoginState + +commit 0c47197505d64c7ab7a942238bffafc79725dd34 +Author: Aaron Beavers +Date: Fri Jul 23 15:31:00 2021 -0400 + + Break long comment into two line + +commit 0283cb13d19235d45a89f98f730946ff8a7e5fe8 +Author: Aaron Beavers +Date: Fri Jul 23 15:30:26 2021 -0400 + + Remove unused import + +commit 3703285ccc42e7f008562fee3c27d04dab56cd0f +Author: Aaron Beavers +Date: Fri Jul 23 15:29:30 2021 -0400 + + Add setMockLoginStates action + +commit 379a9e2c813df95b0e210c4c0d7ea1830945ea6d +Merge: 9d18ab93b 357c7b335 +Author: John Willis +Date: Thu Jul 22 16:52:55 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings + +commit 191c6ea900032b08fd2e2ae63e63d7a4d77f6133 +Author: John Willis +Date: Thu Jul 22 16:48:22 2021 -0400 + + Fix linter errors + +commit 9d18ab93b8bb7a17a0cc682fd379ce9e56157645 +Author: John Willis +Date: Thu Jul 22 16:35:24 2021 -0400 + + Update service plans for Terraform provisioned S3 services + +commit 040ed4073d141ba16c9d070e767a1730e6fa695e +Merge: 6f64d6ebf 357c7b335 +Author: John Willis +Date: Thu Jul 22 16:19:10 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit 357c7b335e94ad62e6d18a3b06a038e030ce8317 +Merge: 6b60b7f89 595eeca8e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 22 14:29:11 2021 -0400 + + Merge pull request #1096 from raft-tech/dependabot-mass-merge + + 1023: Dependabot Mass Merge + +commit 0b4da3715c0993c341a7c1df49f45b5bdacdaf2e +Author: Aaron Beavers +Date: Thu Jul 22 14:27:30 2021 -0400 + + Remove lint + +commit a073635c28045eeef5d5c24381e6d3ad34ae8d3a +Author: Aaron Beavers +Date: Thu Jul 22 13:59:13 2021 -0400 + + Remove IIFE + +commit 93b54a219930926710f53b9135b6c31e7ec976e4 +Merge: 2e2103708 e0c0a25c6 +Author: Aaron Beavers +Date: Thu Jul 22 13:55:09 2021 -0400 + + Merge remote-tracking branch 'origin/devops/1044/pally-auth' into devops/1044/pally-auth + +commit 2e2103708bf2fc136952197f592e368dc1fe5691 +Author: Aaron Beavers +Date: Thu Jul 22 13:54:23 2021 -0400 + + Use ternary expression for readability + +commit e0c0a25c63acd56cd5e6e58556a393496035258a +Author: Aaron Beavers +Date: Thu Jul 22 13:51:39 2021 -0400 + + Update tdrs-frontend/src/components/SplashPage/SplashPage.jsx + + Co-authored-by: Jorge Gonzalez + +commit 0fe2dac9eb370f7a88cee21986f0c2d5c7c61e1e +Author: Aaron Beavers +Date: Thu Jul 22 13:50:19 2021 -0400 + + Fixed misnamed env variable reference + +commit 9f380583dbe56335e55882f4800e6b009f0707a6 +Author: John Willis +Date: Wed Jul 21 19:03:01 2021 -0400 + + Fix error in MEDIA_URL for deployed environments; Refactor USE_LOCALSTACK to be a string yes or no instead of integer to prevent boolean coercion errors. + +commit 7aa6a53c409b629ef35757c22562b4523e6f5d99 +Author: John Willis +Date: Wed Jul 21 17:36:57 2021 -0400 + + Fix typo in staticfiles service reference and allow setting USE_LOCALSTACK without modifying docker-compose.yml (via .env or CircleCI project settings) + +commit 6c3e3d39cdd73651a66496b0a4c920467b0a2192 +Author: Angela Milash +Date: Wed Jul 21 13:53:00 2021 -0700 + + Update sprint-25-summary.md + + added 1059 as per @lfrohlich request + +commit bd935fdf7f87457dadef0450a189bee647e857fa +Author: Angela Milash +Date: Wed Jul 21 13:51:34 2021 -0700 + + Update docs/Sprint-Review/sprint-25-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 9c9e113f2da26462cf242790328a4f12082561a7 +Author: Angela Milash +Date: Wed Jul 21 13:51:22 2021 -0700 + + Update docs/Sprint-Review/sprint-25-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit d3cb094c20c2f8201590f4dbe2ed526f65bd3dee +Author: Angela Milash +Date: Wed Jul 21 13:51:13 2021 -0700 + + Update docs/Sprint-Review/sprint-25-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 7aea1dd41bf6907efc17128620ab0a11d0564da2 +Author: Angela Milash +Date: Wed Jul 21 13:51:03 2021 -0700 + + Update docs/Sprint-Review/sprint-25-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit bba070da931204376570a750a2c3e206ba8e1418 +Author: Angela Milash +Date: Wed Jul 21 13:49:52 2021 -0700 + + Update docs/Sprint-Review/sprint-25-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 3a9cdc9959e785ef36323f58be918171a2c45bca +Author: abottoms-coder +Date: Wed Jul 21 15:24:06 2021 -0400 + + Updates from comments in PR + +commit 5536133beef101020a799c61dac7d8a09aeadece +Merge: 8cab3b2b0 6b60b7f89 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jul 21 15:14:10 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/1044/pally-auth + +commit 59c2884043febb237838de6c76b588616ebeb464 +Author: abottoms-coder +Date: Wed Jul 21 15:12:43 2021 -0400 + + Added changelog initial commit + +commit 6bd2df550825cf9fca426dff0061b79ce0e496d1 +Author: Aaron Beavers +Date: Wed Jul 21 13:48:33 2021 -0400 + + Redid time commit without extra noise + +commit 5f6bfe94796d0ab6042103e10c6e44139720bee4 +Author: Aaron Beavers +Date: Mon Jul 19 17:13:08 2021 -0400 + + Revert "update time" + + This reverts commit 7473e53b1ac106ccca04fd36b5d04944bc9d1fb0. + +commit ac0aef2379e3acbe4cf986cb7b427fcb54a3bfd2 +Merge: 48e149fb7 6b60b7f89 +Author: Aaron Beavers +Date: Wed Jul 21 13:43:51 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1032/scheduled-owasp + +commit 2f9ea1d55f8338bbd5a91ed202269ab9e4f7dab5 +Author: John Willis +Date: Wed Jul 21 13:38:27 2021 -0400 + + linter errors + +commit b06a240042b03231a72115c734f559f2895e7111 +Author: John Willis +Date: Wed Jul 21 13:21:31 2021 -0400 + + Fix backend tests & removed unused, outdated code + +commit 595eeca8ec826ba646bb308cba64e3358410e96f +Merge: 375383736 f984bf4ea +Author: John Willis +Date: Wed Jul 21 11:53:20 2021 -0400 + + Merge pull request #1129 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/file-type-16.5.2 + + Bump file-type from 16.5.1 to 16.5.2 in /tdrs-frontend + +commit 375383736fcdf319e0130740f36947db7ce66709 +Merge: f81233e0a 3fc523669 +Author: John Willis +Date: Wed Jul 21 11:53:07 2021 -0400 + + Merge pull request #1130 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.3 + + Bump awscli from 1.20.2 to 1.20.3 in /tdrs-backend + +commit 3fc523669f3c3431712f7a82081594224d0839c3 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 21 06:21:25 2021 +0000 + + Bump awscli from 1.20.2 to 1.20.3 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.2 to 1.20.3. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.2...1.20.3) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit f984bf4ea857d537d1ce772b7a8a78c60cf877ed +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 21 06:16:04 2021 +0000 + + Bump file-type from 16.5.1 to 16.5.2 in /tdrs-frontend + + Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.5.1 to 16.5.2. + - [Release notes](https://github.com/sindresorhus/file-type/releases) + - [Commits](https://github.com/sindresorhus/file-type/compare/v16.5.1...v16.5.2) + + --- + updated-dependencies: + - dependency-name: file-type + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 8949bb3beb0ca698e008afb35d87a82b89309d10 +Author: John Willis +Date: Tue Jul 20 18:46:59 2021 -0400 + + Fix linter errors and remove unused settings modules + +commit 9b15fc3eccfefdf76522c84f67f4a655b91984f4 +Author: John Willis +Date: Tue Jul 20 18:19:13 2021 -0400 + + Allow environment variable configuration in common settings for when running locally with USE_LOCALSTACK set to False + +commit 2e733706b97c2e0268b96a4bdb22ff85caaa6633 +Author: John Willis +Date: Tue Jul 20 18:06:23 2021 -0400 + + Implemented base class for storage to override settings, created cloudgov settings module to store settings configurations for Cloud.gov deployments, updated CG settings to use VCAP_SERVICES, removed usages of the old AWS environment variables + +commit 825058c75d24169dd91da04e0f9ee0e6969fa167 +Author: Angela Milash +Date: Tue Jul 20 11:17:44 2021 -0700 + + update sprint-25-summary.md + + - updated link to sprint milestone + - added 2 items to blocked + - added next gen ticket and moved to sprint backlog since it is not blocked. + - updated next sprint goals to include UX line item. + - added 'pre qasp' to a few line items in the sprint demo + +commit bdcaf818b59d5b810d89babf9e186db49c301a21 +Author: Angela Milash +Date: Tue Jul 20 10:49:48 2021 -0700 + + create sprint-25-summary.md + +commit 8cab3b2b0a47ba080e966cded8d2dc8258dbbbd4 +Author: Aaron Beavers +Date: Tue Jul 20 13:24:26 2021 -0400 + + update config + +commit 07d274769332d7f1a7f7f06c8362f11897c177e0 +Author: Aaron Beavers +Date: Tue Jul 20 12:59:42 2021 -0400 + + update circleci config + +commit fa88db6a40660d31416262cfc0bc24a506ba6aa7 +Author: Aaron Beavers +Date: Tue Jul 20 12:05:21 2021 -0400 + + update migrations + +commit f81233e0adff452c5e7d13204b3d4bfd969a58e1 +Merge: b2704c7f1 e5ea3cc6c +Author: John Willis +Date: Tue Jul 20 09:53:23 2021 -0400 + + Merge pull request #1125 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/cypress-8.0.0 + + Bump cypress from 7.7.0 to 8.0.0 in /tdrs-frontend + +commit b2704c7f113cd4609dd83f5b71045a6d0b94a331 +Merge: 7dfd188a8 6de452a98 +Author: John Willis +Date: Tue Jul 20 09:53:08 2021 -0400 + + Merge pull request #1126 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.2 + + Bump awscli from 1.20.1 to 1.20.2 in /tdrs-backend + +commit 6de452a9836055da7fce64e60ea9e591e253e020 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jul 20 06:37:06 2021 +0000 + + Bump awscli from 1.20.1 to 1.20.2 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.1 to 1.20.2. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.1...1.20.2) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit e5ea3cc6c3ff62cc5d8d554d839ef8772a09ad34 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jul 20 06:19:44 2021 +0000 + + Bump cypress from 7.7.0 to 8.0.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 7.7.0 to 8.0.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v7.7.0...v8.0.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 48e149fb7ef3a2637130683e74d711bc660d898b +Author: Aaron Beavers +Date: Mon Jul 19 17:13:56 2021 -0400 + + Update filter + +commit 04f93c7c6636806c3be8ecd124865abb090cc728 +Author: Aaron Beavers +Date: Mon Jul 19 17:13:21 2021 -0400 + + store artifacts + +commit 7473e53b1ac106ccca04fd36b5d04944bc9d1fb0 +Author: Aaron Beavers +Date: Mon Jul 19 17:13:08 2021 -0400 + + update time + +commit 5cf687c7552a475088f7b21adc2401586ae54775 +Author: Aaron Beavers +Date: Mon Jul 19 16:37:29 2021 -0400 + + Replace ever instance of data prepper with data analyst + +commit 798a38679c54f00af28caa8b387c0f9b45334ee5 +Author: John Willis +Date: Mon Jul 19 15:55:06 2021 -0400 + + Added explicit storage class for staticfiles + +commit 6f64d6ebff9ff1871799736a4eae0c8d54a8428b +Merge: e02d90809 6b60b7f89 +Author: John Willis +Date: Mon Jul 19 15:39:00 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit 7dfd188a834b36839cfc8d11e359085b657627db +Merge: 8b77c29c7 6b60b7f89 +Author: John Willis +Date: Mon Jul 19 15:38:42 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-mass-merge + +commit 4f7b3f925c131048c8a0966ba1b606bf06430fa0 +Author: Aaron Beavers +Date: Mon Jul 19 13:16:44 2021 -0400 + + update time, update flag on scan script + +commit 24f42acab3f659e6135be838f906860fdabaf2b5 +Author: Aaron Beavers +Date: Mon Jul 19 12:19:05 2021 -0400 + + update time + +commit 933407dd679e6e2dbabf40c2216e219f9cccce6f +Author: Aaron Beavers +Date: Mon Jul 19 12:18:20 2021 -0400 + + update time + +commit 9274aea68de5e9b15ddc98f8d46d241833d53c25 +Author: Aaron Beavers +Date: Mon Jul 19 11:56:26 2021 -0400 + + update time + +commit 4d48b9c7ed42f76fb020e1dda51e8252c21407a4 +Author: Aaron Beavers +Date: Mon Jul 19 11:53:41 2021 -0400 + + Move jobs declaration + +commit 0a603bbef89258b3f8d5fecfbc7359e1b81ff821 +Author: Aaron Beavers +Date: Mon Jul 19 11:49:33 2021 -0400 + + re entered time + +commit 163bdd7358e1c23afd2ee91c400d30ad2f81d085 +Author: Aaron Beavers +Date: Mon Jul 19 11:02:16 2021 -0400 + + made change to test scheduled job + +commit 6b60b7f89207955c8c30e31edb4e46913de80151 +Merge: dc815b30f 7f9562e17 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jul 19 10:39:16 2021 -0400 + + Merge pull request #1070 from raft-tech/docs/1051-tdp-environments + + Issue 1051: Add current environment docs and diagrams + +commit 8b77c29c77d2e538b72fa2e9c6b5790dd608ae61 +Merge: 037cc7e0b 73fa5301b +Author: John Willis +Date: Mon Jul 19 09:24:32 2021 -0400 + + Merge pull request #1105 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/eslint-7.31.0 + + Bump eslint from 7.30.0 to 7.31.0 in /tdrs-frontend + +commit 037cc7e0b9de7681019880287d5e08541bd23fde +Merge: 9732d8db1 212ba6815 +Author: John Willis +Date: Mon Jul 19 09:24:21 2021 -0400 + + Merge pull request #1106 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.1 + + Bump awscli from 1.20.0 to 1.20.1 in /tdrs-backend + +commit 212ba681534fa62c137d115badbc6a4423e1160c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jul 19 06:19:27 2021 +0000 + + Bump awscli from 1.20.0 to 1.20.1 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.0 to 1.20.1. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.20.0...1.20.1) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 73fa5301bb13b0dfca1421a16ec9ea02efdb50f7 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jul 19 06:15:30 2021 +0000 + + Bump eslint from 7.30.0 to 7.31.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 7.30.0 to 7.31.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v7.30.0...v7.31.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 7f9562e17fe9a3530c7b46fa515bbb1408d1434d +Author: Jorge Gonzalez +Date: Fri Jul 16 15:57:47 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 3354fce5f5222051388f437a253cfa057b6c4560 +Merge: c1d086507 f8cd187db +Author: Jorge Gonzalez +Date: Fri Jul 16 15:41:14 2021 -0400 + + Merge branch 'docs/1051-tdp-environments' of https://github.com/raft-tech/TANF-app into docs/1051-tdp-environments + +commit c1d086507634286418c64256017e04eec2e068f3 +Author: Jorge Gonzalez +Date: Fri Jul 16 15:40:17 2021 -0400 + + docs: Update dependency descriptions + +commit e02d90809712e94712f891a79b93fdfc50be40e8 +Author: John Willis +Date: Fri Jul 16 15:23:13 2021 -0400 + + Add missing AWS setting for django-storages + +commit f8cd187db4b71c15cf8fa539fdb7542892ded343 +Merge: f64554064 dc815b30f +Author: Jorge Gonzalez +Date: Fri Jul 16 13:38:21 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/1051-tdp-environments + +commit f6455406459fc53562b6e1983ab118aee687d976 +Merge: b72404fd3 05d00d14e +Author: Jorge Gonzalez +Date: Fri Jul 16 13:37:42 2021 -0400 + + Merge remote-tracking branch 'origin/docs/1051-tdp-environments' into docs/1051-tdp-environments + +commit b72404fd3e8c65f28af44cc31f99f7a4812f4e18 +Author: Jorge Gonzalez +Date: Fri Jul 16 13:36:05 2021 -0400 + + docs: Add note and diagram tweak to clarify developer env access + +commit 201fffde7becec6659a8e271ebe15202a266efd4 +Author: Aaron Beavers +Date: Fri Jul 16 13:35:52 2021 -0400 + + Add nightly owasp scan job + +commit 22e20ecd15cdb039c4b0f95b31e39d327a40ccd3 +Author: Aaron Beavers +Date: Fri Jul 16 13:33:57 2021 -0400 + + update zap scanner with condition to allow nightly production scans + +commit 9732d8db1637c7919299e8339405ecdb793d19a1 +Merge: e3c5b6b52 1aaf6a0b9 +Author: John Willis +Date: Fri Jul 16 09:08:14 2021 -0400 + + Merge pull request #1102 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.0 + + Bump awscli from 1.19.112 to 1.20.0 in /tdrs-backend + +commit 1aaf6a0b945a8321196f8727d6a597818812d406 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jul 16 06:20:27 2021 +0000 + + Bump awscli from 1.19.112 to 1.20.0 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.19.112 to 1.20.0. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.19.112...1.20.0) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 5db86561819a0b64ee7bbfda8d83db1ea3bda326 +Author: abottoms-coder +Date: Thu Jul 15 15:05:46 2021 -0400 + + Updates to commands for dev restaging steps + +commit 7ea732c73fa00796239d0541ad9614a2ba9910b3 +Merge: babe942ec dc815b30f +Author: John Willis +Date: Thu Jul 15 14:28:45 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit e3c5b6b527ed10ab53f0209ab2c2c2758e852c43 +Merge: 3b53a3e63 dc815b30f +Author: John Willis +Date: Thu Jul 15 13:45:21 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-mass-merge + +commit 3b53a3e63f05420fa13460b1c006aba83eb3fcda +Author: John Willis +Date: Thu Jul 15 12:00:42 2021 -0400 + + Try using sudo for installing libgbm-dev + +commit 15fe344abf410c92a37ec49b67fd1a551dfb54b4 +Author: abottoms-coder +Date: Thu Jul 15 11:35:07 2021 -0400 + + Fleshing out of process + +commit 6d6b16fddc019f49aac11c4ed7f24dc8bab2431c +Author: John Willis +Date: Thu Jul 15 11:29:35 2021 -0400 + + Install lib bindings needed for Cypress in CircleCI + +commit a3148a6f35df379446df91ad3274796975f31d68 +Merge: be23cc78d dc815b30f +Author: Aaron Beavers +Date: Thu Jul 15 10:34:15 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1044/pally-auth + +commit dc815b30f13d5415d63825eb1e27fd2056d60065 +Merge: a73e4505d a06f046db +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 15 10:28:13 2021 -0400 + + Merge pull request #931 from raft-tech/user-role-edits + + Update user_role_management.md + +commit ac47fa27729d000c3ae6f4b16743c1eb118c3b04 +Merge: e00088681 a73e4505d +Author: John Willis +Date: Thu Jul 15 10:24:40 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-mass-merge + +commit e000886812632f14964bcda330dfc8ab3ffaf9e5 +Author: John Willis +Date: Thu Jul 15 10:22:56 2021 -0400 + + Update Pipfile.lock + +commit a802d01824b173d9acefd21e659e47a555f796a7 +Merge: 6cfa51c72 fef12bb12 +Author: John Willis +Date: Thu Jul 15 10:19:35 2021 -0400 + + Merge pull request #1100 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/ipython-7.25.0 + + Bump ipython from 7.24.1 to 7.25.0 in /tdrs-backend + +commit fef12bb128b3f2acf2808de00fd1297c026e0e91 +Merge: 750adfa50 6cfa51c72 +Author: John Willis +Date: Thu Jul 15 10:19:28 2021 -0400 + + Merge branch 'dependabot-mass-merge' into dependabot/pip/tdrs-backend/dependabot-mass-merge/ipython-7.25.0 + +commit 6cfa51c72232e970bd173cce247fa2819b5992df +Merge: e5dedfa63 f107d3c3b +Author: John Willis +Date: Thu Jul 15 10:19:09 2021 -0400 + + Merge pull request #1099 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/psycopg2-binary-2.9.1 + + Bump psycopg2-binary from 2.8.6 to 2.9.1 in /tdrs-backend + +commit a06f046db192304022fd192745b16b49a874e5fa +Merge: 4fdba7aa4 a73e4505d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 15 10:07:27 2021 -0400 + + Merge branch 'raft-tdp-main' into user-role-edits + +commit 750adfa50c5945124989a01603ba15fa54184a56 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jul 15 14:00:57 2021 +0000 + + Bump ipython from 7.24.1 to 7.25.0 in /tdrs-backend + + Bumps [ipython](https://github.com/ipython/ipython) from 7.24.1 to 7.25.0. + - [Release notes](https://github.com/ipython/ipython/releases) + - [Commits](https://github.com/ipython/ipython/compare/7.24.1...7.25.0) + + --- + updated-dependencies: + - dependency-name: ipython + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit f107d3c3b6c5287d7123058aeff20bde7f6309df +Merge: 4b5e2d6e4 e5dedfa63 +Author: John Willis +Date: Thu Jul 15 09:52:54 2021 -0400 + + Merge branch 'dependabot-mass-merge' into dependabot/pip/tdrs-backend/dependabot-mass-merge/psycopg2-binary-2.9.1 + +commit e5dedfa6359b296a4d3017e7b0abb63dbb57fd38 +Merge: f8366635d 2c3df8276 +Author: John Willis +Date: Thu Jul 15 09:52:36 2021 -0400 + + Merge pull request #1098 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/boto3-1.17.112 + + Bump boto3 from 1.17.103 to 1.17.112 in /tdrs-backend + +commit 2c3df82768183e41b2f71a0d6d6c558fe1810e7a +Merge: 18268deac f8366635d +Author: John Willis +Date: Thu Jul 15 09:52:29 2021 -0400 + + Merge branch 'dependabot-mass-merge' into dependabot/pip/tdrs-backend/dependabot-mass-merge/boto3-1.17.112 + +commit f8366635dbd985b0530539715d6b0b7e4f900be3 +Merge: 4e6d19cd4 2a3a37f5f +Author: John Willis +Date: Thu Jul 15 09:49:38 2021 -0400 + + Merge pull request #1097 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/requests-2.26.0 + + Bump requests from 2.25.1 to 2.26.0 in /tdrs-backend + +commit 4b5e2d6e47915423af8de9027a9a83dcfe37f12a +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jul 15 06:24:34 2021 +0000 + + Bump psycopg2-binary from 2.8.6 to 2.9.1 in /tdrs-backend + + Bumps [psycopg2-binary](https://github.com/psycopg/psycopg2) from 2.8.6 to 2.9.1. + - [Release notes](https://github.com/psycopg/psycopg2/releases) + - [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS) + - [Commits](https://github.com/psycopg/psycopg2/commits) + + --- + updated-dependencies: + - dependency-name: psycopg2-binary + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 18268deacfaeac0ce0a1bdce530a26f2e7793a9c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jul 15 06:22:24 2021 +0000 + + Bump boto3 from 1.17.103 to 1.17.112 in /tdrs-backend + + Bumps [boto3](https://github.com/boto/boto3) from 1.17.103 to 1.17.112. + - [Release notes](https://github.com/boto/boto3/releases) + - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/boto/boto3/compare/1.17.103...1.17.112) + + --- + updated-dependencies: + - dependency-name: boto3 + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 2a3a37f5f5ee586cc818a65db5e5483abe943677 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jul 15 06:20:07 2021 +0000 + + Bump requests from 2.25.1 to 2.26.0 in /tdrs-backend + + Bumps [requests](https://github.com/psf/requests) from 2.25.1 to 2.26.0. + - [Release notes](https://github.com/psf/requests/releases) + - [Changelog](https://github.com/psf/requests/blob/master/HISTORY.md) + - [Commits](https://github.com/psf/requests/compare/v2.25.1...v2.26.0) + + --- + updated-dependencies: + - dependency-name: requests + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit a73e4505d8e057b2c0ebcb99446bd1c6a879ddaa +Merge: 654c41e22 61b8b83fb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jul 14 18:27:07 2021 -0400 + + Merge pull request #1068 from raft-tech/amilash-patch-1 + + create sprint-24-summary.md + +commit 4e6d19cd49afafb7d4e089b317dcf8f232298fdb +Author: John Willis +Date: Wed Jul 14 17:38:00 2021 -0400 + + Use strict equality for package versions in Pipfile to prevent unintended upgrades to unrelated packages + +commit e04299408db60b766cfaa1d0b872c2e2571a2d0b +Author: John Willis +Date: Wed Jul 14 17:27:56 2021 -0400 + + Revert dependabot config change + +commit aab1b4d8c532fe030a3b086eea7471ead48ec222 +Author: John Willis +Date: Wed Jul 14 17:24:31 2021 -0400 + + Ran yarn upgrade to force generation of a new yarn.lock with all changes merged in + +commit 81e4b7c80d5c3e8d50b0f2437b7007710a8af2f6 +Merge: f578ed94a 654c41e22 +Author: John Willis +Date: Wed Jul 14 17:16:12 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot-mass-merge + +commit f578ed94abbc808db7712857be1cb0ebecd08bab +Author: John Willis +Date: Wed Jul 14 17:12:22 2021 -0400 + + Fixed frontend linter errors + +commit 404616be6d62a1b0d8fa1ec83f4c261be55857e2 +Merge: ca2c4e55d 7a461cac2 +Author: John Willis +Date: Wed Jul 14 16:59:51 2021 -0400 + + Merge pull request #1089 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/prettier-2.3.2 + + Bump prettier from 2.2.1 to 2.3.2 in /tdrs-frontend + +commit 7a461cac2081eab57932c5f5546dae54db0bbd33 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:58:43 2021 +0000 + + Bump prettier from 2.2.1 to 2.3.2 in /tdrs-frontend + + Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.2. + - [Release notes](https://github.com/prettier/prettier/releases) + - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/prettier/compare/2.2.1...2.3.2) + + --- + updated-dependencies: + - dependency-name: prettier + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit ca2c4e55de36e78a7c3951e703c68ab2fc73c6bd +Merge: 8975912b5 fc340470f +Author: John Willis +Date: Wed Jul 14 16:57:13 2021 -0400 + + Merge pull request #1090 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/cypress-7.7.0 + + Bump cypress from 4.12.1 to 7.7.0 in /tdrs-frontend + +commit fc340470f747b385b30ff1cc661423cf87917182 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:56:53 2021 +0000 + + Bump cypress from 4.12.1 to 7.7.0 in /tdrs-frontend + + Bumps [cypress](https://github.com/cypress-io/cypress) from 4.12.1 to 7.7.0. + - [Release notes](https://github.com/cypress-io/cypress/releases) + - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) + - [Commits](https://github.com/cypress-io/cypress/compare/v4.12.1...v7.7.0) + + --- + updated-dependencies: + - dependency-name: cypress + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 8975912b57dd82c48e1ebd3036c3898f74634300 +Merge: f0853e391 39627fcc8 +Author: John Willis +Date: Wed Jul 14 16:55:04 2021 -0400 + + Merge pull request #1092 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/react-redux-7.2.4 + + Bump react-redux from 7.2.3 to 7.2.4 in /tdrs-frontend + +commit f0853e391aeb079db68513533cc18b4d08e97ccd +Merge: a3552873b 9110f45a4 +Author: John Willis +Date: Wed Jul 14 16:54:24 2021 -0400 + + Merge pull request #1095 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.19.112 + + Bump awscli from 1.19.103 to 1.19.112 in /tdrs-backend + +commit a3552873b2432488ff9c2838f7f69ecd783476ff +Merge: bca805185 0c043f9b9 +Author: John Willis +Date: Wed Jul 14 16:53:56 2021 -0400 + + Merge pull request #1025 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.14.1 + + Bump @testing-library/jest-dom from 4.2.4 to 5.14.1 in /tdrs-frontend + +commit 0c043f9b9b8282c999414de9d6b14f08cdb130f0 +Merge: 36ac75a09 bca805185 +Author: John Willis +Date: Wed Jul 14 16:53:46 2021 -0400 + + Merge branch 'dependabot-mass-merge' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.14.1 + +commit 39627fcc8ea525aeeb34c5dd2c89c2bb589ee4f8 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:53:04 2021 +0000 + + Bump react-redux from 7.2.3 to 7.2.4 in /tdrs-frontend + + Bumps [react-redux](https://github.com/reduxjs/react-redux) from 7.2.3 to 7.2.4. + - [Release notes](https://github.com/reduxjs/react-redux/releases) + - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) + - [Commits](https://github.com/reduxjs/react-redux/compare/v7.2.3...v7.2.4) + + --- + updated-dependencies: + - dependency-name: react-redux + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit bca8051855d62e676e3f5c1f1d2389bd338c1c9e +Merge: 206d86146 68c9058a4 +Author: John Willis +Date: Wed Jul 14 16:52:59 2021 -0400 + + Merge pull request #1000 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/include-media-1.4.10 + + Bump include-media from 1.4.9 to 1.4.10 in /tdrs-frontend + +commit 68c9058a45801c4a919a4ec362979d10e93d90e4 +Merge: ce89b39c1 206d86146 +Author: John Willis +Date: Wed Jul 14 16:52:48 2021 -0400 + + Merge branch 'dependabot-mass-merge' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/include-media-1.4.10 + +commit ce89b39c1466dea986584a4a95d3918083b4a0fd +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:51:53 2021 +0000 + + Bump include-media from 1.4.9 to 1.4.10 in /tdrs-frontend + + Bumps [include-media](https://github.com/eduardoboucas/include-media) from 1.4.9 to 1.4.10. + - [Release notes](https://github.com/eduardoboucas/include-media/releases) + - [Commits](https://github.com/eduardoboucas/include-media/compare/v1.4.9...v1.4.10) + + --- + updated-dependencies: + - dependency-name: include-media + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 206d86146bdb395ed01f9943181accc641ff7f9e +Merge: fb2e08373 02a10efa6 +Author: John Willis +Date: Wed Jul 14 16:51:35 2021 -0400 + + Merge pull request #1038 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.12.0 + + Bump uswds from 2.11.1 to 2.12.0 in /tdrs-frontend + +commit fb2e083736d63b57c53cfdff04b3ba10758a2750 +Merge: 330b922af cb6eb36b0 +Author: John Willis +Date: Wed Jul 14 16:51:18 2021 -0400 + + Merge pull request #1075 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/file-type-16.5.1 + + Bump file-type from 16.3.0 to 16.5.1 in /tdrs-frontend + +commit 36ac75a096bab36317df9c50a1f9317e52042411 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:51:09 2021 +0000 + + Bump @testing-library/jest-dom from 4.2.4 to 5.14.1 in /tdrs-frontend + + Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 4.2.4 to 5.14.1. + - [Release notes](https://github.com/testing-library/jest-dom/releases) + - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/jest-dom/compare/v4.2.4...v5.14.1) + + --- + updated-dependencies: + - dependency-name: "@testing-library/jest-dom" + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 330b922af54430163d41510d238a370312ee1f0c +Merge: 25ef83be4 757476ea5 +Author: John Willis +Date: Wed Jul 14 16:50:46 2021 -0400 + + Merge pull request #1085 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/testing-library/react-12.0.0 + + Bump @testing-library/react from 11.2.7 to 12.0.0 in /tdrs-frontend + +commit 25ef83be4215b7ed7b1d5d0c865e03cbd28ae898 +Merge: be4b19a95 5770bfff2 +Author: John Willis +Date: Wed Jul 14 16:50:05 2021 -0400 + + Merge pull request #1088 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/pa11y-ci-2.4.2 + + Bump pa11y-ci from 2.4.1 to 2.4.2 in /tdrs-frontend + +commit be4b19a95964b131ba5b467dfd9c65c4be7ee756 +Merge: 55b29f3b4 a2f008c02 +Author: John Willis +Date: Wed Jul 14 16:48:17 2021 -0400 + + Merge pull request #1086 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/wait-on-6.0.0 + + Bump wait-on from 5.3.0 to 6.0.0 in /tdrs-frontend + +commit 55b29f3b4c1b92ab9cd286808dad8ba9c58d903b +Merge: 12dba66d7 262a0460b +Author: John Willis +Date: Wed Jul 14 16:48:05 2021 -0400 + + Merge pull request #1087 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/eslint-plugin-prettier-3.4.0 + + Bump eslint-plugin-prettier from 3.3.1 to 3.4.0 in /tdrs-frontend + +commit 12dba66d7b8a7b483273402571e013c440c85fc9 +Merge: 2dcee5df6 2431785e2 +Author: John Willis +Date: Wed Jul 14 16:47:47 2021 -0400 + + Merge pull request #1093 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/react-idle-timer-4.6.4 + + Bump react-idle-timer from 4.5.6 to 4.6.4 in /tdrs-frontend + +commit 2dcee5df64bb5f427ffad2ae40981402ef0554da +Merge: b5714bbab 5144e3c99 +Author: John Willis +Date: Wed Jul 14 16:47:33 2021 -0400 + + Merge pull request #1091 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/eslint-7.30.0 + + Bump eslint from 7.22.0 to 7.30.0 in /tdrs-frontend + +commit b5714bbabfdd79a5cf4cf13eb9e8c794b5fe362c +Merge: 2c2edcb57 c174cac13 +Author: John Willis +Date: Wed Jul 14 16:47:09 2021 -0400 + + Merge pull request #1094 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/immutable-4.0.0-rc.14 + + Bump immutable from 4.0.0-rc.12 to 4.0.0-rc.14 in /tdrs-frontend + +commit 2c2edcb57083ecb39e65a237b3809cd7c424eb04 +Merge: 4643dab1e 03ea97655 +Author: John Willis +Date: Wed Jul 14 16:46:26 2021 -0400 + + Merge pull request #957 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/redux-4.1.0 + + Bump redux from 4.0.5 to 4.1.0 in /tdrs-frontend + +commit 9110f45a482903f5dcf6db9c2a9c7496155ca6df +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:38:11 2021 +0000 + + Bump awscli from 1.19.103 to 1.19.112 in /tdrs-backend + + Bumps [awscli](https://github.com/aws/aws-cli) from 1.19.103 to 1.19.112. + - [Release notes](https://github.com/aws/aws-cli/releases) + - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/aws/aws-cli/compare/1.19.103...1.19.112) + + --- + updated-dependencies: + - dependency-name: awscli + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit c174cac135235fae43eff82028080b7d50fe047e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:33:40 2021 +0000 + + Bump immutable from 4.0.0-rc.12 to 4.0.0-rc.14 in /tdrs-frontend + + Bumps [immutable](https://github.com/immutable-js/immutable-js) from 4.0.0-rc.12 to 4.0.0-rc.14. + - [Release notes](https://github.com/immutable-js/immutable-js/releases) + - [Commits](https://github.com/immutable-js/immutable-js/compare/v4.0.0-rc.12...v4.0.0-rc.14) + + --- + updated-dependencies: + - dependency-name: immutable + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 2431785e2926aca45f692f296631cf461f51c15c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:33:30 2021 +0000 + + Bump react-idle-timer from 4.5.6 to 4.6.4 in /tdrs-frontend + + Bumps [react-idle-timer](https://github.com/supremetechnopriest/react-idle-timer) from 4.5.6 to 4.6.4. + - [Release notes](https://github.com/supremetechnopriest/react-idle-timer/releases) + - [Changelog](https://github.com/SupremeTechnopriest/react-idle-timer/blob/master/CHANGELOG.md) + - [Commits](https://github.com/supremetechnopriest/react-idle-timer/compare/4.5.6...4.6.4) + + --- + updated-dependencies: + - dependency-name: react-idle-timer + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 5144e3c99198d6fc552767100e91598ee53904a2 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:33:06 2021 +0000 + + Bump eslint from 7.22.0 to 7.30.0 in /tdrs-frontend + + Bumps [eslint](https://github.com/eslint/eslint) from 7.22.0 to 7.30.0. + - [Release notes](https://github.com/eslint/eslint/releases) + - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) + - [Commits](https://github.com/eslint/eslint/compare/v7.22.0...v7.30.0) + + --- + updated-dependencies: + - dependency-name: eslint + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 5770bfff2fe3e4a6cadc1513a465432f5eff639a +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:32:06 2021 +0000 + + Bump pa11y-ci from 2.4.1 to 2.4.2 in /tdrs-frontend + + Bumps [pa11y-ci](https://github.com/pa11y/ci) from 2.4.1 to 2.4.2. + - [Release notes](https://github.com/pa11y/ci/releases) + - [Changelog](https://github.com/pa11y/pa11y-ci/blob/master/CHANGELOG.md) + - [Commits](https://github.com/pa11y/ci/compare/2.4.1...2.4.2) + + --- + updated-dependencies: + - dependency-name: pa11y-ci + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 262a0460be70f4101809d1d0b884647a6e05aef8 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:31:26 2021 +0000 + + Bump eslint-plugin-prettier from 3.3.1 to 3.4.0 in /tdrs-frontend + + Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.3.1 to 3.4.0. + - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) + - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) + - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits) + + --- + updated-dependencies: + - dependency-name: eslint-plugin-prettier + dependency-type: direct:development + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit a2f008c02b8130865e47ecec4fd8e4d1aa8ec61c +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:31:01 2021 +0000 + + Bump wait-on from 5.3.0 to 6.0.0 in /tdrs-frontend + + Bumps [wait-on](https://github.com/jeffbski/wait-on) from 5.3.0 to 6.0.0. + - [Release notes](https://github.com/jeffbski/wait-on/releases) + - [Commits](https://github.com/jeffbski/wait-on/compare/v5.3.0...v6.0.0) + + --- + updated-dependencies: + - dependency-name: wait-on + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 757476ea5deab744cea4f5dccbd42ab27c14a4ed +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jul 14 20:30:47 2021 +0000 + + Bump @testing-library/react from 11.2.7 to 12.0.0 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.7 to 12.0.0. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.7...v12.0.0) + + --- + updated-dependencies: + - dependency-name: "@testing-library/react" + dependency-type: direct:development + update-type: version-update:semver-major + ... + + Signed-off-by: dependabot[bot] + +commit 61b8b83fbb8acbe96a20fb2a1ce7b9d1bf43d939 +Merge: 494e03b5f 654c41e22 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jul 14 16:25:56 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit 654c41e221df07650a09d340e3cd662d8290e5f3 +Merge: 4643dab1e 0a351ec77 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jul 14 16:25:29 2021 -0400 + + Merge pull request #1084 from raft-tech/deps/1023-mass-dependabot-config + + 1023: Update dependabot config to use mass merge target branch + +commit 0a351ec77937d26cb6288a0ed011142d1c8b7972 +Author: John Willis +Date: Wed Jul 14 13:52:21 2021 -0400 + + 1023: Update dependabot config to use mass merge target branch + +commit be23cc78d1907ca5a1501c6bbaf8604a37cb7668 +Author: Aaron Beavers +Date: Wed Jul 14 13:50:22 2021 -0400 + + Use mirage flag + +commit 494e03b5ff621dc6ecd0c67cd41a58461e1924d5 +Author: Angela Milash +Date: Wed Jul 14 10:35:57 2021 -0700 + + Update sprint-24-summary.md + +commit 469e306033e41d9ebce3657bdb3242404087556a +Author: Angela Milash +Date: Wed Jul 14 10:34:26 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 35d5fc09ef8714f1ae7b209da05010836f5da1df +Author: Angela Milash +Date: Wed Jul 14 10:34:16 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit f57aeb3acab1dc5174b64a3b3228f3c0df38f021 +Author: Aaron Beavers +Date: Wed Jul 14 11:27:48 2021 -0400 + + Use mock data from separate file for cleaner routeing logic + +commit 06a58acd12d07e3f18234a81abd4637f9d2892b3 +Author: Aaron Beavers +Date: Wed Jul 14 11:27:10 2021 -0400 + + Import mock data + +commit 865a5385bcd6e9f16018eb2d0cafd8af49901da4 +Author: Aaron Beavers +Date: Wed Jul 14 11:26:55 2021 -0400 + + Add mock data + +commit 7c7cbadc1e0d1ec430048727c0c615993db515b3 +Author: Aaron Beavers +Date: Wed Jul 14 11:26:39 2021 -0400 + + Add mirage mock data + +commit babe942ec59a7b5018ad1255c2a176f1b5e9829e +Author: John Willis +Date: Tue Jul 13 17:06:09 2021 -0400 + + Fixed frontend tests + +commit b15acbf019f83d58ac6365af46e67fe65d83b43b +Author: Aaron Beavers +Date: Tue Jul 13 16:22:27 2021 -0400 + + update call to pa11y in yarn script with flag + +commit b927e94facf9f620c9a18c50f0d80c96fbc873ff +Author: John Willis +Date: Tue Jul 13 15:10:27 2021 -0400 + + Fix backend tests & linter errors + +commit 6448e9f9878d30cd77f91be1aca34a4a0b5e501b +Author: Aaron Beavers +Date: Tue Jul 13 14:58:14 2021 -0400 + + Add faker + +commit 7bc38ca11ab0f6f896aaf1a8134e245da78544be +Author: Aaron Beavers +Date: Tue Jul 13 14:53:08 2021 -0400 + + add logic so homepage displays when pa11y scan is running + +commit 13988b07d461ef37739e025b98e66fbbc4439f48 +Author: Aaron Beavers +Date: Tue Jul 13 14:52:18 2021 -0400 + + add mirage routes + +commit 05d00d14e79311563c989f126bc0b3bf1c287e68 +Author: Jorge Gonzalez +Date: Tue Jul 13 12:49:36 2021 -0400 + + Update docs/Technical-Documentation/TDP-environments-README.md + +commit 3e64d2d4d27542b18b032773c6988198f4b5be73 +Author: Jorge Gonzalez +Date: Tue Jul 13 12:48:19 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 4b8640285fc9bd4134aabf904ba1241e3d28f1f4 +Merge: 9936fafce 4643dab1e +Author: John Willis +Date: Tue Jul 13 12:19:35 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit 4fdba7aa4c5f485531d66d65f2fc3d319def6b0d +Merge: bd7eab980 4643dab1e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jul 13 10:15:13 2021 -0400 + + Merge branch 'raft-tdp-main' into user-role-edits + +commit a99455cf6ebf9a574f588ccfc5d376d7a5d104d7 +Author: abottoms-coder +Date: Mon Jul 12 15:57:03 2021 -0400 + + Updated buildpack documentation for restaging process [draft] + +commit 2856f92f0dafe02e1f05b1fb7e17259e49d754f4 +Author: Angela Milash +Date: Mon Jul 12 12:47:49 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 4babe731d5a67379cd49d3113f58f1db6b647839 +Merge: 54e5a6224 4643dab1e +Author: Jorge Gonzalez +Date: Mon Jul 12 14:37:41 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/1051-tdp-environments + +commit 54e5a62245e831f6616c7255a1e540d926400178 +Author: Jorge Gonzalez +Date: Mon Jul 12 14:10:05 2021 -0400 + + docs: update line endings + +commit 377c3640c13bb2aff147d7bc992a0cc8ffd9ab4e +Author: Jorge Gonzalez +Date: Mon Jul 12 14:09:12 2021 -0400 + + docs: tweak connections to clamav-rest + +commit 03ea976550f7ab94c5ea037f2d3f5d560acf8b16 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jul 12 16:04:57 2021 +0000 + + Bump redux from 4.0.5 to 4.1.0 in /tdrs-frontend + + Bumps [redux](https://github.com/reduxjs/redux) from 4.0.5 to 4.1.0. + - [Release notes](https://github.com/reduxjs/redux/releases) + - [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md) + - [Commits](https://github.com/reduxjs/redux/compare/v4.0.5...v4.1.0) + + Signed-off-by: dependabot[bot] + +commit 02a10efa6c7aa364896cba2d9aa10290ed20308f +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jul 12 16:04:05 2021 +0000 + + Bump uswds from 2.11.1 to 2.12.0 in /tdrs-frontend + + Bumps [uswds](https://github.com/uswds/uswds) from 2.11.1 to 2.12.0. + - [Release notes](https://github.com/uswds/uswds/releases) + - [Commits](https://github.com/uswds/uswds/compare/v2.11.1...v2.12.0) + + --- + updated-dependencies: + - dependency-name: uswds + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit cb6eb36b039bf047b9545e62418f833071855ede +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon Jul 12 16:03:07 2021 +0000 + + Bump file-type from 16.3.0 to 16.5.1 in /tdrs-frontend + + Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.3.0 to 16.5.1. + - [Release notes](https://github.com/sindresorhus/file-type/releases) + - [Commits](https://github.com/sindresorhus/file-type/compare/v16.3.0...v16.5.1) + + --- + updated-dependencies: + - dependency-name: file-type + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 4643dab1e5c271a7a70835a9a9700724163c6888 +Merge: 130ab620c c4de0f804 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jul 12 11:58:50 2021 -0400 + + Merge pull request #1063 from raft-tech/feat/973-django-admin-508 + + Issue 973: Add initial Django Admin A11y Fixes + +commit ecc3a85807b92020bf9ae8ae74271dd8d07b9d30 +Author: Jorge Gonzalez +Date: Mon Jul 12 11:44:57 2021 -0400 + + fix: Update diagram and docs with clamav and circleci details + +commit 9936fafcec253c03539f617ed37018418dda9b0d +Author: John Willis +Date: Fri Jul 9 19:24:34 2021 -0400 + + Endpoint filtering improvements; fix ability to select different STT for OFA Admin + +commit 418c792b0a70724cb1dbe69c69870ae4649dff51 +Merge: 38d1908b1 130ab620c +Author: John Willis +Date: Fri Jul 9 17:33:12 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit c4de0f80452b918beafa031a25c8c8ea11ccaf1d +Merge: 429d24369 130ab620c +Author: John Willis +Date: Fri Jul 9 17:24:40 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit 130ab620c4f8d934d1ed184be9cf752aba13c998 +Merge: 34944d110 354a789f3 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 9 13:25:32 2021 -0400 + + Merge pull request #1074 from raft-tech/hotfix/847-deploy-staging + + Issue 847: Fix deploy backend script + +commit 429d24369cbbccd0bf4ba80ec56de921ac0d1304 +Merge: 049e20c08 34944d110 +Author: Jorge Gonzalez +Date: Fri Jul 9 12:11:34 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit 354a789f3f79911a8cf5d138613d5b78ce7f8f49 +Author: Jorge Gonzalez +Date: Fri Jul 9 12:04:03 2021 -0400 + + lint: make posix sh compliant + +commit 32c8148fa985290f7599cea4c81593b9a73f0827 +Author: Jorge Gonzalez +Date: Fri Jul 9 11:23:40 2021 -0400 + + hotfix: fix error getting env in deploy-backend script + +commit 34944d1107197462453e25f590d1bfb2f8f4356f +Merge: 1dafa63c1 d02225804 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 9 10:38:42 2021 -0400 + + Merge pull request #977 from raft-tech/ops/609-terraform + + Issue 609, 847: Add Terraform for automated service provisioning + +commit 049e20c0821568f5d26cb1ce1867215c6abeb128 +Merge: 598250044 1dafa63c1 +Author: Jorge Gonzalez +Date: Fri Jul 9 10:25:50 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit 661a086d7702af3390d80ee99d51c7f0610901ca +Author: Jorge Gonzalez +Date: Wed Jul 7 11:59:33 2021 -0400 + + docs: Add current environment docs and diagrams + +commit d022258040b56cdedc60c10b93f0209ae913a7ba +Merge: e08975915 1dafa63c1 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 9 09:52:12 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 38d1908b1b054c76a90c9dc6f5300156a6192990 +Author: John Willis +Date: Thu Jul 8 18:32:14 2021 -0400 + + All endpoints now connected and functional, needs some cleanup and test fixes + +commit cce146df2bda626dfd2205fa430b4f5b6c45d75f +Author: Angela Milash +Date: Thu Jul 8 15:13:42 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 6ca68e01513dbcbcd84a1e6f55de86e97c657b55 +Author: Angela Milash +Date: Thu Jul 8 15:13:16 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 292e59f45e1a33f17f595db05f12cda7bbc819d2 +Author: Angela Milash +Date: Thu Jul 8 15:12:55 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 5bd01b40c102a42c76d50e01a8abc181a7bb0e26 +Author: Angela Milash +Date: Thu Jul 8 15:12:44 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 67ea3340bd5d19efde748156bdfdca2790c8e49d +Author: Angela Milash +Date: Thu Jul 8 15:11:37 2021 -0700 + + Update docs/Sprint-Review/sprint-24-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit e08975915f5511b9b5409d0f15ce09ebb70786c2 +Author: Jorge Gonzalez +Date: Thu Jul 8 12:17:14 2021 -0400 + + fix staging deploy scripts + +commit b63a87c8bdfede52597de08cb1be892b3b15ef5e +Merge: 395d97f16 1dafa63c1 +Author: John Willis +Date: Thu Jul 8 09:28:28 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints + +commit 1dafa63c133751a67760fe70aae45ea063c7a2e4 +Merge: fb2dd9cef c6f86b318 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 8 09:26:24 2021 -0400 + + Merge pull request #859 from raft-tech/epics/89/issues/416/download-files-frontend + + Issue 416: [Frontend] Add a download button to the Data Files view + +commit 395d97f16bd3b9dc6ac519581f5c8da3959bb628 +Author: John Willis +Date: Wed Jul 7 18:18:51 2021 -0400 + + Hooked up download endpoint to the frontend; implemented CLEAR_FILE_LIST reducer to fix a bug where reports would show for the wrong years + +commit d00b1847c440e1c80f25f25344112c9a7b33c063 +Author: Jorge Gonzalez +Date: Wed Jul 7 16:43:12 2021 -0400 + + Update docs/Architecture Decision Record/017-terraform-service-provisioning.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit c6f86b3188963bd22b1539729f98b35a0633057f +Merge: e5a67807b fb2dd9cef +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jul 7 16:17:30 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit f90f8e03680d608d816bd7e997d3a7e044fbc770 +Merge: e28afcaef fb2dd9cef +Author: Jorge Gonzalez +Date: Wed Jul 7 13:59:37 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit e28afcaef4d9ff2bb715703cd8ee43ad00ebe7f8 +Author: Jorge Gonzalez +Date: Wed Jul 7 12:21:45 2021 -0400 + + docs: Add jq and circleci install instructions + +commit 59825004434ec8405ed9e4406650840caffe22c7 +Merge: 543a6c894 fb2dd9cef +Author: Jorge Gonzalez +Date: Wed Jul 7 12:13:28 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit a10b139b851731ef14df17f35ff3baa4f3a0317d +Author: Jorge Gonzalez +Date: Wed Jul 7 09:45:28 2021 -0400 + + Update terraform/README.md + +commit 3005883e6af079c73d4c2310462f4a7d002519e8 +Author: Jorge Gonzalez +Date: Wed Jul 7 09:43:41 2021 -0400 + + Update terraform/README.md + +commit 066f7069456c459308ceb438dc46b1f841f9074e +Merge: fcd6c61de e5a67807b +Author: John Willis +Date: Tue Jul 6 17:21:16 2021 -0400 + + Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints + +commit fcd6c61dee4fefd10ce5ff9a7c4538329b06aac8 +Author: John Willis +Date: Tue Jul 6 17:21:02 2021 -0400 + + Implemented filtering for ReportFile viewset; update redux reducer for SET_FILE_LIST to correctly rename API fields to frontend expected state variable names + +commit 46ecf6dbb53d80bbd5eac18dcdc129d3c296e2d7 +Author: Angela Milash +Date: Tue Jul 6 14:20:00 2021 -0700 + + create sprint-24-summary.md + +commit fb2dd9cef37e46a17ab80c01ac3f3416220f9533 +Merge: 706b3fd37 993043699 +Author: Angela Milash +Date: Tue Jul 6 10:52:00 2021 -0700 + + Merge pull request #1043 from raft-tech/amilash-patch-1 + + create sprint-23-summary.md + +commit e5a67807b04e59c9157a1d9be136dd32bb5ccd0d +Author: Aaron Beavers +Date: Tue Jul 6 13:21:59 2021 -0400 + + Add section number to download button + +commit 993043699d38293e9add8edbcbea1e2c323c2353 +Merge: 834c24959 706b3fd37 +Author: Angela Milash +Date: Tue Jul 6 09:53:02 2021 -0700 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit 834c24959760ba57d8c14f487b541910bae751bc +Author: Angela Milash +Date: Tue Jul 6 09:52:41 2021 -0700 + + Update docs/Sprint-Review/sprint-23-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 263dd84421240d0a3e67dba4d6f31b7037ade17a +Author: Angela Milash +Date: Tue Jul 6 09:52:33 2021 -0700 + + Update docs/Sprint-Review/sprint-23-summary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 1698c5a2307d759d90cbdbf06feb002b4421c7b5 +Merge: 0834d3a78 21b21885d +Author: John Willis +Date: Tue Jul 6 10:24:54 2021 -0400 + + Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints + +commit 543a6c894085404de69e7914dec2dbd78cfe2f03 +Merge: 53503203b 706b3fd37 +Author: Jorge Gonzalez +Date: Tue Jul 6 10:22:37 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit 21b21885d86ec49b65d0134d67d6fa484d13e967 +Merge: d9438a9fc 706b3fd37 +Author: John Willis +Date: Tue Jul 6 10:20:35 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 1f3133fea826521a7e9e740d664128d92696ab4e +Merge: 321aa2bad 706b3fd37 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jul 6 09:52:28 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 706b3fd370fe55af0f175337406ce0879acff57d +Merge: 14f85ac9c fb2ca56b2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jul 6 09:51:45 2021 -0400 + + Merge pull request #1066 from raft-tech/docs/round-6-synthesis + + [Issue 993] Docs/round 6 synthesis + +commit fb2ca56b2fac7b77f5e19c80f423cd1b8c9ea3b6 +Merge: ba479556c 14f85ac9c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jul 6 09:35:57 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/round-6-synthesis + +commit 0834d3a78833fc1a18921a13c16fdc0251ba6968 +Merge: 6a5aa687d d9438a9fc +Author: John Willis +Date: Fri Jul 2 17:30:53 2021 -0400 + + Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints + +commit d9438a9fc7508071366e4e2ad605283c1d50cb1e +Merge: 7983e0c0e 14f85ac9c +Author: John Willis +Date: Fri Jul 2 17:30:00 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 6a5aa687d30a5fa2ba2dbf24b4fedc26cd5b6ba4 +Author: John Willis +Date: Fri Jul 2 17:29:30 2021 -0400 + + Submit data files to actual API, started on updating retrieval + +commit ba479556c7c0efd88770157ca92c48dba0493023 +Author: Miles Reiter +Date: Fri Jul 2 16:18:47 2021 -0400 + + Update 2021, Spring - Evil User Journeys & TANF Data Errors (Round 6).md + +commit 2a0051814367a81ea33e60e2822ae048fc598315 +Author: Miles Reiter +Date: Fri Jul 2 16:10:02 2021 -0400 + + Update mural links + +commit 53503203b1bf92b715f8929939fe7d62dfec85c0 +Merge: aebb57911 14f85ac9c +Author: Jorge Gonzalez +Date: Fri Jul 2 15:58:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit aa184008542cbc16a57ca84e13c6106e48d3d0d8 +Author: Miles Reiter +Date: Fri Jul 2 15:40:26 2021 -0400 + + Adds further fix for quick nav + +commit 5c4dea7c34ac0006d9bc79c06439a7ab530d0c57 +Author: Miles Reiter +Date: Fri Jul 2 15:39:20 2021 -0400 + + Adds fix for quick nav + +commit 2f2099b49df55adbfcf306a1844882be4afa792e +Author: Miles Reiter +Date: Fri Jul 2 15:36:39 2021 -0400 + + Create 2021, Spring - Evil User Journeys & TANF Data Errors (Round 6).md + +commit 14f85ac9c4f7dfbf7d56d93cd69ea1f39fc325f2 +Merge: e31930912 5379b8249 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 2 15:35:57 2021 -0400 + + Merge pull request #1026 from raft-tech/backend/833/download-file-endpoint + + Backend/833/download file endpoint + +commit 5379b8249e3ffbe60f000d5727a7f82a5ab6dac0 +Merge: 5530dfe63 e31930912 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 2 15:18:15 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint + +commit e319309120cd43754f59dd2d6490661546b38e04 +Merge: 5ca65c039 fb8b67ade +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 2 15:06:36 2021 -0400 + + Merge pull request #1037 from raft-tech/feature/1023-ADR-edits + + Dependabot mass-merge process proposal + +commit fb8b67ade526259f62d05da4b828e2a0b8ae922c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Jul 2 14:48:22 2021 -0400 + + Update docs/Architecture Decision Record/016-dependabot-dependency-management.md + +commit 47192dbcdd4ce8a0ea35fa73a32c0692047af840 +Merge: a98f4246f 5ca65c039 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 2 14:47:04 2021 -0400 + + Merge branch 'raft-tdp-main' into feature/1023-ADR-edits + +commit 321aa2bad5abcd86f3f0e1bad9fead3b09c1125e +Author: Jorge Gonzalez +Date: Fri Jul 2 13:45:18 2021 -0400 + + fix: Remove old service binding during deploy + +commit 665865bb2315a2d7be223dcba497933c34ca57c8 +Author: Jorge Gonzalez +Date: Fri Jul 2 13:41:15 2021 -0400 + + fix: Update S3 instance name text with `staticfiles` and `datafiles` + +commit aebb57911ca19b678b15b243fcb4b0f38ce2e531 +Merge: 987319e95 5ca65c039 +Author: Jorge Gonzalez +Date: Fri Jul 2 12:06:38 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/973-django-admin-508 + +commit 2590b70494643ecb0fff78bc08640c6d6e4256b8 +Merge: baac2cf3a 7983e0c0e +Author: John Willis +Date: Fri Jul 2 11:27:35 2021 -0400 + + Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints + +commit baac2cf3a3d11b170f00b3ec8d1ec4613d861716 +Merge: 7f05899a7 5530dfe63 +Author: John Willis +Date: Fri Jul 2 11:27:19 2021 -0400 + + Merge branch 'backend/833/download-file-endpoint' into feat/834-upload-download-connect-real-endpoints + +commit 332dcdda0fd03df0816ef04ddb19421316701294 +Merge: 947915bda 5ca65c039 +Author: John Willis +Date: Fri Jul 2 10:36:04 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 5530dfe63d015a747e98ff47352681eec3d1631b +Merge: 61ec41f68 5ca65c039 +Author: Aaron Beavers +Date: Fri Jul 2 09:52:21 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint + +commit 7983e0c0e38dd9d2c905e6af9f9050ab66e26479 +Merge: 92d237e79 5ca65c039 +Author: Aaron Beavers +Date: Fri Jul 2 09:32:34 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 5ca65c0396ef458b41a17edef47deb5d9f0e69e4 +Merge: 069976526 5c0e51fca +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jul 2 09:18:33 2021 -0400 + + Merge pull request #1056 from raft-tech/devops/848/setup-new-dev-env + + Update github action for multiple deployment targets + +commit 947915bda685c304ebe0d9dc0ec1914625bba719 +Author: John Willis +Date: Thu Jul 1 18:07:22 2021 -0400 + + Update terraform/README.md + +commit 61ec41f68bc35fe18e8e9086428389605b7102c7 +Author: John Willis +Date: Thu Jul 1 17:49:15 2021 -0400 + + Added additional test cases; fixed issue with permissions discovered by tests + +commit 92d237e7976370d5bd0c3bd86113fb5e13671d1c +Author: John Willis +Date: Thu Jul 1 15:19:34 2021 -0400 + + Review feedback + +commit 987319e959b328f52a8089958103007c3d2d60f2 +Author: Jorge Gonzalez +Date: Thu Jul 1 14:57:45 2021 -0400 + + Add django-admin-508 + +commit 5c0e51fcafdb51d4f3c4a8e1b84b10747fb8dc6e +Author: John Willis +Date: Thu Jul 1 14:45:10 2021 -0400 + + Additional ADR clarification + +commit dd5597b9802d09c3bddc74613a1b069f5c784af9 +Author: John Willis +Date: Thu Jul 1 12:04:01 2021 -0400 + + Updated ADR + +commit a98f4246f010194254fee45b322a5af3894da39e +Merge: dc1582207 069976526 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Thu Jul 1 10:46:58 2021 -0400 + + Merge branch 'raft-tdp-main' into feature/1023-ADR-edits + +commit dc1582207cdb54888cc5571165186b49a7feee32 +Author: abottoms-coder +Date: Thu Jul 1 10:46:38 2021 -0400 + + Updated ADR per PR feedback + +commit 237b49999ed609cc9aa70e628e3dfba80acedc70 +Author: Jorge Gonzalez +Date: Thu Jul 1 10:30:09 2021 -0400 + + Remove touch variables.tfvars + +commit 7f05899a7489dfff86a52659b544c59c63c6d5c9 +Merge: 4b0d4aa21 9dd7d008a +Author: John Willis +Date: Wed Jun 30 17:29:51 2021 -0400 + + Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints + +commit d364b79f5b4bdb2cc49c4379253ba2e4836c2211 +Author: Jorge Gonzalez +Date: Wed Jun 30 13:57:17 2021 -0400 + + Remove deploy-infrastructure-dev from build-and-test workflow + +commit b7ea650a2e7b879b826934e8790a383cbb24e27e +Author: Aaron Beavers +Date: Wed Jun 30 11:45:00 2021 -0400 + + remove scratch script + +commit 794824d4959d614ba9c784116e6fad5204a25377 +Merge: 56dc86922 b2886271e +Author: Jorge Gonzalez +Date: Wed Jun 30 11:25:27 2021 -0400 + + Merge remote-tracking branch 'origin/ops/609-terraform' into ops/609-terraform + + # Conflicts: + # docs/Architecture Decision Record/017-terraform-service-provisioning.md + +commit 56dc869225976b8ae5630b10872fea81ee9b65cb +Author: Jorge Gonzalez +Date: Wed Jun 30 11:17:14 2021 -0400 + + Add ADR for Terraform + +commit 8e55d73deea67733a6572cba8b90291eaba5e682 +Author: Aaron Beavers +Date: Wed Jun 30 11:19:38 2021 -0400 + + Bash Array syntax + +commit b2886271e95842103ef6f8834631a488c9abca12 +Merge: 86f07e829 069976526 +Author: Jorge Gonzalez +Date: Wed Jun 30 11:17:39 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 86f07e829b83a21c88d4ecfa47486c282ded78c2 +Author: Jorge Gonzalez +Date: Wed Jun 30 11:17:14 2021 -0400 + + Add ADR for Terraform + +commit d1c95bc7ff8b5a93b514bee0e7a51f6231da116f +Merge: 0f030cf6b 069976526 +Author: Aaron Beavers +Date: Wed Jun 30 11:01:07 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/848/setup-new-dev-env + +commit 0f030cf6bab0ad5a5df062bbfa98dcb5f36850ac +Author: Aaron Beavers +Date: Wed Jun 30 10:49:54 2021 -0400 + + Proper array access + +commit 6d5364fe76518df970cb07b4366194637cdbcbd9 +Author: Aaron Beavers +Date: Wed Jun 30 10:29:14 2021 -0400 + + Bash array stuff + +commit 47ce9c43076061b2a857017a216e4e2407c8edb6 +Author: Aaron Beavers +Date: Wed Jun 30 10:10:04 2021 -0400 + + Access index 2 + +commit 9dd7d008a31569df3292ae49ce8078bfbafff902 +Merge: 09a8aa93d 069976526 +Author: John Willis +Date: Wed Jun 30 09:49:39 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 4b0d4aa21de8e33cf8dc74c95983204578c62ba7 +Merge: 22f9f7a31 069976526 +Author: John Willis +Date: Wed Jun 30 09:48:11 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint + +commit 069976526249a76f3d8cd8d81405b1dee36d1510 +Merge: b7e8d6d23 7274aaa16 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jun 30 09:44:56 2021 -0400 + + Merge pull request #861 from raft-tech/backend/818-scan-and-upload-data-files + + Issue 818 (PR #2): Add endpoint to scan and upload a Data File to S3 + +commit 42ad64ac57785b418dde694a88055dc5cfae466b +Author: Aaron Beavers +Date: Wed Jun 30 09:11:10 2021 -0400 + + Syntax Error + +commit 7274aaa1660ff03f2ede539ca647e9bb11424752 +Author: John Willis +Date: Tue Jun 29 17:20:53 2021 -0400 + + Removed extra content_type validation due to inconsistent results + +commit 81d1f9a25780afaf8fd3b698dca2fdd5823f3be4 +Author: Aaron Beavers +Date: Tue Jun 29 16:59:10 2021 -0400 + + Extract env name from label + +commit cde3f15662e3a2e33fd09b5fc4e446dd39793098 +Author: Aaron Beavers +Date: Tue Jun 29 16:30:32 2021 -0400 + + Echo output setter statement + +commit 6524c1e8e66fd819fdea94580f2c2323c387ece0 +Author: Aaron Beavers +Date: Tue Jun 29 15:57:26 2021 -0400 + + White space and test logs + +commit 9ac7a44d055c9e26c44504d7fff4a2210e20d445 +Author: Aaron Beavers +Date: Tue Jun 29 15:27:00 2021 -0400 + + Add white space + +commit 35ce8edee5c689494cc52c99d6eb55bfd46277a4 +Author: Aaron Beavers +Date: Tue Jun 29 15:08:24 2021 -0400 + + Insert quotes + +commit c378ff8ac79faa8fc7b2185362b71ebba463e3ec +Author: Jorge Gonzalez +Date: Tue Jun 29 14:53:23 2021 -0400 + + Fix infra job + +commit adda3b4f241acb393bae213c0faab02da4760ffd +Author: Jorge Gonzalez +Date: Tue Jun 29 14:49:31 2021 -0400 + + Fix whitespace + +commit 8a8a6e242ff6192c1edfee8fd3c50d8ba9fb4bed +Author: Jorge Gonzalez +Date: Tue Jun 29 14:46:51 2021 -0400 + + Remove test job + +commit a8ccb54c95d21db220002642e558eb6f185f9ac9 +Author: Aaron Beavers +Date: Tue Jun 29 14:46:05 2021 -0400 + + Simplify names + +commit 1199cf9698ce48af817c1f47953a7dedc21a318d +Author: Aaron Beavers +Date: Tue Jun 29 14:17:32 2021 -0400 + + Using default for new jobs credentials + +commit 6da2032c864bc433e1947149ac51b258fc92256e +Author: Aaron Beavers +Date: Tue Jun 29 14:09:18 2021 -0400 + + Add new jobs for github action + +commit 09a8aa93dc7c1e6da4e6d47be45a0a7793624b72 +Merge: e8df3943a b7e8d6d23 +Author: John Willis +Date: Tue Jun 29 12:01:23 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 981c75a75ff917c42fe10c1e4e96fcfbd9767817 +Author: Aaron Beavers +Date: Tue Jun 29 11:42:35 2021 -0400 + + Update github action for multiple deployment targets + +commit 3ca21675cfd97c41fcb0704e5efd840b93ab651e +Merge: 7e65d1c3a b7e8d6d23 +Author: Jorge Gonzalez +Date: Tue Jun 29 11:21:24 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 9ce9f71721bdaf4067e344e44df719c1b1cf6615 +Merge: 3499c8c13 b7e8d6d23 +Author: John Willis +Date: Tue Jun 29 09:49:38 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 3499c8c13f1805f339bef3f1aab152fb05ed66b3 +Author: John Willis +Date: Tue Jun 29 09:47:03 2021 -0400 + + Expanded regex to reject similar but invalid file extensions, moved validation tests to test_serializers + +commit d2765d5badb7ed9666988cd8510f39e5c7f18c5a +Merge: bd750dc5d b7e8d6d23 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 29 09:38:06 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit b7e8d6d23bfd384158ea1e75b7fe052bcbe4ce0a +Merge: 661793181 da7077e51 +Author: Aaron Beavers +Date: Tue Jun 29 09:21:13 2021 -0400 + + Merge pull request #941 from raft-tech/devops/879/owasp-ignore-false-positives + + Add zap configs to ignore false positives + +commit bd750dc5dcc11d25a4ac45689975fb99202b55e6 +Merge: e3ffa330e 661793181 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 29 09:11:40 2021 -0400 + + Merge branch 'raft-tdp-main' into amilash-patch-1 + +commit 41b5cb003b2af54a7470d8d48fd0536f17cb6fc0 +Author: John Willis +Date: Mon Jun 28 18:48:56 2021 -0400 + + Expanded file extension validator to support file naming conventions without extensions + +commit 88e4e79fef716d57e263446826246c88b3b67560 +Author: John Willis +Date: Mon Jun 28 13:55:29 2021 -0400 + + Clear CircleCI dependency cache + +commit da7077e51f80e6c67b3bcdc3f17085fa44d8961b +Merge: c66a8cb57 661793181 +Author: Aaron Beavers +Date: Mon Jun 28 12:58:15 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 7e65d1c3a63bd738cb287d5f9055822489e8f7b8 +Author: Jorge Gonzalez +Date: Mon Jun 28 12:13:18 2021 -0400 + + Improve instructions for local runs + +commit 31b2b3da9cd4bab7a871e4623074709781a65514 +Merge: b3b830f5f 661793181 +Author: John Willis +Date: Mon Jun 28 12:04:06 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 7987b615c2d60d4ee0bf3aab034c7866746cd5cb +Merge: 488d5e56f 6843f88c1 +Author: Jorge Gonzalez +Date: Mon Jun 28 11:37:53 2021 -0400 + + Merge remote-tracking branch 'origin/ops/609-terraform' into ops/609-terraform + +commit 488d5e56f8abe90b7be70ebe7c3ece51e07f5466 +Author: Jorge Gonzalez +Date: Mon Jun 28 11:37:36 2021 -0400 + + Fix typo and whitespace + +commit 6843f88c13a5e61c93cc1590ed218d0790cf8af5 +Merge: 6a18f4b34 661793181 +Author: Jorge Gonzalez +Date: Mon Jun 28 11:35:50 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 6617931811dad4f16b5fdba21ee1293a84de334a +Merge: f35b9fbad 43bc823cf +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 25 15:21:19 2021 -0400 + + Merge pull request #930 from raft-tech/feat/829-inactive-user + + Issue 829: Communicate to user if they are inactive + +commit 43bc823cf8f48cc1b698e1d83125692b255710cd +Merge: d10f5006d f35b9fbad +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 25 13:48:48 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit f35b9fbad3bc105194d9f71f2c728b8f16d3f365 +Merge: 5699631cf df079cd77 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 25 13:48:12 2021 -0400 + + Merge pull request #1041 from raft-tech/devops/872/update-pa11y-config + + Devops/872/update pa11y config + +commit b3b830f5fa0edd13863934671cdca55683c0ebfd +Merge: 364c1c60a 5699631cf +Author: Jorge Gonzalez +Date: Tue Jun 22 17:14:47 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 6a18f4b34b588f2a4815c4c05ccf1cfb2409c548 +Merge: 6961570dd 5699631cf +Author: Jorge Gonzalez +Date: Tue Jun 22 17:08:44 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit e3ffa330eaae2a10330d6e805577bf7e185ac3bf +Author: Angela Milash +Date: Tue Jun 22 10:59:13 2021 -0700 + + create sprint-23-summary.md + + create and add sprint 23 report information + +commit df079cd779b074535c54db6839c289eaef7e0614 +Merge: 82ddb429c 5699631cf +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 22 13:54:38 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/872/update-pa11y-config + +commit 5699631cfc7c326ab55738cbc9cbf4c9d3aa23cd +Merge: 4aa23511b aec7defd8 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 22 13:54:31 2021 -0400 + + Merge pull request #1022 from raft-tech/update-with-GitNotify + + Update 009-git-workflow.md + +commit 82ddb429cdab6e845c9ebc81a88d5d91b94fd03f +Merge: 0bfae9a8b 4aa23511b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 22 13:49:13 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/872/update-pa11y-config + +commit aec7defd81c98dad8d73b93e803588a7f97686a5 +Merge: 52c8b1f6c 4aa23511b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 22 13:37:03 2021 -0400 + + Merge branch 'raft-tdp-main' into update-with-GitNotify + +commit e8df3943afc3347043f306fdd0ab4fa8dcdab395 +Author: Aaron Beavers +Date: Tue Jun 22 12:42:17 2021 -0400 + + Remove blank import + +commit 49975d9bbefd8a68c3aca61f9e528a570f7f3fe6 +Author: Aaron Beavers +Date: Tue Jun 22 11:51:32 2021 -0400 + + Remove unused import + +commit 3b45379f1cf738afb9b990bcec1b43a17a415bf0 +Author: Aaron Beavers +Date: Tue Jun 22 11:50:33 2021 -0400 + + remove extra new line for linter + +commit 879304a4d97a1008c6b54c5a53d1454b78d74212 +Merge: 6570ba5ec 4aa23511b +Author: Aaron Beavers +Date: Tue Jun 22 11:22:32 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 6961570dd0bd1db5794572b1a3e0d469b995ea1f +Merge: 24314a5ea 4aa23511b +Author: Jorge Gonzalez +Date: Mon Jun 21 14:17:53 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 364c1c60ab6fe293323b6d752aaca413ee831154 +Merge: 2d58b7c66 4aa23511b +Author: Jorge Gonzalez +Date: Mon Jun 21 14:17:32 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 0bfae9a8b278f314b3bbbd1f97d4a8cbbb6fbb89 +Author: Aaron Beavers +Date: Mon Jun 21 13:43:26 2021 -0400 + + create directory for pa11y screenshots + +commit 9a31bcdfa574648a12e19b70d011f7ed140fe40d +Author: Aaron Beavers +Date: Mon Jun 21 13:14:57 2021 -0400 + + Add store artifact directives to circle ci config + +commit 7878f14092502a2c4e79aeaeccf0991f97d0feec +Author: Aaron Beavers +Date: Mon Jun 21 13:14:35 2021 -0400 + + scan all frontend views with pa11y + +commit 24314a5ea718002fa4af2b9eb1b389698c61eb7b +Merge: 4754f1694 907050ec6 +Author: Jorge Gonzalez +Date: Mon Jun 21 11:56:23 2021 -0400 + + Merge remote-tracking branch 'origin/ops/609-terraform' into ops/609-terraform + +commit 4754f169458a65ddf14731cbffd244c48e487b27 +Author: Jorge Gonzalez +Date: Mon Jun 21 11:56:17 2021 -0400 + + Added note on security + +commit 4aa23511bd5f7b4ae9e720a3eee7068c7fbd51bb +Merge: 6eb0fc1d4 21a9c5fce +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jun 21 11:52:25 2021 -0400 + + Merge pull request #1009 from raft-tech/issues/1008-unused-dockerfiles + + Removed Unused Dockerfiles + +commit 907050ec6fbbabcb3fe8a0460497b796f4db325a +Merge: 8aa3cc9cd 6eb0fc1d4 +Author: Jorge Gonzalez +Date: Mon Jun 21 11:49:45 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit d10f5006d6fe54713ab76df0484ccc4e6f62127d +Merge: 4077cec68 6eb0fc1d4 +Author: Jorge Gonzalez +Date: Mon Jun 21 11:45:54 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 21a9c5fce6a553b216e7164449f3f85bc85a492f +Merge: f651305c2 6eb0fc1d4 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jun 21 11:38:39 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles + +commit 6eb0fc1d432cd9173f8247b3fac2789ccfbab149 +Merge: 8afc879dc a83117472 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jun 21 11:35:39 2021 -0400 + + Merge pull request #1034 from raft-tech/kniz-raft-patch-2 + + Update 009-git-workflow.md + +commit a831174728f517c1b54157117068e2c41beaf8c2 +Merge: 51d543be5 8afc879dc +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jun 21 11:22:58 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit 8afc879dca375ad98336c3088d087b8aed155878 +Merge: bc25c3e40 3db4ec39b +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Mon Jun 21 11:22:46 2021 -0400 + + Merge pull request #1033 from raft-tech/kniz-raft-patch-1 + + Update Team-Composition.md + +commit c66a8cb57e26b5c7cb8d217d78a26a7214e9f7fd +Author: John Willis +Date: Thu Jun 17 17:41:39 2021 -0400 + + Actually fix tabbing + +commit 26ef049da2136d536a85cdf7e4ca0be78aad53e2 +Author: John Willis +Date: Thu Jun 17 17:39:06 2021 -0400 + + Fix tabbing in zap conf + +commit 2d58b7c66f38b16226fb5c04844e3f407d8dd605 +Author: John Willis +Date: Thu Jun 17 17:14:40 2021 -0400 + + Moved localstack-setup to /scripts + +commit 6570ba5ecfbbd97f14de01307b5d5a9453d01e33 +Author: Aaron Beavers +Date: Thu Jun 17 15:34:16 2021 -0400 + + Move call to removeOldPreviews to after guard clause + +commit 3db4ec39b22ccc3687db2ba9d63bad182a974cf7 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jun 17 14:37:44 2021 -0400 + + Update docs/How-We-Work/Team-Composition.md + +commit 151443d7722d80ae064cd30b14fe935adba5b866 +Author: Aaron Beavers +Date: Thu Jun 17 12:52:31 2021 -0400 + + lint + +commit c6ae76045b622e1fe47420036f4477b3885b2d87 +Author: Aaron Beavers +Date: Thu Jun 17 12:52:15 2021 -0400 + + Add code to remove old previews + +commit 05710a6885e2768e3e49487c52ef1a476de40b49 +Author: Aaron Beavers +Date: Thu Jun 17 12:52:01 2021 -0400 + + Fix bad comments + +commit 8aa3cc9cd671885afc1c05bbe027fb91bce28699 +Author: Jorge Gonzalez +Date: Thu Jun 17 11:51:04 2021 -0400 + + Update docs and vars script + +commit 22f9f7a311aed5452ea4e92521356fbd482e42ce +Author: Aaron Beavers +Date: Thu Jun 17 09:26:12 2021 -0400 + + Add period to end of doc string + +commit 694800ba4ff6f34736cb05f61a935bfecaafc55f +Merge: 56fdc8c15 a9b937126 +Author: Aaron Beavers +Date: Wed Jun 16 16:48:33 2021 -0400 + + Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/833/download-file-endpoint + +commit 07f468cbb89fbe4dcd4d32fb8204965f9eece2d6 +Merge: b17a88a27 bc25c3e40 +Author: Aaron Beavers +Date: Wed Jun 16 16:46:24 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 00b91a8a0fa19f6a2aaddddbd9792f05f8f928a8 +Author: abottoms-coder +Date: Wed Jun 16 16:32:44 2021 -0400 + + Added line break + +commit 9b45bad40d250fe8e7453b377dcc4d677e3b4d06 +Author: abottoms-coder +Date: Wed Jun 16 16:30:05 2021 -0400 + + Revision from feedback + +commit 56fdc8c156712e66a77de1a6e5f2d1ed3855dba9 +Author: Aaron Beavers +Date: Wed Jun 16 16:29:03 2021 -0400 + + Update import statement to support suggested changes + +commit bcf003ceae867697b324df0bf546a3d3172fca91 +Author: Aaron Beavers +Date: Wed Jun 16 16:28:22 2021 -0400 + + Add test confirming content of downloaded file + +commit 32de8ea3528c7f7151293afa515c5a2470d0c562 +Author: Aaron Beavers +Date: Wed Jun 16 16:26:53 2021 -0400 + + Remove unnessariy serializer + +commit 981ea2f226865314921599807216f6e7a3c15607 +Merge: 297b980a6 bc25c3e40 +Author: Aaron Beavers +Date: Wed Jun 16 16:23:10 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/833/download-file-endpoint + +commit b17a88a278be4a699f4904b56dc6ca7b3abe2091 +Author: Aaron Beavers +Date: Wed Jun 16 16:02:18 2021 -0400 + + Add new rule for false positive discovered in prod scan + +commit 4246627414dde661fc73ac7b972de370f63a77b9 +Author: Aaron Beavers +Date: Wed Jun 16 15:53:58 2021 -0400 + + Remove trailing new lines + +commit 297b980a6601146d67f0ff0e3881f71143ff8e2a +Author: Aaron Beavers +Date: Wed Jun 16 15:50:38 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: John Willis + +commit 33324477b9baa29a02ac82549303b97299a50a87 +Author: Aaron Beavers +Date: Wed Jun 16 14:07:22 2021 -0400 + + Remove rule fixed by another issue + +commit 2033e65b08f9526985c0d49526155946ebc2ea5a +Author: Aaron Beavers +Date: Wed Jun 16 14:06:06 2021 -0400 + + Remove rules we've already solved for + +commit 18be1d10548576006f7f3240b7d9e4bdd9fde532 +Author: abottoms-coder +Date: Wed Jun 16 13:46:09 2021 -0400 + + Initial edit for dependabot mass-merge + +commit 51d543be5b227f55621f7d6fc32c6089be8bad31 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Jun 16 11:54:04 2021 -0500 + + Update 009-git-workflow.md + +commit 18003eeb133bbc0d90e38a4a6cfca1c946a11eba +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Jun 16 11:48:21 2021 -0500 + + Update Team-Composition.md + +commit f1d2061b20c8b6b4aea165b013024eb6426f509d +Merge: c73dddb21 e1b3cb69c +Author: Aaron Beavers +Date: Wed Jun 16 12:16:04 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 45f100a595bd2a5090dbe2ff81659b5cde0fef7e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 16 10:23:36 2021 -0400 + + Update user_role_management.md + +commit 427f7c1bd9686049f833a52eb2c6b43c31dc75f9 +Merge: 9e0da0e9b bc25c3e40 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 16 10:12:22 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/usermgmt-updates + +commit 9e0da0e9be43767148402a0ec651ab9d89ea8758 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Jun 16 09:59:47 2021 -0400 + + updated docs per issue 962 + +commit 4077cec68ea47fad2bfe0a727c9bf6f7d4fdb458 +Merge: 4028c59ef bc25c3e40 +Author: Jorge Gonzalez +Date: Tue Jun 15 18:51:56 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 3f69ad38cbc3b274b8c005dc588257ab9d6cfee4 +Author: Jorge Gonzalez +Date: Tue Jun 15 18:40:28 2021 -0400 + + Update docs + +commit ce29d672ec46732fbaca3a263a81b89ce93783b7 +Author: Jorge Gonzalez +Date: Tue Jun 15 18:40:01 2021 -0400 + + Add env postfix to bind-service args + +commit a9b93712697c9ceca02a205ba82a89b9cf9bf76c +Merge: d7396cdd8 bc25c3e40 +Author: John Willis +Date: Tue Jun 15 15:53:43 2021 -0400 + + Merged in raft-tdp-main and fixed conflicts + +commit f651305c29f5bd778324eb86458877f6bf47924a +Merge: f2db2da3b bc25c3e40 +Author: John Willis +Date: Tue Jun 15 15:50:05 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles + +commit 39ba8a5d1b666abadaf4f2b6053218055ccc337d +Author: Jorge Gonzalez +Date: Tue Jun 15 15:32:46 2021 -0400 + + Delete unused file + +commit f85e93c14ba4b66ab5b89a2a7aaa293ce023ef54 +Author: Jorge Gonzalez +Date: Tue Jun 15 15:20:57 2021 -0400 + + Add test deploy script + +commit 73eca8b83daf5c82f78aab96d8fdcb58fb0f32a8 +Author: Jorge Gonzalez +Date: Tue Jun 15 15:02:55 2021 -0400 + + Minor tweak + +commit 035213c8fe2ac257944d8f1691dafcea0d09a6ba +Merge: 2ca602e4e bc25c3e40 +Author: Jorge Gonzalez +Date: Tue Jun 15 14:58:44 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/609-terraform + +commit 2ca602e4e509b62314c3ae4c91bd526e17688e9a +Author: Jorge Gonzalez +Date: Tue Jun 15 14:51:24 2021 -0400 + + Fix staging config + +commit 90b8e7fff8bf6515284043065b130f687159239b +Author: Jorge Gonzalez +Date: Tue Jun 15 14:31:40 2021 -0400 + + Add various improvements + +commit 9375913ca9e68bca4b814f28f20167c529ca45dc +Author: Jorge Gonzalez +Date: Tue Jun 15 14:31:16 2021 -0400 + + Fix terraform backend for staging + +commit bc25c3e40fe31765c0ad5afe67ba38c535a11ff9 +Merge: 8b7fc0b29 b25a2459d +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 15 13:37:45 2021 -0400 + + Merge pull request #994 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/ipython-7.24.1 + + Bump ipython from 7.19.0 to 7.24.1 in /tdrs-backend + +commit b25a2459d179016cf78deae26567566d070cbccc +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue Jun 15 16:10:23 2021 +0000 + + Bump ipython from 7.19.0 to 7.24.1 in /tdrs-backend + + Bumps [ipython](https://github.com/ipython/ipython) from 7.19.0 to 7.24.1. + - [Release notes](https://github.com/ipython/ipython/releases) + - [Commits](https://github.com/ipython/ipython/compare/7.19.0...7.24.1) + + --- + updated-dependencies: + - dependency-name: ipython + dependency-type: direct:production + update-type: version-update:semver-minor + ... + + Signed-off-by: dependabot[bot] + +commit 4028c59ef9eeba402a1e8e44d0a8dfe6b39688f5 +Merge: 3575f419e 8b7fc0b29 +Author: Jorge Gonzalez +Date: Tue Jun 15 11:29:42 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 8b7fc0b29114274ea8027d72222681739f9d8bdd +Merge: e1b3cb69c f04a491da +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 15 11:28:48 2021 -0400 + + Merge pull request #995 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/ipdb-0.13.9 + + Bump ipdb from 0.13.7 to 0.13.9 in /tdrs-backend + +commit f04a491da836581daf745bfcdf64e6ad82815762 +Merge: c52aeb438 e1b3cb69c +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Tue Jun 15 11:13:52 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/ipdb-0.13.9 + +commit 3575f419e3aeec627e8ccf0bf94a85b5f39b2f26 +Merge: d235d13d7 e1b3cb69c +Author: Jorge Gonzalez +Date: Tue Jun 15 10:19:02 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 5c79b2297cdea69ce3e6e20acae1b5cbb8494bd2 +Author: Jorge Gonzalez +Date: Mon Jun 14 16:15:31 2021 -0400 + + ops(609, 847): Add Terraform for automated service provisioning + +commit c265e56be6bf9f9f06e375364ef8b04ab4465f22 +Author: Aaron Beavers +Date: Mon Jun 14 14:30:57 2021 -0400 + + Remove lint + +commit 15f443c29cbcc6161d611286c94c3dce52a74dc6 +Author: Aaron Beavers +Date: Mon Jun 14 13:39:48 2021 -0400 + + Tests pass + +commit b1bc242dba34355c03854d90fca5265bb0c74b77 +Author: Aaron Beavers +Date: Mon Jun 14 13:39:37 2021 -0400 + + Add new tests + +commit dcbe2c2ccd2af1ed7ba7300a7fba5ee3b7ede746 +Author: Aaron Beavers +Date: Mon Jun 14 13:39:30 2021 -0400 + + Add test helpers + +commit df0a979b73f9237f97a42ad9b37cf2b267758c6d +Author: Aaron Beavers +Date: Mon Jun 14 13:39:01 2021 -0400 + + years are numbers + +commit f2db2da3bbd361acf52c7a433e7b49cfed5d003b +Merge: 34e8eb204 e1b3cb69c +Author: John Willis +Date: Mon Jun 14 10:56:56 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles + +commit d7396cdd87bd69942e48a41f1d0e6f713e302b6e +Author: John Willis +Date: Mon Jun 14 10:43:16 2021 -0400 + + Updated README for test command + +commit ab20a887e8a657de4e81633051d4f99b5a7ea125 +Author: John Willis +Date: Mon Jun 14 10:18:54 2021 -0400 + + Call wait_for_services.sh in test command instead of using a separate step for Circle CI + +commit 170aaabedb59d0fafb27900ddf9be700f980b2f3 +Merge: 9a8b9979c e1b3cb69c +Author: John Willis +Date: Mon Jun 14 10:07:52 2021 -0400 + + Merged in raft-tdp-main and fixed conflicts + +commit 52c8b1f6c0e7ff18a2bbf34f917073df4ef398d6 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 14 09:06:56 2021 -0400 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit db4bbcdc41be92a753dace2c88cb6da28c0bdd2c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 14 09:06:50 2021 -0400 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit e1b3cb69c246b8411e2e94ca3ee7205c07513a68 +Merge: 81028cb6a 06bbb5b70 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 18:26:28 2021 -0400 + + Merge pull request #991 from raft-tech/kniz-raft-patch-1 + + Update Roadmap-and-Backlog.md + +commit 06bbb5b703d015af1149448667f72bf89e7fef77 +Merge: 637c17f9b 81028cb6a +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 17:38:26 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 81028cb6a1ca30ddce02fcfe749a01b0ed248d7e +Merge: be6128874 1b768f651 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 17:38:09 2021 -0400 + + Merge pull request #1005 from raft-tech/kniz-raft-patch-2 + + Create sprint-22-summary.md + +commit 1b768f6512418ac660058e20b4e3d6f8b8e7616b +Merge: 6bfa0558d be6128874 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 16:39:09 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit be61288740afbbeae272667eaf90aada9f3912d9 +Merge: 28928be31 b225cba9e +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 16:38:46 2021 -0400 + + Merge pull request #1006 from raft-tech/kniz-raft-patch-3 + + Create sprint-21-summary.md + +commit b225cba9e1c33cad55851a2b6d73ad42a2c8db4e +Merge: 00db6c305 28928be31 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 16:04:20 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-3 + +commit 28928be31fe96a7a44a3e895ad3da3c8f7ed708d +Merge: 98bafded5 a9e11c1c2 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 15:42:46 2021 -0400 + + Merge pull request #985 from raft-tech/adp/secret-keys-doc + + Secret key prevention doc + +commit 637c17f9b96969550a5c13088cf263b7480aa5d9 +Merge: 371dc797f 98bafded5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 15:42:13 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 6bfa0558d9b3bcd2ffe3f28ad0cf9d44a817c56e +Merge: 60fc8403c 98bafded5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 15:41:53 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit 00db6c305fe4e8d90037310df96ffd7c88325299 +Merge: 80baa97be 98bafded5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 15:41:39 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-3 + +commit 07ce7963d82895ee93240cff13c433f61968378f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jun 11 11:55:26 2021 -0400 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit 4e291ff6619a05c59e71dbd07e5b6e40911838f4 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jun 11 11:30:23 2021 -0400 + + Update 009-git-workflow.md + +commit d235d13d7d6d06b0c29a36763d95399508472b25 +Merge: a0f901dde 98bafded5 +Author: Jorge Gonzalez +Date: Fri Jun 11 11:00:02 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit a9e11c1c2c4ad68cc96fff48f03dbe9379c1be02 +Merge: 7f8da5fc6 98bafded5 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 09:38:37 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/secret-keys-doc + +commit c52aeb43877d863b2eefa56abbd4f22dfb63301d +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Fri Jun 11 13:23:21 2021 +0000 + + Bump ipdb from 0.13.7 to 0.13.9 in /tdrs-backend + + Bumps [ipdb](https://github.com/gotcha/ipdb) from 0.13.7 to 0.13.9. + - [Release notes](https://github.com/gotcha/ipdb/releases) + - [Changelog](https://github.com/gotcha/ipdb/blob/master/HISTORY.txt) + - [Commits](https://github.com/gotcha/ipdb/compare/0.13.7...0.13.9) + + --- + updated-dependencies: + - dependency-name: ipdb + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit 98bafded58561dc2ab7e0c74928fd10001dfb9fc +Merge: 04fd64f06 9b35f1adb +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Fri Jun 11 09:17:42 2021 -0400 + + Merge pull request #1016 from raft-tech/dependabot/pip/tdrs-backend/django-3.2.4 + + Bump django from 3.2.3 to 3.2.4 in /tdrs-backend + +commit c73dddb21e22715e19da7bc65f4f34a48c4a7c46 +Merge: c2736a4cd 04fd64f06 +Author: John Willis +Date: Thu Jun 10 16:13:59 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 9a8b9979cfc4e6eb602ed7f2faba1b1e0954813f +Author: John Willis +Date: Thu Jun 10 15:47:59 2021 -0400 + + Add localstack step back to CI because wait_for_services.sh doesn't affect the docker-compose run command + +commit d3bd8060020bccd576e1a807a75fd46bffff0982 +Author: John Willis +Date: Thu Jun 10 15:40:53 2021 -0400 + + Move S3 bucket check from CI to wait_for_services + +commit 9b35f1adb66aacba78e79fec2b2f7b4e9c2ebab3 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu Jun 10 18:40:23 2021 +0000 + + Bump django from 3.2.3 to 3.2.4 in /tdrs-backend + + Bumps [django](https://github.com/django/django) from 3.2.3 to 3.2.4. + - [Release notes](https://github.com/django/django/releases) + - [Commits](https://github.com/django/django/compare/3.2.3...3.2.4) + + --- + updated-dependencies: + - dependency-name: django + dependency-type: direct:production + ... + + Signed-off-by: dependabot[bot] + +commit 9b5c4cea6c68522eecca0e8ac39fa3e0be090dc7 +Merge: 61981ede7 dc394c05e +Author: Aaron Beavers +Date: Thu Jun 10 12:01:47 2021 -0400 + + Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/833/download-file-endpoint + +commit 61981ede7ac1b215fb7a14504c825f513478aac6 +Merge: cb493fb20 04fd64f06 +Author: Aaron Beavers +Date: Thu Jun 10 12:01:44 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint + +commit cb493fb20d3cf7258bbc7a18275cd91464e2619d +Author: Aaron Beavers +Date: Thu Jun 10 11:13:13 2021 -0400 + + Remove extraneous white space + +commit 4b3f31f7575231f0d693457189996384328a18bb +Author: Aaron Beavers +Date: Thu Jun 10 11:13:01 2021 -0400 + + Fix long line + +commit 279b7ed1b187470f55ae76caabf30572e24e8cc4 +Author: Aaron Beavers +Date: Thu Jun 10 11:12:31 2021 -0400 + + remove duplicate permission resulting from merge + +commit 34e8eb2047161be13cfa6bca1729ce564add17b4 +Merge: ffed2ada8 04fd64f06 +Author: John Willis +Date: Wed Jun 9 18:21:03 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles + +commit dc394c05e94b41183e6daa0a31850a3e70d5dc8c +Merge: eafcc428c 04fd64f06 +Author: John Willis +Date: Wed Jun 9 18:17:33 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 04fd64f0612c71f48fa1646991e85b7d28471129 +Merge: 8edb04f6c 42ae5e859 +Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> +Date: Wed Jun 9 17:13:17 2021 -0400 + + Merge pull request #866 from raft-tech/issues/865 + + Issue 865: Add 404 routes to nginx config file + +commit 91be1a787c1db4336876697f9709530b2191ec9e +Merge: d537c3ea3 eafcc428c +Author: Aaron Beavers +Date: Wed Jun 9 15:40:28 2021 -0400 + + Merge branch 'backend/818-scan-and-upload-data-files' into backend/833/download-file-endpoint + +commit ffed2ada867f4b5d921ab472cd871595f961c0de +Author: John Willis +Date: Wed Jun 9 12:47:06 2021 -0400 + + Upgrade image used for CircleCI machine executor + +commit eb7e9c85b43228acea38fe45b7acf7154e239f94 +Author: John Willis +Date: Tue Jun 8 18:21:42 2021 -0400 + + Removed unnecessary dockerfiles in favor of leveraging multi-stage builds + +commit c2736a4cd4c6c0097484e0db435e2ae95283684b +Merge: b0ecd08e2 8edb04f6c +Author: John Willis +Date: Tue Jun 8 17:08:30 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 85b3911a8826d4f843e3944feafa7d2ae5991574 +Merge: 8be2003f6 8edb04f6c +Author: John Willis +Date: Tue Jun 8 17:04:55 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit d537c3ea3c9d45dae6cd32b92d6f91d8bc45da7e +Author: Aaron Beavers +Date: Tue Jun 8 15:57:00 2021 -0500 + + Before my puter crashed I did this, recovering + +commit 7f8da5fc675a4ed0de75e227c5e77042ec95ccb9 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 16:18:54 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit fd104268ba9d3984a2a0240c97cf8a8641dbe3f5 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 16:16:30 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit a34d29c5b066a26879afc9142b0ced15c1207045 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 16:14:45 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 42ae5e859f60df15c5107885a959f169213f62bb +Author: Aaron Beavers +Date: Tue Jun 8 16:05:03 2021 -0400 + + Reintroduce root public + +commit 80baa97bef3a7a326c6ef5913099280dcbc278f2 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Jun 8 14:37:08 2021 -0500 + + Create sprint-21-summary.md + +commit 60fc8403c004199a396244241fdb9cab8c884fe6 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Jun 8 14:32:55 2021 -0500 + + Create sprint-22-summary.md + +commit 498af8413b99e30d3d5d9980200038a4fa737a45 +Author: Aaron Beavers +Date: Tue Jun 8 12:58:09 2021 -0400 + + typo + +commit c1d66037fa030199f116b231de9c0088e587c9dc +Author: Aaron Beavers +Date: Tue Jun 8 12:39:16 2021 -0400 + + typo + +commit f8bd6033634272d091c718b60e0f736e29cd5bc1 +Author: Aaron Beavers +Date: Tue Jun 8 12:16:16 2021 -0400 + + Using include with correct docker copy + +commit a0f901ddef7e3a3201353ffb2219da4a045f6341 +Author: Jorge Gonzalez +Date: Tue Jun 8 11:13:33 2021 -0400 + + guard effect with active state + +commit a3a63b91d5d84fbf612af3fb7a625f98a66a27b2 +Author: Jorge Gonzalez +Date: Tue Jun 8 11:09:13 2021 -0400 + + Make email a link + +commit 376fd35e77f6cc76f41c4ecbc1551784ab9fa996 +Author: Jorge Gonzalez +Date: Tue Jun 8 11:06:07 2021 -0400 + + Remove is_active from django admin + +commit a449f1854753d7974a5dc7de2b7381d30c2dd35d +Author: Aaron Beavers +Date: Tue Jun 8 10:31:10 2021 -0400 + + Update buildpack conf + +commit d538a262350015bb76fe5ca5af594b42f0a9e013 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 09:25:11 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit b3ed26ca0e1424d8fceafb651cc0ccdff723aed4 +Merge: 16ca2aadc 1237fb2d7 +Author: Jorge Gonzalez +Date: Tue Jun 8 09:18:28 2021 -0400 + + Merge remote-tracking branch 'origin/feat/829-inactive-user' into feat/829-inactive-user + +commit 16ca2aadcc3131d4e0827537c9178d9af18c81be +Author: Jorge Gonzalez +Date: Mon Jun 7 15:55:54 2021 -0400 + + Update tabIndex and add minor tweak + +commit 255406b60cf79f5408da2809b104b8661bccdd6e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 09:10:53 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 01679f799351241fe2e514c94df984008640577b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:35:48 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit b4b9c56d8200faaeeadf97e78a5cdcceb62860b3 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:35:16 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit ed81b21421ec45f8a6f315e5f278621e7ade5a61 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:34:23 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 2ccbd81e9e007a0698eaa258f7929513c1a05546 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:33:58 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit fdd0079c4311d8caf904a2055e42692b26e4530b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:33:24 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit c1ae3e6e7df508903c8c9826313ff89780dd4488 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:32:53 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 06a818818a25114d3327ed9983b4e234189f4dd3 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:31:45 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 5984b6cca00edbabc524826b954e74d6e8dcfce4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:29:27 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 33e08058aef20f5a1190669ee9d69116a4e2c5f1 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:29:03 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 7bd25964f5388c23e9775e4103b25cc9b77432f3 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 8 08:27:54 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 7f53a85ae3544b56537444a9fa8460fb2aa46814 +Author: Aaron Beavers +Date: Mon Jun 7 16:42:27 2021 -0400 + + fix nginx config + +commit eafcc428c5b798258312a9c0595d07604e1ff482 +Author: John Willis +Date: Mon Jun 7 16:26:31 2021 -0400 + + Fix error in zap scanner script + +commit a43ff26512c65dc613384caa2353b7bfc0bff83e +Author: John Willis +Date: Mon Jun 7 16:16:32 2021 -0400 + + Remove unnecessary down/build/up steps in zap-scanner to account for increased web startup time + +commit 7c685a234339ca3708e8515056f7049f0485f156 +Author: John Willis +Date: Mon Jun 7 15:58:09 2021 -0400 + + Ensure zaproxy waits on web now that web is waiting longer to start for localstack + +commit 1237fb2d7674a904f4d68390f9a8d31e6cb76cfd +Author: Jorge Gonzalez +Date: Mon Jun 7 15:55:54 2021 -0400 + + Update tabIndex + +commit 96b0f54babee40a65d99c26ec2a071e30d90db9d +Author: John Willis +Date: Mon Jun 7 15:49:18 2021 -0400 + + Fix path issue in localstack check + +commit 71a934f8cd4f1128ae99014acc48c29da77e7915 +Author: John Willis +Date: Mon Jun 7 15:32:49 2021 -0400 + + Add a test step to wait for localstack to finish initializing bucket + +commit e99eae020de33bf32988a4d07103a3a8b4db8cc3 +Author: John Willis +Date: Mon Jun 7 14:31:04 2021 -0400 + + Fix permissions + +commit 821cdbdbda6b6356a94f67c9ec8c1bacb73d9625 +Merge: 16656ea71 8edb04f6c +Author: John Willis +Date: Mon Jun 7 14:17:10 2021 -0400 + + Merged in raft-tdp-main and fixed conflicts + +commit c584f8467065aadcb67d9411f526d91d0b1f03a1 +Author: Jorge Gonzalez +Date: Mon Jun 7 13:53:03 2021 -0400 + + Make label a span + +commit 4b0492cd7173bc7dc321312055cefb1a30ee010e +Author: Jorge Gonzalez +Date: Mon Jun 7 13:23:13 2021 -0400 + + Fix a11y issue with error alert + +commit 0c18907b5fe81690f4281925252a061e244756ab +Author: Aaron Beavers +Date: Mon Jun 7 13:07:13 2021 -0400 + + Remove quotes from include and add semi colon + +commit 21e16fc89f64425f0894c3f5b27b1c7b4d090fb2 +Author: Aaron Beavers +Date: Mon Jun 7 12:47:58 2021 -0400 + + Typo + +commit 3cdaeee143d34bc4d2bb760a454f771d5c2b8e2d +Author: Aaron Beavers +Date: Mon Jun 7 11:45:34 2021 -0400 + + typo + +commit c26309d3063b66d32052ae05784c8b91c3805a8e +Author: Aaron Beavers +Date: Mon Jun 7 11:37:56 2021 -0400 + + Add location conf to dockerfile + +commit 0df011e53a373a5af2afc65d4b697106b17f4cd6 +Merge: 3b97bac03 8edb04f6c +Author: Jorge Gonzalez +Date: Mon Jun 7 10:36:29 2021 -0400 + + Merge + +commit 93a857aa95b0f8a952f67f739384542f3b1f6a8c +Author: Aaron Beavers +Date: Mon Jun 7 10:16:25 2021 -0400 + + add locations to the frontend deployment script + +commit b51328ce6eb9141fa228980648f4e96dedd25a8c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 7 08:40:43 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + + Co-authored-by: John Willis + +commit a8f862702cca03701c95c18ac0e315acba966830 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 7 08:40:07 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + + Co-authored-by: John Willis + +commit 5b582bc75bf803be5e6f77c44a9defda5d034e8d +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Mon Jun 7 08:39:25 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + + Co-authored-by: John Willis + +commit 14d900b5502a74a87d7bedec7a86cb46f803f907 +Author: Aaron Beavers +Date: Fri Jun 4 11:57:59 2021 -0400 + + set nginx configs to use an include for locations + +commit 54dec68dc3f672117c34c45aef6c1f1d1761f067 +Merge: 4c308a419 8edb04f6c +Author: Aaron Beavers +Date: Fri Jun 4 11:57:28 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 + +commit 8edb04f6cb4eff7311463bf8f5936dd4b8026b83 +Merge: dbd1a52d7 092b64dfd +Author: John Willis +Date: Fri Jun 4 11:49:44 2021 -0400 + + Merge pull request #664 from raft-tech/epics/398/backend/643/list-years + + Issue 643: Endpoint for retrieving a list of years reports are available + +commit 8be2003f6d18a963d529356beea90a47f46828d2 +Author: Aaron Beavers +Date: Fri Jun 4 10:13:36 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: John Willis + +commit 3b97bac0392fa6d02f8b7ff5553a7b3b1bd496b3 +Merge: 201b30135 dbd1a52d7 +Author: Jorge Gonzalez +Date: Fri Jun 4 10:01:39 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 16656ea715c89eb3ad8397bee1cc0f979657650a +Author: John Willis +Date: Thu Jun 3 17:56:39 2021 -0400 + + Revert zap changes that didn't do anything + +commit b44e6a613d63719b93ae8b4ccd4ad58571350129 +Author: John Willis +Date: Thu Jun 3 17:48:15 2021 -0400 + + Remove docker compose change that didn't work + +commit d1eb8d165b8ac76910c7cdac1b17145a3e1ab2fc +Author: John Willis +Date: Thu Jun 3 17:42:40 2021 -0400 + + Remove unnecessary down/build/up steps in zap-scanner to account for increased web startup time + +commit d42a75b6225b42ab288ecac91bb7bd48fc77ad15 +Author: John Willis +Date: Thu Jun 3 17:33:53 2021 -0400 + + Ensure zaproxy waits on web now that web is waiting longer to start for localstack + +commit 597756c8bd7568aca0104f9b5139c21421612b4a +Merge: 4b5f68b7c dbd1a52d7 +Author: John Willis +Date: Thu Jun 3 17:33:19 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 092b64dfdf41d0a69e42925e436febce82d13803 +Author: John Willis +Date: Thu Jun 3 17:31:44 2021 -0400 + + Remove unintentional change to docker compose + +commit 6fdab0e364c178e9316e9ead0f4930fb04ac0056 +Author: John Willis +Date: Thu Jun 3 17:28:56 2021 -0400 + + Fix error that could occur if user doesn't have STT set + +commit 7cdd13531ee41dc4f988c2375851b0bdbcf3f108 +Author: John Willis +Date: Thu Jun 3 17:18:37 2021 -0400 + + Ensure zaproxy waits on web now that web is waiting longer to start for localstack + +commit 4b5f68b7c38bfcc2280bccfccde73c7b12039800 +Author: John Willis +Date: Thu Jun 3 17:08:29 2021 -0400 + + Reset docker compose change + +commit e479794d1020e81e13987e4f7bc3a374ab06a05a +Merge: 7b383eab3 dbd1a52d7 +Author: John Willis +Date: Thu Jun 3 16:45:47 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 204cfa2de399f8fe95714c26ab13331ddff969eb +Author: John Willis +Date: Thu Jun 3 16:02:09 2021 -0400 + + Update wait-for-it to point to health endpoint, which doesn't return 200 until services are initialized + +commit dbd1a52d7cd3b5ae51ee7a4a01de07d21c5302c1 +Merge: ddb6feb7a 94b0e8272 +Author: John Willis +Date: Thu Jun 3 15:36:10 2021 -0400 + + Merge pull request #988 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/pytest-cov-2.12.1 + + Bump pytest-cov from 2.12.0 to 2.12.1 in /tdrs-backend + +commit 7b383eab3bddcf72402d1d6d96e68e3d67d37cfb +Author: John Willis +Date: Thu Jun 3 15:35:26 2021 -0400 + + Fix linter error + +commit 8ef9cb94e97cc0bf448fe3f1f454a011f79ae06c +Author: John Willis +Date: Thu Jun 3 15:20:25 2021 -0400 + + Remove commented out code + +commit 0964d019a910e87cc70b15a3ad4825ac11b14312 +Author: Aaron Beavers +Date: Thu Jun 3 15:11:54 2021 -0400 + + Implement suggested change from john + +commit f56b0337bd7141566a92e35cb0094b109e1b9461 +Author: Aaron Beavers +Date: Thu Jun 3 15:11:20 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: John Willis + +commit b2f4c8c49d1e0e5799e33b3cf556f694decaf088 +Author: John Willis +Date: Thu Jun 3 15:11:02 2021 -0400 + + Only attach localstack volume for persistent storage in local docker-compose environments + +commit 371dc797f30db527db11baa6eafaa61dd46952a2 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Jun 3 14:05:51 2021 -0500 + + Update Roadmap-and-Backlog.md + +commit 201b301352a6072bbe4cbf2938ff1e7bfe6da22a +Author: Jorge Gonzalez +Date: Thu Jun 3 13:17:25 2021 -0400 + + Remove dev setting + +commit c69b29e6619a4aa352a9cb50638d537abf61ef78 +Author: Jorge Gonzalez +Date: Thu Jun 3 13:16:02 2021 -0400 + + Update copy to Deactivated + +commit b0ecd08e2a76f76440500264fdd33fe2212282df +Merge: 5aa740f80 ddb6feb7a +Author: Aaron Beavers +Date: Thu Jun 3 12:27:08 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 9fab304119e2e393062a9954367cef561ed441e2 +Author: Jorge Gonzalez +Date: Thu Jun 3 11:32:41 2021 -0400 + + Fix migration + +commit 5667c7803043a72a4949b2e41d348a2f2706048d +Author: Aaron Beavers +Date: Thu Jun 3 11:26:04 2021 -0400 + + Add ofa admin factory with no default stt + +commit 12e564b26f75c0020bef2115480ff67eaecbc548 +Author: Aaron Beavers +Date: Thu Jun 3 11:25:33 2021 -0400 + + Refactor controller to avoid accessing non existant value when no stt + +commit 9422723be07780d2f99c644fab3a31f08eef5b00 +Author: Aaron Beavers +Date: Thu Jun 3 11:07:57 2021 -0400 + + Add new test to capture ofa admin with out stt + +commit c106bcb0719183c3f69b3a96677705c38a59eeb9 +Author: Aaron Beavers +Date: Thu Jun 3 11:07:39 2021 -0400 + + Update report years tests to use new utility + +commit 3af663b1ba5ae164bf4d8cda547017491445d86e +Author: Aaron Beavers +Date: Thu Jun 3 10:59:08 2021 -0400 + + Add utility for creating a list of reports for testing + +commit 885c4aee6ada23bace2592c241518ea7333eac8d +Merge: b5481999e ddb6feb7a +Author: Jorge Gonzalez +Date: Thu Jun 3 10:26:21 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + + # Conflicts: + # tdrs-backend/tdpservice/users/admin.py + # tdrs-backend/tdpservice/users/api/login.py + # tdrs-backend/tdpservice/users/models.py + # tdrs-backend/tdpservice/users/test/factories.py + # tdrs-frontend/src/components/EditProfile/EditProfile.test.js + +commit 94b0e82723a4905df6ccb9d51a49f394f51ced93 +Merge: 416fd8102 ddb6feb7a +Author: John Willis +Date: Wed Jun 2 19:11:51 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/pytest-cov-2.12.1 + +commit 4c308a419a647bf2a5189d59926e401b7af5fe5c +Merge: f14a7e874 ddb6feb7a +Author: John Willis +Date: Wed Jun 2 19:11:29 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit f9de1bbd9dac079336298b52893ceb391b8df56d +Merge: c74b23cfb ddb6feb7a +Author: John Willis +Date: Wed Jun 2 16:41:57 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit a20de281ad694c3a770dea47fb841eeb70736e18 +Merge: 21f17a96d ddb6feb7a +Author: John Willis +Date: Wed Jun 2 16:40:12 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit ddb6feb7aa30ccced8e1ef30e2ca97168ad686b4 +Merge: b191b5ef4 7458d0ed7 +Author: John Willis +Date: Wed Jun 2 16:38:31 2021 -0400 + + Merge pull request #916 from raft-tech/fix/858-part-2 + + Issue 858: Upload functionality improvements + +commit 7458d0ed7426e71c23e0ec7e230ee15f21e58d7e +Merge: 6a28a703f b191b5ef4 +Author: Jorge Gonzalez +Date: Wed Jun 2 16:25:22 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit 21f17a96d819d8e2e5b448493c13326c3e5f224b +Merge: c8fa81b10 b191b5ef4 +Author: John Willis +Date: Wed Jun 2 15:21:49 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit b191b5ef440cff1bece7979ef7e31aae3bd40f60 +Merge: f47c6c28c 5e9967c07 +Author: John Willis +Date: Wed Jun 2 15:14:45 2021 -0400 + + Merge pull request #894 from raft-tech/feat/374-uuids + + Issue 374: Capture UUID during login.gov setup + +commit b5481999e77d3dc11cb463464fac6fc909d28f63 +Author: Jorge Gonzalez +Date: Wed Jun 2 13:56:21 2021 -0400 + + Deactivated + +commit f488a97ddf735e3914ceafc49dd74c05265973a0 +Merge: 20e4d0439 f47c6c28c +Author: Jorge Gonzalez +Date: Wed Jun 2 13:42:57 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 6a28a703fc476a75328d63faae1c89a8a1a6d870 +Merge: 0c43e1da1 f47c6c28c +Author: John Willis +Date: Wed Jun 2 13:31:56 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit 5e9967c07b950761e8fbe6f032b3fcec4fdc8c6e +Merge: 8f235f362 f47c6c28c +Author: John Willis +Date: Wed Jun 2 11:48:36 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit f47c6c28cb4050fa244550ac4cdce22b61d79252 +Merge: 04c70a6a5 110f2964b +Author: John Willis +Date: Wed Jun 2 11:48:22 2021 -0400 + + Merge pull request #986 from raft-tech/hotfix/pyjwt-decode-change + + Hotfix: Resolve breaking change in PyJWT upgrade + +commit 20e4d0439936a50f602f0f3b836989a5f8d9535a +Author: Jorge Gonzalez +Date: Wed Jun 2 10:41:32 2021 -0400 + + Update tdrs-backend/tdpservice/users/api/authorization_check.py + +commit dac194bba852890e3837880eca26150db26ed82a +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Jun 2 09:22:40 2021 -0500 + + Update Roadmap-and-Backlog.md + +commit 416fd8102fa707eba1056edeb04e1f84f16061b3 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Wed Jun 2 06:52:47 2021 +0000 + + Bump pytest-cov from 2.12.0 to 2.12.1 in /tdrs-backend + + Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.12.0 to 2.12.1. + - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) + - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) + - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v2.12.0...v2.12.1) + + --- + updated-dependencies: + - dependency-name: pytest-cov + dependency-type: direct:development + update-type: version-update:semver-patch + ... + + Signed-off-by: dependabot[bot] + +commit c74b23cfbadcc741932f5bb91494cf280aa02f4e +Merge: 94553be06 04c70a6a5 +Author: John Willis +Date: Tue Jun 1 17:44:53 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 0c43e1da1fb02e936dfb6339d7dfaf6eb55684fd +Merge: dbedeffc4 04c70a6a5 +Author: John Willis +Date: Tue Jun 1 15:43:47 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit f14a7e874de9ca0593a44f2a9f34d90a844af2da +Merge: d20e8d35a 04c70a6a5 +Author: John Willis +Date: Tue Jun 1 15:40:58 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit 110f2964b8a5ca3a3334d728a2b078f17f668103 +Author: John Willis +Date: Tue Jun 1 14:52:35 2021 -0400 + + Fix linter errors + +commit 86bae562066670d9ed6865a21fd5612da17911b4 +Author: John Willis +Date: Tue Jun 1 14:38:20 2021 -0400 + + Hotfix: Resolve breaking change in PyJWT upgrade + +commit cbabf0e63c0e75125183980d0f94472acc2b07a8 +Author: Jorge Gonzalez +Date: Tue Jun 1 11:32:54 2021 -0400 + + Minor fixes + +commit 78f78b4b9e692befe6395e668e00c86095a61829 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 12:29:19 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 931adf7a7be600bbd558cb90c6642fa6d8cfdd4f +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 12:27:05 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 3a3823781f69e4d1c19793e34ff3a115af72a805 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 12:23:13 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 3217ad312ce9027a3fa7c0599b846cd7c0125b0c +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 11:04:34 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 94634e597602491934f186458ea07622e60ed255 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 11:02:25 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 22ace1e3c7a1c85998b4b5e7701b09dc73dd2ad4 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:58:21 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 60167b32af844b8d8ca19b2e825398cd60276883 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:52:47 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 4231e7d0d45e9987f0a2eaf0cee01a76d836c0a2 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:45:09 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 15ba06df4b0d7ec98a75b76b8cd6d78f9ba3a844 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:43:32 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit ebc7aa5cf700472de8fed60a22f84e134a222043 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:41:03 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 5a8c6d91cf87ddf7333b0a3d8230fbd45ee7dbaf +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:34:36 2021 -0400 + + Update docs/How-We-Work/Secrey-Key-Mgmt.md + +commit 89795ee80abc82157670f067330d92ea20a7fb4f +Author: Jorge Gonzalez +Date: Tue Jun 1 10:19:38 2021 -0400 + + Lint + +commit 5118c3807123f07a02cd25c23bdf0a454e624a06 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Tue Jun 1 10:24:13 2021 -0400 + + secret key prevention doc + +commit eb9707b8276d3e16aaee5881e42bb8e78d8cba7d +Author: Jorge Gonzalez +Date: Tue Jun 1 10:05:14 2021 -0400 + + Add test for inactive account auth check + +commit 5aa740f8064c7ce1cb6e72de7ceb080231f9cb03 +Merge: 9205bad24 04c70a6a5 +Author: John Willis +Date: Fri May 28 16:26:09 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 38895be2b62193de41f8b12f40bfeb8eba861fd4 +Merge: 90b730dc1 04c70a6a5 +Author: Aaron Beavers +Date: Fri May 28 16:18:33 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/643/list-years + +commit fd9193c37a8be6ea20de72e818640ffa31b90aa1 +Merge: b327fa6d9 04c70a6a5 +Author: Jorge Gonzalez +Date: Fri May 28 10:27:00 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 8f235f362de8fee376557d8c449778b295eed306 +Merge: cadefb38b 04c70a6a5 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri May 28 08:24:06 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit 04c70a6a5b5637d0dca16ec093745d0b9c00e81e +Merge: ddec308f3 753c77509 +Author: John Willis +Date: Thu May 27 13:32:56 2021 -0400 + + Merge pull request #933 from raft-tech/dependabot/pip/tdrs-backend/pyjwt-2.1.0 + + Bump pyjwt from 1.7.1 to 2.1.0 in /tdrs-backend + +commit 753c7750936066b4ef2b07a8449da52fd4e394df +Merge: 17b1fa721 ddec308f3 +Author: John Willis +Date: Thu May 27 12:55:40 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/pyjwt-2.1.0 + +commit ddec308f37c42098a366c25fc6b7502d7ad64964 +Merge: f27773507 c2a5e3baa +Author: John Willis +Date: Thu May 27 12:55:15 2021 -0400 + + Merge pull request #918 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 + + Bump eslint-plugin-cypress from 2.11.2 to 2.11.3 in /tdrs-frontend + +commit c2a5e3baa1087f2d2d71ef4d9140cc4e7edd39a8 +Merge: 238ec8b35 f27773507 +Author: John Willis +Date: Thu May 27 12:09:45 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 + +commit f277735079065fafe47471a2750601cd5bd4ab4a +Merge: 65263bd58 9f7a3bdbc +Author: John Willis +Date: Thu May 27 12:08:59 2021 -0400 + + Merge pull request #905 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 + + [Security] Bump hosted-git-info from 2.8.8 to 2.8.9 in /tdrs-frontend + +commit 9f7a3bdbce5710690db1a446e0facc1e92442a11 +Merge: 254acd528 65263bd58 +Author: John Willis +Date: Thu May 27 10:32:50 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 + +commit 65263bd58d1e3e05df1cf2cd7fe1d78b9bdba0d0 +Merge: 0d85b5410 2e3a124f9 +Author: John Willis +Date: Thu May 27 10:26:59 2021 -0400 + + Merge pull request #920 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 + + Bump eslint-config-prettier from 6.15.0 to 8.3.0 in /tdrs-frontend + +commit 2e3a124f906cbd8bd8238fa140a63f53f5a28bf4 +Merge: 23ced5cdd 0d85b5410 +Author: John Willis +Date: Wed May 26 17:35:37 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 + +commit cadefb38bc34de1f65592e1a3aff988ffb871528 +Merge: 3d0853ddc 0d85b5410 +Author: Jorge Gonzalez +Date: Wed May 26 17:15:49 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit dbedeffc4a0b240efb6a85881e0d3fdbd42c4f02 +Merge: 94eaf757a 0d85b5410 +Author: Jorge Gonzalez +Date: Wed May 26 17:15:47 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit 9205bad2430162d68c5a2363ce0fcbd05af2d4ec +Author: John Willis +Date: Wed May 26 13:44:40 2021 -0400 + + Tabs vs spaces - zap.conf requires tab delimiting + +commit 813ee7cee6c91d7b5812f3a61fac09d7347a4f8e +Author: Aaron Beavers +Date: Wed May 26 13:14:24 2021 -0400 + + adjust backend spacing + +commit 4372e771798d3fa02da7b60ad75327348d29a323 +Author: Aaron Beavers +Date: Wed May 26 11:42:33 2021 -0400 + + Update zapscan + +commit c8fa81b1000ba5aaef0a438e2b02d4b87ba19880 +Author: John Willis +Date: Tue May 25 18:10:18 2021 -0400 + + Fix linter errors + +commit 97f2ffd2dd2b883049ffdf603f638afad0360872 +Merge: 73f9491cd 0d85b5410 +Author: John Willis +Date: Tue May 25 17:51:43 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 17b1fa721700eb802a11acda3b4dab74fd6f3fac +Merge: f0bb70aec 0d85b5410 +Author: John Willis +Date: Tue May 25 17:20:16 2021 -0400 + + Merged in raft-tdp-main, fixed conflicts & removed now broken decode call on the return from jwt.encode + +commit 0d85b5410e67e93cc2942351e170dbbc153f1cb8 +Merge: 0a1eacb43 edb369796 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Tue May 25 20:54:01 2021 +0000 + + Merge pull request #934 from raft-tech/dependabot/pip/tdrs-backend/django-storages-1.11.1 + +commit edb369796d736a3bba2ba30c7d41ed1b1e535043 +Merge: c51cb84ee 0a1eacb43 +Author: John Willis +Date: Tue May 25 16:41:30 2021 -0400 + + Merged in raft-tdp-main, fixed conflicts + +commit 0a1eacb43e6a2fe6b9d848c398639ca643393060 +Merge: 10c2e02fb 2e59246e3 +Author: John Willis +Date: Tue May 25 16:36:58 2021 -0400 + + Merge pull request #936 from raft-tech/dependabot/pip/tdrs-backend/django-cors-headers-3.7.0 + + Bump django-cors-headers from 3.6.0 to 3.7.0 in /tdrs-backend + +commit 2e59246e3ec2da7dd41fd18bced57aca3bde80ed +Merge: 72b4a269f 10c2e02fb +Author: John Willis +Date: Tue May 25 14:25:05 2021 -0400 + + Merged in raft-tdp-main, fixed conflicts + +commit 10c2e02fb7930f537d0b871c364686cb3b076a4d +Merge: 2b92a41ae d862bb041 +Author: John Willis +Date: Tue May 25 12:50:52 2021 -0400 + + Merge pull request #945 from raft-tech/dependabot/pip/tdrs-backend/cryptography-3.4.7 + + Bump cryptography from 3.3.2 to 3.4.7 in /tdrs-backend + +commit b327fa6d97cfe9e17441cb81333c16892e82ee6f +Merge: fcec39cab 2b92a41ae +Author: Jorge Gonzalez +Date: Tue May 25 12:07:40 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit d862bb041678827fd4c78359b87eb22988ac7f2e +Author: John Willis +Date: Tue May 25 12:07:19 2021 -0400 + + Updated Pipfile.lock + +commit 38a1a5363a725f976e3460c19f34bde28e8ba6da +Author: Aaron Beavers +Date: Tue May 25 12:05:24 2021 -0400 + + Use single equal + +commit b08282990d7f7e1c93156e36545ebecd542603b2 +Merge: cf649521b 2b92a41ae +Author: John Willis +Date: Tue May 25 12:05:05 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/cryptography-3.4.7 + +commit 2b92a41ae6803d496e08530d592007a9055dab4d +Merge: b3c1ffb78 4788c6990 +Author: John Willis +Date: Tue May 25 12:03:57 2021 -0400 + + Merge pull request #956 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/concurrently-6.2.0 + + Bump concurrently from 6.0.0 to 6.2.0 in /tdrs-frontend + +commit d684cbd28235f513db014261f7dcb819846e1739 +Author: Aaron Beavers +Date: Tue May 25 11:52:08 2021 -0400 + + Update zap scans to run with config file in CI + +commit fcec39cab1c2bbc4827c291c8b51e0fe5cad808f +Author: Jorge Gonzalez +Date: Tue May 25 11:29:20 2021 -0400 + + Tweak test + +commit 72c9fe580842328dcb423ec8ee0859ed35b729c0 +Merge: f4acaf8e5 b3c1ffb78 +Author: Jorge Gonzalez +Date: Tue May 25 11:18:58 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit f4acaf8e5cb76fb5f9f14da879ec1cc884020425 +Author: Jorge Gonzalez +Date: Mon May 24 18:12:59 2021 -0400 + + Remove inactive field from serializer + +commit 4788c699028a8346a07e108da09011491c57560b +Merge: 33a9adab2 b3c1ffb78 +Author: John Willis +Date: Tue May 25 10:41:06 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/concurrently-6.2.0 + +commit b3c1ffb78ffb2ea24f38dff8c15aa4a52d09c12e +Merge: bfb24428f 94510d1d4 +Author: John Willis +Date: Tue May 25 10:25:55 2021 -0400 + + Merge pull request #959 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/boto3-1.17.79 + + Bump boto3 from 1.16.63 to 1.17.79 in /tdrs-backend + +commit 72b4a269f5865b4cd551b094f6c718daf454f8d3 +Merge: 23c5593d6 bfb24428f +Author: John Willis +Date: Mon May 24 18:32:30 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/django-cors-headers-3.7.0 + +commit 238ec8b35ca90a8af45b274dad69d1e71885f95a +Merge: e243ba68e bfb24428f +Author: John Willis +Date: Mon May 24 18:29:23 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 + +commit 254acd528ee4ed20e693deecb4ede96c156a8b13 +Merge: 5aef27af3 bfb24428f +Author: John Willis +Date: Mon May 24 18:28:35 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 + +commit 73f9491cd150a2ea9ee0a27fd412eca9103cde6d +Author: John Willis +Date: Mon May 24 18:21:42 2021 -0400 + + Test adding linting step first to give more time to localstack setup + +commit cf649521b1debb46779a317a572847490ca4dced +Merge: ceb68ed3a bfb24428f +Author: John Willis +Date: Mon May 24 18:08:59 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/cryptography-3.4.7 + +commit 33a9adab26a9712e1e6e54643818bc4a32d2209f +Merge: 1f141bb12 bfb24428f +Author: John Willis +Date: Mon May 24 18:04:02 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/concurrently-6.2.0 + +commit 94553be064bf9f4053d8c26e83ac2babd02b0791 +Merge: e7c5afc50 bfb24428f +Author: John Willis +Date: Mon May 24 18:01:34 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 41a3010e6c48ab1fb2ec97eb412c0dc1602f23ed +Merge: 434b8e311 bfb24428f +Author: Jorge Gonzalez +Date: Mon May 24 17:57:43 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 23ced5cdd1c35fbaa1dff0fa1b7e6691a1d75f42 +Merge: 36e9294ae bfb24428f +Author: Jorge Gonzalez +Date: Mon May 24 17:56:19 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 + +commit 94eaf757af940c47d1af76533e63a03a67eb8407 +Merge: f9d465f86 bfb24428f +Author: Jorge Gonzalez +Date: Mon May 24 17:55:21 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit 3d0853ddc451fb496853a19a383d8cccdf558c48 +Merge: c11d2987a bfb24428f +Author: Jorge Gonzalez +Date: Mon May 24 17:54:44 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit 434b8e311f01d9bc996f3422782f11219fc923a9 +Author: Jorge Gonzalez +Date: Mon May 24 17:53:54 2021 -0400 + + Address frontend tests + +commit 94510d1d49435885ff95a02ea4117739c6c82a33 +Merge: 13fdd69b8 bfb24428f +Author: John Willis +Date: Mon May 24 17:51:55 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/boto3-1.17.79 + +commit 0ab1ddd57667afba639cf5176869802adca18a1f +Author: John Willis +Date: Mon May 24 17:50:05 2021 -0400 + + Increased timeout for wait-for-services.sh to account for longer startup times for clamav and localstack in CI + +commit c51cb84eeb17021bac47dbf8f2eda849174f19e5 +Merge: eee2ef210 bfb24428f +Author: John Willis +Date: Mon May 24 17:39:37 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/django-storages-1.11.1 + +commit 6421355442b2ee4eea806373d8badf59119b53d8 +Author: John Willis +Date: Mon May 24 17:02:43 2021 -0400 + + Fix localstack settings + +commit 7c035bdc9d75f399a4e461ea34a0a4df41e6de78 +Author: John Willis +Date: Mon May 24 16:40:29 2021 -0400 + + Added missing environment variables to base docker compose for CI + +commit a73b2b676882ae5741a77d3c90a7bd00ef3862fd +Merge: 4a6cefc94 bfb24428f +Author: John Willis +Date: Mon May 24 16:16:15 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit bfb24428f15fa5ee6ac77b0e34381ad8b5998ad8 +Merge: 55b0b3eb4 4b6b78c02 +Author: John Willis +Date: Mon May 24 16:04:21 2021 -0400 + + Merge pull request #955 from raft-tech/make-round-5-research-md + + Rename 2021, Spring - Tribal MVP (Release 2) Design Sprint to 2021, S… + +commit 13fdd69b802731ec566ff7f620c2b6b8396424c5 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 24 19:54:05 2021 +0000 + + Bump boto3 from 1.16.63 to 1.17.79 in /tdrs-backend + + Bumps [boto3](https://github.com/boto/boto3) from 1.16.63 to 1.17.79. + - [Release notes](https://github.com/boto/boto3/releases) + - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) + - [Commits](https://github.com/boto/boto3/compare/1.16.63...1.17.79) + + Signed-off-by: dependabot[bot] + +commit 319fd970049ba47225681430cfa989809913ba4d +Author: Jorge Gonzalez +Date: Mon May 24 15:51:17 2021 -0400 + + Whitespace + +commit 4a6cefc945cd9449c425e7559cef556fe9aac8d3 +Merge: 4cfb9154e 55b0b3eb4 +Author: John Willis +Date: Mon May 24 15:51:16 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 4b6b78c02cfc7e6f1f3d8ff4a389555b17ed3ffe +Merge: efdfd16e4 55b0b3eb4 +Author: John Willis +Date: Mon May 24 15:49:01 2021 -0400 + + Merge branch 'raft-tdp-main' into make-round-5-research-md + +commit 233951e9bbdb8d7f8f2fffc4decee4f79ff2c31d +Merge: 02c8afc12 55b0b3eb4 +Author: Jorge Gonzalez +Date: Mon May 24 15:48:53 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/829-inactive-user + +commit 55b0b3eb4f3fae87ad9a4d22882778079b5b5050 +Merge: b0dec4ebf e26c935a1 +Author: John Willis +Date: Mon May 24 15:48:41 2021 -0400 + + Merge pull request #944 from raft-tech/issues/932-dependabot-config + + Issue 932: Prevent Dependabot version updates from running on HHS:main + +commit 02c8afc121f9bb5e491ff32ae2d22d9060f58c64 +Author: Jorge Gonzalez +Date: Mon May 24 15:47:39 2021 -0400 + + Check for inactive users during auth_check + +commit e26c935a1157584c783488e4fef5d1da3fd04cd4 +Author: John Willis +Date: Mon May 24 15:18:00 2021 -0400 + + Update docs/Architecture Decision Record/016-dependabot-dependency-management.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 6fea73e92c8915308e19ac8e575fc8c264cedab0 +Author: John Willis +Date: Mon May 24 15:16:03 2021 -0400 + + Added ADR for Dependabot migration + +commit 4cfb9154eda57d23fd6f5ff54ab36503e74de2a4 +Author: John Willis +Date: Mon May 24 15:07:39 2021 -0400 + + Fixed test and added separate storage class for S3 Data Files + +commit 68fc275070147e49ddbf7af7f1686c7c6765ef41 +Merge: 8dba240cf b0dec4ebf +Author: John Willis +Date: Mon May 24 15:04:37 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/932-dependabot-config + +commit efdfd16e43b891f4149ba42ac4629839b7ec706c +Merge: 20fcefcc8 b0dec4ebf +Author: John Willis +Date: Mon May 24 15:00:40 2021 -0400 + + Merge branch 'raft-tdp-main' into make-round-5-research-md + +commit 1f141bb1250ab1e1e5564fccd428aa2d970cfb2e +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 24 18:42:19 2021 +0000 + + Bump concurrently from 6.0.0 to 6.2.0 in /tdrs-frontend + + Bumps [concurrently](https://github.com/kimmobrunfeldt/concurrently) from 6.0.0 to 6.2.0. + - [Release notes](https://github.com/kimmobrunfeldt/concurrently/releases) + - [Commits](https://github.com/kimmobrunfeldt/concurrently/compare/v6.0.0...v6.2.0) + + Signed-off-by: dependabot[bot] + +commit 23c5593d66445f765fad3d03fd8589282a67d207 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 24 18:41:47 2021 +0000 + + Bump django-cors-headers from 3.6.0 to 3.7.0 in /tdrs-backend + + Bumps [django-cors-headers](https://github.com/adamchainz/django-cors-headers) from 3.6.0 to 3.7.0. + - [Release notes](https://github.com/adamchainz/django-cors-headers/releases) + - [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/HISTORY.rst) + - [Commits](https://github.com/adamchainz/django-cors-headers/compare/3.6.0...3.7.0) + + Signed-off-by: dependabot[bot] + +commit eee2ef21078e97efc29873cd77074e474986c12b +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 24 18:41:43 2021 +0000 + + Bump django-storages from 1.10.1 to 1.11.1 in /tdrs-backend + + Bumps [django-storages](https://github.com/jschneier/django-storages) from 1.10.1 to 1.11.1. + - [Release notes](https://github.com/jschneier/django-storages/releases) + - [Changelog](https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst) + - [Commits](https://github.com/jschneier/django-storages/compare/1.10.1...1.11.1) + + Signed-off-by: dependabot[bot] + +commit ceb68ed3a00926c170248a38b833eb04dee44973 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 24 18:41:37 2021 +0000 + + Bump cryptography from 3.3.2 to 3.4.7 in /tdrs-backend + + Bumps [cryptography](https://github.com/pyca/cryptography) from 3.3.2 to 3.4.7. + - [Release notes](https://github.com/pyca/cryptography/releases) + - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) + - [Commits](https://github.com/pyca/cryptography/compare/3.3.2...3.4.7) + + Signed-off-by: dependabot[bot] + +commit b0dec4ebfcea027f403015ebb44de3b5cc6281a7 +Merge: b5ee0e063 46453aeb9 +Author: John Willis +Date: Mon May 24 14:36:05 2021 -0400 + + Merge pull request #922 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 + + Bump @testing-library/react from 11.2.6 to 11.2.7 in /tdrs-frontend + +commit 46453aeb9d6f37c519c35517e2a09adb8d733e2d +Merge: 3b8987b31 b5ee0e063 +Author: John Willis +Date: Mon May 24 14:05:39 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 + +commit b5ee0e063fa94fa7ac6a204051569a9b6d74cf77 +Merge: a2d8cc96b 8ff5a5898 +Author: John Willis +Date: Mon May 24 14:04:24 2021 -0400 + + Merge pull request #926 from raft-tech/frontend/925-remove-testing-library-user-event + + [Dependencies] Remove @testing-library/user-event + +commit 90b730dc1a383635c58bcc33df4600d19a23ac1e +Merge: 32d6e55c6 a2d8cc96b +Author: John Willis +Date: Mon May 24 14:03:25 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 4cfc5596085a5360b42e2050ac861ab72a08d891 +Author: Aaron Beavers +Date: Mon May 24 13:56:18 2021 -0400 + + Add fi + +commit 20fcefcc892769edaa148ab8be6ffc10ac78ce71 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon May 24 13:52:10 2021 -0400 + + Rename 2021, Spring - Tribal MVP (Release 2) Design Sprint to 2021, Spring - Tribal MVP (Release 2) Design Sprint.md + +commit 8ff5a58985c0e1fb686e9928aabc3b72632dd3df +Merge: 457be9ba3 a2d8cc96b +Author: Jorge Gonzalez +Date: Mon May 24 12:35:50 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/925-remove-testing-library-user-event + +commit ecfa13db7cf7baa69c6f0aacdf4f8d97ca1093ba +Merge: 0c9e7661b a2d8cc96b +Author: Jorge Gonzalez +Date: Mon May 24 12:02:01 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/829-inactive-user + +commit 3b8987b31cacc6e20d0e9cd04e21c39ec60bf71e +Merge: 2ced4477a a2d8cc96b +Author: Jorge Gonzalez +Date: Mon May 24 11:49:52 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 + +commit 38fd5517332546163e739ed76626556484e9f22d +Merge: 846fd1b4f a2d8cc96b +Author: Aaron Beavers +Date: Mon May 24 11:43:25 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives + +commit 846fd1b4f336c61e3ffeb379645aeaef97e039fe +Author: Aaron Beavers +Date: Mon May 24 11:43:05 2021 -0400 + + Update zap syntax + +commit d20e8d35a098abf25720aee555b6c4ef198895c3 +Author: Aaron Beavers +Date: Fri May 21 10:57:20 2021 -0400 + + Update buildpacks nginx file + +commit c11d2987aa7bd82a97ce35c5169921730d1500f3 +Author: Jorge Gonzalez +Date: Fri May 21 09:31:12 2021 -0400 + + Add new field to django admin + +commit 8dba240cfe1a89017eb3465289b81c430283c90a +Author: John Willis +Date: Thu May 20 18:55:29 2021 -0400 + + Issue 932: Prevent Dependabot version updates from running on HHS:main + +commit 1ece9df8c21adf1ef22f97159b5371133887fcf4 +Merge: ed714347b a2d8cc96b +Author: John Willis +Date: Thu May 20 18:49:21 2021 -0400 + + Merged in raft-tdp-main, fixed conflicts + +commit f0bb70aecf3fec01a6c1561b49596f2b73ecaa61 +Merge: 48da83d39 a2d8cc96b +Author: John Willis +Date: Thu May 20 18:37:30 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/pyjwt-2.1.0 + +commit fa023161d3e43fa1a1b764a6835d8cf6c72bfecb +Merge: 0cef701fa a2d8cc96b +Author: Jorge Gonzalez +Date: Thu May 20 18:03:28 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit a724d4c6818dc90d825744ae88cd6f0f1191e19a +Merge: c3b3820f9 a2d8cc96b +Author: John Willis +Date: Thu May 20 17:50:54 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit a2d8cc96bcff10f015dde560e6e2f0a476ee28d5 +Merge: 1b4937d1d 450fead5e +Author: John Willis +Date: Thu May 20 17:49:34 2021 -0400 + + Merge pull request #881 from raft-tech/devops/844-buildpacks-ci-deploy + + Buildpacks CI/CD Implementation + +commit 0c9e7661b2322cc3355b60256dbbe9e0d4f0457b +Merge: b89651adb 1b4937d1d +Author: Jorge Gonzalez +Date: Thu May 20 16:38:12 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/829-inactive-user + +commit b89651adb69073639a0d02cb9b9addb4aa7070c6 +Author: Jorge Gonzalez +Date: Thu May 20 16:10:10 2021 -0400 + + Add new inactive_account field, separate from the django is_active + +commit 450fead5ebea6c9ebd76fb85d11ef2b32c708841 +Author: John Willis +Date: Thu May 20 16:11:17 2021 -0400 + + Removed reference to .env.production and added instructions to retrieve environment variables to the README + +commit ba442b158e3b3bf7d36e1e11c1ce4ba32306695b +Author: Aaron Beavers +Date: Thu May 20 15:27:44 2021 -0400 + + Update frontend zap scanner to only run in CI + +commit 6ed418a339e9f15221cdcce84418b7322d093e5d +Author: Aaron Beavers +Date: Thu May 20 15:27:11 2021 -0400 + + Update backend zap scanner to use config file + +commit 597dedb5fd956caea91bade66747758f4676007b +Author: Aaron Beavers +Date: Thu May 20 15:26:51 2021 -0400 + + Add backend zaproxy configs + +commit 9fc0afaa2c36928de324e1afeb0239822bc40a6f +Author: Aaron Beavers +Date: Thu May 20 13:44:06 2021 -0400 + + Update zap conf formatting + +commit 2aa5fa6f8560b6968b17c91283904f52cd916988 +Author: Aaron Beavers +Date: Thu May 20 13:29:56 2021 -0400 + + Add zap frontend config to ignore false positives + +commit b7683943abbb5f013368aa4985cc9156865f9635 +Merge: 0a9138f6e 1b4937d1d +Author: John Willis +Date: Thu May 20 11:14:09 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit 1b4937d1dfeac456ef8fffca6e6c4495b94257da +Merge: c583d97e5 8286d0d11 +Author: John Willis +Date: Thu May 20 10:55:46 2021 -0400 + + Merge pull request #915 from raft-tech/documentation/round-5-synthesis + + Adds Round 5 research synthesis to code docs + +commit 48da83d39acfc57374a1c9ee3beddd9e38865650 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Thu May 20 14:20:00 2021 +0000 + + Bump pyjwt from 1.7.1 to 2.1.0 in /tdrs-backend + + Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 1.7.1 to 2.1.0. + - [Release notes](https://github.com/jpadilla/pyjwt/releases) + - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) + - [Commits](https://github.com/jpadilla/pyjwt/compare/1.7.1...2.1.0) + + Signed-off-by: dependabot[bot] + +commit 8286d0d11068739a7c9ae64cbe2c4adf75aa3721 +Merge: 243ea3ab1 c583d97e5 +Author: John Willis +Date: Thu May 20 10:16:03 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/round-5-synthesis + +commit 0a9138f6ec9e550b3e6ceae8c4f90a6393c5808b +Merge: a5933456e c583d97e5 +Author: John Willis +Date: Thu May 20 10:14:59 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit c583d97e5b45caf902ff1e33f1cb05fd81acc1c8 +Merge: f9c632db3 acf766bec +Author: John Willis +Date: Thu May 20 10:14:45 2021 -0400 + + Merge pull request #924 from raft-tech/backend/923-remove-black + + Issue 923: [Dependencies] Remove Black formatter from project + +commit a5933456ea3779192ee5aca7ae9bf728ca2cb22f +Author: John Willis +Date: Wed May 19 15:42:40 2021 -0400 + + Add missing DJANGO_CONFIGURATION variable to set-backend-env-vars.sh + +commit 0cef701fabaf7eaadb2e31639580952a2201577c +Author: Jorge Gonzalez +Date: Wed May 19 15:26:32 2021 -0400 + + lint + +commit 3b294bf107580def33eddfb19f823dab9b364550 +Author: Jorge Gonzalez +Date: Wed May 19 15:18:01 2021 -0400 + + Rename sub to login_gov_uuid + +commit f9d465f86c77de8bcef28e1ac72331fad8a697c0 +Author: Jorge Gonzalez +Date: Wed May 19 15:10:00 2021 -0400 + + Fix tests + +commit ecf0822880e624be422345bf401fb3bca101eb81 +Author: Jorge Gonzalez +Date: Wed May 19 14:50:49 2021 -0400 + + Fix issue with stale submitted form state + +commit 24bf2c6b37315302b199b8b3aac81430aed9c008 +Merge: b5d045934 f9c632db3 +Author: John Willis +Date: Wed May 19 13:58:56 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit e7c5afc50411777c9f6716e796c8f8bb53f02f3b +Merge: 16811c54a f9c632db3 +Author: John Willis +Date: Tue May 18 16:25:25 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit bd7eab980724b0af9d046cc1530e14fd15431137 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue May 18 15:48:01 2021 -0400 + + Update user_role_management.md + +commit ac62832e35c047031c2d93cce07fe002a6d027ab +Author: Jorge Gonzalez +Date: Tue May 18 13:49:03 2021 -0400 + + Add inactive banner and auth state + +commit 92b4f3ef43ba6814775ee8cc70360a0fa449b465 +Author: Jorge Gonzalez +Date: Tue May 18 12:05:49 2021 -0400 + + Add is_active to User serializer and auth action + +commit 32d6e55c68b5a65a7496f40f30bf3aa90be61857 +Merge: ff60ddbdc f9c632db3 +Author: John Willis +Date: Tue May 18 12:05:46 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 231cfe1f3252590e61a07f2e905003e9ea4c4ebc +Merge: 0f6fc78a5 f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 10:47:14 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit 457be9ba37cd8a61b6c2941f3694abdb80db8494 +Author: John Willis +Date: Tue May 18 10:22:27 2021 -0400 + + [Dependencies] Remove @testing-library/user-event + +commit c3b3820f97c3687a986f7560dd6312e4b3f844da +Merge: aee283b36 f9c632db3 +Author: John Willis +Date: Tue May 18 09:55:16 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit 5aef27af30f12703093222f8fc8ac0354964f418 +Merge: a09c67e62 f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 09:53:19 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 + +commit 36e9294ae22d5a106ad36ff929a41eb1a2d4a92c +Merge: 8befec363 f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 09:52:49 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 + +commit e243ba68ed776b09be7207e992a1f4c8c55e7f2b +Merge: 27e550e8d f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 09:51:29 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 + +commit 2ced4477a0fda7fa126123399de979b5f4114a29 +Merge: 30bb30757 f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 09:48:40 2021 -0400 + + Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 + +commit 6d6c94ef97e0568a80a2bf8aa70755648f6771e1 +Author: Jorge Gonzalez +Date: Tue May 18 09:37:01 2021 -0400 + + Fix tests + +commit fbf295ba6d5c3c1ae4cbefd7dfe1bdcc1eea1773 +Merge: a5fadd5b2 f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 09:27:38 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit acf766bec0b7e00d4e3930da15df112418d8ed24 +Merge: b922ed8ad f9c632db3 +Author: Jorge Gonzalez +Date: Tue May 18 09:19:24 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/923-remove-black + +commit f9c632db36ae7663660c05223476ea0be398b6c6 +Merge: 6e3862dac f48f7edd7 +Author: John Willis +Date: Mon May 17 17:45:39 2021 -0400 + + Merge pull request #912 from raft-tech/fix/858 + + Issue 858 (PR 1): Hotfix issue with file input header + +commit f48f7edd7c260ea374e818b24060eb50646944bb +Merge: a4a8b2ed1 6e3862dac +Author: John Willis +Date: Mon May 17 17:30:17 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858 + +commit b922ed8ade73c5a31bb336d188471ad59a818b22 +Author: John Willis +Date: Mon May 17 17:20:40 2021 -0400 + + Removed black and ptpython from project dependencies + +commit ed714347ba14ceb344465d77141692260d922431 +Author: John Willis +Date: Mon May 17 16:24:44 2021 -0400 + + Ensure that data files are stored in a distinct bucket from Django Admin static files in production environments + +commit 30bb3075723b9c6916a3e0961ddab7ff5ecd307f +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 17 19:57:38 2021 +0000 + + Bump @testing-library/react from 11.2.6 to 11.2.7 in /tdrs-frontend + + Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.6 to 11.2.7. + - [Release notes](https://github.com/testing-library/react-testing-library/releases) + - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) + - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.6...v11.2.7) + + Signed-off-by: dependabot[bot] + +commit 8befec363b3b270dabc1461ed6e5d0e063be8185 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 17 19:57:05 2021 +0000 + + Bump eslint-config-prettier from 6.15.0 to 8.3.0 in /tdrs-frontend + + Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.15.0 to 8.3.0. + - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) + - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) + - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v6.15.0...v8.3.0) + + Signed-off-by: dependabot[bot] + +commit 27e550e8d30889a6d5000955030b3ee97dabd697 +Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Date: Mon May 17 19:56:34 2021 +0000 + + Bump eslint-plugin-cypress from 2.11.2 to 2.11.3 in /tdrs-frontend + + Bumps [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) from 2.11.2 to 2.11.3. + - [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases) + - [Commits](https://github.com/cypress-io/eslint-plugin-cypress/compare/v2.11.2...v2.11.3) + + Signed-off-by: dependabot[bot] + +commit 6e3862dac3a750957021ceb28242686340c1e0d9 +Merge: bebb093f6 9480bd565 +Author: John Willis +Date: Mon May 17 15:49:32 2021 -0400 + + Merge pull request #917 from raft-tech/add-github-native-dependabot + + Migrate to GitHub Native Dependabot + +commit 9480bd5657496b2b23e6d085d6de45b96a1b07c6 +Author: John Willis +Date: Mon May 17 15:22:04 2021 -0400 + + Update tdrs-backend/docs/github_readme_status_badges.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit b5d0459344263a9bbd969bd6f5ee658b89432e7c +Author: John Willis +Date: Fri May 14 19:46:21 2021 -0400 + + Fixed variable references that weren't updated and add missing DJANGO_SETTINGS_MODULE environment variable + +commit 5bdee4d8e497c2892219e393de2f7a70f00bd6ec +Merge: 0c07c26df bebb093f6 +Author: John Willis +Date: Fri May 14 19:37:48 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit f0bbb5860bb84f0a5003e947ff5920793073b73b +Merge: 27f81a7e6 bebb093f6 +Author: John Willis +Date: Fri May 14 19:19:02 2021 -0400 + + Merged in raft-tdp-main, fixed conflicts + +commit 329af91a53f394197f28b8df1b5edf81b1513fe7 +Author: John Willis +Date: Fri May 14 18:54:08 2021 -0400 + + Update all documentation to reflect usage of Dependabot instead of Snyk, remove snyk from packages installed for the frontend + +commit aee283b363e70696cdac26c0a3566d04c2d09b37 +Merge: 58f59733d bebb093f6 +Author: Jorge Gonzalez +Date: Fri May 14 16:46:51 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit ff60ddbdc5828630fefe36e50243f3d9a712de64 +Merge: 0d67cd5a0 bebb093f6 +Author: Jorge Gonzalez +Date: Fri May 14 16:46:41 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 0f6fc78a5dc820692fcdd5010e18d2474c85fd51 +Merge: dd5920d07 bebb093f6 +Author: Jorge Gonzalez +Date: Fri May 14 16:46:27 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit a5fadd5b298e56ca00c1edffedbbf91aeffe1cc5 +Author: Jorge Gonzalez +Date: Fri May 14 16:38:44 2021 -0400 + + Remove log + +commit b526fac5cefb3d1a2b4e4c0e6e52d099bc8f26e0 +Merge: 14de95553 a4a8b2ed1 +Author: Jorge Gonzalez +Date: Fri May 14 16:37:22 2021 -0400 + + Merge branch 'fix/858' into fix/858-part-2 + +commit 14de9555331cc6c0f1b6a8981b2eef05c5f1181c +Merge: 6599c9110 bebb093f6 +Author: Jorge Gonzalez +Date: Fri May 14 16:36:01 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858-part-2 + +commit a4a8b2ed11f0b3a2852679f2d78327cfaaf68105 +Merge: 7a04eeecc bebb093f6 +Author: Jorge Gonzalez +Date: Fri May 14 16:31:58 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858 + +commit 6599c9110a0ed1e198200cce4fc4da172871c368 +Author: Jorge Gonzalez +Date: Fri May 14 16:29:10 2021 -0400 + + On error state, shift focus to error summary whenever "Search" is clicked + +commit af941e1357cc4c5da6ced83baf2cc272cc36f37f +Author: John Willis +Date: Fri May 14 16:01:28 2021 -0400 + + Migrate to GitHub Native Dependabot + + https://github.blog/2021-04-29-goodbye-dependabot-preview-hello-dependabot/ + +commit 2671e002d4c5d5345d01b488944b96be2cdb0783 +Author: Jorge Gonzalez +Date: Fri May 14 15:43:49 2021 -0400 + + Prevent file input section from changing until search is clicked + +commit a09c67e620cec44fb6afc8677a3416b36f2408b9 +Author: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> +Date: Fri May 14 19:43:55 2021 +0000 + + [Security] Bump hosted-git-info from 2.8.8 to 2.8.9 in /tdrs-frontend + + Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. **This update includes a security fix.** + - [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) + + Signed-off-by: dependabot-preview[bot] + +commit bebb093f6e953b7b4954a5da54b2f0080725d5cf +Merge: 9e2555697 6d5bc0166 +Author: Carl Smith +Date: Fri May 14 15:42:28 2021 -0400 + + Merge pull request #860 from raft-tech/feat/762-logging-uploads + + Issue 762: Logging upload activity + +commit 48d0d0544b574180a442ec61809af4b0b2d2de10 +Author: Jorge Gonzalez +Date: Fri May 14 15:19:10 2021 -0400 + + Fix STT Combobox selection on the Profile page + +commit f8898cf25dc80017c89034fefce66c00e5ca7ec4 +Author: Jorge Gonzalez +Date: Fri May 14 15:08:48 2021 -0400 + + Add missing stt error message + +commit c1a02c40cf11b5f78eef0e3f102cb1c9bbcaaad5 +Author: Jorge Gonzalez +Date: Thu May 13 16:36:52 2021 -0400 + + Remove unneeded sttlist call + +commit 243ea3ab1b7fa46ae1cc6d47d292c780491f022d +Author: Miles Reiter +Date: Fri May 14 14:39:04 2021 -0400 + + Create 2021, Spring - Tribal MVP (Release 2) Design Sprint + +commit 6d5bc01664d54e5987091a33922a645c876de694 +Merge: c42ec2ad6 9e2555697 +Author: Jorge Gonzalez +Date: Fri May 14 14:16:23 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/762-logging-uploads + +commit 999cf1b5d2386cc192092793dd903c2f3ddccd68 +Merge: 70a28a8d0 42189db82 +Author: Aaron Beavers +Date: Fri May 14 13:52:05 2021 -0400 + + Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/818-scan-and-upload-data-files + +commit 27f81a7e6d8d543360df34d5a4147bea7a03d3fb +Author: John Willis +Date: Fri May 14 13:51:33 2021 -0400 + + Fixed migration files + +commit 42189db82bcc38ea46e6662cb1e64c74318bde0f +Merge: d86149163 9e2555697 +Author: John Willis +Date: Fri May 14 13:37:56 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 70a28a8d05d7f5ccbdd53d5a922cbf03e80add95 +Merge: db71f7eba d86149163 +Author: Aaron Beavers +Date: Fri May 14 13:19:02 2021 -0400 + + Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/818-scan-and-upload-data-files + +commit 16811c54a05d782efdf26ef4b379a20d69aaa891 +Author: Aaron Beavers +Date: Fri May 14 12:38:20 2021 -0400 + + Lint + +commit b36c038ad7b78eb0f6f3daa23f9f6053fd750bf6 +Author: Aaron Beavers +Date: Fri May 14 12:35:42 2021 -0400 + + Revert accidentally changed files + +commit 0c07c26df871b7bc8d61f1983b4dd3b6dffcf76b +Merge: 40abd32f8 9e2555697 +Author: John Willis +Date: Fri May 14 11:58:20 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit 40abd32f88fb14c52e8bd690b0950d50675c2434 +Author: John Willis +Date: Fri May 14 11:56:49 2021 -0400 + + Added some logic to prevent deploying with localhost environment variables + +commit 9e2555697fe60cd054767cc1d6ab1d10abd647c6 +Merge: 0c465e58e 06201fcd8 +Author: Carl Smith +Date: Fri May 14 11:54:26 2021 -0400 + + Merge pull request #913 from raft-tech/kniz-raft-patch-1 + + Create sprint-20-summary.md + +commit a36c0b705783279cc1d436dfffe9fb1267eabf4b +Author: Aaron Beavers +Date: Fri May 14 10:53:29 2021 -0400 + + delint + +commit e4470127f0483226a296413789bf767274331f3c +Merge: 25dfba600 0c465e58e +Author: Aaron Beavers +Date: Fri May 14 10:44:05 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 06201fcd89e9ef0cf2b24bb175483517e1130077 +Merge: 915356572 0c465e58e +Author: Carl Smith +Date: Fri May 14 10:33:33 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 09c22a17f1756d58f9fa66f2559275c2ea0df423 +Author: Aaron Beavers +Date: Mon May 3 15:36:16 2021 -0400 + + Revert "changing something to check if deploy happens" + + This reverts commit 73b1d60685e029cb78141e014394bc9657741db7. + +commit b1d5895d66f055832b87ebf80599dd39c1596f5f +Author: John Willis +Date: Thu May 13 16:45:08 2021 -0400 + + Don't expose generated JWT cert in script output + +commit d02c449517971a4f1101ed726743661f876b4dd7 +Author: John Willis +Date: Thu May 13 16:39:42 2021 -0400 + + Add names for deploy commands + +commit 58f59733df5fc74d53347f03981b91697a86da89 +Author: Aaron Beavers +Date: Thu May 13 15:14:00 2021 -0400 + + removed prettier lint + +commit c42ec2ad620c42274e5d6579b549a5cc03e46a71 +Author: Jorge Gonzalez +Date: Thu May 13 15:02:59 2021 -0400 + + Improve system log formatting for file upload submissions + +commit 00cdcfeaefdd5c30db28f86695b2c2621e45dff8 +Author: Aaron Beavers +Date: Thu May 13 13:13:30 2021 -0400 + + Remove lint + +commit 64edf3ad7b60379483065cb083198a97d915cd12 +Author: Aaron Beavers +Date: Thu May 13 13:06:30 2021 -0400 + + Add Test for invalid routes producing no match + +commit db71f7ebac7c3eb34ea89aa2b0304df61cd405f8 +Author: Aaron Beavers +Date: Thu May 13 12:47:43 2021 -0400 + + initial work on file download + +commit 0a8218f7ec008bbc3c6c3b4081b5c0932d1c3ec7 +Author: John Willis +Date: Thu May 13 12:19:16 2021 -0400 + + Fix deployment CI issues + +commit 7a04eeecc8b39ae901e9719c1ecdc813e16d7cd8 +Merge: 2a804cbfe 0c465e58e +Author: Jorge Gonzalez +Date: Thu May 13 11:12:47 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/858 + +commit 13f47fb453a004f3e8b9e8b07109d68e091e57d1 +Merge: c4a3318d4 0c465e58e +Author: Carl Smith +Date: Thu May 13 10:49:43 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit 95d719e4f4b68535a7cb4c13621e4df15a511fad +Author: John Willis +Date: Wed May 12 21:37:31 2021 -0400 + + Remove erroneous semicolon usage + +commit fdf4c5f3366ee2d90d4b224285a620305d4d66ef +Author: John Willis +Date: Wed May 12 18:38:11 2021 -0400 + + Prevent early exit due to use of pipefail + +commit 75422a2cdb75d6ed1a15815a508fcfbb9c631bdb +Author: John Willis +Date: Wed May 12 18:13:07 2021 -0400 + + Explicitly assign exit code to prevent early termination + +commit a0d769068ca819ab846ba52dd0fc18981cdc1790 +Author: John Willis +Date: Wed May 12 17:30:02 2021 -0400 + + fix typo in appname parameter + +commit 2ceaf4b2171126de0a45f816703a5f0caac1c66e +Author: John Willis +Date: Wed May 12 17:27:13 2021 -0400 + + Dynamically pass deploy strategy of initial if target app does not exist + +commit 5a1983f9283c14c9eb5662c729a1006c60c606f8 +Author: John Willis +Date: Wed May 12 16:32:26 2021 -0400 + + switch back to docker executor + +commit 6fadb3c1ac4913713bb6dcc048bf0c9dc9cd59c6 +Author: John Willis +Date: Wed May 12 15:43:44 2021 -0400 + + Fix typo on parameter reference + +commit 2a3996fd18df183571ddc711e8bfe0dfab570cd4 +Author: John Willis +Date: Wed May 12 15:39:42 2021 -0400 + + Fix typo on command usage + +commit 4eb00a6b04bd16a3b913cfade0859a89c04cbf74 +Author: John Willis +Date: Wed May 12 15:34:51 2021 -0400 + + Added back clamav-rest deployment in newer command format + +commit bd7b177eff75294b05b8fb273818f7cb9238cfcc +Merge: 5149d4eea 0c465e58e +Author: Jorge Gonzalez +Date: Wed May 12 14:38:55 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/762-logging-uploads + +commit 2122ad19f315e06739772c0e3f59bec43b9abfc5 +Merge: 4641b289e 0c465e58e +Author: John Willis +Date: Wed May 12 14:30:13 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit d86149163ad1032f103476aab9cfdeb3981d987c +Merge: b65811d36 0c465e58e +Author: John Willis +Date: Wed May 12 14:28:29 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 0c465e58ee398a21bd5be5a7a8de0802bfe5a383 +Merge: 9b565b548 231ab3496 +Author: John Willis +Date: Wed May 12 14:16:46 2021 -0400 + + Merge pull request #849 from raft-tech/documentation/jwt-rotation + + Documentation: JWT Key Rotation + +commit 231ab3496bad7d231127967444c198290593dabd +Merge: fda26c516 9b565b548 +Author: John Willis +Date: Wed May 12 14:03:48 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/jwt-rotation + +commit 9b565b5484a36276b99d3bb5944fba8b9f1e59ef +Merge: f51bbf0c7 0b8b3e8f0 +Author: John Willis +Date: Wed May 12 14:03:25 2021 -0400 + + Merge pull request #893 from raft-tech/backend/818-1-clamav-client + + Issue 818 (PR #1): Implement ClamAV Client for use with uploads + +commit 0b8b3e8f0a462ff9fad54d38974207d1faf1dbd9 +Merge: b882d2eb5 f51bbf0c7 +Author: John Willis +Date: Wed May 12 13:43:44 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-1-clamav-client + +commit fda26c516b8b28a9c290838dbaa376014e8d3937 +Author: Carl Smith +Date: Wed May 12 13:25:59 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 2c0f5349d097dcebe3649dc607a8f3c882f4e3e2 +Author: Carl Smith +Date: Wed May 12 12:52:53 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 58841145326aeb9d501a8f4dc55e3be0aab36c8a +Author: Carl Smith +Date: Wed May 12 12:52:45 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 9aca0a77736ec35d2077baf85209efc0129c49b1 +Author: Carl Smith +Date: Wed May 12 12:02:25 2021 -0400 + + Update jwt-key-rotation.md + +commit 2527c6b5875349d381558e7f9880a399e4adf699 +Author: Carl Smith +Date: Wed May 12 09:51:03 2021 -0400 + + Update jwt-key-rotation.md + +commit 9d49a30a11d2c756e12a9b75ebe3a29297282c4d +Merge: c1204b8ca f51bbf0c7 +Author: Carl Smith +Date: Wed May 12 09:48:25 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/jwt-rotation + +commit c1204b8ca0b467d1c5666f34441147baadaef3a0 +Author: Carl Smith +Date: Wed May 12 09:45:54 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 3f166fde1cf372cf921a5cb5089a1044206e2014 +Author: Carl Smith +Date: Wed May 12 09:45:44 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 385721eee847d3eb5f6ca28a7e6b62c3127669c8 +Author: Carl Smith +Date: Wed May 12 09:45:33 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit bdce1e60c141cffac93c41dabda418ed8b90de3d +Author: Carl Smith +Date: Wed May 12 09:45:16 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit ed55d8a5be1534182e44a06dde722864a1651c48 +Author: Carl Smith +Date: Wed May 12 09:44:44 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 25dfba6002c20befad9a26af7c845181acd08c69 +Author: Aaron Beavers +Date: Tue May 11 16:42:58 2021 -0400 + + Remove dead test + +commit 5a2d6c79b3b13a5412c8ed86e1661cfc2c7b349b +Author: Aaron Beavers +Date: Tue May 11 16:42:46 2021 -0400 + + Remove duplicate property + +commit a56e6404c19e171abbf41e04fe8c88e46e58b89a +Author: Aaron Beavers +Date: Tue May 11 16:42:36 2021 -0400 + + Add dependencies to useEffect call + +commit eec70f180e07e93e2abc2d435b397b8278ac6a13 +Author: Aaron Beavers +Date: Tue May 11 16:42:19 2021 -0400 + + Remove dead code + +commit ce3085053b34ccb9fc6d4e7705e5463674f6c9b5 +Author: Aaron Beavers +Date: Tue May 11 16:35:50 2021 -0400 + + Revert accidental CSS linting + +commit 915356572ef7059aa9675586073c813b406fe96a +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue May 11 15:12:11 2021 -0500 + + Create sprint-20-summary.md + +commit 5149d4eeab8f6a9730ac230a0d35a1671f02f6e8 +Merge: a7e9cda43 f51bbf0c7 +Author: Carl Smith +Date: Tue May 11 13:51:36 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/762-logging-uploads + +commit 2a804cbfeed6f6f62caa04630762d1770e129349 +Author: Jorge Gonzalez +Date: Tue May 11 12:55:23 2021 -0400 + + Hotfix header STT name + +commit 38db2730ba0283829e13f97838fe32bdfe583879 +Merge: 389eb1181 f51bbf0c7 +Author: Jorge Gonzalez +Date: Tue May 11 12:56:23 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 389eb11819394e3b47a93929a8fcf38bbaf5a636 +Author: Jorge Gonzalez +Date: Tue May 11 12:55:23 2021 -0400 + + Hotfix header STT name + +commit f51bbf0c70d621c07125fb8bfed4a375277f1ed7 +Merge: e5bec974e 509303451 +Author: Carl Smith +Date: Tue May 11 12:06:26 2021 -0400 + + Merge pull request #911 from raft-tech/kniz-raft-patch-1 + + Update index.md + +commit 0d67cd5a01556288f2e746326c8dfebc1bd5e348 +Author: Aaron Beavers +Date: Tue May 11 12:03:24 2021 -0400 + + Use first instead of bracket lookup + +commit 33963f66126455daa3c701671dd4c71d419f4649 +Author: Aaron Beavers +Date: Tue May 11 12:02:11 2021 -0400 + + Remove lint + +commit 8a2843e43153902a0c2b7e8a4b6cce3f0466c919 +Author: Aaron Beavers +Date: Tue May 11 11:59:51 2021 -0400 + + Test paths that do not contain an STT + +commit cfb419618ea4ec8565f40ddd9c3f511077c99460 +Merge: e03d9a0e5 e94ed4e94 +Author: Aaron Beavers +Date: Tue May 11 11:32:06 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/643/list-years + +commit 1079ce3c2007c6b13ca0f2d7d06484be0a7f5737 +Merge: 834f5ac16 e5bec974e +Author: John Willis +Date: Tue May 11 11:28:44 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/jwt-rotation + +commit 834f5ac1636ab70599ac801df5f637bfdb8c80d0 +Author: John Willis +Date: Tue May 11 11:28:03 2021 -0400 + + Updated docs to note Linux difference for openssl command + +commit 4641b289e8d75a823df278163a77ce41ddad5784 +Author: John Willis +Date: Tue May 11 11:24:07 2021 -0400 + + Use machine executor and expose node orb command inside other commands + +commit b65811d36dd7f0fe9f200386cb1f3ecd30556fca +Merge: 0bb22796c b882d2eb5 +Author: John Willis +Date: Tue May 11 11:21:40 2021 -0400 + + Merge branch 'backend/818-1-clamav-client' into backend/818-scan-and-upload-data-files + +commit b882d2eb59c94530ea36136c24695b4aa01226d9 +Merge: 13e86d9d7 e5bec974e +Author: John Willis +Date: Tue May 11 11:17:41 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-1-clamav-client + +commit 509303451c2849de5e264eda502df59246196c33 +Author: Carl Smith +Date: Tue May 11 11:07:44 2021 -0400 + + Update index.md + + linking to the markdown instead of the directory + +commit 2fd38f9df6c747c97a2fbfaf6a53862b0bb38208 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue May 11 09:48:11 2021 -0500 + + Update index.md + +commit e5bec974ea87d15896d7776d4aef9051b84bdb8e +Merge: 18545c6d7 ecdab0a6b +Author: Carl Smith +Date: Tue May 11 10:23:18 2021 -0400 + + Merge pull request #887 from raft-tech/kniz-raft-patch-1 + + Update Roadmap-and-Backlog.md + +commit c4a3318d4c403bcca48315f12dc5f59b972fa1b5 +Author: Aaron Beavers +Date: Mon May 10 16:52:21 2021 -0400 + + Works + +commit fb7314ceeed409a14037bf22b0f03d40b1b45770 +Author: John Willis +Date: Mon May 10 16:38:58 2021 -0400 + + Updated config.yml + +commit 91af0456d8dee68083d4afe6bf93f6b25a77f433 +Author: John Willis +Date: Mon May 10 16:09:06 2021 -0400 + + Use non-legacy docker executor + +commit dd5920d0708282c2fb51fd58454a9cb8e8dec121 +Author: Jorge Gonzalez +Date: Mon May 10 16:05:12 2021 -0400 + + Nit: remove dev setting + +commit 3bf592cd0391e7385675349e296cd749c4594c9c +Merge: bf40cfdc5 18545c6d7 +Author: John Willis +Date: Mon May 10 16:00:42 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit 8deb25c9bfbaf31e91bd3d0af0194bec56200500 +Merge: 52760e95d 1e00451e9 +Author: Jorge Gonzalez +Date: Mon May 10 15:46:40 2021 -0400 + + Merge branch 'feat/374-uuids' of https://github.com/raft-tech/TANF-app into feat/374-uuids + +commit 52760e95d69a8b7c0472a4203ae90890efad73aa +Merge: c3eea0faf 18545c6d7 +Author: Jorge Gonzalez +Date: Mon May 10 15:45:40 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/374-uuids + +commit 1e00451e9e7040bb998e000603a3974cdc51aece +Merge: c3eea0faf 18545c6d7 +Author: Jorge Gonzalez +Date: Mon May 10 15:45:12 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/374-uuids + +commit c3eea0fafaf3fc3776b61a2cc7834006412c92bf +Author: Jorge Gonzalez +Date: Mon May 10 15:40:29 2021 -0400 + + Add tests and tweaks + +commit a7e9cda431d93b507162186c27df1ac2180028c4 +Merge: c27803ce3 18545c6d7 +Author: Jorge Gonzalez +Date: Mon May 10 15:39:54 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/762-logging-uploads + +commit ecdab0a6bb2b96f4bd48274f8e231bd45a7dfaea +Merge: baa24102f 18545c6d7 +Author: Carl Smith +Date: Mon May 10 15:38:14 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit c2587e38a1c2dd4315d94ac9cda35af3942f7ee6 +Merge: 9b4b5a18b 18545c6d7 +Author: Aaron Beavers +Date: Mon May 10 15:19:21 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 + +commit 18545c6d72d2500efe308c83a0e658a8a188da9a +Merge: e94ed4e94 0436f8f1b +Author: Carl Smith +Date: Mon May 10 14:59:37 2021 -0400 + + Merge pull request #836 from raft-tech/feat/767-logging + + Issue 767: Logging Client Alerts and Errors + +commit 9b4b5a18b373544f14be33132a9d017262cfa44d +Author: Aaron Beavers +Date: Mon May 10 14:47:20 2021 -0400 + + update nginx 404 error page + +commit 7e0de58d0e1c46e5000eaa7a6ce1658c9de91a6c +Author: Aaron Beavers +Date: Mon May 10 14:22:33 2021 -0400 + + more specific nginx locations + +commit baa24102fd91ce5924022a41acaf772a4b675ae7 +Merge: f70978701 e94ed4e94 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon May 10 13:22:21 2021 -0500 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit d13522992178b87d177ab01e173405f8dd83167e +Merge: e88032a76 352ddff0d +Author: Aaron Beavers +Date: Mon May 10 13:34:41 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 + +commit 352ddff0d5f66d92b25b2253ee1e17cd206c4a5e +Merge: e94ed4e94 e88032a76 +Author: Aaron Beavers +Date: Mon May 10 13:34:29 2021 -0400 + + Merge branch 'issues/865' into origin/raft-tdp-main + +commit 144f19ee265851e58b07c291efd8e1e3debf9886 +Author: Aaron Beavers +Date: Mon May 10 13:27:09 2021 -0400 + + Lint + +commit 54e6af9f61484c80bdc06a4a669d384153b1d0ee +Author: Jorge Gonzalez +Date: Mon May 10 12:40:17 2021 -0400 + + Fix tests + +commit f6b3f517fa7089b02ca79b15ace1ca258e4252ed +Author: Jorge Gonzalez +Date: Mon May 10 12:02:43 2021 -0400 + + Fix typo + +commit 76e12edbb56fc3261a572aa60f28d34bf65b9db1 +Author: Jorge Gonzalez +Date: Mon May 10 11:54:04 2021 -0400 + + Create and auth users with login.gov uuid + +commit e88032a763ba9fe8afe442e50727a2a14f79329e +Merge: 8cf59e482 e94ed4e94 +Author: John Willis +Date: Mon May 10 11:22:44 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit 8e2eac8cf4702e9a0595c4c9c00e5223f8af847a +Author: Aaron Beavers +Date: Mon May 10 11:07:14 2021 -0400 + + Fix test failiures after merge conflict resolution + +commit 8110676986e77d5a3cb09cc86a91ef03864411fd +Merge: 10df05609 e94ed4e94 +Author: Aaron Beavers +Date: Mon May 10 10:34:21 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 10df0560989c87f2d0f89b3157c413a6792c6e56 +Author: Aaron Beavers +Date: Mon May 10 10:28:37 2021 -0400 + + Fix lint + +commit 8edb851c13686ae64b937cd4a8e9205c7848bfa2 +Author: Aaron Beavers +Date: Mon May 10 09:57:19 2021 -0400 + + Delint + +commit 17e408a217736c0c1bd102e2746778afde5cbc90 +Author: Aaron Beavers +Date: Fri May 7 14:02:16 2021 -0400 + + Over 90% test coverage + +commit 059df39bcb2d86f6de5ec6850fc29bb1416ed92e +Author: Aaron Beavers +Date: Fri May 7 13:47:57 2021 -0400 + + Work on tests + +commit 2bd2158a0d7764d5362d6d96a614c552004d91d6 +Author: Aaron Beavers +Date: Fri May 7 13:47:21 2021 -0400 + + Update error payload for test + +commit c0afefedd001e659289b73172f78d284412b88e2 +Author: Aaron Beavers +Date: Fri May 7 13:46:57 2021 -0400 + + Add test for SET_FILE_LIST + +commit 56944c8f9e5ea58d5573f12a7d7f2afef73e2334 +Author: Aaron Beavers +Date: Fri May 7 13:45:24 2021 -0400 + + Mock axios get method for tests + +commit 4f8eb1fff11933b131714c590d85c9511d2204f5 +Author: Aaron Beavers +Date: Fri May 7 13:43:52 2021 -0400 + + Remove console logs + +commit bf40cfdc57b2d09f47384cac40791607e5a5828d +Author: John Willis +Date: Thu May 6 18:35:47 2021 -0400 + + Added deploy-cloud-dot-gov command that reuses other commands + +commit eecd48c7e0f76f89160bdc10c528d6331da62115 +Author: John Willis +Date: Thu May 6 18:11:15 2021 -0400 + + Fix node version type error + +commit e77e3c3d73f4a7a50230a832aaee04f1e0481080 +Author: John Willis +Date: Thu May 6 18:05:21 2021 -0400 + + Trying a different route for installing nodeJS because of different executor + +commit 2124ac361e903d2a82d796d47f02bce739885353 +Author: John Willis +Date: Thu May 6 16:54:11 2021 -0400 + + Install nodeJS and Yarn for frontend deploy + +commit 44b419c95c7867a8be305ff9ffe463ac1a6e1d81 +Author: John Willis +Date: Thu May 6 15:04:03 2021 -0400 + + Allow set-environment command to persist environment variables between deploy steps + +commit f00da3423e65213f0a222184bb449e0a8e36b519 +Merge: e6a92e9e4 e94ed4e94 +Author: John Willis +Date: Thu May 6 14:44:34 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit 7ca265a46580786cfdd1442872050e4655ea7e50 +Merge: f7eb3a063 c0a1dd2f6 +Author: Aaron Beavers +Date: Thu May 6 13:36:45 2021 -0400 + + Merge branch 'epics/89/issues/416/download-files-frontend' of github.com:raft-tech/TANF-app into epics/89/issues/416/download-files-frontend + +commit f7eb3a063a83a064718c5a6f4d3fc7b1be3cebef +Author: Aaron Beavers +Date: Thu May 6 13:36:02 2021 -0400 + + test set_file_list + +commit a3c595136cee84ee7801b7e284be9ff22827c1a8 +Author: Aaron Beavers +Date: Thu May 6 13:35:49 2021 -0400 + + Remove unnessisary reducer logic + +commit f8e0454cd364a14a42b9c02c77f8791e9a5606b5 +Author: Aaron Beavers +Date: Thu May 6 13:35:24 2021 -0400 + + Add preview test + +commit 5c58fa71d7a2333a81f7e9af6a0f1b6834e016fb +Author: Aaron Beavers +Date: Thu May 6 13:35:12 2021 -0400 + + remove downloaded file trigger after moving download logic + +commit b33b966e782ca7e0aeb5710bbbe6052ecb0d6199 +Author: Aaron Beavers +Date: Thu May 6 13:34:57 2021 -0400 + + update call count + +commit 6afdf2228d0b4d8b17079a4e8c2fee0c24607631 +Author: Aaron Beavers +Date: Thu May 6 13:34:48 2021 -0400 + + Fix section names + +commit 5064b535ad963c5e00ea4dfaf066b9b90ba3ab81 +Author: Aaron Beavers +Date: Thu May 6 13:34:33 2021 -0400 + + Use files over file list + +commit f8a9b5a700541181ad6978beff5ef24e5569d582 +Author: Aaron Beavers +Date: Thu May 6 13:33:59 2021 -0400 + + Add reports action tests + +commit 0440dbc96e7393daa8ed5169ee9b5369d6b072a2 +Author: Aaron Beavers +Date: Thu May 6 13:33:47 2021 -0400 + + Move download logic + +commit 0436f8f1b566a8f711741be606299313a64f115e +Author: Jorge Gonzalez +Date: Thu May 6 13:10:36 2021 -0400 + + Apply suggestions from code review + +commit f8a9644bde3bdfb392d173a3c1535c482e28a874 +Merge: 6480d32d4 e94ed4e94 +Author: Jorge Gonzalez +Date: Thu May 6 13:05:04 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 13e86d9d77a5156ba2e13901d263339cd708c50b +Author: John Willis +Date: Wed May 5 18:27:16 2021 -0400 + + More PEP8 fixes + +commit 6874efbff3d827546447fdbc8b5d062856ef073f +Author: John Willis +Date: Wed May 5 18:16:59 2021 -0400 + + More PEP8 fixes + +commit d36b42c5bfaafe551215d2b9ddbbcc1f93d216d7 +Author: John Willis +Date: Wed May 5 18:03:52 2021 -0400 + + Add docstrings for PEP8 + +commit 64e0c33e2acc541930f6a8dcefdb2159cf2a4e4b +Author: John Willis +Date: Wed May 5 17:23:06 2021 -0400 + + Added wait-for-it to confirm all services are up before starting web docker container + +commit 53005a4b33b5b05023f59c8a9a3fbae18b93cce4 +Author: John Willis +Date: Wed May 5 16:39:16 2021 -0400 + + Issue 818 (PR #1): Implement ClamAV Client for use with uploads + +commit 0bb22796cbb1f9ceadea5e2e79b9c1c94939d4cb +Merge: 9d72a159e e94ed4e94 +Author: John Willis +Date: Wed May 5 15:16:30 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit e94ed4e94daf791431728f393ec6118a8ac92c76 +Merge: 8f7f9868f 8b156cc6e +Author: John Willis +Date: Wed May 5 15:14:03 2021 -0400 + + Merge pull request #787 from raft-tech/feat/738-quarters-select + + Issue 738: Add Dropdown for Quarters Selection + +commit 6480d32d45c3ee34cd11d7301707dfad2c5aac03 +Merge: 46cfac102 8f7f9868f +Author: Jorge Gonzalez +Date: Wed May 5 14:28:21 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit bdda5078b414cce1d8232040f08b48eade649db2 +Author: Aaron Beavers +Date: Wed May 5 14:21:16 2021 -0400 + + Add uuid to mirage outputs + +commit f70978701a8331f7f81167df2314c3fa59e4c011 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:53:45 2021 -0500 + + Update Roadmap-and-Backlog.md + +commit 11179cc7a3eb13bcd96852c060684c907f424096 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:52:12 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit a1f6b3fa7c9c4124d54b93b42e92d06aac1a9003 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:52:04 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 48e2569d9ec1c40611cab0086c9e71b8235d017a +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:51:52 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit a00b5a99bec6ea021ba726cbb487f78e3117694a +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:51:35 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 147788a4fdd8c16bb4738459d28477d107865c38 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:51:26 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 05c29a1d79da7a6d182e9f936a22e19a728d0cbd +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:51:16 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit b03979afb51d5faa328ad6607a40dce73fd3e29c +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed May 5 12:50:58 2021 -0500 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 9a07163093ac4ee498a62b9a8b1a20dfce46937b +Author: Aaron Beavers +Date: Wed May 5 13:50:29 2021 -0400 + + Remove year and quarter from end file download action + +commit e6a92e9e4fd5ec852ce1b748a71504fb25bc3a7a +Merge: ff129c230 8f7f9868f +Author: Aaron Beavers +Date: Wed May 5 13:48:50 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit ff129c230414ca36f925e9989bcce8f25652a7e6 +Author: Aaron Beavers +Date: Wed May 5 11:55:37 2021 -0400 + + Revert "Restore django version" + + This reverts commit a7a019e4b8e359e035b402b0ada9ddc8a9fd906d. + +commit 8b156cc6e17ea9cf6175d5396415c995873748ad +Merge: 9b0b040b4 8f7f9868f +Author: John Willis +Date: Wed May 5 13:33:50 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 8f7f9868fe9496fbb1101e3171d540fb87dc3e00 +Merge: e95b3b690 6e1967486 +Author: John Willis +Date: Wed May 5 13:33:22 2021 -0400 + + Merge pull request #852 from raft-tech/features/850/windows-optimize + + Issue 850: Optimize for Windows + +commit 9d72a159e7af579b0ec7bee8e38cc5992ca5585f +Merge: 34457754b e95b3b690 +Author: John Willis +Date: Wed May 5 13:28:52 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit c5c4622bef4a23de14ee3557bfa160ac8518e295 +Merge: 5b3730af8 e95b3b690 +Author: Carl Smith +Date: Wed May 5 13:25:13 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 0ed788b2be91503aa4c1d5ffe0aeec3b25e8358f +Merge: dfa393a9b e95b3b690 +Author: Carl Smith +Date: Wed May 5 13:24:47 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit c0a1dd2f67d1dbc6a40e16b77dcaabe67f8393d3 +Merge: 647760768 e95b3b690 +Author: Carl Smith +Date: Wed May 5 13:23:56 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 8cf59e482505242023152138e8ecc6a300c86a31 +Merge: 112cbebd3 da4a9d5fe +Author: Aaron Beavers +Date: Wed May 5 13:23:13 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 + +commit 9b0b040b4c7663e63e2b50fbf0cc072a97c30fd1 +Merge: 66e5b1579 e95b3b690 +Author: Jorge Gonzalez +Date: Wed May 5 13:22:19 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 46cfac102c8affe29d46bc240aa5ade05a81f24b +Merge: 758ef743f e95b3b690 +Author: Jorge Gonzalez +Date: Wed May 5 13:22:03 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 6e196748665c1f8307fd17960205a0156c22c518 +Merge: 0ae2bb64c e95b3b690 +Author: John Willis +Date: Wed May 5 13:21:21 2021 -0400 + + Merge branch 'raft-tdp-main' into features/850/windows-optimize + +commit e95b3b690d572570f6e348dd2d4c65204fc3c5ba +Merge: da4a9d5fe d34bf0c06 +Author: John Willis +Date: Wed May 5 13:21:00 2021 -0400 + + Merge pull request #891 from raft-tech/hotfix/circle-ci-pytest-failures + + [Hotfix] Update backend Dockerfiles to use fixed version of Python + +commit d34bf0c066229097a0e694f20f813c2048d61c27 +Author: John Willis +Date: Wed May 5 12:36:05 2021 -0400 + + Update backend Dockerfiles to use fixed version of Python to resolve CI issues + +commit dfa393a9b3b911698b20778fee9110069075216d +Author: John Willis +Date: Wed May 5 12:22:52 2021 -0400 + + Test pinning Dockerfile to previous python version + +commit 758ef743fc9a53f4a8fd1a95b15a1c26942bf4bd +Merge: d202e8ce6 da4a9d5fe +Author: Jorge Gonzalez +Date: Wed May 5 12:08:10 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit e4c747ddae61d13644ea691d930d1e307b19fe2e +Merge: a7a019e4b 48842e12c +Author: Aaron Beavers +Date: Wed May 5 11:56:29 2021 -0400 + + q:qxMerge branch 'devops/844-buildpacks-ci-deploy' of github.com:raft-tech/TANF-app into devops/844-buildpacks-ci-deploy + +commit a7a019e4b8e359e035b402b0ada9ddc8a9fd906d +Author: Aaron Beavers +Date: Wed May 5 11:55:37 2021 -0400 + + Restore django version + +commit 0ae2bb64ce54926d4bbc81dddc84411dcbb56fb0 +Merge: ebeb9f309 da4a9d5fe +Author: Carl Smith +Date: Wed May 5 11:44:34 2021 -0400 + + Merge branch 'raft-tdp-main' into features/850/windows-optimize + +commit 34457754b922e54142f4709629375fe3eed9432b +Author: John Willis +Date: Wed May 5 11:16:32 2021 -0400 + + Working on updating ReportFileFactory + +commit 48842e12c9e720f08a3281890ae8ffbf2cd496f8 +Author: John Willis +Date: Wed May 5 10:42:41 2021 -0400 + + Reset bash change + +commit 4f8c5430e6dd5d9bb9bf299e1c6f3d0f70613867 +Author: John Willis +Date: Wed May 5 10:36:20 2021 -0400 + + Test using sh instead of Bash to run tests + +commit e0ec08515fec7489712d07b6606490f3986cf435 +Author: John Willis +Date: Tue May 4 18:42:41 2021 -0400 + + Fixed tests for API; need to fix serializers + +commit e87554314fd84a8b3e1285b2507b979f3e3c777a +Author: Aaron Beavers +Date: Tue May 4 16:23:50 2021 -0400 + + Added test to setup-environment + +commit 6a0e7c512b93c3f538b47331470df4f2635c706e +Author: Aaron Beavers +Date: Tue May 4 16:05:54 2021 -0400 + + export environment + +commit e208129e6ecc505482e8c09092ff10158d13b7fa +Author: Aaron Beavers +Date: Tue May 4 15:28:12 2021 -0400 + + move steps + +commit 66e5b1579da0f9d66d3eeb75b0f2a7606a4c1458 +Merge: 94548cf00 da4a9d5fe +Author: Jorge Gonzalez +Date: Tue May 4 15:21:07 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 4696d208aaee31530665833f324c80695c53f60e +Merge: f5263d5b7 da4a9d5fe +Author: John Willis +Date: Tue May 4 14:27:09 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit a4ce9b3c29225eb0d1843c1c33ae7492bd6be657 +Author: Aaron Beavers +Date: Tue May 4 13:54:06 2021 -0400 + + move login + +commit 1a29526e3deed6aba0497a6e0d686708c9bb07e7 +Author: Aaron Beavers +Date: Tue May 4 13:29:29 2021 -0400 + + Change filter + +commit 64276c2bc1904a597ebb0564f1ac48bb57f6d0d4 +Author: Aaron Beavers +Date: Tue May 4 13:15:43 2021 -0400 + + Change deploy on label command + +commit 7034bf659c1e3ddff6a19b7e74af3800d5091483 +Merge: 30e9fef19 da4a9d5fe +Author: Aaron Beavers +Date: Tue May 4 13:09:19 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into devops/844-buildpacks-ci-deploy + +commit 112cbebd37973b1c7f49801efcaed15636416d8d +Author: Aaron Beavers +Date: Tue May 4 12:39:30 2021 -0400 + + Uncomment changes + +commit 9ec969eaa8876bda54e3f89d0c4725f8ea855400 +Merge: 87e7e011b 80cc0e26e +Author: Aaron Beavers +Date: Tue May 4 12:31:52 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 + +commit 87e7e011b8bbb2dd3c6236fcf6e9db5dd4df3dc3 +Author: Aaron Beavers +Date: Tue May 4 12:23:59 2021 -0400 + + comment nginx routes out to test pally ci issue + +commit 7c2e78cd82edb9b41bad445840c3f8674a700db2 +Author: Aaron Beavers +Date: Tue May 4 12:18:57 2021 -0400 + + Remove error page directive + +commit 93f042dd96626a8ddd9190b9013b5f3b80953d52 +Author: Aaron Beavers +Date: Tue May 4 11:59:15 2021 -0400 + + missing semicolon + +commit cdf643e29a88e32b91f3f1b499d117ac7954e40a +Author: Aaron Beavers +Date: Tue May 4 11:52:26 2021 -0400 + + typo + +commit c27803ce30656f50b174a5069ab4dff2570b1b76 +Author: Jorge Gonzalez +Date: Tue May 4 11:41:01 2021 -0400 + + Lint + +commit 4db179a0a7eed32e6f08d2e8256ebd1f871d16cf +Author: Aaron Beavers +Date: Tue May 4 11:46:41 2021 -0400 + + Update nginx conf + +commit 331021a9815117f180572369d8d6c162a1f4b964 +Author: Jorge Gonzalez +Date: Tue May 4 11:28:06 2021 -0400 + + Add admin test + +commit b9fb6b5d3272a9c842fcdd3ad3bae63f35c8c0d4 +Author: Jorge Gonzalez +Date: Tue May 4 11:10:40 2021 -0400 + + Add LogEntries creation test + +commit 5b3730af83af877b8568681dfc8a8b78a27822ac +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue May 4 09:55:54 2021 -0500 + + Update Roadmap-and-Backlog.md + +commit 5787a1a8e78e47b7d5d95b21230bff9dffef7d16 +Author: Jorge Gonzalez +Date: Tue May 4 10:23:48 2021 -0400 + + Add filenames to LogEntries + +commit f5263d5b72225a085be2361cf81e856a51eea5ec +Author: John Willis +Date: Mon May 3 19:13:31 2021 -0400 + + Got validation working correctly with ClamAV + +commit e7dde2c75e6dfbba8433f944061734e3db6d9747 +Author: Jorge Gonzalez +Date: Mon May 3 18:03:52 2021 -0400 + + Improve object representation in Django Admin, and remove dead branch + +commit 30e9fef19cb4edf3fd0de7e318c27e053da819ba +Author: Aaron Beavers +Date: Mon May 3 15:56:18 2021 -0400 + + Add staging environment + +commit 86ed35a284c0a68f8ad025e645919f5a865e76f4 +Author: Aaron Beavers +Date: Mon May 3 15:56:04 2021 -0400 + + rename hostname var to appname + +commit 73b1d60685e029cb78141e014394bc9657741db7 +Author: Aaron Beavers +Date: Mon May 3 15:36:16 2021 -0400 + + changing something to check if deploy happens + +commit 0a08f0efd763e38b09004df3e2ff4a5324f084a7 +Author: Aaron Beavers +Date: Mon May 3 13:00:15 2021 -0400 + + Add deploy-prod job + +commit b50f533d1a4d9f646f9f1c490a2aaa48b7301cbd +Author: Aaron Beavers +Date: Mon May 3 12:59:56 2021 -0400 + + update app/hostname in parameters + +commit da4a9d5fe1e306f13bc0d149755e34fac82234f2 +Merge: 80cc0e26e 1c3d483e5 +Author: Carl Smith +Date: Mon May 3 11:14:01 2021 -0400 + + Merge pull request #863 from raft-tech/snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 + + [Snyk] Upgrade classnames from 2.2.6 to 2.3.0 + +commit d202e8ce634a5e3200436c443f15b593bae403fa +Merge: 2a5a1158a 80cc0e26e +Author: Jorge Gonzalez +Date: Mon May 3 10:52:14 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 1c3d483e57e26ebdba40cb4716bcbcd99924c22b +Merge: 82dd1076c 80cc0e26e +Author: Jorge Gonzalez +Date: Mon May 3 10:48:34 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 + +commit ced703e43a4cd6323bb2064033b40e5e006d6a2d +Author: John Willis +Date: Fri Apr 30 19:04:32 2021 -0400 + + Added ClamAVClient and update tests to use it instead of direct requests call; implement file scanning with django file validation + +commit 0a3583fbfa0fedb3ef63e532226ad03de8b80fd2 +Merge: 52afc7e58 80cc0e26e +Author: John Willis +Date: Fri Apr 30 16:46:05 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit 80cc0e26e7413103cd6042d0ca176f2bda89fcec +Merge: f88d1dcc2 92caa2b38 +Author: Carl Smith +Date: Fri Apr 30 14:53:11 2021 -0400 + + Merge pull request #846 from raft-tech/snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + + [Snyk] Upgrade uswds from 2.9.0 to 2.11.1 + +commit 52afc7e5827ec2864ebe9218b16ee72e400a71b6 +Merge: c59a28859 f88d1dcc2 +Author: John Willis +Date: Fri Apr 30 14:40:58 2021 -0400 + + Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files + +commit eb7abdae7b04b334e72eee98ca084d60fe5767e2 +Author: Aaron Beavers +Date: Fri Apr 30 13:47:53 2021 -0400 + + Add type to parameter + +commit b2a2f140493d9cfc849fd6105458bdea8eb33a22 +Author: Aaron Beavers +Date: Fri Apr 30 13:46:42 2021 -0400 + + Fix schema on login command + +commit 4d1e2f5c3337f4f104bc6afac45cf71843690632 +Author: Aaron Beavers +Date: Fri Apr 30 13:46:14 2021 -0400 + + Add docker back + +commit c6f0673e5fe097b2d5070c690eb3b7f9064bd333 +Author: Aaron Beavers +Date: Fri Apr 30 13:13:36 2021 -0400 + + Fix Typo + +commit 0da9bf8f54850bec55e402b67394541c7a76589a +Author: Aaron Beavers +Date: Fri Apr 30 13:11:18 2021 -0400 + + Remove duplicate parameter key + +commit 05aabb3ffde117c359e0a136eff9e125d6ecb86f +Author: Aaron Beavers +Date: Fri Apr 30 13:09:06 2021 -0400 + + YAML error + +commit 92caa2b383c12f29338d511f61c67d6c85d7bc9e +Merge: 9126cfe07 f88d1dcc2 +Author: Carl Smith +Date: Fri Apr 30 13:02:49 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit 7e8baf4166e84cc00134f35152403ebe3d240f6f +Author: Aaron Beavers +Date: Fri Apr 30 11:57:01 2021 -0400 + + Fix syntax error in yaml file + +commit f88d1dcc2fa6d3b956f468c8204cb9be9d5b3c65 +Merge: 0122a66a9 ff1d648bb +Author: Carl Smith +Date: Fri Apr 30 11:55:19 2021 -0400 + + Merge pull request #878 from raft-tech/carltonsmith-patch-4 + + Security Controls: AC-02(07) update link to migration + +commit ffb6cd35ed8bba7de5e7f499406dd28e315908cb +Author: Aaron Beavers +Date: Fri Apr 30 11:44:39 2021 -0400 + + formatting + +commit ff1d648bbf0628ecc2229c9f889abe91d0f9b50c +Merge: c66643092 0122a66a9 +Author: Carl Smith +Date: Fri Apr 30 11:29:21 2021 -0400 + + Merge branch 'raft-tdp-main' into carltonsmith-patch-4 + +commit 0122a66a98eeb6b39675bf9fe4f04e374bcb5ad3 +Merge: 2a376a74a 5ea50d228 +Author: Carl Smith +Date: Fri Apr 30 11:27:51 2021 -0400 + + Merge pull request #827 from raft-tech/snyk-fix-02af83d9d2ab980c36f5fb54f5f7b20e + + [Snyk] Security upgrade django from 3.1.7 to 3.1.8 + +commit 5ea50d228b3dea8d93107cdf2c3c00a2acaf165a +Merge: ab6d5e7cd 2a376a74a +Author: Carl Smith +Date: Fri Apr 30 10:25:21 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-fix-02af83d9d2ab980c36f5fb54f5f7b20e + +commit 2a376a74ac3b35a3f1c2dcca0906a8d4cf68f8b1 +Merge: dae6e4531 39a9f0add +Author: Carl Smith +Date: Fri Apr 30 10:23:57 2021 -0400 + + Merge pull request #884 from raft-tech/hotfix/817-handle-different-app-names + + Hotfix: Resolve vendor staging deployment issue introduced by clamav-rest + +commit 7df5294c64d99cb2436704bb10151ebfa21db2e1 +Author: Aaron Beavers +Date: Fri Apr 30 10:23:05 2021 -0400 + + formatting + +commit 736ec1fb60deeb90ef80148ed786be18906040b1 +Author: Aaron Beavers +Date: Fri Apr 30 10:22:48 2021 -0400 + + Use proper variable access + +commit 8b3c3971314ece8dd39091c5d4729c7aeb426f7f +Author: Jorge Gonzalez +Date: Thu Apr 29 16:53:19 2021 -0400 + + Lint + +commit 8bb566260f8537c687cac80d9a47e821cba9013e +Author: Aaron Beavers +Date: Thu Apr 29 15:51:51 2021 -0400 + + remove docker deployment ci path + +commit 0979504b559fa35f2b2d4665089de64ce6ad1e12 +Author: Jorge Gonzalez +Date: Thu Apr 29 15:19:53 2021 -0400 + + Nit + +commit 39a9f0addfc2f6bb3436ce6a051a98e65e50107e +Author: John Willis +Date: Thu Apr 29 15:28:31 2021 -0400 + + Hotfix: Resolve vendor staging deployment issue introduced by clamav-rest + +commit 90fd503a8b3ecc9aa89b5dd51ea6de5b2ca9cb8d +Author: Aaron Beavers +Date: Thu Apr 29 14:56:50 2021 -0400 + + add deploy dev flow + +commit 62068e3b0e2e01c1386f364c9f8ab906371f84f1 +Author: Jorge Gonzalez +Date: Thu Apr 29 14:50:34 2021 -0400 + + Nit + +commit 4473bec9919f9160bf6f32fe6878efac166fc8c6 +Author: Aaron Beavers +Date: Thu Apr 29 14:37:20 2021 -0400 + + Canabalising original deployment command + +commit 834c4f86c0cc604ae583896c140860c938ab35f2 +Author: Aaron Beavers +Date: Thu Apr 29 14:36:15 2021 -0400 + + add reusable commands for deployment + +commit d80806f34dd68feed18ca8673e99460b45391fdf +Author: Jorge Gonzalez +Date: Thu Apr 29 14:14:55 2021 -0400 + + Lint + +commit 482956d553751c5880f7d287514f1d7e651def34 +Merge: 395e10f95 2a5a1158a +Author: Jorge Gonzalez +Date: Thu Apr 29 14:13:20 2021 -0400 + + Merge branch 'feat/767-logging' into feat/762-logging-uploads + +commit 94548cf00a61f476987acb2708ec0743d7781804 +Merge: 774ca556c 9c4205bdb +Author: Jorge Gonzalez +Date: Thu Apr 29 14:11:37 2021 -0400 + + Merge remote-tracking branch 'origin/feat/738-quarters-select' into feat/738-quarters-select + +commit 774ca556c2c8ebdb77a8c7669761682d323f811a +Author: Jorge Gonzalez +Date: Thu Apr 29 14:11:29 2021 -0400 + + Use mock endpoint + +commit 2a5a1158a9021c66cff2bca032c271b2bb8e4b28 +Merge: 3781052f6 dae6e4531 +Author: Jorge Gonzalez +Date: Thu Apr 29 14:09:32 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 9c4205bdb8dedcb64e3ddc3a77b3c5bcface0a1b +Merge: 61be62064 dae6e4531 +Author: Jorge Gonzalez +Date: Thu Apr 29 14:09:06 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit dae6e4531d1236d79d7f01c0badb2c5dce6cb825 +Merge: 6367e6f00 f5d931eb2 +Author: Carl Smith +Date: Thu Apr 29 14:05:03 2021 -0400 + + Merge pull request #819 from raft-tech/devops/817-add-clamav + + Issue 817: Add clamav to local and cloud.gov environments for virus scanning + +commit f5d931eb266471aa6e758142d05071f39d8451da +Merge: fc0729ac0 6367e6f00 +Author: John Willis +Date: Thu Apr 29 13:23:46 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 6367e6f00804242fceb0edead13d6f544162ca03 +Merge: a2794998c 0e6908edd +Author: Carl Smith +Date: Thu Apr 29 13:10:38 2021 -0400 + + Merge pull request #875 from raft-tech/kniz-raft-patch-2 + + Update communication-tools.md + +commit 0e6908edd6b45c6aa6524ed8f63c0b2e0b2cae25 +Merge: aa890c76c a2794998c +Author: Carl Smith +Date: Thu Apr 29 12:57:06 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit a2794998c58e4e9df4a276e8b87864ecca5f6ad0 +Merge: c3862d1e4 3e3d7263c +Author: Carl Smith +Date: Thu Apr 29 12:55:43 2021 -0400 + + Merge pull request #876 from raft-tech/kniz-raft-patch-3 + + Update our-team-and-values.md + +commit 3e3d7263c6d88ac69314eab96ae747a679a289ae +Merge: 63c958b95 c3862d1e4 +Author: Carl Smith +Date: Thu Apr 29 12:34:24 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-3 + +commit c3862d1e4521cd5a39cfc8dcfcc1780e0f0efce2 +Merge: ea40cc48d f7df6ad1b +Author: Carl Smith +Date: Thu Apr 29 12:33:09 2021 -0400 + + Merge pull request #874 from raft-tech/kniz-raft-patch-1 + + Create sprint-19-summary.md + +commit 395e10f9586d8c241b80ee6d25134f9679383d40 +Author: Jorge Gonzalez +Date: Thu Apr 29 12:26:19 2021 -0400 + + Add docstrings + +commit 61be620647b35fb2f10fa7e8fc81685d0cd1b34e +Merge: d6bd71ec1 ea40cc48d +Author: Jorge Gonzalez +Date: Thu Apr 29 12:20:19 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit d6bd71ec1f0dc61010e0e31cf478ed751261d062 +Author: Jorge Gonzalez +Date: Thu Apr 29 11:49:55 2021 -0400 + + Fix default stt issue + +commit f7df6ad1b0922ed2d969d6898deee77aaf980a6b +Merge: 35f5cc93f ea40cc48d +Author: Carl Smith +Date: Thu Apr 29 12:19:06 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit ea40cc48d2914ad5510684ac937868b73c912dd0 +Merge: 0b4eb2e2a 2b1f64958 +Author: Carl Smith +Date: Thu Apr 29 12:16:21 2021 -0400 + + Merge pull request #868 from raft-tech/documentation/personas-and-stakeholders + + [Documentation] Update to personas and stakeholders for Issue #804 + +commit 4156dc2971b8f9ace4ce2f9fa16e75939ecd561e +Merge: 83d4f31a1 3781052f6 +Author: Jorge Gonzalez +Date: Thu Apr 29 11:06:46 2021 -0400 + + Merge branch 'feat/767-logging' into feat/762-logging-uploads + +commit 83d4f31a13c056288c2a803b4b5819c50b79c0d5 +Author: Jorge Gonzalez +Date: Thu Apr 29 10:57:22 2021 -0400 + + Tweak permissions + +commit 394283cbc23dceba9926af908bc3be4d9efda0f1 +Merge: 9e91866f0 0b4eb2e2a +Author: Jorge Gonzalez +Date: Thu Apr 29 09:58:01 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/762-logging-uploads + +commit d0524b1aaf8dcdae445d787572e8ed3c6dcefac2 +Merge: 98a06f90a 0b4eb2e2a +Author: Jorge Gonzalez +Date: Thu Apr 29 09:20:35 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 98a06f90aa996612899f4bd2817c6d7166662e41 +Author: Jorge Gonzalez +Date: Thu Apr 29 09:20:30 2021 -0400 + + Update tdrs-frontend/src/components/Reports/Reports.jsx + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit fc0729ac0d5065c338d37b92d9be90ba5645580f +Author: John Willis +Date: Thu Apr 29 00:50:13 2021 -0400 + + Utilize raw string for EICAR test file + +commit 647760768dbd862d53571d1548a64e6adeb596b4 +Merge: 4a9243cf5 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:13:00 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit c6664309255407ddd490cd6f177fe546a2ba1bbd +Merge: 30b150921 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:12:33 2021 -0400 + + Merge branch 'raft-tdp-main' into carltonsmith-patch-4 + +commit 82dd1076c23822f4825782fe055f07ff51699c8c +Merge: c700b82e8 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:11:37 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 + +commit aa890c76c9ec5891ce2314e37da5e03ec5d484bb +Merge: 1ad901b44 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:02:19 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit 35f5cc93fb980e5301f0c616753fc17aed5e896e +Merge: b3b6b4abf 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:02:14 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 63c958b952e66d3bc4edbb0ce22c78d7542fdbcf +Merge: 1f8d42322 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:02:10 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-3 + +commit 2b1f649582fa003c9e0c1a27ab5ac8e4b1f6c891 +Merge: ac0294092 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 18:01:23 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/personas-and-stakeholders + +commit 31d6a052a04c07f638872260d7e28a3f8e435849 +Merge: 8f914c7c3 77b1b79e6 +Author: John Willis +Date: Wed Apr 28 17:47:29 2021 -0400 + + Merge pull request #809 from raft-tech/epics/783/issues/781/frontend-buildpacks + + Issue 781: [Frontend] Implement Buildpacks + +commit 8f914c7c339dcf973964099d3373d4bcd2c0b1dd +Merge: 0b4eb2e2a 4b4140ca4 +Author: John Willis +Date: Wed Apr 28 17:45:59 2021 -0400 + + Merge pull request #810 from raft-tech/epics/783/issues/735/backend-buildpacks + + Issue 735: [Backend] Implement buildpacks + +commit ab6d5e7cd5d866656e941edf8f716964436f15af +Merge: c82e6d565 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 17:42:23 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-fix-02af83d9d2ab980c36f5fb54f5f7b20e + +commit 3781052f6665146b29a82b6ead88ee290e01c4b4 +Merge: bd1092dc9 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 17:41:42 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit f084641c870b421b5464aa7f3044bbbb5fbb31ab +Author: John Willis +Date: Wed Apr 28 16:53:58 2021 -0400 + + Remove unnecessary tear down step + +commit 9e91866f0a719953363af5ce694b325a3aee90a5 +Author: Jorge Gonzalez +Date: Wed Apr 28 16:38:14 2021 -0400 + + Fix api tests + +commit 41530d70cb9785c6ce936c3982943c4d2a27167a +Merge: fb824b28e 0b4eb2e2a +Author: John Willis +Date: Wed Apr 28 16:34:53 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 0b4eb2e2ac5a5cef3351b86ed37dc4b10d388129 +Merge: 64d7ad311 899992c44 +Author: John Willis +Date: Wed Apr 28 16:33:23 2021 -0400 + + Merge pull request #871 from raft-tech/hotfix/870-pa11y-connection-errors + + Issue 870: Fix Pa11y Connection Errors + +commit 30b150921f0fb483e71634bcf95d75f84bd74a7f +Author: Carl Smith +Date: Wed Apr 28 16:13:24 2021 -0400 + + update link to migration + +commit fb824b28edb43115dc4770216bebbe16d8e9b935 +Author: John Willis +Date: Wed Apr 28 15:58:35 2021 -0400 + + Revert intentional test failure to restore passing state + +commit 98497e2f14f5f856ed79fdc6b591f7041e746248 +Author: John Willis +Date: Wed Apr 28 15:48:33 2021 -0400 + + Test that failing tests don't cause a false positive + +commit c0057b1768d7dc57d8f4f3c32316da15dbc430da +Author: Jorge Gonzalez +Date: Wed Apr 28 15:32:46 2021 -0400 + + Fix user reference + +commit 655689140219fe74e05da497856212f5c73ae6cb +Author: John Willis +Date: Wed Apr 28 15:25:26 2021 -0400 + + Prevent false positives for test success + +commit 4a9243cf5fa7feb25ca944177172998069f763a9 +Author: Aaron Beavers +Date: Wed Apr 28 13:32:20 2021 -0400 + + refactor file download reducer + +commit e2558c31f4b67b98b093faf42e8b1b799ef711fb +Author: Aaron Beavers +Date: Wed Apr 28 13:32:08 2021 -0400 + + Add test expectation of there being two buttons + +commit 3ed20a98e8f63951080f6468ca7d2818da8b7e52 +Author: Aaron Beavers +Date: Wed Apr 28 13:30:57 2021 -0400 + + update button class for test + +commit 25427cf162961c053f817f99032f57c57c09fc7e +Author: Aaron Beavers +Date: Wed Apr 28 11:36:53 2021 -0400 + + Move logic from file upload component to a seperate utility file + +commit bd1092dc9416f0fb83dedcc75fe3fe0ab1d32f7a +Author: Jorge Gonzalez +Date: Wed Apr 28 10:40:39 2021 -0400 + + Remove dead comment + +commit 1f8d423221e6a90710185468198097967b623e31 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Apr 28 08:31:30 2021 -0500 + + Update our-team-and-values.md + +commit 1ad901b445529df619993fcfecb08b437ccff68e +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Apr 28 08:25:41 2021 -0500 + + Update communication-tools.md + +commit b3b6b4abf4b43ded8709c61577b6d4f36a7b2919 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Apr 28 08:14:17 2021 -0500 + + Create sprint-19-summary.md + +commit d14391739e5858c562782b79d2331ddd43585a87 +Author: John Willis +Date: Tue Apr 27 17:39:12 2021 -0400 + + Fix linter error + +commit e34a1c32744b4b6007a51a7748db9f5f352923d5 +Author: John Willis +Date: Tue Apr 27 17:29:28 2021 -0400 + + Fix linter error + +commit 181095998f85cdf727ee6e347ad2abf3b4c45582 +Author: John Willis +Date: Tue Apr 27 17:18:20 2021 -0400 + + Add test for infected files using an EICAR test file + +commit d716d54dad6b92e79213accd345ae538d1f8bc43 +Author: Jorge Gonzalez +Date: Tue Apr 27 16:54:12 2021 -0400 + + bad import + +commit 899992c4436439b0dd01518b8c8564709a6b915a +Author: John Willis +Date: Tue Apr 27 16:34:30 2021 -0400 + + Reset Circle CI config changes + +commit d554cec401ac3698c81a408b173f5c5ba9d52757 +Author: John Willis +Date: Tue Apr 27 16:29:48 2021 -0400 + + Fix path for node modules + +commit 4d384b008eb24c3e04537f090c3ce00d8dc8fd75 +Author: John Willis +Date: Tue Apr 27 16:25:29 2021 -0400 + + Test manually installing chromium from puppeteer revision + +commit 974426b04f144fb621fc9d281c8240467e59769a +Author: John Willis +Date: Tue Apr 27 16:18:15 2021 -0400 + + Force Puppeteer to use packaged google chrome + +commit c0213cdcd105a13502dfd85cf886c2fe502aa43a +Author: John Willis +Date: Tue Apr 27 16:11:40 2021 -0400 + + Test manually installing chromium + +commit cadd002db09bbbe701fe0576564463c4a3568178 +Author: John Willis +Date: Tue Apr 27 15:45:42 2021 -0400 + + Upgraded pa11y version + +commit f4c3d17f48e83d2c3f7e5fc9e266e2e056c19e89 +Author: John Willis +Date: Tue Apr 27 15:27:34 2021 -0400 + + Issue 870: Fix Pa11y Connection Errors + +commit ac02940926ee03d8ec634428861473d9f0bbc868 +Merge: 40a360eeb 64d7ad311 +Author: Carl Smith +Date: Tue Apr 27 13:21:36 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/personas-and-stakeholders + +commit c700b82e8e7942cc2822e97863abfc3e172592b7 +Merge: 05f7356ef 64d7ad311 +Author: Jorge Gonzalez +Date: Tue Apr 27 09:43:12 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 + +commit 46538ae4ae934c284fc2fe019646116c302e698e +Author: Jorge Gonzalez +Date: Tue Apr 27 09:29:50 2021 -0400 + + Nits + +commit 2f2a3b9029b9821a1a042cdd472aedb9f2f7f41d +Merge: 31b397614 ae05060f6 +Author: Jorge Gonzalez +Date: Tue Apr 27 09:27:51 2021 -0400 + + Merge branch 'feat/767-logging' into feat/762-logging-uploads + + # Conflicts: + # tdrs-backend/tdpservice/core/views.py + +commit 40a360eeb85b47c27cebb2e7b9e71c299869cd11 +Author: Miles Reiter +Date: Mon Apr 26 23:06:32 2021 -0400 + + Update Stakeholders-and-Personas.md + + Final tweaks + +commit 9efe130f92878ebdd13edc157a64642b326c6921 +Merge: f403bc5fc 64d7ad311 +Author: John Willis +Date: Mon Apr 26 18:08:04 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit b11b1abfead6bb591acc091ee72025fcaf7d3a05 +Author: Jorge Gonzalez +Date: Mon Apr 26 17:12:28 2021 -0400 + + Update tdrs-frontend/nginx/nginx.conf + +commit ae05060f64e8bb9c9987bd4bb52aeb5e0d0ed2ad +Author: Jorge Gonzalez +Date: Mon Apr 26 16:55:02 2021 -0400 + + Add test for log output + +commit 5019fd4be293cd22823bbb7ef8b31e2d02ae3fad +Author: Jorge Gonzalez +Date: Mon Apr 26 16:31:32 2021 -0400 + + lint + +commit 9997ff2bfbba1de7a15e9ada01b1b62851fccf5c +Author: Jorge Gonzalez +Date: Mon Apr 26 15:01:02 2021 -0400 + + fix test + +commit b439e4e76acdc4620ad7d2e46ab0ddc52ca57fd6 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:36:39 2021 -0400 + + various fixes and improve logging statement + +commit 31b3976147313a58900946800e7e57cf17550d7e +Merge: e0def7031 743d5217a +Author: Jorge Gonzalez +Date: Mon Apr 26 14:40:42 2021 -0400 + + Merge branch 'feat/767-logging' into feat/762-logging-uploads + + # Conflicts: + # tdrs-backend/tdpservice/core/views.py + # tdrs-frontend/src/components/UploadReport/UploadReport.jsx + # tdrs-frontend/src/utils/eventLogger.js + +commit 6315322854b426929dcea2f3517208d25d5a8107 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:37:43 2021 -0400 + + typo + +commit 8b307eafde0d4bb4cc87d321e3e1d5fa81e0d4f7 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:37:31 2021 -0400 + + lint + +commit 743d5217aa2ddb58d3f111c391b0727905a205f9 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:36:39 2021 -0400 + + various fixes and improve logging statement + +commit 9126cfe0707a8d1aeeb9f6e0ae9e160c6bd5759b +Merge: b65356ab2 64d7ad311 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:15:15 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit f799fdccc77506f65ca6412ff49a30b5107a26c9 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:13:55 2021 -0400 + + Apply suggestions from code review + +commit 5c3a7cfce9db9e1c1fe674a1ac53d2b5b0967052 +Merge: c1cb03354 64d7ad311 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:12:43 2021 -0400 + + Merge branch 'raft-tdp-main' into issues/865 + +commit c1cb0335406b20b0dc8bccfaea92b64f6e55861c +Merge: 02b47e353 e37beef91 +Author: Jorge Gonzalez +Date: Mon Apr 26 14:12:27 2021 -0400 + + Merge branch 'main' into issues/865 + +commit 7d5ec8c9992ff05809a0719ccd9ec6f948d2d177 +Merge: b6842044d 64d7ad311 +Author: Jorge Gonzalez +Date: Mon Apr 26 12:04:07 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 83c8f68883cf42f07837b5da2657da172aa0f7c7 +Merge: 2b89b2f69 64d7ad311 +Author: Jorge Gonzalez +Date: Mon Apr 26 10:58:01 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 2b89b2f69a5974e4dc14b396cc5465ce7c1f22ed +Author: Jorge Gonzalez +Date: Mon Apr 26 10:48:55 2021 -0400 + + various tweaks + +commit 64d7ad31192065679b46a9d1bacd812092db9878 +Merge: 2374c2621 9342b7969 +Author: Carl Smith +Date: Mon Apr 26 10:38:58 2021 -0400 + + Merge pull request #862 from raft-tech/adp/updates-gov-a11y-review + + updated docs re: gov a11y review + +commit 9342b7969a8d7dcc85708db29c4e4f0204cb5c9b +Merge: b15861a91 2374c2621 +Author: Carl Smith +Date: Mon Apr 26 10:26:26 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/updates-gov-a11y-review + +commit 2374c262129085322403b9c6c9e0f5062b04b355 +Merge: a848714ae e14f8829f +Author: Carl Smith +Date: Mon Apr 26 10:24:36 2021 -0400 + + Merge pull request #837 from raft-tech/features/828/active-users + + Issue 828: Do not allow inactive users to log in + +commit e14f8829f61a3762a3276d9b41ea300151f0e29a +Merge: 1c6014d0f a848714ae +Author: Carl Smith +Date: Mon Apr 26 10:10:15 2021 -0400 + + Merge branch 'raft-tdp-main' into features/828/active-users + +commit 608be9586838ab52d686a597dbfade8b2b35fae0 +Merge: 33602a2ec a848714ae +Author: Jorge Gonzalez +Date: Mon Apr 26 10:09:47 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit a848714ae4dcf73a308e9e335fad86c3bce6a017 +Merge: 71a794165 6c0e7a9f6 +Author: Carl Smith +Date: Mon Apr 26 10:07:35 2021 -0400 + + Merge pull request #864 from raft-tech/hotfix/730-owasp-report-cypress-failure + + Hotfix: Remove usage of Cypress orb + +commit 02b47e3534ad7b2b8c20dfc8fc410e8bc6594058 +Author: Aaron Beavers +Date: Sat Apr 24 15:05:16 2021 -0400 + + Added a catch all route to show an error message on undefined paths + +commit 12da59172da937e1135e0b6c6671fe70b807a1f3 +Author: Aaron Beavers +Date: Sat Apr 24 15:04:06 2021 -0400 + + added explicit locations for each react route + +commit b15861a915478c5b391afdd1397bc609614b56dc +Merge: 0ace2927c 71a794165 +Author: Carl Smith +Date: Fri Apr 23 15:35:44 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/updates-gov-a11y-review + +commit c59a28859c908d1ff6d40cc57d1f4062c318d447 +Author: John Willis +Date: Fri Apr 23 15:33:06 2021 -0400 + + Added setup script to configure bucket in Localstack; Added validators for content type and file extension to ReportFile file field + +commit ba5bc0f1fdcec6ec0f546503e4770948f16006f2 +Merge: 2f15e73f9 f403bc5fc +Author: John Willis +Date: Fri Apr 23 14:40:30 2021 -0400 + + Merge branch 'devops/817-add-clamav' into backend/818-scan-and-upload-data-files + +commit f403bc5fcb82ef1bb7a1ce070d25f323456060c3 +Merge: b62a487f7 71a794165 +Author: John Willis +Date: Fri Apr 23 14:30:29 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 6c0e7a9f6b5921240b88feea093bf905c4d8646d +Author: John Willis +Date: Fri Apr 23 13:42:17 2021 -0400 + + Remove usage of Cypress orb + +commit 0ace2927cd9304e66b340cf906c998095e0c05d9 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 23 11:49:21 2021 -0400 + + updated timing of gov a11y review + +commit 0b12dbe1173d9539a271cedd0ad608d2bb50e90a +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 23 11:43:07 2021 -0400 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit b6842044daf42292f8b120c10b45ce04c8121eaa +Merge: 05d260489 71a794165 +Author: Jorge Gonzalez +Date: Fri Apr 23 11:42:22 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit b65356ab2bda62a4b26230a7bd61949266a81fe4 +Merge: ab5709fdf 71a794165 +Author: Jorge Gonzalez +Date: Fri Apr 23 11:41:58 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit 05f7356ef353856287afd74474ec87033322e1a5 +Merge: b992a959a 71a794165 +Author: Jorge Gonzalez +Date: Fri Apr 23 11:41:25 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 + +commit 71a7941653d2ccfd0065ad8e8c619cd8836c8cec +Merge: 14e483bdc dc97c9b9e +Author: Carl Smith +Date: Fri Apr 23 10:40:51 2021 -0400 + + Merge pull request #857 from raft-tech/features/owasp-html + + Issue 730: Generate OWASP ZAP report as part of the automated CI/CD process + +commit 6133c43eedc6268138a964ab77c6d8d2ce54fe6b +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 23 10:06:31 2021 -0400 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit e53164cc24e763ef7022f6902422fab920ec833e +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 23 09:59:40 2021 -0400 + + Update docs/Architecture Decision Record/009-git-workflow.md + +commit dc97c9b9e3a65031629683318ad3256d04f79d1a +Author: Carl Smith +Date: Fri Apr 23 08:15:33 2021 -0400 + + Update docs/Technical-Documentation/Zap-Scan-HTML-Report.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 2f15e73f9525b6b42765063147444d608a4d910b +Author: John Willis +Date: Thu Apr 22 18:33:51 2021 -0400 + + Accept file through Report viewset + +commit b992a959a8c4c49f7a449efb7fac70d74ecda3e2 +Author: snyk-bot +Date: Thu Apr 22 22:13:47 2021 +0000 + + fix: upgrade classnames from 2.2.6 to 2.3.0 + + Snyk has created this PR to upgrade classnames from 2.2.6 to 2.3.0. + + See this package in npm: + + + See this project in Snyk: + https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr + +commit aacf8296c2d8c48e7055bb3c714e3430db538950 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Thu Apr 22 17:53:37 2021 -0400 + + Update docs/Technical-Documentation/qasp-operational-checklist.md + +commit e7f221c07f212f70c324e6990034ddd54ee3d0f3 +Author: John Willis +Date: Thu Apr 22 17:43:48 2021 -0400 + + Added migration + +commit 0ec626f953924a5f8e8706bfa52422c57f8ed0b4 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Apr 22 17:26:45 2021 -0400 + + updated docs re: gov a11y review + +commit e0def7031416364c397c3ca1ed0db8c4721d8911 +Author: Jorge Gonzalez +Date: Thu Apr 22 16:51:21 2021 -0400 + + Log file uploads and add to django admin + +commit deaaa6397459b21e52d62ee1bbebfd897bad9d6d +Author: Carl Smith +Date: Thu Apr 22 13:03:29 2021 -0400 + + Update Zap-Scan-HTML-Report.md + +commit fceb4094d2aceeb65d68ae7ecd17406e31a4230f +Author: Carl Smith +Date: Thu Apr 22 13:03:07 2021 -0400 + + Update Zap-Scan-HTML-Report.md + +commit 70d5bf90fdcd84acd5f2b064f53603fa500cf036 +Author: Carl Smith +Date: Thu Apr 22 13:02:35 2021 -0400 + + Add files via upload + +commit c4da37b48c1af08adeb1c81b4abf09d62dc7a0d6 +Author: Carl Smith +Date: Thu Apr 22 13:02:13 2021 -0400 + + Update Zap-Scan-HTML-Report.md + +commit b6bcb3084387f04645567015a3f97adc13179836 +Author: Carl Smith +Date: Thu Apr 22 12:59:27 2021 -0400 + + Add files via upload + +commit 5898344c0be3e39ca6ae259272f67f404e90fe8a +Author: Carl Smith +Date: Thu Apr 22 12:59:04 2021 -0400 + + Update Zap-Scan-HTML-Report.md + +commit f96cfa22b62f9ba84ec42f4d696caf5f17ebf05b +Author: Carl Smith +Date: Thu Apr 22 12:56:45 2021 -0400 + + Add files via upload + +commit 9a314afe1925e417889b53fee28f3816e4fb4aeb +Author: Carl Smith +Date: Thu Apr 22 12:55:06 2021 -0400 + + Add files via upload + +commit 91d5ff02de00a41febd563144fd3c6759a312f73 +Author: Carl Smith +Date: Thu Apr 22 12:54:25 2021 -0400 + + Update Zap-Scan-HTML-Report.md + +commit c3f613382492bfcc0cac89ea79eb7eb27b3cac37 +Author: Carl Smith +Date: Thu Apr 22 12:39:44 2021 -0400 + + Add files via upload + +commit 351e5ee2be55d4f391d2e2a34323e0d3cf0499be +Author: Carl Smith +Date: Thu Apr 22 12:39:01 2021 -0400 + + Update Zap-Scan-HTML-Report.md + +commit 4a0ab295d6bfec5d4251ca45fb064e06f8ce19dd +Author: Aaron Beavers +Date: Thu Apr 22 12:17:17 2021 -0400 + + remove additional mirage start call after conflict resolution + +commit 7d53cba6f6a3818e29a756f093d1eb08c0641068 +Author: Aaron Beavers +Date: Thu Apr 22 12:12:49 2021 -0400 + + Start adding logic for faux preview of previously uploaded file + +commit f9320341085e4b4a9ab2764a8e4e483f702d2d8f +Merge: 572c5d61b c94761e53 +Author: Carlton Smith +Date: Thu Apr 22 11:24:42 2021 -0400 + + Merge branch 'features/owasp-html' of github.com:raft-tech/TANF-app into features/owasp-html + +commit 572c5d61bacbe7560467c00fb056355fea554ac5 +Author: Carlton Smith +Date: Thu Apr 22 11:24:22 2021 -0400 + + add docs + +commit c94761e53b7b6555869edfa692afa192262fd0e7 +Author: John Willis +Date: Thu Apr 22 11:21:53 2021 -0400 + + Update zap-scanner.sh + +commit f4c25de3e608cdbb3da572029bd9ff037add0612 +Author: Aaron Beavers +Date: Thu Apr 22 10:53:16 2021 -0400 + + Auto stash before merge of "epics/89/issues/416/download-files-frontend" and "origin/raft-tdp-main" + +commit 8e0589a8fb60492473a2c903990ade7b2a0e6308 +Merge: 535c0f42e 14e483bdc +Author: Aaron Beavers +Date: Thu Apr 22 10:51:24 2021 -0400 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend + +commit 2c5267483752ab9ab3cc87f28f84ea023b41db54 +Merge: 65b283fe3 33602a2ec +Author: Jorge Gonzalez +Date: Thu Apr 22 09:32:47 2021 -0400 + + Merge branch 'feat/767-logging' into feat/762-logging-uploads + +commit 33602a2ecafb3ccb420bc0c5f73e5ee2dd059d08 +Merge: 6f7667365 14e483bdc +Author: Jorge Gonzalez +Date: Thu Apr 22 09:32:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 072e32d2d042fdbcfddcc338ea2ac383122aefee +Merge: 6cd7f62a4 14e483bdc +Author: John Willis +Date: Wed Apr 21 17:33:58 2021 -0400 + + Merge branch 'raft-tdp-main' into features/owasp-html + +commit 05d260489098410c9ef105052bc1d950a65319e9 +Author: Jorge Gonzalez +Date: Wed Apr 21 17:18:34 2021 -0400 + + Fix error state bug + +commit 6cd7f62a4e2a4b68f216466a3dd2cafb911b6047 +Author: John Willis +Date: Wed Apr 21 17:09:23 2021 -0400 + + Updated cache key to use the appropriate checksum + +commit 9c8a6bafa1ad47a70a59332dfd6ac256451563ea +Author: John Willis +Date: Wed Apr 21 17:00:26 2021 -0400 + + Update config.yml + +commit a3094a7cf27da4977c1f045dc28aaccf612d1c1c +Author: John Willis +Date: Wed Apr 21 16:58:40 2021 -0400 + + Update config.yml + +commit 97751b7ba07307855c37d861f418c47f1cff287f +Author: John Willis +Date: Wed Apr 21 16:51:15 2021 -0400 + + Update config.yml + +commit ef70e55470b34bb7da708080cbc336d65c5dbdf7 +Author: John Willis +Date: Wed Apr 21 16:37:46 2021 -0400 + + Update config.yml + +commit 147c25210ce734fdf868391e5d33224fdee51ef9 +Author: Carl Smith +Date: Wed Apr 21 16:14:31 2021 -0400 + + Update zap-scanner.sh + +commit db9048be6694b4488e9f67c420ce4495337eaee8 +Author: Carlton Smith +Date: Wed Apr 21 16:08:30 2021 -0400 + + swap out gitignore files + +commit 95812fd0dfcd18fc6ecf84c24cb0df1c78f6d4f8 +Author: John Willis +Date: Wed Apr 21 15:02:40 2021 -0400 + + Use node orb to install yarn and packages + +commit 1f853d5853b03374ac2f91d5a6d8420496a21560 +Author: John Willis +Date: Wed Apr 21 14:49:15 2021 -0400 + + Update config.yml + +commit 0ed1fe82ea926e6411a7aaa3ddfce79db5244199 +Author: John Willis +Date: Wed Apr 21 14:48:34 2021 -0400 + + Update config.yml + +commit 1634aed2d0f3c30aa9eedeff7f28460d249c7855 +Author: John Willis +Date: Wed Apr 21 14:38:54 2021 -0400 + + Added Node orb to install yarn on machine executor + + https://circleci.com/developer/orbs/orb/circleci/node + +commit b55869143d4cdab09395d61573fbe478bb57a369 +Author: John Willis +Date: Wed Apr 21 14:23:53 2021 -0400 + + Update config.yml + +commit b62a487f7cedfc2992fc3cf434c616cfdd9144ab +Merge: 4cd55b1bb 14e483bdc +Author: John Willis +Date: Wed Apr 21 14:19:56 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 4522f33a3aa76203787d4d8748df1f6e5bad1b1d +Author: Carlton Smith +Date: Wed Apr 21 14:12:28 2021 -0400 + + add machine + +commit 65b283fe3c0797cfd42ada5e877e84a391e9b964 +Merge: 6f9a66798 6f7667365 +Author: Jorge Gonzalez +Date: Wed Apr 21 13:55:14 2021 -0400 + + Merge branch 'feat/767-logging' into feat/762-logging-uploads + +commit ab5709fdfd196087337c36209456891bcc6d479d +Author: Jorge Gonzalez +Date: Wed Apr 21 13:37:15 2021 -0400 + + Minor test fixes + +commit 4d808db7fd39f10c9dc419aab172f08e8fca118d +Author: Carlton Smith +Date: Wed Apr 21 12:34:51 2021 -0400 + + add docker back + +commit e917c9a3339afbe997d08c428a7de75825858440 +Author: Carlton Smith +Date: Wed Apr 21 12:21:50 2021 -0400 + + use machine to mount + +commit e160d61fd97839e1d45e77dae115bc51e80db4d1 +Merge: e4c8720ef 14e483bdc +Author: Jorge Gonzalez +Date: Wed Apr 21 12:08:18 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit 5d79d7936dbddcda22c8a2ee2a638844123b9c27 +Merge: 636127de0 14e483bdc +Author: Jorge Gonzalez +Date: Wed Apr 21 12:07:52 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 14e483bdcc87971782be750f74d4d974be8ba711 +Merge: 35b05716e babe98221 +Author: Carl Smith +Date: Wed Apr 21 11:16:17 2021 -0400 + + Merge pull request #821 from raft-tech/documentation/adr-download-strategy + + ADR: Download Strategy + +commit 6f9a667985f09f7ac5c85312b4787e4843bcdcf3 +Author: Jorge Gonzalez +Date: Wed Apr 21 10:12:15 2021 -0400 + + lint + +commit e4c8720efbb22f242c1656b3b1d5a478415db852 +Author: Jorge Gonzalez +Date: Wed Apr 21 10:10:33 2021 -0400 + + Fix typo in package.json + +commit 636127de0cded486dcc06a595e020cb68f8acf82 +Author: Jorge Gonzalez +Date: Wed Apr 21 09:55:36 2021 -0400 + + Add additional test + +commit babe982216ecb091d761f2b55637244b84a017cc +Merge: 2e932fb1d 35b05716e +Author: Carl Smith +Date: Wed Apr 21 09:54:35 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-download-strategy + +commit 3ce6a94d3d6993d4db7ae08ef1e332e0dfbfa58b +Author: John Willis +Date: Wed Apr 21 01:55:10 2021 -0400 + + Update settings to always use django storages so localstack can be used locally + +commit 31b6fe17f5eedb9ec6509ae1a763bb5c866645fe +Author: Miles Reiter +Date: Wed Apr 21 00:58:30 2021 -0400 + + Update Stakeholders-and-Personas.md + +commit 7000d259bede6c2429f9e59ad42d1f56c81a14a7 +Merge: 8e3afb25e 35b05716e +Author: Jorge Gonzalez +Date: Tue Apr 20 17:05:43 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit a7c88fec5f52957c60e997082198f807bdbb32b5 +Merge: 4e94d4f53 35b05716e +Author: Jorge Gonzalez +Date: Tue Apr 20 17:04:15 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/738-quarters-select + +commit 6f766736517133876b1da646262f82a906727231 +Author: Jorge Gonzalez +Date: Tue Apr 20 17:00:19 2021 -0400 + + fix test + +commit 83ce65e5f3425303d2ea84b37385d0237dead9f5 +Author: Jorge Gonzalez +Date: Tue Apr 20 16:59:27 2021 -0400 + + lint + +commit 4cd55b1bb8ca450ebc9253e38d9e2dff1f8d9687 +Author: John Willis +Date: Tue Apr 20 16:58:54 2021 -0400 + + Fix typo in environment variable name + +commit 3d38ebc398fdc3c6b1ee29e6fd1d38a5e97f5c7f +Merge: 9554cfe0f 35b05716e +Author: Jorge Gonzalez +Date: Tue Apr 20 16:58:48 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + + # Conflicts: + # tdrs-frontend/src/components/EditProfile/EditProfile.jsx + # tdrs-frontend/src/components/EditProfile/EditProfile.test.js + +commit 865ffe123d42324203761dbda38eb3fa7b4658cf +Merge: ab40fe711 35b05716e +Author: John Willis +Date: Tue Apr 20 16:57:56 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 4e94d4f53832659f5cd1bf049ae8063756033ca3 +Author: Jorge Gonzalez +Date: Tue Apr 20 16:56:47 2021 -0400 + + Fix tests + +commit 0d0cc33860b599a8031e4337e563e805d8932397 +Merge: 4db3e1121 b8936b00e +Author: Jorge Gonzalez +Date: Tue Apr 20 16:52:01 2021 -0400 + + Merge branch 'feat/530-select-stt' into feat/738-quarters-select + + # Conflicts: + # tdrs-frontend/src/components/Reports/Reports.test.js + # tdrs-frontend/src/components/UploadReport/UploadReport.test.js + # tdrs-frontend/src/reducers/reports.test.js + +commit 35b05716e2741945e670c8e24d369184e5b5699b +Merge: 8a96f2557 b8936b00e +Author: Carl Smith +Date: Tue Apr 20 16:48:28 2021 -0400 + + Merge pull request #774 from raft-tech/feat/530-select-stt + + Issue 530: Add STT ComboBox for OFA Admin Selection + +commit b8936b00e75d441a6aec0dcf2cf1ef2d4f3f8b33 +Author: Jorge Gonzalez +Date: Tue Apr 20 16:38:56 2021 -0400 + + Fix tests + +commit ab40fe711841cb6710f04cf2fd18e8693383c51b +Merge: a1623efc9 8a96f2557 +Author: John Willis +Date: Tue Apr 20 16:36:40 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit fdfdc13a5f725839f816f412e66648dc3d2f4d85 +Author: Jorge Gonzalez +Date: Tue Apr 20 16:32:24 2021 -0400 + + lint + +commit a1623efc923fb6d9166f422fa77a3e81f97a3860 +Author: John Willis +Date: Tue Apr 20 16:29:54 2021 -0400 + + Add network policy to enable Cloud.gov communication over internal route between backend and clamav-rest + +commit 9554cfe0f43f7a84c53a222fca29fd6766ec1d83 +Merge: 4fba2e1b1 8a96f2557 +Author: Jorge Gonzalez +Date: Tue Apr 20 16:27:59 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 6fd215b393c2859111c5b8960567acad44214866 +Merge: abb3cf5bc 8a96f2557 +Author: Jorge Gonzalez +Date: Tue Apr 20 16:18:22 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + + # Conflicts: + # tdrs-frontend/src/actions/reports.test.js + # tdrs-frontend/src/components/Reports/Reports.test.js + # tdrs-frontend/src/components/UploadReport/UploadReport.jsx + +commit 8a96f2557a3fae1f3d84af76b77bceaf0b904237 +Merge: 559b54914 e2f19c354 +Author: Carl Smith +Date: Tue Apr 20 16:10:53 2021 -0400 + + Merge pull request #732 from raft-tech/feat/430-submit-report + + Issue 430: Add Submit Files button to upload files + +commit c17e7a6e63b2ac4a7c26b8af49df2faf4aa47aaa +Author: Carlton Smith +Date: Tue Apr 20 16:09:27 2021 -0400 + + use weekly + +commit 6d249bf203a88977cd9d6259018ba53ada9583fb +Author: Carlton Smith +Date: Tue Apr 20 15:52:38 2021 -0400 + + add folders + +commit dde067f5dbda6f4b520996b3240b6dfa4a630b1a +Author: Carlton Smith +Date: Tue Apr 20 15:44:35 2021 -0400 + + adjust indentation + +commit e2537b0cf9fef21084c770f0420f81124ff0f7cb +Author: John Willis +Date: Tue Apr 20 15:37:41 2021 -0400 + + Increase memory quota for backend container + +commit 1cb1ca5c3aae7c7d5f49062e0e3c6e1239bbe627 +Author: Carlton Smith +Date: Tue Apr 20 15:33:59 2021 -0400 + + change back + +commit 4fba2e1b1575108e9e9c9a1e5cc0e528ac502c86 +Merge: bf837585d 3abdff772 +Author: Jorge Gonzalez +Date: Tue Apr 20 15:32:18 2021 -0400 + + Merge branch 'feat/430-submit-report' into feat/762-logging-uploads + + # Conflicts: + # tdrs-frontend/src/actions/reports.js + # tdrs-frontend/src/components/UploadReport/UploadReport.jsx + # tdrs-frontend/src/components/UploadReport/UploadReport.test.js + +commit 214057faaa8873016c7c9378ad155a23be4b3247 +Author: Carlton Smith +Date: Tue Apr 20 15:23:33 2021 -0400 + + produce html + +commit 8e3afb25e4d7b8c02e1fb2b65157234bd5d5f408 +Merge: e1f46a232 559b54914 +Author: Jorge Gonzalez +Date: Tue Apr 20 10:47:31 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit bf837585d05cd19f215f0dd6dee969356e8bc12d +Author: Jorge Gonzalez +Date: Tue Apr 20 10:39:14 2021 -0400 + + lint + +commit 7ab5694f34b92aee63a6d70aa36751ebcdbaa1dc +Author: Jorge Gonzalez +Date: Tue Apr 20 10:16:36 2021 -0400 + + Add basic test for logging endpoint + +commit 42446054bceb974856e4b9ba3eba03301aa856d1 +Author: John Willis +Date: Tue Apr 20 00:56:41 2021 -0400 + + Move deployment steps back to a single step to fix missing environment variables issue + +commit e29b0a178e83230b748b8a8dca49d79a936a3d99 +Author: John Willis +Date: Mon Apr 19 16:54:01 2021 -0400 + + Add -f flag to cf delete command + +commit aa4b7bfeee5b7c7304bd37948562f1971c6095d5 +Author: John Willis +Date: Mon Apr 19 16:15:41 2021 -0400 + + Updated clamav deployment step to first delete the existing app and route - to prevent memory quota exhaustion + +commit 31ce11d6cb972cacf3238291ec789d65eca76dd9 +Author: Jorge Gonzalez +Date: Mon Apr 19 16:10:06 2021 -0400 + + Refactor and improve event logger + +commit 943bb948c5748f75f7a1dd3f8cf86823ce97778b +Author: John Willis +Date: Mon Apr 19 15:44:26 2021 -0400 + + Increase memory quota for clamav-rest + +commit ccc7f8abe1bd87ab38bfb3ae15e5ddc9e5fefbe4 +Merge: 5356c5ff4 559b54914 +Author: Jorge Gonzalez +Date: Mon Apr 19 13:01:04 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 2e932fb1d1784d0c3876f97bb89f8350d656a1e5 +Merge: 2a7cbd7bf 559b54914 +Author: John Willis +Date: Mon Apr 19 12:16:52 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-download-strategy + +commit 9d6b6d22162f39f93c26503f7de10ca925216890 +Author: John Willis +Date: Mon Apr 19 11:39:54 2021 -0400 + + Pass CF_SPACE to deploy script + +commit c99ee4d49814ed60accefcab56e3f8bb89370769 +Author: John Willis +Date: Mon Apr 19 11:37:38 2021 -0400 + + Add back teardown step that was removed for testing + +commit 77b1b79e6bfd6c3000ab862aa64b9f0045747331 +Merge: 063c8d65c 559b54914 +Author: Carl Smith +Date: Mon Apr 19 11:31:31 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/783/issues/781/frontend-buildpacks + +commit 7a2f01e1c7fcd332a7fce6a97ebf5c84ca7907d6 +Merge: 637d3dd13 559b54914 +Author: John Willis +Date: Mon Apr 19 11:22:34 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 637d3dd1374b507b57a75aff6f72b577fd916668 +Author: John Willis +Date: Mon Apr 19 11:12:54 2021 -0400 + + Updated to use forked image of clamav-rest that has been updated to ClamAV 0.103.2 + +commit abb3cf5bc4f36203f10ca591a4ed17e3cbb37360 +Merge: 8b6c532ed 559b54914 +Author: Jorge Gonzalez +Date: Mon Apr 19 11:06:11 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit e2f19c354110a47ee829055dd37311525abf54de +Merge: 3abdff772 559b54914 +Author: Jorge Gonzalez +Date: Mon Apr 19 11:06:00 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/430-submit-report + +commit 2a7cbd7bf89a625a582f11fe65070a56e9bf386f +Author: Carl Smith +Date: Mon Apr 19 10:21:05 2021 -0400 + + Update data-file-downloads.md + + just a small update to the language + +commit 559b54914bef742e928bf3d8ed17b55ed15e844e +Merge: c2bc2c85b dc1ab5c48 +Author: Carl Smith +Date: Mon Apr 19 09:49:38 2021 -0400 + + Merge pull request #855 from raft-tech/adp/bd-update-antispell + + fixed spelling of antivirus in bd + +commit dc1ab5c481637e2b68caa3bc757f4cb22d14bbc8 +Merge: f278c2479 c2bc2c85b +Author: Carl Smith +Date: Mon Apr 19 09:22:33 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/bd-update-antispell + +commit ec5b0f362ece775032a5859b507f165d2a5a56c1 +Merge: f98d77257 c2bc2c85b +Author: John Willis +Date: Sun Apr 18 23:49:19 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit 4db3e1121b556f54bc0ec070365a6f5cc4b4fb09 +Author: Jorge Gonzalez +Date: Fri Apr 16 15:59:45 2021 -0400 + + Fix test + +commit f28e7e090300a0dda3acac3e224cdf245decaa98 +Author: Jorge Gonzalez +Date: Fri Apr 16 15:49:24 2021 -0400 + + Fix voiceover issue with error labels + +commit ad847c908ceadbfec5ce4802ba4b6ee194d75632 +Author: Jorge Gonzalez +Date: Fri Apr 16 15:19:17 2021 -0400 + + Improve validation styles + +commit c2bc2c85b2a725db7e7353d501df528d0be87b47 +Merge: d28204cdf 5efeccab3 +Author: John Willis +Date: Fri Apr 16 14:05:34 2021 -0400 + + Merge pull request #845 from raft-tech/shubhi-raft-patch-9 + + Create sprint-18-summary.md + +commit 5efeccab375c4a579080412c395d7f32c1413079 +Merge: 719284740 d28204cdf +Author: John Willis +Date: Fri Apr 16 13:52:57 2021 -0400 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 + +commit d28204cdfc5bf54a212df75116ed2ae412120980 +Merge: 93352d15f 5dd4d1623 +Author: John Willis +Date: Fri Apr 16 13:51:24 2021 -0400 + + Merge pull request #839 from raft-tech/documentation/security-toc + + Security TOC + +commit 14d78ad962a49d2f0c801a4f3ae9f447501d5b63 +Merge: 26b926fee 93352d15f +Author: John Willis +Date: Fri Apr 16 13:49:10 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/jwt-rotation + +commit 5dd4d16237f87648f5f836a5f8e54a50a5f77d75 +Merge: 24e3013af 93352d15f +Author: John Willis +Date: Fri Apr 16 13:41:20 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/security-toc + +commit 93352d15f4378d77a61ba6ecf4ebe9a2ecc6936f +Merge: aa8b17e79 013d2e9c1 +Author: John Willis +Date: Fri Apr 16 13:40:40 2021 -0400 + + Merge pull request #794 from raft-tech/documentation/access-controls-sc-28 + + Security Controls SC-28 + +commit 24e3013afc2a52ebe5204954dfd1fe2e6b912518 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Apr 16 13:00:12 2021 -0400 + + Update docs/Security-Compliance/Security-Controls/README.md + +commit 201490f9455581af43ee64aad71168ad1d3c9d13 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Apr 16 13:00:08 2021 -0400 + + Update docs/Security-Compliance/Security-Controls/README.md + +commit 013d2e9c1bc9eec5b103c53194f2c222c5d18517 +Merge: 1803d58b8 aa8b17e79 +Author: John Willis +Date: Fri Apr 16 12:57:32 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28 + +commit f278c2479e0197428dd3d035b2e4a1bd2701cb81 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Apr 16 12:51:28 2021 -0400 + + fixed spelling of antivirus in bd + +commit b0509588781ec9ce4f836e143430425688a31b39 +Merge: 935b0ccda aa8b17e79 +Author: John Willis +Date: Fri Apr 16 12:50:43 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-download-strategy + +commit 935b0ccda2ca526153c09857d3dd7ef1e652a30e +Author: John Willis +Date: Fri Apr 16 12:50:26 2021 -0400 + + Added technical documentation for download streaming strategy + +commit 535c0f42ec5e66a0cf1cb7e95c9d1f883fe8bd45 +Author: Aaron Beavers +Date: Fri Apr 16 12:14:19 2021 -0400 + + add mirage + +commit e0a295473146446e1713bbb86bd6e568911610f4 +Author: Aaron Beavers +Date: Fri Apr 16 12:03:36 2021 -0400 + + Add initial test + +commit d96f7ccd1a56a1f512fa5968fd70a669ad5e2007 +Author: Aaron Beavers +Date: Fri Apr 16 12:03:15 2021 -0400 + + Add hooks to get list of available files + +commit f2b86d42d05d30824ffbcddc4c985658222feeb4 +Author: Aaron Beavers +Date: Fri Apr 16 12:00:34 2021 -0400 + + Add download button + +commit 2b297d35e97507749fd0c0e5e99732f7bbb60b8a +Author: Aaron Beavers +Date: Fri Apr 16 11:59:12 2021 -0400 + + Possible change comment + +commit 3abdff7723bc72d1e984f2fe2762a92a7e68f79a +Author: Jorge Gonzalez +Date: Fri Apr 16 11:16:12 2021 -0400 + + document file signature types in validator + +commit 73e3fff1e6a8a540fb293411a6e6f59e7854b3d8 +Author: Aaron Beavers +Date: Fri Apr 16 11:00:00 2021 -0400 + + Add download actions + +commit 719284740dc19a7472442a026349e87031378f6f +Merge: 951d7d7a4 aa8b17e79 +Author: Carl Smith +Date: Thu Apr 15 16:45:41 2021 -0400 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 + +commit 951d7d7a4248497c74ec5492bb7dbddbf73585af +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Apr 15 16:29:44 2021 -0400 + + Update docs/Sprint-Review/sprint-18-summary.md + +commit 8b6c532ed0c5c29fce839d7b43eaf02111a88c4b +Merge: 86f7a36da aa8b17e79 +Author: Jorge Gonzalez +Date: Thu Apr 15 14:53:13 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 5356c5ff44339099f4eb933b23ac133a9175f4ac +Merge: f311d9390 aa8b17e79 +Author: Jorge Gonzalez +Date: Thu Apr 15 14:41:29 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 1e926263b24c98bddf8746c63dfbcc784290f59f +Author: Jorge Gonzalez +Date: Thu Apr 15 14:04:48 2021 -0400 + + tweak comments and fix error state + +commit 063c8d65cf2396d6fd320f5c9f319dd3c0a99a91 +Author: Aaron Beavers +Date: Thu Apr 15 13:05:38 2021 -0400 + + update copy target for nginx conf file + +commit ca12e625fe765069df2bb3403dcc21cf099f097c +Author: Jorge Gonzalez +Date: Thu Apr 15 13:05:16 2021 -0400 + + Fix yarn.lock + +commit 0160856d16e7e2704f5ee1340e696695e1c674d2 +Author: Aaron Beavers +Date: Thu Apr 15 13:05:16 2021 -0400 + + add buildpack specific nginx conf file + +commit e1723273a5e9dd0328c0ec6fbff7dd7ef06b6aa9 +Author: Aaron Beavers +Date: Tue Apr 13 11:59:31 2021 -0400 + + Revert "Updated nginx.conf for buildpacks" + + This reverts commit 91c21b083fd7d8b085998234d1627a4faf160396. + +commit 899118bb1b25dccf8a59ab20d67bfc7ba4bdc105 +Merge: 9db29a4fa aa8b17e79 +Author: Jorge Gonzalez +Date: Thu Apr 15 13:02:31 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/430-submit-report + + # Conflicts: + # tdrs-frontend/package.json + # tdrs-frontend/yarn.lock + +commit e1f46a232c271572d6cbde0a3feb69131c25d285 +Merge: d44cec223 aa8b17e79 +Author: Carl Smith +Date: Thu Apr 15 12:29:55 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit 26b926fee5e08846c2b26147549af0117b2a660a +Merge: 30a99766a aa8b17e79 +Author: Carl Smith +Date: Thu Apr 15 12:26:34 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/jwt-rotation + +commit 30a99766a2d01c985da3976b04a55d69b0560da1 +Author: Carl Smith +Date: Thu Apr 15 12:22:14 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: John Willis + +commit aa8b17e797d58095fb74cd76c2e64037ac9282b7 +Merge: 1f80e3771 c60d844b3 +Author: Carl Smith +Date: Thu Apr 15 12:10:27 2021 -0400 + + Merge pull request #853 from raft-tech/adp/update-bd + + updated boundary diagram md png and drawio + +commit c60d844b3526c5687909e3a2ff62cce7313afe79 +Merge: 37434ad31 1f80e3771 +Author: Carl Smith +Date: Thu Apr 15 11:49:36 2021 -0400 + + Merge branch 'raft-tdp-main' into adp/update-bd + +commit f998b93d0ac13136bf40152ae8f8e29a29f61292 +Author: Jorge Gonzalez +Date: Thu Apr 15 11:43:45 2021 -0400 + + Tweak validation + +commit d658a939b4285d8ed35a0fbba9fa874901c9828c +Merge: 79d75d09d 1f80e3771 +Author: Carl Smith +Date: Thu Apr 15 10:51:13 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/jwt-rotation + +commit 79d75d09d480f0d1203d55de40e0db196aba1808 +Author: Carl Smith +Date: Thu Apr 15 10:50:41 2021 -0400 + + Update jwt-key-rotation.md + +commit 4ee54d9cb576437a77169abe94782f54006ad9dd +Author: Carl Smith +Date: Thu Apr 15 10:38:47 2021 -0400 + + Update jwt-key-rotation.md + +commit 9346744748da94564dc80756d59c9c36720f40be +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Apr 15 10:33:46 2021 -0400 + + Update README.md + + Added si-12 and cm-07-02 + +commit 69a36d05de3018d5cf533d95d9d2de0e2918da32 +Author: Carl Smith +Date: Thu Apr 15 10:31:26 2021 -0400 + + Update docs/Technical-Documentation/jwt-key-rotation.md + + Co-authored-by: John Willis + +commit f311d9390986374f875803e3e55eedd3f80ae5a3 +Merge: 1ef52472a 1f80e3771 +Author: Jorge Gonzalez +Date: Thu Apr 15 09:18:47 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit d44cec223f901180e8b46a6418431ecf896e4259 +Merge: 12e75d818 1f80e3771 +Author: Jorge Gonzalez +Date: Thu Apr 15 09:18:32 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc + +commit ebeb9f3096244d1636f585370bc489cf6457b106 +Merge: 44aaefffd 1f80e3771 +Author: Jorge Gonzalez +Date: Thu Apr 15 09:17:42 2021 -0400 + + Merge branch 'raft-tdp-main' into features/850/windows-optimize + +commit 37434ad31efe4dc03d9a3880ff1f281d979ffd9f +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Apr 14 16:17:12 2021 -0400 + + updated boundary diagram md png and drawio + +commit 1f80e37710f2930fac97c8282966e55f0df6ac2c +Merge: 989339ed4 5e858e950 +Author: Carl Smith +Date: Wed Apr 14 15:37:43 2021 -0400 + + Merge pull request #816 from raft-tech/documentation/access-controls-cm-07-2 + + Security Control: CM-07(02) + +commit 5e858e9507b1247b0d76b49af913735df042c0a3 +Merge: b90d1a365 989339ed4 +Author: Carl Smith +Date: Wed Apr 14 15:08:21 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-cm-07-2 + +commit 68b8b6fed08c7d92cc11c685e298c96ebe475a9b +Author: Shubhi Mishra +Date: Wed Apr 14 13:50:59 2021 -0400 + + Update sprint-18-summary.md + +commit 44aaefffd65cec07a114a75dbbf67411c8108816 +Author: Carlton Smith +Date: Wed Apr 14 13:49:19 2021 -0400 + + add .gitattributes + +commit c984b64121f2b4c2f90fa66f8cf67eb07774dd39 +Merge: 160b064ee 989339ed4 +Author: Carl Smith +Date: Wed Apr 14 11:52:24 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-download-strategy + +commit 160b064ee2157c31a88a4cae31e67a0bfc2ea4a4 +Author: Carl Smith +Date: Wed Apr 14 11:52:19 2021 -0400 + + Update docs/Architecture Decision Record/013-download-strategy.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 989339ed40474d792cc49237b957cd8fab5f530f +Merge: 419bcd4a6 9d8e0c79c +Author: Carl Smith +Date: Wed Apr 14 11:31:39 2021 -0400 + + Merge pull request #820 from raft-tech/lfrohlich-patch-3 + + Security Control: SI-12 + +commit 9d8e0c79c6dc26393aef7d7416e75db0269fddea +Merge: abe39d378 419bcd4a6 +Author: Carl Smith +Date: Wed Apr 14 11:08:45 2021 -0400 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-3 + +commit 13fa159e9686c0a22f86d5a8607f22704c81490a +Author: Carl Smith +Date: Wed Apr 14 10:29:46 2021 -0400 + + Create jwt-key-rotation.md + +commit 12e75d81828bf17643f8d1f4388c8341498f35f1 +Author: snyk-bot +Date: Wed Apr 14 03:45:01 2021 +0000 + + fix: upgrade uswds from 2.9.0 to 2.11.1 + + Snyk has created this PR to upgrade uswds from 2.9.0 to 2.11.1. + + See this package in npm: + + + See this project in Snyk: + https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr + +commit be2541358a1c800f86ece444974ee4d8b083a91c +Author: Shubhi Mishra +Date: Tue Apr 13 17:42:36 2021 -0400 + + Create sprint-18-summary.md + +commit 1ef52472ae6ec7b7ca4243edf340921d65cbeee8 +Author: Jorge Gonzalez +Date: Tue Apr 13 17:06:00 2021 -0400 + + Fix import + +commit 3c0528a27b4f88ad867caf041dd332608b4d12a1 +Merge: ca9388b1f 48dc388e7 +Author: Jorge Gonzalez +Date: Tue Apr 13 16:57:58 2021 -0400 + + Merge remote-tracking branch 'origin/feat/767-logging' into feat/767-logging + +commit ca9388b1f0d139c2801ba8939942d110486f8edd +Author: Jorge Gonzalez +Date: Tue Apr 13 16:03:03 2021 -0400 + + Nit + +commit 48dc388e7d6a923d8242da14a88680e91d0cb93c +Merge: 7dc16f21d 419bcd4a6 +Author: Jorge Gonzalez +Date: Tue Apr 13 16:52:49 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 7dc16f21d9b37e0224f01befcd441726ba23bdfa +Author: Jorge Gonzalez +Date: Tue Apr 13 16:03:03 2021 -0400 + + Nit + +commit 1c6014d0fa9954ee1aae6aee27e8069e2d6c4894 +Merge: 25e854f2e 419bcd4a6 +Author: John Willis +Date: Tue Apr 13 15:47:47 2021 -0400 + + Merge branch 'raft-tdp-main' into features/828/active-users + +commit a828c746ebb047f6c50cf590fe026c95f4f13585 +Merge: d72048c3e 419bcd4a6 +Author: Carl Smith +Date: Tue Apr 13 15:40:12 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-download-strategy + +commit 4b4140ca4a8c2c5480bb722d143ec0a6830ef3a4 +Merge: f3c5fb503 419bcd4a6 +Author: John Willis +Date: Tue Apr 13 15:31:17 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/783/issues/735/backend-buildpacks + +commit 419bcd4a65c79480ac16e6870e8e7dc6393bca52 +Merge: a6c24cc7a f20b74c6b +Author: Carl Smith +Date: Tue Apr 13 15:30:14 2021 -0400 + + Merge pull request #825 from raft-tech/documentation/adr-dev-environment + + ADR: Development Environments + +commit f3c5fb503eac573181b6fcd3d784fa37c0f1f31f +Author: John Willis +Date: Tue Apr 13 15:22:28 2021 -0400 + + Fix linter error in settings + +commit f20b74c6b8bc3099281d9bd87618aac22f81b106 +Merge: 68795d68e a6c24cc7a +Author: Carl Smith +Date: Tue Apr 13 15:16:33 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-dev-environment + +commit 19f56232ea434921d68ed512ca0efd1dbfb083c0 +Author: Jorge Gonzalez +Date: Tue Apr 13 14:23:52 2021 -0400 + + Fix bad reference and tweak log message + +commit f5d3362a9068db7e803ed7e0f522e5b80b22ddfe +Merge: 44703c76d a6c24cc7a +Author: John Willis +Date: Tue Apr 13 14:24:44 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/783/issues/735/backend-buildpacks + +commit e222372b8ab4ffa88599fb8847b4f1385826caad +Merge: 8f5f00325 a6c24cc7a +Author: Jorge Gonzalez +Date: Tue Apr 13 12:51:19 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 8f5f0032593e3255a165447e7bdfe796d5c1119e +Author: Jorge Gonzalez +Date: Tue Apr 13 12:28:08 2021 -0400 + + Fix tests + +commit a6c24cc7a27dd666798fb3dff46412e3eb813a3e +Merge: a895c3844 4e0863fa0 +Author: Carl Smith +Date: Tue Apr 13 12:04:39 2021 -0400 + + Merge pull request #823 from raft-tech/documentation/adr-deploy-strategy + + ADR: Deploy Strategy Change + +commit 633cf38c3cef5d3af716559b2adac84961ba693b +Author: Aaron Beavers +Date: Tue Apr 13 12:01:02 2021 -0400 + + Update copy target + +commit 3806daddf21d75b5dae27593dad4eb9903774883 +Author: Aaron Beavers +Date: Tue Apr 13 12:00:09 2021 -0400 + + Updated all references to manifest + +commit 91c21b083fd7d8b085998234d1627a4faf160396 +Author: Aaron Beavers +Date: Tue Apr 13 11:59:31 2021 -0400 + + Updated nginx.conf for buildpacks + +commit 45904d3e36b41d40d5e8b1e20565791277f299ee +Author: Aaron Beavers +Date: Tue Apr 13 11:58:59 2021 -0400 + + Added mime.types file required by nginx buildpack + +commit c313131fa42f437a0ba156ef8e368876721c3d28 +Author: Aaron Beavers +Date: Tue Apr 13 11:58:47 2021 -0400 + + Add new manifest for buildpack deployment + +commit 1ccbadee3b9a4322cffdb52f8b95ebcb95793329 +Author: Aaron Beavers +Date: Tue Apr 13 11:58:31 2021 -0400 + + Add deploy script for frontend + +commit 44703c76d5ac015ba988c7484f0d1fe021785801 +Author: Aaron Beavers +Date: Tue Apr 13 11:52:35 2021 -0400 + + Update name of manifest file to be used + +commit 617e9581c7842d39647ee673a1221c3911dd3193 +Author: Aaron Beavers +Date: Tue Apr 13 11:51:25 2021 -0400 + + Add urls to CSRF_TRUSTED_ORIGINS + +commit 431ac279f94735db8e2cb2ff595406661ac3d3ce +Author: Aaron Beavers +Date: Tue Apr 13 11:50:56 2021 -0400 + + Add new manifest for buildpack deploy + +commit 050ed64fa4b0cfc3115e8293b4228740cb11b2ba +Author: Aaron Beavers +Date: Tue Apr 13 11:50:42 2021 -0400 + + Add helper script to set up env vars + +commit 04baf44cc0233a0a73124704ed8ea888c136b456 +Author: Aaron Beavers +Date: Tue Apr 13 11:50:28 2021 -0400 + + Add deployment script + +commit 4e0863fa08b15f38049a467e86b742decba64254 +Merge: 8797b5811 a895c3844 +Author: Carl Smith +Date: Tue Apr 13 11:37:21 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-deploy-strategy + +commit 8797b5811705502476709565fbb2ea059afb1cdc +Author: Carl Smith +Date: Tue Apr 13 11:37:15 2021 -0400 + + Update docs/Architecture Decision Record/014-deploy-strategy.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit ccb650007c06f506deb1ce623800f26a3a1ddb09 +Merge: 913fd669e a895c3844 +Author: Jorge Gonzalez +Date: Tue Apr 13 11:00:04 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit a895c3844bce30d7fb7cd7bc9a598b21e70ae7d1 +Merge: f8b8a8bee 088eafe4a +Author: Carl Smith +Date: Tue Apr 13 10:52:32 2021 -0400 + + Merge pull request #768 from raft-tech/frontend/548/local-build-improvements + + Issue 548: As a frontend developer, I want fast local builds with no unused packages installed + +commit 913fd669edc88ccb0c61e5d8804ebf34f8633d82 +Author: Jorge Gonzalez +Date: Tue Apr 13 10:17:38 2021 -0400 + + Add basic client-side logging + +commit f98d7725780a8526a38d0cc0ad082779295519f8 +Author: John Willis +Date: Mon Apr 12 19:07:45 2021 -0400 + + Use explicit map-route command for clamav-rest to allow passing in variables to the hostname + +commit a7c251f707309ba645ddcb40311043fde53fda48 +Author: Carl Smith +Date: Mon Apr 12 15:26:15 2021 -0400 + + Update docs/Security-Compliance/README.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 517e6c1cab4e4ade98d3ae45ebf2f0b139f4b58f +Author: Jorge Gonzalez +Date: Mon Apr 12 14:38:27 2021 -0400 + + Remove dead comment + +commit ae3e702b6e5f4518f8aee31c63587d112f69c59b +Author: Jorge Gonzalez +Date: Mon Apr 12 14:21:36 2021 -0400 + + Fix more tests + +commit d6d1d233cc5add667e2abd456f59371d3bb77013 +Author: Jorge Gonzalez +Date: Mon Apr 12 14:13:38 2021 -0400 + + Eslint nits + +commit 564103a0bd5e3f330c16ac284f648fcbd761fc26 +Author: Jorge Gonzalez +Date: Mon Apr 12 14:03:44 2021 -0400 + + Fix tests + +commit 242718298698ac5521cf9fdb1a0964a54a0a2841 +Author: Jorge Gonzalez +Date: Mon Apr 12 13:10:06 2021 -0400 + + Tweak styles + +commit 68795d68e584ff7aabe0eef87e9d265039574e79 +Author: Carl Smith +Date: Mon Apr 12 10:22:45 2021 -0400 + + Update 015-development-environments.md + +commit ee25bad88c470c582608b7e0565169800188dd46 +Merge: b987b24e0 f8b8a8bee +Author: Carl Smith +Date: Mon Apr 12 10:14:08 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-dev-environment + +commit ec47d743bce4f67f42bc58b4d73d4f4fe8c13af4 +Merge: f863ebf91 f8b8a8bee +Author: Carl Smith +Date: Mon Apr 12 10:11:14 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-deploy-strategy + +commit 2ffff58d341deca44915e404eb1a51ac6c1b951e +Merge: 20c56e994 75f31faba +Author: Jorge Gonzalez +Date: Mon Apr 12 10:10:19 2021 -0400 + + Merge remote-tracking branch 'origin/feat/738-quarters-select' into feat/738-quarters-select + + # Conflicts: + # tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx + +commit f863ebf910065333bb6ee894893fa0196bb55961 +Author: Carl Smith +Date: Mon Apr 12 10:08:16 2021 -0400 + + Update boundary-diagram.md + +commit ed8f5a7279a87758fed04bcde0a9a894128b4871 +Author: Carl Smith +Date: Mon Apr 12 10:06:26 2021 -0400 + + Update boundary-diagram.md + +commit d72048c3ec370787a20159e433d6d8c3ae614a44 +Merge: 2ee1db937 f8b8a8bee +Author: Carl Smith +Date: Mon Apr 12 10:03:09 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/adr-download-strategy + +commit 2ee1db937d7fd2ac54d51bdafd79bf4646421c61 +Author: Carl Smith +Date: Mon Apr 12 09:45:09 2021 -0400 + + Update 013-download-strategy.md + +commit 25e854f2e02c88e8d393da362873071a6e8f484f +Author: Carlton Smith +Date: Mon Apr 12 09:02:38 2021 -0400 + + linting issue + +commit 4351e0bd76861d33143d4078c4de4882687de056 +Author: Carlton Smith +Date: Mon Apr 12 08:51:27 2021 -0400 + + update test for text change + +commit bf39525c90fd72bea8adb5f5b94f656df71a69ce +Author: Carl Smith +Date: Mon Apr 12 08:39:03 2021 -0400 + + Update tdrs-backend/tdpservice/users/api/login.py + + Co-authored-by: John Willis + +commit 305223cd3edea13b0fda823b5c7ebb95e7f319d5 +Author: Carl Smith +Date: Mon Apr 12 08:36:42 2021 -0400 + + Update .gitignore + +commit d357927c90854a8f6586c1bafbd7ecaa0605bc8c +Merge: d61d3c8c2 f8b8a8bee +Author: John Willis +Date: Fri Apr 9 18:48:44 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit d61d3c8c2768ef76444ef6489e62392c0eb5fb51 +Author: John Willis +Date: Fri Apr 9 17:51:52 2021 -0400 + + Temp: comment out docker teardown + +commit 4c2c285006f86b2b5844672a634b8a675ec021ca +Author: John Willis +Date: Fri Apr 9 17:05:53 2021 -0400 + + Comment out teardown to test race condition theory + +commit 20c56e994958dfbf2f71bcd7de011dbd7d9c344f +Author: Jorge Gonzalez +Date: Fri Apr 9 16:06:21 2021 -0400 + + Prevent search before required selections are made + +commit 75f31faba3973169eee0dd3b3c3606d908392f64 +Author: Jorge Gonzalez +Date: Fri Apr 9 16:06:21 2021 -0400 + + Prevent search before required selections are made + +commit 6bf9bc146446c384427340217e8637967346730c +Author: John Willis +Date: Fri Apr 9 15:47:02 2021 -0400 + + Added docstring needed for linter + +commit 586812f1bf791e9e5520431023f9774979a5d757 +Author: John Willis +Date: Fri Apr 9 15:41:06 2021 -0400 + + Added test for ClamAV accessibility + +commit 42325f223c11f2b1ebf351d98d8f256d6cb8f7fb +Author: Carl Smith +Date: Fri Apr 9 15:21:13 2021 -0400 + + Update README.md + +commit 974094a876ec8ffe1dc02e59ab6113582d278e5c +Author: Carl Smith +Date: Fri Apr 9 15:20:17 2021 -0400 + + Update README.md + +commit c8b8c508871b0be97f3d6c55fc7a827c1e2ec0f2 +Author: Carl Smith +Date: Fri Apr 9 15:06:01 2021 -0400 + + Create README.md + +commit 1f249fdd60715cc362a3698ec8dce4000988b869 +Author: Carl Smith +Date: Fri Apr 9 15:04:26 2021 -0400 + + Update README.md + +commit 9b2dcce765cca0eaf35db7fbea08c77687408db4 +Author: Carl Smith +Date: Fri Apr 9 15:02:31 2021 -0400 + + Create README.md + +commit b147cc772855e0d14b837ac21d22b76901149c59 +Author: John Willis +Date: Fri Apr 9 14:59:07 2021 -0400 + + Add depends_on for clamav-rest to web container + +commit c3264d7d4c3db6a48e6e02b50679999c8e00d241 +Author: John Willis +Date: Fri Apr 9 14:38:23 2021 -0400 + + Move clamav-rest outside of deploy script + +commit 088eafe4a3abb81c0f2682bd5e1e73723a7cb295 +Merge: 32953d220 f8b8a8bee +Author: John Willis +Date: Fri Apr 9 14:23:52 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements + +commit 604f1e14054e2299b014962d64c71c2f4d3ee9ee +Author: Jorge Gonzalez +Date: Fri Apr 9 14:19:42 2021 -0400 + + whitespace + +commit 02686338844342c8b9dd92301487773ca04f2e79 +Author: John Willis +Date: Fri Apr 9 14:19:29 2021 -0400 + + Add echo statement for troubleshooting + +commit b1546f66f53b2ab07b6022bb0e3e7d9096669290 +Merge: 94522d783 86f7a36da +Author: Jorge Gonzalez +Date: Fri Apr 9 14:15:13 2021 -0400 + + Merge branch 'feat/530-select-stt' into feat/738-quarters-select + + # Conflicts: + # tdrs-frontend/src/actions/reports.test.js + # tdrs-frontend/src/components/Reports/Reports.jsx + # tdrs-frontend/src/reducers/reports.js + # tdrs-frontend/src/reducers/reports.test.js + +commit c6a7384bc37c0b72e1acc49d3e100b13bac254a6 +Merge: 0372804f4 db587ae9b +Author: Carlton Smith +Date: Fri Apr 9 13:59:33 2021 -0400 + + Merge branch 'features/828/active-users' of github.com:raft-tech/TANF-app into features/828/active-users + +commit 0372804f49b9370a81eaf40ae79c8cae7df3f694 +Author: Carlton Smith +Date: Fri Apr 9 13:59:08 2021 -0400 + + add test + +commit db587ae9b5af57c929af0e415b70d1c7b5d3c12a +Merge: c4a814fe9 f8b8a8bee +Author: Carl Smith +Date: Fri Apr 9 12:32:13 2021 -0400 + + Merge branch 'raft-tdp-main' into features/828/active-users + +commit b90d1a365e58e2929bf0f552bc1b65d6c167065f +Author: John Willis +Date: Fri Apr 9 11:52:44 2021 -0400 + + Add line about preventing known malicious files + +commit c4a814fe901a017be7d80b4a9aba8628328c29fd +Author: Carlton Smith +Date: Fri Apr 9 11:39:50 2021 -0400 + + remove unneeded + +commit ef6e0875ceb651cc633fcf9384182cef731178ce +Author: Carlton Smith +Date: Fri Apr 9 11:33:49 2021 -0400 + + handle inactive user + +commit 571c67c16d95ffb42f25d1fa67df51eceecd8fb2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Apr 9 11:09:18 2021 -0400 + + Update docs/Security-Compliance/Security-Controls/cm-7-2/index.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit bd3b43ca5b35cdd8e5fbe444f47b287624b20cea +Author: Jorge Gonzalez +Date: Fri Apr 9 10:43:58 2021 -0400 + + Fix linter + +commit 86f7a36daaa0bdf4a4647222dac5c0c5081bd5ce +Merge: 2585d6ab7 f8b8a8bee +Author: Jorge Gonzalez +Date: Fri Apr 9 10:30:40 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit b07478cfb19af8fe689f87c3bffe625c3e977a25 +Merge: 70b055a06 f8b8a8bee +Author: Jorge Gonzalez +Date: Fri Apr 9 10:22:56 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/767-logging + +commit 70b055a063d9ac9cfd6d1fdb8c93d35d2ad89d3d +Author: Jorge Gonzalez +Date: Fri Apr 9 10:21:55 2021 -0400 + + Create abstract event logger and endpoint + +commit 48f6b0e2c28901194ef419cc34ee6de16ddc064f +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 29 13:21:40 2021 -0500 + + Update index.md + +commit ab05fa0fd555474e8a8d0bb58c776eb96e509ec8 +Author: Carl Smith +Date: Mon Mar 29 13:11:36 2021 -0400 + + Create index.md + +commit 029474bf75a3bb7352f560491d185039305be4b1 +Author: John Willis +Date: Wed Apr 7 15:09:47 2021 -0400 + + Issue 699: Updated AV ADR to include AV signature updates + +commit 72f93d299e92f1f216001e2b4470a4e959adf231 +Author: Jorge Gonzalez +Date: Wed Apr 7 14:07:16 2021 -0400 + + Create logging endpoint + +commit 2585d6ab7028e8d4c99e840a442d20a2ad7c5f25 +Author: Jorge Gonzalez +Date: Fri Apr 9 09:23:13 2021 -0400 + + Minor fixes + +commit f8b8a8beee89c28d46b696efafe60da1c7dbe8f2 +Merge: 6a5a19946 405a59867 +Author: Carl Smith +Date: Fri Apr 9 09:15:55 2021 -0400 + + Merge pull request #832 from raft-tech/docs/699-av-adr-update + + Issue 699: Updated AV ADR to include AV signature updates + +commit 405a598676e557e86a5216ca4782603545a24869 +Merge: 79a2b39b6 6a5a19946 +Author: John Willis +Date: Thu Apr 8 17:09:57 2021 -0400 + + Merge branch 'raft-tdp-main' into docs/699-av-adr-update + +commit 82588a19105877ef5194aa28269399a5d3a1ddaf +Merge: 47152a56f d33c4121f +Author: Jorge Gonzalez +Date: Thu Apr 8 11:23:18 2021 -0400 + + Merge remote-tracking branch 'origin/feat/530-select-stt' into feat/530-select-stt + +commit 47152a56f4039aaa9ba397429853fad6716a4040 +Author: Jorge Gonzalez +Date: Thu Apr 8 11:23:10 2021 -0400 + + Add comments + +commit d33c4121fc8ec012fdb328aa02747c0e7b9c3c34 +Merge: 752991d30 6a5a19946 +Author: Jorge Gonzalez +Date: Thu Apr 8 11:20:23 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 6a5a199461100e6e8fb3e4286500abb395697c68 +Merge: 75e4d54cf 64108b9f5 +Author: Carl Smith +Date: Thu Apr 8 09:52:55 2021 -0400 + + Merge pull request #801 from raft-tech/documentation/access-controls-7 + + Security controls: AC-07 + +commit 64108b9f5ab16ebd859b43a3bcc2fbd07831c53b +Merge: aa765f722 75e4d54cf +Author: Carl Smith +Date: Thu Apr 8 09:30:51 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-7 + +commit 1803d58b8d043128929d004904701cc37c571df5 +Merge: 6624af052 75e4d54cf +Author: Carl Smith +Date: Thu Apr 8 09:29:36 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28 + +commit 6624af052fb16caeecc27ee9a16faa84d74bc1d4 +Author: Carl Smith +Date: Thu Apr 8 09:28:08 2021 -0400 + + Update index.md + +commit 9db29a4fa2c733e7f24501556d69cd502a7b76ef +Author: Jorge Gonzalez +Date: Wed Apr 7 16:33:08 2021 -0400 + + Fix alert style and prevent submission when there are no changes + +commit cece54c5477c56043cc8942d59532ffb5b808d07 +Author: Jorge Gonzalez +Date: Wed Apr 7 16:10:44 2021 -0400 + + Fix error message label + +commit 79a2b39b61e0dbf15bcdb043ea84866ce26734d1 +Author: John Willis +Date: Wed Apr 7 15:09:47 2021 -0400 + + Issue 699: Updated AV ADR to include AV signature updates + +commit 0f6f4bb508bfffeb260f8d84b8dfeb67a7e97aa7 +Merge: 791c7dab8 75e4d54cf +Author: John Willis +Date: Wed Apr 7 14:23:21 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/817-add-clamav + +commit b987b24e03031337e3f22268d8cbd3ae8c0469db +Author: John Willis +Date: Wed Apr 7 11:52:38 2021 -0400 + + Add time estimate + +commit 32953d220b90add08fb5daf83d97589d851555a4 +Merge: 662e0f9b4 75e4d54cf +Author: John Willis +Date: Wed Apr 7 11:26:27 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements + +commit c82e6d565ffdc210fb8d214ea34e364f68058f8e +Author: snyk-bot +Date: Wed Apr 7 05:54:03 2021 +0000 + + fix: tdrs-backend/requirements.txt to reduce vulnerabilities + + + The following vulnerabilities are fixed by pinning transitive dependencies: + - https://snyk.io/vuln/SNYK-PYTHON-DJANGO-1090612 + +commit 07e0a26c3092c87d00c18b8b635366c3c312540a +Author: Jorge Gonzalez +Date: Tue Apr 6 15:58:43 2021 -0400 + + whitespace + +commit 3d28c12ebc88bcffbf0aeb3e360bfa0426a0516e +Merge: 9d08caac9 75e4d54cf +Author: Jorge Gonzalez +Date: Tue Apr 6 11:20:20 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/430-submit-report + +commit 42b1d9ddc9c861b7acf34bc9b59cf57478878e6e +Author: Carl Smith +Date: Tue Apr 6 14:06:12 2021 -0400 + + Create 015-development-environments.md + +commit 35af26bb0af63c56f6a853835abbe58e9cf77d1e +Author: Carl Smith +Date: Tue Apr 6 12:45:12 2021 -0400 + + Create 014-deploy-strategy.md + +commit 752991d306e3c680c1c3ab97f9a6f9e13ea1e09d +Merge: 8fab9f621 75e4d54cf +Author: Jorge Gonzalez +Date: Tue Apr 6 12:28:54 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 846af331c7cb3a5ea08f48f59e62a207c1e49364 +Author: Carl Smith +Date: Tue Apr 6 11:55:59 2021 -0400 + + Create 013-download-strategy.md + +commit 9d08caac948b37e298f08fd6eb4058e7bb69faf1 +Author: Jorge Gonzalez +Date: Tue Apr 6 11:03:37 2021 -0400 + + nits + +commit 75e4d54cf58b306202a7705c564d6c1f3273ab4f +Merge: aef626595 fd65bde40 +Author: Carl Smith +Date: Tue Apr 6 11:01:48 2021 -0400 + + Merge pull request #814 from raft-tech/fix/773-header-menu + + Issue 773: As a logged out user, I should not see the header menu with Welcome, Reports, Profile, Admin links + +commit 5ee66463bff08fc1a145068b6b30f41c3cd40e19 +Author: Jorge Gonzalez +Date: Tue Apr 6 10:08:52 2021 -0400 + + resolve ssri + +commit 1a4b0eef8cd0fa329c81b77552c2adc2b7328492 +Author: Jorge Gonzalez +Date: Mon Apr 5 17:57:59 2021 -0400 + + Fix backend tests + +commit b666fcc542671476b59e2bbc68f3661b83619852 +Author: Jorge Gonzalez +Date: Mon Apr 5 12:07:36 2021 -0400 + + Fix file validation and upload tests + +commit abe39d37866f350121f6c0360882c56adb8a33be +Author: Carl Smith +Date: Mon Apr 5 16:51:42 2021 -0400 + + Update index.md + +commit 5128fde54ce4a7ea5946f98fda0850c18cac037d +Author: Carl Smith +Date: Mon Apr 5 16:50:32 2021 -0400 + + Rename si-12 to docs/Security-Compliance/Security-Controls/si-12/index.md + + updated path and filename + +commit 2f8387f071aac4ba4dc645823030d8e5b109385e +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Apr 5 15:26:42 2021 -0400 + + Create si-12 + +commit aeb27a568bee4ab4cb6861d3eb67f27386bcdd0a +Author: Carl Smith +Date: Mon Apr 5 12:34:28 2021 -0400 + + Rename docs/Security-Compliance/Security-Controls/index.md to docs/Security-Compliance/Security-Controls/cm-7-2/index.md + + move to folder + +commit 791c7dab8a742ae355091e7b21f078c7126b5914 +Author: John Willis +Date: Fri Apr 2 18:31:14 2021 -0400 + + Fix typo in manifest + +commit 7a0737665bcd172dc202de58bf25cff7a32d4d9b +Author: John Willis +Date: Fri Apr 2 18:28:20 2021 -0400 + + Add clamav-rest to docker and Cloud.gov configs + +commit d266a7176493870377c12ad3297a23c06b2dc4b3 +Author: Jorge Gonzalez +Date: Fri Apr 2 15:44:54 2021 -0400 + + Minor fixes + +commit 6448d7fb803dbca52450e48060836940cb6a882d +Author: Carlton Smith +Date: Fri Apr 2 14:57:21 2021 -0400 + + add documentation + +commit fd65bde408573b6ca520dcd36ef60f6fc3cfac28 +Author: Jorge Gonzalez +Date: Fri Apr 2 14:11:43 2021 -0400 + + Update invalid cypress test + +commit c15e00dc248678c670f45636efdd143a2a808343 +Merge: 5219a6fc9 aef626595 +Author: Jorge Gonzalez +Date: Fri Apr 2 14:04:38 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/773-header-menu + +commit f5b00d4bcea0e039068ddafd51939b54e808c36d +Author: Jorge Gonzalez +Date: Fri Apr 2 13:19:26 2021 -0400 + + Update actions in validation + +commit dd67f66894ed1d44afb6f7c56f265fe7c6be8d95 +Merge: 5646eb8d5 aef626595 +Author: Jorge Gonzalez +Date: Fri Apr 2 12:55:36 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/430-submit-report + +commit 5646eb8d56c1c3a2c9e29f595da26ea2929124e3 +Author: Jorge Gonzalez +Date: Wed Mar 31 18:38:33 2021 -0400 + + Fix file input validation + +commit aef626595398ee59f673a4efbfd76ef2f90eb538 +Merge: 9e5489ebb 202d2f6d1 +Author: Carl Smith +Date: Fri Apr 2 12:45:27 2021 -0400 + + Merge pull request #776 from raft-tech/documentation/access-controls-sc-20 + + Security Controls SC-20 + +commit 202d2f6d1fd88e2d1e0e8640b2a7116daa0c7e57 +Merge: 090dbb385 9e5489ebb +Author: Carl Smith +Date: Fri Apr 2 12:34:59 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-20 + +commit 9e5489ebb4d344fccfd4ccf76794531e8c82d6b7 +Merge: 7a16c0b9d 5bcf115bc +Author: Carl Smith +Date: Fri Apr 2 12:09:09 2021 -0400 + + Merge pull request #800 from raft-tech/documentation/access-controls-sc-28(1) + + Security Controls: SC-28(1) + +commit 5bcf115bcf6f5398e2e14e0caec3979f34c67183 +Merge: 5d6820348 7a16c0b9d +Author: Carl Smith +Date: Fri Apr 2 11:57:47 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28(1) + +commit 7a16c0b9d93ac9b132fed7918fd68b33338c0b15 +Merge: 71a5bc791 d8bb3a4dc +Author: Carl Smith +Date: Fri Apr 2 11:36:20 2021 -0400 + + Merge pull request #678 from raft-tech/documentation/audit-and-accountability-au-02 + + Security Controls AU-02 + +commit d8bb3a4dc9d5e76490d1d990fc7e18e150172cf7 +Merge: 6abfc317a 71a5bc791 +Author: Carl Smith +Date: Fri Apr 2 10:59:27 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit e03d9a0e5efa4a06a893141a81eb6e992753168c +Merge: a90ba23c5 71a5bc791 +Author: John Willis +Date: Fri Apr 2 10:51:08 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 8fab9f621dea19dd97eacafce8f66fa6823cea98 +Merge: 82403c96b 71a5bc791 +Author: Jorge Gonzalez +Date: Fri Apr 2 10:27:45 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 5219a6fc9bc59082b6e099a6978962317fc3689d +Merge: 7c2a372c6 71a5bc791 +Author: Jorge Gonzalez +Date: Fri Apr 2 10:27:28 2021 -0400 + + Merge branch 'raft-tdp-main' into fix/773-header-menu + +commit 7c2a372c60a80502c10b32c0b5f280c690f01119 +Author: Jorge Gonzalez +Date: Fri Apr 2 10:22:11 2021 -0400 + + Hide the Navigation menu for logged out users + +commit 71a5bc7912bfa2d382d1003c844795023103faf6 +Merge: e514abb35 dce9940db +Author: Carl Smith +Date: Fri Apr 2 10:17:40 2021 -0400 + + Merge pull request #802 from raft-tech/documentation/access-controls-ia-8 + + Security Controls: IA-08 + +commit dce9940db9f778c0570320b1e755c40740f67bc6 +Merge: 778548482 e514abb35 +Author: Carl Smith +Date: Fri Apr 2 10:04:57 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ia-8 + +commit 82403c96b59f997336ca8f4f4b7d64e166d303fb +Merge: b3de91671 e514abb35 +Author: Jorge Gonzalez +Date: Fri Apr 2 09:58:35 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit b3de91671a78b5840e15d416b114c3bd6156cff0 +Merge: 1d803148c 2c543b274 +Author: Jorge Gonzalez +Date: Fri Apr 2 09:37:51 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit e514abb35f5280e0f149c9e5cb715c08d221c1ff +Merge: 2c543b274 0e92afda5 +Author: Carl Smith +Date: Fri Apr 2 09:42:41 2021 -0400 + + Merge pull request #812 from raft-tech/feat/511-privacy-policy + + Issue 511: Add Privacy Policy link to website + +commit 1d803148cfd9d1bd4e98d849ae18246ef0ea2338 +Merge: 5518e6701 b752a8538 +Author: Jorge Gonzalez +Date: Fri Apr 2 09:34:14 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + + # Conflicts: + # tdrs-frontend/src/actions/reports.js + # tdrs-frontend/src/actions/reports.test.js + # tdrs-frontend/src/components/Reports/Reports.jsx + # tdrs-frontend/src/components/Reports/Reports.test.js + # tdrs-frontend/src/index.scss + # tdrs-frontend/src/reducers/reports.js + # tdrs-frontend/src/reducers/reports.test.js + +commit 0e92afda5c6f97ecd009c06fdaf46dd5c49bdf04 +Merge: 164a3c7f7 2c543b274 +Author: Carl Smith +Date: Thu Apr 1 16:31:18 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/511-privacy-policy + +commit 6abfc317ab2af7cbfad4d6ac66e78794ac90f757 +Merge: 39a5ebe23 2c543b274 +Author: Carl Smith +Date: Thu Apr 1 16:28:53 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit 2c543b274b5a5f12ef48d517b03fa1b15d82713c +Merge: b752a8538 fc8606cbb +Author: Carl Smith +Date: Thu Apr 1 16:23:00 2021 -0400 + + Merge pull request #813 from raft-tech/documentation/antivirus-adr + + Documentation: ADR for Antivirus Strategy + +commit 164a3c7f7e0821320797c99083ea17812d7427c9 +Author: Jorge Gonzalez +Date: Thu Apr 1 15:50:52 2021 -0400 + + add target="_blank" + +commit 39a5ebe236c553a448627372b96c924657163a93 +Merge: 78ab6550c b752a8538 +Author: Carl Smith +Date: Thu Apr 1 15:48:09 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit fc8606cbb4e535985c5ae9eb3c85a4949fa187db +Author: Carl Smith +Date: Thu Apr 1 14:59:48 2021 -0400 + + Create 012-antivirus-strategy.md + +commit a90ba23c5f692eaf7c7e8c1fbf5a1189d5623743 +Merge: cdd9e4da1 b752a8538 +Author: Carl Smith +Date: Thu Apr 1 12:23:47 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 688351af3311196706c307e8e2cf2c45ec5f5309 +Merge: 2274e70be b752a8538 +Author: Jorge Gonzalez +Date: Thu Apr 1 11:51:20 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/511-privacy-policy + +commit b752a8538eded10d0b1ff01cc0c80fdce768b44b +Merge: dfce3c94c 0fa2c8a06 +Author: Carl Smith +Date: Thu Apr 1 11:47:17 2021 -0400 + + Merge pull request #807 from raft-tech/kniz-raft-patch-1 + + Create sprint-17-summary.md + +commit 0fa2c8a06bd4a6136c826847aa2647d7f75ac0ab +Merge: e110678c1 dfce3c94c +Author: Carl Smith +Date: Thu Apr 1 11:37:20 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 2274e70be76501d18e6dbec999bfb5b4c3367857 +Merge: a927491b5 dfce3c94c +Author: Jorge Gonzalez +Date: Wed Mar 31 19:07:50 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/511-privacy-policy + +commit a927491b547f51fbff3e9a8ebb279324f1adf3d9 +Author: Jorge Gonzalez +Date: Wed Mar 31 18:58:18 2021 -0400 + + Add privacy policy to Footer and add test + +commit dfce3c94c08f14b54e48e0dfe9f31b97b771017f +Merge: 827748a9a 7143f565f +Author: Carl Smith +Date: Wed Mar 31 17:01:19 2021 -0400 + + Merge pull request #757 from raft-tech/feat/429-upload-with-data-files + + Issue 429-2: Change Reports to Data Files + +commit 7143f565f8480eb7015c87780f343dd8091e97e7 +Merge: 99168d2ed 827748a9a +Author: Jorge Gonzalez +Date: Wed Mar 31 13:28:00 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload-with-data-files + +commit 827748a9a60f94f6d2f05ad98100844f4f86bd57 +Merge: e7b38a1bb 69a5551f6 +Author: Carl Smith +Date: Wed Mar 31 12:57:42 2021 -0400 + + Merge pull request #805 from raft-tech/devops/793-localstack-s3 + + Issue 793: As a dev, I want to use a simulated AWS environment during tests and local dev + +commit e110678c1962c754b53856e96bd6e7055b12d90b +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Mar 31 09:13:40 2021 -0500 + + Create sprint-17-summary.md + +commit 69a5551f6028f78fcaf91a70976dc9ed39377933 +Merge: da05c722e e7b38a1bb +Author: Carl Smith +Date: Wed Mar 31 10:10:16 2021 -0400 + + Merge branch 'raft-tdp-main' into devops/793-localstack-s3 + +commit 99168d2edb3962403fb3a11fed543604eec6e13f +Merge: 8e8909e0a e7b38a1bb +Author: Carl Smith +Date: Tue Mar 30 15:38:41 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload-with-data-files + +commit e7b38a1bbe2afd9fbb8207bf3a431078e253316f +Merge: ab86273cb 89120ac36 +Author: Carl Smith +Date: Tue Mar 30 15:34:48 2021 -0400 + + Merge pull request #705 from raft-tech/feat/429-upload + + Issue 429: Add component to input single file + +commit f4323e8f92b736c5a4fd963ee19e23423fc0eb27 +Author: Jorge Gonzalez +Date: Tue Mar 30 14:21:13 2021 -0400 + + add upload report submission with mock backend server + +commit 3bce4af9182e4f96bf8f001232d855769aeeb52d +Merge: 89120ac36 8e8909e0a +Author: Jorge Gonzalez +Date: Tue Mar 30 13:30:19 2021 -0400 + + Merge branch 'feat/429-upload-with-data-files' into feat/430-no-backend + +commit 5518e670169d5bbcf29836758b225c71400f31b0 +Merge: 10433e7cd ab86273cb +Author: Jorge Gonzalez +Date: Tue Mar 30 09:29:48 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 662e0f9b4f0a3960631752b34eeb777b0a797c30 +Merge: f9f963e37 ab86273cb +Author: John Willis +Date: Mon Mar 29 18:00:27 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements + +commit da05c722e312409b9a3ed24ffaf44a7be0fbb92c +Author: John Willis +Date: Mon Mar 29 17:39:56 2021 -0400 + + Fix PEP8 errors + +commit 3c1a21979812218c38c367b9b8586f96b1460175 +Author: John Willis +Date: Mon Mar 29 17:31:13 2021 -0400 + + Add documentation for localstack usage + +commit 2784b9e9f2f48817847dd796bec26da23bc0b7fb +Author: John Willis +Date: Mon Mar 29 17:21:48 2021 -0400 + + Fix PEP8 errors + +commit 0481b099d5dcc38809cff50272b54e4d83bb1bb6 +Author: John Willis +Date: Mon Mar 29 16:57:31 2021 -0400 + + Added support for localstack in local/CI environments + +commit 5d6820348b6fb2229e80f996ece4e800fe8d276f +Merge: e55414ac9 ab86273cb +Author: Carl Smith +Date: Mon Mar 29 15:38:55 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28(1) + +commit 778548482b903f05e3863598983653f90f0411e7 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 29 13:34:18 2021 -0500 + + Update index.md + +commit aa765f722890ab12d5814472aec69bbf8c33531e +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 29 13:21:40 2021 -0500 + + Update index.md + +commit e55414ac9f4449c825b0d1123abe1d5cc8fa08f8 +Author: Carl Smith +Date: Mon Mar 29 13:22:59 2021 -0400 + + Update index.md + +commit 89120ac36f8e8e44bbb2849d92f64d4bdd9df155 +Merge: 239b062ee ab86273cb +Author: Jorge Gonzalez +Date: Mon Mar 29 13:21:48 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit a27b0b22200d8333c6ce0623935a14362556f955 +Author: Carl Smith +Date: Mon Mar 29 13:17:15 2021 -0400 + + Create index.md + +commit 9779d4cf6c6d1c7802e2d6bab98e87afd389b7a0 +Author: Carl Smith +Date: Mon Mar 29 13:14:08 2021 -0400 + + Create index.md + +commit 6cd6c022d386f5d53e52fce46d00e15cbdd50deb +Author: Carl Smith +Date: Mon Mar 29 13:11:36 2021 -0400 + + Create index.md + +commit ab86273cb1c4f74e306f72ce579a605757f8bfa1 +Merge: 9ae6d0c84 e39e67f5f +Author: Carl Smith +Date: Mon Mar 29 13:05:01 2021 -0400 + + Merge pull request #777 from raft-tech/snyk-fix-d301a73c0acbe83327a1fd1269be946b + + [Snyk] Fix for 2 vulnerabilities + +commit 090dbb3855a5a350743952e2e9de625697a3ee16 +Merge: 8785d1537 9ae6d0c84 +Author: Carl Smith +Date: Fri Mar 26 16:19:14 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-20 + +commit e39e67f5f1a834a9e5406127bd24ef248b77830b +Merge: b9a9b0101 9ae6d0c84 +Author: John Willis +Date: Fri Mar 26 15:53:09 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-fix-d301a73c0acbe83327a1fd1269be946b + +commit f9f963e3791afa3a373c35caae0baf5bddfc0e85 +Author: John Willis +Date: Fri Mar 26 15:45:41 2021 -0400 + + Added @testing-library/user-event back + +commit d71cca6cb6ab09ac6c43d27343dfdc5ce95d9bcf +Merge: fc2218f11 9ae6d0c84 +Author: John Willis +Date: Fri Mar 26 15:41:20 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements + +commit 239b062ee3a7d7c2dafd0a043690361a325a469d +Author: Jorge Gonzalez +Date: Fri Mar 26 14:48:51 2021 -0400 + + improve aria descriptions for file inputs + +commit 8d4a2d358a6a73b7b2475758320ecf15c2f70f11 +Merge: e002c98c3 9ae6d0c84 +Author: Carl Smith +Date: Fri Mar 26 14:05:36 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28 + +commit e002c98c35e2aea7a64a1c9cad348051dfcb162a +Author: Carl Smith +Date: Fri Mar 26 14:02:09 2021 -0400 + + Update index.md + +commit 8785d15375f95c8442ae8c7ae51b28bd6091386a +Author: Carl Smith +Date: Fri Mar 26 11:53:07 2021 -0400 + + Update index.md + +commit 94522d783a8227c1809b82f0071f693a7fddd364 +Merge: a053f58c2 10433e7cd +Author: Jorge Gonzalez +Date: Fri Mar 26 11:34:36 2021 -0400 + + Merge branch 'feat/530-select-stt' into feat/738-quarters-select + +commit a053f58c238386fd12e5a6c20aedcfb6bd29748c +Author: Jorge Gonzalez +Date: Fri Mar 26 11:02:50 2021 -0400 + + remove unused import + +commit 10433e7cdad6328931482ac87b0f7c958670a8c2 +Author: Jorge Gonzalez +Date: Thu Mar 25 15:55:24 2021 -0400 + + Tweak header, fix test + +commit b1503e02f87641d49809401e4bb26b3419c49c8c +Author: Jorge Gonzalez +Date: Thu Mar 25 15:45:50 2021 -0400 + + fix test + +commit 396d0b73397970bfb53b23577d9d713ea8573a64 +Merge: 71d435376 0819f84a1 +Author: Jorge Gonzalez +Date: Thu Mar 25 15:43:24 2021 -0400 + + Merge branch 'feat/530-select-stt' into feat/738-quarters-select + + # Conflicts: + # tdrs-frontend/src/assets/Reports.scss + +commit 0819f84a18f0d6b494ba7c926549cc6766988db5 +Author: Jorge Gonzalez +Date: Thu Mar 25 15:42:09 2021 -0400 + + refactor and improve some tests; fix styles + +commit dca681b1b58e0f09b138b92492348c22d68b8709 +Merge: f5e90ccc5 9ae6d0c84 +Author: Jorge Gonzalez +Date: Thu Mar 25 14:48:24 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 8cca66fc3938eec4fec6fcab29943243d60302bf +Merge: 6bd75b8fc 9ae6d0c84 +Author: Jorge Gonzalez +Date: Thu Mar 25 14:26:16 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit 9ae6d0c84097622a7204aa8025d30d0670947a79 +Merge: f6ec2869b 2cf78988e +Author: Carl Smith +Date: Thu Mar 25 14:20:12 2021 -0400 + + Merge pull request #791 from raft-tech/reduce-frontend-memory + + 792: Failing deploys to development environment + +commit 2cf78988e4901a6004c257635d9513e6b969215c +Merge: b72fe57dd f6ec2869b +Author: Carl Smith +Date: Thu Mar 25 12:25:08 2021 -0400 + + Merge branch 'raft-tdp-main' into reduce-frontend-memory + +commit b72fe57dd5fdb6ae7284eb380a49ac76a78cffcc +Author: Aaron Beavers +Date: Thu Mar 25 11:59:55 2021 -0400 + + Reduce the amount of memory allocated to frontend + +commit f5e90ccc5f472f5dc2b9079dbdd4443b095e2985 +Merge: 56268a93f f6ec2869b +Author: Jorge Gonzalez +Date: Thu Mar 25 10:34:04 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/530-select-stt + +commit 6bd75b8fcfd8bf3a50a9902dab5313f2f41ba6ff +Merge: a7bd21845 f6ec2869b +Author: Jorge Gonzalez +Date: Thu Mar 25 10:33:34 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit f6ec2869b3bec0368171eaad093fce4dc2434fec +Merge: f2ef9a62e dcb03d1f2 +Author: Carl Smith +Date: Thu Mar 25 10:04:45 2021 -0400 + + Merge pull request #650 from raft-tech/front/639/hide-admin + + Issue 639: As an OFA Admin, I need to be able to access the admin functions in TDP + +commit 71d4353760c543c92588a3c94d9efc74119cf931 +Author: Jorge Gonzalez +Date: Wed Mar 24 10:58:14 2021 -0400 + + add action test + +commit dcb03d1f27b0cd989c33fae60a6b94bb8520f923 +Merge: 133b300aa f2ef9a62e +Author: Jorge Gonzalez +Date: Tue Mar 23 16:57:33 2021 -0400 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit 133b300aaa62967ab97fffc1e4302ce0928c88e3 +Author: Jorge Gonzalez +Date: Tue Mar 23 16:41:06 2021 -0400 + + add aria-current + +commit bcee6c08225cc3bccebd887a07a7f913ff3b2312 +Author: Jorge Gonzalez +Date: Tue Mar 23 15:50:51 2021 -0400 + + Fix tests + +commit fc2218f11d190c0dbd9d456dfa9baa9da96ae462 +Author: John Willis +Date: Tue Mar 23 15:50:49 2021 -0400 + + Skip creating yarn lock file in Docker + +commit 21d531c5f872c61d4b4c9c58aa741c292fb649ee +Author: John Willis +Date: Tue Mar 23 15:39:12 2021 -0400 + + Revert yarn install order change + +commit a7bd2184546434626fe2355d233f724cd8489065 +Merge: 5532ed8a3 f2ef9a62e +Author: Jorge Gonzalez +Date: Tue Mar 23 15:32:21 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit 61ca7b61c5fceff1abb90620f829d82897ade45b +Author: Jorge Gonzalez +Date: Tue Mar 23 15:31:31 2021 -0400 + + Add Dropdown for Quarters Selection + +commit 1a89a53402ea78e6341d66099af0a4dfef4ecb13 +Author: John Willis +Date: Tue Mar 23 15:26:24 2021 -0400 + + Dockerfile.local refactor to remove overlapping commands and copy everything before yarn install + +commit 56268a93f3bd571e2548d1f15eb7ddbc8e516ca5 +Author: Jorge Gonzalez +Date: Tue Mar 23 14:14:48 2021 -0400 + + Build STTComboBox abstraction + +commit c083838238337b31c6b49a51e131e9a38c337a6d +Author: John Willis +Date: Tue Mar 23 14:11:55 2021 -0400 + + Update yarn.lock + +commit 5dc380117b69fa81abd3db0dad75c228655c82f0 +Author: John Willis +Date: Tue Mar 23 11:51:34 2021 -0400 + + Remove manually installed jest, since it conflicts with react-scripts + +commit 9cd78cdd2a056b9eb990d97b4333824bce06520e +Merge: 8d44321bd f2ef9a62e +Author: Jorge Gonzalez +Date: Tue Mar 23 11:44:40 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/530-select-stt + +commit 8d44321bd77c65abf4d99fffb830df2367bfa9a1 +Author: Jorge Gonzalez +Date: Tue Mar 23 11:11:58 2021 -0400 + + tweak styles + +commit 5b02fe523ad39af73e07a15dbd82f7614714ddda +Author: John Willis +Date: Tue Mar 23 11:30:27 2021 -0400 + + Update yarn.lock + +commit 58a452287ccf0e020564936001f4e80799e95d9f +Merge: c728ab056 f2ef9a62e +Author: John Willis +Date: Tue Mar 23 11:28:22 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements + +commit f2ef9a62e492cb4f48e30558a4a0e628222a99c2 +Merge: 290359538 205210bb9 +Author: John Willis +Date: Tue Mar 23 11:24:13 2021 -0400 + + Merge pull request #784 from raft-tech/lfrohlich-patch-2 + + Update Project-Glossary.md + +commit c728ab05651f657e8d77738a8d20450859087e62 +Author: John Willis +Date: Tue Mar 23 11:23:22 2021 -0400 + + Explicitly add jest to silence yarn warning + +commit 205210bb95fde9c6fff9b6ffd26d966fa19dde09 +Merge: fd4172cad 290359538 +Author: John Willis +Date: Tue Mar 23 11:13:16 2021 -0400 + + Merge branch 'raft-tdp-main' into lfrohlich-patch-2 + +commit 290359538518063b2a82edebb5ce6719c3352f46 +Merge: 38cf9c3da 2fb524f86 +Author: John Willis +Date: Tue Mar 23 11:13:04 2021 -0400 + + Merge pull request #765 from raft-tech/jenewingpierce-patch-1 + + Issue 669: Research Synthesis for Round 4 + +commit 92b091f9d310fc821d22bfd175d3a956cb147d6f +Author: John Willis +Date: Tue Mar 23 11:10:25 2021 -0400 + + eslint config tweaks + +commit c5c4e056aaea35d0d33cb61f5ca28f3b3b5ddba7 +Merge: a456f0beb 38cf9c3da +Author: John Willis +Date: Tue Mar 23 11:10:00 2021 -0400 + + Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements + +commit 655fac2d0ae77ad463e4e1f2db17c165ef0a34c0 +Merge: 0758d6ed8 a9e62ad8f +Author: Jorge Gonzalez +Date: Tue Mar 23 11:04:19 2021 -0400 + + Merge branch 'feat/530-select-stt' of https://github.com/raft-tech/TANF-app into feat/530-select-stt + +commit 0758d6ed8f6db21a07a867942f35cf447334d61d +Merge: aa83cbd60 38cf9c3da +Author: Jorge Gonzalez +Date: Tue Mar 23 11:04:00 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/530-select-stt + +commit 2fb524f86154923de0b2bd0e3ececbfefe656dc0 +Author: John Willis +Date: Tue Mar 23 11:01:24 2021 -0400 + + Apply suggestions from code review + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 86d07cddaac9ea877e3c5b308a8d91794192a590 +Merge: 2dcf42cc3 38cf9c3da +Author: John Willis +Date: Tue Mar 23 10:57:42 2021 -0400 + + Merge branch 'raft-tdp-main' into jenewingpierce-patch-1 + +commit 38cf9c3da71f693dbe577bde512f43147b7357c7 +Merge: a1c15059b 577b79985 +Author: John Willis +Date: Tue Mar 23 10:57:00 2021 -0400 + + Merge pull request #741 from raft-tech/ops/691-docker-hot-reload + + Issue 691: As a developer, I would like the app to hot reload when running locally + +commit 577b7998535d2ef51aaa3e11148d3d2de9504924 +Merge: dc2bd6570 a1c15059b +Author: John Willis +Date: Tue Mar 23 10:45:15 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload + +commit a1c15059b1a601c42d7214a993ac841cf0ffa7f6 +Merge: 1c1c1bb07 6049c5018 +Author: John Willis +Date: Tue Mar 23 10:44:51 2021 -0400 + + Merge pull request #780 from raft-tech/carltonsmith-patch-3 + + update bug report + +commit aa83cbd605bab6a9d781e88edb5797a5bcc3215f +Author: Jorge Gonzalez +Date: Tue Mar 23 10:36:08 2021 -0400 + + add more tests + +commit a9e62ad8f779050715c6661c9f808524789086af +Author: Jorge Gonzalez +Date: Tue Mar 23 10:36:08 2021 -0400 + + add more tests + +commit ef04623dfad753907d140aba64e52075eb28401a +Author: Jorge Gonzalez +Date: Tue Mar 23 10:19:06 2021 -0400 + + restrict to OFA Admins + +commit fd4172cadf26c8a12e8a3f3dbc5c09f48decb898 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Mar 23 10:03:48 2021 -0400 + + Update docs/Background/Project-Glossary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit b991a738b625e6ff82f1e6443a2403802bc043fa +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Mar 23 09:37:48 2021 -0400 + + Update docs/Background/Project-Glossary.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 033ab1c332ad8810fbd2793089661ec4320d2239 +Author: Jorge Gonzalez +Date: Mon Mar 22 16:21:04 2021 -0400 + + Fix existing tests + +commit bc8999c2cc520d528d4068bb40c577fc2e18aec9 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Mar 22 16:12:42 2021 -0400 + + Update Project-Glossary.md + + Updated some glossary items and deleted a few. Could use more revisiting at some point. + +commit 987b459252a3b5a8ccbf725a66258c1bf8274361 +Merge: 5be1fb332 1c1c1bb07 +Author: Jorge Gonzalez +Date: Mon Mar 22 14:34:15 2021 -0400 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/530-select-stt + +commit 5532ed8a3fc1528f6d62ca9266e363fe7621190b +Merge: eb6905ccb 1c1c1bb07 +Author: Jorge Gonzalez +Date: Mon Mar 22 10:45:22 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit dc2bd6570ba13014bf7333670d6579b8e3a6b9a4 +Merge: 8d4b5c293 1c1c1bb07 +Author: Jorge Gonzalez +Date: Mon Mar 22 10:23:03 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload + +commit 6049c5018d1e6cb0b4ec02136d04266edd754bc7 +Merge: bfe758f95 1c1c1bb07 +Author: Carl Smith +Date: Fri Mar 19 15:51:43 2021 -0400 + + Merge branch 'raft-tdp-main' into carltonsmith-patch-3 + +commit a456f0beb359cf2bdb14d1fe66d191ee52ac64f5 +Author: Jorge Gonzalez +Date: Fri Mar 19 15:24:30 2021 -0400 + + move concurrently + +commit 1c1c1bb07947638eab16253063c40dbf866c0de7 +Merge: 2736d0e6d 82c0d0c61 +Author: Carl Smith +Date: Fri Mar 19 15:18:04 2021 -0400 + + Merge pull request #769 from raft-tech/snyk-fix-64e384806c6e14248492bb18564add6c + + [Snyk] Security upgrade urllib3 from 1.26.2 to 1.26.4 + +commit 67906a7201bb1fa15982254c93692a0d03058709 +Author: Jorge Gonzalez +Date: Fri Mar 19 15:11:08 2021 -0400 + + resolve ssri + +commit 82c0d0c618a5710c51b8c3aa0a1b3ff02be54cdc +Merge: 7b24af199 2736d0e6d +Author: Carl Smith +Date: Fri Mar 19 15:09:00 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-fix-64e384806c6e14248492bb18564add6c + +commit a16d0d55654ed177b8104027657870a8cade85d0 +Author: Jorge Gonzalez +Date: Fri Mar 19 13:55:01 2021 -0400 + + reinstall + +commit bfe758f953e39500ce2ca7a775686e722cadfe32 +Author: Carl Smith +Date: Fri Mar 19 13:52:50 2021 -0400 + + update bug report + +commit 2dcf42cc3a378937cd1a6d5fcaab9c030ee291fc +Merge: 42f020e56 2736d0e6d +Author: Carl Smith +Date: Fri Mar 19 13:34:00 2021 -0400 + + Merge branch 'raft-tdp-main' into jenewingpierce-patch-1 + +commit 2736d0e6d426df0082357c71392b5160fd271180 +Merge: 889f42ca0 e5d18aae6 +Author: Carl Smith +Date: Fri Mar 19 11:56:51 2021 -0400 + + Merge pull request #775 from raft-tech/documentation/bug-template + + Create bug-template.md + +commit 3f47b3ad0c24b31b44f53c8d7c32fadafdb328aa +Author: Jorge Gonzalez +Date: Fri Mar 19 11:19:22 2021 -0400 + + add new env to dockerfiles + +commit 8d4b5c293174d7f5e6f4f6cc9ecc5892ecf2a1b1 +Merge: bae6d3bb9 889f42ca0 +Author: John Willis +Date: Fri Mar 19 11:08:23 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload + +commit e5d18aae623e18041a399e318dc1340155e2b909 +Author: Carl Smith +Date: Fri Mar 19 10:09:24 2021 -0400 + + Update bug-template.md + +commit 867cff8aca69bfaa6fbcc31ab1568b02952e1645 +Author: Carl Smith +Date: Fri Mar 19 10:08:26 2021 -0400 + + Update .github/ISSUE_TEMPLATE/bug-template.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit eb6905ccb5010d7cf44d2a864f7b61ba1d0e792d +Author: Jorge Gonzalez +Date: Fri Mar 19 09:30:12 2021 -0400 + + update copy + +commit e5ac0c8467b75dab688a7982863147d2ee002da0 +Merge: 5f0b2c2f3 889f42ca0 +Author: Carl Smith +Date: Fri Mar 19 09:21:54 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit b9a9b0101b6859ed36f010d9fd9da9cbbd7e8d03 +Author: snyk-bot +Date: Fri Mar 19 05:53:48 2021 +0000 + + fix: tdrs-backend/requirements.txt to reduce vulnerabilities + + + The following vulnerabilities are fixed by pinning transitive dependencies: + - https://snyk.io/vuln/SNYK-PYTHON-PYGMENTS-1086606 + - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-1085966 + +commit 5ad9cc9939d8c78a7af28902a81dea0611c18c73 +Author: Carl Smith +Date: Thu Mar 18 17:33:37 2021 -0400 + + Create index.md + +commit 62b253b915edc3b05574cda10ee0f278f074cd5e +Merge: 6b3898b13 889f42ca0 +Author: Carl Smith +Date: Thu Mar 18 17:31:49 2021 -0400 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit cdd9e4da17ef5d503ecab102f2439e3ad545416f +Merge: 363e0c0c9 889f42ca0 +Author: Carl Smith +Date: Thu Mar 18 11:55:00 2021 -0400 + + Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years + +commit 7b24af1995b2ac96d4b72bbca11c1d92d5c57392 +Merge: 677587459 889f42ca0 +Author: Carl Smith +Date: Thu Mar 18 09:26:19 2021 -0400 + + Merge branch 'raft-tdp-main' into snyk-fix-64e384806c6e14248492bb18564add6c + +commit 2fe68ed0d9192cb14bc850a4b97d0a8dc0f64f5c +Author: Carl Smith +Date: Thu Mar 18 09:17:13 2021 -0400 + + Create index.md + +commit 8323ae72a7e8caeda8013af5c2693fc44791ea6a +Author: Carl Smith +Date: Thu Mar 18 08:49:42 2021 -0400 + + Update bug-template.md + +commit c0c743f04f43393ca42b7028a1c02cba2b3616df +Merge: fe7ba61d2 889f42ca0 +Author: Carl Smith +Date: Thu Mar 18 08:47:50 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/bug-template + +commit fe7ba61d2917b1ca3e64b0f40aa502fa5c455bd1 +Author: Carl Smith +Date: Wed Mar 17 16:54:12 2021 -0400 + + Update bug-template.md + +commit ced47f16f1f70101ebdde6d73095ab8cf769b36b +Author: Carl Smith +Date: Wed Mar 17 16:51:55 2021 -0400 + + Update bug-template.md + +commit 09e4da3fed4c7917ae3f1d95142dbfbe83a36806 +Author: John Willis +Date: Wed Mar 17 16:50:02 2021 -0400 + + Update tdrs-frontend/package.json + + Co-authored-by: Jorge Gonzalez + +commit 6bada5cf4ca5b75f91549ed2f3e4ea2c2212524d +Author: John Willis +Date: Wed Mar 17 16:49:24 2021 -0400 + + Fix .eslintrc.json + +commit 889f42ca0e68d6c77bef3ed64b802e37a1db8ad2 +Merge: a5279dd46 038507855 +Author: Carl Smith +Date: Wed Mar 17 16:44:13 2021 -0400 + + Merge pull request #746 from raft-tech/kniz-raft-patch-1 + + Update sprint-schedule.md + +commit 7c4eb12c6add365b2d051008d6fdb10007e04986 +Merge: dee1c270a a5279dd46 +Author: Carl Smith +Date: Wed Mar 17 16:36:46 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/bug-template + +commit 03850785529f3ea6040cc9060d8bbf76583da5f8 +Merge: ac9203f80 a5279dd46 +Author: Carl Smith +Date: Wed Mar 17 16:34:10 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit dee1c270a0db2d593682b129a3e660650f10a01d +Author: Carl Smith +Date: Wed Mar 17 16:10:15 2021 -0400 + + Create bug-template.md + +commit a5279dd462dd89e460bea3f1325702b1c60baa64 +Merge: 416bd1745 a71ca2c01 +Author: Carl Smith +Date: Wed Mar 17 15:28:57 2021 -0400 + + Merge pull request #766 from raft-tech/kniz-raft-patch-3 + + Create sprint-16-summary.md + +commit a71ca2c01f4d912931d0baefec00b89e287db6ee +Merge: 0908aba9e 416bd1745 +Author: Carl Smith +Date: Wed Mar 17 14:39:39 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-3 + +commit 6b3898b13887ec00193c0e22fa4c990e4ae3215f +Merge: 49dcbcdd1 416bd1745 +Author: Carl Smith +Date: Wed Mar 17 13:56:21 2021 -0400 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit 5be1fb332928454140c49273f5b5668839efd8eb +Author: Jorge Gonzalez +Date: Wed Mar 17 13:42:11 2021 -0400 + + Add STT ComboBox to Reports page + +commit 0908aba9e284eaaf48c8bcf134dc6653ab77cc1c +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Mar 17 11:43:23 2021 -0500 + + Update sprint-16-summary.md + +commit 6775874599199cf95a5eea0c8769900a5c7f0fc2 +Author: snyk-bot +Date: Wed Mar 17 02:10:34 2021 +0000 + + fix: tdrs-backend/requirements.txt to reduce vulnerabilities + + + The following vulnerabilities are fixed by pinning transitive dependencies: + - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-1085966 + +commit 50d7abfe1241b1a4251fef4121cef7b3c175de3c +Author: John Willis +Date: Tue Mar 16 17:37:05 2021 -0400 + + 548: Local Build Improvements + +commit bae6d3bb90216a7f65c35419c7686406ccd9611e +Merge: ad49847c6 416bd1745 +Author: John Willis +Date: Tue Mar 16 15:05:09 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload + +commit 78ab6550c9cb3a49b4f951bfc334ed92cdea8084 +Author: Carl Smith +Date: Tue Mar 16 12:56:19 2021 -0400 + + Update index.md + +commit c22c3c0c76c571a4bf1855efe96c3e803942522b +Author: Carl Smith +Date: Tue Mar 16 12:48:43 2021 -0400 + + Update index.md + +commit bf1243ca9e9357934ed2b776462d00cfcbc3ebd2 +Author: Carl Smith +Date: Tue Mar 16 12:48:05 2021 -0400 + + Update index.md + +commit 5f0b2c2f3dbe9d9e58f66cf2638426ed65a01613 +Merge: 72c74835a 416bd1745 +Author: Jorge Gonzalez +Date: Tue Mar 16 12:44:51 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit 639bcb09bf68724b3ab130b776553ce2fa94c725 +Merge: 6709606ca 416bd1745 +Author: Carl Smith +Date: Tue Mar 16 12:43:09 2021 -0400 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit 6709606ca82a621abd9528d32e6f5580fcaaf6a0 +Author: Carlton Smith +Date: Tue Mar 16 12:42:39 2021 -0400 + + move file + +commit 25e713cee59f81847f40cd2024ef09f43a89e882 +Author: Carl Smith +Date: Tue Mar 16 12:36:18 2021 -0400 + + Create placeholder.md + +commit ceee26cb880af0fbdc8bbbe425c47e95fe67079c +Author: Carl Smith +Date: Tue Mar 16 12:34:50 2021 -0400 + + Add files via upload + +commit 921134e938214b172972ac8f4b6f8d0adafc29af +Author: Carl Smith +Date: Tue Mar 16 12:31:43 2021 -0400 + + Update index.md + +commit 416bd1745d713403920ef620b89a702024991593 +Merge: 640be6d80 9eaca1cfe +Author: Carl Smith +Date: Tue Mar 16 11:28:04 2021 -0400 + + Merge pull request #758 from raft-tech/kniz-raft-patch-2 + + Update Roadmap-and-Backlog.md + +commit 9eaca1cfeeceec698912f91fd1933da70f0ab01f +Merge: d0c22b6cb 640be6d80 +Author: Carl Smith +Date: Tue Mar 16 11:11:40 2021 -0400 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit 8d51b325d9325baa0f8ce67d1e2d82c3459357f8 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Mar 16 10:07:51 2021 -0500 + + Create sprint-16-summary.md + +commit 42f020e560c231a5f606f648d69ca6f10af6f937 +Author: Jen Pierce <74320484+jenewingpierce@users.noreply.github.com> +Date: Tue Mar 16 10:58:24 2021 -0400 + + Add files via upload + +commit ad49847c65f983e4c418b0e8cc6db6860c94b3fb +Merge: 001aafe35 640be6d80 +Author: Jorge Gonzalez +Date: Mon Mar 15 17:25:43 2021 -0400 + + Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload + +commit 001aafe359a0b4225be91f9d1a62a18d979407b8 +Author: Jorge Gonzalez +Date: Wed Mar 10 10:22:53 2021 -0500 + + Update docker files to support local frontend builds + +commit ac9203f80dfcde36d2afc5d18093a1c11e93964c +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 15 16:20:31 2021 -0500 + + Update docs/How-We-Work/team-charter/sprint-schedule.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 72c74835a362155f83af7ed74e74735af559f53b +Author: Jorge Gonzalez +Date: Mon Mar 15 16:30:18 2021 -0400 + + trim section header from aria description + +commit 0293259eadb6036348f636ac443aa0f7b69c59f6 +Author: Jorge Gonzalez +Date: Mon Mar 15 15:09:34 2021 -0400 + + try aria-describedby fix + +commit b005d385a5ba22bf50e4ba80b09bbb7e6c2aa0e0 +Author: Carl Smith +Date: Mon Mar 15 13:06:22 2021 -0400 + + Rename docs/Security-Compliance/Security-Controls/index.md to docs/Security-Compliance/Security-Controls/au-2/index.md + +commit 47ef2a7f0ffd08ed81cc1d54754c5817b4e05c50 +Merge: dee7f226b 640be6d80 +Author: Jorge Gonzalez +Date: Mon Mar 15 10:01:35 2021 -0400 + + Merge branch 'raft-tdp-main' into feat/429-upload + +commit dee7f226b9cd2f0af7e98f73ad5509819ad37bb5 +Author: Jorge Gonzalez +Date: Mon Mar 15 09:52:40 2021 -0400 + + minor style fixes + +commit 640be6d80e591243507065288dcc4f8454d240eb +Merge: 17e99bbe3 8d90148e3 +Author: Carl Smith +Date: Fri Mar 12 15:13:04 2021 -0500 + + Merge pull request #742 from raft-tech/issues/devops/720 + + Add GitHub Action to trigger deploys on PR label assignment [720] + +commit 8d90148e379bc56c3fe0ed73a15a42ee4ebd2660 +Merge: b69775095 17e99bbe3 +Author: Carl Smith +Date: Fri Mar 12 14:57:45 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit d8ead7b5ba7c13852bbd5c042b9ffb6c4340d186 +Merge: f9ed243e6 17e99bbe3 +Author: Jorge Gonzalez +Date: Fri Mar 12 13:01:37 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/429-upload + +commit 5da5043dd81f015a3968eaa784c69403a7a3b977 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 12 11:47:20 2021 -0600 + + Update sprint-schedule.md + +commit 17e99bbe3b059f9509ac8a0911fccc6d900d4996 +Merge: e4bc4b1da 8c82fc682 +Author: Carl Smith +Date: Fri Mar 12 11:58:22 2021 -0500 + + Merge pull request #745 from raft-tech/documentation/sc-08 + + Security Controls: SC-08 + +commit d0c22b6cb75a5075f6ff523e90faef3f6304f32e +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 12 10:58:11 2021 -0600 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit af2541f6ad3f04f5434609b34797f03fc9cd1572 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 12 10:58:01 2021 -0600 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 19a490792ea47481a5ef0f0c0063574f3e8196b3 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 12 10:57:54 2021 -0600 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 231cbf81320c7f4d558be9e65bb6ddc2370ad439 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 12 10:57:46 2021 -0600 + + Update docs/Product-Strategy/Roadmap-and-Backlog.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit f9ed243e687a83f6f4428e8f714c71a25f7ea3cf +Merge: f36f21de8 e4bc4b1da +Author: Jorge Gonzalez +Date: Fri Mar 12 11:57:04 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/429-upload + +commit 8c82fc682d3fa00db013767549081f415dcfade4 +Merge: 7d56e4013 e4bc4b1da +Author: Carl Smith +Date: Fri Mar 12 11:47:58 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/sc-08 + +commit e4bc4b1da11922977df19195812db661cab00a89 +Merge: 218877e37 e8fb1eec7 +Author: Carl Smith +Date: Fri Mar 12 11:41:49 2021 -0500 + + Merge pull request #739 from raft-tech/documentation/sc-04 + + SC-04 - Information in Shared Resources + +commit f36f21de87aba61f1f3fdb9bcd66f859493ff4a1 +Merge: 3b2bbb356 218877e37 +Author: Jorge Gonzalez +Date: Fri Mar 12 11:40:20 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/429-upload + +commit 7d56e4013f8ce5f04359528987c81df1eb703ce4 +Author: Carl Smith +Date: Fri Mar 12 11:39:40 2021 -0500 + + Update index.md + +commit 3b2bbb35667dbc90fe892c2d0cbce1f273544fd8 +Author: Jorge Gonzalez +Date: Fri Mar 12 11:39:18 2021 -0500 + + add focus to header element + +commit ab00f54034549c53cb1ee7014c79a097d92b9853 +Merge: 79f817e66 218877e37 +Author: Carl Smith +Date: Fri Mar 12 11:34:33 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/sc-08 + +commit e8fb1eec75e4c8a06e0a5fbb4a38aa3ac185b572 +Merge: 765eb746e 218877e37 +Author: Carl Smith +Date: Fri Mar 12 11:27:20 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/sc-04 + +commit 4c598f3c1b03bd88de16c0645d86dc0ea9cf84ff +Author: Jorge Gonzalez +Date: Fri Mar 12 11:07:37 2021 -0500 + + add aria-live to UploadReport.jsx + +commit b69775095ff83c73c2b72e9f725819be4083dae3 +Merge: 016a58591 218877e37 +Author: Alex P <63075587+ADPennington@users.noreply.github.com> +Date: Fri Mar 12 10:59:12 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit 218877e377af0009fa11cd7515ce727acd5df549 +Merge: 019d2a171 2cfd0c8c2 +Author: Carl Smith +Date: Fri Mar 12 10:15:37 2021 -0500 + + Merge pull request #567 from raft-tech/snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + + [Snyk] Upgrade eslint from 7.16.0 to 7.17.0 + +commit 2cfd0c8c224c25a5b46f23e90109607b05186d88 +Merge: e7c1a8f87 019d2a171 +Author: Carl Smith +Date: Fri Mar 12 10:06:08 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + +commit 019d2a1715acd96f8ad024d388fd357c526f51d1 +Merge: e78bbe97c 9f676940c +Author: Carl Smith +Date: Fri Mar 12 10:01:34 2021 -0500 + + Merge pull request #593 from raft-tech/564-generated-api-docs + + Automatic Generation of OpenAPI documentation + +commit 9f676940c7a17ec4ba68290ec8e6cbf6e81283d3 +Merge: f56b12725 e78bbe97c +Author: Carl Smith +Date: Fri Mar 12 09:51:57 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit e78bbe97cec4a53a8170a2759bb0288d126be3e8 +Merge: d07b23026 a0df65040 +Author: Carl Smith +Date: Fri Mar 12 09:45:36 2021 -0500 + + Merge pull request #642 from raft-tech/snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b + + [Snyk] Upgrade: @fortawesome/fontawesome-svg-core, @fortawesome/free-solid-svg-icons + +commit a0df6504057141244a4fcb47da88bba8bcb6eaa3 +Merge: f58127906 d07b23026 +Author: Carl Smith +Date: Fri Mar 12 09:37:41 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b + +commit 016a5859105f89c58084c26f412fe9e13d73f2fd +Author: John Willis +Date: Thu Mar 11 16:09:31 2021 -0500 + + Add documentation and use github context for repo owner + +commit 156171b4fcc227189172ad3b7b8c5d1c4e1befdf +Author: John Willis +Date: Thu Mar 11 15:34:14 2021 -0500 + + Use set-output for PR state + +commit 45832e0424189af71715e69ff0e39bc73a57dcc8 +Author: John Willis +Date: Thu Mar 11 15:30:33 2021 -0500 + + Only deploy if state is success + +commit 7c7c3a7efacf07cd805814514ec516dd5f659245 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Mar 11 14:07:56 2021 -0600 + + Update Roadmap-and-Backlog.md + +commit 86334d1fb9d3aaa7fc73945c4db0c4dbf310faa3 +Author: John Willis +Date: Thu Mar 11 14:44:23 2021 -0500 + + Get only current PR status checks state + +commit 049220d9fa4f92a663de2292509dbd61493d8a7a +Author: John Willis +Date: Thu Mar 11 14:41:28 2021 -0500 + + Temporarily comment out deploy step; testing PR Status API call + +commit 363e0c0c98833e57be11683b9b3362068d663059 +Author: Aaron Beavers +Date: Thu Mar 11 11:52:03 2021 -0500 + + Remove code meant for other ticket + +commit 98cfd444cdcb11535a9cc33fa1c2cb8f61adc078 +Author: Jorge Gonzalez +Date: Thu Mar 11 11:23:30 2021 -0500 + + Fix eslint warning + +commit 887715d365cc343591d78577ac6cbf195836de09 +Author: Aaron Beavers +Date: Thu Mar 11 11:14:45 2021 -0500 + + Add white space for readability + +commit 8b1057827c060a2756a9e468ab80ea88e40a733e +Author: Aaron Beavers +Date: Thu Mar 11 11:14:33 2021 -0500 + + Update docstring for test + +commit 043804b5f3f3af0a0aaec18fb5031c97e49fea93 +Author: Aaron Beavers +Date: Thu Mar 11 11:06:20 2021 -0500 + + Request.kwargs does not exist, use view.kwargs instead + +commit 851078e9a338bfaba35a141194c73b09b8471144 +Author: Aaron Beavers +Date: Thu Mar 11 11:05:50 2021 -0500 + + Change name of view to better describe intention + +commit 9148edfb086e95b9aa4adcb1360f570aae8ea5e8 +Author: Aaron Beavers +Date: Thu Mar 11 11:05:35 2021 -0500 + + Update name of view and explicitly declare route for data prepper path + +commit da9ee4cb82a2f15bd836a0e958aa742996c6a681 +Author: Aaron Beavers +Date: Thu Mar 11 11:04:06 2021 -0500 + + Add test for getting years for OFA admin + +commit 2a8077ba5be3c74f345648c1587f1c1e9831382f +Merge: bbae5b835 d07b23026 +Author: Carl Smith +Date: Thu Mar 11 10:44:29 2021 -0500 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 8e8909e0a1f4266624779b50a155a8a68e448d63 +Author: Jorge Gonzalez +Date: Thu Mar 11 10:40:05 2021 -0500 + + Update Reports tab and route to Data Files + +commit 5ceaa192b1e4c8699ee5aab41ea2a26fcf4c4712 +Author: Spencer Hilvitz +Date: Wed Mar 10 10:46:37 2021 -0500 + + frontend/429 Add components and actions for file upload + + Co-authored-by: Jorge Gonzalez + Co-authored-by: Spencer Hilvitz + +commit 49dcbcdd13031f4f66f8b818d345e7eb676c5c13 +Merge: b6984e473 d07b23026 +Author: Jorge Gonzalez +Date: Wed Mar 10 12:21:34 2021 -0500 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit 79f817e66a60271124e9c61f131604d4ad6faf4d +Merge: fcb0efacb d07b23026 +Author: Carl Smith +Date: Wed Mar 10 09:17:11 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/sc-08 + +commit 92a5d5b9809e643f78334f252375a045ee81ab9d +Merge: adc593811 d07b23026 +Author: John Willis +Date: Tue Mar 9 16:42:51 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit adc593811d8be0f2c6016c24997c57f3422be090 +Author: John Willis +Date: Tue Mar 9 16:27:34 2021 -0500 + + Add documentation in README for manually triggered deployments + +commit f56b12725c48f31f35e62d35ca52716b6f5476ca +Merge: 129cc9aea d07b23026 +Author: Carl Smith +Date: Tue Mar 9 15:13:33 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit d07b2302694364003ba755a1247a2fb98d23c65a +Merge: 6ede27b10 184b4e1e9 +Author: Carl Smith +Date: Tue Mar 9 15:04:08 2021 -0500 + + Merge pull request #719 from raft-tech/snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b + + [Snyk] Upgrade react-scripts from 4.0.0 to 4.0.3 + +commit 7c6aa9332e053d3bea5cbe50152f2e84ac702074 +Author: John Willis +Date: Tue Mar 9 14:40:40 2021 -0500 + + Generalize label since deployment environment will be based on the branch name as with regular CI workflows + +commit 184b4e1e9d6cef2cd5b80a313d817aef8c9388a9 +Merge: 71a0d5663 6ede27b10 +Author: Carl Smith +Date: Tue Mar 9 14:18:39 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b + +commit c924dc3f4dc3e322088a0d0dc321ca596b6e7d8f +Merge: 74be18fd5 6ede27b10 +Author: John Willis +Date: Tue Mar 9 13:49:52 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit 129cc9aea358461bd7a371a5345323cade109646 +Author: John Willis +Date: Tue Mar 9 12:49:44 2021 -0500 + + move to drf-yasg as original package is being maintained again + +commit 0429187bd9eea30b5ed8bac4f8b11176164aa4be +Merge: f32d18770 6ede27b10 +Author: John Willis +Date: Tue Mar 9 12:25:38 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit a7a5702875f04199d94fdafcc227f71217be2461 +Merge: 12cff248f 6ede27b10 +Author: Carl Smith +Date: Tue Mar 9 11:55:49 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit fcb0efacba7ed860d2d640241c31502ad8e82434 +Merge: bdb34eef1 6ede27b10 +Author: John Willis +Date: Mon Mar 8 17:21:30 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/sc-08 + +commit 6ede27b10ed4ffed1f0b76d013bdea51b68e7bbc +Merge: 89e5ef136 2c65720c2 +Author: Carl Smith +Date: Mon Mar 8 17:08:36 2021 -0500 + + Merge pull request #686 from raft-tech/snyk-fix-1dafab6cbd91d267288baf2bf65cd82e + + [Snyk] Security upgrade django from 3.1.4 to 3.1.7 + +commit 74be18fd5b034ae22123671630051d967c88d4cf +Merge: c89c7025e 89e5ef136 +Author: John Willis +Date: Mon Mar 8 17:06:25 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit 2c65720c25fa0f5bc73c96cb5ba13bcad4fe1298 +Merge: 750eb41cf 89e5ef136 +Author: Carl Smith +Date: Mon Mar 8 16:58:31 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-1dafab6cbd91d267288baf2bf65cd82e + +commit 89e5ef136e358481b81b80e4052495c0838fc39c +Merge: afa0b0e23 e3b44da89 +Author: Carl Smith +Date: Mon Mar 8 16:33:13 2021 -0500 + + Merge pull request #718 from raft-tech/spike/645/buildpacks + + Add initial doc for buildpack ADR + +commit 750eb41cf2d42c6004d4571d4d091d7ca6dccd0b +Merge: 994387f72 afa0b0e23 +Author: Carl Smith +Date: Mon Mar 8 16:27:18 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-1dafab6cbd91d267288baf2bf65cd82e + +commit e3b44da89217cc8e50d2f47f4d5ae4d74211dc27 +Merge: 05576a093 afa0b0e23 +Author: Carl Smith +Date: Mon Mar 8 16:21:51 2021 -0500 + + Merge branch 'raft-tdp-main' into spike/645/buildpacks + +commit 05576a0934969518336e907da80a69f2881b4920 +Author: Carl Smith +Date: Mon Mar 8 16:21:46 2021 -0500 + + Update docs/Architecture Decision Record/011-buildpacks.md + + Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> + +commit 12cff248f1ef64bf97d994029da9c958713848b9 +Merge: b6dc3691c afa0b0e23 +Author: Carl Smith +Date: Mon Mar 8 16:05:10 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit c89c7025e7daa03f5cde5a32da07fd2107440b63 +Author: John Willis +Date: Mon Mar 8 15:50:00 2021 -0500 + + Refine response output + +commit afa0b0e23edbce320c4afa45dd129e2f9d341776 +Merge: 13a0c55d0 766fb3e33 +Author: Carl Smith +Date: Mon Mar 8 15:46:17 2021 -0500 + + Merge pull request #749 from raft-tech/revert-748-revert-623-epics/398/backend/431-4-7 + + Revert "Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint"" + +commit 766fb3e3379f2914da58e5e7ab0fe4c74b1edff2 +Author: Carl Smith +Date: Mon Mar 8 15:36:03 2021 -0500 + + Revert "Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint"" + +commit 13a0c55d0f3cb835199285124e9a79a7cdde61b4 +Merge: 199669601 500cb9783 +Author: Carl Smith +Date: Mon Mar 8 15:33:35 2021 -0500 + + Merge pull request #748 from raft-tech/revert-623-epics/398/backend/431-4-7 + + Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint" + +commit 105fbab70bbd86723acc765b8eff1690f8861f75 +Author: John Willis +Date: Mon Mar 8 15:26:09 2021 -0500 + + Add DOCKER_TAG variable declaration to prevent issues with malformed docker tags + +commit 500cb978317dd65cf3d1904c85613d3a5519ef3c +Author: Carl Smith +Date: Mon Mar 8 15:25:00 2021 -0500 + + Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint" + +commit 19966960114970871f6c5f2d27cc973362da0ed2 +Merge: 0b170bd7a 34d523534 +Author: Carl Smith +Date: Mon Mar 8 15:22:13 2021 -0500 + + Merge pull request #623 from raft-tech/epics/398/backend/431-4-7 + + Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint + +commit cf23a43d661d47ae7f02fbdd5766b159f3d5a836 +Author: John Willis +Date: Mon Mar 8 14:55:35 2021 -0500 + + Fix label name comparison in if directive + +commit 51efb051870e99ab559eaefb89b7f3955bab10ae +Author: John Willis +Date: Mon Mar 8 14:53:07 2021 -0500 + + Test: Print label name + +commit 34d5235345639eb8e7b2c559f43a4c0f528564ba +Merge: fc2829157 0b170bd7a +Author: Carl Smith +Date: Mon Mar 8 14:51:14 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit 505092cbd84729d70c915ce0f99ad6cb161b7729 +Merge: 5e9602307 0b170bd7a +Author: John Willis +Date: Mon Mar 8 14:49:04 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit bbae5b8350ccfc495d145aaa801962070391dab1 +Author: Carl Smith +Date: Mon Mar 8 14:17:39 2021 -0500 + + Update sprint-schedule.md + + Add dev sync meetings + +commit 7e51d1de211d342ab1a3d7a6fa468b204f1de094 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 8 13:03:25 2021 -0600 + + Update sprint-schedule.md + +commit 0b170bd7aae605815687f1ebca0770d307d9985d +Merge: 8c27b8bd4 af6d7102f +Author: Carl Smith +Date: Mon Mar 8 13:38:21 2021 -0500 + + Merge pull request #740 from raft-tech/kniz-raft-patch-1 + + Update our-workflow.md + +commit bdb34eef1da7c2f5ca16a93afa3f74472f2fe357 +Author: Carlton Smith +Date: Mon Mar 8 13:19:58 2021 -0500 + + add documentation + +commit af6d7102fb3b6559b5f34c370423061fe50f73d4 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 8 12:01:48 2021 -0600 + + Update our-workflow.md + +commit 62e0af44142fae36a184a1dd8477c7040c3a6382 +Author: Aaron Beavers +Date: Mon Mar 8 12:37:03 2021 -0500 + + Remove duplicated import name + +commit f037f957ecf22d46a7b7f7926ef339b3a5fb76ea +Merge: bb90a36ff 8c27b8bd4 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 8 11:36:23 2021 -0600 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 8c27b8bd463afdec841b8af696d6487556745fed +Merge: e7ccf270f a2fa3cfd9 +Author: Carl Smith +Date: Mon Mar 8 12:10:45 2021 -0500 + + Merge pull request #679 from raft-tech/documentation/access-control-ac-2(9) + + Create ac-2(9).md + +commit a2fa3cfd9f39a21ddf2388e5148d03614f1e5cd2 +Merge: 364952b0d e7ccf270f +Author: Carl Smith +Date: Mon Mar 8 11:53:20 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(9) + +commit bb90a36ff48e4bef150240700e6707cd3d35adfb +Merge: 5ffe73160 e7ccf270f +Author: Carl Smith +Date: Mon Mar 8 11:46:03 2021 -0500 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit 5ffe7316046a3adde167f7911348f6460ee22ca2 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 8 10:36:30 2021 -0600 + + Update our-workflow.md + +commit b6984e4731f3f302f66a094a686774112a6cbc1d +Merge: a9997d911 e7ccf270f +Author: Carl Smith +Date: Mon Mar 8 11:21:12 2021 -0500 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit 765eb746eddc52b56e655a78e24c80ec08329c1e +Merge: de931debb e7ccf270f +Author: Carl Smith +Date: Fri Mar 5 17:29:25 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/sc-04 + +commit e7ccf270fed60841085f93f0413154bd7365884f +Merge: d9a81e878 1a4233316 +Author: Carl Smith +Date: Fri Mar 5 17:27:03 2021 -0500 + + Merge pull request #676 from raft-tech/documentation/access-control-ac-2(7) + + Documentation/access control ac 2(7) + +commit 1a4233316ac3c294d40955590545d937a8ecb82e +Merge: 1f3c5709d d9a81e878 +Author: Carl Smith +Date: Fri Mar 5 17:16:23 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) + +commit d9a81e878f6dae4e05c119b43d943dcfa124a38e +Merge: 3eaea6fd6 4feac7fa3 +Author: Carl Smith +Date: Fri Mar 5 17:15:00 2021 -0500 + + Merge pull request #677 from raft-tech/documentation/access-control-ac-2(10) + + Create ac-2(10).md + +commit 4feac7fa3295ef0574ee93e4b0fe01292cad1b71 +Merge: 1c1b7814d 3eaea6fd6 +Author: Carl Smith +Date: Fri Mar 5 16:27:02 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(10) + +commit 3eaea6fd6a8e83c0ca6dd2c9ec22e0e61954979d +Merge: 8bea6ec71 20c312dd3 +Author: Carl Smith +Date: Fri Mar 5 16:23:45 2021 -0500 + + Merge pull request #675 from raft-tech/documentation/access-controls-ac-2(3) + + Documentation/access controls ac 2(3) + +commit cef45a8e033dc178dac94f4f8b12ff210ca899a1 +Merge: 7c806ea2b fc2829157 +Author: Aaron Beavers +Date: Fri Mar 5 16:21:32 2021 -0500 + + Merge branch 'epics/398/backend/431-4-7' into epics/398/backend/643/list-years + +commit 5e960230706bdc70d90918297123e48377b59973 +Author: John Willis +Date: Fri Mar 5 16:20:29 2021 -0500 + + Fix error in GH Action workflow yaml + +commit 5576a3feb5aab0e70c808a64de41b526ab9e965b +Merge: ae692aa7b 8bea6ec71 +Author: John Willis +Date: Fri Mar 5 16:17:09 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/devops/720 + +commit 20c312dd374821844ac580d25f733f0ff2c1618d +Merge: 479140af3 8bea6ec71 +Author: Carl Smith +Date: Fri Mar 5 16:12:43 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) + +commit fc2829157c6d4808461f9261e50f072b936d8ecf +Author: Aaron Beavers +Date: Fri Mar 5 15:41:15 2021 -0500 + + Add migration for years to use integers. + +commit 640bd21649cb7120f1a3356b0952b7bd36575d80 +Author: Aaron Beavers +Date: Mon Feb 8 18:05:15 2021 -0500 + + Revert "Use an integer for years" + + This reverts commit 1f4ee6f10ef12cd7062914c7ee1848cc0c75d9ed. + +commit ae692aa7b9261ff6b5372fbfad314789d9b96ac4 +Author: John Willis +Date: Fri Mar 5 15:29:30 2021 -0500 + + Add GitHub Action to trigger deploys on PR label assignment + +commit c35df8134a03214891e717fbbc7e2a4ab3683c3b +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 5 12:18:24 2021 -0600 + + Update our-workflow.md + +commit 1f3c5709d8bb9eead8a7a4e62252164006b1dd44 +Author: Carl Smith +Date: Fri Mar 5 13:03:39 2021 -0500 + + Update index.md + +commit b56e4e71a1361c93de8dfef69a8c9dda57d7337c +Author: Carl Smith +Date: Fri Mar 5 13:02:52 2021 -0500 + + Update index.md + +commit 6d00ba91dfd30a354077ddad9b0bcfa4aa69d85a +Merge: d3a912750 8bea6ec71 +Author: Carl Smith +Date: Fri Mar 5 13:00:24 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) + +commit 0ad172b61498675552d9f8c4a39623135040662e +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Mar 5 11:56:55 2021 -0600 + + Update our-workflow.md + +commit de931debb0405ce609b652fe708e8bad1abe75ef +Author: Carlton Smith +Date: Fri Mar 5 12:56:39 2021 -0500 + + add user information + +commit 66bde78ae82c31306e71d0e2f6854a0b2dfc611c +Author: Carlton Smith +Date: Fri Mar 5 12:40:11 2021 -0500 + + add sc-4 documentation + +commit ae78ac82d39f1ebc054fdb9bb51bceb8d5408a48 +Merge: 0fa39a619 8bea6ec71 +Author: Carl Smith +Date: Fri Mar 5 11:51:29 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit 8bea6ec713c15eddd8e3e6dbf014de7a921bfcf1 +Merge: 4d29de4a0 9dc6ff8ac +Author: Carl Smith +Date: Fri Mar 5 11:48:53 2021 -0500 + + Merge pull request #725 from raft-tech/bh-update-diagram + + Update boundary diagram + +commit 9dc6ff8ac791786066b632be98a302494a6d7e00 +Merge: 3ec21be18 4d29de4a0 +Author: Carl Smith +Date: Fri Mar 5 11:39:24 2021 -0500 + + Merge branch 'raft-tdp-main' into bh-update-diagram + +commit 0fa39a619f58ee555221e87d6c910db48c8d95e1 +Merge: c5786373a 4d29de4a0 +Author: Carl Smith +Date: Fri Mar 5 11:38:42 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit 1c1b7814d5664f99d08a71bb553dd0e59b3c6968 +Merge: 5ce2a8750 4d29de4a0 +Author: Carl Smith +Date: Fri Mar 5 11:36:02 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(10) + +commit 4d29de4a0301c331d3fa40b43e527801a7977d51 +Merge: 3b88d61b7 eb5a55df2 +Author: Carl Smith +Date: Fri Mar 5 10:26:21 2021 -0500 + + Merge pull request #581 from raft-tech/issues/backend/519 + + [issues/519/backend] Allow creating super users through admin panel + +commit c5786373ad38d67db14ac569961a93d48e25c02e +Author: Carl Smith +Date: Thu Mar 4 15:43:21 2021 -0500 + + Update test_api.py + +commit eb5a55df29a4231b9333a154870c9ceac87b487d +Author: Carl Smith +Date: Thu Mar 4 15:27:59 2021 -0500 + + Update test_admin.py + +commit 00b8c672582472c905604d68231a4921105b814f +Merge: 770bf39f3 3b88d61b7 +Author: Carl Smith +Date: Thu Mar 4 15:12:19 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/backend/519 + +commit 6fe851f4f0c267c0304235caeba2621af7a18de6 +Merge: e284d6b92 3b88d61b7 +Author: Carl Smith +Date: Thu Mar 4 15:02:38 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit e284d6b92e7123c2598d9e40a948310de475b9d4 +Author: Carl Smith +Date: Thu Mar 4 13:55:03 2021 -0500 + + Update report.md + +commit 92f57b994988bb152d856430dddee8e21794631b +Merge: e01bacb5c 0d646757b +Author: Aaron Beavers +Date: Thu Mar 4 13:09:08 2021 -0500 + + Merge remote-tracking branch 'origin/epics/398/backend/431-4-7' into epics/398/backend/431-4-7 + +commit e01bacb5c02fc269021c49fecb2fdb22dc0397c2 +Author: Aaron Beavers +Date: Thu Mar 4 13:02:35 2021 -0500 + + Update doc strings on tests + +commit 6547cfb484491441450b31ae0002a2e48282ca91 +Author: Aaron Beavers +Date: Thu Mar 4 13:02:19 2021 -0500 + + Remove unnecessary comment. + +commit 0d646757b77236cabf99c94f7ccbe8319c75f55d +Author: Aaron Beavers +Date: Thu Mar 4 12:49:48 2021 -0500 + + Update tdrs-backend/tdpservice/users/test/factories.py + + Co-authored-by: John Willis + +commit 330e91fe9d96d2e1a0ed96215f9d176944436192 +Merge: 1a442b198 3b88d61b7 +Author: John Willis +Date: Thu Mar 4 12:08:16 2021 -0500 + + Merge branch 'raft-tdp-main' into spike/645/buildpacks + +commit 3b88d61b77ae34a57e199da5b11610f0cf9d3b6b +Merge: af8a43829 bef1112be +Author: Carl Smith +Date: Thu Mar 4 11:54:15 2021 -0500 + + Merge pull request #736 from raft-tech/lfrohlich-patch-2 + + Move Sprint 3 Summary.md to Sprint-Review subfolder + +commit bef1112be1673d58d81c8a36e167d3b06a479909 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Mar 4 11:38:55 2021 -0500 + + Rename docs/Sprint 3 Summary.md to docs/Sprint-Review/Sprint 3 Summary.md + + Moved to Sprint-Review subfolder + +commit 71a0d566369d3a0d021e3b55d8624f26b1b64ac6 +Merge: 56e276fca af8a43829 +Author: John Willis +Date: Thu Mar 4 11:35:20 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b + +commit 56e276fca7e0f1811ca724029ec28d1d99f90ead +Author: John Willis +Date: Thu Mar 4 11:33:32 2021 -0500 + + Update react-scripts to 4.0.3 + +commit 1a442b19803c587b5762ca4648588d684705074d +Author: Carl Smith +Date: Thu Mar 4 11:21:18 2021 -0500 + + Update 011-buildpacks.md + +commit a91079f78727cb495390508383149438270bd3c9 +Author: Carl Smith +Date: Thu Mar 4 11:17:49 2021 -0500 + + Update 011-buildpacks.md + +commit 9d5afdee460d5423549ea20cc0e8bd75920acf13 +Author: Carl Smith +Date: Thu Mar 4 11:03:18 2021 -0500 + + Update 011-buildpacks.md + +commit 8c79bfeb13383731edfa55bfa0e80f5446a76b31 +Author: Carl Smith +Date: Thu Mar 4 11:02:13 2021 -0500 + + Update docs/Architecture Decision Record/011-buildpacks.md + + Co-authored-by: John Willis + +commit ca8ef65485f43937d3085ca7d0cfc29b324e8a87 +Author: Carl Smith +Date: Thu Mar 4 11:01:52 2021 -0500 + + Update docs/Architecture Decision Record/011-buildpacks.md + + Co-authored-by: John Willis + +commit 083fb2d6199756c04648eb1ccd669a51419789e2 +Author: Carl Smith +Date: Thu Mar 4 11:00:58 2021 -0500 + + Update docs/Architecture Decision Record/011-buildpacks.md + + Co-authored-by: John Willis + +commit 479140af365097dba76e3b61d8abe216cf509348 +Merge: 12a98b5c9 af8a43829 +Author: Carl Smith +Date: Thu Mar 4 10:41:01 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) + +commit 94684b9a7f2c4ae2281ccfcf6dd605d9ddb253d2 +Merge: 4a8ad8904 af8a43829 +Author: Carl Smith +Date: Thu Mar 4 10:26:22 2021 -0500 + + Merge branch 'raft-tdp-main' into spike/645/buildpacks + +commit 4a8ad890415897b2860b8905b286c5957aa4d7d1 +Author: Carl Smith +Date: Thu Mar 4 10:23:55 2021 -0500 + + Update 011-buildpacks.md + +commit d046f8b7b90a50bfb07e0ed8706398fd30f75919 +Author: Carl Smith +Date: Thu Mar 4 10:21:09 2021 -0500 + + Update 011-buildpacks.md + +commit d3a912750139c7f65e261b95fd2aaa507f599214 +Merge: 819e2b930 af8a43829 +Author: Carl Smith +Date: Wed Mar 3 17:27:32 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) + +commit b21fb94f6afdd56f93fbd94bbcd8f34b5637c0a0 +Merge: 55a72bfe3 af8a43829 +Author: Carl Smith +Date: Wed Mar 3 13:58:40 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit af8a4382954c70ebf1fc5f1b5c81592afd5da430 +Merge: 2a3bfc67d ce8591b4c +Author: Carl Smith +Date: Wed Mar 3 13:35:07 2021 -0500 + + Merge pull request #733 from raft-tech/revert-731-revert-701-raft-staging + + Revert "Revert "673: Utilize distinct Dockerfiles for deployment environments"" + +commit 3ec21be181ca4b2a1ff313d5083b7ad5f9009dfd +Merge: 4a08ee149 2a3bfc67d +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Mar 3 12:55:18 2021 -0500 + + Merge branch 'raft-tdp-main' into bh-update-diagram + +commit ce8591b4cbc723bc365dbac141725961eba238d4 +Author: Carl Smith +Date: Wed Mar 3 12:48:50 2021 -0500 + + Revert "Revert "673: Utilize distinct Dockerfiles for deployment environments"" + +commit 2a3bfc67d764dd613a95d70462c0d4a4f1e46b29 +Merge: 13b628dc2 670c0ce54 +Author: Carl Smith +Date: Wed Mar 3 12:42:06 2021 -0500 + + Merge pull request #731 from raft-tech/revert-701-raft-staging + + Revert "673: Utilize distinct Dockerfiles for deployment environments" + +commit 670c0ce54d491d3271f8f83384b55c2a64ef4df2 +Author: Carl Smith +Date: Wed Mar 3 12:32:26 2021 -0500 + + Revert "673: Utilize distinct Dockerfiles for deployment environments" + +commit a9997d911f114625e2bdc1f740b420fecf05e53a +Merge: 52cab6072 13b628dc2 +Author: Jorge Gonzalez +Date: Wed Mar 3 12:27:00 2021 -0500 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit 55a72bfe361660dc2d26ea19c98d9e3e4c44bdf5 +Merge: 49d9d5db5 13b628dc2 +Author: Carl Smith +Date: Wed Mar 3 11:50:39 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit 776d24935e89c9e30ed23ae7edb82025352bec7f +Merge: 238a97ab9 13b628dc2 +Author: Carl Smith +Date: Wed Mar 3 11:50:08 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b + +commit 13b628dc29fff06acc467920e607e3df65b39a3d +Merge: 4b7c570ae 6c2c2ab9d +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Mar 3 11:45:25 2021 -0500 + + Merge pull request #701 from raft-tech/raft-staging + + 673: Utilize distinct Dockerfiles for deployment environments + +commit 819e2b93031e7d4ec591826c6cfd6f69b460379e +Author: Carl Smith +Date: Wed Mar 3 11:37:42 2021 -0500 + + Rename docs/Security-Compliance/Security-Controls/index.md to docs/Security-Compliance/Security-Controls/ac-2-7/index.md + +commit 932dca9b92c07a38a1b9a7df67707eef1f56278d +Merge: 5afa6eec6 4b7c570ae +Author: Carl Smith +Date: Wed Mar 3 11:37:00 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) + +commit 770bf39f33349d82bba2945249d18e3cae7dd8e5 +Merge: 5187fd441 4b7c570ae +Author: Carl Smith +Date: Wed Mar 3 10:59:11 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/backend/519 + +commit 52cab6072c94525fcd7563670dde397cb830cd93 +Merge: c562ad2e7 4b7c570ae +Author: Jorge Gonzalez +Date: Wed Mar 3 10:43:32 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin + +commit f32d18770c98c35316d0e4523ff6121514bcd30d +Merge: 5126834c3 4b7c570ae +Author: John Willis +Date: Tue Mar 2 17:24:14 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit 6c2c2ab9db2626a14876478cd80f8269fa9f2ac4 +Merge: bf8dd84cc 4b7c570ae +Author: John Willis +Date: Tue Mar 2 17:19:33 2021 -0500 + + Merge branch 'raft-tdp-main' into raft-staging + +commit 238a97ab9302795b702d2da9c21c3da4feec38e0 +Merge: dae3b4789 4b7c570ae +Author: John Willis +Date: Tue Mar 2 16:39:01 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b + +commit 4b7c570ae35c0f657894534dd2fe032ef0d47dcc +Merge: 6b1f280cc 0fb446499 +Author: Carl Smith +Date: Tue Mar 2 16:26:52 2021 -0500 + + Merge pull request #727 from raft-tech/kniz-raft-patch-1 + + Create sprint-15-summary.md + +commit 0fb446499d5e999b40cf56cd8861dac5c540672a +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Mar 2 14:53:16 2021 -0600 + + Create sprint-15-summary.md + +commit 5126834c3987d4860b76374c2749d2b31fa52aa4 +Author: John Willis +Date: Tue Mar 2 14:02:19 2021 -0500 + + Remove broken ToS link + +commit ae8b81900d6e6d7deefb021b69c9ca2a5d64c2c3 +Author: Carl Smith +Date: Tue Mar 2 13:58:01 2021 -0500 + + Update urls.py + + update todo + +commit 12a98b5c9521c4cc9cbe3e48d790b211db04d2c5 +Merge: 0c748244e 6b1f280cc +Author: Carl Smith +Date: Tue Mar 2 12:42:07 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) + +commit 0c748244efabce1aec8a6598f0b241982d639ba1 +Author: Carl Smith +Date: Tue Mar 2 12:41:39 2021 -0500 + + Update index.md + + add screenshot + +commit d82fbbc93a09fba2c147e55a3eb67ff0ee3a485e +Merge: 9ece7e2d2 0b6a5f892 +Author: Carlton Smith +Date: Tue Mar 2 12:40:12 2021 -0500 + + Merge branch 'documentation/access-controls-ac-2(3)' of github.com:raft-tech/TANF-app into documentation/access-controls-ac-2(3) + +commit 9ece7e2d2a8aad3b6a0016a843c17cbc92070632 +Author: Carlton Smith +Date: Tue Mar 2 12:40:01 2021 -0500 + + add screenshot + +commit 5187fd44192c2b1d61c4d5051c0d9191d55c326c +Merge: e1d0bc6c3 0425488a7 +Author: Carlton Smith +Date: Tue Mar 2 12:38:40 2021 -0500 + + Merge branch 'issues/backend/519' of github.com:raft-tech/TANF-app into issues/backend/519 + +commit e1d0bc6c36f7f966376bfd1cb7c0e9da7c777ccf +Author: Carlton Smith +Date: Tue Mar 2 12:38:18 2021 -0500 + + throw error + +commit 0b6a5f892aafc6f689b0c8de3faa1336d14226fb +Author: Carl Smith +Date: Tue Mar 2 12:08:36 2021 -0500 + + Include Django Admin + +commit b458e46942071476a0ccf05ec98648dc2f7116c8 +Author: Carl Smith +Date: Tue Mar 2 11:54:49 2021 -0500 + + Update index.md + + keeping OCIO language in the Access Control portion + Adding TDP requirements for 180 days + +commit 4a08ee149adf694a80d3211175e0760d869c6b83 +Author: Brian Hurst +Date: Tue Mar 2 11:49:29 2021 -0500 + + Update boundary diagram + +commit c562ad2e7af700e01ee1467b75c92ad1c136589a +Merge: afede7f0d 6b1f280cc +Author: Jorge Gonzalez +Date: Tue Mar 2 11:03:15 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin + +commit 0425488a75db816976ed94c26216856cbc570cfd +Merge: 7e5aec428 6b1f280cc +Author: Carl Smith +Date: Tue Mar 2 09:37:23 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/backend/519 + +commit a763ffac50a259188d2cc18e9b3bd1cf00dc1089 +Merge: 06c6963f7 6b1f280cc +Author: John Willis +Date: Mon Mar 1 17:11:38 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit bf8dd84cc46987c2bbde54343b55b82ac123b926 +Merge: 08c798277 6b1f280cc +Author: John Willis +Date: Mon Mar 1 17:11:07 2021 -0500 + + Merge branch 'raft-tdp-main' into raft-staging + +commit 49d9d5db56a0f03c0e143387e439eb7696984352 +Merge: 45f53b519 6b1f280cc +Author: Aaron Beavers +Date: Mon Mar 1 16:46:16 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 + +commit 7c806ea2b1e85b20d507d91c0baa6e0c65e1414d +Merge: a17785fa1 45f53b519 +Author: Aaron Beavers +Date: Mon Mar 1 16:16:32 2021 -0500 + + Merge branch 'epics/398/backend/431-4-7' into epics/398/backend/643/list-years + +commit 45f53b51936a34e8b8b50617df7e2db3050238b7 +Author: Aaron Beavers +Date: Mon Mar 1 16:14:07 2021 -0500 + + remove conflict chunks + +commit 7e5aec4280ffef80330c023c27c9666be567c2b5 +Author: Carlton Smith +Date: Mon Mar 1 15:42:57 2021 -0500 + + add assertion + +commit 6b1f280ccd35c10f2fac639068a90c767c3d6d36 +Merge: 688a5e69a 808476322 +Author: Carl Smith +Date: Mon Mar 1 15:38:49 2021 -0500 + + Merge pull request #711 from raft-tech/documentation/move-folders + + move folders + +commit a17785fa15fc522aaada692038839f4d238e042b +Author: Aaron Beavers +Date: Mon Mar 1 15:25:50 2021 -0500 + + changes (re build git branch) + +commit 80847632234c4a5c350681dcdd90aa809ac503c9 +Merge: 5442441fc 688a5e69a +Author: Carl Smith +Date: Mon Mar 1 15:25:49 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/move-folders + +commit 3f1f3d13494a72d0bb704d232406156a0653af31 +Author: Aaron Beavers +Date: Mon Mar 1 15:25:23 2021 -0500 + + Add new routes + +commit e7fe9c3c1e80a81dc71171713ff48eaa74495ed9 +Author: Aaron Beavers +Date: Mon Mar 1 15:22:00 2021 -0500 + + Add integration tests + +commit 688a5e69a0573ba3f0447df442d2341d5d87a1e5 +Merge: c0987de52 b220efd56 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 1 14:12:32 2021 -0600 + + Merge pull request #713 from raft-tech/kniz-raft-patch-1 + + Update definition-of-done.md + +commit 74c1367f33c42817eb859f25c21c16f0e31c0c8c +Author: Carlton Smith +Date: Mon Mar 1 15:08:48 2021 -0500 + + add to docker-compose + +commit 688c8d26678eb682c390e7dd074f65c7e1375841 +Merge: cca161448 c0987de52 +Author: Aaron Beavers +Date: Mon Mar 1 14:45:01 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 + +commit c2aab5bc6ce453a1dd1e3a009abec8f87bbfa36d +Author: Carlton Smith +Date: Mon Mar 1 14:17:48 2021 -0500 + + remove the default + +commit b220efd561676073ac66799cd121a81e26c88e2c +Merge: cff81ef7f c0987de52 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 1 13:07:47 2021 -0600 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit c0987de5283e7ed73bebcf28ffb646ae2931e136 +Merge: 8461da721 80618ae4f +Author: Carl Smith +Date: Mon Mar 1 14:05:30 2021 -0500 + + Merge pull request #715 from raft-tech/kniz-raft-patch-2 + + Update Team-Composition.md + +commit cff81ef7f72dc7a7cfa176f5f4c6e711dc5393f5 +Merge: 385574d1d 8461da721 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Mar 1 13:01:24 2021 -0600 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-1 + +commit dacd484a8befb23fd2f66b784e167d262f73823c +Author: Carlton Smith +Date: Mon Mar 1 13:45:56 2021 -0500 + + add test + +commit 6bc89490881e93d880df3dcfcd8cc0743ec1939a +Author: Carlton Smith +Date: Mon Mar 1 13:23:55 2021 -0500 + + add var to docker + +commit cca1614483da8ea9cf3d934bdab11f5eb11af93f +Merge: 5d782d17f 8461da721 +Author: Aaron Beavers +Date: Mon Mar 1 13:22:59 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit 5442441fc60869826d844ab2012a015aba9c3251 +Merge: bfc1adc96 8461da721 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Mar 1 13:22:31 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/move-folders + +commit 80618ae4ffd2214683d16a93f386f53524c4efcc +Merge: eef266235 8461da721 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Mar 1 13:20:52 2021 -0500 + + Merge branch 'raft-tdp-main' into kniz-raft-patch-2 + +commit d0e4f7c507a68bb62f9ae034d0809da9d821d445 +Author: Carlton Smith +Date: Mon Mar 1 12:57:09 2021 -0500 + + add reverse + +commit 706159aee212a461c07b8860239cba146b2f60b5 +Author: Carlton Smith +Date: Mon Mar 1 12:20:08 2021 -0500 + + change logging statement + +commit eeb3a9e6eb2b4067bb3704905fbccf01413c8c1c +Author: Carlton Smith +Date: Mon Mar 1 11:53:24 2021 -0500 + + fix error + +commit c8f1ebd754e1191ec46212046a6a876f29743823 +Author: Carlton Smith +Date: Mon Mar 1 11:11:41 2021 -0500 + + add comment + +commit afede7f0dcf417a916281962789ee0197464499f +Merge: c27ac96da 8461da721 +Author: Jorge Gonzalez +Date: Mon Mar 1 10:55:08 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin + +commit 65530883d5e556cea8bd0e916f6614f288668f1e +Author: Carlton Smith +Date: Mon Mar 1 10:44:53 2021 -0500 + + update migration + +commit 915ba52e5c083d96ca9900624b4f642a5a703a5f +Merge: 344de901b 8461da721 +Author: Carl Smith +Date: Mon Mar 1 09:43:40 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/backend/519 + +commit d4a851d0c1c31ea130b0bc406de3f34481590e81 +Author: Aaron Beavers +Date: Mon Mar 1 09:38:35 2021 -0500 + + Renam ADR for build packs + +commit 08c798277445ecbf41f4fd29acccd4940c3da0c6 +Author: John Willis +Date: Fri Feb 26 17:15:32 2021 -0500 + + Update deployment flow to match raft-review -> development, raft-tdp-main -> vendor staging + +commit d48a8a83db53b77e032899cc0f3a54af62e0eb36 +Merge: dda963c33 8461da721 +Author: John Willis +Date: Fri Feb 26 17:08:18 2021 -0500 + + Merge branch 'raft-tdp-main' into raft-staging + +commit 8461da721d97d50105437d63a48fd48419d96f45 +Merge: 29177c456 4f3eb6171 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Fri Feb 26 16:41:26 2021 -0500 + + Merge pull request #537 from raft-tech/backend/517/admin-mfa + + Backend/517/admin mfa + +commit dae3b47893fbe60a988c12ebc981bc6e6f376dce +Author: snyk-bot +Date: Fri Feb 26 21:36:41 2021 +0000 + + fix: upgrade react-scripts from 4.0.1 to 4.0.2 + + Snyk has created this PR to upgrade react-scripts from 4.0.1 to 4.0.2. + + See this package in npm: + https://www.npmjs.com/package/react-scripts + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit 97279547a6668c1f65c6608238d8bbafd51263db +Author: Aaron Beavers +Date: Fri Feb 26 13:19:16 2021 -0500 + + Add rough estimate and tasks + +commit 10a309ee21bead1c158f11867a201854152f8401 +Author: Aaron Beavers +Date: Fri Feb 26 12:40:21 2021 -0500 + + Add initial doc for buildpack ADR + +commit 4f3eb61711ecdbc28ff930c644efdd148855095a +Author: Carlton Smith +Date: Fri Feb 26 11:24:58 2021 -0500 + + update file + +commit 9eeeeb4ba137e27dd820ec85bc43b465f62ec242 +Author: Carlton Smith +Date: Fri Feb 26 11:02:35 2021 -0500 + + remove from branch + +commit 3820d473af72f6fdfc8dae78ec126319d78f91e1 +Merge: 7bc1343a9 29177c456 +Author: Carlton Smith +Date: Fri Feb 26 10:58:43 2021 -0500 + + resolve conflicts + +commit c27ac96dabdd4e8fe217b05cd951af898bb6d901 +Merge: 4c6f3d5c6 4bb5e7475 +Author: Jorge Gonzalez +Date: Fri Feb 26 10:35:48 2021 -0500 + + Merge remote-tracking branch 'origin/front/639/hide-admin' into front/639/hide-admin + + # Conflicts: + # tdrs-frontend/.env + +commit 4c6f3d5c61805526cfa327c94cc5bdfff69a4499 +Author: Jorge Gonzalez +Date: Fri Feb 26 10:34:10 2021 -0500 + + commit .env + +commit 4bb5e7475f9c169daef4cf3072cd48e5a8f6ed03 +Merge: bc40cea9c 29177c456 +Author: John Willis +Date: Fri Feb 26 10:22:01 2021 -0500 + + Merge branch 'raft-tdp-main' into front/639/hide-admin + +commit 06c6963f702e84258aa44043c60f3fc5af93b867 +Merge: f98cafcc4 29177c456 +Author: John Willis +Date: Fri Feb 26 09:53:27 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit eef266235b3cb9b25e7ae9fcf8048697aeeeac57 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Feb 26 08:42:56 2021 -0600 + + Update Team-Composition.md + +commit 29177c456272efd8ca581e61ca11d6530e9783c6 +Merge: 9c9b184bc 50db6e106 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Thu Feb 25 17:15:23 2021 -0500 + + Merge pull request #660 from raft-tech/frontend/issue-510-dotenv + + Issue 510: Frontend local environment fixes/documentation + +commit bc40cea9c8736bd4207efb35e5b5ec4911ac8c27 +Author: Jorge Gonzalez +Date: Thu Feb 25 16:06:32 2021 -0500 + + add hostname env var and fix admin tab link + +commit 3c21eb4263378a3e76c072527b28f2d317137e79 +Author: Jorge Gonzalez +Date: Thu Feb 25 15:49:23 2021 -0500 + + fix admin tab URL + +commit dda963c3350bf74f0a0be1b718044dbb4cb67cf0 +Author: John Willis +Date: Thu Feb 25 15:33:32 2021 -0500 + + Address PR feedback + +commit f98cafcc4ca564b8a52464b86a32aa61eb4e67d3 +Merge: 6afe4a1c8 9c9b184bc +Author: John Willis +Date: Thu Feb 25 15:28:45 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit 58ae2f31aad3a00da1a2f6ed73cc3194f6bc9157 +Merge: 3756ce30b 9c9b184bc +Author: John Willis +Date: Thu Feb 25 15:09:29 2021 -0500 + + Merge branch 'raft-tdp-main' into raft-staging + +commit 46af734a66740316f373d32bf453b6ed8cbb9998 +Author: Jorge Gonzalez +Date: Thu Feb 25 15:04:00 2021 -0500 + + Update tdrs-frontend/src/components/Header/Header.test.js + + Co-authored-by: John Willis + +commit 67595668be3d10a85cbcdd962fd042c3c9ee362c +Author: Jorge Gonzalez +Date: Thu Feb 25 14:57:20 2021 -0500 + + revert gitignore change + +commit 0ea8b715ce8a75a07f49197cf61fb8d2f0ad8dd3 +Merge: fcebcf3f7 bfbee5ccf +Author: Jorge Gonzalez +Date: Thu Feb 25 14:44:00 2021 -0500 + + Merge branch 'front/639/hide-admin-safe' into front/639/hide-admin + +commit e7c1a8f870426773bc70df786f7de0082f5366bb +Merge: b894402e6 9c9b184bc +Author: Carl Smith +Date: Thu Feb 25 14:39:04 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + +commit f581279069c642b54c58537d55ff2f1a046c3e8c +Merge: 104893749 9c9b184bc +Author: Carl Smith +Date: Thu Feb 25 14:36:09 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b + +commit fcebcf3f7d678dc36384bda24968cf06cb4cfecd +Merge: 9c9b184bc 3fec09e1e +Author: Jorge Gonzalez +Date: Thu Feb 25 14:29:27 2021 -0500 + + Merge branch 'feat/639-hide-admin' into front/639/hide-admin + +commit 50db6e106d7ff36f4999dc2e40fca809729389aa +Merge: 2ebe6d288 9c9b184bc +Author: Carl Smith +Date: Thu Feb 25 14:00:12 2021 -0500 + + Merge branch 'raft-tdp-main' into frontend/issue-510-dotenv + +commit 344de901b7b59b6abbdb0ea3436c7116779bfdc3 +Author: Carl Smith +Date: Thu Feb 25 13:39:47 2021 -0500 + + Update and rename 009-assign-superuser.md to 010-assign-superuser.md + + update ADR number + +commit 7bc1343a97cdf6a65274598128c2e0298cc3860e +Merge: f271c233e 9c9b184bc +Author: Carl Smith +Date: Thu Feb 25 13:36:22 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 2e85953ced96fb2e44b6b776b10e31205ff53f7d +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Feb 25 12:34:53 2021 -0600 + + Update Team-Composition.md + +commit f2caf89a2e2db397dded886df85667838045e653 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Feb 25 12:32:35 2021 -0600 + + Update Team-Composition.md + +commit 9c9b184bc38b64552190d69649b74dec330b8f9f +Merge: 084d4f5a9 a4860bdea +Author: Carl Smith +Date: Thu Feb 25 13:10:57 2021 -0500 + + Merge pull request #692 from raft-tech/documentation/adr-9-git-workflow + + ADR #9 Git Workflow + First PR using this process! + +commit a4860bdeadea6f4ebfdc8d3888c57a93b6354b90 +Merge: 3b3bc06f9 084d4f5a9 +Author: Carl Smith +Date: Thu Feb 25 13:01:21 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/adr-9-git-workflow + +commit 084d4f5a94cbddbfd6e5f948f970e6e3b91c694c +Merge: 0018ce17d bfb0ad696 +Author: Carl Smith +Date: Thu Feb 25 13:00:04 2021 -0500 + + Merge pull request #714 from raft-tech/final-rebase-with-hhs + + Final rebase with hhs + +commit 385574d1d4ef9c609a29aa1e858a166fc786a072 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Feb 25 11:39:07 2021 -0600 + + Update definition-of-done.md + +commit 666dad53cc53b92eb28aa8b1d51e463a3ac243fd +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Feb 25 11:37:01 2021 -0600 + + Update definition-of-done.md + +commit d695199819045d04a436525412488bf5efcaeb4c +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Feb 25 11:35:25 2021 -0600 + + Update definition-of-done.md + +commit 3b3bc06f9f927c7f1941ae55fcf9e55977d9333a +Author: Carl Smith +Date: Thu Feb 25 12:16:02 2021 -0500 + + Update docs/How-We-Work/Branching-Strategy.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 20c9db30ab40793c4ffb73a876172433fe8f34ac +Author: Carl Smith +Date: Thu Feb 25 12:07:49 2021 -0500 + + Update docs/Architecture Decision Record/009-git-workflow.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 22528dd6f220fea08e2425ec11c7e7cf08e28b2f +Author: Carl Smith +Date: Thu Feb 25 12:06:24 2021 -0500 + + Update 009-git-workflow.md + + add Thomas and fix spelling typo + +commit 7b735cc3f45194dcebc7c914fe464be0d3dcbde2 +Merge: 417613883 0018ce17d +Author: Carl Smith +Date: Thu Feb 25 11:53:34 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/adr-9-git-workflow + +commit bfc1adc96ea18a05d7500c6a6e50eb9f81eba341 +Author: Carlton Smith +Date: Thu Feb 25 11:40:14 2021 -0500 + + move folders + +commit 6af7d8b6254ab55262e8da98de55b4245eeb9aee +Author: Carlton Smith +Date: Thu Feb 25 11:31:25 2021 -0500 + + move folder + +commit ca0af2547e2fd9c55effb180d545217ecf087f06 +Merge: 796b810a1 0018ce17d +Author: Carl Smith +Date: Thu Feb 25 11:28:43 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) + +commit 5afa6eec6539903dc6b0f31cb9862b7659224394 +Author: Carlton Smith +Date: Thu Feb 25 11:28:03 2021 -0500 + + move folder + +commit 7521853175070d16663e20917c0594cf17f7fdd1 +Merge: 081e9d056 0018ce17d +Author: Carl Smith +Date: Thu Feb 25 11:26:50 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) + +commit 5ce2a875058b4ce9caf9332cc209da8ad7178c9e +Author: Carlton Smith +Date: Thu Feb 25 11:25:06 2021 -0500 + + move folder + +commit 18f293d18019ec093ef0b7a8bee8ea0d360ca764 +Merge: 065538580 0018ce17d +Author: Carl Smith +Date: Thu Feb 25 11:22:26 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(10) + +commit b6dc3691c74623acbc0c03be5c7dc2169c174ad0 +Merge: 0972c9c14 0018ce17d +Author: Carl Smith +Date: Thu Feb 25 11:21:02 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit 0972c9c146f68ef40a8d7f3229991b2e493b2b7a +Author: Carlton Smith +Date: Thu Feb 25 11:20:44 2021 -0500 + + move to folder + +commit 364952b0d50483a0b2b93883e441a494b24ce7fd +Author: Carlton Smith +Date: Thu Feb 25 11:17:15 2021 -0500 + + move to correct folder + +commit 820d34d93e516c14a7f999eb81c687c9fba7fcd9 +Merge: ccd0f6312 0018ce17d +Author: Carl Smith +Date: Thu Feb 25 11:13:06 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(9) + +commit 2ebe6d288973ed9b7b61e6acf8f29fd6f81880fc +Author: John Willis +Date: Wed Feb 24 17:05:36 2021 -0500 + + Update tdrs-frontend/README.md + + Co-authored-by: Jorge Gonzalez + +commit 4176138830840369b3cb180f816bac589f4d8d59 +Author: Carl Smith +Date: Wed Feb 24 17:03:41 2021 -0500 + + Update 009-git-workflow.md + + Change "Pending" to "Approved" based on @ADPennington 's note on teams indicating we did want to go through with this method. Of course, final approval will be the approval of this pull request. + +commit 4ca3c3857fa9904a3bc3df61f3f32a2b8fb7b3e1 +Merge: 92e3034bb 0018ce17d +Author: John Willis +Date: Wed Feb 24 16:49:30 2021 -0500 + + Merge branch 'raft-tdp-main' into frontend/issue-510-dotenv + +commit 5d782d17f2805679b7d8f45d66654847c32454f9 +Merge: f620d7bea 0018ce17d +Author: Carl Smith +Date: Wed Feb 24 16:48:30 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 + +commit 3756ce30bddec0b21f0fce4b1702784561e2d875 +Merge: cba726bf2 0018ce17d +Author: John Willis +Date: Wed Feb 24 16:01:27 2021 -0500 + + Merge branch 'raft-tdp-main' into raft-staging + +commit cba726bf2f0594b91270af098275c651247b324f +Author: John Willis +Date: Wed Feb 24 15:44:55 2021 -0500 + + Doc changes as discussed in closed PR https://github.com/HHS/TANF-app/pull/171 + +commit b894402e6d05b38c470aaf70468da6c5cf00e8da +Merge: 0cfb98339 5d869cd6d +Author: Carlton Smith +Date: Wed Feb 24 15:42:29 2021 -0500 + + Merge branch 'snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b' of github.com:raft-tech/TANF-app into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + +commit 0cfb98339ad3a8ce7a8d35e91d430db4424f3117 +Merge: 09670a854 bfb0ad696 +Author: Carlton Smith +Date: Wed Feb 24 15:41:40 2021 -0500 + + Merge branch 'main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + +commit 5d869cd6d36d09f9ded783e8591468764298652a +Merge: 09670a854 0018ce17d +Author: Carl Smith +Date: Wed Feb 24 15:41:01 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + +commit f271c233ea66998371cc7fe4071b5d22adc6ccae +Merge: 4983c1a46 a1caee5d8 +Author: Carlton Smith +Date: Wed Feb 24 15:33:41 2021 -0500 + + Merge branch 'backend/517/admin-mfa' of github.com:raft-tech/TANF-app into backend/517/admin-mfa + +commit 4983c1a4656645bdf187a996ab34211b4e6d9879 +Merge: ce9ccc0dc bfb0ad696 +Author: Carlton Smith +Date: Wed Feb 24 15:33:08 2021 -0500 + + Merge branch 'main' into backend/517/admin-mfa + +commit a1caee5d8b04c69468f9d9be6f9dc453702dd4f3 +Merge: a6a226b4d 0018ce17d +Author: Carl Smith +Date: Wed Feb 24 15:30:00 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 5256ed4c0e22d35cac576234e4d57c866b68f023 +Author: Carl Smith +Date: Wed Feb 24 15:25:31 2021 -0500 + + Update 009-git-workflow.md + + add notes section + +commit 191855897a4d2047b29b1c45992d945455cb3344 +Author: Carlton Smith +Date: Wed Feb 24 15:05:53 2021 -0500 + + update branching strategy docs + +commit 91b3f907cd32024ab5e5496d56db6f47fff5e100 +Merge: 4dbc1c38a e431e0694 +Author: Carlton Smith +Date: Wed Feb 24 14:54:12 2021 -0500 + + Merge branch 'documentation/adr-9-git-workflow' of github.com:raft-tech/TANF-app into documentation/adr-9-git-workflow + +commit 4dbc1c38a43952f0973e4dcc91c543c609a17804 +Author: Carlton Smith +Date: Wed Feb 24 14:53:31 2021 -0500 + + update image + +commit e431e0694bd6689fc70a259d11febbe3a45e31df +Author: Carl Smith +Date: Wed Feb 24 14:47:03 2021 -0500 + + Update 009-git-workflow.md + + requested revisions + +commit f620d7bea003fd2282951757fb1f2c64f3a584fe +Author: Aaron Beavers +Date: Wed Feb 24 14:05:50 2021 -0500 + + Remove lint + +commit bfb0ad696fe3161d3d2fa16139748ac55d89a13c +Merge: 9ef8afd05 f4b390b81 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Wed Feb 24 12:49:50 2021 -0500 + + Merge pull request #198 from raft-tech/catchup-hhs-raft + + Catchup hhs raft + +commit 35f5f03f11018ccb26cf3f6e619561a8c9aa6b7b +Author: Aaron Beavers +Date: Wed Feb 24 12:22:21 2021 -0500 + + Add comment explaining STT User Factory + +commit f4b390b814af7f7ccd8cd0f437078c5a3fe9bb82 +Merge: 9ef8afd05 0018ce17d +Author: Carlton Smith +Date: Wed Feb 24 12:19:38 2021 -0500 + + Merge branch 'raft-tdp-main' into main + +commit 0018ce17db522ac1b4fd812376160e6d175b9625 +Merge: 4d0f37d67 a5dd4631c +Author: Carl Smith +Date: Wed Feb 24 11:31:44 2021 -0500 + + Merge pull request #697 from raft-tech/shubhi-raft-patch-9 + + update verbiage for clarity + +commit a5dd4631c52a552d2f6fbebe0b1cc9acb31c7e6e +Merge: de195e36c 4d0f37d67 +Author: Carl Smith +Date: Wed Feb 24 11:13:14 2021 -0500 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 + +commit 4d0f37d67df8a750ff7614c8562174991ad3b0ff +Merge: 92f156cd3 a7d7be93c +Author: Carl Smith +Date: Wed Feb 24 11:13:03 2021 -0500 + + Merge pull request #617 from raft-tech/documentation/access-controls-ac-06 + + Documentation/access controls ac 06 + +commit de195e36cc5f3bc9aa0f83c97335ca8068461e31 +Merge: 92634f7b4 92f156cd3 +Author: Carl Smith +Date: Wed Feb 24 11:01:32 2021 -0500 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 + +commit a7d7be93c8b690f5f481b28bc9d78f08f4f0f720 +Merge: 16148ed99 92f156cd3 +Author: Carl Smith +Date: Wed Feb 24 11:01:23 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-06 + +commit 92f156cd386bcf4e2481e7b944d812765cf9b540 +Merge: 3d55734ff f4029bca9 +Author: Carl Smith +Date: Wed Feb 24 11:00:55 2021 -0500 + + Merge pull request #607 from raft-tech/documentation/risk-assessment-ra-5 + + Documentation/risk assessment ra 5 + +commit 92634f7b457a878a2adcf2cded1f5f0f33c1e01c +Merge: 6c18cbdac 3d55734ff +Author: Carl Smith +Date: Wed Feb 24 11:00:45 2021 -0500 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 + +commit f4029bca921a6d3f6b7f528ff2f2638fc29f7ad4 +Merge: 9606e3064 3d55734ff +Author: Carl Smith +Date: Wed Feb 24 10:29:44 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/risk-assessment-ra-5 + +commit 16148ed99fc03512cb944f991ded7f450a20fee9 +Merge: 5ea591e38 3d55734ff +Author: Carl Smith +Date: Wed Feb 24 10:29:26 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-06 + +commit 3d55734ff246a956088efe5955b26e4d4a8a9adb +Merge: 75a674bc5 a1999a2ae +Author: Carl Smith +Date: Wed Feb 24 10:28:50 2021 -0500 + + Merge pull request #622 from raft-tech/documentation/access-controls-ac-2 + + Documentation/access controls ac 2 + +commit a1999a2ae219cc3d490a62a93a9015b4d0ffee90 +Merge: 33473e36f 75a674bc5 +Author: Carl Smith +Date: Wed Feb 24 10:02:21 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 + +commit 9ef8afd05763f30d4c4d3d8b0ac13508f35d9409 +Merge: 7a272cb33 33473e36f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 24 09:55:58 2021 -0500 + + Merge pull request #181 from raft-tech/documentation/access-controls-ac-2 + + Documentation/access controls ac 2 + +commit 33473e36fa68cdf2d4f1c23ca2f1bb075e0d2885 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 24 09:55:14 2021 -0500 + + Update docs/controls/access_control/ac-02.md + +commit 7a272cb3302ba6e7d16a79fbe8ff46ea69eb075c +Merge: fae6682d6 9606e3064 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 24 09:53:47 2021 -0500 + + Merge pull request #180 from raft-tech/documentation/risk-assessment-ra-5 + + Documentation/risk assessment ra 5 Looks good to me! + +commit fae6682d6678f66415a459cb06237181d11f4e75 +Merge: 992b93fdf 5ea591e38 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 24 09:52:38 2021 -0500 + + Merge pull request #175 from raft-tech/documentation/access-controls-ac-06 + + Documentation/access controls ac 06 Thanks all! + +commit 6c18cbdacc8f80c4908938e45e347553111ac7de +Author: Carlton Smith +Date: Wed Feb 24 09:45:47 2021 -0500 + + update verbiage for clarity + +commit 9a0ce0d6b3806edbb3a6b8231daa3103bfe39447 +Author: Carl Smith +Date: Tue Feb 23 15:18:42 2021 -0500 + + Update 009-git-workflow.md + + added con + +commit 5a999b83463a5d39e9cb5212cef7643bdcfa3a25 +Author: Carl Smith +Date: Tue Feb 23 14:55:07 2021 -0500 + + Update 009-git-workflow.md + + update reviewers + +commit 23d5443426bee7aa36039e26682a17376d18a5c1 +Author: Carl Smith +Date: Tue Feb 23 14:03:15 2021 -0500 + + Update 009-git-workflow.md + + fix typo + +commit 992b93fdf94a3c4ee50ef8d5f86487b0388a3037 +Merge: 6ff2cf3f2 1fb4d30ee +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 23 13:53:43 2021 -0500 + + Merge pull request #189 from kniz-raft/patch-12 + + Update communication-tools.md + +commit 6ff2cf3f26bd99a04638b8176ca3b0bd91a4af61 +Merge: db6daceda e2becad57 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 23 12:50:18 2021 -0500 + + Merge pull request #187 from shubhi-raft/patch-25 + + Create ST Workshop Facilitation Guide.md + +commit e2becad57d26d600b39e0dcd0baf8846c7bc0cd6 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 23 12:48:16 2021 -0500 + + Update docs/User-Research/2020, Winter - User Flow Validation/ST Workshop Facilitation Guide.md + +commit 596974f0c693edb128fae584998a4800939aaee5 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 23 12:47:05 2021 -0500 + + Update docs/User-Research/2020, Winter - User Flow Validation/ST Workshop Facilitation Guide.md + + it was decided not to include OFA in this workshop + +commit 7e95e0e2b4fa51f1ba5c5caa0be526c64c95f08e +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 23 12:46:49 2021 -0500 + + Update docs/User-Research/2020, Winter - User Flow Validation/ST Workshop Facilitation Guide.md + +commit db6dacedab5f98d198a544ce86b9dab0079030c9 +Merge: efad22c73 a038c5d16 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 23 12:44:10 2021 -0500 + + Merge pull request #188 from kniz-raft/patch-11 + + Create Sprint-14-Summary.md + +commit cfa5b6aaada057eb4b7187bc3779a6b941d8f73d +Author: Carl Smith +Date: Tue Feb 23 11:39:33 2021 -0500 + + Update 009-git-workflow.md + + documentation should be reviewed by Kati in raft review + PRs opened against dependent branches should be tagged `blocked` + +commit 65ad207cbbe34b9d6fa31053360907d0fd412937 +Author: Carlton Smith +Date: Tue Feb 23 10:55:38 2021 -0500 + + add ADR + +commit 75a674bc53f3dc0ef320b7169150f5844f4ed857 +Merge: 164c08066 35c8aa584 +Author: Carl Smith +Date: Mon Feb 22 15:00:16 2021 -0500 + + Merge pull request #689 from raft-tech/sprint-summary-13 + + add sprint 13 summary + +commit 35c8aa584ad556896c690181d6a836ea8e4b25bf +Author: Carlton Smith +Date: Mon Feb 22 14:50:48 2021 -0500 + + add sprint 13 summary + +commit bfbee5ccff432b898b040c729a4242b6ef8111b3 +Merge: 948ef2136 164c08066 +Author: Jorge Gonzalez +Date: Mon Feb 22 14:08:59 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin + +commit a6a226b4d08847e00dad23c1116007fb9eb5f819 +Merge: dc166aa02 164c08066 +Author: Carl Smith +Date: Mon Feb 22 14:05:56 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 164c0806651ba288746ad923993633a677663a81 +Merge: c80b20113 26fe90683 +Author: Carl Smith +Date: Mon Feb 22 14:05:33 2021 -0500 + + Merge pull request #688 from raft-tech/505-update-design-guide + + Update design guide + +commit 26fe90683ee54c4d18dacb402ede345648fccd76 +Author: Miles Reiter +Date: Mon Feb 22 13:49:26 2021 -0500 + + Update design guide + +commit efad22c73085328ebd5d761dc2b927809f71efc4 +Merge: 4215343c9 a8d448dd8 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Feb 22 13:32:45 2021 -0500 + + Merge pull request #190 from HHS/revert-184-ars/un-hardcode-dev-site-in-frontend-env + + Revert "Allow for correct logout behavior in staging env" + +commit 3fec09e1ebb3a22a3d6ade042aec5eae6aac455f +Merge: c80b20113 77f8ea34a +Author: Jorge Gonzalez +Date: Mon Feb 22 13:31:08 2021 -0500 + + Merge branch 'raft-review' of https://github.com/raft-tech/TANF-app into feat/639-hide-admin + +commit 948ef2136cad55d889d78b43b91eff75ce7c598a +Merge: 42f651213 77f8ea34a +Author: Carl Smith +Date: Mon Feb 22 12:53:51 2021 -0500 + + Merge branch 'raft-review' into front/639/hide-admin + +commit dc166aa025890da33795abdbe146bd25f8a1ac5a +Merge: 2b5641873 4215343c9 +Author: Aaron Beavers +Date: Mon Feb 22 12:48:44 2021 -0500 + + Merge remote-tracking branch 'HHS/main' into backend/517/admin-mfa + +commit 42f651213ac6d7b7991fbc5addbe8582ec13e910 +Merge: e165e08f9 739b70749 +Author: Jorge Gonzalez +Date: Mon Feb 22 12:41:07 2021 -0500 + + Merge branch 'feat/639-hide-admin' into front/639/hide-admin + + # Conflicts: + # tdrs-frontend/.env.development + # tdrs-frontend/.env.test + +commit 739b70749e377b2665b20b9022859fdbf1a29a5d +Merge: d36bad6f2 c80b20113 +Author: Jorge Gonzalez +Date: Mon Feb 22 12:34:30 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin + +commit e165e08f9b933d07852e49560fcf0c91bcc70048 +Merge: d36bad6f2 c80b20113 +Author: Jorge Gonzalez +Date: Mon Feb 22 12:34:30 2021 -0500 + + Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin + +commit 4215343c954d3020715700e431bf5f695b6e69c1 +Merge: b49d68126 acabd6a2c +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Feb 22 12:10:24 2021 -0500 + + Merge pull request #194 from HHS/ADPennington-patch-1 + + Use TDP terminology + +commit d6dcae14848fb3d090377c4de1adc30ba2074035 +Merge: f707be397 c80b20113 +Author: Carl Smith +Date: Mon Feb 22 10:33:53 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit acabd6a2c2e254335391e157f053fa2f5da74902 +Author: ADPennington <63075587+ADPennington@users.noreply.github.com> +Date: Mon Feb 22 10:26:23 2021 -0500 + + Use TDP terminology + + Updated New TDRS to TANF Data Portal. + +commit 796b810a1c46e3ec34e480c70ad40160d60e855c +Author: Carl Smith +Date: Mon Feb 22 09:53:06 2021 -0500 + + Update ac-2(3).md + + 180 days for inactive + +commit 994387f721bc575cc2f9cd2774be40e6f08f7f3f +Author: snyk-bot +Date: Sat Feb 20 02:10:37 2021 +0000 + + fix: tdrs-backend/requirements.txt to reduce vulnerabilities + + + The following vulnerabilities are fixed by pinning transitive dependencies: + - https://snyk.io/vuln/SNYK-PYTHON-DJANGO-1076802 + +commit a0b07aca7216ce430d114c2541af6e511d5eaa28 +Author: John Willis +Date: Fri Feb 19 17:36:37 2021 -0500 + + Update tdrs-backend/tdpservice/users/permissions.py + +commit 09670a85483babb8400e73d19e7528fc042f7364 +Merge: bf95432af c80b20113 +Author: John Willis +Date: Fri Feb 19 17:20:04 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b + +commit ccefb0ace97716e5556504a7c8a966ab0e8fc8a8 +Merge: 71481decf 460971a48 +Author: Carl Smith +Date: Fri Feb 19 17:04:53 2021 -0500 + + Merge pull request #685 from raft-tech/hotfix/support-staging-cf-app + + Ensure staging points to the correct app in Cloud.gov + +commit 460971a48f75d4f5bf4befc558b128156f5f4aec +Author: John Willis +Date: Fri Feb 19 16:55:59 2021 -0500 + + Ensure staging points to the correct app in Cloud.gov + +commit 2b56418737b265ecded9b67fa7869997ba16f238 +Merge: a5a0bd3b5 c80b20113 +Author: Carl Smith +Date: Fri Feb 19 16:23:52 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit c80b20113ac5ca3b0f5fb6b3123959bfd093dfc0 +Merge: b5ee82f23 401e492b2 +Author: Carl Smith +Date: Fri Feb 19 16:23:24 2021 -0500 + + Merge pull request #684 from raft-tech/rebase/hhs_main_20210219 + + Rebase/hhs main 20210219 + +commit 401e492b2b6cf33d4f584ce3b8d1c9c2010c230b +Merge: bb4f74d9a b5ee82f23 +Author: Carl Smith +Date: Fri Feb 19 16:14:25 2021 -0500 + + Merge branch 'raft-tdp-main' into rebase/hhs_main_20210219 + +commit bb4f74d9a7cebaaae14441474e1f0b7667aefd6a +Author: John Willis +Date: Fri Feb 19 15:21:27 2021 -0500 + + Add note about Deployed deliverable + +commit 7b9765196d517417c78c5e13f45411087278c731 +Author: Carl Smith +Date: Fri Feb 19 09:35:54 2021 -0500 + + Revert "Catchup hhs" + +commit 83bd2fe47ae915a170cfa7a1e40cdcd1f83f94ba +Author: Shubhi Mishra +Date: Fri Feb 19 13:52:43 2021 -0500 + + Update pull_request_template.md + + updated. + +commit 68344557708af811584818a6c6cc047c700c971f +Author: Shubhi Mishra +Date: Thu Feb 18 20:48:33 2021 -0500 + + Update pull_request_template.md + + updated PR checklist w/ qasp review checklist + +commit 6f05b82d959de3f20d7cb43879579c2fa37c1721 +Author: Carl Smith +Date: Thu Feb 18 11:52:14 2021 -0500 + + Revert "Catchup hhs main" + +commit aff448e3425e8ac3723a304fa6b0cccf93c2b23b +Author: Aaron Beavers +Date: Fri Feb 19 15:48:06 2021 -0500 + + Update migration so it does not use `create_superuser` + +commit cc4555193e33083e3c97ad52bd19deca58748f69 +Author: Aaron Beavers +Date: Fri Feb 19 15:45:30 2021 -0500 + + Simplify Permission logic + +commit b5ee82f23bc515b135ea14c57c89edc1d0edf95f +Merge: 67d6c493d 3f0665cd0 +Author: Carl Smith +Date: Fri Feb 19 15:31:39 2021 -0500 + + Merge pull request #682 from raft-tech/shubhi-raft-patch-9 + + Usually we wait for Merge to HHS, but since this is our workflow we would like to begin using it immediately + +commit 3f0665cd04761ea0673097aecf62cb0b5683baa0 +Author: John Willis +Date: Fri Feb 19 15:21:27 2021 -0500 + + Add note about Deployed deliverable + +commit 55fd0d59f305ded3e3689e50f1f318c9c0fe6c1d +Merge: 832bfd255 67d6c493d +Author: Shubhi Mishra +Date: Fri Feb 19 13:53:05 2021 -0500 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 + +commit 832bfd2553800a0b6dd6b7487fea3f74345058da +Author: Shubhi Mishra +Date: Fri Feb 19 13:52:43 2021 -0500 + + Update pull_request_template.md + + updated. + +commit b49d6812667095bce4312de69a3685b11418577d +Merge: 5e82aad7c 491bd3edf +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Feb 19 11:23:51 2021 -0500 + + Merge pull request #191 from HHS/bh-organize-controls + + Organize security control folder + +commit 491bd3edf1d794cd02f41cacbff5beb341e21e27 +Author: Brian Hurst +Date: Fri Feb 19 11:15:25 2021 -0500 + + Organize security control folder + +commit a5a0bd3b5fd0148f825d729c35fd0cd15b5298fa +Merge: ce9ccc0dc 67d6c493d +Author: Carl Smith +Date: Fri Feb 19 10:48:00 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 67d6c493d4493be53d80da5331ff44e54b2f4983 +Merge: f0e227dfa 2a08f52c6 +Author: Carl Smith +Date: Fri Feb 19 10:46:36 2021 -0500 + + Merge pull request #683 from raft-tech/revert-646-catchup-hhs + + Revert "Catchup hhs" + +commit 71481decff4731917a41ab1e15c01665b055fabd +Merge: f0e227dfa 05ef33dcb +Author: Carl Smith +Date: Fri Feb 19 10:29:22 2021 -0500 + + Merge pull request #681 from raft-tech/frontend/673-staging-dockerfile + + 673: Utilize distinct Dockerfiles for deployment environments + +commit e95d8e59a0238639d75cb7823da4aeb650dbfd17 +Author: Carl Smith +Date: Fri Feb 19 09:51:06 2021 -0500 + + Update tdrs-backend/tdpservice/users/migrations/0012_add_initial_super_user.py + + Co-authored-by: John Willis + +commit 2a08f52c624cc93f77dcf0929a1f6ed3f9fc6af7 +Author: Carl Smith +Date: Fri Feb 19 09:35:54 2021 -0500 + + Revert "Catchup hhs" + +commit 081e9d0569d08b602c21955f0b5db438530a986e +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Feb 19 08:50:26 2021 -0500 + + Update ac-2(7).md + + Updated line 29 to "This will only be allowed for the most privileged role System Admin." + +commit c3e65970c3f7d8fe91b1bf44f81436c79e7111ea +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Feb 19 08:48:11 2021 -0500 + + Update ac-2(7).md + + Updated line 16 to state that there is only one endpoint that is used for reading existing roles and permissions. + +commit f5a0b8dc5fb6c93ff9d6fbd3419482e6c8d0d027 +Author: Shubhi Mishra +Date: Thu Feb 18 20:48:33 2021 -0500 + + Update pull_request_template.md + + updated PR checklist w/ qasp review checklist + +commit 1048937493da0c2d6a4418f93d13c0098832a4f8 +Merge: e36a011f5 f0e227dfa +Author: John Willis +Date: Thu Feb 18 18:22:10 2021 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b + +commit 05ef33dcbe5ff6b541eb490d23093981d56301ae +Author: John Willis +Date: Thu Feb 18 17:21:58 2021 -0500 + + 673: Utilize distinct Dockerfiles for deployment environments + +commit 75535cb3a25566ceed6c468bb53f469c3ae98ee7 +Merge: 50d828e7a f0e227dfa +Author: Aaron Beavers +Date: Thu Feb 18 14:22:47 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 + +commit ce9ccc0dc2f37dd5c18b399d037f2f7245df0dd5 +Merge: eb156fd91 f0e227dfa +Author: Carl Smith +Date: Thu Feb 18 12:44:06 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit f0e227dfab5f82f4a6ce3fbaf4c65c8d26e08ca9 +Merge: 76dff4dc3 6ed4c9a3c +Author: Carl Smith +Date: Thu Feb 18 12:39:57 2021 -0500 + + Merge pull request #680 from raft-tech/revert-663-catchup-hhs-main + + Revert "Catchup hhs main" + +commit 50d828e7a7772e6c04814100317e8201995cadca +Author: Aaron Beavers +Date: Thu Feb 18 11:52:47 2021 -0500 + + remove lint + +commit 6ed4c9a3cb03dfed907dc50ba2ecb8260eb5b1f0 +Author: Carl Smith +Date: Thu Feb 18 11:52:14 2021 -0500 + + Revert "Catchup hhs main" + +commit ccd0f6312e8ed6c057e54bdcfbe7aea6ee2f7478 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 18 11:34:39 2021 -0500 + + Create ac-2(9).md + +commit f707be3973594229cee5ce94057bc59e11dddb8f +Merge: 02bd17e27 76dff4dc3 +Author: Carl Smith +Date: Thu Feb 18 11:27:14 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 + +commit ef4c5443832899c46e8b9280042616f59bff7f99 +Merge: 447d87f92 76dff4dc3 +Author: Aaron Beavers +Date: Thu Feb 18 11:06:45 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 + +commit 02bd17e27d474e7142ef3c490701d67e16938213 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 18 11:06:31 2021 -0500 + + Update au-02.md + +commit 06553858081bb04e186f2a99d46c84a25352cd03 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 18 10:55:24 2021 -0500 + + Create ac-2(10).md + +commit e27e0a5488d0115f790c05346c51f718cb060fb7 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 18 10:49:29 2021 -0500 + + Update ac-2(7).md + +commit 089314d271732168e0b3e0c3386c538b09a04056 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 18 10:31:32 2021 -0500 + + Update ac-2(3).md + +commit 447d87f92b385f1f73131459dbacc10ac3b80f34 +Author: Aaron Beavers +Date: Wed Feb 10 13:45:40 2021 -0500 + + Test needed stt fixture + +commit fd39a489a6e5b4462709def0c88c25d0b3838339 +Author: Aaron Beavers +Date: Tue Feb 9 14:55:25 2021 -0500 + + Add fixture for stt test + +commit 6fc33fbe382bdcc75fcb24d66e0279c5c4fcb57c +Author: Aaron Beavers +Date: Tue Feb 9 14:55:14 2021 -0500 + + Update user fixtures for stt tests + +commit 5e82aad7c56f245267ff378d1ef763ece9e65529 +Merge: 0b8f520d2 513462886 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 17 14:37:03 2021 -0500 + + Merge pull request #174 from raft-tech/documentation/access-controls-ac_5 + + Documentation/access controls ac 5 + +commit a8d448dd8692179358b81b8ec50831c6eada6813 +Author: Alex Soble +Date: Wed Feb 17 13:19:25 2021 -0600 + + Revert "Allow for correct logout behavior in staging env" + +commit 1fb4d30ee358583d3f84c3f458637f62051c0df7 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Feb 17 12:49:27 2021 -0600 + + Update communication-tools.md + +commit a038c5d166aa48dab05b0761955a5695ac0d9c59 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Feb 17 12:32:01 2021 -0600 + + Create Sprint-14-Summary.md + +commit 6da31d64b72eee50cc13bd6a80566651691e8d1e +Merge: 581aaad00 4d34ab24e +Author: Aaron Beavers +Date: Wed Feb 17 12:34:19 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 + +commit 5ea591e3873a5c1fe13a3b0ca3c4ca10ab4bb611 +Author: Brian Hurst +Date: Wed Feb 17 12:31:33 2021 -0500 + + Update docs/controls/access_control/ac-06.md + +commit 581aaad0082798e3b885dbfb136ff18b20858e32 +Merge: 19de07cfe 8f62883af +Author: Aaron Beavers +Date: Wed Feb 17 12:24:04 2021 -0500 + + Merge remote-tracking branch 'origin/epics/398/backend/431-3' into epics/398/backend/431-4-7 + +commit 19de07cfeac490326e63cab834264357632e0333 +Author: Aaron Beavers +Date: Wed Feb 17 12:22:45 2021 -0500 + + Add created at to serializer + +commit 9a86a042e1590442efbbd049aa0105cae609fc64 +Author: Aaron Beavers +Date: Wed Feb 17 12:22:33 2021 -0500 + + Add test for serializer created_at + +commit 908168d8c2d7812dd2948576bf8f660ede1173fe +Author: Aaron Beavers +Date: Wed Feb 17 12:22:23 2021 -0500 + + Remove commented debugging code + +commit 0ae0ac7669abfad1a529744bcb87e6f36ff7f31f +Author: Aaron Beavers +Date: Wed Feb 17 12:22:10 2021 -0500 + + Add assertion that versions have changed + +commit a4c45402e8acb52407cff1a4b49dfed116b51ab1 +Author: Aaron Beavers +Date: Wed Feb 17 12:21:55 2021 -0500 + + Remove debug prints + +commit 36e63cbbab5a3a1e83fcc46366fbc7945e4c2940 +Author: Aaron Beavers +Date: Wed Feb 17 12:17:54 2021 -0500 + + added created at field to model and serializer + +commit 9af235ebc68e4b700a4d4ae474d8c6bed926cedb +Author: Aaron Beavers +Date: Wed Feb 17 12:07:42 2021 -0500 + + Remove unnecessary fixture + +commit 0b306b782731ca2e49290ee50d7f10a82ba55cc1 +Author: Aaron Beavers +Date: Wed Feb 17 12:07:25 2021 -0500 + + Update tests + +commit 9606e30640749df11a8a1a4af7d7cb29a04eb76d +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 17 11:50:09 2021 -0500 + + Update ra-05.md + + Updated filename and relative link to screenshot + +commit c466ce124bf3c0bcc2a870a51241df1f1c3de14b +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 17 11:48:39 2021 -0500 + + Add files via upload + + adding screenshot with updated filename. + +commit cd40cbce920c0d799259d3ba090c8febd723d636 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 17 11:01:49 2021 -0500 + + Update ra-05.md + +commit 0add75b48f0a66d6ce792813d511a17d78a66644 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 17 11:01:20 2021 -0500 + + Update ra-05.md + + updated relative link + +commit 639956bc6fe245da9c515aeebb000952109e1f18 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 17 10:57:04 2021 -0500 + + Update ra-05.md + + Updated relative link. + +commit eb156fd91dd866b1a480a5d4547496794bef60a8 +Author: Carlton Smith +Date: Wed Feb 17 10:53:47 2021 -0500 + + add .env file + +commit 5991580b2cc8ca2745f84d1e0c355060bdd6d517 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 17 10:40:08 2021 -0500 + + Update ra-05.md + + updated the relative link. + +commit 0b8f520d25e7ddeaf05d9ca970e24f834f686eed +Merge: 366a4e00f 9f8a04c78 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 16 16:50:13 2021 -0500 + + Merge pull request #186 from raft-tech/backend/issue/518 + + Backend/issue/518 + +commit 92e3034bb5e86d1ccde16c98b466a6ec078011dd +Merge: 2ec0ee7f0 76dff4dc3 +Author: John Willis +Date: Tue Feb 16 15:21:20 2021 -0500 + + Merge branch 'raft-tdp-main' into frontend/issue-510-dotenv + +commit 76dff4dc3fdfb4670aa747f30967ad2953e52d91 +Merge: 4d34ab24e 0e4098f0f +Author: Carl Smith +Date: Tue Feb 16 14:03:52 2021 -0500 + + Merge pull request #551 from raft-tech/epics/398/backend/431-3 + + [epics/398/backend/431-3] Add reports serializer + +commit 0e4098f0fbd9007c6bb0e564af22b17264bd83a0 +Merge: 8f62883af 4d34ab24e +Author: Carl Smith +Date: Tue Feb 16 13:53:16 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-3 + +commit 366a4e00f2127821079ef0ed6e15922b0f3b2e6f +Merge: 46998c0a4 8f62883af +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 16 13:51:47 2021 -0500 + + Merge pull request #183 from raft-tech/epics/398/backend/431-3 + + 431 part 3 - Thanks! + +commit f56cab420e783171e0dae9a891b34d67a649feed +Author: Carlton Smith +Date: Tue Feb 16 13:46:47 2021 -0500 + + remove from branch + +commit fddc5ccbb4cb2f516333a75a9ab859f127559a2b +Author: Carlton Smith +Date: Tue Feb 16 13:38:16 2021 -0500 + + remove from branch + +commit d36bad6f250ff62dcc8ce2bfd5241b2d333c4734 +Author: Spencer Hilvitz +Date: Tue Feb 16 09:49:55 2021 -0800 + + change isOFAAdmin to isSystemAdmin in the Header and update tests + +commit a059c8b9c8824d77140ac8da16d373644220e177 +Merge: 5501874c2 7d9cad269 +Author: Carlton Smith +Date: Tue Feb 16 12:40:05 2021 -0500 + + Merge branch 'backend/517/admin-mfa' of github.com:raft-tech/TANF-app into backend/517/admin-mfa + +commit 9f8a04c7888aff564c295142bef46564ac7bc5a7 +Merge: 0f76c0f32 4d34ab24e +Author: Carl Smith +Date: Tue Feb 16 12:08:43 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/issue/518 + +commit 7d9cad26932f2eef896787111fc9aed29de3ac77 +Merge: 8e5f3425a 4d34ab24e +Author: Carl Smith +Date: Tue Feb 16 12:07:45 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 179034f70a3344e323758b136d552e93f217b0f7 +Merge: c20ddb7df 4d34ab24e +Author: Carl Smith +Date: Tue Feb 16 12:06:42 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/backend/519 + +commit 4d34ab24e5afd8819c4377c691f8963d99f617cb +Merge: 7ddbb42ae ca6045ab7 +Author: Carl Smith +Date: Tue Feb 16 12:05:26 2021 -0500 + + Merge pull request #663 from raft-tech/catchup-hhs-main + + Catchup hhs main + +commit aa8dec2607aadf628f09dd374c845a14c3e8e98e +Author: Shubhi Mishra +Date: Tue Feb 16 11:30:24 2021 -0500 + + Create ST Workshop Facilitation Guide.md + + Add facilitation guide used to conduct round 4 research workshop with states and territories. + +commit 76cff82a2a6edf22f86f1a030782d39d30f93c80 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 11:21:49 2021 -0500 + + Update ac-02.md + + Updated Part j. from annually to 180 days. + +commit 8aba3906e62dee1c8847d6c89810dccfa51b182d +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 11:18:27 2021 -0500 + + Update ac-02.md + + Updated part h. to state that this is done through a manual process for this mvp. + +commit ca6045ab7cedfff2cd07722cb319f5ea35f0ddd6 +Merge: 7ddbb42ae 46998c0a4 +Author: Carlton Smith +Date: Tue Feb 16 11:15:35 2021 -0500 + + Merge branch 'main' into catchup-hhs-main + +commit 065584fb42f455a0b9f513b200ef8c0cead39cbd +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 11:14:05 2021 -0500 + + Update ac-02.md + + Updated OFA Admin to System Admin (where applicable) and updated Part g. to include Django Admin and Cloud.gov auditing + +commit 7f9949660738105a7b716ca3084d3e160df116b3 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 11:10:55 2021 -0500 + + Update ac-02.md + + Updated Part e. + * changed OFA Admin to System Admin + * Added that System Admin approves github/cloud.gov accounts. + +commit 2b1c6f8bbb3f4f78be5ba07fd2937388e06ae4f9 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 11:08:09 2021 -0500 + + Update ac-02.md + + Updated Part d. to include Developers and updated links to relative links. + +commit 513462886d79de24016008ba3f4e56bf330c1c08 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 11:05:41 2021 -0500 + + Update ac-05.md + + Removed mention of Product Owner and HHS Lead, per our discussion on Friday. + +commit ceb302a00d26a5a0d0a412a300ed2d7fde238450 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 10:59:56 2021 -0500 + + Update ac-02.md + + Updated Part c. to include System Admin. + +commit 4c4a43864f2a1545e871b9121dd119823720ccbf +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 10:57:20 2021 -0500 + + Update ac-02.md + + Updated Part a. and b. + +commit 03906eadd724190ba252478232f78ebb1c0cb038 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 10:45:02 2021 -0500 + + Delete screenshot + +commit 098c42b87d6a7e561ed28b6da3e4a4813ca94894 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 10:44:03 2021 -0500 + + Update ra-05.md + + Line 26: changed link to relative link (this may change once we identify the correct directory structure). + +commit eaca05c5ae01f2f1619e4274ecd8113ee931da80 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 16 10:39:05 2021 -0500 + + Update ac-05.md + + Updated implementation statement to include the System Admin and remove the mention of the flags, as discussed during our AC clarification meeting. + +commit c20ddb7dfd34a2b71a55962e53121309b934087e +Author: Carlton Smith +Date: Tue Feb 16 10:18:29 2021 -0500 + + update docs + +commit f4719738cb489e8d9f99e3eaa27572025700b129 +Author: Carlton Smith +Date: Mon Feb 15 18:01:09 2021 -0500 + + add ADR + +commit 0f76c0f32ed04c4820ed5b9d99146f239bf52bed +Author: Carlton Smith +Date: Mon Feb 15 16:09:20 2021 -0500 + + add test to make sure endpoing is gone + +commit fa0eb325671ef95062979b996318c72c696ba941 +Author: Carlton Smith +Date: Mon Feb 15 15:50:49 2021 -0500 + + test for added keys + +commit 03fd274373440ff9b24e03f67868964ddaef69b7 +Author: Carlton Smith +Date: Mon Feb 15 15:37:17 2021 -0500 + + include 517 changes for testing + +commit 891991069c25418dc23d5778093a2f5cda42a146 +Author: Carlton Smith +Date: Mon Feb 15 15:16:46 2021 -0500 + + include build so environment variables are loaded in migrations + +commit 7b68f797f2bfe550e043dd961248d816338195a6 +Author: Aaron Beavers +Date: Mon Feb 15 14:24:31 2021 -0500 + + remove lint + +commit 67edde5977cb055cb7d734e2be5c8a906872f165 +Author: Carlton Smith +Date: Mon Feb 15 14:02:54 2021 -0500 + + remove frontend .env from this branch + +commit a04114217b32a47ecafcfd77e4b225ac7a6a332f +Author: Carlton Smith +Date: Mon Feb 15 13:54:58 2021 -0500 + + only use username + +commit 64cf50845ccf15e7531ab5bfb50f3f2441b0e3a5 +Merge: 03bc332ab 7ddbb42ae +Author: Carl Smith +Date: Mon Feb 15 13:37:19 2021 -0500 + + Merge branch 'raft-tdp-main' into issues/backend/519 + +commit cf116c635cd8e1ea2241cb9e4564601c0af1634e +Merge: 73bc06f4a 7ddbb42ae +Author: Carl Smith +Date: Mon Feb 15 13:02:34 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/issue/518 + +commit 2ec0ee7f043e8dee3f0a9165f2eef6d98d87daa7 +Author: John Willis +Date: Fri Feb 12 15:29:59 2021 -0500 + + README clarification + +commit 380b7c8830d22cb08029881d36e63ce4760146eb +Author: John Willis +Date: Fri Feb 12 15:24:47 2021 -0500 + + Issue 510: Frontend local environment fix/documentation + +commit 46998c0a455e2d8774fbaa9712ad19566d9427f8 +Merge: cd2aeb63b b30b275f1 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Feb 12 15:23:00 2021 -0500 + + Merge pull request #184 from HHS/ars/un-hardcode-dev-site-in-frontend-env + + Allow for correct logout behavior in staging env + +commit 5501874c26a2b1ebb8231c6e8d4bc31f13d17f84 +Author: Carlton Smith +Date: Fri Feb 12 13:17:00 2021 -0500 + + add in frontend files + +commit 8e5f3425a492eb8d93fd31a910054be9ef194910 +Merge: 97f73e5df 7ddbb42ae +Author: Carl Smith +Date: Fri Feb 12 13:15:14 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 8f62883afcfe9534c7c41be3f8b373fab9291e85 +Author: Aaron Beavers +Date: Fri Feb 12 12:35:54 2021 -0500 + + Update test name + +commit 8f630e939d468889ec233e8c11c146b5fdda54ff +Author: Aaron Beavers +Date: Fri Feb 12 12:33:53 2021 -0500 + + Use integer for year + +commit 54a62247224d5a14eff33237b7e84ca4c4cdd05d +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Feb 12 11:42:00 2021 -0500 + + Update ra-05.md + + Removed links to files for now. These references will be placed back in when this is moved to the HHS branch + +commit be31589d9bcb8ca9692eb8e64a12886ee8e289d5 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Feb 12 11:39:33 2021 -0500 + + Update ra-05.md + + Updated line 22 to include "failed OWASP Zap scans prevent the code from being deployed if vulnerabilities are found." + +commit 7ddbb42ae77c39726d8f62887a4da85f19a0f14e +Merge: 9416f861f a6136bbb0 +Author: Carl Smith +Date: Fri Feb 12 10:40:16 2021 -0500 + + Merge pull request #566 from raft-tech/issue/510-dotenv-backend-only + + Issue 510: Backend only changes to support local env vars + +commit eb10a62c728761e05c745313368180b3670026f8 +Author: Aaron Beavers +Date: Thu Feb 11 17:44:14 2021 -0500 + + cleared lint issues + +commit 16862efcba182ca1c0daade09e34acf0285119fc +Author: Aaron Beavers +Date: Thu Feb 11 17:03:40 2021 -0500 + + Refactor update guard to throw immutability exception + +commit e5e09e1e5370cdc83d25d1473c5eb8d1f2926d48 +Author: Aaron Beavers +Date: Thu Feb 11 17:03:11 2021 -0500 + + Implement immutability error + +commit 4a0c5d62dfe37dfe228ff384294baf63df7ea605 +Author: Aaron Beavers +Date: Thu Feb 11 17:03:00 2021 -0500 + + Import Immutability error for comparision + +commit 33fcc649427f1ecc043d22bf6f529815479bed27 +Author: Aaron Beavers +Date: Thu Feb 11 17:02:35 2021 -0500 + + Add test that asserts immutability holds. + +commit b30b275f1a6bb4a45b5acc952377be8a34e2e70a +Author: Alex Soble +Date: Thu Feb 11 15:22:03 2021 -0600 + + Allow for correct logout behavior in staging env + + The current code hard-codes REACT_APP_BACKEND_URL to point to the dev site. As a result, when a user logs out of the vendor staging site, they are redirected to the dev site homepage instead of the vendor staging site homepage. + + After merging this change, we'll want to set REACT_APP_BACKEND_URL values for the vendor staging site and dev site using the CF CLI or the Cloud.gov website. + + Deploy script should mention the need to set REACT_APP_BACKEND_URL on the frontend. + +commit 26fa1e0bed300d44bcf07f64697ee5375fc533c6 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 12:01:33 2021 -0500 + + Update ac-05.md + + Updated line 26 to Product Owner + +commit 5308d8d314a4b9ba3a5dbfd848ca791575f5d364 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:33:57 2021 -0500 + + Update ac-05.md + + Removed the sections "Access to Django Admin" and "Access to TDP application" + +commit 4a12339f0c7df13f33265db0199df5b0385bda56 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:32:31 2021 -0500 + + Update ac-05.md + + Updated line 34 from "Product Manager" to "Product Owner" + +commit aaa0705fde40402f026048bf27df8c25a1ad3b1e +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:30:58 2021 -0500 + + Update ac-05.md + + Updated line 20 to state that OFA Admin SuperUser and Staff flags are set to False by default. + +commit 07c99b252ba654cac4f3144784abe9fb116c4d9a +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:27:11 2021 -0500 + + Update ac-05.md + + Update line 19, OFA Admin abilities - removed manage TDP accounts... + +commit 56e993be6b2d823010a0ea36805a619c620a89bd +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:23:47 2021 -0500 + + Update ac-05.md + + Changed line 16 from "OFA Admin" to "System Owner" + +commit 9aeeac4bab962d726a8fe12118712638c7235038 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:19:36 2021 -0500 + + Update ac-06.md + + added "New user accounts are established with no privileges upon creation and only OFA Admins can grant permissions to those users." + +commit 9fd6870645cffdf22d5e6eb05c6b44e1d923f411 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 11 11:16:45 2021 -0500 + + Update ac-06.md + + Removed Data Prepper function list as they are not considered privileged functions. + +commit 97f73e5df446d599dbef82597a38bf8cf498a2a6 +Author: Carlton Smith +Date: Wed Feb 10 16:57:48 2021 -0500 + + remove user + +commit 378908b17f83ed207614c3a1492a4e02819a5c20 +Author: Carlton Smith +Date: Wed Feb 10 16:46:41 2021 -0500 + + refactor and add a few more tests + +commit a6136bbb04433a67e6a9a837c1e3d36a4c28bccc +Merge: e92301c45 9416f861f +Author: Carl Smith +Date: Wed Feb 10 16:02:08 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv-backend-only + +commit cd2aeb63bda0cedcbfba68181e43acaf878da827 +Merge: 42e7e195a e92301c45 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 10 15:46:49 2021 -0500 + + Merge pull request #167 from raft-tech/issue/510-dotenv-backend-only + + Issue/510 dotenv backend only + +commit 0a4112494b324b3c4f3203e9a9cc3d1f084545a8 +Author: Carlton Smith +Date: Wed Feb 10 15:32:52 2021 -0500 + + remove unused + +commit d6ec4ef60b78ed81192d626dd20e1466a29686b2 +Author: Carlton Smith +Date: Wed Feb 10 15:19:44 2021 -0500 + + update test to use adjustable value + +commit 6eae4dbc0a58a97207a373260f6a03ef0f7b25c9 +Merge: 2029fcccb 9416f861f +Author: Carl Smith +Date: Wed Feb 10 14:37:56 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-3 + +commit 9416f861f3d0d3dbf118ebbb108a2fc37e3ee7ba +Merge: 26e46818f 56e2721aa +Author: Carl Smith +Date: Wed Feb 10 14:36:35 2021 -0500 + + Merge pull request #550 from raft-tech/epics/398/backend/431-2 + + [epics/398/backend/431-2] Add report model + +commit 42e7e195a39863c13bcc2d904f596e9f2c103d1a +Merge: f72ac243d 56e2721aa +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 10 13:56:03 2021 -0500 + + Merge pull request #168 from raft-tech/epics/398/backend/431-2 + + Epics/398/backend/431 - 2 + +commit 16082e645e6eefea52e3ed6ae228184037e2cfe5 +Author: Carlton Smith +Date: Wed Feb 10 13:16:15 2021 -0500 + + add tests + +commit 4463f7e22dcf8a2a40ecabec476227f3de48a581 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 10 13:00:28 2021 -0500 + + Delete docs/controls/access_control directory + +commit cde5be42fa5307c8588ee2e988910fd5f55d1ae8 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 10 13:00:03 2021 -0500 + + Create ac-2(3).md + +commit f7070c3dd59e9a2ff6202833d5c3ba37030db632 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 10 12:58:32 2021 -0500 + + Create ac-2(3).md + +commit a5c475df78cd75f39f75ae2b11d6cbc09d659c6b +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Feb 10 11:33:00 2021 -0500 + + Create ac-2(7).md + +commit 56e2721aa0299a4c3561d3816bd145b6453d0ff5 +Author: Aaron Beavers +Date: Wed Feb 10 10:19:40 2021 -0500 + + added comments explaining decisions made for report schema + +commit e2c31f9152f7358197aef3a6f1d9eb5dfcd912ac +Author: Aaron Beavers +Date: Wed Feb 10 09:41:30 2021 -0500 + + Remove remaining lint in test + +commit fa33ec3247cfcd5e10e1adc66110a09efc2e6f83 +Author: Aaron Beavers +Date: Tue Feb 9 17:28:39 2021 -0500 + + Remove lint + +commit 6ba131e2c0e7b28cb1b081d6b54be8209b9cb27f +Merge: e420fac38 26e46818f +Author: Carl Smith +Date: Tue Feb 9 16:03:53 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-2 + +commit 8d8f80c98c07843253852f5975468cf97267427b +Author: Spencer Hilvitz +Date: Tue Feb 9 12:31:15 2021 -0800 + + force tests + +commit ea45173de9f69d01943c1e42997e5338bcce3d5d +Author: Spencer Hilvitz +Date: Tue Feb 9 12:31:00 2021 -0800 + + force tests + +commit 6cfd1779641e4aef674d9ff9fc662db3c6e0a577 +Author: Spencer Hilvitz +Date: Tue Feb 9 12:18:32 2021 -0800 + + update REACT_APP_BACKEND_URL to REACT_APP_BACKEND + +commit e92301c4516dbe3b782a0cb8bfa6157211f297be +Author: Carlton Smith +Date: Tue Feb 9 14:53:04 2021 -0500 + + update docs + +commit bb5c5f022d2ebba1e2accac24fed31c8213f2110 +Merge: bbbbcddd7 26e46818f +Author: Carl Smith +Date: Tue Feb 9 14:49:29 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv-backend-only + +commit bbbbcddd7b0b3958d176e92fc2f5d109c1aed332 +Author: John Willis +Date: Tue Feb 9 12:28:06 2021 -0500 + + Implement PR Review feedback - swap docker-compose override for local and undo CI changes - expand documentation + +commit ed9169a67ea3779c000ddb4fa6f510a922b703f3 +Author: Spencer Hilvitz +Date: Mon Feb 8 15:47:08 2021 -0800 + + remove v1 from backend_url in .env.development, .env.test, Dockerfile.dev and add to axios requests + +commit e420fac387bc22455117708293b4839183426939 +Author: Aaron Beavers +Date: Mon Feb 8 18:05:29 2021 -0500 + + Add tests for report model versioning helpers + +commit 1f4ee6f10ef12cd7062914c7ee1848cc0c75d9ed +Author: Aaron Beavers +Date: Mon Feb 8 18:05:15 2021 -0500 + + Use an integer for years + +commit f72ac243db859ee97c90c170c1ec9425e5107e6c +Merge: 0fc9676c1 8317fc044 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Feb 8 11:10:56 2021 -0500 + + Merge pull request #179 from reitermb/main + + Update Design Guide + +commit 201932732d4acd329b0c05be7bcb2d315a813511 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Feb 5 20:44:37 2021 -0500 + + Update ac-05.md + + Updated last paragraph of part a. + +commit d80e18d38169dd7b6774111f1e435bc6fa11469c +Author: Spencer Hilvitz +Date: Fri Feb 5 12:51:57 2021 -0800 + + add tests for hiding admin tab for non ofa admin user + +commit a310d1509b7812654608e9601ef6820bc33ad5da +Author: Spencer Hilvitz +Date: Fri Feb 5 10:28:03 2021 -0800 + + add role logic to header to hide admin + +commit c645e03a288f972b3bc5e0a8d93c3667b91ed367 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Feb 5 12:47:41 2021 -0500 + + Update ac-05.md + + Updated first sentence of part c. for the user to start on the TDP landing page. + +commit 226752e1a27d48979932146738646f466c472c9b +Merge: 5e1ae65ff 26e46818f +Author: Carl Smith +Date: Fri Feb 5 12:46:50 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit e835c4e478e0f659d039289bd7089175cfa7136d +Author: Spencer Hilvitz +Date: Fri Feb 5 09:12:38 2021 -0800 + + update .gitignore with eslintcache + +commit b08d14911a78e6ea6f1f9dd638aaa26eb1d4a32f +Merge: 8dbb204f8 26e46818f +Author: Carl Smith +Date: Fri Feb 5 11:34:33 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 + +commit 26e46818f47b7b2e86e3a936020f7f47057a6d16 +Merge: b8d58fa09 0fc9676c1 +Author: Carl Smith +Date: Fri Feb 5 11:33:16 2021 -0500 + + Merge pull request #646 from raft-tech/catchup-hhs + + Catchup hhs + +commit 5b6ab01d6f064de6c97f85f4b80d4c8674bc05e5 +Author: Brian Hurst +Date: Fri Feb 5 11:06:39 2021 -0500 + + Update docs/controls/access_control/ac-05.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 7be6d1f3a2e096d7e93d0e2658acc8a538476699 +Author: Brian Hurst +Date: Fri Feb 5 11:05:53 2021 -0500 + + Update docs/controls/access_control/ac-05.md + + Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> + +commit 8dbb204f8ee7a4823ae1e4023a38b535a6db213a +Merge: 55801765b b8d58fa09 +Author: Carl Smith +Date: Fri Feb 5 09:39:40 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 + +commit 53db6b144ad27def24e05ed417c1f24952d0cd51 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 16:21:24 2021 -0500 + + Update ac-05.md + + Simplified Developers roles / responsiblities. + +commit 438e1b0785e7866946870f68658e1c009f1c53c3 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 16:15:48 2021 -0500 + + Update ac-05.md + + Updated based on feedback. + +commit 55801765b8f97bca2c1b0928334725ec6bea51f0 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 15:14:32 2021 -0500 + + Update ac-02.md + + Updated to remove "Developer" role + Updated "inactivate" to "deactivate" + +commit ce7d4ae3414a6d8eadf15c7d207dd5fedcb13ac9 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 15:10:30 2021 -0500 + + Update ac-02.md + + Changed Part a. to include only the OFA Admin and Data Prepper roles + +commit 64cd6a9aecd864d07e0314aa6a478f6b64e8c4e2 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 11:44:09 2021 -0500 + + Update ac-05.md + +commit 14fcd5a9f71d6302caad3eb10127cd19d33d0549 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 11:18:36 2021 -0500 + + Update ac-05.md + + Started update on Part a. + Updated Part b. + +commit aaee57ea0ed45bd76a8b92c822ed93753cb7cdd2 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 10:52:06 2021 -0500 + + Update ac-05.md + + copied OFA admin and Data Prepper description to part b. + +commit da404b360f3a1b09de7c2829e20200307458bc0f +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 10:43:24 2021 -0500 + + Update docs/controls/access_control/ac-05.md + + Co-authored-by: Brian Hurst + +commit 063a2e825cf2d3682828310881369680ef0fdba8 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Feb 4 10:42:40 2021 -0500 + + Update docs/controls/access_control/ac-05.md + + Co-authored-by: Brian Hurst + +commit 39952e5c5a20658aa4d2ea5511ef7c42e9bdd01f +Author: Carl Smith +Date: Wed Feb 3 18:09:32 2021 -0500 + + Update .env.example + + remove secret key + +commit e36a011f5dc92f11712cba2525b57ea86d30e3d5 +Author: snyk-bot +Date: Wed Feb 3 22:47:32 2021 +0000 + + fix: upgrade multiple dependencies with Snyk + + Snyk has created this PR to upgrade: + - @fortawesome/fontawesome-svg-core from 1.2.32 to 1.2.34. + See this package in npm: + - @fortawesome/free-solid-svg-icons from 5.15.1 to 5.15.2. + See this package in npm: + + See this project in Snyk: + https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr + +commit d050a67f6af467d6cf8eacfd2af032dfae4d5747 +Author: John Willis +Date: Wed Feb 3 17:42:10 2021 -0500 + + Remove need for CI specific docker-compose by supplying defaults for non-sensitive environment variables in settings + +commit b8d58fa09d2254817a327a12350027ec9cfa5cb7 +Merge: 546796017 44ba08cc0 +Author: Carl Smith +Date: Wed Feb 3 17:07:20 2021 -0500 + + Merge pull request #487 from raft-tech/406-header-focus-fix + + 406 & 407: Fix focus on route change and alert on error + +commit 44ba08cc0024a37da3c2600ff7bd4686a2ee4aa3 +Merge: 412273fd7 546796017 +Author: Carl Smith +Date: Wed Feb 3 16:55:48 2021 -0500 + + Merge branch 'raft-tdp-main' into 406-header-focus-fix + +commit 0fc9676c1a2a90bccb4c747eaf261ef2b0c91b69 +Merge: 0f54af34b 412273fd7 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 3 16:37:51 2021 -0500 + + Merge pull request #158 from raft-tech/406-header-focus-fix + + 406 header focus fix - looks good! + +commit 3fe25aa167d8e91d5386de3ed6fb435e8d825a59 +Merge: 14f5113a9 546796017 +Author: Carl Smith +Date: Wed Feb 3 16:35:16 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 + +commit 546796017fe60ea7d0d7741af003bfe5f58e803b +Merge: ea036d29b 9776f5899 +Author: Carl Smith +Date: Wed Feb 3 14:10:36 2021 -0500 + + Merge pull request #591 from raft-tech/documentation/access-controls-2-5 + + Create AC-02(05).md + +commit 9776f589956a0c5e459ac254aafa2e97e767632c +Merge: cc52dafee ea036d29b +Author: Carl Smith +Date: Wed Feb 3 14:01:05 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-2-5 + +commit 0f54af34b2f294fff5334b4ba6ae0912ce975421 +Merge: ff00e5ca0 bbdaff7b1 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Feb 3 10:09:49 2021 -0500 + + Merge pull request #178 from kniz-raft/patch-10 + + Create Sprint-13-Summary.md + +commit 8317fc044afc3de7bb7de60c6379cebb5109ad88 +Author: miles-reiter +Date: Tue Feb 2 22:54:31 2021 -0500 + + Update Design-Guide.md + +commit bbdaff7b1e3b74dcde80a1f786ff1f75e2987c4e +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Feb 2 14:34:39 2021 -0600 + + Create Sprint-13-Summary.md + +commit 412273fd73682b473f84776ce729f56c5f365857 +Author: Spencer Hilvitz +Date: Tue Feb 2 11:39:51 2021 -0800 + + add tests for h1 focus + +commit 397781b513c2333a6ef8f87ccb8d589b9bfcece2 +Merge: a2a26be72 ba9fe7e88 +Author: Spencer Hilvitz +Date: Tue Feb 2 10:36:25 2021 -0800 + + Merge branch '406-header-focus-fix' of github.com:raft-tech/TANF-app into 406-header-focus-fix + +commit 061c70a4b2c09916b342703848d4ea3dcf663f29 +Author: miles-reiter +Date: Tue Feb 2 13:22:45 2021 -0500 + + Update Design-Guide.md + +commit bb57e6e8ed9c22366ff395b8c61f9a853b4b8dd0 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 2 11:58:06 2021 -0500 + + Create au-02.md + +commit ff00e5ca0126f64a8f832401cfa3ca35b26521fc +Merge: 6db9cdd32 cc52dafee +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Feb 2 11:18:35 2021 -0500 + + Merge pull request #165 from raft-tech/documentation/access-controls-2-5 + + Documentation/access controls 2 5 + +commit f12cd625d4d9f82df7682f74ce0a949a67d122c6 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Tue Feb 2 10:16:00 2021 -0500 + + Update ra-05.md + + Changed line 20 to "every push, pull request and merge on GitHub" + +commit 7aeff937c0735207d3bad4e63b57fa8aa93c72f6 +Merge: d805a72ba 2029fcccb +Author: Aaron Beavers +Date: Mon Feb 1 15:05:05 2021 -0500 + + Merge branch 'epics/398/backend/431-3' into epics/398/backend/431-4-7 + +commit 2029fcccb663d7e71f45ed0ee74d7bf891962566 +Author: Aaron Beavers +Date: Mon Feb 1 14:56:46 2021 -0500 + + Tweak white space + +commit d805a72ba396ba19c3fe58dc47a56b48bbe707e0 +Merge: 80e6a9bba 142860ef6 +Author: Aaron Beavers +Date: Mon Feb 1 14:34:18 2021 -0500 + + Merge branch 'epics/398/backend/431-3' into epics/398/backend/431-4-7 + +commit 142860ef65f832d09618635957645efc9c52b3ff +Author: Aaron Beavers +Date: Mon Feb 1 14:24:18 2021 -0500 + + Removed trailing space at end of file + +commit 4e384b9c63fa4e1d124505dbfdaa85ccdafa8929 +Author: Aaron Beavers +Date: Mon Feb 1 14:24:09 2021 -0500 + + Fixed docstring + +commit 7e274f8d595f234fb2ce7204e2ac4cb2176ce65d +Author: Aaron Beavers +Date: Mon Feb 1 14:23:58 2021 -0500 + + Remove calls to print in fixtures + +commit 3d3bafb55806d4dcf36a52a7f0eb5701e64d5a48 +Author: Aaron Beavers +Date: Mon Feb 1 14:23:42 2021 -0500 + + Remove unneeded import + +commit 44554594f1ca61c8725f7274e327633482546cb5 +Author: Aaron Beavers +Date: Mon Feb 1 14:23:33 2021 -0500 + + Remove unneeded import + +commit da775d8a1152a16df4ca2fefa4809a4f63007abe +Author: Aaron Beavers +Date: Mon Feb 1 14:23:22 2021 -0500 + + Remove unneeded whitespace + +commit 73bc06f4a4c05826aa63c8c6632e6e3b86bf173c +Merge: 1e7d23106 ea036d29b +Author: Carl Smith +Date: Mon Feb 1 14:04:33 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/issue/518 + +commit 14f5113a90bfb001ae23339e4f0d472b428125ca +Merge: eb891eb94 ea036d29b +Author: Carl Smith +Date: Mon Feb 1 10:12:12 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 + +commit 05404655fda8887b04b33cf58e80ea5be18f83e4 +Merge: 19d76864d ea036d29b +Author: Carl Smith +Date: Mon Feb 1 09:56:38 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac_5 + +commit eb891eb94d171c9c9cb4c8951bd39b3976fc1ca7 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 17:48:32 2021 -0500 + + Update ac-02.md + +commit ef0638411d373c0eca02e21eb00e11f2209dc88e +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 17:15:54 2021 -0500 + + Delete Access Control.md + +commit d39e2c3dcd7955eec1d73efc956af23e7470ddea +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 17:15:26 2021 -0500 + + Add files via upload + +commit 26cc7d6b9b05f450c4419618bfad50753f7d9e37 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 16:13:30 2021 -0500 + + Update ra-05.md + + Updated with screenshot and link to screenshot. + +commit 938d2f6a6f781b949f6c3c58e2b832f6578cfe56 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 16:10:19 2021 -0500 + + Add files via upload + +commit 8b6de72e1cbbd2b4c903b08f3e0c5f9b38e41f20 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 16:09:33 2021 -0500 + + Create screenshot + +commit 3c7c77348477fbfb085d4eaf6065fa45735e03e4 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 16:07:36 2021 -0500 + + Update ra-05.md + +commit c477c24e15e4094619a8461a9b39d0e9e3e7df87 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 16:00:06 2021 -0500 + + Update ac-06.md + + Updated per feedback... + - Multi-factor Authentication (MFA) + - added Data Preppers are priv users. + +commit 25a2602740c2456bfdbeb2cf980e49738f55409c +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:57:32 2021 -0500 + + Update ac-06.md + +commit 19d76864d0b68fb56547c8a8f97e9d81466c8fe2 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:29:54 2021 -0500 + + Update ac-05.md + + Updated Developers section to reflect changes in dev environments + +commit e22b71f3e9f1fce734948364234caedeca44b467 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:26:36 2021 -0500 + + Update ac-05.md + + Updated Part a. with new environment structure. + +commit fe0dcff7b2e8ab3eb3e617a426bb7046130f0765 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:15:41 2021 -0500 + + Update ac-05.md + + Updated access to Django Admin section + +commit aeb9c3c2ee17d63601df5ed28ba6fa52d887f200 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:10:01 2021 -0500 + + Update ac-05.md + + Updated part c. + +commit aeda169cddc5a42d1887f53e26626e7d4cb6967d +Merge: 2f6b57582 ea036d29b +Author: Carl Smith +Date: Fri Jan 29 15:06:33 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/access-controls-ac-06 + +commit 780125ee281bf2b0047bfa656abd5f7a1f78b826 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:06:20 2021 -0500 + + Update ac-05.md + + Updated "Users (OFA Admin and Data Preppers)" section + +commit 6d11b4461ca783e0e24164cf62d9bbbdb4197ca4 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:03:35 2021 -0500 + + Update ac-05.md + + Updated Line 29 -> "Develop code in our local environment and test code in the Dev environment" + +commit 09e952dbd10b9fd54cef8de74878c2b99a1729fc +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 15:01:02 2021 -0500 + + Update ac-05.md + + Updated line 27 to "CircleCI ensures"... + +commit 6c86a909ec18dcdd660e81b4602b3df1e267ef1a +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 14:59:49 2021 -0500 + + Update ac-05.md + + Added "users from the STTs who will be uploading data will have the role Data Preppers" + +commit afe8592ed5e6dfb113331e78cd1b357d6ce4c7d4 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 14:58:08 2021 -0500 + + Update ac-05.md + + Changed STT Users to Data Preppers + +commit 9c45fd5e84ae33cd71b26b6b208abf0cfb400486 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 14:49:53 2021 -0500 + + Update ra-05.md + + Updated part a. + +commit 5d0ff68ae32f5043315940a92155e9e97a107640 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 14:45:35 2021 -0500 + + Update ra-05.md + + removed "[" from places in the implementation statement. + +commit 2f6b575828e45860b25d3c47335f8cd45cf51396 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 13:08:47 2021 -0500 + + Update ac-06.md + + Updated implementation statement + +commit cc52dafee5439a127bd76394029be752d21ba447 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 13:04:28 2021 -0500 + + Update AC-02(05).md + + Updated links to screenshots + +commit c2962870e5d8686235d310cdbc38606b20001991 +Merge: e3030bc07 ea036d29b +Author: Carl Smith +Date: Fri Jan 29 12:45:12 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/risk-assessment-ra-5 + +commit a0a4f980dc74b7aa99954dd1b61f8b973497328e +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:44:29 2021 -0500 + + Update ac-06.md + +commit ba9fe7e88c923cb104a3aced0daf7b020c88f41f +Merge: c514cd1f1 ea036d29b +Author: Carl Smith +Date: Fri Jan 29 11:43:07 2021 -0500 + + Merge branch 'raft-tdp-main' into 406-header-focus-fix + +commit 3c930a18d15c0f9725e71df5553cd8fed2181399 +Merge: a601a98b8 ea036d29b +Author: Carl Smith +Date: Fri Jan 29 11:42:42 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-2 + +commit 010aa4768641bc9f0aaa91168e825c15eaa62b3f +Merge: a47efc78a ea036d29b +Author: Carl Smith +Date: Fri Jan 29 11:39:15 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv-backend-only + +commit ea036d29be7b6f00b8cfe4639cf1d2122696ee9b +Merge: 390540f23 189a88440 +Author: Carl Smith +Date: Fri Jan 29 11:38:00 2021 -0500 + + Merge pull request #612 from raft-tech/hotfix/rebase-with-hhs + + Hotfix/rebase with hhs + +commit 189a88440f2cb55fa707235354438702080e970b +Merge: 390540f23 6db9cdd32 +Author: Carlton Smith +Date: Fri Jan 29 11:21:28 2021 -0500 + + Merge remote-tracking branch 'hhs/main' into hotfix/rebase-with-hhs + +commit ebcb963576503ebb355e4b0e9e674498d68dfe70 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:20:45 2021 -0500 + + Update AC-02(05).md + + added screenshot links + +commit 580cb9698da28239230203a684ffa5c3677449cb +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:15:47 2021 -0500 + + Update AC-02(05).md + +commit cc2a903d914ae0ac0d20b8aeff7831678e497c2b +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:13:27 2021 -0500 + + Delete screenshots + +commit 937e091dc127f2c7fcadcd79f9995b0afe04dbb7 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:13:14 2021 -0500 + + Delete Screen Shot 2021-01-28 at 1.47.19 PM.png + +commit db6064b448aba6fb7b109428854f1dc057430e6d +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:13:07 2021 -0500 + + Delete Screen Shot 2021-01-28 at 1.24.08 PM.png + +commit 606caa4a246d3cc353736f1a4bff1f6223a7b674 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:13:00 2021 -0500 + + Delete Screen Shot 2021-01-28 at 1.43.47 PM.png + +commit d6f3997431dc3f78f12581a6332bb1ab12bf2b4c +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:12:16 2021 -0500 + + Add files via upload + +commit 6559f27e042f8b6f446adedb98c5b00ff644eeb5 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 11:11:19 2021 -0500 + + Create screenshots + +commit 625adc353d8c9ed852749eba9924b60a03c3f579 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 10:48:43 2021 -0500 + + Add files via upload + + Adding screenshots + +commit 37ebda289af4c91d9760d24b81c58e9b65cda059 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Fri Jan 29 10:46:15 2021 -0500 + + Update AC-02(05).md + + update with timeout information + +commit 6afe4a1c81a451e7d4e3c9044bebb90c6fec3c3d +Merge: 7abfe1910 390540f23 +Author: Carl Smith +Date: Fri Jan 29 10:01:01 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit 6db9cdd3251f127aaeec3c2c1073be227ca4b6aa +Merge: 471f6a25d 26e1097d2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 29 09:50:56 2021 -0500 + + Merge pull request #146 from kniz-raft/patch-6 + + Create definition-of-done + +commit 943658242c44497529ff68e623d57fa4c6e22e36 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Jan 28 12:43:09 2021 -0500 + + Create ac-06.md + +commit 185af4210ffd03c67e137b0186a2f1456b1dd7cc +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 28 12:09:55 2021 -0500 + + Update docs/controls/access-controls/AC-02(05).md + +commit 6915e2ddddb163326a866f9c158d72a8e2ca2a48 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 28 12:09:50 2021 -0500 + + Update docs/controls/access-controls/AC-02(05).md + +commit e3030bc07404981950cefacb8155e624b4b2e5a9 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Jan 28 11:15:52 2021 -0500 + + Update ra-05.md + +commit fc1efeb292cc11f6f71f7c3d9641f2218faa8018 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Thu Jan 28 11:13:11 2021 -0500 + + Update ra-05.md + +commit 80e6a9bba5c47b41a1a4f4991aec722eb3dd7c7e +Merge: 2a3126b60 8cf242ae4 +Author: Aaron Beavers +Date: Thu Jan 28 10:27:50 2021 -0500 + + Merge remote-tracking branch 'origin/epics/398/backend/431-7' into epics/398/backend/431-4 + +commit 2a3126b60bc1a5e468fbb6cbe627bee352dcc044 +Merge: a03be8f96 46795aa70 +Author: Aaron Beavers +Date: Thu Jan 28 10:27:25 2021 -0500 + + Merge remote-tracking branch 'origin/epics/398/backend/431-6' into epics/398/backend/431-4 + +commit a03be8f966470627f0247c7ecc7a247ababa2661 +Merge: 96d6dc57f e630e1065 +Author: Aaron Beavers +Date: Thu Jan 28 10:27:19 2021 -0500 + + Merge remote-tracking branch 'origin/epics/398/backend/431-5' into epics/398/backend/431-4 + +commit 96d6dc57fda1adb478d4c5733a7eb8a6e851837f +Merge: 11ee476c4 42cbc85e6 +Author: Aaron Beavers +Date: Thu Jan 28 09:35:29 2021 -0500 + + Merge branch 'epics/398/backend/431-3' into epics/398/backend/431-4 + +commit a601a98b8ebe2cab65c1b5bf966a9328aaae0ba5 +Merge: 751ad236d 390540f23 +Author: Carl Smith +Date: Wed Jan 27 16:57:17 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-2 + +commit 390540f23e67f58b509e56f834d6937cef6d556d +Merge: c460eeca6 09b6c793e +Author: Carl Smith +Date: Wed Jan 27 16:56:50 2021 -0500 + + Merge pull request #549 from raft-tech/epics/398/backend/431-1 + + [epics/398/backend/431-1] Add reports app + +commit 42cbc85e686804ca8d41e94189558a56336f11f9 +Author: Aaron Beavers +Date: Wed Jan 27 16:42:51 2021 -0500 + + Add serializer tests + +commit 2c014734f89d01075176693dd852469951fe71c9 +Author: Aaron Beavers +Date: Wed Jan 27 16:41:26 2021 -0500 + + Utilize model method for serializer create function + +commit 418a754908f66e4ef5a74e93caf3198c5948329a +Merge: da2c38a88 ff29992dc +Author: Aaron Beavers +Date: Wed Jan 27 16:17:01 2021 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-3 + +commit da2c38a884502966354c50ecdea24805d9bc4b7b +Merge: b20287efa 751ad236d +Author: Aaron Beavers +Date: Wed Jan 27 16:09:16 2021 -0500 + + Merge branch 'epics/398/backend/431-2' into epics/398/backend/431-3 + +commit 751ad236dd6969e2e0c673668ad42d31a6f449ba +Author: Aaron Beavers +Date: Wed Jan 27 16:09:00 2021 -0500 + + Fix linting errors + +commit b20287efafae1f0da536e1458a1c43afdd252b11 +Merge: 9e2e8cf03 7b1d3f401 +Author: Aaron Beavers +Date: Wed Jan 27 15:56:40 2021 -0500 + + Merge branch 'epics/398/backend/431-2' into epics/398/backend/431-3 + +commit 7b1d3f401a4cdce96807f6e9a898c14602127145 +Author: Aaron Beavers +Date: Wed Jan 27 15:52:14 2021 -0500 + + Add test for creating new version of existing report + +commit 0ead0571c7e7d2b9fe9fe793367040c6ec90e826 +Author: Aaron Beavers +Date: Wed Jan 27 15:51:58 2021 -0500 + + Remove unnessiary ID property from factory + +commit 57cd603643f9ede9e02298e7e065333ed6e1f505 +Author: Aaron Beavers +Date: Wed Jan 27 15:51:45 2021 -0500 + + Add model methods + +commit 5cc97b1c5e60cf38659c8a679dd1b1f6587cf23a +Author: Aaron Beavers +Date: Wed Jan 27 15:51:29 2021 -0500 + + Fix typo + +commit 9bd5cf4aa49386884733e75562a7edabdffc6a16 +Author: Aaron Beavers +Date: Wed Jan 27 15:25:39 2021 -0500 + + Add blank reports model test file + +commit d87b96d5f02f78936926cc601b41148b3665aaed +Author: Aaron Beavers +Date: Wed Jan 27 15:21:23 2021 -0500 + + Add Report Factory + +commit 8b83df2d906a6b594d61f3084086030bbc6db57f +Author: Aaron Beavers +Date: Wed Jan 27 15:18:25 2021 -0500 + + Add report file fixtures + +commit ad6df14db332364688234409bc6f1fd7ac679c42 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Jan 27 15:08:29 2021 -0500 + + Create ac-05.md + +commit 30abc6ebfb6450e9d219bf01e2127aaad99fe029 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Jan 27 15:04:13 2021 -0500 + + Create ac-02.md + +commit e9289f0587cf2464931015fe4b3443e54d14d97e +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Jan 27 14:56:33 2021 -0500 + + Update ra-05.md + +commit 7abfe1910bc5551c5945f1e0a2e7e42c48c2cb36 +Author: John Willis +Date: Wed Jan 27 14:54:47 2021 -0500 + + PR review feedback: use /redocs for path instead of /docs + +commit d62431f5f2fd64772198f51324c838ef983e2a10 +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Jan 27 14:53:42 2021 -0500 + + Update ra-05.md + +commit 09b6c793e15e683990a7f62ba7ec64525495aab1 +Merge: ba9f832d6 c460eeca6 +Author: Carl Smith +Date: Wed Jan 27 13:50:00 2021 -0500 + + Merge branch 'raft-tdp-main' into epics/398/backend/431-1 + +commit 471f6a25d7550097843a59faeab4dc4f70956280 +Merge: 54a2dfcf0 9a9b22ac9 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 12:14:27 2021 -0500 + + Merge pull request #159 from HHS/ars/adr-deployment-flow + + Proposed ADR: Deployment Flow + +commit 54a2dfcf09e130077c4ba708a5d25126cf0c85cf +Merge: 73a3cc2c8 ba9f832d6 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 12:13:03 2021 -0500 + + Merge pull request #152 from raft-tech/epics/398/backend/431-1 + + Epics/398/backend/431-1 + +commit 26e1097d246f748693d6a60a275f89c3ebc735bd +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Jan 27 10:59:56 2021 -0600 + + Rename definition-of-done to definition-of-done.md + +commit 73a3cc2c832372eb5bdbcd36c18509af87e39c03 +Merge: 27446b4a9 057f27b05 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:52:22 2021 -0500 + + Merge pull request #164 from kniz-raft/patch-9 + + Create 008-object-storage.md + +commit 27446b4a9d5a3b0abed198a39ec842c50aa13401 +Merge: 06eea8b63 8314fd9f8 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:51:23 2021 -0500 + + Merge pull request #163 from kniz-raft/patch-1 + + Create 007-continuous-integration.md + +commit 8314fd9f8875a8bcde0b4f9d0d9a40ad85ab0382 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:50:57 2021 -0500 + + Update docs/Architecture Decision Record/006-continuous-integration.md + +commit 06eea8b6336b0bed7760b0e8cc1b8c5010a35e6f +Merge: e8c9b0d0a 8c84ce850 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:48:03 2021 -0500 + + Merge pull request #145 from kniz-raft/patch-5 + + Update team-meetings.md + +commit 8c84ce85016df204ecced59b295f4682a13dd79f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:47:33 2021 -0500 + + Update docs/How-We-Work/team-charter/team-meetings.md + +commit 46034c993a624908a4c3d56146a32ed6ef1f8d38 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:47:06 2021 -0500 + + Update docs/How-We-Work/team-charter/team-meetings.md + +commit e8c9b0d0a801c97322c6036ba89fd15f05585f4b +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:43:25 2021 -0500 + + Update our-team-and-values.md + + Referenced team composition instead of duplicating team member list + +commit 5239c559f6d6dc6353b08d576641fa6488db2f1b +Merge: 0d6329c4e aede583ae +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:40:58 2021 -0500 + + Merge pull request #143 from kniz-raft/patch-4 + + Update our-team-and-values.md + +commit aede583ae335bfef78b5e4d2a0b9e6268a11ac21 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:39:42 2021 -0500 + + Update docs/How-We-Work/team-charter/our-team-and-values.md + +commit 0d6329c4e5726d782e13ed30a19b35dd0002a47d +Merge: c2e9d2e21 42e1ef982 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:29:48 2021 -0500 + + Merge pull request #142 from kniz-raft/patch-2 + + Update communication-tools.md + +commit 42e1ef982e2fad6970246ea654554f8be680f8a2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:29:01 2021 -0500 + + Update docs/How-We-Work/team-charter/communication-tools.md + +commit 48ddff851d899d94ed8a8112c5fc7f46e8bb1f62 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:28:55 2021 -0500 + + Update docs/How-We-Work/team-charter/communication-tools.md + +commit c2e9d2e218ce76853cceb4457416ba578bcc64c5 +Merge: 634d744d2 cabdb0e29 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 11:26:37 2021 -0500 + + Merge pull request #147 from reitermb/main + + Add Flat File Metadata code doc, Update design guide & research docs, #502, #503 + +commit c8d228bf4bad5517baeddf6a5e79aee8105dd95a +Merge: 86fa24d6e c460eeca6 +Author: John Willis +Date: Wed Jan 27 11:13:48 2021 -0500 + + Merge branch 'raft-tdp-main' into 564-generated-api-docs + +commit 9a9b22ac96a140b95fa225d4febe9da8e152432d +Author: Alex Soble +Date: Wed Jan 27 10:04:04 2021 -0600 + + Update date + +commit 08a1f19ff1c56df20848a32c975bf953473ce1cb +Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> +Date: Wed Jan 27 10:53:13 2021 -0500 + + Create ra-05.md + +commit cabdb0e29af16874b6d8958fa353533ca297273a +Author: miles-reiter +Date: Wed Jan 27 10:47:45 2021 -0500 + + Update Overview of Research Activities.md + +commit 8cdadd56ad736a08b07fc0532308ae2ef48e625c +Author: miles-reiter +Date: Wed Jan 27 10:40:23 2021 -0500 + + Update Overview of Research Activities.md + +commit 37ab6e093fd455ee0b9dffee70c4030418900cdd +Author: Alex Soble +Date: Wed Jan 27 09:37:29 2021 -0600 + + Edit for clarity + +commit d15f9c7c66bc87c3786e15e2690b45a6852ad96f +Author: Alex Soble +Date: Wed Jan 27 09:29:08 2021 -0600 + + Use new naming schema + +commit ab54dcfb02e69a6ebf6cfea3907be3cab5ad5c2b +Author: Miles Reiter +Date: Wed Jan 27 10:26:58 2021 -0500 + + Update Overview of Research Activities.md + +commit 138ca2e5f16568d399c7e9900cec2dbbaba9233d +Author: Alex Soble +Date: Wed Jan 27 09:21:30 2021 -0600 + + Change ADR number to 8 + +commit c460eeca6614662b69221994db6943348458e743 +Merge: ff29992dc 47ded8a77 +Author: Carl Smith +Date: Wed Jan 27 10:01:57 2021 -0500 + + Merge pull request #580 from raft-tech/hotfix/support-base64-jwt-key + + Hotfix: Add support for Base 64 encoding in JWT_KEY variable + +commit 634d744d27e0056c25bccad1eb657719a60d4c8c +Merge: 34f0a39f8 47ded8a77 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 27 09:53:47 2021 -0500 + + Merge pull request #161 from raft-tech/hotfix/support-base64-jwt-key + + Hotfix/support base64 jwt key + +commit 49bb6140707022974cf0fa8ce5855c3a61f46ab5 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Jan 27 08:52:11 2021 -0600 + + Update and rename 007-continuous-integration.md to 006-continuous-integration.md + +commit 057f27b058069d68d112e36537e7f3ca956f0d50 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Wed Jan 27 08:51:02 2021 -0600 + + Update and rename 008-object-storage.md to 007-object-storage.md + +commit 47ded8a777d5a5be3a10f1d882c5d8aff5ebcc33 +Author: Carlton Smith +Date: Wed Jan 27 09:15:05 2021 -0500 + + update comments + +commit 86fa24d6e7ed99ad447fa567b8703db50adb3ec9 +Author: John Willis +Date: Tue Jan 26 18:08:51 2021 -0500 + + Fix linter error + +commit a2a26be72e42378b1b3c01ddafe4e80bda794075 +Merge: 3a3e8c119 f1caa531a +Author: Spencer Hilvitz +Date: Tue Jan 26 14:52:16 2021 -0800 + + Merge branch 'hotfix/support-base64-jwt-key' of github.com:raft-tech/TANF-app into 406-header-focus-fix + +commit 79b2d5bfc588b9e6a500fabd839bb26894bde10c +Author: John Willis +Date: Tue Jan 26 17:38:07 2021 -0500 + + 564: Add automatic generation of OpenAPI spec documentation + +commit f1caa531a8a1b8d2d8d045dec005c101e140644a +Author: Carlton Smith +Date: Tue Jan 26 15:44:58 2021 -0500 + + move arg back + +commit 37c38f4238e76cf308cd46dcf5811f02223713e7 +Author: Carl Smith +Date: Tue Jan 26 12:36:10 2021 -0500 + + Move to correct directory + +commit 6c93bffa4bf4f4ac71ecadea65a7225b9b50940b +Author: Carl Smith +Date: Tue Jan 26 12:28:10 2021 -0500 + + Create AC-02(05).md + +commit 488283b17f183d0786cf71578b24157d765ddb4a +Author: Aaron Beavers +Date: Tue Jan 26 11:59:12 2021 -0500 + + Add new test for case where key is PEM + +commit 3c2a87755d980c26992c8e543b7ebb873009e06b +Author: Aaron Beavers +Date: Tue Jan 26 11:58:13 2021 -0500 + + Catch correct errors for pem case + +commit 793179c4cedca99105d49c67a0935fca26983a4e +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Jan 26 09:33:23 2021 -0600 + + Create 008-object-storage.md + +commit 1c38c7f7111ee2ebcc0e3d36222b3c364ac71d82 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Jan 26 09:23:14 2021 -0600 + + Create 007-continuous-integration.md + +commit 0ac284e3260581f62d3074713000137f5fa8d27e +Author: Alex Soble +Date: Mon Jan 25 17:30:38 2021 -0600 + + Edit for clarity + +commit ce25854d8daca986035d67c891a067ab99d18c3b +Author: Alex Soble +Date: Mon Jan 25 17:28:32 2021 -0600 + + Add How would this affect #521? "As a developer, I want a staging site..." + +commit 77f8ea34a37aafd742006dbe7044ee998c826ba8 +Merge: d2a20f4bf c728da5f6 +Author: Carl Smith +Date: Mon Jan 25 16:12:32 2021 -0500 + + Merge pull request #584 from raft-tech/hotfix/support-base64-jwt-key + + Hotfix/support base64 jwt key + +commit c728da5f6b426b6f7a288e6ecb07a636ab718f95 +Merge: 126a1e646 825c68b95 +Author: Carlton Smith +Date: Mon Jan 25 15:45:22 2021 -0500 + + Merge branch 'raft-tdp-main' into hotfix/support-base64-jwt-key + +commit 825c68b9585bfc4a42279dff06d9e00752e9cd55 +Merge: 6af620068 ff29992dc +Author: Carlton Smith +Date: Mon Jan 25 15:43:51 2021 -0500 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main + +commit ff29992dcf0a1ebb13e5b5788bcc4e5c275eba2d +Merge: 4d79eb155 7dec82347 +Author: Carl Smith +Date: Mon Jan 25 15:43:25 2021 -0500 + + Merge pull request #582 from raft-tech/revert/501 + + Revert "Merge pull request #538 from raft-tech/issue/510-dotenv" + +commit 03bc332ab6bcb3aeb0c171708334507da00d338a +Author: Aaron Beavers +Date: Mon Jan 25 15:11:09 2021 -0500 + + Add migration for creating initial super user. + +commit 3ef3a6bb51a1a8a3f0e42aa184739c73e5851934 +Author: Aaron Beavers +Date: Mon Jan 25 15:10:31 2021 -0500 + + Allow creating super users through admin UI + +commit 126a1e6460f2c8a301f4ccdf3d9072cdfb8de101 +Author: John Willis +Date: Mon Jan 25 14:13:17 2021 -0500 + + Fix linter error + +commit 2c856ca4aad22caab7163961f053a0b8ce6bbbf8 +Author: John Willis +Date: Mon Jan 25 14:02:54 2021 -0500 + + Hotfix: Add support for Base 64 encoding in JWT_KEY variable + +commit 23acbfd650a59ce94d260af1722e2cd348ce5faa +Author: Miles Reiter +Date: Mon Jan 25 12:28:52 2021 -0500 + + Update Current-TDRS.md + +commit da559113dea2317965401365a4c1056b1b304e99 +Author: Miles Reiter +Date: Mon Jan 25 12:23:23 2021 -0500 + + Update Vision-and-Stakeholders.md + +commit d70e1db11c3d39e797204fc81f74a4db1e9b7f84 +Author: Miles Reiter +Date: Mon Jan 25 12:19:40 2021 -0500 + + Update Overview of Research Activities.md + +commit 34f0a39f8523a9a7a623bf795855666596053f28 +Merge: 0bf83ad0b c7a5f56f4 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 25 12:08:57 2021 -0500 + + Merge pull request #155 from HHS/bh-update-managed-services-boundary + + Update accreditation boundary diagram to include managed services + +commit 0bf83ad0bfb903373ac5c43755fe16daf0519326 +Merge: eeeed5ed2 3ce7c557f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 25 10:40:42 2021 -0500 + + Merge pull request #160 from kniz-raft/patch-8 + + Update and rename Sprint 12 Summary to Sprint-12-Summary.md + +commit 3ce7c557f9313c7fd190f3b4e58af1b21040445f +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Mon Jan 25 09:27:38 2021 -0600 + + Update and rename Sprint 12 Summary to Sprint-12-Summary.md + +commit 96c867d3b05563120aaa9e8da52ffa3b94634aa4 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 25 10:23:56 2021 -0500 + + Update communication-tools.md + + Added 🔒s + +commit e630efca3fb89294abd7957617cc2eb0e0a90ab4 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 25 10:22:13 2021 -0500 + + Update Flat File Metadata Guide.md + + Added link to October research + +commit 55468eabd9b9d9a003c3e4a0270be492945d39e4 +Author: Alex Soble +Date: Mon Jan 25 08:47:01 2021 -0600 + + Proposed ADR for deployment flow + +commit eeeed5ed263000e7b6afd5eac90a53f219faed59 +Merge: de3a0b323 a6697f03a +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 25 10:11:34 2021 -0500 + + Merge pull request #149 from kniz-raft/patch-7 + + Create Sprint 12 Summary + +commit a6697f03adaeac3abbc009ef9c88571a127dbd0f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 25 10:11:18 2021 -0500 + + Update Sprint 12 Summary + +commit 6af620068ced2386d61406752a69053ec8a578a8 +Merge: 7dec82347 4d79eb155 +Author: Carlton Smith +Date: Mon Jan 25 10:06:42 2021 -0500 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main + +commit bf95432af7ea10f88aff0a92362606e460c4241d +Author: snyk-bot +Date: Sat Jan 23 21:32:27 2021 +0000 + + fix: upgrade eslint from 7.16.0 to 7.17.0 + + Snyk has created this PR to upgrade eslint from 7.16.0 to 7.17.0. + + See this package in npm: + https://www.npmjs.com/package/eslint + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit a47efc78a168304074ef295584888fa12e3bcf51 +Author: John Willis +Date: Fri Jan 22 17:36:18 2021 -0500 + + Fix linter errors + +commit e018eeb233ce139ab4030604544723effdf7ddfa +Author: John Willis +Date: Fri Jan 22 17:28:47 2021 -0500 + + Add back stripped down CI docker-compose + +commit 0903b0422a40cb5bdb0901bddb029a57e1a93a52 +Author: John Willis +Date: Fri Jan 22 16:50:36 2021 -0500 + + Make CI use default docker-compose + +commit 4440c6c92d0dc22d22fe6c0641a83e4a9d05c3af +Author: John Willis +Date: Fri Jan 22 16:42:31 2021 -0500 + + Issue 510: Backend only changes to support local env vars + +commit 4d79eb1550a0818f90fcecec0ee59da47c0ff052 +Merge: dd6b2e61a 975028d22 +Author: Carl Smith +Date: Fri Jan 22 15:41:03 2021 -0500 + + Merge pull request #565 from raft-tech/revert-538-issue/510-dotenv + + Revert "Consolidate dotenv files for local development" + +commit 975028d22e44136478198149086810b4263a56c2 +Author: Carl Smith +Date: Fri Jan 22 15:05:54 2021 -0500 + + Revert "Consolidate dotenv files for local development" + +commit de3a0b3235a86f52f4d1640da3d0cbc2731d102a +Merge: c4c2dd8d5 7dec82347 +Author: Alex Soble +Date: Fri Jan 22 13:29:52 2021 -0600 + + Merge pull request #156 from raft-tech/revert/501 + + Revert/501 + +commit 7dec8234735a8bf1ea77794c61a661756068b0e3 +Author: Carlton Smith +Date: Fri Jan 22 14:25:04 2021 -0500 + + Revert "Merge pull request #538 from raft-tech/issue/510-dotenv" + + This reverts commit dd6b2e61a77f11ce228d7834d4dbdb3505da6314, reversing + changes made to a5c3a4f9b9198141d9f838a339a4d3a483a6fa40. + +commit c7a5f56f4c0ee22798019bbd0c2f37758738000f +Author: Brian Hurst +Date: Fri Jan 22 13:22:43 2021 -0500 + + Update accreditation boundary diagram to include managed services + +commit dd6b2e61a77f11ce228d7834d4dbdb3505da6314 +Merge: a5c3a4f9b 42304330f +Author: Carl Smith +Date: Fri Jan 22 12:11:47 2021 -0500 + + Merge pull request #538 from raft-tech/issue/510-dotenv + + Consolidate dotenv files for local development + +commit c4c2dd8d5d35c516307aa9f42ea24a2771395c17 +Merge: 28686af1e 42304330f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 22 10:37:07 2021 -0500 + + Merge pull request #148 from raft-tech/issue/510-dotenv + + Issue/510 dotenv 🚢 + +commit 42304330f35837bf238e42e0152e99fa93268195 +Author: Carlton Smith +Date: Thu Jan 21 14:56:24 2021 -0500 + + remove public_url + +commit bdc7d7bb57168fb7eb8e8806cdb975ad55f7e3a3 +Author: Carlton Smith +Date: Thu Jan 21 14:54:59 2021 -0500 + + update example + +commit d2a20f4bfa6d308ac8534c6eb742fa472cd7acd1 +Merge: 43cbbf87a bc461ba76 +Author: Carl Smith +Date: Thu Jan 21 13:39:12 2021 -0500 + + Merge pull request #553 from raft-tech/issue/510/review + + Issue/510/review + +commit 28686af1e040815ec8688aa68d12e4568286eb77 +Merge: c5fab28ec 1e37cbc64 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 13:15:22 2021 -0500 + + Merge pull request #131 from shubhi-raft/patch-19 + + Create 005-application-authentication.md + +commit 1e37cbc643eca879940ba5b5df6edf634d1b9d20 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 13:14:54 2021 -0500 + + Update docs/Architecture Decision Record/005-application-authentication.md + +commit c5fab28ec000b34392ca2906ad4c19b8007e1519 +Merge: 2a7703a8a 4976376e8 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 13:14:34 2021 -0500 + + Merge pull request #128 from shubhi-raft/patch-18 + + Create 004-configuration-by-environment-variable.md + +commit 4976376e880401c4691a3c1a68e845668c75adfd +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 13:13:47 2021 -0500 + + Update docs/Architecture Decision Record/004-configuration-by-environment-variable.md + +commit bc461ba767ca491305ea74878060bd48a1e35e62 +Merge: 833f9ffe0 43cbbf87a +Author: Carl Smith +Date: Thu Jan 21 12:52:55 2021 -0500 + + Merge branch 'raft-review' into issue/510/review + +commit 3a3e8c11980aec5d0f9be1240574d598cf0e1c9e +Author: Spencer Hilvitz +Date: Thu Jan 21 09:28:58 2021 -0800 + + only focus headerRef.current if it exists + +commit 2a7703a8a7352e514bc8b4fca21651b585a8efc8 +Merge: 9d795ce3a c3552fd07 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 12:19:48 2021 -0500 + + Merge pull request #139 from shubhi-raft/patch-23 + + Create Sprint 4 Summary.md + +commit 9d795ce3a6fcaddb9fe25e8480b532b8e73c0a20 +Merge: e5f6418ab abd5eb5a1 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 12:19:11 2021 -0500 + + Merge pull request #138 from shubhi-raft/patch-22 + + Create Sprint 3 Summary.md + +commit e5f6418ab7cf5c673e79e8242b2ed44118d73ad4 +Merge: 93936b820 2ffcf9bc5 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 12:18:31 2021 -0500 + + Merge pull request #137 from shubhi-raft/patch-21 + + Create Sprint 2 Summary.md + +commit 93936b8200752084dd30fa6ab9e89d275c761ff8 +Merge: 3fbcd826e ce1999892 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 12:18:01 2021 -0500 + + Merge pull request #136 from shubhi-raft/patch-20 + + Create Sprint 1 Summary.md + +commit 3fbcd826e3707c320608b5ad385d0596a55a9bad +Merge: bd4127dd1 d0a55dbe2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 11:31:54 2021 -0500 + + Merge pull request #150 from HHS/ars/remove-lingering-files + + Remove lingering prototype files + +commit bd4127dd1d69a649409675ae9410238056c5f8fa +Merge: 2b88030d5 4db9b2325 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 21 11:29:31 2021 -0500 + + Merge pull request #151 from HHS/bh-visio-diagram + + Add Visio version of boundary diagram + +commit 8cf242ae45475ab232de590667711e36392f3578 +Author: Aaron Beavers +Date: Wed Jan 20 16:46:39 2021 -0500 + + Add docs for report meta data POST endpoints + +commit ccc6dcf95e98440ecb45f1ee2f6e9cf52472f17d +Author: Aaron Beavers +Date: Wed Jan 20 16:26:56 2021 -0500 + + Add tests for creating reports via API + +commit da2a2a7754511e86b1b3a45a4ef43695fc71ffd0 +Author: Aaron Beavers +Date: Wed Jan 20 16:26:30 2021 -0500 + + Add new fixtures for users with specific groups + +commit ab52940883e70a2573c282de3aa4854d20ca1c9f +Author: Aaron Beavers +Date: Wed Jan 20 16:26:11 2021 -0500 + + Add ability to assign groups to user factory + +commit 46795aa7067f6307535ac9801a1dacd2f468f205 +Author: Aaron Beavers +Date: Wed Jan 20 16:41:41 2021 -0500 + + Add report routes to top level router + +commit 55aa7a839308cb01ff67940e4d5428b1f08308f3 +Author: Aaron Beavers +Date: Wed Jan 20 16:22:36 2021 -0500 + + Add routing for reports + +commit e630e10656099a7885ffe26338b4b5a76238c483 +Author: Aaron Beavers +Date: Wed Jan 20 16:14:53 2021 -0500 + + Add report viewset + +commit 11ee476c4c9d30ad387176164e379d47217b83e0 +Author: Aaron Beavers +Date: Wed Jan 20 15:56:38 2021 -0500 + + Add new Permissions + +commit 6e3c469c2289f6df5c59e7bf7907e61881420d32 +Author: Aaron Beavers +Date: Wed Jan 20 15:56:30 2021 -0500 + + Add permission utility functions + +commit 4db9b232583e2260ef3d25928de0c1fef74923b5 +Author: Brian Hurst +Date: Wed Jan 20 15:08:22 2021 -0500 + + Add Visio version of boundary diagram + +commit 9e2e8cf03afdc2c8a64b152f935ec2b5a7a327bf +Author: Aaron Beavers +Date: Wed Jan 20 14:45:50 2021 -0500 + + Add reports serializers + +commit 95b86db2329eb220d56709122d431719d7a6d31b +Author: Aaron Beavers +Date: Wed Jan 20 14:44:39 2021 -0500 + + Add initial reports migrations + +commit 3f217ca7629213997ffce154ca876a33f0395117 +Author: Aaron Beavers +Date: Wed Jan 20 14:44:25 2021 -0500 + + Add report models + +commit ba9f832d6e3fa46dfedc2f94edf9941d65beb102 +Author: Aaron Beavers +Date: Wed Jan 20 14:42:52 2021 -0500 + + report init file + +commit 9e4b8b6444de0e87ed3ddf7ebc022cab3cc3d1c8 +Author: Aaron Beavers +Date: Wed Jan 20 14:42:44 2021 -0500 + + Add report tests folder + +commit eb117bf444daa7540d7ee6d0ce723ce029f08f64 +Author: Aaron Beavers +Date: Wed Jan 20 14:42:03 2021 -0500 + + Add reports app + +commit 1e7d23106d1b77826cca51a54f3b598c01cb4a04 +Author: Aaron Beavers +Date: Wed Jan 20 13:57:53 2021 -0500 + + Remove create user view + +commit c7d11e55ad04b2bb88abd79f671835fa477d7746 +Author: Aaron Beavers +Date: Wed Jan 20 13:57:36 2021 -0500 + + Remove create user serializer import + +commit 8bc7718db842bfd0243b7bde681551f620389d9e +Author: Aaron Beavers +Date: Wed Jan 20 13:55:24 2021 -0500 + + remove create user serializer + +commit 2db8eed58da6d8d0b9125b8367361442e5574e26 +Author: Aaron Beavers +Date: Wed Jan 20 13:55:15 2021 -0500 + + Remove tests for create user endpoint and serializer + +commit c741dab5157b6061456a8b065f85ee4bd86aa265 +Author: Carl Smith +Date: Wed Jan 20 13:23:01 2021 -0500 + + Update README.md + + Add troubleshooting instructions + +commit d0a55dbe25785796a4142bb57dda9e18c4418b3f +Author: Alex Soble +Date: Wed Jan 20 09:41:10 2021 -0600 + + Just remove /static folder + + + /scripts folder is used in the CI process + +commit ba765db843fe586e114208a9d84572d8791bcf63 +Author: Alex Soble +Date: Wed Jan 20 09:40:44 2021 -0600 + + Revert "Remove scripts folder (unused) and static folder (prototype)" + + This reverts commit 6782b01c5afcc1e40dcd8c00832f6a5006830c15. + +commit 6782b01c5afcc1e40dcd8c00832f6a5006830c15 +Author: Alex Soble +Date: Wed Jan 20 09:36:49 2021 -0600 + + Remove scripts folder (unused) and static folder (prototype) + + + See: https://github.com/HHS/TANF-app/pull/150#issuecomment-763713520 + +commit 61730ef461c2a8b0818ee713e1cf73d207cf0ccd +Author: Alex Soble +Date: Wed Jan 20 09:35:06 2021 -0600 + + Remove three hidden prototype files + + See: + + + https://github.com/HHS/TANF-app/pull/150#issuecomment-763684570 + +commit 833f9ffe0c50ee5bf17f8bb08fe6746dcf831ab6 +Merge: 444e56a0b fa60af31e +Author: Carl Smith +Date: Wed Jan 20 10:34:27 2021 -0500 + + Merge pull request #541 from raft-tech/issue/510-dotenv-review-feedback + + Issue 510: dotenv fixes review feedback + +commit 444e56a0b8952d8f47196d9d9f5ba1a1019f001b +Author: Carlton Smith +Date: Wed Jan 20 10:32:44 2021 -0500 + + Revert "Merge branch 'raft-review' into issue/510-dotenv" + + This reverts commit b83146c297b55409ca6aad310864ba0a4553e725, reversing + changes made to c946b3e77465baf23e4ae0b573741e9070406094. + +commit 564f09dd01b3713438040063adbf51b5404ab804 +Author: Alex Soble +Date: Wed Jan 20 04:19:38 2021 -0600 + + Remove additional lingering files + +commit fa60af31ed17b3262a2f144e835a9f1ef1f11916 +Author: John Willis +Date: Tue Jan 19 18:12:20 2021 -0500 + + Fix zap scanner for backend + +commit 3cb1a2f845cb2100fd0cf73a248320550ded7aab +Author: John Willis +Date: Tue Jan 19 18:01:01 2021 -0500 + + Remove unused import + +commit e7a8ceb7901237112406c8787cdb218121fc1134 +Author: John Willis +Date: Tue Jan 19 17:54:05 2021 -0500 + + Set back Pipfile.lock to fix lock file mismatch + +commit d15d416e2be19f57d9f465375b6899afafe07998 +Author: John Willis +Date: Tue Jan 19 17:41:01 2021 -0500 + + Fix CircleCI failures + +commit febd07a71e41adace5da3d521590244561cef5f3 +Author: John Willis +Date: Tue Jan 19 17:19:36 2021 -0500 + + Handle Base64 encoded JWT_KEY dynamically, falling back to support PEM format if needed + +commit 24fbe697962fd9edbf2f8a9c599b3de8e7dd6132 +Author: Alex Soble +Date: Tue Jan 19 16:18:25 2021 -0600 + + Remove lingering prototype files + +commit c55d091f5e6089c403a213c6c1957013aadac150 +Author: John Willis +Date: Tue Jan 19 16:47:42 2021 -0500 + + Address PR feedback + +commit 622893b68ff1982de849410aecc4fc5cd9e7c664 +Author: John Willis +Date: Tue Jan 19 15:37:20 2021 -0500 + + Fix readme code fence, add environment variables to test command + +commit 1d48ce2b0930ff5d16f9f4f29ed1eb0682ea2b00 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Jan 19 12:35:43 2021 -0600 + + Create Sprint 12 Summary + +commit 43cbbf87a4e3ebd48c8f37a70761d914a9996ce9 +Merge: e7fdbd16c b83146c29 +Author: Carl Smith +Date: Tue Jan 19 13:24:47 2021 -0500 + + Merge pull request #539 from raft-tech/issue/510-dotenv + + Issue/510 dotenv + +commit b83146c297b55409ca6aad310864ba0a4553e725 +Merge: c946b3e77 e7fdbd16c +Author: Carl Smith +Date: Tue Jan 19 11:28:36 2021 -0500 + + Merge branch 'raft-review' into issue/510-dotenv + +commit 8128714799c7c368b48b3d0857e51491c1d1a185 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Tue Jan 19 09:28:09 2021 -0600 + + Update definition-of-done + +commit c946b3e77465baf23e4ae0b573741e9070406094 +Author: Carl Smith +Date: Mon Jan 18 18:21:16 2021 -0500 + + Update README.md + + update instructions + +commit 27c98db609dad81b4abaff6d6501e2b91f5b5a5c +Author: Carl Smith +Date: Mon Jan 18 18:20:25 2021 -0500 + + Update README.md + + update instructions + +commit 9bef16802e0274ce27d678141da58030b32f6cba +Merge: 0e2770810 a5c3a4f9b +Author: Carl Smith +Date: Mon Jan 18 16:27:01 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv + +commit a5c3a4f9b9198141d9f838a339a4d3a483a6fa40 +Merge: a57c11616 85842e94c +Author: Carl Smith +Date: Mon Jan 18 16:20:04 2021 -0500 + + Merge pull request #532 from raft-tech/improve-readmes + + improve readmes + +commit 85842e94c9ce1626285c0e4a029cd74c6a178070 +Merge: a619064b9 a57c11616 +Author: Carl Smith +Date: Mon Jan 18 16:10:01 2021 -0500 + + Merge branch 'raft-tdp-main' into improve-readmes + +commit 0e2770810eb3fc404cc680d3e2422278dee628cc +Merge: 17e5ccefa fd4a87c01 +Author: Carlton Smith +Date: Mon Jan 18 16:08:33 2021 -0500 + + Merge branch 'issue/510-dotenv' of github.com:raft-tech/TANF-app into issue/510-dotenv + +commit 17e5ccefa556ec32c7531eea89dd03cf96344303 +Merge: 44a549f51 a57c11616 +Author: Carlton Smith +Date: Mon Jan 18 16:07:52 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv + +commit fd4a87c01fdfd7ed527637f15f08b8a57d320f34 +Merge: 210734270 a57c11616 +Author: John Willis +Date: Sun Jan 17 19:24:42 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv + +commit 2107342708ad8c2483e8e2101ee769e7fe40bcd2 +Author: John Willis +Date: Sun Jan 17 18:58:01 2021 -0500 + + Test zap scanner changes + +commit 7f99d25ace9b58df014322d7d37c6b25c4066945 +Author: John Willis +Date: Fri Jan 15 18:16:08 2021 -0500 + + Test zap scanner changes + +commit dc2b96660b090f4592d927f4a1eab786a2185273 +Author: John Willis +Date: Fri Jan 15 17:59:59 2021 -0500 + + fix the right zap scanner + +commit 00f2e8868f85ec4f74967ea82662a769f9475181 +Author: John Willis +Date: Fri Jan 15 17:55:49 2021 -0500 + + Fix python linting errors + +commit 5fdd8721cacfa8c265044bd768e83bc354b33870 +Author: John Willis +Date: Fri Jan 15 17:49:57 2021 -0500 + + Testing for zap-scanner + +commit ee0d68b5f91966c6642acbc955c60b3659f4df53 +Author: John Willis +Date: Fri Jan 15 17:46:37 2021 -0500 + + Add OIDC_OP_ISSUER + +commit fa6608bea337018785bc71751d6f7b4bd1c4e560 +Author: John Willis +Date: Fri Jan 15 17:44:31 2021 -0500 + + echo statements to test zap-scanner in CI + +commit 545ffbbe31a8aab69b3adc15888affa553a6bc37 +Author: John Willis +Date: Fri Jan 15 17:40:52 2021 -0500 + + Add CLIENT_ASSERTION_TYPE to docker-compose.ci + +commit 773c0dbdfe7da387304eedb98c055fcab3e86ffe +Author: John Willis +Date: Fri Jan 15 17:38:18 2021 -0500 + + Use CI docker compose for zap-scanner + +commit 6200365122101931570ba68e100c27f66b0e1e8e +Author: John Willis +Date: Fri Jan 15 17:34:23 2021 -0500 + + Use separate settings for tests + +commit 755d4b065ef9edb22c47e41349505dcb2af844c1 +Author: John Willis +Date: Fri Jan 15 17:28:12 2021 -0500 + + Add SASS_PATH to jest unit test command in CircleCI + +commit 1721f08fbbedf9452f3709063791dfde90fc63e1 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Jan 15 15:20:25 2021 -0600 + + Update definition-of-done + +commit ce3268496fdb2f5c889481e9de73966c76cadda9 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Jan 15 15:18:22 2021 -0600 + + Update definition-of-done + +commit d2ea98f4398a313ded3493ad3a0e9950790ec5a1 +Author: John Willis +Date: Fri Jan 15 15:35:23 2021 -0500 + + Pass more env variables in from CircleCI + +commit a5959637292141d2b789a322aa38aaabdc59f037 +Author: Miles Reiter +Date: Fri Jan 15 14:55:42 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 6049febe207d23e796f82b50a254b4400b794eff +Author: John Willis +Date: Fri Jan 15 14:29:59 2021 -0500 + + Pass more env variables in from CircleCI + +commit 2b88030d57ca9160559f2a73d0d0c9e5bdddfef7 +Merge: 2165faea1 a619064b9 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 15 14:26:22 2021 -0500 + + Merge pull request #129 from raft-tech/improve-readmes + + Improve readmes + +commit a619064b9b83e5182fb905c4946a640a17461b4a +Author: Carl Smith +Date: Fri Jan 15 14:21:52 2021 -0500 + + Update README.md + + fixed typo + +commit 5b2d17c52e1dc48ecfa4999cdf195eeb9378bb1a +Author: John Willis +Date: Fri Jan 15 14:11:20 2021 -0500 + + Allow CircleCI environment variables to be passed in to base compose file + +commit 628e9954d7716f3b58d6280d5ac6fce3af7f9bf4 +Author: John Willis +Date: Fri Jan 15 14:00:58 2021 -0500 + + Fix flag placement in circleci config + +commit 000ece59f3d3d7b658649ce3276e1652c901e327 +Author: John Willis +Date: Fri Jan 15 13:57:47 2021 -0500 + + Ignore docker-compose overrides for CircleCI + +commit 00d71fb525b1ac165c4f8273c98e519c57d31b23 +Author: John Willis +Date: Fri Jan 15 13:51:14 2021 -0500 + + Split out env file configuration into docker-compose override for local dev + +commit 3afc4e8772139702012a708704889a76e8c0020c +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Jan 15 12:25:29 2021 -0600 + + Create definition-of-done + +commit 627c5bfb1385caa9aa062672a01218a0ea678250 +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Jan 15 12:16:22 2021 -0600 + + Update team-meetings.md + +commit 884f9e12ac05112621e9a934eae55ba7aa219560 +Merge: c5da0e1ae 2fea0a07e +Author: Miles Reiter +Date: Fri Jan 15 12:50:46 2021 -0500 + + Merge pull request #2 from shubhi-raft/patch-24 + + Update Flat File Metadata Guide.md + +commit 44a549f51fd632909032b2dce2c55e3d894b49ec +Author: John Willis +Date: Fri Jan 15 12:39:53 2021 -0500 + + Handle Base64 encoded JWT_KEY to account for docker env_file issue + +commit 2165faea16ae1fa0fe0e1a806e29db9b91c00491 +Merge: 04d7dc199 7246b1a74 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 15 12:31:03 2021 -0500 + + Merge pull request #135 from HHS/bh-remove-yarn-lock + + Remove leftover yarn.lock + +commit a57c116166188b7685d47271ee9840c085f1d114 +Merge: dce99c7da bd9bf5e09 +Author: Carl Smith +Date: Fri Jan 15 12:25:34 2021 -0500 + + Merge pull request #534 from raft-tech/shubhi-raft-patch-8 + + Update issue templates + +commit 9001597e49413e2fa8763f21d92b375ba1ec237d +Author: Carl Smith +Date: Fri Jan 15 12:14:59 2021 -0500 + + Update README.md + + small text updates + +commit 04d7dc199ba7af18a680f995a8f23a6025a18055 +Merge: 59fc35514 a7410ddb0 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 15 11:27:45 2021 -0500 + + Merge pull request #127 from shubhi-raft/patch-17 + + Create Acceptance-Criteria-for-Django-admin-console + +commit 2e149c613e0207f53730ddaf68201de8ba6076b0 +Merge: 30e30b1a7 dce99c7da +Author: John Willis +Date: Fri Jan 15 11:21:29 2021 -0500 + + Merge branch 'raft-tdp-main' into issue/510-dotenv + +commit 59fc355143e9821024abe2f65b535a508051bc05 +Merge: db0f3a3f5 12858d471 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 15 11:04:33 2021 -0500 + + Merge pull request #144 from HHS/bh-a11y-doc-updates + + Small tweaks to a11y doc + +commit 12858d471c72a492e80787f861834f417dac8ce2 +Author: Brian Hurst +Date: Fri Jan 15 10:27:46 2021 -0500 + + Small tweaks to a11y doc + +commit d32f7ba34631c91c051eebf60deb6157a9e22277 +Author: John Willis +Date: Fri Jan 15 10:23:23 2021 -0500 + + Revert "Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes" + + This reverts commit 94ddc717944a73580f26cefc61df719dbf68a15c. + +commit 7a3e18f5eac62e2bdd4c4c7dade0d9e0967d5321 +Author: John Willis +Date: Fri Jan 15 10:21:28 2021 -0500 + + Revert "Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes" + + This reverts commit 30e30b1a77dd68a9f18cfb5bd522206a6210b277. + +commit 81ae522ef872af64426d08e08ca5f2483d463a7f +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Jan 15 09:02:56 2021 -0600 + + Update our-team-and-values.md + +commit 1947dac50b34d03787aa5c1aa42117922f94eee0 +Author: Carl Smith +Date: Fri Jan 15 10:02:19 2021 -0500 + + Update README.md + + equalize emphasis + +commit 3cbf6fd19cc49b5b1dda19bb4b6cc4bb8dcfe46a +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Fri Jan 15 08:56:21 2021 -0600 + + Update communication-tools.md + +commit db0f3a3f59dca466990eca86542f01a441a80ca8 +Merge: 229b84477 2e11fd39d +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 15 09:30:26 2021 -0500 + + Merge pull request #141 from HHS/bh-docs-assumptions + + Add assumptions to project impact doc + +commit 2e11fd39d84eca354de2fd8e174a23a6090922c1 +Author: Brian Hurst +Date: Fri Jan 15 09:14:35 2021 -0500 + + Add assumptions to project impact doc + +commit c5da0e1ae4df883b5cc986b707f671f8020a92ff +Author: Miles Reiter +Date: Thu Jan 14 22:38:45 2021 -0500 + + Update Design-Guide.md + +commit a306016aeb619abebc81bfa0b75d973db6963b7f +Author: Miles Reiter +Date: Thu Jan 14 22:35:01 2021 -0500 + + Update Design-Guide.md + +commit 2fea0a07e12bb9baedd52cfa79789b193fe0e9b2 +Author: Shubhi Mishra +Date: Thu Jan 14 21:31:55 2021 -0500 + + Update Flat File Metadata Guide.md + + added TANF header image and added link to concept prototype + +commit a7410ddb0d0af14cc52caede3dccacc89e157e32 +Author: Shubhi Mishra +Date: Thu Jan 14 20:55:19 2021 -0500 + + Update Acceptance-Criteria-for-Django-admin-console + + updates to address feedback + +commit 587d4591156d0e3b2efd561bddb4811607df7cce +Merge: 30e30b1a7 dce99c7da +Author: Shubhi Mishra +Date: Thu Jan 14 20:28:26 2021 -0500 + + Merge branch 'raft-tdp-main' into improve-readmes + +commit 79fe44bb0d8ef181f5b545a5a24c52121befa51d +Merge: e521c842e 229b84477 +Author: Miles Reiter +Date: Thu Jan 14 19:05:58 2021 -0500 + + Merge remote-tracking branch 'upstream/main' into main + +commit 30e30b1a77dd68a9f18cfb5bd522206a6210b277 +Author: John Willis +Date: Thu Jan 14 18:45:28 2021 -0500 + + Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes + +commit 94ddc717944a73580f26cefc61df719dbf68a15c +Author: John Willis +Date: Thu Jan 14 18:40:57 2021 -0500 + + Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes + +commit 5e1ae65ff4b12ca02a5af144b36e76610c6e577e +Author: Carlton Smith +Date: Thu Jan 14 16:46:25 2021 -0500 + + favor fe + +commit 8ad1a8993b995a91034dffdb803666218ece0905 +Merge: 34eac0c1a 0d2053cd1 +Author: Carlton Smith +Date: Thu Jan 14 16:44:49 2021 -0500 + + Merge branch 'backend/517/admin-mfa' of github.com:raft-tech/TANF-app into backend/517/admin-mfa + +commit 34eac0c1ab077c9d7ab23edaae4ac68588efafbd +Author: Carlton Smith +Date: Thu Jan 14 16:44:19 2021 -0500 + + update user management doc + +commit 0d2053cd10ddfcfa45a35ca1f947e581bc2dbcf9 +Merge: e06bff99a dce99c7da +Author: Carl Smith +Date: Thu Jan 14 16:39:01 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/517/admin-mfa + +commit 229b84477e1a915581861a6fa1b56167898a0aa0 +Merge: 3071fd355 498779825 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 14 16:05:28 2021 -0500 + + Merge pull request #140 from HHS/bh-docs-records-management + + Add records management doc + +commit 49877982504c376b71acbd07d9c9a131613b07b2 +Author: Brian Hurst +Date: Thu Jan 14 15:53:35 2021 -0500 + + Add records management doc + +commit 3071fd35533a60fdef35db3fffa9f320d0ae23ae +Merge: 60d4a0775 d9e5ef04a +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 14 15:19:00 2021 -0500 + + Merge pull request #132 from kniz-raft/patch-1 + + Update Team-Composition.md + +commit c3552fd07bb1f2f8a15470204d73a4be3425c7c6 +Author: Shubhi Mishra +Date: Thu Jan 14 15:18:58 2021 -0500 + + Create Sprint 4 Summary.md + + Add sprint 4 summary + +commit abd5eb5a1d527eb582ce182cedc590ee7bbe85a8 +Author: Shubhi Mishra +Date: Thu Jan 14 15:17:13 2021 -0500 + + Create Sprint 3 Summary.md + + Add sprint 3 summary + +commit 60d4a0775935ae027a622754a8461c029457c471 +Merge: f73ebf1f8 40af274ac +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 14 15:16:45 2021 -0500 + + Merge pull request #134 from HHS/bh-user-mng-screenshots + + Move screenshots for user role management documentation to new location + +commit 2ffcf9bc568979e2d227d107c87d17d45a1673a7 +Author: Shubhi Mishra +Date: Thu Jan 14 15:14:11 2021 -0500 + + Create Sprint 2 Summary.md + + Add Sprint 2 Summary + +commit f73ebf1f824f0277a9cbc8207dda52a5c405b946 +Merge: fd5890d1c d5e227f7f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 14 15:13:31 2021 -0500 + + Merge pull request #133 from HHS/bh-revised-diagram + + Update boundary diagram + +commit ce19998924798994c204f7e6949be1be6316def6 +Author: Shubhi Mishra +Date: Thu Jan 14 15:12:35 2021 -0500 + + Create Sprint 1 Summary.md + + Create Sprint 1 summary + +commit e06bff99ae06ff549a2b48e80d0b8a42e31780fa +Author: Carlton Smith +Date: Thu Jan 14 14:29:54 2021 -0500 + + redirect admin login to login.gov + +commit c514cd1f1e9c25e11b786a5fe74ebb55f2abceb9 +Author: Spencer Hilvitz +Date: Thu Jan 14 10:57:19 2021 -0800 + + REACT_APP_BACKEND_URL was created twice in .env.production - removed it + +commit 8effe94e0551fedb44724fb820f45059a55c9710 +Author: Spencer Hilvitz +Date: Thu Jan 14 10:41:39 2021 -0800 + + add REACT_APP_EVENT_THROTTLE_TIME to jsDocs in IdleTimer, add correct vars to Dockerfile.dev + +commit e7fdbd16cf4aac79aa751f7453ab9503fea5b14e +Merge: 9963807a2 923fe82fc +Author: Carl Smith +Date: Thu Jan 14 13:17:22 2021 -0500 + + Merge pull request #535 from raft-tech/update-raft-review + + Update raft review + +commit 923fe82fc1a856ed9780f9bfdedb583293d0f26c +Merge: dce99c7da 9963807a2 +Author: Carl Smith +Date: Thu Jan 14 12:59:21 2021 -0500 + + Merge branch 'raft-review' into update-raft-review + +commit bd9bf5e0951b7c31be6cd454cfa98c42b16ee5a3 +Merge: d0861d583 dce99c7da +Author: Carl Smith +Date: Thu Jan 14 12:46:41 2021 -0500 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-8 + +commit 7246b1a74d404f5d31a8ef44c8cff70857f39a42 +Author: Brian Hurst +Date: Thu Jan 14 12:37:00 2021 -0500 + + Remove leftover yarn.lock + +commit fd5890d1ccec5a8e4f7c062e774cfe5c7873f105 +Merge: 27c31acbf 2c15d4e0f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Jan 14 12:33:36 2021 -0500 + + Merge pull request #130 from raft-tech/change-docker + + Change docker + +commit 28eb3fdab6063c6ebb4f25e4f07fbb0d4ea1eef2 +Merge: 794e7d8f1 dce99c7da +Author: Spencer Hilvitz +Date: Thu Jan 14 09:32:37 2021 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 406-header-focus-fix + +commit 40af274ac022670054c0849516c4ce4a0c375979 +Author: Brian Hurst +Date: Thu Jan 14 12:29:09 2021 -0500 + + Move screenshots for user management documentation to new location + +commit dce99c7da55367dc94e5315418d4cf1aa0d6d5f0 +Merge: c9c3a56ab 2c15d4e0f +Author: Carl Smith +Date: Thu Jan 14 11:17:00 2021 -0500 + + Merge pull request #533 from raft-tech/change-docker + + Change docker + +commit d9e5ef04a7ce03926d03f4586befd5fba31b45be +Author: Kati N <77121362+kniz-raft@users.noreply.github.com> +Date: Thu Jan 14 10:16:52 2021 -0600 + + Update Team-Composition.md + + Fixed a typo on Jen's last name + +commit c4d78fc606968a8270fc388cd6ff71426e84a98f +Author: Shubhi Mishra +Date: Thu Jan 14 10:56:46 2021 -0500 + + Create 005-application-authentication.md + + ADR for Application Authentication + +commit d0861d583c6b1b085be8cddd726b2e6e84352ad6 +Author: Shubhi Mishra +Date: Thu Jan 14 10:42:38 2021 -0500 + + Update issue templates + + AC updated to include updating README + +commit 2c15d4e0f3859c5e66eddcd598f97485e556bc75 +Merge: c97a378ce 27c31acbf +Author: Carlton Smith +Date: Thu Jan 14 10:35:17 2021 -0500 + + Merge branch 'main' into change-docker + +commit c97a378cebf913d2ac4609f6ef47f68edfaa3806 +Author: Carlton Smith +Date: Thu Jan 14 10:35:01 2021 -0500 + + update docker account + +commit c98f76c73093406cf8d141b3a8a4dd5218e328d0 +Author: Carl Smith +Date: Thu Jan 14 09:50:49 2021 -0500 + + Update README.md + + update spelling + +commit 2fc5eda210fc1e54d7e94326fd87484796f15df4 +Merge: 8d4625ab7 27c31acbf +Author: Carlton Smith +Date: Thu Jan 14 09:48:17 2021 -0500 + + Merge branch 'main' into improve-readmes + +commit d5e227f7fe9c44cdc0292a3bcfc3305ef26f0141 +Author: Brian Hurst +Date: Thu Jan 14 09:41:03 2021 -0500 + + Update boundary diagram + +commit 8d4625ab7809fffd4f235091a305fc73eb0dddd3 +Author: Carl Smith +Date: Thu Jan 14 09:37:16 2021 -0500 + + Update README.md + + Staging will be working soon, but not quite yet + +commit 5c0d4884e87309aa5ab89d87ee120b4d1760471f +Author: bsharma +Date: Thu Jan 14 00:39:37 2021 -0500 + + fix 404 to env vars file + +commit 48a9d43960c8562c0bcd7bdcbbe0785307b06e4c +Author: bsharma +Date: Thu Jan 14 00:29:25 2021 -0500 + + improve readmes + +commit a54cd7d683b27b9db6094a956450b5ef3a1d0e17 +Author: Carlton Smith +Date: Wed Jan 13 16:01:30 2021 -0500 + + new login + +commit c9c3a56abb93319268d6f25f51e690c21dbf921d +Merge: 588071209 cef594205 +Author: Carl Smith +Date: Wed Jan 13 15:19:14 2021 -0500 + + Merge pull request #472 from raft-tech/idle-timer-events-fix + + Add focus event to idleTimer to fix small accessibility concern + +commit cef594205426b9fde9036ff53bcfc8558ededbec +Merge: e4c728099 588071209 +Author: Carl Smith +Date: Wed Jan 13 15:09:54 2021 -0500 + + Merge branch 'raft-tdp-main' into idle-timer-events-fix + +commit 27c31acbf4d04eb497c0c43e38867379f8923da7 +Merge: 03f84f915 e4c728099 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 13 14:57:35 2021 -0500 + + Merge pull request #118 from raft-tech/idle-timer-events-fix + + Idle timer events fix + +commit c260736b99aafc9863855ae1ac7d8f46455993a0 +Author: Shubhi Mishra +Date: Tue Jan 12 22:18:05 2021 -0500 + + Create 004-configuration-by-environment-variable.md + + Adds Configuration by Environment Variable to ADR + +commit 58807120930b8df8c161a520f8e7f0e1040b1e8c +Merge: f06022530 4b7292bed +Author: Carl Smith +Date: Tue Jan 12 14:13:38 2021 -0500 + + Merge pull request #471 from raft-tech/combo-box-label-fix + + Fix combo box label bug and bold labels on `/edit-profile` + +commit 4b7292bed8a1b5a8cf5cb230c3ee99e9abaf35b6 +Merge: 80b8c8ac4 f06022530 +Author: Carl Smith +Date: Tue Jan 12 13:57:05 2021 -0500 + + Merge branch 'raft-tdp-main' into combo-box-label-fix + +commit f060225308a8d75bec2ca701c63f96e965c4c28d +Merge: 3b0a9647f a2b798a87 +Author: Carl Smith +Date: Tue Jan 12 13:54:54 2021 -0500 + + Merge pull request #529 from raft-tech/ars/remove-archived-prototype-code + + Ars/remove archived prototype code + +commit 39a87872c2d6af72fc11aa6a76bbf4c3fc91f8f9 +Author: Shubhi Mishra +Date: Tue Jan 12 13:51:48 2021 -0500 + + Create Acceptance-Criteria-for-Django-admin-console + + cceptance criteria for dev issues when using Django Admin Console + +commit a2b798a8711290456b7d9744b76ffaf544e750e1 +Merge: 971a2c4f9 3b0a9647f +Author: Carl Smith +Date: Tue Jan 12 13:02:08 2021 -0500 + + Merge branch 'raft-tdp-main' into ars/remove-archived-prototype-code + +commit 03f84f91524095f2d23ff1a5d96b78d0bcd5905a +Merge: 5ec26c0cb 4edfe92ac +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 12 12:54:10 2021 -0500 + + Merge pull request #126 from shubhi-raft/patch-16 + + Create STT attribute guide.md + +commit 4edfe92ac4d78c702a7bf4c1aca4c829cadd4d46 +Author: Shubhi Mishra +Date: Tue Jan 12 12:49:27 2021 -0500 + + Create STT attribute guide.md + + Add STT attribute guide to user research + +commit 5ec26c0cbe6605f931ea9fcd319abac457dfc78c +Merge: 56f49a03c 80b8c8ac4 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 12 12:47:49 2021 -0500 + + Merge pull request #116 from raft-tech/combo-box-label-fix + + Combo box label fix - ACs are met, this looks good! + +commit 56f49a03c7ba1ad25007f3254cdd8bd79594a3bc +Merge: c31e85d60 94fd36341 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 12 11:54:10 2021 -0500 + + Merge pull request #124 from shubhi-raft/patch-14 + + Create 003 Application hosting.md + +commit 3b0a9647fa622eed13d26b1b3f9b038ea8dd21e9 +Merge: fe34eb126 0ed999589 +Author: Carl Smith +Date: Tue Jan 12 10:18:21 2021 -0500 + + Merge pull request #526 from raft-tech/backend/309/final + + Backend/309/final + +commit c31e85d60559525090f6ef806a52394786f16807 +Merge: cc9fad471 84bfaea11 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 12 10:08:51 2021 -0500 + + Merge pull request #123 from shubhi-raft/patch-13 + + Create 002 Application architecture.md + +commit cc9fad471c20cc6cd62665a92d741e96478ae6c3 +Merge: a6756359b 0ed999589 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jan 12 09:33:46 2021 -0500 + + Merge pull request #121 from raft-tech/backend/309/final + + Backend/309/final this is approved, with follow on issues. thanks! + +commit a6756359b22c2a3eb3dd7f1a4aa7dddad5eb84a4 +Merge: 51d227cc5 971a2c4f9 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 11 16:48:20 2021 -0500 + + Merge pull request #119 from HHS/ars/remove-archived-prototype-code + + Remove archived prototype code - Approving the deletion of the old prototype code, as it has been archived in two locations + +commit 94fd3634140c6857eb48860ae9b6a8cd647e0af2 +Author: Shubhi Mishra +Date: Mon Jan 11 14:40:37 2021 -0500 + + Create 003 Application hosting.md + +commit 84bfaea118828692245c80e90944fb664cfc7276 +Author: Shubhi Mishra +Date: Mon Jan 11 14:38:56 2021 -0500 + + Update 002 Application architecture.md + +commit af81e4e7bb9cbb31cfe59198d54964c69e01756f +Author: Shubhi Mishra +Date: Mon Jan 11 13:36:13 2021 -0500 + + Create 002 Application architecture.md + + Adding application architecture + +commit 51d227cc5d7df70e4d289f04cfa2297b553d03ac +Merge: c2a35a5a5 495c74c86 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 11 11:59:49 2021 -0500 + + Merge pull request #122 from shubhi-raft/patch-12 + + Update Team-Composition.md + +commit 495c74c86b62eb40055d654f04a80de4e7a6bf6e +Author: Shubhi Mishra +Date: Mon Jan 11 11:56:13 2021 -0500 + + Update Team-Composition.md + +commit 6882e1e273e34286c9a09f0c8c3ac35d7ce6167d +Author: Shubhi Mishra +Date: Mon Jan 11 11:49:26 2021 -0500 + + Update Team-Composition.md + + Updated team composition + +commit e521c842ea6f3a719fe0d40f093c9785a6e699ea +Author: miles-reiter +Date: Sun Jan 10 18:55:33 2021 -0500 + + Update Flat File Metadata Guide.md + +commit e0c649e441c25233d581a9e5333bc4046cc121c7 +Author: miles-reiter +Date: Sun Jan 10 18:54:38 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 8ae058dfbf77d01d83d5efcebcde80adde30d759 +Author: miles-reiter +Date: Sun Jan 10 18:53:35 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 56e90217ec30f9c5796912755bfc7264e0bc9af3 +Author: miles-reiter +Date: Sun Jan 10 18:45:38 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 8a6b630ec4477268cc4e82955e9c73b513dbe6bd +Author: miles-reiter +Date: Sun Jan 10 18:40:37 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 5a3b83931e85908a6bc5df524fdc4fe82754a548 +Author: miles-reiter +Date: Sun Jan 10 18:20:20 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 25344f69a4313c87e81e38a7618b9de6105e59bc +Author: miles-reiter +Date: Sun Jan 10 18:19:58 2021 -0500 + + Update Flat File Metadata Guide.md + +commit ad6b0222faaeda1a7da1e0fad0a46813bc737983 +Author: miles-reiter +Date: Sun Jan 10 18:17:30 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 52c678e84468c23c4acf7c3c47a602108983f5f8 +Author: miles-reiter +Date: Sun Jan 10 18:16:36 2021 -0500 + + Update Flat File Metadata Guide.md + +commit ac6252c8604eb332bcd010086868ccce2ac6565d +Author: miles-reiter +Date: Sun Jan 10 18:15:09 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 21dda91e2bba678e25db0af87f4f118a7c536cd1 +Author: miles-reiter +Date: Sun Jan 10 18:07:45 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 29515d0e702300c3ba73f94715d7b37f67b815b9 +Author: miles-reiter +Date: Sun Jan 10 18:07:14 2021 -0500 + + Update Flat File Metadata Guide.md + +commit 15c748d4f167ab79849f29f82f0b2d10e5f66e92 +Author: miles-reiter +Date: Sun Jan 10 18:06:41 2021 -0500 + + Update Flat File Metadata Guide.md + +commit e90838a232331090c34d6391479a464df0efddf0 +Merge: 8a4d59074 d21dfb9eb +Author: miles-reiter +Date: Sun Jan 10 18:05:16 2021 -0500 + + Merge branch 'main' of https://github.com/reitermb/TANF-app into main + +commit 8a4d59074f38f5887effd647d3fbd3ad7ba9e23b +Author: miles-reiter +Date: Sun Jan 10 18:05:14 2021 -0500 + + Create Flat File Metadata Guide.md + +commit 0ed999589b1713a6a8eb99116a92d3404577f167 +Author: Carlton Smith +Date: Fri Jan 8 15:32:52 2021 -0500 + + update docs with current groups + +commit 9963807a2de3363a4e6b98c6cd825460966635f8 +Merge: 6507f1bbb 3897df048 +Author: Carl Smith +Date: Fri Jan 8 15:07:09 2021 -0500 + + Merge pull request #525 from raft-tech/reviews/309 + + Reviews/309 + +commit 3897df048991e2f1a5a88ac08c012d19f20958de +Merge: d926e977a 6507f1bbb +Author: Carl Smith +Date: Fri Jan 8 14:53:11 2021 -0500 + + Merge branch 'raft-review' into reviews/309 + +commit d926e977a175e724dcbbc427d12eb7c8ff0ee8c2 +Author: Carlton Smith +Date: Fri Jan 8 14:48:49 2021 -0500 + + move role managagement to new location + +commit c7fce46b74f4ace0f5f25b1c49cae578723a1365 +Author: Carlton Smith +Date: Fri Jan 8 14:32:38 2021 -0500 + + update test + +commit b5461ba5ffbdff244e2afb32789cdd3fd73b4084 +Author: Carlton Smith +Date: Fri Jan 8 12:46:48 2021 -0500 + + add migration to use unneeded role + +commit c2a35a5a55c4953fe5efb35a22b540679b82e7db +Merge: c5bdb808b d504bebab +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Jan 8 12:01:53 2021 -0500 + + Merge pull request #120 from shubhi-raft/patch-11 + + Update Overview of Research Activities.md + +commit 6507f1bbbde5d59bc19cd33555f348bca26cb129 +Merge: 61695a947 15b77488f +Author: Carl Smith +Date: Thu Jan 7 15:35:38 2021 -0500 + + Merge pull request #523 from raft-tech/309-deploy-2 + + add comment + +commit 15b77488fca91d718397cc7cf8ad2f8a51da4325 +Merge: 8c4d649ec 61695a947 +Author: Carl Smith +Date: Thu Jan 7 15:19:43 2021 -0500 + + Merge branch 'raft-review' into 309-deploy-2 + +commit 8c4d649ec34f6b62cc8787e65840b0b6e7de5fb4 +Author: Carlton Smith +Date: Thu Jan 7 15:15:02 2021 -0500 + + add comment + +commit 971a2c4f92356d0248ecbcd75f2928e0856c88af +Author: Alex Soble +Date: Thu Jan 7 14:05:16 2021 -0600 + + Remove deploy scripts from prototype + +commit 312df0739c74d2182457ab8fc1f79424ede41e6b +Author: Alex Soble +Date: Thu Jan 7 13:47:54 2021 -0600 + + Update README + +commit c34803fe17a3e0032d3903f63d85bb63a36d22ce +Author: Alex Soble +Date: Thu Jan 7 13:29:21 2021 -0600 + + Remove prototype docker-compose.yml + +commit 7786273ac43bed6309b98ccee201cc29c75bf8b1 +Author: Alex Soble +Date: Thu Jan 7 13:22:44 2021 -0600 + + Remove prototype manage.py + +commit 51995050bbff91465f797b2a9f715971fd738c97 +Author: Alex Soble +Date: Thu Jan 7 13:20:37 2021 -0600 + + Remove prototype Dockerfile + +commit d504bebab8e289a9c9fdc9b7093f62b5312efb51 +Author: Shubhi Mishra +Date: Thu Jan 7 12:52:55 2021 -0500 + + Update Overview of Research Activities.md + + Update overview with the round 3 research activities + +commit 61695a947d89c8c3be47f407e3068c7930d25844 +Merge: 5b0e807cc c8be81cdd +Author: Carl Smith +Date: Thu Jan 7 12:36:27 2021 -0500 + + Merge pull request #522 from raft-tech/backend/309/dynamic-roles-permissions + + no prompts for collectstatic + +commit c8be81cdd600bbd0049f7b0c981c1f55d2f5a632 +Merge: 50a0d6e5a 5b0e807cc +Author: Carl Smith +Date: Thu Jan 7 12:23:15 2021 -0500 + + Merge branch 'raft-review' into backend/309/dynamic-roles-permissions + +commit 9027690a3643813f8ca5a48795800340607b288d +Author: Alex Soble +Date: Thu Jan 7 11:21:12 2021 -0600 + + Remove scripts related to prototype app + +commit c1a1f17c36999e3dbc3a9957150c5b6fa9e35871 +Author: Alex Soble +Date: Thu Jan 7 11:00:12 2021 -0600 + + Remove additional prototype folders + +commit d915ec0d31bec240e2dfab469f3c09bfc5819b2f +Author: Alex Soble +Date: Thu Jan 7 10:59:34 2021 -0600 + + Remove prototype compliance and app folders + +commit 50a0d6e5a4d47a7011545e7959960a62962a1281 +Author: Carlton Smith +Date: Thu Jan 7 11:55:47 2021 -0500 + + no prompts for collectstatic + +commit c5bdb808bf8218b191f7b2abbddcb846fa0a2f1c +Merge: 0f082e2d2 6dc470026 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 6 16:36:09 2021 -0500 + + Merge pull request #117 from shubhi-raft/patch-10 + + Create 001 ADR template.md + +commit 0f082e2d2eadff3ee213eea2ebda55e85dd000aa +Merge: 7a726603a 0a4dffc0f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Jan 6 16:26:56 2021 -0500 + + Merge pull request #115 from shubhi-raft/patch-9 + + Create Sprint 11 Summary.md + +commit 5b0e807cce653cf33e7c7b80d971101583c92d94 +Merge: cc7d44045 d0e01eed4 +Author: Carl Smith +Date: Wed Jan 6 14:32:22 2021 -0500 + + Merge pull request #516 from raft-tech/309-deploy + + 309 deploy + +commit e4c72809913d8643ef094e30faa4b2fbb715f235 +Merge: 91d942f38 7a726603a +Author: Carlton Smith +Date: Wed Jan 6 14:13:03 2021 -0500 + + Merge branch 'main' into idle-timer-events-fix + +commit 6dc470026c2b80d5660d6888721a8c1cb84d1134 +Author: Shubhi Mishra +Date: Wed Jan 6 14:10:29 2021 -0500 + + Create 001 ADR template.md + + Adding template for recoding architectural decisions + +commit d0e01eed48eb51873f5159dc602997705dcbf1e5 +Author: Carlton Smith +Date: Wed Jan 6 13:40:47 2021 -0500 + + complete merge + +commit 5d873a9e00cf349f6f66fff4281638e7626d327e +Merge: 558a8ac67 cc7d44045 +Author: Carlton Smith +Date: Wed Jan 6 13:37:16 2021 -0500 + + merge raft-review + +commit 558a8ac675d6a012c6d6de1360a15af54340c025 +Author: Carlton Smith +Date: Wed Jan 6 09:49:17 2021 -0500 + + update jwt in readme + +commit 0a4dffc0f2387ebb35bedbd3d27ce4379faf8b22 +Author: Shubhi Mishra +Date: Wed Jan 6 07:22:21 2021 -0500 + + Update Sprint 11 Summary.md + +commit 80b8c8ac4d6520231a2527bacc7cc3dabd76c870 +Merge: e5ed6b747 7a726603a +Author: Carlton Smith +Date: Tue Jan 5 16:28:45 2021 -0500 + + Merge branch 'main' into combo-box-label-fix + +commit 6b69d1059d8388ebd0e5c2854539212752507155 +Merge: 1e03954f2 7a726603a +Author: Carlton Smith +Date: Tue Jan 5 15:43:03 2021 -0500 + + Merge branch 'main' into backend/309/dynamic-roles-permissions + +commit 1e03954f203a2de9e6a272ad159675d33dc4987a +Author: Carlton Smith +Date: Tue Jan 5 13:57:14 2021 -0500 + + linting + +commit d21dfb9eb77d3b0aa338ba0db5b0e57bdbaaa62f +Author: Miles Reiter +Date: Tue Jan 5 13:48:19 2021 -0500 + + Update Stakeholders-and-Personas.md + +commit 1c5b4f8f6ad7851732ffa84fa6fc57b3dd7598c7 +Author: Carlton Smith +Date: Tue Jan 5 13:20:01 2021 -0500 + + update permissions + +commit 55f3c71d8a7910e039e464f4961b827c69a2e201 +Author: Shubhi Mishra +Date: Tue Jan 5 12:23:13 2021 -0500 + + Create Sprint 11 Summary.md + +commit 6f71f78d89b9de254f3837a36019130fb3e570b1 +Author: Carlton Smith +Date: Tue Jan 5 11:07:04 2021 -0500 + + breakout user api tests + +commit 5b218cb42af8f5b2adaefd1c71c2a7959e4f7a16 +Author: Carlton Smith +Date: Tue Jan 5 10:10:37 2021 -0500 + + typos + +commit 33f62772e0add45633c00cd0d3f6bb2f8c9f4f67 +Author: Carlton Smith +Date: Tue Jan 5 09:52:22 2021 -0500 + + add comment note + +commit bf7870cc4263f5fbfd1ca4a33825c49a55aada0e +Merge: 3909e9c36 cf3cccc91 +Author: Carlton Smith +Date: Tue Jan 5 09:48:13 2021 -0500 + + remove unneeded doc + +commit 3909e9c364b308746b8eae11f17c62b5e247b350 +Author: Carlton Smith +Date: Tue Jan 5 09:28:29 2021 -0500 + + update docs + +commit 8f3b21669b6881ac5aa26e1c330eb1ac8ec64435 +Author: Miles Reiter +Date: Tue Jan 5 00:53:08 2021 -0500 + + Update Overview of Research Activities.md + +commit ea592aac2971a3cc5da9935ea61869674148217f +Author: Miles Reiter +Date: Tue Jan 5 00:51:53 2021 -0500 + + Updates to design guide & research activities + +commit cf3cccc91775bbec221a2f59167d2b0bfe4d5f56 +Merge: acac76174 fe34eb126 +Author: Aaron Beavers +Date: Mon Jan 4 20:32:18 2021 -0500 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit acac76174c447e6b030cb2bc1f6b1d9e4596f7f0 +Author: Carlton Smith +Date: Mon Jan 4 15:02:55 2021 -0500 + + remove dup + +commit f3fb7bbd6abdbcdd6e8bc0df7bc58cdff8854ed0 +Author: Carlton Smith +Date: Mon Jan 4 14:56:12 2021 -0500 + + remove todo + +commit bc5c05fbe988c712dcc03d36e6af64006a03898d +Author: Carlton Smith +Date: Mon Jan 4 13:42:04 2021 -0500 + + update docs + +commit 794e7d8f13b6359e33a6dcd705acd7fa80303ea0 +Merge: 98c11b5f6 fe34eb126 +Author: Spencer Hilvitz +Date: Mon Jan 4 10:00:33 2021 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 406-header-focus-fix + +commit 91d942f38dfdfa88be046104374da0d0ffe0dc85 +Merge: b222f3f62 fe34eb126 +Author: Spencer Hilvitz +Date: Mon Jan 4 09:59:29 2021 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into idle-timer-events-fix + +commit e5ed6b747233b94f19d17e3920ca2c164564e1c6 +Merge: 804a9569f fe34eb126 +Author: Spencer Hilvitz +Date: Mon Jan 4 09:58:42 2021 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into combo-box-label-fix + +commit fe34eb1261de765a3ba409d5851a910f8fb0c551 +Merge: 1a92b31a7 d18a6e9d0 +Author: Carl Smith +Date: Mon Jan 4 12:43:25 2021 -0500 + + Merge pull request #364 from raft-tech/documentation/282/session-management + + document session management strategy + +commit d18a6e9d0e9a37d7fd5c81361cf7abd99d54e2da +Merge: eff2e2369 1a92b31a7 +Author: Carl Smith +Date: Mon Jan 4 11:44:05 2021 -0500 + + Merge branch 'raft-tdp-main' into documentation/282/session-management + +commit 7a726603a76965606d918a76e9049410dd75b4da +Merge: 113e82b2a eff2e2369 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 4 11:40:02 2021 -0500 + + Merge pull request #112 from raft-tech/documentation/282/session-management + + Documentation/282/session management looks good + +commit 113e82b2a04cecb547565ea0e88fdee44a249ff0 +Merge: 914046e07 a092e5d5a +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Jan 4 11:36:43 2021 -0500 + + Merge pull request #113 from raft-tech/snyk-and-security-updates + + Snyk and security updates - With @alexsoble 's approval, I am merging this PR + +commit 5b0ddbdaede25248351b20eb7b96b9db55921293 +Author: Carlton Smith +Date: Mon Jan 4 08:53:44 2021 -0500 + + cleanup 309 + +commit 6d00410f2c50fa98cdaa5ddac2a08cd8ca4ab698 +Author: Carlton Smith +Date: Thu Dec 31 16:10:14 2020 -0500 + + customize admin user form + +commit eff2e236906600122f4d9c44a26440497c7c7783 +Author: Carl Smith +Date: Thu Dec 31 10:31:18 2020 -0500 + + Update session-management.md + + Added where timeout is set and removed a question mark + +commit 2ca0d8188f4ee510716566d1d1f099edfe698c08 +Merge: d18ca9746 1a92b31a7 +Author: Carl Smith +Date: Wed Dec 30 13:12:26 2020 -0500 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit 1a92b31a700c0912a73f201a0d08c189e060cb84 +Merge: e525b7b69 a092e5d5a +Author: Carl Smith +Date: Wed Dec 30 13:11:50 2020 -0500 + + Merge pull request #495 from raft-tech/snyk-and-security-updates + + HHS Main Sync + +commit a092e5d5ad24b95ec239734070e0d792ab5c10a6 +Author: Carlton Smith +Date: Wed Dec 30 12:54:34 2020 -0500 + + update from main + +commit 8df4b8746618417489ffa91ba21ebf62907ddd32 +Merge: 4b50cd62c 6f2a56a4a +Author: Carlton Smith +Date: Wed Dec 30 12:47:13 2020 -0500 + + Merge branch 'snyk-and-security-updates' of github.com:raft-tech/TANF-app into snyk-and-security-updates + +commit 4b50cd62c4ac13a35b82efb4b20b4a20f95a4b1e +Author: Carlton Smith +Date: Wed Dec 30 12:46:22 2020 -0500 + + remove unneeded files + +commit d18ca97468fdf6fde9299df3a1b87ec9213b621f +Merge: 299bfc853 e525b7b69 +Author: Carl Smith +Date: Wed Dec 30 12:28:40 2020 -0500 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit 6f2a56a4a38f0bb0bccb33cc98fa54b8999de1cb +Merge: e525b7b69 914046e07 +Author: Carl Smith +Date: Wed Dec 30 11:18:03 2020 -0500 + + Merge branch 'main' into snyk-and-security-updates + +commit e525b7b69d1baab59462559919f50d0df055675e +Merge: aea297a9a 268336e49 +Author: Carl Smith +Date: Wed Dec 30 10:43:57 2020 -0500 + + Merge pull request #483 from raft-tech/shubhi-raft-patch-7 + + Create django_admin_console_criteria.md + +commit 268336e49b95944e0f61cfa4433e65b28792de7c +Merge: 3568975bc aea297a9a +Author: Carl Smith +Date: Wed Dec 30 10:25:03 2020 -0500 + + Merge branch 'raft-tdp-main' into shubhi-raft-patch-7 + +commit aea297a9aa963866b5b28330e57a6c8a9751d757 +Merge: 7373d094b d40c89975 +Author: Carl Smith +Date: Wed Dec 30 10:24:24 2020 -0500 + + Merge pull request #465 from raft-tech/350-round-3-synthesis + + Adds Round 3 Synthesis for parity with HHS repo + +commit d40c89975bd072a5a97334e141af794484c28461 +Merge: 8872cdddc 7373d094b +Author: Carl Smith +Date: Wed Dec 30 10:07:43 2020 -0500 + + Merge branch 'raft-tdp-main' into 350-round-3-synthesis + +commit 7373d094b908e9603d133a4485e48b01c11b5459 +Merge: 8cd66e9de 27c39fbf5 +Author: Carl Smith +Date: Wed Dec 30 10:03:11 2020 -0500 + + Merge pull request #493 from raft-tech/snyk-upgrade-6d5a67b73089175175cf6ee42afb28ed + + [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 + +commit 27c39fbf55947f9fd3558052aad1f48255a56afd +Merge: 126fe6c4a 8cd66e9de +Author: Carl Smith +Date: Wed Dec 30 09:50:11 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-6d5a67b73089175175cf6ee42afb28ed + +commit 8cd66e9de69b7bda0fe8b10267bca54696f6be95 +Merge: 1519bf6bc 2df670208 +Author: Carl Smith +Date: Wed Dec 30 09:49:18 2020 -0500 + + Merge pull request #475 from raft-tech/snyk-fix-463104573197779113bb5f360757fcd3 + + [Snyk] Security upgrade react-scripts from 3.4.4 to 4.0.0 + +commit 2df670208b818f9fd7f38c63947f63b9d8f689df +Merge: 5636f716c 1519bf6bc +Author: Carl Smith +Date: Wed Dec 30 09:39:29 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-463104573197779113bb5f360757fcd3 + +commit 1519bf6bccefb66030524ed5e1e9beaa85735d89 +Merge: 6db7b39c8 24aa33a24 +Author: Carl Smith +Date: Wed Dec 30 09:38:43 2020 -0500 + + Merge pull request #476 from raft-tech/snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 + + [Snyk] Security upgrade react-scripts from 3.4.4 to 4.0.0 + +commit 24aa33a2467f7d0ced4ad8eb9df82f6a9260e56a +Author: Spencer Hilvitz +Date: Tue Dec 29 15:11:27 2020 -0800 + + hard code uswds to 2.9 and disallow minor version bumps + +commit 2a2aa1d703ef9874ffed6a09ba8d7bf0fb9172a7 +Author: Spencer Hilvitz +Date: Tue Dec 29 14:02:49 2020 -0800 + + downgrade uswds to 2.8 + +commit 7d8596c502313f6c1cf80c025ca8d8b6b50a3cc1 +Author: Spencer Hilvitz +Date: Tue Dec 29 13:38:23 2020 -0800 + + update yarn.lock + +commit 126fe6c4aa4f5ffb942c37711d8609a781190986 +Author: snyk-bot +Date: Tue Dec 29 21:35:17 2020 +0000 + + fix: upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 + + Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13. + + See this package in npm: + https://www.npmjs.com/package/@fortawesome/react-fontawesome + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit 2fff212bcf9f0bb532cf5047e9ef2da8da683b53 +Merge: 9a4b5d8f3 6db7b39c8 +Author: Carl Smith +Date: Tue Dec 29 15:18:16 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 + +commit 6db7b39c8cdd29d008218c122326c3d9b4c3e8a5 +Merge: 966c25042 66e142284 +Author: Carl Smith +Date: Tue Dec 29 15:17:32 2020 -0500 + + Merge pull request #366 from raft-tech/migrate-wiki + + Migrate Wiki + +commit 9a4b5d8f322335e30c83080e7c3a9cd67c7e4ef9 +Author: Spencer Hilvitz +Date: Tue Dec 29 12:07:06 2020 -0800 + + remove eslintcache + +commit 123269a04f06475691057caf9055dec3ab7348a9 +Merge: cda41701e 3d1572265 +Author: Spencer Hilvitz +Date: Tue Dec 29 12:06:28 2020 -0800 + + Merge branch 'snyk-fix-4e41fcc025c3098ccb83bcfb807f4526' of github.com:raft-tech/TANF-app into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 + +commit 66e142284f873c61cc09c17524b6de7fba22640e +Merge: d131970a2 966c25042 +Author: Carl Smith +Date: Tue Dec 29 15:06:09 2020 -0500 + + Merge branch 'raft-tdp-main' into migrate-wiki + +commit cda41701ebf7c7059a704bf4c2f12349c72fa9dd +Author: Spencer Hilvitz +Date: Tue Dec 29 12:03:32 2020 -0800 + + fix linting errors and update yarn.lock + +commit 966c250423253bbe16e1f83df67ecadbb7a9bef2 +Merge: f3ae1d59a 289355424 +Author: Carl Smith +Date: Tue Dec 29 14:59:24 2020 -0500 + + Merge pull request #450 from raft-tech/documentation/branching-strategy + + add branching strategy + +commit 28935542416d01f9b716830ed56e583203e62d96 +Merge: ab67b241a f3ae1d59a +Author: Carl Smith +Date: Tue Dec 29 14:48:44 2020 -0500 + + Merge branch 'raft-tdp-main' into documentation/branching-strategy + +commit ff40d76a569d0e5377ad211638abaaca1740c4a3 +Merge: c7a055ed4 f3ae1d59a +Author: Spencer Hilvitz +Date: Tue Dec 29 11:42:54 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 + +commit 3d1572265663d74c351547ffa457c9434648c4c9 +Merge: c7a055ed4 f3ae1d59a +Author: Carl Smith +Date: Tue Dec 29 14:25:30 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 + +commit f3ae1d59abd2d29ef87eae5a3dd0483abe23a654 +Merge: 5e768c186 e787d6e81 +Author: Carl Smith +Date: Tue Dec 29 14:23:38 2020 -0500 + + Merge pull request #491 from raft-tech/snyk-fix-5f595732c105e84d603382d7478254b7 + + [Snyk] Security upgrade axios from 0.20.0 to 0.21.1 + +commit 462739a147ecc2279a92e8c3099ed39e3a6744f2 +Author: Miles Reiter +Date: Tue Dec 29 14:23:05 2020 -0500 + + Update Overview of Research Activities.md + +commit 8bf112e96a23ae895b6f7549665953b1cd074c91 +Author: Miles Reiter +Date: Tue Dec 29 14:16:20 2020 -0500 + + Update Overview of Research Activities.md + +commit c7a055ed4299145215732ba064fe64eb73866387 +Author: Spencer Hilvitz +Date: Tue Dec 29 11:11:24 2020 -0800 + + add packages and upgrade some packages to get eslint working + +commit e787d6e810cf2444dc3a839762417abb091a7028 +Merge: 5ae7c51e9 5e768c186 +Author: Carl Smith +Date: Tue Dec 29 14:08:16 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-5f595732c105e84d603382d7478254b7 + +commit 5e768c18690d89dcdee7374bc60edd9863757b3a +Merge: fdac0e9dc 32c06f9da +Author: Carl Smith +Date: Tue Dec 29 14:04:09 2020 -0500 + + Merge pull request #490 from raft-tech/snyk-fix-226f3b46abfa791292185f16916677ec + + [Snyk] Security upgrade axios from 0.20.0 to 0.21.1 + +commit 32c06f9daee6bf0fea6b28f72641a6fd10115c39 +Merge: c53665829 fdac0e9dc +Author: Carl Smith +Date: Tue Dec 29 13:54:05 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-226f3b46abfa791292185f16916677ec + +commit 685df65bcf2c4f1ce67c4ac5172fce425ee2865f +Merge: 0b1914d56 914046e07 +Author: Miles Reiter +Date: Tue Dec 29 13:10:28 2020 -0500 + + Merge remote-tracking branch 'upstream/main' into main + +commit a51a3b8d01051fd71070fb939909309abd326597 +Merge: af156395b fdac0e9dc +Author: Carl Smith +Date: Tue Dec 29 12:56:38 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 + +commit 299bfc8534a61bfe9c56e519306dd8d21f55d8c8 +Author: Carlton Smith +Date: Tue Dec 29 12:54:24 2020 -0500 + + use proxy + +commit 5636f716c58bd1975214061b85fff217ce609dd2 +Merge: b670e16d4 fdac0e9dc +Author: Carl Smith +Date: Tue Dec 29 12:13:37 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-fix-463104573197779113bb5f360757fcd3 + +commit fdac0e9dc24241ab6a35df3c9f15120dd3dd1058 +Merge: f294e76d2 b533e67a7 +Author: Carl Smith +Date: Tue Dec 29 12:11:21 2020 -0500 + + Merge pull request #463 from raft-tech/snyk-upgrade-4e7b18aa9a3a2181712ef6507d99b51d + + [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 + +commit b533e67a7694420a556045a47bea0ef15ccfca8d +Merge: edde35f17 f294e76d2 +Author: Carl Smith +Date: Tue Dec 29 11:46:41 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-4e7b18aa9a3a2181712ef6507d99b51d + +commit f294e76d23f38dd863ee461ac7aff64e4260f7a4 +Merge: 781609015 9a696b91e +Author: Carl Smith +Date: Tue Dec 29 11:39:21 2020 -0500 + + Merge pull request #462 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/ini-1.3.8 + + [Security] Bump ini from 1.3.5 to 1.3.8 in /tdrs-frontend + +commit 9a696b91ed7a321dd520179f0898c98d20b019be +Author: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> +Date: Tue Dec 29 16:22:31 2020 +0000 + + [Security] Bump ini from 1.3.5 to 1.3.8 in /tdrs-frontend + + Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. **This update includes a security fix.** + - [Release notes](https://github.com/isaacs/ini/releases) + - [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.8) + + Signed-off-by: dependabot-preview[bot] + +commit 781609015f59180b7245cde51637fae35afedbee +Merge: fa73701a8 69c14c924 +Author: Carl Smith +Date: Tue Dec 29 11:20:57 2020 -0500 + + Merge pull request #424 from raft-tech/snyk-upgrade-b9c7f3c1aa976476713e65024afebfc6 + + [Snyk] Upgrade axios from 0.20.0 to 0.21.0 + +commit 69c14c92469def96cbe6ee130a336c4e1afd1e50 +Merge: feb0fe234 fa73701a8 +Author: Carl Smith +Date: Tue Dec 29 11:02:49 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-b9c7f3c1aa976476713e65024afebfc6 + +commit 914046e0724a3dde9604b5f9b0f269b31a218866 +Merge: 5047243ce 17050aa75 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Dec 28 10:50:33 2020 -0500 + + Merge pull request #110 from shubhi-raft/patch-8 + + Create Sprint 10 Summary.md Thanks for a great Sprint 10! + +commit 5047243ce84088d8778711c84d18cf5d342ca434 +Merge: 499778368 c78e963f3 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Dec 28 10:21:34 2020 -0500 + + Merge pull request #111 from HHS/bh-update-boundary-drawio + + Add missing arrows to boundary diagram + +commit c78e963f34860a8aefb17d700fba38b68769c31b +Author: Brian Hurst +Date: Mon Dec 28 09:12:09 2020 -0500 + + Add missing arrows to boundary diagram + +commit 17050aa750980b003326337160483ec66fe3c646 +Author: Shubhi Mishra +Date: Sun Dec 27 17:58:46 2020 -0500 + + Create Sprint 10 Summary.md + +commit 5ae7c51e978bab8cd59ca2d862381eb4f65a6d46 +Author: snyk-bot +Date: Wed Dec 23 22:19:47 2020 +0000 + + fix: tdrs-frontend/package.json & tdrs-frontend/yarn.lock to reduce vulnerabilities + + The following vulnerabilities are fixed with an upgrade: + - https://snyk.io/vuln/SNYK-JS-AXIOS-1038255 + +commit c5366582962b7a12f93e7c96a9a12484f85f91d9 +Author: snyk-bot +Date: Wed Dec 23 21:38:38 2020 +0000 + + fix: tdrs-frontend/package.json to reduce vulnerabilities + + The following vulnerabilities are fixed with an upgrade: + - https://snyk.io/vuln/SNYK-JS-AXIOS-1038255 + +commit a1436c5eb7e9ac823427b16a5ffb042d904f5ae7 +Merge: 64f276e30 fa73701a8 +Author: Carlton Smith +Date: Wed Dec 23 11:37:17 2020 -0500 + + Merge latest from raft-tdp-main + +commit 64f276e3067b8a93e3a38360407acae7c69f6d17 +Author: Carlton Smith +Date: Wed Dec 23 11:34:53 2020 -0500 + + update docs + +commit b7297dded3384f4e37681b3b86f14480d1c8a269 +Author: Carlton Smith +Date: Wed Dec 23 11:29:02 2020 -0500 + + update linting + +commit 196b2a45d1390e71de1f8501f8c1bd9ccd418b86 +Author: Carlton Smith +Date: Wed Dec 23 10:43:55 2020 -0500 + + update endpoints and tests + +commit 0b1914d5692538ccbecfe06d02371a1fbaefe478 +Author: Miles Reiter +Date: Mon Dec 21 14:37:25 2020 -0500 + + Adds more on program director titles + +commit bd8b80dd0d981125b6199032e1adaaa877a5bde2 +Author: Miles Reiter +Date: Mon Dec 21 14:20:43 2020 -0500 + + Edits as per Lauren's feedback + +commit 5724b8256bdab0677647ec69980976a3fc37a780 +Author: miles-reiter +Date: Fri Dec 18 17:28:33 2020 -0500 + + Update Stakeholders-and-Personas.md + +commit 37aa0f34dd40d7b36db8a787470a8fe508d181db +Author: miles-reiter +Date: Fri Dec 18 17:28:04 2020 -0500 + + Update Stakeholders-and-Personas.md + +commit 804a9569f9ff01d3969d26ed438fd9649377cc46 +Merge: fc9297da0 fa73701a8 +Author: Spencer Hilvitz +Date: Fri Dec 18 13:11:26 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into combo-box-label-fix + +commit b222f3f622c20270cb0d44140f45dcf1f5a0733e +Merge: 1589a13bc fa73701a8 +Author: Spencer Hilvitz +Date: Fri Dec 18 13:11:12 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into idle-timer-events-fix + +commit 98c11b5f67d493a7426f1ba009b38a6bd958a508 +Merge: 370547bf7 fa73701a8 +Author: Spencer Hilvitz +Date: Fri Dec 18 13:10:57 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 406-header-focus-fix + +commit 499778368a22f1f1def8306d1c43575609cb794b +Merge: c7809883c bf7064d35 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Dec 18 15:59:40 2020 -0500 + + Merge pull request #108 from HHS/bh-system-boundary + + Add system boundary to docs + +commit bf7064d351c7e3e23406b0a9682d096441f4693f +Author: Brian Hurst +Date: Fri Dec 18 15:24:55 2020 -0500 + + Move download link + +commit eee8febf0fe9036fd1dd7fc2a7b12b43cfc51afa +Author: Brian Hurst +Date: Fri Dec 18 15:22:17 2020 -0500 + + Add system boundary to docs + +commit fa73701a83eb424e56a547fad64a2458a8b420d8 +Merge: 04a16d5ef 50a7e056b +Author: Carl Smith +Date: Fri Dec 18 13:51:38 2020 -0500 + + Merge pull request #461 from raft-tech/front/119/reports + + Front/119/reports + +commit c7809883c52785494dcd2729a3bfd45ea2e87b67 +Merge: cf517798e 50a7e056b +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Dec 18 13:13:42 2020 -0500 + + Merge pull request #106 from raft-tech/front/119/reports + + Frontend Reports Page Looks good to me. Thanks, @hilvitzs ! + +commit cc7d4404564860958786ac79d99d9705b29d2c22 +Merge: f368d6051 aeab9eb17 +Author: Spencer Hilvitz +Date: Fri Dec 18 09:14:20 2020 -0800 + + Merge pull request #482 from raft-tech/406-header-focus-fix + + Fix focus not being able to move away from h1 + +commit f8effd5a2d52a4de8d56ad2f7b60dd39fba21c59 +Author: Carlton Smith +Date: Fri Dec 18 12:03:41 2020 -0500 + + admin changes + +commit bc78f35ba21b581e32c994bfb2b0b47f240965cb +Author: Carlton Smith +Date: Fri Dec 18 12:01:47 2020 -0500 + + latest + +commit 50a7e056b7d8e7bc31433caff229ce87d506da9e +Author: Spencer Hilvitz +Date: Fri Dec 18 00:30:37 2020 -0800 + + fix header.test titles + +commit 3568975bcc04725b8b7b79dd696c0a0ccdcd0193 +Author: Shubhi Mishra +Date: Thu Dec 17 17:42:04 2020 -0500 + + Create django_admin_console_criteria.md + + PR for adding criteria for #456 + +commit aeab9eb1721dfd7d1f5c6ab28fa64c00d7cfd5b4 +Merge: 370547bf7 f368d6051 +Author: Carl Smith +Date: Thu Dec 17 16:11:40 2020 -0500 + + Merge branch 'raft-review' into 406-header-focus-fix + +commit 7cc7456cf64a284862634052a757215e2693c866 +Author: Carlton Smith +Date: Thu Dec 17 15:33:15 2020 -0500 + + ignore files + +commit 370547bf70c97a9403d4572fc366914b6c14d1d1 +Author: Spencer Hilvitz +Date: Thu Dec 17 12:04:14 2020 -0800 + + update yarn to add puppeteer + +commit 557897a74f8e1e1d371f7b66e8a3a49ee480e668 +Author: miles-reiter +Date: Thu Dec 17 15:03:21 2020 -0500 + + Updated Table of Contents + +commit 25c47100b55ab10b7e3351c0376a7785f4c622a2 +Author: miles-reiter +Date: Thu Dec 17 15:00:26 2020 -0500 + + Update Stakeholders-and-Personas.md + +commit c93759948a6fcd555ded3e59d03f71d66c1d7d10 +Author: Spencer Hilvitz +Date: Thu Dec 17 11:57:01 2020 -0800 + + ensure useEffect on PrivateTemplate is only run on first render + +commit 0df5d3823b56ea10c8fd95cde72d2c6828fad323 +Author: miles-reiter +Date: Thu Dec 17 14:56:57 2020 -0500 + + Update Stakeholders-and-Personas.md + +commit f368d6051079b773f2e252cbdb05aa9b51e73b18 +Merge: 279106872 f7171787d +Author: Carl Smith +Date: Thu Dec 17 13:50:49 2020 -0500 + + Merge pull request #477 from raft-tech/406-header-focus-fix + + 406 & 407: Fix focus on route change and alert on error + +commit f7171787d0ad6637c69377a326af01eea97e1583 +Merge: b40da2060 279106872 +Author: Carl Smith +Date: Thu Dec 17 13:38:26 2020 -0500 + + Merge branch 'raft-review' into 406-header-focus-fix + +commit 812a6b921b1542942999462e73a2b0181ccd8fa5 +Author: Spencer Hilvitz +Date: Thu Dec 17 09:49:23 2020 -0800 + + rename upload action and reducer to reports for clarity + +commit b40da20600ca7f930b0a4d6f0ab84289e0828be5 +Author: Spencer Hilvitz +Date: Wed Dec 16 14:35:50 2020 -0800 + + add headerRef and tabIndex to PrivateTemplate to focus user on h1 when route changes, hide focus on h1's, add role alert to alert + +commit af156395bd0cf6415cea29d97edee7f35a3ce63a +Author: snyk-bot +Date: Wed Dec 16 22:17:22 2020 +0000 + + fix: tdrs-frontend/package.json & tdrs-frontend/yarn.lock to reduce vulnerabilities + + The following vulnerabilities are fixed with an upgrade: + - https://snyk.io/vuln/SNYK-JS-NODENOTIFIER-1035794 + +commit b670e16d4e4835659d356db5576c111ff941e892 +Author: snyk-bot +Date: Wed Dec 16 21:32:38 2020 +0000 + + fix: tdrs-frontend/package.json to reduce vulnerabilities + + The following vulnerabilities are fixed with an upgrade: + - https://snyk.io/vuln/SNYK-JS-NODENOTIFIER-1035794 + +commit 2791068720ccf384e571bc58bcb8c62d92913939 +Merge: c177c62aa 0b7cc7c51 +Author: Carl Smith +Date: Wed Dec 16 15:01:30 2020 -0500 + + Merge pull request #469 from raft-tech/idle-timer-events-fix + + Add focus event to idleTimer to fix small accessibility concern + +commit 0b7cc7c51d7305541df8af9e9ce3dd0782814d03 +Merge: 1589a13bc c177c62aa +Author: Carl Smith +Date: Wed Dec 16 14:52:59 2020 -0500 + + Merge branch 'raft-review' into idle-timer-events-fix + +commit c177c62aabf26c4d2a161df733b66f620bdcad57 +Merge: f4ad91c84 06da18590 +Author: Carl Smith +Date: Wed Dec 16 14:36:28 2020 -0500 + + Merge pull request #467 from raft-tech/combo-box-label-fix + + Fix combo box label bug and bold labels on `/edit-profile` + +commit 06da1859081c3161cda22b7ef6582e5852930c13 +Merge: fc9297da0 f4ad91c84 +Author: Carl Smith +Date: Wed Dec 16 14:28:03 2020 -0500 + + Merge branch 'raft-review' into combo-box-label-fix + +commit f4ad91c84e5b232c8fa0111e2a1bbca1758deb61 +Merge: 888b2ef3c c8718323a +Author: Carl Smith +Date: Wed Dec 16 14:05:08 2020 -0500 + + Merge pull request #464 from raft-tech/front/119/reports + + Front/119/reports + +commit c8718323aba14989f7d0cd447f4b76367ed0c59f +Merge: 932c53248 888b2ef3c +Author: Carl Smith +Date: Wed Dec 16 13:40:24 2020 -0500 + + Merge branch 'raft-review' into front/119/reports + +commit 51ac798110d0be978959b19a0edd8d057da40e00 +Author: Miles Reiter +Date: Wed Dec 16 12:58:17 2020 -0500 + + Added placeholders + +commit c0fc1d5423a2bd0760a9fb1d4b707e2212eefef7 +Author: Miles Reiter +Date: Tue Dec 15 21:40:28 2020 -0500 + + Adds issue number to doc + +commit 420db96390898ffc622f7ff7138afc933955d323 +Author: Miles Reiter +Date: Tue Dec 15 21:36:51 2020 -0500 + + Changes User-Types to Stakeholders-and-Personas + + Update in preparation for other changes based on round 3 research + +commit 1589a13bc6d851822dd193b9a70c6e772a470760 +Author: Spencer Hilvitz +Date: Tue Dec 15 14:58:45 2020 -0800 + + update yarn + +commit 8882626e908ce188add1fd1d253a8cce812e1583 +Author: Spencer Hilvitz +Date: Tue Dec 15 14:51:09 2020 -0800 + + add throttle time variable to .env.development, add env vars to .env.test, fix editprofile linting, add focus event to idletimer, change myModal id to timeoutModal, update tests + +commit 8872cdddc7eebf37e0105166c7517475bcbd1fd3 +Author: Miles Reiter +Date: Mon Dec 14 19:44:00 2020 -0500 + + Adds Round 3 Synthesis for parity with HHS repo + +commit fc9297da0d7a71831ecb541d4e71cb36b5d52d72 +Author: Spencer Hilvitz +Date: Mon Dec 14 14:03:42 2020 -0800 + + fix combo box bug where label would not be read by screen readers, make EditProfile labels bold to match mocks + +commit edde35f17c3108a4abe2c4de9a55551170087df3 +Author: snyk-bot +Date: Mon Dec 14 21:38:56 2020 +0000 + + fix: upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 + + Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13. + + See this package in npm: + https://www.npmjs.com/package/@fortawesome/react-fontawesome + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit cf517798e3799e5502778d7b50485fbda35dee4e +Merge: a5371b778 f3293df8c +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Dec 14 14:58:52 2020 -0500 + + Merge pull request #99 from reitermb/main + + Adds Round 3 Synthesis + +commit f3293df8c774edbe274fc212bc8c693b5d58d7c2 +Author: Miles Reiter +Date: Mon Dec 14 14:39:43 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 932c532485b736c1d183a6f83b3eec50431cf464 +Author: Spencer Hilvitz +Date: Fri Dec 11 13:01:58 2020 -0800 + + fix key on NavItem + +commit d25afbacf02c666e7406b710290c00569dd1bcd0 +Author: Spencer Hilvitz +Date: Fri Dec 11 12:17:37 2020 -0800 + + add documentation to Reports component + +commit 888b2ef3c8c2ec3751c0c043d1f1e540ba93da64 +Merge: 796026a12 e3758ec54 +Author: Carl Smith +Date: Fri Dec 11 14:30:49 2020 -0500 + + Merge pull request #460 from raft-tech/front/119/reports + + add selectedYear to TANF Report p tag per design request + +commit e3758ec545ed5a5eb5ff0bfbdb1c5e8c5a4ebb11 +Merge: 818e0a3b0 796026a12 +Author: Carl Smith +Date: Fri Dec 11 13:58:27 2020 -0500 + + Merge branch 'raft-review' into front/119/reports + +commit 818e0a3b0a5b13a493e920fc541afc32a09d5b03 +Author: Spencer Hilvitz +Date: Fri Dec 11 10:34:22 2020 -0800 + + add selectedYear to TANF Report p tag per design request + +commit 43d4e6e8c4b02787ddcb3ca9d233e44a0598b108 +Merge: 5927f6fa0 a5371b778 +Author: Miles Reiter +Date: Fri Dec 11 11:34:25 2020 -0500 + + Merge remote-tracking branch 'upstream/main' into main + +commit a5371b778d347e7b826041d692abec5e4b3e0fa7 +Merge: 81c43d003 fe2f67be8 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Dec 11 10:10:06 2020 -0500 + + Merge pull request #103 from HHS/ars/add-contributors-to-docs-readme + + Add Contributors section to docs README + +commit fe2f67be8bb8ea6862e83fde234fab89aebe2f9a +Author: Alex Soble +Date: Fri Dec 11 08:58:42 2020 -0600 + + Add work from prototyping stage + +commit 81c43d003cd085c127361c58237377d227e69184 +Merge: 4c07cfe1e ab67b241a +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Dec 10 16:46:01 2020 -0500 + + Merge pull request #102 from raft-tech/documentation/branching-strategy + + Documentation/branching strategy + +commit ab67b241a00e9724738af7dd015561953f07ea9a +Author: Carlton Smith +Date: Thu Dec 10 14:56:02 2020 -0500 + + update docs + +commit 796026a127aa3090e2b6b9343b6151f1e4a7d017 +Merge: 556468a62 9a8521ca5 +Author: Spencer Hilvitz +Date: Thu Dec 10 11:13:35 2020 -0800 + + Merge pull request #458 from raft-tech/front/119/reports + + Front/119/reports + +commit 9a8521ca5125ca1600d1c5d2449f40d2f95e1936 +Merge: af3d1ef8f 556468a62 +Author: Carl Smith +Date: Thu Dec 10 13:57:08 2020 -0500 + + Merge branch 'raft-review' into front/119/reports + +commit af3d1ef8fdae72c79c30156389b79e6f216bb5e5 +Author: Spencer Hilvitz +Date: Thu Dec 10 10:48:06 2020 -0800 + + fix header test + +commit ca92215bec241a1ef51f3d8234e293ce2ed9665e +Author: Spencer Hilvitz +Date: Thu Dec 10 10:41:50 2020 -0800 + + remove pathnameToMatch from NavItem and Header + +commit d3aed8493d7427834746b0e0f25e9500476db07b +Author: Alex Soble +Date: Thu Dec 10 11:11:46 2020 -0600 + + Add Contributors section to docs README + +commit 556468a62e097d942519d8dc6a56c95df9827c5d +Merge: 32c1428ea d55bd5d4f +Author: Spencer Hilvitz +Date: Wed Dec 9 12:45:50 2020 -0800 + + Merge pull request #452 from raft-tech/front/119/reports + + Front/119/reports + +commit d55bd5d4fdf0f4573efd7459fd688715bbc84068 +Merge: 075c44d56 32c1428ea +Author: Carl Smith +Date: Wed Dec 9 15:34:29 2020 -0500 + + Merge branch 'raft-review' into front/119/reports + +commit 37dd4475fa05b327faccf96e8a85fa95fb393490 +Author: Spencer Hilvitz +Date: Tue Dec 8 15:19:33 2020 -0800 + + fix EditProfile whitespace + +commit acf19870adc309ca890d28d930ef5bba38b99083 +Author: Spencer Hilvitz +Date: Tue Dec 8 15:19:14 2020 -0800 + + change text NavItem prop to tabTitle and add docs to NavItem + +commit 60085c50fc8344cb1d2cc533a54819df8a40656f +Author: Carlton Smith +Date: Tue Dec 8 14:33:50 2020 -0500 + + add branching strategy + +commit d4bc3ed746bc1ee7721f74da04479cbb835f8d5a +Author: Carlton Smith +Date: Tue Dec 8 14:31:01 2020 -0500 + + updating views + +commit 231bf365a7cf74a43773d0e3ff14589871170bb5 +Author: Spencer Hilvitz +Date: Tue Dec 8 10:12:58 2020 -0800 + + remove dynamic h1 title on Reports + +commit 4c07cfe1e61d9ff0ac6c4f72cb601ec77c5ad9c5 +Merge: fad973238 63790a578 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Dec 8 12:23:50 2020 -0500 + + Merge pull request #101 from shubhi-raft/patch-7 + + Create Sprint 9.md + +commit 63790a578e022fdb70a0614044f27b7f613fe4a2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Dec 8 12:22:11 2020 -0500 + + Update Sprint 9.md + +commit 075c44d5627eb51dd1f7aaf70172f60fe9d6f903 +Merge: 07b9c245b 04a16d5ef +Author: Spencer Hilvitz +Date: Tue Dec 8 09:18:47 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into front/119/reports + +commit 52948a1f17ad1af1b7e6b2092c0ad857c513a25c +Author: Shubhi Mishra +Date: Tue Dec 8 12:12:22 2020 -0500 + + Create Sprint 9.md + + sprint 9 summary + +commit 04a16d5ef74a58b42b7e663f056ed1703c4fbc39 +Merge: b55c1b647 a914d3b7c +Author: Carl Smith +Date: Tue Dec 8 12:05:54 2020 -0500 + + Merge pull request #363 from raft-tech/header-title-match + + 283 Add title heading element to display h1 content in page tab title + +commit 7fef048e37681c4acd170c503c8e1a525dacbb66 +Author: Carlton Smith +Date: Tue Dec 8 09:05:02 2020 -0500 + + comments and documentation + +commit 07b9c245b00fdb81542a580a1f75f3873d7c3d61 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:44:18 2020 -0800 + + update yarn.lock + +commit 966a8c25a44074f11bbbf431edc39bb243ef4043 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:31:00 2020 -0800 + + remove unnecessary `grid-container` in Reports + +commit e44655c22b3cb7859f1e458edec9bf3c844dec40 +Merge: 50ba4d410 a914d3b7c +Author: Spencer Hilvitz +Date: Mon Dec 7 16:25:06 2020 -0800 + + Merge branch 'header-title-match' of github.com:raft-tech/TANF-app into front/119/reports + +commit 50ba4d410818a91b313ea1341f6f8cd19529ab26 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:24:57 2020 -0800 + + add upload reducer to handle `SET_YEAR` and default to 2020, add test for upload reducer + +commit 9f60c77c64e788412b463934477ed98e55672ef3 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:18:32 2020 -0800 + + update routes with '/reports' and update tests + +commit 6995f9b2e7039ef4a7b9e04db3be92b9a18d45d4 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:18:02 2020 -0800 + + add upload action and corresponding tests + +commit 5e5f5c8b9a9059f23ed4f1f36bbd0a09676ba1c5 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:17:37 2020 -0800 + + add Reports component + +commit f0c56cd38d17a26dbda8a2d7bfd8e3b2503b0566 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:17:04 2020 -0800 + + add NavItem component to be resued in Header, update Header and Header.test + +commit e8d6681f6cc0ec1fc889211fe3c3f00c945ab725 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:16:26 2020 -0800 + + make sttList test more complete + +commit 552588ae41d5fa2ebda9d8882e79a1fcf2d0e3e8 +Author: Spencer Hilvitz +Date: Mon Dec 7 16:16:01 2020 -0800 + + update .env.development with correct non-evaluative times + +commit 5927f6fa03a3a64ad23b138baaff5796d9fbe8d7 +Merge: 0a48212d6 fad973238 +Author: Miles Reiter +Date: Mon Dec 7 16:23:53 2020 -0500 + + Merge remote-tracking branch 'upstream/main' into main + +commit 0a48212d69c0d73e707128609665f89c30b2cfb0 +Author: Miles Reiter +Date: Mon Dec 7 16:20:02 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 6eb1d420d256d0d5dbe223fbe818695cd5f0cd37 +Author: Miles Reiter +Date: Mon Dec 7 16:18:55 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit ea1436fbdea4464a629b15e009ee5916ed6a1bdc +Author: Miles Reiter +Date: Mon Dec 7 16:13:37 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 16f2a7df7b798589560206b37eae74d490680795 +Author: Miles Reiter +Date: Mon Dec 7 16:07:39 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 59cd7a846f415fdf6144ccf5be0e2648ad35c929 +Author: Miles Reiter +Date: Mon Dec 7 15:59:54 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit fad973238a6c2ea81c455cab154e2405aad653d5 +Merge: 865ad91eb a914d3b7c +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Dec 7 15:39:32 2020 -0500 + + Merge pull request #94 from raft-tech/header-title-match + + Header title match -- looks good, satisfies AC of #283 + +commit fae7f609f96afb26d98f5dfa44bca8b2ffc4a497 +Author: Miles Reiter +Date: Mon Dec 7 14:17:32 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit a914d3b7cbafd2763b513296dbc3edd8c30c706e +Author: Aaron Beavers +Date: Mon Dec 7 13:02:33 2020 -0600 + + Add JSDoc string to private template definition. + +commit 7c32daa6f609c356581bc2fdab8a6d3430af503b +Author: Aaron Beavers +Date: Mon Dec 7 13:01:58 2020 -0600 + + Fix typo + +commit c0568ea8d1bd7ce4f0821677451fb06e5f7908c7 +Author: Miles Reiter +Date: Mon Dec 7 13:26:54 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 42d1adb1447652400773dc80d71f1e10d7927d81 +Author: Miles Reiter +Date: Mon Dec 7 11:44:31 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 784d9c0f57e9a398b28f19ef749e2149b668983d +Author: Miles Reiter +Date: Mon Dec 7 11:43:22 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 6ec9c69a071f8108f99550c57b144ffa5299e0ea +Author: Miles Reiter +Date: Mon Dec 7 11:43:00 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 04729378ad3350521384e0a3e2425c76e4cb954c +Author: Miles Reiter +Date: Mon Dec 7 11:41:57 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 3895522cff50919ddaebf405f0e90be17a35cfc1 +Author: Miles Reiter +Date: Mon Dec 7 11:40:37 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 369d3393955669e8c0f87547a34246993a3e2f76 +Author: Miles Reiter +Date: Mon Dec 7 11:37:39 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 8d0b27fad193bb6537397a5a3c3e3be2866cb62f +Author: Miles Reiter +Date: Mon Dec 7 11:36:05 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 2a7cdfcbd3d1ec7e317b58e464e615333833dc01 +Author: Miles Reiter +Date: Mon Dec 7 11:33:20 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit f40d9946fa661a7b6ca3fe0fb7b27f14861e2efa +Author: Miles Reiter +Date: Mon Dec 7 11:32:32 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit df31183af99e986e1d8757f592b3964bda0a9c2d +Merge: 6cb41e68b 865ad91eb +Author: Miles Reiter +Date: Mon Dec 7 10:53:10 2020 -0500 + + Merge remote-tracking branch 'upstream/main' into main + +commit 6cb41e68bd9ce19d18d999fdc02f558f0c27e8b6 +Author: Miles Reiter +Date: Mon Dec 7 10:51:26 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 865ad91ebaaac37c9e23dd1a4205d2ed5765e37c +Merge: a8918f237 9051b5720 +Author: Alex Soble +Date: Thu Dec 3 10:41:17 2020 -0600 + + Merge pull request #98 from HHS/lfrohlich-patch-2-1 + + Update User-Types.md + +commit 9051b572005f4dcc5293a40e7c67d0706e08ebf6 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Dec 3 11:09:29 2020 -0500 + + Update User-Types.md + + Added OFA MVP user roles + +commit a8918f23739c7dbd9a4a0939c79927230ff8b9a3 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Dec 3 10:58:33 2020 -0500 + + Update High-Level-Database-Documentation.md + + Added ERD description + +commit 9a10561d0bbf14e53c6e0ab99b5adb5fbbf99d8d +Merge: ea4f1c70f 292601dcb +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Dec 2 16:52:14 2020 -0500 + + Merge pull request #96 from HHS/ars/cmp + + Add Configuration Management Plan + +commit 4488c93af41791867d522f0b995b020824b77b19 +Author: Carl Smith +Date: Wed Dec 2 16:34:57 2020 -0500 + + updated doc link + +commit 031cc53a2750b23a26ce9840d5a902536ccfb07e +Author: Carlton Smith +Date: Wed Dec 2 16:28:31 2020 -0500 + + update documentations for more general use + +commit 292601dcbbcf4a1c59cd25501bb798908a363722 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Dec 2 16:23:58 2020 -0500 + + Update Configuration-Management-Plan.md + + added https://cloud.gov/docs/ops/secrets/ link + +commit 45a4bd433216efc100061976f46f8a6bafe04605 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Dec 2 16:14:26 2020 -0500 + + Update our-workflow.md + + Removed Christine as DoD reviewer + +commit 11e0ae8ee8b584a2042cfdc08edec3eec9fe22ce +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Dec 2 16:07:39 2020 -0500 + + Update Configuration-Management-Plan.md + +commit ea4f1c70f1d1533a12803b3940330092e7e09ecb +Merge: cb15595d3 7f7cb6a19 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Dec 2 16:01:30 2020 -0500 + + Merge pull request #93 from HHS/ars/db-docs + + Add skeleton pass at high level database and object storage documentation + +commit 7f7cb6a191dec4204143b099e8dee30667b416a5 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Dec 2 16:00:33 2020 -0500 + + Update High-Level-Database-Documentation.md + +commit 179267fc00e7d8d562052cfb0a7b3df81ee8a6c5 +Author: Carlton Smith +Date: Wed Dec 2 12:46:06 2020 -0500 + + update ERD + +commit 7ad71128ff36044bb9af564ce78b50fa804265c4 +Author: Alex Soble +Date: Wed Dec 2 10:28:18 2020 -0600 + + Merging over rebasing + +commit 51e67f94963248aad1a117eb70f74899ac652670 +Author: Alex Soble +Date: Wed Dec 2 08:22:05 2020 -0600 + + Update Lifecycle to reference Workflow + +commit eddfae691eb7bafa586ab2e5d7248055a5ba6fee +Author: Alex Soble +Date: Wed Dec 2 07:39:19 2020 -0600 + + Use clearer section heading name + +commit b6f290c8b2893f2986eb822a9583bed1d615362f +Author: Alex Soble +Date: Wed Dec 2 07:35:52 2020 -0600 + + Add Git Flow section header + +commit abfe32083582a0d7f1239ce4c9afed177d029d56 +Author: Alex Soble +Date: Tue Dec 1 17:01:51 2020 -0600 + + Style tweaks + +commit ba55f2a860e9a5382bd7886925fc97edfd7eaddc +Author: Alex Soble +Date: Tue Dec 1 17:00:45 2020 -0600 + + Update Change Workflow + +commit 9a377cf7d879f8301bf7503454f352eb9041691b +Author: Alex Soble +Date: Tue Dec 1 16:45:34 2020 -0600 + + WIP -- Configuration Management Plan + +commit 3196d451105f392a27c65ad86e51e4be0645f18e +Author: Alex Soble +Date: Tue Dec 1 16:28:23 2020 -0600 + + Add more object storage documentation + +commit 8c38846fc58f4aeb368c4df767b5c3a4e0662050 +Merge: 0201a5f2d cb15595d3 +Author: Carl Smith +Date: Tue Dec 1 17:14:52 2020 -0500 + + Merge branch 'main' into backend/309/dynamic-roles-permissions + +commit 32c1428ea05f7bd9031bf69d5a620e2e85249b70 +Merge: ce2ecf5db 0201a5f2d +Author: Carl Smith +Date: Tue Dec 1 12:54:13 2020 -0500 + + Merge pull request #440 from raft-tech/backend/309/dynamic-roles-permissions + + Backend/309/dynamic roles permissions + +commit 7a21fe38a99aa03f0548186806f2e1ed966d7096 +Author: Miles Reiter +Date: Tue Dec 1 12:15:31 2020 -0500 + + Updated for tree structure + +commit 0201a5f2deea564506523496096a379ffa520dbd +Merge: 2d4184a19 ce2ecf5db +Author: Carl Smith +Date: Tue Dec 1 11:21:46 2020 -0500 + + Merge branch 'raft-review' into backend/309/dynamic-roles-permissions + +commit 357cae7ff588fb98d226eea092d9493edec811b6 +Merge: f7552778a cb15595d3 +Author: Carl Smith +Date: Tue Dec 1 11:11:05 2020 -0500 + + Merge branch 'main' into header-title-match + +commit f7552778ad54580b56af27222cd4aec058d2105d +Merge: 043a99aa1 b55c1b647 +Author: Carl Smith +Date: Tue Dec 1 10:50:21 2020 -0500 + + Merge branch 'raft-tdp-main' into header-title-match + +commit 5f29d1a93537c69aa63976b5147260d527b3bc1b +Author: Alex Soble +Date: Mon Nov 30 15:16:42 2020 -0600 + + Add skeleton pass at high level db and object storage docs for System Design Docs + +commit ce2ecf5db2fa7535b8d19fd959a47ea42bd022ce +Merge: ad9ce1538 043a99aa1 +Author: Carl Smith +Date: Mon Nov 30 13:55:15 2020 -0500 + + Merge pull request #435 from raft-tech/header-title-match + + Header title match + +commit 043a99aa145afa1e65a240bb63d0c4e1e81cfda8 +Merge: b1ee531ad ad9ce1538 +Author: Carl Smith +Date: Mon Nov 30 13:47:34 2020 -0500 + + Merge branch 'raft-review' into header-title-match + +commit 593cb650072d7a4b42785c55b9799de3a1d2b281 +Author: Miles Reiter +Date: Mon Nov 30 12:38:53 2020 -0500 + + Create 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 60f6d23c169e26253a8eadfa08b99b27d2322bee +Merge: 8c55b6038 cb15595d3 +Author: Miles Reiter +Date: Mon Nov 30 12:37:56 2020 -0500 + + Merge remote-tracking branch 'upstream/main' into main + +commit 2d4184a199e31da09f2d01887ed44e770b70a731 +Merge: ca3d1ec6d ad9ce1538 +Author: Carl Smith +Date: Mon Nov 30 11:33:13 2020 -0500 + + Merge branch 'raft-review' into backend/309/dynamic-roles-permissions + +commit b1ee531ad0c356a2d126ce361d0387905cf2a91e +Author: Aaron Beavers +Date: Mon Nov 30 10:02:10 2020 -0600 + + remove unneeded whitespace + +commit c5511f2ce083b3617684643563b99309577c9cae +Author: Aaron Beavers +Date: Mon Nov 30 09:57:43 2020 -0600 + + removed currently unneeded test + +commit cb15595d3ad6b7a984f083c8c81edde036315b59 +Merge: f33382349 425722095 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 30 10:51:17 2020 -0500 + + Merge pull request #91 from HHS/ars/docs-update + + Migrate documents from wiki; add docs README/Table of Contents + +commit 425722095b877e296bd6bc72495655ec149f52a2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 30 10:49:51 2020 -0500 + + Update Team-Composition.md + +commit f6cfd863a9ef8c1ea20e6255866311eb89d4c00a +Author: Alex Soble +Date: Mon Nov 30 09:30:57 2020 -0600 + + Update final internal link + +commit 69caa24fa72bfd890899c4721ef2f6b5950c0d55 +Author: Alex Soble +Date: Mon Nov 30 09:29:12 2020 -0600 + + Update Product strategy links + +commit c3a18d4591a70f87d4ab8cde2b174443f18a18cd +Author: Alex Soble +Date: Mon Nov 30 09:19:28 2020 -0600 + + Update next internal wiki link + +commit 2b6eebb549b691f3c10d47b25320b0a187fdcb49 +Author: Alex Soble +Date: Mon Nov 30 09:16:55 2020 -0600 + + Include file ext + +commit b46d4536faab06a30f3441dde5c4b82434aff9db +Author: Alex Soble +Date: Mon Nov 30 09:16:08 2020 -0600 + + Wiki link update + +commit f333823490fc1b9cccd8b543f6d5aca5445a1026 +Merge: 5fa068e08 67ed10977 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 30 09:15:46 2020 -0500 + + Merge pull request #92 from raft-tech/session-management-time-updates + + Session management time updates + +commit 8c55b6038e42ac19e6b8c473a4e844c7d741b31e +Author: Miles Reiter +Date: Mon Nov 30 01:11:54 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit ef44e2889ee8e10e20bea0cad1776f5c32a78f45 +Author: Miles Reiter +Date: Mon Nov 30 00:57:49 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit af7061d9fce024cadda8f493a05006ae40053760 +Author: Miles Reiter +Date: Mon Nov 30 00:55:01 2020 -0500 + + Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 9131f12c444999f3e6ba6bd279405fc0db3bddc5 +Author: Miles Reiter +Date: Mon Nov 30 00:53:59 2020 -0500 + + Create 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md + +commit 9f66d5353c3bccff313a4c9d2b23e156a8bf1782 +Author: Aaron Beavers +Date: Fri Nov 27 16:20:37 2020 -0600 + + Remove redundant container + +commit ca3d1ec6d05fed33804933e6ad3df5c9369bfd73 +Author: Carlton Smith +Date: Fri Nov 27 16:38:26 2020 -0500 + + fix linting + +commit c6f4acea1cb18a1c6eea8f01d50f11df060eea1b +Author: Carlton Smith +Date: Fri Nov 27 16:21:54 2020 -0500 + + clean up some code + +commit a336dd80409706a0d60fcda0617cd3a344ab9e59 +Author: Spencer Hilvitz +Date: Fri Nov 27 13:15:49 2020 -0800 + + update .env.development to correct values + +commit 002f5bed8d7aa90e8e477903623739e4be53bfd8 +Author: Aaron Beavers +Date: Fri Nov 27 15:04:18 2020 -0600 + + Remove explicit header + +commit bc110d51b661dca378782300894ac01e13e64093 +Author: Aaron Beavers +Date: Fri Nov 27 15:04:04 2020 -0600 + + Update class on template header + +commit b7ea2f1c4de0cdb82a0b4fa5f2bb2ed6f9f4884b +Author: Alex Soble +Date: Fri Nov 27 11:14:44 2020 -0600 + + README heirarchy + +commit 3a2735b16f6e58096f16a5c82b85eee078c9c595 +Author: Alex Soble +Date: Fri Nov 27 11:14:18 2020 -0600 + + Update TOC + +commit a7a40d4f09899608da6ef136b14519c7b832a0cd +Author: Alex Soble +Date: Fri Nov 27 11:12:45 2020 -0600 + + Relative links tweak + +commit fecd8a479a2fcd9e6c8bb6edab12381575b41145 +Author: Alex Soble +Date: Fri Nov 27 11:11:57 2020 -0600 + + Use relative links + +commit 19c84979f5767dcf778898532c97915793c97631 +Author: Alex Soble +Date: Fri Nov 27 11:10:20 2020 -0600 + + Add acq.md + +commit 92760de735dbc3203ce01ac7cef93f11f57aec06 +Author: Alex Soble +Date: Fri Nov 27 11:08:55 2020 -0600 + + Add Quality Expectations and Team Charter intro page + +commit 67ed109779273d8bf2a706052e6ec957bea8181e +Author: Carlton Smith +Date: Fri Nov 27 11:12:55 2020 -0500 + + add comments + +commit 0d55eb82e3cd92f2daf21e977d4c98a5548cee1e +Author: Alex Soble +Date: Fri Nov 27 09:48:42 2020 -0600 + + Add Team Composition + +commit 9c22f36db60972da5a16655c6bd1a414cce04911 +Author: Alex Soble +Date: Fri Nov 27 09:46:20 2020 -0600 + + Add Design pages + +commit 23eec63a780a2e05057905034e64ce2026427007 +Author: Alex Soble +Date: Fri Nov 27 09:44:19 2020 -0600 + + Move technical documentation files over from wiki + +commit 0dce9abe072eb7fafde60c23f2ff49fc0c4292ca +Author: Alex Soble +Date: Fri Nov 27 09:40:27 2020 -0600 + + Add user research guide + +commit 1217efb168a8427b75a4909f339c792eee6b590e +Author: Alex Soble +Date: Fri Nov 27 09:36:40 2020 -0600 + + Add product strategy description + +commit e781cbc222cd774895fb362495f9c83350423a2d +Author: Alex Soble +Date: Fri Nov 27 09:36:00 2020 -0600 + + Remaining Product Strategy pages + +commit df96f82e966e43e7b6c7f32e86b96ee1a7e24524 +Author: Alex Soble +Date: Fri Nov 27 09:32:28 2020 -0600 + + Start adding Product Strategy + +commit 68e7f0866de68a29fdc951c93013430757baa0ee +Author: Alex Soble +Date: Fri Nov 27 09:25:49 2020 -0600 + + Migrate Background pages + +commit 5659c532fca397b49af084861b95dda7890bdc7d +Author: Alex Soble +Date: Fri Nov 27 09:14:51 2020 -0600 + + Add folder summaries to TOC + +commit c49abdc5fead76d555d81571903d50c405a17c44 +Author: Alex Soble +Date: Fri Nov 27 09:10:42 2020 -0600 + + Use linkable dir names + +commit 10281f1c9c407b78b60bfbdabd0dcbf7c451e5d9 +Author: Alex Soble +Date: Fri Nov 27 09:07:34 2020 -0600 + + Back out the backslashes + +commit df23f2778232a49623028f3d3b95ffd01c17ff16 +Author: Alex Soble +Date: Fri Nov 27 09:06:34 2020 -0600 + + TOC v1 + +commit 10aa8bbc20f83b19b233eae7cb6dd117448bd218 +Author: Alex Soble +Date: Fri Nov 27 08:54:07 2020 -0600 + + Use shorter name + +commit 89aea4b336bb2afcf460cd2a5c9921fef2fc05dd +Author: Alex Soble +Date: Fri Nov 27 08:53:53 2020 -0600 + + Use shorter name + +commit 22e35a1db18b419a13e3b226bfdd39dabf36d5c6 +Author: Alex Soble +Date: Fri Nov 27 08:49:08 2020 -0600 + + Move more docs into Technical Documentation + +commit 8c8dcff2a487d129fa24a0dae459625bcbfd17a5 +Author: Alex Soble +Date: Fri Nov 27 08:48:09 2020 -0600 + + Move team charter to How we work + +commit 5187d8f4be4f3f6cd85b5ae05c2fac297f6df3dd +Author: Alex Soble +Date: Fri Nov 27 08:47:21 2020 -0600 + + Move a11y docs to Technical Documentation + +commit 86158e78a2d95bd557b30c4b378ed131127c224e +Author: Alex Soble +Date: Fri Nov 27 08:45:30 2020 -0600 + + Move acq documents to own folder + +commit ec8d59b2f1bf5e646246e027e1b18878ffa8f24e +Author: Alex Soble +Date: Fri Nov 27 08:44:14 2020 -0600 + + Move prototype docs to own folder + +commit 7757ee14b3bea514a6782dc2f4d106043111eee7 +Author: Alex Soble +Date: Fri Nov 27 08:31:50 2020 -0600 + + Add docs README + +commit fbacd1770eb211ae0bf32a5666179aabf2ea5dca +Merge: aca06b892 b55c1b647 +Author: Spencer Hilvitz +Date: Wed Nov 25 13:58:03 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into session-management-time-updates + +commit aca06b89235737036a5160ce72abf46c62efdc84 +Merge: 5e3d707fd 86512d74e +Author: Spencer Hilvitz +Date: Wed Nov 25 13:52:08 2020 -0800 + + Merge branch 'session-management-time-updates' of github.com:raft-tech/TANF-app into session-management-time-updates + +commit 5e3d707fd305253f00372b55b42b0ee50256f83e +Author: Spencer Hilvitz +Date: Wed Nov 25 13:51:56 2020 -0800 + + fixing .env.development + +commit ad9ce15387e00c05c73b3b7d8d55fef138dbfece +Merge: d241c7e38 462122996 +Author: Carl Smith +Date: Wed Nov 25 16:31:55 2020 -0500 + + Merge pull request #438 from raft-tech/update-config + + update config + +commit 462122996d81f18790b5170a16a91df2c5777e2f +Merge: fb25dd39d d241c7e38 +Author: Carl Smith +Date: Wed Nov 25 16:23:56 2020 -0500 + + Merge branch 'raft-review' into update-config + +commit 59deaa7831e5254087f1efc8593def79dd5a7b93 +Merge: f73514635 d241c7e38 +Author: Carl Smith +Date: Wed Nov 25 16:20:38 2020 -0500 + + Merge branch 'raft-review' into header-title-match + +commit d241c7e38792c62cddd8d3fd7897fa834150f583 +Merge: c2869d803 86512d74e +Author: Carl Smith +Date: Wed Nov 25 16:16:39 2020 -0500 + + Merge pull request #437 from raft-tech/session-management-time-updates + + Session management time updates + +commit 86512d74edb9113ad1193681d0a71e2260360c07 +Merge: 8bef59e06 c2869d803 +Author: Carl Smith +Date: Wed Nov 25 15:50:41 2020 -0500 + + Merge branch 'raft-review' into session-management-time-updates + +commit fb25dd39dc1c58b8e511426b63084906f12b8f24 +Author: Carlton Smith +Date: Wed Nov 25 15:41:58 2020 -0500 + + update config + +commit b55c1b64711359fa7fcc2867d0a5265ee7ff9542 +Merge: 12a33ccc2 8bef59e06 +Author: Carl Smith +Date: Wed Nov 25 14:48:39 2020 -0500 + + Merge pull request #436 from raft-tech/session-management-time-updates + + update timeouts + +commit f735146354eacd7b826936306fa897319aca613f +Author: Carlton Smith +Date: Wed Nov 25 14:44:54 2020 -0500 + + remove unneeded test + +commit 686d02da35b6cd8bc8a49c4ce74862374eb16d0a +Author: Carlton Smith +Date: Wed Nov 25 14:26:26 2020 -0500 + + fix linting + +commit 5fa068e088ac05d4394abd52e2ce458fa3673b66 +Merge: 14f4f018e 8bef59e06 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Nov 25 14:24:20 2020 -0500 + + Merge pull request #90 from raft-tech/session-management-time-updates + + Session management time updates. Looks good, thanks! + +commit 8bef59e06530bd72b6f38d2b92f2878f940b9830 +Author: Spencer Hilvitz +Date: Wed Nov 25 10:39:16 2020 -0800 + + correct debounce time + +commit 2ce3b75d21153eecf97e17989a4123413b8708ba +Author: Spencer Hilvitz +Date: Wed Nov 25 10:35:19 2020 -0800 + + update REACT_APP_LOGOUT_TIME in .env.development, change order of times + +commit c2869d803c72a923243ed6b23b308ccb03902832 +Author: Carlton Smith +Date: Wed Nov 25 13:31:47 2020 -0500 + + add raft-review to circleci + +commit ac9cf42fc30eda670d862715dcd94c6f29127fd8 +Merge: 82746043a 12a33ccc2 +Author: Carl Smith +Date: Wed Nov 25 13:25:21 2020 -0500 + + Merge branch 'raft-review' into header-title-match + +commit 11d154e046354b8ceb3691ae691f92a2bd101230 +Author: Carlton Smith +Date: Wed Nov 25 13:22:31 2020 -0500 + + update timeouts + +commit 12a33ccc20c384633068dde275a15b8dbfe927dc +Merge: 69bbad000 cfe9a6f56 +Author: Carl Smith +Date: Wed Nov 25 10:12:17 2020 -0500 + + Merge pull request #421 from raft-tech/197-session-timeout + + 197 & 278: Session Timeout + +commit 14f4f018eca645a4575677a0ad8ef7f210308e34 +Merge: 5021cd092 cfe9a6f56 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Nov 25 09:49:10 2020 -0500 + + Merge pull request #86 from raft-tech/197-session-timeout + + 197 session timeout Looks great! As noted: times have been adjusted for the purpose of review and will be updated before merge. The testing times are 6 seconds of inactivity before the modal window appears and 10 seconds before automatic logout occurs + +commit 5021cd092d02603a720c77226b4afbc63090b6a2 +Merge: 331d51027 400c1e4f2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Nov 24 14:05:07 2020 -0500 + + Merge pull request #89 from shubhi-raft/patch-5 + + Update Sprint 8 Summary.md + +commit 400c1e4f25f7ef8e93b75be3f9c69439c075b83e +Author: Shubhi Mishra +Date: Tue Nov 24 13:52:34 2020 -0500 + + Update Sprint 8 Summary.md + + adding one more agenda item. + +commit cfe9a6f560132f63fcccc67eca4f3a994e86ffdc +Merge: 8c1882c25 41196c89e +Author: Spencer Hilvitz +Date: Tue Nov 24 09:39:00 2020 -0800 + + Merge branch '197-session-timeout' of github.com:raft-tech/TANF-app into 197-session-timeout + +commit 8c1882c259fe2c24bedeced96f033b98608bb1aa +Author: Spencer Hilvitz +Date: Tue Nov 24 09:38:45 2020 -0800 + + update documentation for IdleTimer to include environment variable information and where they are defined + +commit 331d5102753ed15dbec181b9db308e1ecb60133c +Merge: ba8d03189 628d091f9 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Nov 24 11:59:42 2020 -0500 + + Merge pull request #88 from shubhi-raft/patch-4 + + Create Sprint 8 Summary.md As this is documentation, tests are not required. + +commit 628d091f9dd174f3129a53abc34833fa2f935c63 +Author: Shubhi Mishra +Date: Tue Nov 24 11:47:37 2020 -0500 + + Create Sprint 8 Summary.md + + Adding sprint 8 summary + +commit 41196c89e2183e5ce67611db12e2e276de3e1bcd +Merge: 2d289d9e8 ba8d03189 +Author: Carl Smith +Date: Fri Nov 20 16:34:17 2020 -0500 + + Merge branch 'main' into 197-session-timeout + +commit 2d289d9e8cf3d63b058b3cf65bdea6bc49184476 +Author: Spencer Hilvitz +Date: Fri Nov 20 12:42:41 2020 -0800 + + remove commented out styles in idletimer.scss + +commit 2480b4a922a14266f095405123a31ff236231809 +Author: Carlton Smith +Date: Fri Nov 20 14:55:57 2020 -0500 + + fix linting + +commit b8c68eac326bb0aff4dfb95f92debd193e4c6f61 +Author: Carlton Smith +Date: Fri Nov 20 14:41:17 2020 -0500 + + remove unneeded + +commit 83013f516cffbc4e3632acbacfe527fec899d2f1 +Author: Carlton Smith +Date: Fri Nov 20 11:30:58 2020 -0500 + + add tests + +commit 1199f9e93b7d413221b7504b39f04cde1b325164 +Author: Spencer Hilvitz +Date: Thu Nov 19 13:35:55 2020 -0800 + + remove profile icon when not logged in + +commit e4371f99efeea3729a59b10c5b25003684b30832 +Author: Spencer Hilvitz +Date: Thu Nov 19 13:13:19 2020 -0800 + + clean up header component by using classes rather than style, update header tests + +commit edc876c3ba693f95931fefd5345e78a504d347d0 +Merge: d1733228c 6a42a16f2 +Author: Spencer Hilvitz +Date: Thu Nov 19 12:44:28 2020 -0800 + + Merge branch '197-session-timeout' of github.com:raft-tech/TANF-app into 197-session-timeout + +commit d1733228c97547c36bc1108c6c02bfd1ecdda926 +Author: Spencer Hilvitz +Date: Thu Nov 19 12:44:18 2020 -0800 + + fix mobile menu not being entirely keyboard navigable by making changes in Header.jsx + +commit 6a42a16f2770b5c55cf3e817639d3512aa065b8e +Author: Carlton Smith +Date: Thu Nov 19 15:14:51 2020 -0500 + + set session timeout in settings + +commit 1b767ab985b2ff052a9464d185570ca317b85f5d +Author: Carlton Smith +Date: Thu Nov 19 14:56:23 2020 -0500 + + progress + +commit 540389b45413edbb6bca97929f8fac2162d4ff1c +Author: Spencer Hilvitz +Date: Thu Nov 19 11:30:05 2020 -0800 + + update timeout timers and add REACT_APP_LOGOUT_TIME to .env.development and .env.local as requested by Miles for testing + +commit fc8f740fe0186816836f9d0647111da2a9ecaf20 +Author: Spencer Hilvitz +Date: Thu Nov 19 11:00:25 2020 -0800 + + add documentation to IdleTimer component + +commit ed87912e41701d170a9b03641ed8f42c4e05ae14 +Author: Spencer Hilvitz +Date: Thu Nov 19 10:57:30 2020 -0800 + + remove console logs now that environment variables seem to be working + +commit 53e0bf2ef7b79001cae1842d88b153194cfa51ba +Author: Spencer Hilvitz +Date: Thu Nov 19 10:39:16 2020 -0800 + + Change `throttle` to `debounce` + + For some reason, `throttle` in `react-idle-timer` package was not working correctly when trying to dispatch an action. `Debounce` does work as expected. + +commit 4948df963bef387f2c601e8da7225bf5d719b650 +Author: Spencer Hilvitz +Date: Thu Nov 19 10:33:04 2020 -0800 + + update .env.development and .env.local with REACT_APP_TIMEOUT_TIME and REACT_APP_DEBOUNCE_TIME, use those values in IdleTimer + +commit 1cf084438b8b54cfd4dc8a097a609de10f433cee +Merge: cc64ab6ec dae30c670 +Author: Carlton Smith +Date: Thu Nov 19 13:04:14 2020 -0500 + + resolve conflicts + +commit cc64ab6ec92d0877e6ca77ce14568d81976132a9 +Merge: 32e19ec9c dc19d307c +Author: Carlton Smith +Date: Thu Nov 19 12:00:02 2020 -0500 + + resolve conflicts + +commit 32e19ec9ceab9fd97f60efb18aea2747a0bfcea3 +Author: Carlton Smith +Date: Thu Nov 19 11:45:16 2020 -0500 + + add .env.local + +commit e3b2e947a5c5d7b0ba42b6590a0454714d6c4746 +Author: Spencer Hilvitz +Date: Wed Nov 18 16:16:40 2020 -0800 + + fix tests + +commit f7ac1a11c019184fc03ac8badbf08ffa968fc080 +Author: Spencer Hilvitz +Date: Wed Nov 18 16:05:52 2020 -0800 + + focus on h1 on modal rather than entire modal + +commit b3ae916e31ba82147a699f835486835e0e5ac011 +Author: Spencer Hilvitz +Date: Wed Nov 18 15:59:57 2020 -0800 + + focus fix for modal + +commit 581aa3d453bf7d5edd69be4283f36829e2e23e04 +Author: Spencer Hilvitz +Date: Wed Nov 18 15:36:29 2020 -0800 + + update timer times for testing and update IdleTimer tests + +commit dae30c67015ddf1d4fd508be3b003d3b727c4f14 +Merge: 429eb7fdc 69bbad000 +Author: Aaron Beavers +Date: Wed Nov 18 16:13:55 2020 -0600 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit c98eb8c2ee33f2ceb46b0e1f929e9228da4bf074 +Merge: 8f2a99e4e 76251f972 +Author: Carlton Smith +Date: Wed Nov 18 16:44:53 2020 -0500 + + Merge branch 'documentation/282/session-management' of github.com:raft-tech/TANF-app into documentation/282/session-management + +  Conflicts: +  tdrs-backend/docs/session-management.md + +commit 8f2a99e4e7900e381fcc833ff10d80827df1f579 +Author: Carlton Smith +Date: Wed Nov 18 16:42:43 2020 -0500 + + Update documentation + +commit feb0fe234764b3df9e2dc372442fedbcefefbc91 +Author: snyk-bot +Date: Wed Nov 18 21:42:22 2020 +0000 + + fix: upgrade axios from 0.20.0 to 0.21.0 + + Snyk has created this PR to upgrade axios from 0.20.0 to 0.21.0. + + See this package in npm: + https://www.npmjs.com/package/axios + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit 5e2cdf5eb7c8472e76524192f81fd361c5d94fa7 +Author: Spencer Hilvitz +Date: Wed Nov 18 13:31:47 2020 -0800 + + remove unnecessary package cookie-jar and tough-cookie + +commit fbadce893fa423b4b3612115f1d6b40643f8bfe4 +Author: Spencer Hilvitz +Date: Wed Nov 18 13:20:45 2020 -0800 + + add throttle to call fetchAuth() on activity + +commit 70b8581edc1d5025c79d8759a3eb93d415d5e02a +Author: Spencer Hilvitz +Date: Wed Nov 18 12:59:55 2020 -0800 + + readd react-idle-timer + +commit e608f1df1b2b21ac613752b95a8e761a6ccf609d +Merge: 6d5d85c9d dc19d307c +Author: Carlton Smith +Date: Wed Nov 18 15:28:53 2020 -0500 + + Merge branch 'raft-tdp-main' into 197-session-timeout + + # Conflicts: + # tdrs-frontend/package.json + +commit dc19d307cd3591b5b6187461ea017454e3d68936 +Merge: 82bb38698 69bbad000 +Author: Carlton Smith +Date: Wed Nov 18 15:21:35 2020 -0500 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main + +commit 69bbad000d3a35c6cd7af423dc9665febea88c67 +Merge: 86dd5c059 292a4729b +Author: Carl Smith +Date: Wed Nov 18 15:17:55 2020 -0500 + + Merge pull request #368 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/cryptography-3.2 + + [Security] Bump cryptography from 3.1 to 3.2 in /tdrs-backend + +commit 292a4729bdbd2441f6ed9a651caca6877eca3595 +Merge: c54694fbe 86dd5c059 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Nov 18 15:10:11 2020 -0500 + + Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/cryptography-3.2 + +commit 82bb38698dcf05f1991d9e5a4db3de83f8f87d2d +Merge: 705363930 86dd5c059 +Author: Carlton Smith +Date: Wed Nov 18 14:34:50 2020 -0500 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main + +commit 70536393066f0d82e9102fcfab8df127cd1d9850 +Merge: 8d41b54c3 c54694fbe +Author: Carlton Smith +Date: Wed Nov 18 14:34:19 2020 -0500 + + Merge branch 'dependabot/pip/tdrs-backend/raft-tdp-main/cryptography-3.2' into raft-tdp-main + +commit 86dd5c0599bc63648647c8ba8f088242d5463a1e +Merge: 4695605e3 85ff00e52 +Author: Carl Smith +Date: Wed Nov 18 14:04:46 2020 -0500 + + Merge pull request #369 from raft-tech/snyk-upgrade-d97b337fc14fec32d1123704debf6178 + + [Snyk] Upgrade: @fortawesome/fontawesome-svg-core, @fortawesome/free-solid-svg-icons + +commit ba8d0318984e43758a0eb2d2ea3af47b22827e5e +Merge: 70ff056ff 7a242f13d +Author: Alex Soble +Date: Wed Nov 18 12:55:18 2020 -0600 + + Merge pull request #84 from HHS/snyk-upgrade-98d4a65e724d9447b62cc0f2cc7ee318 + + [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 + +commit 70ff056ff5a3afff4c143cf7f37463a76999a7df +Merge: ec7d14111 161a93d62 +Author: Alex Soble +Date: Wed Nov 18 12:55:06 2020 -0600 + + Merge pull request #85 from HHS/snyk-upgrade-bdfc8f3e3f263eac26b8a210cf084a00 + + [Snyk] Upgrade react-redux from 7.2.1 to 7.2.2 + +commit 85ff00e52d2727527208ce5e92ae3545e90faf5a +Merge: 6097aca17 4695605e3 +Author: Carl Smith +Date: Wed Nov 18 13:50:36 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-d97b337fc14fec32d1123704debf6178 + +commit 4695605e33acab8a8b7112bfbb7361e8a143fc02 +Merge: d17a9f90e d93457f6d +Author: Carl Smith +Date: Wed Nov 18 13:48:51 2020 -0500 + + Merge pull request #387 from raft-tech/snyk-upgrade-0dd3f97506907e102f7a849536a644bc + + [Snyk] Upgrade: react, react-dom + +commit d93457f6dbef015f530e3712f0711bfca1a711fc +Merge: 368a3d97c d17a9f90e +Author: Carl Smith +Date: Wed Nov 18 13:35:46 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-0dd3f97506907e102f7a849536a644bc + +commit d17a9f90e22d475946391589c6aa158c7165e36d +Merge: afdfeb864 825a8d4ce +Author: Carl Smith +Date: Wed Nov 18 13:33:59 2020 -0500 + + Merge pull request #410 from raft-tech/snyk-upgrade-fb357eceea25cb132f7476b235e8a56d + + [Snyk] Upgrade axios from 0.20.0 to 0.21.0 + +commit 825a8d4ce9d9c1fed81af8156d78a8ea56fb22c1 +Merge: 8cb265c77 afdfeb864 +Author: Carl Smith +Date: Wed Nov 18 13:27:04 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-fb357eceea25cb132f7476b235e8a56d + +commit afdfeb864912895a0b5cfa9bbc823a7b77adbc9e +Merge: 401353cef 3ea2811d2 +Author: Carl Smith +Date: Wed Nov 18 13:24:59 2020 -0500 + + Merge pull request #419 from raft-tech/snyk-upgrade-4eeea2be544566c1e1521c971adec7ed + + [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 + +commit 6d5d85c9d4ab5a1e4d3d3d41bc86239f1f6999d4 +Author: Spencer Hilvitz +Date: Wed Nov 18 08:44:46 2020 -0800 + + add mobile styling for idletimer buttons + +commit 3ea2811d2d0b25c0a45771ab3693e12a2b13ce1f +Merge: bfdf49312 401353cef +Author: Carl Smith +Date: Wed Nov 18 11:32:11 2020 -0500 + + Merge branch 'raft-tdp-main' into snyk-upgrade-4eeea2be544566c1e1521c971adec7ed + +commit 401353cefbda4f91c94cd9d2f4807dcc72decb31 +Merge: 8d41b54c3 4bc0afbc9 +Author: Carl Smith +Date: Wed Nov 18 11:30:22 2020 -0500 + + Merge pull request #422 from raft-tech/snyk-upgrade-be61c938bb6469298ab212ef208b7a3a + + [Snyk] Upgrade react-redux from 7.2.1 to 7.2.2 + +commit 82746043ac7052e46765dda491a0b87f0741beea +Author: Spencer Hilvitz +Date: Tue Nov 17 17:25:50 2020 -0800 + + fix PrivateRoute.test.js by updating MemoryRouter path + +commit f2accf3942eb83e0e5362d644e178ca6cff8e356 +Author: Spencer Hilvitz +Date: Tue Nov 17 15:12:10 2020 -0800 + + remove request-access-button class leftover + +commit f66f170fbbfdba9d7de9a71fc64d19514ac7ad3d +Author: Aaron Beavers +Date: Tue Nov 17 16:42:11 2020 -0600 + + Add title to /request route + +commit 48b3b0afeaf2836579510b8ba65b12575d94aab4 +Author: Aaron Beavers +Date: Tue Nov 17 16:41:46 2020 -0600 + + Add tests for title presence + +commit 72960f24344b034ebfc0953a5d888e0d24f2d0ba +Author: Aaron Beavers +Date: Tue Nov 17 16:41:04 2020 -0600 + + Add title param to private route + +commit 622f1f622d27940c1d3056b3f4bfeea1c6033950 +Author: Spencer Hilvitz +Date: Tue Nov 17 14:19:58 2020 -0800 + + fix modal content styles to match mock + +commit c94977d490f6420046308c5618fc63800c0c9dfe +Author: Spencer Hilvitz +Date: Tue Nov 17 14:17:44 2020 -0800 + + add margin-bottom to modal content + +commit 02125ab8b5c562a4191e1707e9a22cb737c7fd5c +Author: Spencer Hilvitz +Date: Tue Nov 17 14:13:36 2020 -0800 + + finalize styles + +commit 58a7e8842dd4651f01287866f12981e989bda717 +Author: Spencer Hilvitz +Date: Tue Nov 17 14:05:27 2020 -0800 + + remove unnecessary code and uncomment out timer + +commit 3ed51764d7d386455a6d692b8ea341909b3b6a9b +Merge: 2259bce1d 82849a827 +Author: Spencer Hilvitz +Date: Tue Nov 17 14:04:29 2020 -0800 + + Merge branch '197-session-timeout' of github.com:raft-tech/TANF-app into 197-session-timeout + +commit 2259bce1da8e2210eeaae8e6d012b4406dcc9d50 +Author: Spencer Hilvitz +Date: Tue Nov 17 14:04:18 2020 -0800 + + update idletimer styles, reorder buttons, update idletimer tests + +commit 4bc0afbc9e7ba034a245e8a65b19a350486bcdbb +Author: snyk-bot +Date: Tue Nov 17 21:50:32 2020 +0000 + + fix: upgrade react-redux from 7.2.1 to 7.2.2 + + Snyk has created this PR to upgrade react-redux from 7.2.1 to 7.2.2. + + See this package in npm: + https://www.npmjs.com/package/react-redux + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit 82849a82749df59bce6289db0f533aee91c1f5d9 +Author: Carlton Smith +Date: Tue Nov 17 15:19:30 2020 -0500 + + fix linting issue + +commit da4a8a53eab37d125ac96d0d992883d0e7b7efcb +Author: Carlton Smith +Date: Tue Nov 17 15:12:52 2020 -0500 + + update tests + +commit dfb9110c88e4ddcd1476c65596e7b8498ea88135 +Author: Aaron Beavers +Date: Tue Nov 17 13:49:57 2020 -0600 + + remove commented tests + +commit c63ce6c37db9b2d0fd9f141b80f7ad0c25769ff4 +Merge: e4e82d70b 7e09c69f6 +Author: Carlton Smith +Date: Tue Nov 17 14:16:02 2020 -0500 + + resolve conflict + +commit 7e09c69f6bfdf624298188ad3b82ffe988697e4b +Merge: 5f78a66b7 d444b08a1 +Author: Carlton Smith +Date: Tue Nov 17 14:15:05 2020 -0500 + + Merge branch 'backend/278/session-management' of github.com:raft-tech/TANF-app into backend/278/session-management + +commit e4e82d70bf0b8666365806556c32c1c0fe311b1f +Author: Carlton Smith +Date: Tue Nov 17 14:11:28 2020 -0500 + + update timeout + +commit 5d807152c3fb0f6a57307d76f4e7385dfac917d5 +Merge: 084522e16 5f78a66b7 +Author: Carlton Smith +Date: Tue Nov 17 14:09:28 2020 -0500 + + Merge branch 'backend/278/session-management' into 197-session-timeout + +commit 5f78a66b753c40315eb787c99e3a3ded1688df67 +Merge: be0875aef 8d41b54c3 +Author: Carlton Smith +Date: Tue Nov 17 14:08:29 2020 -0500 + + Merge branch 'raft-tdp-main' into backend/278/session-management + +commit 084522e16649b5c6fe01a950973be8eb71c4f93f +Merge: 0405dd145 be0875aef +Author: Carlton Smith +Date: Tue Nov 17 14:07:50 2020 -0500 + + Merge branch 'backend/278/session-management' into 197-session-timeout + +commit 0405dd1454223bfc2b9223ba080d7aff94d7e514 +Merge: 7273b9817 8d41b54c3 +Author: Carlton Smith +Date: Tue Nov 17 14:04:52 2020 -0500 + + Merge branch 'raft-tdp-main' into 197-session-timeout + +commit 429eb7fdcfe8d7535a0570cbddb05a741ad87897 +Author: Carlton Smith +Date: Tue Nov 17 12:32:42 2020 -0500 + + add groups + +commit 8c6599515c8189555b8467289e589b172176acc2 +Merge: 4622b95b9 8d41b54c3 +Author: Carlton Smith +Date: Tue Nov 17 11:59:11 2020 -0500 + + rebase + +commit 8d41b54c306ec1dedf09a8ead2b89b713bf0a21d +Merge: 783ad7af8 9c2dc5e8a +Author: Carl Smith +Date: Tue Nov 17 09:35:03 2020 -0500 + + Merge pull request #405 from raft-tech/231-submit-form + + 231 submit form + +commit 161a93d62e1c1f7466191e5f1478024ea552dff5 +Author: snyk-bot +Date: Tue Nov 17 05:35:50 2020 +0000 + + fix: upgrade react-redux from 7.2.1 to 7.2.2 + + Snyk has created this PR to upgrade react-redux from 7.2.1 to 7.2.2. + + See this package in npm: + + + See this project in Snyk: + https://app.snyk.io/org/alexsoble/project/a618c09d-c807-4b9b-a957-1efdcedde72e?utm_source=github&utm_medium=upgrade-pr + +commit 7a242f13d04fa6fd0c6ac8d6ab91f2603abceeab +Author: snyk-bot +Date: Tue Nov 17 05:35:45 2020 +0000 + + fix: upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 + + Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12. + + See this package in npm: + + + See this project in Snyk: + https://app.snyk.io/org/alexsoble/project/a618c09d-c807-4b9b-a957-1efdcedde72e?utm_source=github&utm_medium=upgrade-pr + +commit 7273b9817dc7384ece9f80746fc28ac6cd06b7d3 +Author: Spencer Hilvitz +Date: Mon Nov 16 19:02:14 2020 -0800 + + update idletimer tests and get secondary modal timer working + +commit 83fb4a837edd4b35dc6b19c8c12ed2c5df8c5acc +Author: Spencer Hilvitz +Date: Mon Nov 16 14:55:16 2020 -0800 + + change axios post to dispatch fetchAuth, update tests for idletimer + +commit ca07033eb720da693a56a8937e22cd134c4d0f7a +Merge: bb319c367 9c2dc5e8a +Author: Spencer Hilvitz +Date: Mon Nov 16 14:35:37 2020 -0800 + + Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 197-session-timeout + +commit bb319c3672a1ebf72fcde9b91a95dac930743186 +Merge: 8d4b49767 783ad7af8 +Author: Spencer Hilvitz +Date: Mon Nov 16 14:35:30 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 197-session-timeout + +commit 8d4b49767631a212a68e61c54a3c1c5eac459115 +Author: Spencer Hilvitz +Date: Mon Nov 16 14:35:23 2020 -0800 + + midst + +commit bfdf4931225d6d02722b5f6516a4d619fbf4576a +Author: snyk-bot +Date: Mon Nov 16 22:22:59 2020 +0000 + + fix: upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 + + Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12. + + See this package in npm: + + + See this project in Snyk: + https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr + +commit 9c2dc5e8a9bbc680f0c673890bc09e8a7b7dfb7a +Merge: ae0ff0132 783ad7af8 +Author: Carl Smith +Date: Mon Nov 16 16:49:03 2020 -0500 + + Merge branch 'raft-tdp-main' into 231-submit-form + +commit ec7d14111b7d32c327018e6dd95caee18fa5e6a8 +Merge: e8019ecab ae0ff0132 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 16 16:44:25 2020 -0500 + + Merge pull request #81 from raft-tech/231-submit-form + + 231 submit form + Looks great! Thanks, all! + +commit 4622b95b955a1bc256cd55f0cd6201b10f70bccb +Author: Aaron Beavers +Date: Mon Nov 16 12:28:52 2020 -0600 + + Fix test + +commit ae0ff0132ec12ce576c2b580181b093e2496df0c +Author: Carlton Smith +Date: Mon Nov 16 10:53:25 2020 -0500 + + Revert "remove unneeded" + + This reverts commit 4ff05e8615d62caf96d83b6d8eafad72c121f8c2. + +commit e8019ecabda9daf7f109a6b9802db477fe3f409a +Merge: 71c1e29c7 4ff204c6e +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 16 09:54:57 2020 -0500 + + Merge pull request #82 from shubhi-raft/patch-3 + + Create Sprint 7 Summary.md + +commit 43fcfdb84eecca82a187e88aa430b233097444ab +Author: Spencer Hilvitz +Date: Fri Nov 13 14:41:36 2020 -0800 + + remove alert role from formgroup + +commit 8cb265c771a66afd4f0431fce0ef0edfadca4303 +Author: snyk-bot +Date: Fri Nov 13 21:44:39 2020 +0000 + + fix: upgrade axios from 0.20.0 to 0.21.0 + + Snyk has created this PR to upgrade axios from 0.20.0 to 0.21.0. + + See this package in npm: + https://www.npmjs.com/package/axios + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit 4ff05e8615d62caf96d83b6d8eafad72c121f8c2 +Author: Carlton Smith +Date: Fri Nov 13 14:59:50 2020 -0500 + + remove unneeded + +commit ed892da683e1fbf2f0c845bb715651258da95702 +Author: Carlton Smith +Date: Fri Nov 13 14:53:51 2020 -0500 + + remove unneeded + +commit 66167ee194d43d112e69e9d8ff63e23b1e19a425 +Merge: 058a3d9eb 068955e55 +Author: Aaron Beavers +Date: Fri Nov 13 09:24:18 2020 -0600 + + Merge remote-tracking branch 'origin/231-submit-form' into 231-submit-form + +commit 058a3d9eb35fc3dd34eb2e42b27fc1c274294136 +Author: Aaron Beavers +Date: Fri Nov 13 09:23:24 2020 -0600 + + export default + +commit 068955e55154ad00afdc250dea8bdf0d8158a634 +Author: Carlton Smith +Date: Fri Nov 13 10:19:51 2020 -0500 + + update docstrings + +commit 71587065a49a04249aac6e016b3a280fa20bdca7 +Author: Aaron Beavers +Date: Thu Nov 12 15:35:18 2020 -0600 + + Refactored axios instance declaration. + +commit 783ad7af8bd57f16a34951ceb374c11c7d035b8e +Merge: 3737cca1c 703a95c1d +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Nov 12 16:32:34 2020 -0500 + + Merge pull request #408 from raft-tech/shubhi-raft-patch-6 + + Update issue templates + +commit 7add6911244645b3443908fa80da27872178dd71 +Merge: 97ba1bfa6 4306d4677 +Author: Spencer Hilvitz +Date: Thu Nov 12 12:35:45 2020 -0800 + + Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 231-submit-form + +commit 97ba1bfa6957886bc2f7356927104eedad4bb53c +Author: Spencer Hilvitz +Date: Thu Nov 12 12:35:36 2020 -0800 + + Add documentation to FormGroup + +commit 703a95c1dde0f3e6698a508af4ebf4d585b3081c +Author: Shubhi Mishra +Date: Thu Nov 12 15:06:54 2020 -0500 + + Update issue templates + + - updated AC to include user flow updates + - removed Christine Bath from Definition of Done + +commit 4ff204c6e12b275f91821b01defd363c2cc872be +Author: Shubhi Mishra +Date: Thu Nov 12 13:35:30 2020 -0500 + + Update Sprint 7 Summary.md + + Updated PR to include requested changes. + +commit 0b83af786de9b10b2641da21eee6217e0b9a238c +Author: Shubhi Mishra +Date: Wed Nov 11 18:13:52 2020 -0500 + + Create Sprint 7 Summary.md + +commit d444b08a16a82baaa825998cdfc5632757d86a08 +Author: Aaron Beavers +Date: Tue Nov 10 12:51:44 2020 -0600 + + Add test for auth update middleware + +commit 3d5ffb440bdc9b1410ce6de81ff4f1333dcbfec2 +Author: Aaron Beavers +Date: Tue Nov 10 12:50:57 2020 -0600 + + Move time logic inside middleware + +commit 4306d4677080f3c74c8637256d0618256c88695b +Author: Aaron Beavers +Date: Mon Nov 9 16:20:50 2020 -0600 + + remove commented code + +commit fafa313d96862c51cc8b48273c0c9fbf56f196ac +Author: Spencer Hilvitz +Date: Mon Nov 9 13:57:35 2020 -0800 + + change federal government check from id to name + +commit 849d7af33b8d7474d49a1118543cd0c0bcbb20d0 +Author: Spencer Hilvitz +Date: Mon Nov 9 12:42:34 2020 -0800 + + remove unused code lines from Aaron + +commit b80ac89740481e9bb89bda30c4b13b2b0b69a8e5 +Merge: 59f72597c 987da4783 +Author: Carl Smith +Date: Mon Nov 9 15:20:55 2020 -0500 + + Merge pull request #401 from raft-tech/csrf-hack + + Csrf hack + +commit 987da478336855bd305b44a2488bf77e91a49369 +Author: Aaron Beavers +Date: Mon Nov 9 14:10:59 2020 -0600 + + fix lint + + Rename import + + + rename import + + + rename + + + remove system environmet + +commit 64f60684b253cffe94f18db5950509678c45b3cc +Author: Aaron Beavers +Date: Mon Nov 9 08:55:39 2020 -0600 + + Change how we get csrf token + +commit 4e7c430f1624df1cc2cbe66133f0279269f3525b +Author: Aaron Beavers +Date: Mon Nov 9 08:32:56 2020 -0600 + + Cleaned lint + +commit cbe3ab6f32f6abe2aaa373f44a4ea9c3f38bb4e5 +Author: Aaron Beavers +Date: Mon Nov 9 08:26:02 2020 -0600 + + All tests pass + +commit e85f72fae919ac6f44aeeb338ecf8d5f18a46464 +Author: Aaron Beavers +Date: Fri Nov 6 13:21:51 2020 -0600 + + update + + + Only use cookie jar if not testing + +commit 567e57022592c68e5203b913f7e2e178c5c6bf7d +Author: Aaron Beavers +Date: Fri Nov 6 12:51:11 2020 -0600 + + Allow X-CSRFToken + + + Fix header typo + +commit 4931a1150824cd147fa76802bc83377011e5d2ad +Author: Aaron Beavers +Date: Fri Nov 6 12:34:58 2020 -0600 + + Attempting to fix + + + hack + +commit dd9094f65f4a2fbdc9d2c56ca65d68410afbbc18 +Merge: be0875aef 3737cca1c +Author: Aaron Beavers +Date: Mon Nov 9 12:08:24 2020 -0600 + + Merge remote-tracking branch 'origin/raft-tdp-main' into backend/278/session-management + +commit 71c1e29c79c4c5ae6836dedcbf762ed13a51de5c +Merge: 169a54fcf f5eb85e88 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 9 11:58:16 2020 -0500 + + Merge pull request #80 from reitermb/main + + #321 Migrate items from wiki to Code<> doc + Tests are not required as this is documentation only. + +commit 3f5f40583673d1ee1479c292fd4eb3a27825201c +Author: Carlton Smith +Date: Mon Nov 9 11:37:10 2020 -0500 + + test core model + +commit f5eb85e8877679426aa40e5555a43e8f1b465959 +Author: Miles Reiter +Date: Mon Nov 9 11:19:12 2020 -0500 + + Update 2020, Spring - Understanding the local experience.md + + Adds angle bracket link fix + +commit 00e8b94c66b4750a03cf21a1854ad0ea48125d77 +Author: Miles Reiter +Date: Mon Nov 9 11:15:02 2020 -0500 + + Update 2020, Summer - Understanding the OFA Experience.md + +commit 50ac0bf5052fbf74c3194e0e484a111dd9400848 +Author: Miles Reiter +Date: Mon Nov 9 11:13:44 2020 -0500 + + Update Open research questions.md + + Adds angle bracket link fix + +commit a3ef74d52ace2daf6f84e510908df6e8b9eb1e41 +Author: Miles Reiter +Date: Mon Nov 9 11:02:31 2020 -0500 + + Update Overview of Research Activities.md + + Adds angle bracket link fixes for Overview of Research Activities + +commit adce58b32f39827255c25af858649be304c75bae +Author: Miles Reiter +Date: Mon Nov 9 10:47:24 2020 -0500 + + Update 2020, Spring - Understanding the local experience.md + + Attempts fix of markdown links with spaces in them + +commit a0e1374bc79de973811824c8faa7d677c728a18f +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 9 10:26:59 2020 -0500 + + Update Open research questions.md + +commit bdbc736e91727db8d35062c2a4b7bf786a7c9cc3 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Nov 9 10:21:15 2020 -0500 + + Update Project Glossary.md + + updated 477 link + +commit 59f72597c704d3f887521eb74414fe5ccac71f0c +Author: Spencer Hilvitz +Date: Fri Nov 6 11:59:30 2020 -0800 + + add request-access-button class to make sign out button correct color + +commit b121da66a342d59b15c886cd5f5414206737cca0 +Author: Spencer Hilvitz +Date: Fri Nov 6 11:51:03 2020 -0800 + + add sign out function to request and add tests + +commit 147cb687346eae87ef0cd8aad83b0e983d9d4029 +Author: Carlton Smith +Date: Fri Nov 6 11:22:12 2020 -0500 + + update tests + +commit 2c4b32b2e8f3737b8c705dcbaa225bff8605e7d0 +Author: Spencer Hilvitz +Date: Fri Nov 6 07:45:22 2020 -0800 + + remove unused code in EditProfile.test.js + +commit 169a54fcf595d8311a9ec0f6748ab47642e6ad8d +Merge: bbcdcd17a 580ad4c23 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Nov 6 10:41:07 2020 -0500 + + Merge pull request #79 from HHS/ars/document-erd + + Add database model to support compliance process + +commit dec3e9e9cac4750e0e6e817993fc262807e92156 +Author: miles-reiter +Date: Thu Nov 5 20:13:33 2020 -0500 + + Migrates Wiki & Teams Items to Code Docs + + * Adds folders for Background, How we work, and User Research + * Changes name of Research Activities to Research Activities Overview + * Adds wiki content marked to be moved to releated folders + * Adds subfolder for 2020 Fall Concept Prototypes + * Adds 2020 Summer OFA research overview + +commit fa3ad0f53fd7c7f4601ed130c6549e6b859f3b3d +Author: Spencer Hilvitz +Date: Thu Nov 5 14:18:52 2020 -0800 + + will set alert if api call for requestAccess fails + +commit 6de322fc25e02877ea32536ae2b5fcb44ac7b556 +Merge: d374b84a5 3737cca1c +Author: Carlton Smith +Date: Thu Nov 5 15:59:39 2020 -0500 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit 339396d9c00ed9d5480de1b427282e74017340f3 +Author: Spencer Hilvitz +Date: Thu Nov 5 12:43:50 2020 -0800 + + change test wording + +commit 55aa54da58713321bbf41a9cee0d0c94eb5812b0 +Author: Spencer Hilvitz +Date: Thu Nov 5 11:15:13 2020 -0800 + + change settimeout to 0 in editprofile + +commit 12080c06840b154ec6705845151418a141f3ddeb +Author: miles-reiter +Date: Thu Nov 5 13:51:34 2020 -0500 + + Migrate Wiki Sections + +commit 07c8c0aad02f7d18b7ab99c9ce7f1e43c8ae6ccf +Merge: 0d3a7bcec 3737cca1c +Author: Carlton Smith +Date: Thu Nov 5 13:31:24 2020 -0500 + + rebase + +commit 4625a7701a38dc92e872ae780741dada0f57b808 +Merge: 5e9a559db 3737cca1c +Author: Spencer Hilvitz +Date: Thu Nov 5 10:21:51 2020 -0800 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 231-submit-form + +commit 5e9a559dbcde0a7211cb8544aee1081350044ab6 +Author: Spencer Hilvitz +Date: Thu Nov 5 10:18:02 2020 -0800 + + finish renaming unassigned to request, update app tests + +commit 4d0dbf17768f07b62357b7edc8b8281ee5005df6 +Author: Spencer Hilvitz +Date: Thu Nov 5 10:15:57 2020 -0800 + + rename unassigned with request, update routes and tests + +commit e40ff9df39d454c9577931a3e4d679d51b341b12 +Merge: 4fa3eaf1b 1ada22a83 +Author: Spencer Hilvitz +Date: Thu Nov 5 09:26:59 2020 -0800 + + Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 231-submit-form + +commit 3737cca1c0269debd582e2468d18578ee6afb342 +Merge: cc4687d94 cd937c834 +Author: Carl Smith +Date: Thu Nov 5 12:15:02 2020 -0500 + + Merge pull request #389 from raft-tech/230-form-validation + + 230 form validation + +commit cd937c8340f1cd1ce39dcf11fd42b7e80625f87d +Merge: bad8801ce cc4687d94 +Author: Carl Smith +Date: Thu Nov 5 12:07:02 2020 -0500 + + Merge branch 'raft-tdp-main' into 230-form-validation + +commit bbcdcd17a63ccb840bd95f725b62813158c11168 +Merge: 96a38baf9 70b9e5a5b +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Nov 5 11:01:27 2020 -0500 + + Merge pull request #76 from HHS/ars/add-qasp-checklist-to-docs + + (WIP) Add QASP operational checklist to docs folder + +commit 1ada22a836ee39bb52286633919cc119cc5fd8e8 +Merge: 8f198d85d c4ef50975 +Author: Carl Smith +Date: Thu Nov 5 10:14:20 2020 -0500 + + Merge pull request #381 from raft-tech/231-auth-check-stt + + 231 auth check stt + +commit d374b84a54ce5185107d48bd4652cc6f362473ea +Author: Carlton Smith +Date: Thu Nov 5 09:36:52 2020 -0500 + + content type + +commit cc4687d94a5bec56eb0d78f0065c777cefb05e43 +Merge: b3adb92fb 7faf22319 +Author: Carl Smith +Date: Wed Nov 4 16:44:30 2020 -0500 + + Merge pull request #385 from raft-tech/shubhi-raft-patch-4 + + Update pull_request_template.md + +commit 4fa3eaf1b1820b77ba299e92243d8ac3394999df +Author: Spencer Hilvitz +Date: Wed Nov 4 13:41:39 2020 -0800 + + fix skiplinks not working on spacebar press + +commit 96a38baf9306ce37994256e3ce8467b5efea25d3 +Merge: fdd150a85 bad8801ce +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Nov 4 16:38:12 2020 -0500 + + Merge pull request #72 from raft-tech/230-form-validation + + 230 form validation - I see the latest copy, and it has passed a11y reviews and ACs and QASP look good. + +commit 368a3d97c1bd2f7c2b444be87b4f566c24efff2c +Author: snyk-bot +Date: Wed Nov 4 21:35:57 2020 +0000 + + fix: upgrade multiple dependencies with Snyk + + Snyk has created this PR to upgrade: + - react from 16.13.1 to 16.14.0. + See this package in npm: https://www.npmjs.com/package/react + - react-dom from 16.13.1 to 16.14.0. + See this package in npm: https://www.npmjs.com/package/react-dom + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit 0d3a7bcec203278a007f30842d5624c3f0c1d2ab +Merge: 036f51683 b3adb92fb +Author: Aaron Beavers +Date: Wed Nov 4 15:33:24 2020 -0600 + + Merge branch 'raft-tdp-main' into header-title-match + +commit 036f51683f0d13f62b1650c8ff0044302e3daf9d +Author: Aaron Beavers +Date: Wed Nov 4 15:32:14 2020 -0600 + + Correct spacing + +commit a2e771e60acbbff89b9ef448772b3e22aee160f9 +Author: Aaron Beavers +Date: Wed Nov 4 14:54:56 2020 -0600 + + Commented test logic that was moved to private template + +commit 70b9e5a5bf1fbed8325a62893408dd93237d9df9 +Author: Alex Soble +Date: Wed Nov 4 14:51:18 2020 -0600 + + Tweaks to checklist + +commit b688886a2d7f3fbc28fbea15658ca89ef63234f5 +Author: Alex Soble +Date: Wed Nov 4 14:45:42 2020 -0600 + + Commit QASP operational checklist + +commit b3adb92fb894697ac1e0b064e180c94ea778e731 +Merge: 88a5ed9bf f8093e474 +Author: Carl Smith +Date: Wed Nov 4 15:44:40 2020 -0500 + + Merge pull request #386 from raft-tech/shubhi-raft-patch-5 + + Update pull_request_template.md + +commit 2ae3457945c5608c9fda53b92d9c86e5ed47b73d +Author: Aaron Beavers +Date: Wed Nov 4 14:43:28 2020 -0600 + + Remove a few lint warnings + +commit 5865603986ab968bbc58ebe2c1f2814b54d519c9 +Author: Aaron Beavers +Date: Wed Nov 4 14:41:10 2020 -0600 + + Tests passing + +commit f8093e474af39bdeb20749cebb7c436ae373882d +Author: Shubhi Mishra +Date: Wed Nov 4 15:37:00 2020 -0500 + + Update pull_request_template.md + +commit 7faf223199fcff51f5c8c05a8186fb6c65489e7e +Author: Shubhi Mishra +Date: Wed Nov 4 15:34:15 2020 -0500 + + Update pull_request_template.md + + Updating PR template + +commit 580ad4c2315b563250fa3c3a2cfc726bdc331a14 +Author: Alex Soble +Date: Wed Nov 4 14:26:24 2020 -0600 + + Commit ERD to git history + +commit 50aa05f2b9b03d22691a2d63ad0258bfba28698d +Author: Aaron Beavers +Date: Wed Nov 4 13:37:42 2020 -0600 + + Add title and template to private route + +commit acebf2e58e9fff28e223ae74d37eee73ea6dfa0f +Author: Aaron Beavers +Date: Wed Nov 4 13:16:17 2020 -0600 + + Introduce private template to private route component + +commit 629b809468db0a94cec0cd9bb395a681b009febf +Author: Aaron Beavers +Date: Wed Nov 4 13:16:00 2020 -0600 + + Use header from private route update + +commit 094a4b155b9aa346789a681d156ac3db093c4daf +Author: Aaron Beavers +Date: Wed Nov 4 13:15:26 2020 -0600 + + Move effect to private template + +commit bad8801ce477e60933be332bff38d5e77da9ed50 +Author: Spencer Hilvitz +Date: Wed Nov 4 10:09:43 2020 -0800 + + fix label for combo box + +commit c4ef50975cb37e2280de3a18ea572ad98382e083 +Author: Aaron Beavers +Date: Wed Nov 4 11:51:26 2020 -0600 + + Rename SetProfileSerializer + +commit c323659c3cebe828c635faa734b175ac21ad95d7 +Author: Carlton Smith +Date: Wed Nov 4 12:14:02 2020 -0500 + + update serializer + +commit 405ef3dcf9ccd4994f68251d1c30a6079716434c +Author: Spencer Hilvitz +Date: Wed Nov 4 08:27:28 2020 -0800 + + works with setTimeout at 0 + +commit cd9ba2f466386a33bf1614a2f1a9f52dfe6b2c88 +Merge: 0d71b3288 8f198d85d +Author: Aaron Beavers +Date: Wed Nov 4 09:48:07 2020 -0600 + + Merge branch '231-submit-form' into header-title-match + +commit f227f4a5a02fdc97a4b2d3ecbe960007a89863c6 +Author: Carlton Smith +Date: Mon Nov 2 16:56:37 2020 -0500 + + adding endpoint to pass object + +commit 0d71b328883224019d2613fb29094ffb91a4ce23 +Author: Aaron Beavers +Date: Mon Oct 26 14:51:07 2020 -0500 + + Revert "Begin introducing login.gov cypress tests" + + This reverts commit 551b1d5486cbd82c577bbfb5b0cbf5b507c75046. + +commit 3a9a27bf4b0fbaa6503043501aee8ef3970b771b +Author: Aaron Beavers +Date: Mon Nov 2 15:09:52 2020 -0600 + + remove helmet from edit profile page component + +commit 6a8ed556f2056b07524eb814390a941fff00d2db +Author: Aaron Beavers +Date: Mon Nov 2 14:44:17 2020 -0600 + + Clear up lint errors + +commit 8f198d85d7d6e86a78a1558139d9d19364bb143b +Author: Spencer Hilvitz +Date: Mon Nov 2 11:31:36 2020 -0800 + + fix focus when errors occur on form submission + +commit 21914f79d119db75b2d23f82beea13a0d9617d19 +Merge: 20e52d347 43e29d3c7 +Author: Spencer Hilvitz +Date: Mon Nov 2 10:40:24 2020 -0800 + + Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 231-submit-form + +commit 65a671021287c0f5668ecf5f35bb909a4de6d75d +Merge: 4bc4192b9 88a5ed9bf +Author: Aaron Beavers +Date: Mon Nov 2 10:40:57 2020 -0600 + + Merge branch 'raft-tdp-main' into header-title-match + +commit 0726c1f98aef44d7938c3d4153d9d2ac245c822b +Author: Aaron Beavers +Date: Mon Nov 2 10:40:02 2020 -0600 + + Add period to doc string + +commit 455fe5b624ba0fe5633d77d062401ca49fa58bcf +Author: Aaron Beavers +Date: Mon Nov 2 10:20:39 2020 -0600 + + add doc string to + +commit 20e52d347283c915750281b3bdb3d83b36d14b28 +Author: Spencer Hilvitz +Date: Sun Nov 1 23:54:55 2020 -0800 + + fix tests + +commit 99c7fe1d7839a77085a0473b792468f8fa0ef674 +Author: Spencer Hilvitz +Date: Sun Nov 1 23:42:32 2020 -0800 + + add error div for total number of errors in forms, add ref, remove alerts from individual form elements, add settimeout to focus after element has been made visible + +commit da4ae946d1f5ac9c4033777ebfec039531342792 +Author: Aaron Beavers +Date: Fri Oct 30 14:56:36 2020 -0500 + + Apply black formatting + +commit 5f873c185a3d1d101faafcd03fb1d0d1f9777ace +Author: Aaron Beavers +Date: Fri Oct 30 14:42:45 2020 -0500 + + Update tests + +commit 4f2c347061b7922493ccbdc1010b9cc67b197fb8 +Author: Aaron Beavers +Date: Fri Oct 30 14:00:13 2020 -0500 + + auth_check match set_profile + +commit fdd150a851612e9ac22b0c6eec8d7a4223fdd9b5 +Merge: ef9f8ede5 26b5ac771 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Oct 30 11:14:17 2020 -0400 + + Merge pull request #73 from HHS/ars/update-design-research-issue-templates + + Offboard @cmajel from design/research review flow 😢 + +commit 43e29d3c70e907e608fd991725c4441414792c1e +Author: Spencer Hilvitz +Date: Thu Oct 29 14:52:45 2020 -0700 + + fix unassigned tests after card removal + +commit d856179e8e5321dbc5f71459b8e7fd2e7f2436c4 +Merge: 6fea305f5 c0bd7def0 +Author: Spencer Hilvitz +Date: Thu Oct 29 14:44:11 2020 -0700 + + changes from 230 + +commit c0bd7def023b2f9c8041959f8dbd817b8842edea +Author: Spencer Hilvitz +Date: Thu Oct 29 14:01:04 2020 -0700 + + fix case + +commit 22e7a3017a6cf04c9f97499d1ce8ba9e3cd045af +Author: Spencer Hilvitz +Date: Thu Oct 29 13:40:27 2020 -0700 + + fix snake-case label + +commit 6fea305f5e1b986670f24e4363009b7fd1b9bf97 +Author: Spencer Hilvitz +Date: Thu Oct 29 13:33:14 2020 -0700 + + add label prop to formgroup + +commit 726a4e2619c4b47132f56a2bc50625966f857c8b +Author: Spencer Hilvitz +Date: Thu Oct 29 12:37:30 2020 -0700 + + make ids dynamic + +commit 9ebd977b27e9308565283c5ba409aeec59c70448 +Author: Spencer Hilvitz +Date: Thu Oct 29 12:36:08 2020 -0700 + + make ids dynamic + +commit 17b8d94a3fac82c3ce7cd199b2c9ce2c612c0429 +Author: Spencer Hilvitz +Date: Thu Oct 29 10:33:24 2020 -0700 + + remove styles and add utility classes + +commit ef918b1cd7a07c61fd7ad6f7e8bc1c29a56d2a1a +Author: Spencer Hilvitz +Date: Thu Oct 29 10:00:24 2020 -0700 + + update Request Access form language + +commit 4a920b8355fafb1d16a5f17c499384f85957ba01 +Merge: a6076a38a 88a5ed9bf +Author: Spencer Hilvitz +Date: Thu Oct 29 09:50:01 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 231-submit-form + +commit a6076a38aac08109de76d9c286ab0a659901f364 +Author: Spencer Hilvitz +Date: Thu Oct 29 09:49:34 2020 -0700 + + add tests to actions/requestAccess, reducers/requestAccess, editprofile, update mockstore in routes.test with requestAccess module, add requestAccess reducer and action + +commit 88a5ed9bff0c2d74ffa594a2d2cc7cdd6de622f1 +Merge: 64f7f22fd 8c28c3ee8 +Author: Carl Smith +Date: Thu Oct 29 12:36:42 2020 -0400 + + Merge pull request #360 from raft-tech/infrastructure/remove-dlc-circleci + + Infrastructure: Remove Docker Layer Caching From CirlceCI + +commit 8c28c3ee86bd5504ac69319353e28214e791db97 +Merge: 2c648ac72 64f7f22fd +Author: Carl Smith +Date: Thu Oct 29 12:10:23 2020 -0400 + + Merge branch 'raft-tdp-main' into infrastructure/remove-dlc-circleci + +commit be0875aef6422fbf631a32a710014d042a5b0743 +Merge: 612f75a77 64f7f22fd +Author: Carlton Smith +Date: Thu Oct 29 11:52:59 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/278/session-management + +commit ef9f8ede57fd0e3a95aa74005b46e534103ee245 +Merge: 1b9bc581a d7beab144 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Oct 28 14:15:35 2020 -0400 + + Merge pull request #71 from shubhi-raft/patch-2 + + Create Sprint 6 Summary.md Since this is documentation only, tests are not relevant + +commit 4bc4192b905cd0561d7fe91606b585eb4899dbc2 +Author: Aaron Beavers +Date: Wed Oct 28 12:25:40 2020 -0500 + + Remove helmet dependency + +commit 724a2b5f0a59067a97aab7dd8608a4e944c55f59 +Author: Aaron Beavers +Date: Wed Oct 28 12:24:48 2020 -0500 + + Use effect to alter document title + +commit 579a45cb8a690ec2114e436ad494f7b185810055 +Merge: 551b1d548 64f7f22fd +Author: Aaron Beavers +Date: Wed Oct 28 12:18:53 2020 -0500 + + Merge remote-tracking branch 'origin/raft-tdp-main' into header-title-match + +commit 26b5ac7717741ce776cec180d65c6184197d8680 +Author: Alex Soble +Date: Wed Oct 28 09:56:32 2020 -0500 + + Offboard @cmajel from design/research review flow :cry: + +commit d7beab14448c2045558ab8a5989ae8f83211a2b2 +Author: Shubhi Mishra +Date: Wed Oct 28 09:51:17 2020 -0400 + + Update Sprint 6 Summary.md + + Made updated based on Lauren's comment. + + >As a user, I want to know I am logging into a demo site was delivered in a previous sprint (I think Sprint 4) + +commit 3e6ed16da7c92c3cf467147f91e5d4a5cf866df0 +Author: Spencer Hilvitz +Date: Tue Oct 27 18:50:45 2020 -0700 + + middle of working on tests + +commit 6097aca17e5fe1ca913204a7447d94d9efe560af +Author: snyk-bot +Date: Tue Oct 27 21:33:15 2020 +0000 + + fix: upgrade multiple dependencies with Snyk + + Snyk has created this PR to upgrade: + - @fortawesome/fontawesome-svg-core from 1.2.30 to 1.2.32. + See this package in npm: https://www.npmjs.com/package/@fortawesome/fontawesome-svg-core + - @fortawesome/free-solid-svg-icons from 5.14.0 to 5.15.1. + See this package in npm: https://www.npmjs.com/package/@fortawesome/free-solid-svg-icons + + See this project in Snyk: + https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr + +commit c54694fbe48b5d9e07110d0e7bc989ec925ea1a5 +Author: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> +Date: Tue Oct 27 20:51:55 2020 +0000 + + [Security] Bump cryptography from 3.1 to 3.2 in /tdrs-backend + + Bumps [cryptography](https://github.com/pyca/cryptography) from 3.1 to 3.2. **This update includes a security fix.** + - [Release notes](https://github.com/pyca/cryptography/releases) + - [Changelog](https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst) + - [Commits](https://github.com/pyca/cryptography/compare/3.1...3.2) + + Signed-off-by: dependabot-preview[bot] + +commit d131970a277da8758e240dba2edcfe23dabb699d +Merge: 3cef723e7 64f7f22fd +Author: Miles Reiter +Date: Tue Oct 27 16:28:00 2020 -0400 + + Merge branch 'raft-tdp-main' into migrate-wiki + +commit c58af7ef1d0da54e44c68f592f6adb7be89c9549 +Merge: 252cf67f4 52360b462 +Author: Spencer Hilvitz +Date: Tue Oct 27 13:21:59 2020 -0700 + + Merge branch '230-form-validation' into 231-submit-form + +commit 612f75a77165cf0c1263a8fe36114e300c58b215 +Author: Carlton Smith +Date: Tue Oct 27 15:31:34 2020 -0400 + + update token + +commit 68ce8cb119ccbb5a9345c76c31f651ffbf7cefae +Author: Shubhi Mishra +Date: Tue Oct 27 14:45:51 2020 -0400 + + Update Sprint 6 Summary.md + +commit 6af65ab8483544023e3e63f27174d13a1f3be27e +Merge: ddc5eb557 64f7f22fd +Author: Carl Smith +Date: Tue Oct 27 14:33:51 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit 64f7f22fdb00948b57e15c42b690e82aa7bee751 +Merge: e7f7eb491 52360b462 +Author: Carl Smith +Date: Tue Oct 27 14:33:16 2020 -0400 + + Merge pull request #348 from raft-tech/230-form-validation + + Frontend/230/Form Validation + +commit 252cf67f4f765e9396337347d6fae4d5bdb1bd1b +Author: Spencer Hilvitz +Date: Tue Oct 27 10:54:24 2020 -0700 + + add unassigned component, add route and add functionality to editprofile + +commit 2076cef7975997476ad54492494c05ffafc37eb4 +Author: Shubhi Mishra +Date: Tue Oct 27 12:41:26 2020 -0400 + + Create Sprint 6 Summary.md + + Sprint 6 summary + +commit 1b9bc581ad4bd7c098507913e473114fe1240934 +Merge: 04f43e4c9 16f4f3383 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Oct 27 10:29:11 2020 -0400 + + Merge pull request #62 from HHS/ars/18f-a11y-approach + + Add "How ACF and 18F will evaluate accessibility" documentation + Note: front end tests related to docker layer caching, which should be fixed with previous PR + +commit 04f43e4c9fab30ee0e38cb2b1040b892294b2f18 +Merge: ebea95e25 15847a7f5 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Oct 27 10:26:16 2020 -0400 + + Merge pull request #69 from HHS/ars/disable-docker-layer-caching + + Disable Docker Layer Caching -- This is good to merge! + +commit 551b1d5486cbd82c577bbfb5b0cbf5b507c75046 +Author: Aaron Beavers +Date: Mon Oct 26 14:51:07 2020 -0500 + + Begin introducing login.gov cypress tests + +commit ebea95e25f7e0250c46f1d7f6777efdd84f8152b +Merge: 126a8f8df e7f7eb491 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Oct 23 19:42:12 2020 -0400 + + Merge pull request #60 from raft-tech/raft-tdp-main + + Sprint 6 Issue #229 PR Review Looks good! + +commit 394c7e3d8e1ef34f11cf17517ac507a0ea79f4a9 +Author: Spencer Hilvitz +Date: Fri Oct 23 15:27:18 2020 -0700 + + remove unnecessary useSelector import + +commit 4ee034db35598ac6182ce25305ac2bbace5f716d +Author: Spencer Hilvitz +Date: Fri Oct 23 15:26:39 2020 -0700 + + rename all stts to sttList + +commit aa76d4d423d37a032cf800c61cca36692d0854aa +Author: Spencer Hilvitz +Date: Fri Oct 23 15:08:39 2020 -0700 + + add axios defaults, add setUser action, update auth reducer to handle setUser + +commit 3cef723e7fd1e851f40d3a47b18879a5dae12e56 +Author: miles-reiter +Date: Fri Oct 23 16:27:41 2020 -0400 + + Migrate Wiki + +commit ddc5eb55729a8ce2d1df3f85b2310f2d44aca74f +Author: raftergit +Date: Fri Oct 23 15:51:28 2020 -0400 + + documentation updates + +commit 76251f972b63cd66cef8420c90df0307bc3c690a +Author: Carl Smith +Date: Fri Oct 23 15:32:22 2020 -0400 + + Update session-management.md + + removed question mark + +commit 15847a7f5380c20fa0d1ef6aa4752a147ca20f94 +Author: Alex Soble +Date: Fri Oct 23 14:09:13 2020 -0500 + + Disable Docker Layer Caching + + + Copying over changes from https://github.com/raft-tech/TANF-app/pull/360/files and seeing if they get our frontend tests green on the HHS repository + +commit 52360b462df040f37053338c1257d32e99be1074 +Author: Spencer Hilvitz +Date: Fri Oct 23 11:51:52 2020 -0700 + + remove package.json in wrong spot + +commit df647b2d3fc1da1802c6dd97670f61521c0f539d +Merge: 30f7a94c5 deeaa18ce +Author: Spencer Hilvitz +Date: Fri Oct 23 11:46:52 2020 -0700 + + Merge branch '230-form-validation' of github.com:raft-tech/TANF-app into 231-submit-form + +commit deeaa18ce3775b9b26866cad3a8999837d2b71fd +Author: Spencer Hilvitz +Date: Fri Oct 23 11:43:11 2020 -0700 + + add documentation for found snyk vulnerability, update docs for auth, stts, combobox, editprofile, and splashpage, remove unnecessary test from combobox.test + +commit 72b12fc71f94344f0255b7c38d7e72a36d69129e +Author: Spencer Hilvitz +Date: Fri Oct 23 10:55:14 2020 -0700 + + remove resolution of object-path and update react-scripts package, add md file for snyk vulnerability fixes + +commit 30f7a94c5a03540fa3939832a32841a2c9033f58 +Author: Spencer Hilvitz +Date: Fri Oct 23 10:39:52 2020 -0700 + + pass profileInfo to setUser action + +commit 47a7eb9b1db258e8ace8cc2b72188d92c9ada7b0 +Merge: 57eda4af0 979ed1a61 +Author: Spencer Hilvitz +Date: Fri Oct 23 10:07:28 2020 -0700 + + Merge branch 'backend/231/profile-update' into 231-submit-form + +commit 57eda4af0bbeac2bb76b54aa737d1c235bcf4427 +Author: Spencer Hilvitz +Date: Fri Oct 23 10:07:04 2020 -0700 + + add setUser action and reducer and call it from editprofile + +commit d991ef074ce2fdd7804d79b6b2be422ec6fdf696 +Author: Spencer Hilvitz +Date: Fri Oct 23 09:50:55 2020 -0700 + + fix tests and fix stt field + +commit 16fc3a387a1cb5ecb9d5d00f68026dbeee94a089 +Author: Spencer Hilvitz +Date: Fri Oct 23 09:43:07 2020 -0700 + + remove size=big on request access button + +commit 77fd2afdbf4c466e0878b880e7f21ba68698a80b +Author: Spencer Hilvitz +Date: Fri Oct 23 09:37:52 2020 -0700 + + fix request access button color and width, change validation message for stt + +commit a8a676a2be6ce94c32da54cc7a3563a047ad4888 +Author: Carlton Smith +Date: Fri Oct 23 12:20:34 2020 -0400 + + document session management strategy + +commit 908254760a626e120846243fe7f96513fd259bd1 +Author: Spencer Hilvitz +Date: Fri Oct 23 09:15:02 2020 -0700 + + pass in placeholder to combo box + +commit 2c27995cb53e031b477a4aebce1fcbbbae0b2b9c +Merge: cb7847c8d 5a5aecf15 +Author: Spencer Hilvitz +Date: Fri Oct 23 07:53:48 2020 -0700 + + Merge branch '230-form-validation' of github.com:raft-tech/TANF-app into 230-form-validation + +commit cb7847c8d21eda33e5688a25682c0383cb26c5a3 +Author: Spencer Hilvitz +Date: Fri Oct 23 07:53:17 2020 -0700 + + add tests to editprofile + +commit 5a5aecf15b8f48d6c5d4ab89c39baf3cf8072636 +Merge: f36cfe7a9 e7f7eb491 +Author: Spencer Hilvitz +Date: Fri Oct 23 07:51:10 2020 -0700 + + Merge branch 'raft-tdp-main' into 230-form-validation + +commit 99aceea7c5d0e7215e4f37380710bac1735b9561 +Author: Aaron Beavers +Date: Thu Oct 22 18:40:53 2020 -0500 + + Wrap editprofile in valid provider + +commit aaabf507071e7848d2a31e04367540ee53e4e5d9 +Author: Aaron Beavers +Date: Thu Oct 22 18:35:18 2020 -0500 + + Use single quote for linter + +commit 708018c50e390471a2f77b25febcb5159a7841c8 +Author: Aaron Beavers +Date: Thu Oct 22 18:26:46 2020 -0500 + + Resolve linting issues + +commit b57273483a5a5d532140e6a350f4bb4b6390833d +Author: Aaron Beavers +Date: Thu Oct 22 18:20:21 2020 -0500 + + Add title heading element to display h1 content in page tab title + +commit 82e20b5839fbcc837e1a0579afbfbce3484db567 +Author: Spencer Hilvitz +Date: Thu Oct 22 15:24:21 2020 -0700 + + everything working + +commit 2b573f54b8151ba6b06081672a91c4bcf7f49f09 +Author: Carlton Smith +Date: Thu Oct 22 16:43:32 2020 -0400 + + add middleware and timeout + +commit e7f7eb491cba3dc2f257795ef162e652243e7d08 +Merge: 37e4a033a 80c724442 +Author: Carl Smith +Date: Thu Oct 22 14:54:55 2020 -0400 + + Merge pull request #362 from raft-tech/sprint-5-fixes + + Sprint 5 fixes + - Combo box placeholder + - Remove unneeded file + +commit 80c72444238ecde23d102789566bc7ea88f25cd9 +Merge: 1b649448f f89f7cdf4 +Author: Spencer Hilvitz +Date: Thu Oct 22 11:41:55 2020 -0700 + + Merge branch 'sprint-5-fixes' of github.com:raft-tech/TANF-app into sprint-5-fixes + +commit 1b649448f7ce196732a4564f41ec0475e4531d5b +Merge: 2d12a94b1 37e4a033a +Author: Spencer Hilvitz +Date: Thu Oct 22 11:41:37 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into sprint-5-fixes + +commit f89f7cdf46d0aad03a3c026bb2b88cde97eb9512 +Author: Carlton Smith +Date: Thu Oct 22 14:35:18 2020 -0400 + + remove tests.py + +commit 126a8f8df23961397abdffbe7e92bade6e8e0935 +Merge: 060321fa7 b853017d2 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Oct 22 14:27:03 2020 -0400 + + Merge pull request #67 from shubhi-raft/patch-1 + + Sprint 5 summary.md + These tests do not apply (and would need to be run manually) because it is a markdown file. + +commit eb14cba10dca3183fe7048ec933a03eb13a47daf +Author: raftergit +Date: Thu Oct 22 12:42:43 2020 -0400 + + updating security tracking documentation + +commit 2d12a94b19053499cf7458eb882b42b4825ab0ac +Author: Spencer Hilvitz +Date: Thu Oct 22 08:44:18 2020 -0700 + + add placeholder text and remove line of code in EditProfile + +commit 2c648ac727d56911e3b4e2aece2d42cf77492705 +Author: raftergit +Date: Thu Oct 22 11:41:34 2020 -0400 + + testing docker layer caching disabling + +commit 54887399780b26093d36bdf97ae993094f857b8e +Author: Spencer Hilvitz +Date: Thu Oct 22 08:32:29 2020 -0700 + + working on tests + +commit afe9e465798b6bf1d3a33be4fac00baa6e59d4e2 +Author: raftergit +Date: Thu Oct 22 10:29:13 2020 -0400 + + resolving migration conflicts + +commit 2fb7f57c3e444595f2f43d84aaf1c8e9f94bc916 +Merge: 544f78394 37e4a033a +Author: raftergit +Date: Thu Oct 22 09:51:54 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit b853017d20e90d2e20c8da6240afce8eb2ba8ba0 +Author: Shubhi Mishra +Date: Wed Oct 21 14:17:14 2020 -0400 + + Create Sprint 5.md + + Summary of Sprint 5 + +commit e37beef91c6fbcd11a7f2e70515a53177542c760 +Merge: f07a4292a 7ca142355 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Oct 21 11:28:22 2020 -0400 + + Merge pull request #326 from raft-tech/design-principles-ac + + Design principles ac + +commit dfef8320a2fb0a7ac26790ca3e442300006f3b91 +Author: Spencer Hilvitz +Date: Tue Oct 20 14:26:04 2020 -0700 + + pull label into combobox and change names and ids to a prop, update combobox tests + +commit 76d6435fe42444594a7cd6b85e54b8156ae150a6 +Author: Spencer Hilvitz +Date: Mon Oct 19 14:34:31 2020 -0700 + + remove unnecessary React call + +commit 3a3f6dbc91220de5dad8df66711bd61393b069a9 +Author: Spencer Hilvitz +Date: Mon Oct 19 14:09:53 2020 -0700 + + change combobox and editprofile to work with children + +commit f36cfe7a98bab4905878bba6688bac21800c203b +Author: Spencer Hilvitz +Date: Mon Oct 19 14:06:09 2020 -0700 + + add react-testing-library for combobox tests, add combobox tests, redo combobox with children rather than sttlist and change proptypes + +commit e6eaded632b760f41786c0f33ec553fb04bc1515 +Author: Spencer Hilvitz +Date: Mon Oct 19 11:43:36 2020 -0700 + + make combobox more generic for better reuse (rename selectStt to handleSelect, change selectedStt to selected, changed sttError to error and pulled out children + +commit 979ed1a612558c72b43889567aa459840e0581f6 +Author: Carlton Smith +Date: Mon Oct 19 13:47:47 2020 -0400 + + update docs to show stt changes + +commit ff8ae0936f13d903eca79966a68ce9421d3c6f17 +Author: Carlton Smith +Date: Mon Oct 19 13:16:55 2020 -0400 + + accept stts as dict and return as dict + +commit 060321fa7f4b3d98bd2c6b55e5fde024fed4bc96 +Merge: 01b6b2a47 9b907bfcf +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Mon Oct 19 09:58:57 2020 -0400 + + Merge pull request #63 from raft-tech/sprint-5-changes + + Sprint 5 Release. This looks good. Note @iamjolly had also previously commented his approval here: https://github.com/HHS/TANF-app/pull/60#issuecomment-709529818. I was delayed in merging Sprint 5 release so there was some shuffling around to be able to merge. + +commit c4eecb58671f317cc4e40d796de34c4baa306587 +Author: Spencer Hilvitz +Date: Fri Oct 16 20:37:27 2020 -0700 + + wrap combobox input logic in if statement to allow tests to run - can't test without input available + +commit fd4969988ee90bbee93c69e0bc1eca7e1f995109 +Author: Spencer Hilvitz +Date: Fri Oct 16 19:39:03 2020 -0700 + + change combobox function names, add combobox.test.js, add setStt method in EditProfile, destrucutred in EditProfile differently, added EditProfile tests + +commit 38624807c0869946e5a401d0368b32b323537a70 +Author: Spencer Hilvitz +Date: Fri Oct 16 14:16:15 2020 -0700 + + validation working + +commit 93ff1b85200fe6aaa414081f1660bb8284f85120 +Author: Carlton Smith +Date: Fri Oct 16 13:37:20 2020 -0400 + + updating serializers + +commit 37e4a033ae7768b16b7ed1fc75b51c188bf48189 +Merge: 9b907bfcf 216b64302 +Author: Carl Smith +Date: Fri Oct 16 11:09:28 2020 -0400 + + Merge pull request #286 from raft-tech/backend/229/stts-endpoint + + Backend/229/stts endpoint + +commit 216b64302f9998ed21a3706c2614e287a39747d9 +Merge: 1af312257 ef2bd553f +Author: Carl Smith +Date: Fri Oct 16 10:54:52 2020 -0400 + + Merge pull request #335 from raft-tech/229-combobox + + 229 combobox + +commit d512bee4f67859e26cb19778054afd2b4bbdc8d7 +Author: Spencer Hilvitz +Date: Thu Oct 15 17:33:35 2020 -0700 + + working validation for all fields + +commit ef2bd553f465bb39b763648353655a7c0d929439 +Author: Spencer Hilvitz +Date: Thu Oct 15 14:48:46 2020 -0700 + + readd extra line in govbanner + +commit bcda1341317d17cc1d858b2856d59ac15ae43b78 +Author: Spencer Hilvitz +Date: Thu Oct 15 14:29:06 2020 -0700 + + remove data dir + +commit f4b2f4b3c875a1366e62df389eede1120fe04507 +Author: Spencer Hilvitz +Date: Thu Oct 15 14:28:49 2020 -0700 + + playing with values + +commit a044c3afccdc9ac521aee9d759859254fc7796ce +Merge: 5f9b4b328 110ad327d +Author: Spencer Hilvitz +Date: Thu Oct 15 10:14:07 2020 -0700 + + Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation + +commit 01b6b2a472ff3839e4a3eabd319d8dea5fc253f0 +Merge: 5a88f0480 9053266b8 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Oct 15 13:08:44 2020 -0400 + + Merge pull request #61 from HHS/heuristics + + Adding skills heuristics + +commit 16f4f3383fe14f27b07a6e2decbfabc2475f23d3 +Author: Alex Soble +Date: Thu Oct 15 11:55:17 2020 -0500 + + Remove "Depending on the project's needs.." paragraph -- vague and could be interpreted as going beyond the QASP + +commit d244fc656232f38fe906484ea0ffaa7f912491a7 +Author: Alex Soble +Date: Thu Oct 15 11:40:52 2020 -0500 + + Fix typo + +commit 905291ec25b03d3c62c5a07a1a02af064bd00b0c +Author: Alex Soble +Date: Thu Oct 15 11:36:02 2020 -0500 + + Add v1 "How 18F will test a11y" doc; create new a11y folder under docs + +commit 110ad327d392092dfdbe65bb9d444ae248fee8be +Author: Spencer Hilvitz +Date: Wed Oct 14 13:44:10 2020 -0700 + + add comment explanation to combobox useEffect + +commit 4dd0af428d1a798074ba0eb7882a0e4768adc3c0 +Author: Spencer Hilvitz +Date: Wed Oct 14 12:24:24 2020 -0700 + + fix open-path vulnerability + +commit b9d7897197e660df56be5a39ef208753141d5bea +Author: Spencer Hilvitz +Date: Wed Oct 14 11:48:53 2020 -0700 + + remove accordion js from govbanner, reuse main uswds javascript, update editprofile tests, remove combobox code from editprofile + +commit 9aa77c0f97d1c8a5ba9fcc0d2afd9461c2e0f65b +Author: Spencer Hilvitz +Date: Wed Oct 14 11:42:31 2020 -0700 + + remove initialState stts + +commit dc8c4cccced9c91d0ac64ec334decca676145c1c +Author: Spencer Hilvitz +Date: Wed Oct 14 11:18:02 2020 -0700 + + remove commented out comboBox.init + +commit fd1de601a0c698fdc1b4396e8b15f0926ba7eb13 +Author: Spencer Hilvitz +Date: Wed Oct 14 10:58:53 2020 -0700 + + Working with no outstanding issues + +commit 8c03acccc5055e3e92080ed4b1376a2b91ccc4a2 +Author: Spencer Hilvitz +Date: Wed Oct 14 09:39:55 2020 -0700 + + example for aaron + +commit 64df7b11118d7c82058777e936b029a7365f404f +Merge: d8e5d40fe 6913ac1ca +Author: Spencer Hilvitz +Date: Tue Oct 13 17:45:48 2020 -0700 + + Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 229-combobox + +commit d8e5d40fe44dc5900c64e79391db4566950b591c +Merge: 4c85a97b6 9b907bfcf +Author: Spencer Hilvitz +Date: Tue Oct 13 17:20:31 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox + +commit 4c85a97b67e3d6af28747207d082278daa6553ad +Merge: b1138e371 1af312257 +Author: Spencer Hilvitz +Date: Tue Oct 13 17:17:02 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox + +commit dd360dbe16ff891225f533b827944d2e681b4b04 +Author: Carlton Smith +Date: Tue Oct 13 15:32:20 2020 -0400 + + update shape of call and response tests + +commit b9acf6354ac08ab6263c2929ce919497a3f6a844 +Author: Carlton Smith +Date: Tue Oct 13 15:16:21 2020 -0400 + + run frontend + +commit 7ca142355a52a91c2ae35ebca2f213c4779a05be +Author: Christine Bath +Date: Tue Oct 13 12:29:19 2020 -0400 + + Update dev-issue-template.md + + adding design principles reference + +commit 7478b014e1302c6a3dacc27430e7a6fe4f3afcf2 +Author: Christine Bath +Date: Tue Oct 13 12:28:16 2020 -0400 + + Update research-issue-template-.md + + Adding design principle reference + +commit f0d7016857b59af7cb94df534c350020befae13b +Author: Christine Bath +Date: Tue Oct 13 12:26:20 2020 -0400 + + Update design-issue-template.md + + adding design principle reference + +commit 5f9b4b328557da69f1b22d14e1b74271712c01fc +Merge: d90601d9a 9b907bfcf +Author: Spencer Hilvitz +Date: Tue Oct 13 09:06:01 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 230-form-validation + +commit 6913ac1cad7c2b15de1e3f275c82a7213b4539c4 +Merge: 23fd9506c 9b907bfcf +Author: Spencer Hilvitz +Date: Tue Oct 13 09:05:41 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox + +commit d90601d9ac0db8f57470b9401987559e0712f60a +Author: Spencer Hilvitz +Date: Tue Oct 13 09:04:12 2020 -0700 + + add data-value attr to editprofile select + +commit 9053266b8fb29914025e167e4a88ebd4bc07c4b0 +Author: Christine Bath +Date: Tue Oct 13 10:28:38 2020 -0400 + + Update Heuristics.md + + fixing design internal reference links + +commit 8d8282aa2e244a0e54418f038255016d3bc3c7c3 +Author: Christine Bath +Date: Tue Oct 13 10:24:25 2020 -0400 + + adding TOC + +commit 544f78394322f2426f8f329edfd530a9d2873f86 +Merge: ac9596ce4 dc4b38fe4 +Author: raftergit +Date: Tue Oct 13 08:04:59 2020 -0400 + + Merge branch 'backend/309/dynamic-roles-permissions' of https://github.com/raft-tech/TANF-app into backend/309/dynamic-roles-permissions + +commit ac9596ce4ea9aabfb4d7bfd24882c4ba638230b2 +Author: raftergit +Date: Tue Oct 13 08:04:45 2020 -0400 + + resolving linting warnings + +commit dc4b38fe46e1735a4c51c6ae044615435c6fbd34 +Merge: a6f6a72ca 9b907bfcf +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Tue Oct 13 06:42:51 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions + +commit a6f6a72ca88b895f432b03325e8d7241acb7ac40 +Author: raftergit +Date: Tue Oct 13 06:39:15 2020 -0400 + + test cases for role and permissions end points + +commit 75b954e94ea48515fbe8d4c1f57985d5357d2744 +Author: Spencer Hilvitz +Date: Fri Oct 9 18:55:15 2020 -0700 + + move validation function outside of EditProfile + +commit 9b907bfcf932525762c03d9eae2275269f183f46 +Merge: 9272f60d7 cc257e136 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Oct 9 20:37:05 2020 -0400 + + Merge pull request #320 from raft-tech/shubhi-raft-patch-3 + + Update issue templates + +commit aaae9799cd50b8515464f35d3f21e76321a791e2 +Author: Christine Bath +Date: Fri Oct 9 17:31:08 2020 -0400 + + first pass heuristics content + +commit a6ffe9eb38fd90322ddcfdd0b0c371743bed29fd +Author: Carlton Smith +Date: Fri Oct 9 15:48:10 2020 -0400 + + update permissions + +commit ed234bc1d270d12be7f8c2d1a08108219db2c9d5 +Author: Christine Bath +Date: Fri Oct 9 15:08:12 2020 -0400 + + testing table styles + +commit cc257e136ecf25a58e2f6734085db8502dbebc54 +Author: Shubhi Mishra +Date: Fri Oct 9 13:45:02 2020 -0400 + + Update issue templates + + replaced wiki with Code<> docs for future documentation. + +commit 5a88f04805ca2e5e90bf59657e2375318fb7c5c4 +Merge: f07a4292a ea33793c4 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Fri Oct 9 11:28:10 2020 -0400 + + Merge pull request #59 from HHS/SelenaJV-patch-1 + + team-charter.md + +commit 12ffe588c44359aa53feb6c700ce42dd2640c45e +Author: Christine Bath +Date: Fri Oct 9 10:36:24 2020 -0400 + + starting heuristics doc + +commit 8bffe7a5b820f67f1b5290404f487f45aed54295 +Author: raftergit +Date: Fri Oct 9 08:49:54 2020 -0400 + + restoring snyk.io documentation + +commit a4bf13ca443bb6939be83cb00d13522b97b655bf +Author: raftergit +Date: Fri Oct 9 08:36:38 2020 -0400 + + resolving Snyk.io issue https://app.snyk.io/vuln/SNYK-PYTHON-DJANGOFILTER-1013846 + +commit 49c034aeb4f185b21d4d23e81d61fb8197d278d8 +Author: raftergit +Date: Fri Oct 9 08:31:20 2020 -0400 + + resolving migrations issue in cirlceci + +commit 5c24c87a2fd8f2f2fe29805ef205b0d5676abd57 +Author: raftergit +Date: Fri Oct 9 07:24:21 2020 -0400 + + inital work on group and permission management + +commit f925ac6c50f42e86fe383b86d33deca1c29815db +Author: Spencer Hilvitz +Date: Thu Oct 8 15:53:08 2020 -0700 + + update editprofile tests, change classnames, remove validate object + +commit bba529b5547f67782e10e6fb8c50ac2ff6210fc4 +Merge: 70f9b9231 23fd9506c +Author: Spencer Hilvitz +Date: Thu Oct 8 15:48:51 2020 -0700 + + Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation + +commit 70f9b92310ec28aa534bfe06a07269fec94967f8 +Merge: 0dbb1d522 204a72f90 +Author: Spencer Hilvitz +Date: Thu Oct 8 10:48:24 2020 -0700 + + Merge commit '204a72f9043c431e6845c3eaeea14f40e06c52cd' into 230-form-validation + +commit 23fd9506c3717a8875778d05dd11652d35c09371 +Author: Spencer Hilvitz +Date: Thu Oct 8 10:11:01 2020 -0700 + + Exemplify not working application + +commit 204a72f9043c431e6845c3eaeea14f40e06c52cd +Author: Spencer Hilvitz +Date: Thu Oct 8 09:37:06 2020 -0700 + + reenable button type lint rule, move to stts being hardcoded + +commit a275240889428c1d06c61de18a248aec402ba586 +Author: Carlton Smith +Date: Thu Oct 8 11:33:25 2020 -0400 + + update doc formatting + +commit 0a6dea7c9ea4efecd20e2aca93a9dc4e3a70f421 +Author: Carlton Smith +Date: Thu Oct 8 11:23:24 2020 -0400 + + update documentation + +commit cc6aa2d91a4f05651d2dbdc67c85cdecb4b08bcf +Author: Carlton Smith +Date: Thu Oct 8 11:16:29 2020 -0400 + + update to PATCH endpoint + +commit 0dbb1d52200a1ce8e6abc7686f371fa1a6d8f345 +Author: Spencer Hilvitz +Date: Wed Oct 7 12:18:49 2020 -0700 + + add stt to profileinfo, change first-name id and class to firstName, add value and onchange to select + +commit ea33793c4ff40fa204a66d93f2585b51ec888ba0 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 14:51:47 2020 -0400 + + Update team-meetings.md + +commit 0e05a846a2636362e16f61f9732ad85164032bf1 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 14:46:35 2020 -0400 + + Update team-meetings.md + +commit ec1d3b25c6544649fd2b6817b8dbcc22c8d8dbe1 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 14:45:15 2020 -0400 + + Update team-meetings.md + +commit 0eb2d57e59869fe51d3ceea10d8aa67798f1fa89 +Merge: 4e6926dc8 011ffb99a +Author: Spencer Hilvitz +Date: Wed Oct 7 11:44:58 2020 -0700 + + Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation + +commit bb4dd0d7756fe0f30f498d8c87f918815dd59296 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 14:44:09 2020 -0400 + + Update team-meetings.md + +commit 0695190932affe5aee17b8996aed86dc02770163 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 14:43:32 2020 -0400 + + Update team-meetings.md + +commit 4a9abfd86eda8ddb1a05b9f3e50baa145d778c5f +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:50:18 2020 -0400 + + Update rafts-accessibility-dos-and-donts.md + +commit 36c4c606dde20af1bed03f0b7034398f5e203b41 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:49:13 2020 -0400 + + Update rafts-accessibility-dos-and-donts.md + +commit f98a6f939d38cbbe984fbf0bc73dde1f3547f473 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:44:29 2020 -0400 + + Update manual-checks.md + +commit 8d573230d4b42210f015d4c5a404bd819d949864 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:44:08 2020 -0400 + + Create rafts-accessibility-dos-and-donts.md + +commit ed8184fff8a7b19f970c7261a4d643d43ba52d38 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:42:24 2020 -0400 + + Update manual-checks.md + +commit 8e272a8310d0dd0936ac0fdb38e965a037b75b0e +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:39:44 2020 -0400 + + Update manual-checks.md + +commit bb79951c6b0af98618283190e3b9f8bda187f593 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:38:50 2020 -0400 + + Update manual-checks.md + +commit 5e60ecf210507eda2afa8840daccc2ee9ae7c798 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:35:42 2020 -0400 + + Update sprint-schedule.md + +commit 4cabc98ef9e4cb65f9f5d2994eed3db3fb396e2c +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:35:14 2020 -0400 + + Update sprint-schedule.md + +commit 40b5545a5f2a5d3d75edff005b55decbca9fcaf5 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:34:36 2020 -0400 + + Update sprint-schedule.md + +commit 7910e43dd53578b0bbac8434b49995ec1b0d3925 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:31:33 2020 -0400 + + Update sprint-schedule.md + +commit 83bee6a31c545d7ff37c6c5c96da8159aa3240a9 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:24:58 2020 -0400 + + Update sprint-schedule.md + +commit adf5f4a51bc2c8092c91f95abf916bdc8bd96451 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:23:19 2020 -0400 + + Rename reviewing-work.md to manual-checks.md + +commit f6d34944f7bbbbdbe5ded1f163a968c2f8a4997b +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:22:06 2020 -0400 + + Update our-workflow.md + +commit 422e732fd5dddbc9b5865229c09730a06682d706 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:20:38 2020 -0400 + + Update reviewing-work.md + +commit c5d82306da2c82a40deb1f63b1e540248fd24bb9 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:19:46 2020 -0400 + + Update our-workflow.md + +commit 685f82a562d2e262af1e13ef8109891ee9b336c9 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:18:51 2020 -0400 + + Update reviewing-work.md + +commit a6953cce85866c4751321c2c9522c8ac067ef844 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 12:17:19 2020 -0400 + + Update our-workflow.md + +commit 0253f4c31baa6082bc65b193fc0bff7294f46e8d +Author: Selena Juneau-Vogel +Date: Wed Oct 7 11:30:06 2020 -0400 + + Update our-workflow.md + +commit 52b85a5a9ac4484674084de4746a72a59058cc4f +Author: Selena Juneau-Vogel +Date: Wed Oct 7 09:49:27 2020 -0400 + + Update our-team-and-values.md + +commit 2fe7e0f0ad56d5868bcd84d209ec65f90ad88124 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 09:47:15 2020 -0400 + + Update communication-tools.md + +commit 1698d7d44153e843954c6c7df2e746551576e632 +Author: Selena Juneau-Vogel +Date: Wed Oct 7 09:46:04 2020 -0400 + + Update communication-tools.md + +commit b5ef7608427f67a13e10243b60507ca1e28f6aec +Author: Spencer Hilvitz +Date: Tue Oct 6 16:23:47 2020 -0700 + + fix names + +commit 011ffb99a9c00083280e02620e4dfe4bb29126cf +Author: Spencer Hilvitz +Date: Tue Oct 6 16:17:19 2020 -0700 + + add class to stt option, add test for dropdown list of stts + +commit f0ef4f0cac3ddae5ac93270d227bfa7fdd6d7f6d +Author: Spencer Hilvitz +Date: Tue Oct 6 15:45:19 2020 -0700 + + COMBO BOX WORKING + +commit 23e324bb1e286a6cafd4563e5b56b03eace4e64b +Author: Selena Juneau-Vogel +Date: Tue Oct 6 18:25:02 2020 -0400 + + Rename sprint-schedule to sprint-schedule.md + +commit 4e6926dc81a16141d87e02ad0d88409eff9cbc1a +Author: Spencer Hilvitz +Date: Tue Oct 6 15:24:21 2020 -0700 + + fix combo box, finish validations + +commit 046e82ba820a79bae64d65d4aa594c039006c932 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 18:20:50 2020 -0400 + + Update team-meetings.md + +commit 2def9aa25f665a278386b470c0ab2cc85ef8f6d5 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 18:19:25 2020 -0400 + + Update and rename team-and-values.md to our-team-and-values.md + +commit 84d4aad6adcdcb77bb4df740fcbb8527c379c573 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 18:11:52 2020 -0400 + + Update team-and-values.md + +commit 59961ff3b3bf1126b586cf78e2894286965a5367 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 18:11:14 2020 -0400 + + Update team-and-values.md + +commit 33eb46536f19676d9933367010ea0580f55c5d90 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:51:36 2020 -0400 + + Update and rename team-values.md to team-and-values.md + +commit 612e62b0345cf2c918ba58cc7a94a556af62d6c9 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:45:54 2020 -0400 + + Update team-meetings.md + +commit 95f958c3a81f21643dc50a54025c1c6a39b2eed8 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:44:40 2020 -0400 + + Update team-meetings.md + +commit 843fe9d695fed9059af1a8fcf42f4c79e46d2eab +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:41:08 2020 -0400 + + Update team-meetings.md + +commit 95e92edc9a2db5a79c260363c0d1f563a23800cb +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:40:32 2020 -0400 + + Update team-meetings.md + +commit 8ac02af714685f99c37bdc3b89f574bfe38ebb59 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:28:17 2020 -0400 + + Create sprint-schedule + +commit 86978f4ddfed2ded0281dfac3a1468561fd907fc +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:26:20 2020 -0400 + + Update team-meetings.md + +commit b2b2be2e78acb09b99a56627d16fb22855d6c903 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:18:04 2020 -0400 + + Update team-meetings.md + +commit 1216980edef6bb60b2706cd3c88cdbbc493662e3 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 17:12:57 2020 -0400 + + Update team-meetings.md + +commit 6d0b83388ea0090b4946fcaa392e39816c8de314 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:28:22 2020 -0400 + + Create team-values.md + +commit c3e0f4165def386c2f5a3680ef39ba10d5179f40 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:25:01 2020 -0400 + + Update communication-tools.md + +commit fd42ccd187654939f347f41a8fb956f31112ad86 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:24:43 2020 -0400 + + Rename communication-tools to communication-tools.md + +commit 05d87f3c3fd6a02c457e07f2a32a1549b92fd457 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:12:01 2020 -0400 + + Update our-workflow.md + +commit c29d3039b6b11df175b1cf69408a938660ee9412 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:10:50 2020 -0400 + + Update our-workflow.md + +commit 3c052946fce7e20483d52ef89cdb287cb2d87d8f +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:08:31 2020 -0400 + + Update and rename organizing-our-work.md to our-workflow.md + +commit 06f5251e1a453b4f8b8a1021b133bbc3b71fe31e +Author: Selena Juneau-Vogel +Date: Tue Oct 6 15:06:32 2020 -0400 + + Update organizing-our-work.md + +commit 92fa615661d74f3c8f80321dbc3a6ff71151d313 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 14:58:34 2020 -0400 + + Update organizing-our-work.md + +commit 8b932bf80b63e083ef6fb8864861e8adb34fdffd +Author: Selena Juneau-Vogel +Date: Tue Oct 6 14:49:49 2020 -0400 + + Create communication-tools + +commit 1c9185daaac1c4d291b204f28d9a8265c2d2ff71 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 14:43:48 2020 -0400 + + Update reviewing-work.md + +commit 10f1647e10b11321e30cef2840668abe4bea3e1b +Author: Selena Juneau-Vogel +Date: Tue Oct 6 14:39:26 2020 -0400 + + Update reviewing-work.md + +commit 7cb66e5664e445e22449fcf4176519536f831145 +Author: Spencer Hilvitz +Date: Tue Oct 6 10:46:15 2020 -0700 + + remove unnecessary eslint-disable-line + +commit 71f9af043f44fbbb6ea73159c581308ee1668f55 +Merge: 1d1d35789 22abbf5da +Author: Spencer Hilvitz +Date: Tue Oct 6 10:45:26 2020 -0700 + + Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation + +commit 1d1d35789e23aa93ed87ad3f8a874e566cc03419 +Author: Spencer Hilvitz +Date: Tue Oct 6 10:44:25 2020 -0700 + + replace example options with stts, remove disabled attr from request access button + +commit b2f4b8e255c57d68aaa830bbc4c5bd7f572dd2ea +Author: Selena Juneau-Vogel +Date: Tue Oct 6 12:10:57 2020 -0400 + + Rename QASP-review.md to reviewing-work.md + +commit 4efd6a377e80009c852e761eab7f4eece81b81c4 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 12:10:15 2020 -0400 + + Create QASP-review.md + +commit 64677fadcfc1472f376be8934b904f50dcb84937 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 12:00:21 2020 -0400 + + Rename organizing-our-work to organizing-our-work.md + +commit de2f4ba7cf89ecf9d4e742b1d3354dc10cd506e0 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:59:39 2020 -0400 + + Create organizing-our-work + +commit 7115b98ad558fded263531806c3531d8a849ad47 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:56:10 2020 -0400 + + Update team-meetings.md + +commit ac16d69b30a6c7bb53042b1f4fda4b7dc70646c4 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:53:53 2020 -0400 + + Update team-meetings.md + +commit c7799ab0519981aa28bae31d33a71392aef55476 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:50:33 2020 -0400 + + Update team-meetings.md + +commit 2017ad444b0e8e96bd00ac35f08bbedeeb5564fd +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:50:19 2020 -0400 + + Update team-meetings.md + +commit a00c193f082610124a4ff653b4754def14c9d1ca +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:50:05 2020 -0400 + + Rename team-meetings to team-meetings.md + +commit 4437929eb5569d21f950f2fef267786137dcba00 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:43:07 2020 -0400 + + Update and rename meetings to team-meetings + +commit 84612d49740facf239a109004e1cb756276ffcc2 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:31:17 2020 -0400 + + Create meetings + +commit 86528d7c96a0b061f5b4e01f6986dbe6a5c361e5 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 11:28:56 2020 -0400 + + Delete team-charter.md + +commit c18a5dd68e4c77faaef93ba4eddccf71cc8eae88 +Author: Selena Juneau-Vogel +Date: Tue Oct 6 10:50:38 2020 -0400 + + Create team-charter.md + +commit 7cc59cd7a6ad5bd92130bb3fab1a70303ae224d9 +Author: Carlton Smith +Date: Mon Oct 5 15:56:43 2020 -0400 + + test users with stts + +commit a4d85a41d8d660b798f8595e6d145a5037459d4f +Author: Spencer Hilvitz +Date: Mon Oct 5 12:45:46 2020 -0700 + + remove react select + +commit 22abbf5dae3cdcff7d1ccb4845c84934247b0594 +Author: Spencer Hilvitz +Date: Mon Oct 5 09:50:50 2020 -0700 + + trying to use uswds example + +commit fcbef0389cfb6ca8075b7cf02ba653d84b8b3daf +Author: Spencer Hilvitz +Date: Fri Oct 2 15:46:46 2020 -0700 + + ant select example + +commit 719fb289178e3300504e34d1e45661d8215036a6 +Merge: aed59f5f2 1af312257 +Author: Carlton Smith +Date: Fri Oct 2 12:54:39 2020 -0400 + + merge cleanup + +commit 414bddae3f4c67e43c32e9179d65c0608705926d +Author: Spencer Hilvitz +Date: Thu Oct 1 14:34:24 2020 -0700 + + fix focused border on stt dropdown + +commit dfeb2f8f9e22877045809eec20da021f2eb4dabf +Merge: 7509099fa 1af312257 +Author: Spencer Hilvitz +Date: Thu Oct 1 14:11:45 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox + +commit f0f9dd4d2d600ac2c20e10a3ca7e8e694e33d763 +Merge: 4abea2b55 1af312257 +Author: Spencer Hilvitz +Date: Thu Oct 1 14:11:30 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 230-form-validation + +commit 1af3122575911b33e1f6482837484fa69526a9e5 +Merge: 6aa239621 9272f60d7 +Author: Spencer Hilvitz +Date: Thu Oct 1 13:52:43 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into backend/229/stts-endpoint + +commit 4abea2b55594cf9480fd286c0f6d4ea73e3273ff +Merge: a8cb7d690 7509099fa +Author: Spencer Hilvitz +Date: Thu Oct 1 13:38:17 2020 -0700 + + Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation + +commit 7509099fa703af8d39bc825eed31504f775214fb +Author: Spencer Hilvitz +Date: Thu Oct 1 13:09:20 2020 -0700 + + remove placeholder in stt select + +commit a8cb7d690ca33adab0c16eb79e50221f3228a1ce +Author: Spencer Hilvitz +Date: Thu Oct 1 13:08:36 2020 -0700 + + middle of figuring out how stt clear works + +commit aed59f5f23f28a8dcbac12fefba58fc7f3871c1c +Author: Carlton Smith +Date: Thu Oct 1 15:57:46 2020 -0400 + + linting + +commit c4a95aef144df1d3344c7467e32e41dd0bba9477 +Author: Carlton Smith +Date: Thu Oct 1 15:40:10 2020 -0400 + + test authorization + +commit f07a4292a3dd208378014935366eafd138d28ace +Merge: 97b1f2bb6 9272f60d7 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Oct 1 14:25:37 2020 -0400 + + Merge pull request #58 from raft-tech/raft-tdp-main + + SPRINT 4 RELEASE + +commit 826ffbebaacd53caff713d447b8d6c288bf00081 +Author: Carlton Smith +Date: Thu Oct 1 13:40:21 2020 -0400 + + add endpoint + +commit 3f09ea562cae6803a112fad62232160d12803484 +Author: Spencer Hilvitz +Date: Thu Oct 1 08:15:24 2020 -0700 + + add inline comment explaining eslint-disable-next-line in editprofile + +commit b1138e371306a446219cd120535ef2a265143932 +Author: Spencer Hilvitz +Date: Wed Sep 30 16:38:45 2020 -0700 + + re-add react-select, fix linter error with inline comment + +commit 5428ea2db8156a96bbdafa6f98f495afacb8e0e8 +Author: Spencer Hilvitz +Date: Wed Sep 30 14:30:06 2020 -0700 + + remove tsconfig.json + +commit a85fa5bc4cd9e6c10ff358fb2b554b2eb79b9940 +Merge: 3639d40c7 6aa239621 +Author: Spencer Hilvitz +Date: Wed Sep 30 14:11:35 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox + +commit 3639d40c72eaae6b84206e4e719849efc31cc2d6 +Merge: 58c3c9f97 9272f60d7 +Author: Spencer Hilvitz +Date: Wed Sep 30 14:10:01 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox + +commit 9272f60d7c5c9c09e4b07a14203d4b22e44604d6 +Merge: 30ed9bc41 1c249ca88 +Author: Carl Smith +Date: Wed Sep 30 14:01:32 2020 -0400 + + Merge pull request #307 from raft-tech/cloudgov-backend-mem-increase + + Adjust the memory allowance of the backend app + +commit 1c249ca88630296488b4d74387f49cfc97939448 +Author: raftergit +Date: Wed Sep 30 13:20:17 2020 -0400 + + restore original circleci settings + +commit b5f4ebd8d9d21f7efc1ea51af9390732d2eb0920 +Author: raftergit +Date: Wed Sep 30 13:08:13 2020 -0400 + + testing memory quota at 256MB + +commit 4609603383bbed439d5d5a5644611b848e654276 +Author: raftergit +Date: Wed Sep 30 12:42:41 2020 -0400 + + testing memory quota increase to 2GB + +commit 4d4abc83a1a21c9c00b3da000466d0ffaffbf7e5 +Author: raftergit +Date: Wed Sep 30 12:32:31 2020 -0400 + + testing memory quota increase + +commit 24700ed3107a2e39834ad908d56f36b638a0b87f +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 30 12:27:31 2020 -0400 + + Increase the memory allowance of the backend app + +commit 58c3c9f978e64e7a5dd3dd52ad1558e4dd848a28 +Merge: d86689958 30ed9bc41 +Author: Spencer Hilvitz +Date: Wed Sep 30 08:58:42 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox + +commit 30ed9bc4170d124c34a3768e305d1b880d8c8b3b +Merge: cf9220dc2 7eba8ef20 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 30 11:47:18 2020 -0400 + + Merge pull request #300 from raft-tech/sprint-4-remediations + + Sprint 4 remediation + +commit 7eba8ef200db8b10939fc91ce97c43a8478bfa0a +Author: Spencer Hilvitz +Date: Tue Sep 29 14:52:40 2020 -0700 + + replace login button with button component + +commit 8170299c61ff3a7816afdc2f90964d8f1bfbbd7e +Author: Spencer Hilvitz +Date: Tue Sep 29 14:46:03 2020 -0700 + + remove jest coverage changes, change defaultprops in button.jsx to disabled to enforce react/jsx-props-no-spreading rule + +commit 3a633d7dceeff328d3f4612e191a077147bb4a3b +Author: Spencer Hilvitz +Date: Tue Sep 29 14:26:17 2020 -0700 + + change tsx to jsx + +commit 70e3ea4690223e0fd2015b8e9071420aa2247071 +Author: Spencer Hilvitz +Date: Tue Sep 29 13:19:51 2020 -0700 + + remove react linter rules + +commit fd1ce5b13497ae503ce29a7235fd82f96bcfb7e0 +Merge: ce3b78e55 75fd27727 +Author: Spencer Hilvitz +Date: Tue Sep 29 12:55:34 2020 -0700 + + Merge branch 'sprint-4-remediations' of github.com:raft-tech/TANF-app into sprint-4-remediations + +commit ce3b78e55e480ed73626ba7e54def294420bc539 +Author: Spencer Hilvitz +Date: Tue Sep 29 12:55:25 2020 -0700 + + add button test file + +commit 75fd277273fbf8e2cae2f3ff2c1e5795cc285c86 +Author: raftergit +Date: Tue Sep 29 15:43:07 2020 -0400 + + updating documentation for security vulnerability updtes during Sprint 4 + +commit 9e0ffc5e8484a22d6e0c13a999e598fe6007f5de +Merge: 0d96c9926 e7484ec4e +Author: raftergit +Date: Tue Sep 29 15:13:44 2020 -0400 + + Merge branch 'sprint-4-remediations' of https://github.com/raft-tech/TANF-app into sprint-4-remediations + +commit e7484ec4e1193e4d33e719d79276401f3d406d1f +Author: Spencer Hilvitz +Date: Tue Sep 29 12:09:59 2020 -0700 + + add typescript validations + +commit 3bcc4d12d562c5aff61c4b4aac723d05960b3734 +Merge: 2ec392a32 6fc38cf11 +Author: Spencer Hilvitz +Date: Tue Sep 29 12:04:50 2020 -0700 + + Merge branch 'sprint-4-remediations' of github.com:raft-tech/TANF-app into sprint-4-remediations + +commit 2ec392a328d0a73b9c5bf30584f61f3e5021be77 +Author: Spencer Hilvitz +Date: Tue Sep 29 12:04:45 2020 -0700 + + add typescript button component + +commit 0d96c9926d7bae3876a551a74a729e7813f9679c +Author: raftergit +Date: Tue Sep 29 14:31:04 2020 -0400 + + adding documentation for node-forge resolution + +commit 6fc38cf112d1198efb61a1cc59f7f31287e41f23 +Merge: 98584641c 9622ff19b +Author: raftergit +Date: Tue Sep 29 14:11:31 2020 -0400 + + Merge branch 'sprint-4-remediations' of https://github.com/raft-tech/TANF-app into sprint-4-remediations + +commit 98584641ce798b5cfa89110a6094aafe2e285b64 +Author: raftergit +Date: Tue Sep 29 14:11:23 2020 -0400 + + implementing resolution for the Node-Forge issue SNYK-JS-NODEFORGE-598677 by upgrading the dependancy from 0.9.0 to 0.10.0, removed the vulnerability from the snyk ignore list, and extended the Node-Sass vulnerability to expire on 10-29-2020 + +commit 9622ff19b18323a7b9fd400fc3c87d7e159bbce0 +Author: Spencer Hilvitz +Date: Tue Sep 29 10:36:48 2020 -0700 + + add button component + +commit 5e844bfa03a79e129f4206af2199a68ac1966846 +Author: Spencer Hilvitz +Date: Tue Sep 29 10:15:56 2020 -0700 + + add cypress tests for menu and govbanner expansion + +commit f0e2f0bcf2dd98a3e50619ad7a8bcdbd4508c826 +Author: Spencer Hilvitz +Date: Tue Sep 29 08:29:19 2020 -0700 + + remove size="big" from login button + +commit 7e91cc19d0eae77c91583cc9eac4bed07ac5caf9 +Merge: 9c58035c7 394f9671c +Author: Spencer Hilvitz +Date: Tue Sep 29 07:49:43 2020 -0700 + + Merge branch 'sprint-4-remediations' of github.com:raft-tech/TANF-app into sprint-4-remediations + +commit 394f9671ce8e6010fef6b8b2415d7ff91c447dad +Author: raftergit +Date: Tue Sep 29 10:08:27 2020 -0400 + + restoring requirements.txt + +commit 9c58035c78b79ae300517bf1c33fd10ab63592b5 +Author: Spencer Hilvitz +Date: Mon Sep 28 17:03:00 2020 -0700 + + change notify to alert and all imports updated, fix govbanner logos and remove inline svg + +commit d86689958dd4e5df7d4fb2867cf31a9679349ceb +Author: Spencer Hilvitz +Date: Mon Sep 28 13:09:17 2020 -0700 + + add isClearable to select + +commit 2073885ff49db3dc57b25ff6717bd5eebe5f1886 +Merge: 35f433043 cf9220dc2 +Author: Spencer Hilvitz +Date: Mon Sep 28 13:08:57 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox + +commit c81b3725a18ea0533fd4ca0b5213ab0e76b0b2d6 +Author: Carlton Smith +Date: Mon Sep 28 15:23:39 2020 -0400 + + remove unneeded + +commit 7cee0a8b0803fd29f793dada4caacb2307aa0346 +Author: Carlton Smith +Date: Mon Sep 28 15:20:53 2020 -0400 + + remove tests from coverage + +commit 6aa2396216907e2c89c104a19e3a63c6bbf28d4d +Author: Carlton Smith +Date: Mon Sep 28 13:29:47 2020 -0400 + + clean up + +commit dc0a096acbb4c73b8dbd3bc55bd0214bdb7374f4 +Author: Carlton Smith +Date: Mon Sep 28 12:47:06 2020 -0400 + + create timestamp class + +commit c62f8dc380c386d09444e81b133dc06263ef2d29 +Merge: 8bb728934 cf9220dc2 +Author: Carlton Smith +Date: Mon Sep 28 12:20:54 2020 -0400 + + rebase + +commit 35f4330438c4e27642eaaf6737cc7e64aa505a7a +Author: Spencer Hilvitz +Date: Fri Sep 25 13:50:29 2020 -0700 + + change action to give all data to redux store, clean data in editprofile for select options, remove code for alerts + +commit 49634b4b1c5bbc8db996cfadd9030c8428f6fda3 +Author: Spencer Hilvitz +Date: Fri Sep 25 13:29:04 2020 -0700 + + id given to select + +commit 8db1a8f48e7bbf1c42a0419dd524632665e2883d +Author: Spencer Hilvitz +Date: Fri Sep 25 12:32:12 2020 -0700 + + rename https logo + +commit 55b79eb6ff6ab45115188e533ee5ff5d59534e0b +Author: Spencer Hilvitz +Date: Fri Sep 25 12:19:29 2020 -0700 + + remove uswds notifications from build - warnings still present + +commit 70d4e3c994f924f4ef0f7f9e4c176f73d8c23462 +Merge: 87da229a1 05bcd3b70 +Author: Spencer Hilvitz +Date: Fri Sep 25 12:19:07 2020 -0700 + + Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox + +commit 87da229a1da689d98955d99e63f5e86f0c79b100 +Merge: 6b2fe0271 8bb728934 +Author: Spencer Hilvitz +Date: Fri Sep 25 12:18:42 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox + +commit cf9220dc20ce9dca6b17d6c9c383cedb4531d77f +Merge: 744e82f59 05bcd3b70 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 25 15:09:14 2020 -0400 + + Merge pull request #289 from raft-tech/trussworks-removal + + 280 - Remove Trussworks + +commit 05bcd3b70a77c4fbf4a25988a7c9f9f4edbe3860 +Author: Spencer Hilvitz +Date: Fri Sep 25 11:47:30 2020 -0700 + + fix double nested main-content + +commit c0ab5bf1b0368ecebf729c58788cc79ea9a73a6c +Author: Spencer Hilvitz +Date: Fri Sep 25 09:11:41 2020 -0700 + + fix image path in govbanner and add alt text to login.gov + +commit 8bb728934a3b61998349d720ace809620709f516 +Author: raftergit +Date: Fri Sep 25 09:56:14 2020 -0400 + + adding populate stts to gunicorn start script, moving logging stream tracking statement to common.py, and updating populate stts log to be more descriptive: + +commit 6b2fe02718e9f919cb5b0f40eca371eded731698 +Author: Spencer Hilvitz +Date: Thu Sep 24 15:19:02 2020 -0700 + + add stt.test.js to reducers - all passing + +commit b17ffb306b62bd58c1013340ab0abb0e33818ab9 +Author: Spencer Hilvitz +Date: Thu Sep 24 15:08:04 2020 -0700 + + add stts.test.js - all passing + +commit 6033b144679487c3d04f314ee0e39e8d6894eaaa +Merge: b358b0da6 4142581d6 +Author: Spencer Hilvitz +Date: Thu Sep 24 14:48:57 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox + +commit b358b0da6a3c5554dff1395b95a2214d2f60ac93 +Merge: 096094f78 38f642bff +Author: Spencer Hilvitz +Date: Thu Sep 24 14:48:33 2020 -0700 + + Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox + +commit 38f642bff160a0e089ba4110717d1f3d0c1aaed1 +Author: Spencer Hilvitz +Date: Thu Sep 24 14:07:19 2020 -0700 + + update pa11y + +commit b9ac17c3a42315f819aca87627cf2dd735572797 +Merge: c4787394e 63c9a0ebf +Author: Spencer Hilvitz +Date: Thu Sep 24 14:07:01 2020 -0700 + + Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into trussworks-removal + +commit c4787394e7a7f0a58fae4391e03c0bcc77a572a5 +Author: Spencer Hilvitz +Date: Thu Sep 24 13:58:00 2020 -0700 + + final corrections + +commit 63c9a0ebf1217f2039b3d86de681b605fad6e980 +Merge: 25cc74d86 744e82f59 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Sep 24 16:55:17 2020 -0400 + + Merge branch 'raft-tdp-main' into trussworks-removal + +commit 744e82f590591f6afab3d07167ad658fbdee13f6 +Merge: 13f9785bb 32484615f +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Sep 24 15:54:57 2020 -0400 + + Merge pull request #293 from raft-tech/backend/253/erd + + add software to the deploy build + +commit 32484615f136e3338ef98a30d32b6b49e90a9d30 +Merge: 980cfcb79 13f9785bb +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Sep 24 15:29:43 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/253/erd + +commit 096094f78441faf04d7f72d53c11fb4bc20d39be +Author: Spencer Hilvitz +Date: Thu Sep 24 11:29:40 2020 -0700 + + working on tests + +commit 980cfcb7941db24317cf5473a5572bc8e283a241 +Author: Carlton Smith +Date: Thu Sep 24 13:53:50 2020 -0400 + + add software to the deploy build + +commit 13f9785bb9e6081d5e8d88c7513317531d8a8091 +Merge: 64e333192 5dbb0e4ef +Author: Carl Smith +Date: Thu Sep 24 12:59:29 2020 -0400 + + Merge pull request #284 from raft-tech/backend/253/erd + + Backend/253/erd + +commit b76699bd99caa05f35c98cd195c069a2a21a74be +Merge: 97eee0407 25cc74d86 +Author: Spencer Hilvitz +Date: Thu Sep 24 09:57:05 2020 -0700 + + Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox + +commit 25cc74d86521f54e7a0aa03a7d399c650e849295 +Author: Spencer Hilvitz +Date: Wed Sep 23 15:37:25 2020 -0700 + + fix usa-nav__primary-item font weight and color + +commit 8eac79419e459ebec21d3b9dc8f8a442cedba272 +Author: Spencer Hilvitz +Date: Wed Sep 23 15:10:35 2020 -0700 + + fix mobile primary nav item styling + +commit 97eee040791dc38efbebed33deaab2675750760d +Author: Spencer Hilvitz +Date: Wed Sep 23 15:09:29 2020 -0700 + + remove setalert, comment out theme + +commit 9bbea87c4a9f1ce1a3ad6adcfba8bcd886d32c16 +Merge: 0658f1985 a49b2412b +Author: Spencer Hilvitz +Date: Wed Sep 23 14:28:05 2020 -0700 + + Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox + +commit a49b2412bfda2ad0caca764adafe4dc45822097f +Author: Spencer Hilvitz +Date: Wed Sep 23 14:22:48 2020 -0700 + + fix double classname + +commit 3b645ca2bf28c3c9e4403995975a0ea2277b2ce7 +Author: Spencer Hilvitz +Date: Wed Sep 23 14:21:45 2020 -0700 + + rename scss variables based off of figma: https://www.figma.com/file/jpbLzRQt7vl6q8qtfeQ6BR/USDWS\?node-id\=0%3A1 + +commit 0658f1985dfda4d3607262b9f512fbb08ad4f2a1 +Author: Spencer Hilvitz +Date: Wed Sep 23 14:15:53 2020 -0700 + + rename scss variables based off of figma: https://www.figma.com/file/jpbLzRQt7vl6q8qtfeQ6BR/USDWS\?node-id\=0%3A1 + +commit 0bf76e48148e8d36feec4bcdb460502efc3125e5 +Merge: e25d044da 87d8b3efd +Author: Spencer Hilvitz +Date: Wed Sep 23 13:53:48 2020 -0700 + + Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox + +commit 87d8b3efd317090689188510d4896cfb12a6f8ab +Author: Spencer Hilvitz +Date: Wed Sep 23 13:26:51 2020 -0700 + + fix cypress tests + +commit 7bf13c17fad9c4530b300c32bfdf1d487a6ccda1 +Author: Spencer Hilvitz +Date: Wed Sep 23 13:20:21 2020 -0700 + + fix tests and remove dashboard page from routes + +commit baed12305cfd3f148428e353f48655b1b92bbcda +Author: Spencer Hilvitz +Date: Wed Sep 23 12:49:25 2020 -0700 + + move scss variables from index.scss to uswds-theme-color.scss + +commit dc0292ba6b4eb0063b045579ce1a950a62f683c8 +Author: Spencer Hilvitz +Date: Wed Sep 23 12:38:30 2020 -0700 + + replace hex codes with scss variables in index.scss + +commit 3552ba70253c784caef31aeb676d65fc3dfa89d6 +Author: Spencer Hilvitz +Date: Wed Sep 23 12:23:12 2020 -0700 + + update editprofile.scss, add mobile breakpoint, add login.gov logo + +commit 4142581d64a1e115dab18054eaa69dcfa691dace +Author: Carlton Smith +Date: Wed Sep 23 14:46:05 2020 -0400 + + testing adjustments + +commit e25d044da17bbf65d5c6c9b966057dbd79a78155 +Author: Spencer Hilvitz +Date: Wed Sep 23 11:05:11 2020 -0700 + + stts working, in the middle of figuring out styling + +commit 68a6c43db0097f512cf64269c1ee493c83d0c133 +Author: Carlton Smith +Date: Wed Sep 23 12:54:31 2020 -0400 + + api documentation + +commit a0007243e33941aefcb67d6d7f5a273b5da6e9ac +Author: Carlton Smith +Date: Wed Sep 23 09:43:56 2020 -0400 + + remove unused module + +commit 035f65013b4a117eb056cad3991c0d23535a134d +Author: Carlton Smith +Date: Wed Sep 23 09:16:11 2020 -0400 + + remove redundant exception + +commit c7af7052c0a58308b408c9a8e2774635f58574f3 +Merge: 366e3d1c5 74902acc3 +Author: Spencer Hilvitz +Date: Tue Sep 22 15:15:25 2020 -0700 + + Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox + +commit 366e3d1c538600d68b23220b00133a0677046f10 +Author: Spencer Hilvitz +Date: Tue Sep 22 14:57:57 2020 -0700 + + replace arial fonts with variable defined in index.scss + +commit d484e58a61e355612500217bb711440bb704f0f2 +Author: Spencer Hilvitz +Date: Tue Sep 22 14:48:36 2020 -0700 + + use merriweather token in splaspage.scss + +commit 8f7f743e44fc1ad7f6c7ba84e881daa2b5935ef9 +Author: Spencer Hilvitz +Date: Tue Sep 22 13:22:38 2020 -0700 + + update cypress tests + +commit 74902acc335f1fbfd290c11dc5ca27088ab26661 +Author: Carlton Smith +Date: Tue Sep 22 16:22:43 2020 -0400 + + API Tests + +commit 35442b31e31c6412d656a2bc74b81e7685675558 +Author: Spencer Hilvitz +Date: Tue Sep 22 13:11:52 2020 -0700 + + fix footer logo + +commit 993e978ab2dd1cfd4a8a379921a1fae3d4035b93 +Author: Spencer Hilvitz +Date: Tue Sep 22 13:07:01 2020 -0700 + + fix tests + +commit d04a6b975b09b2619b204274d7019d039591e9ed +Author: Spencer Hilvitz +Date: Tue Sep 22 11:31:40 2020 -0700 + + switch to uswds fully + +commit f1e9463131ba5f4ac9e5b9c71c1ae0193b1892d7 +Author: raftergit +Date: Tue Sep 22 12:14:14 2020 -0400 + + migrated populate stts command to stts app and added unit testing of STT and Region objects + +commit 2c99fd4d3c5dc06dfb1dca22360158059b6c2941 +Author: Carlton Smith +Date: Tue Sep 22 10:00:37 2020 -0400 + + add requirements back + +commit bd93b5523a2ab83526aa1d2daad771e733c43552 +Author: Carlton Smith +Date: Tue Sep 22 09:54:21 2020 -0400 + + add logging + +commit 85f37c72ac5db022da20415d378189561554151b +Author: Carlton Smith +Date: Tue Sep 22 08:18:33 2020 -0400 + + change stttype to entitytype + +commit 163a1ab8e46cb96097551293ab0f3cdfb262a736 +Author: Carlton Smith +Date: Mon Sep 21 16:25:42 2020 -0400 + + remove ignored + +commit 8dd7cfde86dee197ba179b63e2da66d4de8257d8 +Author: Carlton Smith +Date: Mon Sep 21 16:23:51 2020 -0400 + + endpoint for stts in default order + +commit 7f7eb476dab71b4a1dcc3370049399378230cd03 +Author: Carlton Smith +Date: Mon Sep 21 15:35:09 2020 -0400 + + alpha endpoint + +commit a00b124a59796ccbc50d2ca7adf37c5df09685d7 +Author: Carlton Smith +Date: Mon Sep 21 14:44:30 2020 -0400 + + alphabetized states. + +commit b30eada76a5100844021983f16e166444ccc12fc +Author: Carlton Smith +Date: Mon Sep 21 14:19:59 2020 -0400 + + add region to the string representation + +commit b068595a9a70173a5f3efe8e9d3a14541a843d6c +Author: Carlton Smith +Date: Mon Sep 21 14:13:43 2020 -0400 + + linting fixes + +commit 36297513c6b1a691a527fcaf94ee12abd06e60d0 +Author: Carlton Smith +Date: Mon Sep 21 14:03:11 2020 -0400 + + move stts to their own app + +commit c2b3186388581e582f519c90d691752f5e0f15c2 +Author: Spencer Hilvitz +Date: Fri Sep 18 19:57:39 2020 -0700 + + remove unnecessary useState in Header.jsx, comment out all .scss files except splashpage, comment out all bad css to try and override with new classes + +commit 120d2c3a6000e1cfc7fa00d5345380391e54396b +Author: Spencer Hilvitz +Date: Fri Sep 18 16:19:34 2020 -0700 + + notify working, added govbanner, icons still not working + +commit fb3db96f37ac8e1bfe747e36e811b5808c1cceb1 +Author: Spencer Hilvitz +Date: Fri Sep 18 14:57:32 2020 -0700 + + comment out dashboard, add uswds javascript + +commit 8f8a8b76300fe7d119ece2a4bae12d68d601c0aa +Author: Spencer Hilvitz +Date: Fri Sep 18 13:43:54 2020 -0700 + + editprofile styled correctly with uswds and make some changes to header + +commit dd1eda2003e0041ea0090420635ccde4e66e7e2f +Author: Spencer Hilvitz +Date: Fri Sep 18 13:18:36 2020 -0700 + + import all .scss files into index.scss + +commit 72bd4f7e88735df685966d7fe97e94d2a8638af9 +Author: Spencer Hilvitz +Date: Fri Sep 18 12:50:40 2020 -0700 + + footer and splashpage refactored + +commit 383a3774cd984a8b4c24c242cfd652c508141aa3 +Author: Spencer Hilvitz +Date: Fri Sep 18 12:12:32 2020 -0700 + + header styling done - functionality not working + +commit 5da0d0f482f4d17be329744150c5c669938f4228 +Author: Spencer Hilvitz +Date: Fri Sep 18 12:01:09 2020 -0700 + + uswds sort of working, header seems fine - still problems with gov banner + +commit bb595a644a0d76d8dac60dc0da439280a2f30aaf +Author: Spencer Hilvitz +Date: Fri Sep 18 09:17:31 2020 -0700 + + move all .scss files to assets dir, try to add uswds - getting error.svg not found error, BEFORE gulp + +commit fe535e0b8fd3edb5cb3cf6aa942e06d5305a8fdc +Author: raftergit +Date: Fri Sep 18 09:50:54 2020 -0400 + + updates to endpoint name + +commit 9991253a4262775edda20dc2dbb7eb9d515af24e +Author: raftergit +Date: Fri Sep 18 09:04:07 2020 -0400 + + proto-type endpoint for getting states /tribes/ territories organized by region + +commit 34e475f676ccff8d258d8122b4a9b7b561efa69d +Author: raftergit +Date: Fri Sep 18 07:59:30 2020 -0400 + + Adding CSV files to manage any changes needed to be made to STTs + +commit 5c14d2deedfb34ef388311abe6b28c92b4b1e1be +Author: Spencer Hilvitz +Date: Thu Sep 17 17:43:21 2020 -0700 + + add uswds package, update header component + +commit 5dbb0e4ef7e9a1f2d33fe306fe48059e28971283 +Author: Carlton Smith +Date: Thu Sep 17 17:50:55 2020 -0400 + + move package to dev and remove unneeded + +commit 7fafb64812d6aeb907dd634e44b4d2185dcb385a +Author: Carlton Smith +Date: Thu Sep 17 16:24:57 2020 -0400 + + add graph models to generate ERD + +commit 97b1f2bb6a837bdad054c0b8ebe95f40640512ad +Merge: 06d6153ee 64e333192 +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Thu Sep 17 15:08:10 2020 -0400 + + Merge pull request #55 from raft-tech/raft-tdp-main + + SPRINT 3 RELEASE + +commit 64e333192f41445386d702779627382c411ae0fd +Merge: f93f854ce 62b2d107f +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 16 16:07:55 2020 -0400 + + Merge pull request #262 from raft-tech/spot-check-remediations + + Frontend Spot check remediations + +commit 62b2d107ffe5c40f949a1f5ff514d199762b22d5 +Merge: e7be0e334 f93f854ce +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 16 15:57:28 2020 -0400 + + Merge branch 'raft-tdp-main' into spot-check-remediations + +commit f93f854ce26956e752cff6c0f176167551fcb7e4 +Merge: 18ee0d2bc 2d0dd62fc +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 16 15:57:13 2020 -0400 + + Merge pull request #273 from raft-tech/backend/sprint3-review-remediation + + Backend Remediations in response to the Sprint 3 PR review + +commit e7be0e334f8eb68aefab1d5f93d9c767ae2d5cc9 +Author: Spencer Hilvitz +Date: Wed Sep 16 07:57:38 2020 -0700 + + replace placeholder footer logo with ACF logo + +commit d6dd7862d0ab0d4f970008d677f3316ff2b84c4a +Author: Spencer Hilvitz +Date: Tue Sep 15 16:57:22 2020 -0700 + + add inline comment about minor changes before beta release + +commit 4e4b66715803a0fd0dd31077c3a1fa25b7b129f3 +Author: Spencer Hilvitz +Date: Tue Sep 15 16:44:21 2020 -0700 + + clean up header.scss + +commit 3c69fe60f3ebc4e8ef724fb74efb41b75d0efffa +Author: Spencer Hilvitz +Date: Tue Sep 15 16:43:47 2020 -0700 + + change active welcome to red color + +commit 1b227a3e7dd3bc1765e4ba781bdff33c16866a60 +Author: Spencer Hilvitz +Date: Tue Sep 15 16:05:42 2020 -0700 + + change active welcome :after to red color, change header font, add cardheader and change it's font, add box-shadow to resource cards + +commit 238b8c6191d5709b58ecfb83931d4449eeba2689 +Author: Spencer Hilvitz +Date: Tue Sep 15 13:56:56 2020 -0700 + + rollback login.gov logo changes + +commit ad6d1be78a01a2fab59ddb64d5dfc872d297dc6a +Author: Spencer Hilvitz +Date: Tue Sep 15 13:33:34 2020 -0700 + + change login cypress tests to pass with login.gov logo, remove commented out code in _global.scss, add login logo + +commit 2d0dd62fce37709e8813f4ba8ea8a0b6410377a8 +Author: raftergit +Date: Tue Sep 15 16:05:14 2020 -0400 + + Updating frontend README.md first step in regards to creating .env.local + +commit c4e1d9eebda47f1e7f619b5f37a378b4500118bf +Author: raftergit +Date: Tue Sep 15 15:47:06 2020 -0400 + + updating docstring comments on test_auth.py to be more clear on logout tests + +commit 6169aaba408dda1a9942d5516e9bc16b07b3807c +Author: Carlton Smith +Date: Tue Sep 15 15:14:17 2020 -0400 + + add test for email link and button + +commit 88aec966cc70cc50ae5c8104dea262156ba0707a +Author: Carlton Smith +Date: Tue Sep 15 14:20:26 2020 -0400 + + added tests to cover different sections of the page + +commit 39a7ba2957e8535e1399ba819df164693be16fd0 +Merge: 20f0b25e7 18ee0d2bc +Author: Spencer Hilvitz +Date: Tue Sep 15 09:45:39 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into spot-check-remediations + +commit 20f0b25e7f02d30688ceb8bf9cd3435a5ebee640 +Author: Spencer Hilvitz +Date: Tue Sep 15 09:45:28 2020 -0700 + + update comment on splashpage to include issue # + +commit 1e37c6f96afed77eaa9f571c9999554d47e0a870 +Author: raftergit +Date: Tue Sep 15 12:34:24 2020 -0400 + + expanding test coverage of logout/oidc endpoint + +commit d1a72fc99e9d7369e081a6986f7cdc67f4caf045 +Author: raftergit +Date: Tue Sep 15 10:45:51 2020 -0400 + + resolving linting warnings + +commit ee4cb67729e7fabdb7c7cba5d73188944bd43171 +Author: raftergit +Date: Tue Sep 15 09:53:06 2020 -0400 + + Remediations in response to the Sprint 3 PR review + + - adding more test cases to the set_profile endpoint test suite + + - made the logic around creating a user session in login.py DRYer + +commit 18ee0d2bc686f5c436b536cfefe46ca692d92f07 +Author: Shubhi Mishra +Date: Mon Sep 14 21:56:10 2020 -0400 + + Update issue templates + + Updated the template based on @221 + +commit 36888f5d972cd00d93bf4ebd0a5381d58d29ac9d +Author: Spencer Hilvitz +Date: Mon Sep 14 16:16:12 2020 -0700 + + update comment on splashplage, update editprofile scss + +commit 0a3b22ddfcba8579b212392bbb66f377b8864121 +Author: Spencer Hilvitz +Date: Mon Sep 14 15:40:28 2020 -0700 + + change margin-bottom-6 to margin-bottom-5 in splashpage.jsx + +commit ffacf1332314b7c132c8a6d38c46b7bba7b8f59c +Author: Spencer Hilvitz +Date: Mon Sep 14 15:36:32 2020 -0700 + + add splashpage.scss comment re: double classes + +commit 9168ca237a8c2e18603fc3922958aa4a8a7e32e5 +Merge: 247388c12 2475aa0aa +Author: Spencer Hilvitz +Date: Mon Sep 14 15:34:19 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into spot-check-remediations + +commit 247388c124b94ffa05c055c7d3aea5b0a56d879f +Author: Spencer Hilvitz +Date: Mon Sep 14 15:34:02 2020 -0700 + + fix grid layout for resource cards, add correct colors, add correct fonts, change email to email link, update styling + +commit d4513ebfa68e985a6f8cb36c2b01b768b56a86c2 +Author: Spencer Hilvitz +Date: Mon Sep 14 11:40:39 2020 -0700 + + change p email in resources section to link + +commit 2475aa0aa1d628be52c30d4184bbe0600fcd8e46 +Merge: 88076ee08 398758642 +Author: Shubhi Mishra +Date: Sun Sep 13 21:17:12 2020 -0400 + + Merge pull request #268 from raft-tech/snyk-reporting + + securtiy vulnerability reports for sprint 3 + +commit 3987586427624b9e2f958a884ce162e595d2efcf +Author: raftergit +Date: Sun Sep 13 21:08:29 2020 -0400 + + securtiy vulnerability reports for sprint 3 + +commit 88076ee08578f34994a8e3ccef73e20945371c27 +Merge: ca4e96cbb d8fde9bdd +Author: Shubhi Mishra +Date: Sun Sep 13 20:29:46 2020 -0400 + + Merge pull request #267 from raft-tech/raft-main-checks + + Updates to badge hyperlinks and README.md grammar + +commit d8fde9bddff86ecf18645844f78cefbcbf8a07b1 +Author: raftergit +Date: Sun Sep 13 19:29:40 2020 -0400 + + spot check updates + +commit 521b12271938bbe4944514ccd47fcdf48a387328 +Author: raftergit +Date: Sun Sep 13 09:56:52 2020 -0400 + + updates to badge hyperlinks + +commit 490f944ca0a28f1dea1a7bc58e48c0adc15e05ca +Author: Spencer Hilvitz +Date: Fri Sep 11 13:42:47 2020 -0700 + + add classnames to secondary links and update corresponding tests in header.test.js + +commit ce977b99da75d11f3664456204b65a1043f54809 +Author: Spencer Hilvitz +Date: Fri Sep 11 13:14:13 2020 -0700 + + switch to using link component from trussworks + +commit 5fa6891c308ebeab7459cf055be9dd37c084de07 +Author: Spencer Hilvitz +Date: Fri Sep 11 13:06:35 2020 -0700 + + change secondary nav from buttons to links + +commit e0e7ed40059ac8953ae6eb7c10468ea38d87c173 +Merge: 4063cba11 ca4e96cbb +Author: Spencer Hilvitz +Date: Fri Sep 11 12:35:22 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into spot-check-remediations + +commit 4063cba11ff21a86778cb8678fc82889ad442242 +Author: Spencer Hilvitz +Date: Fri Sep 11 12:34:35 2020 -0700 + + change Header secondarynavlinks + +commit ca4e96cbb4abfd3d4711a60fd385ad274214c79a +Merge: fe1119239 1ba263b65 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 11 15:12:42 2020 -0400 + + Merge pull request #261 from raft-tech/documentation/sprint3-updates + + update docs + +commit 860b1ef84c64ada7ab8e42876c97907ce4de8599 +Author: Spencer Hilvitz +Date: Fri Sep 11 12:04:47 2020 -0700 + + switch utility grids with component grid in footer.jsx + +commit 1ba263b65e7bf14064f8b2057e65474b4bab9ff2 +Author: Carlton Smith +Date: Fri Sep 11 14:58:12 2020 -0400 + + update docs + +commit cc93052737827cbf797be7bff159445e9997d64f +Author: Spencer Hilvitz +Date: Fri Sep 11 11:20:20 2020 -0700 + + move skip to main content from header to app above gov banner + + i could fix this by adding a tabIndex to the skipnav but that creates another accessibility warning + +commit ecf310fdf1918f9c898b3dc29477736349ca7164 +Author: Spencer Hilvitz +Date: Fri Sep 11 11:13:10 2020 -0700 + + use shadow-2 utility in splashpage, update skip to main content with tabIndex + +commit fe1119239c20d89527cf49b7885b1ab068475b75 +Merge: 666c19516 8b2def642 +Author: Carl Smith +Date: Fri Sep 11 12:13:08 2020 -0400 + + Merge pull request #260 from raft-tech/RafterGit-patch-1 + + Update config.yml + +commit 8b2def642040496c111f3031d2d6d987a58ea311 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 11 12:05:45 2020 -0400 + + Update config.yml + +commit 666c19516e9d41832b2f73b04f8dc48c521a85ab +Merge: 2a9bc73a9 b026634a9 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 11 12:02:34 2020 -0400 + + Merge pull request #256 from raft-tech/191-user-form + + 191 user form + +commit b026634a9b2f31ce318caadc5951187dd8f44c06 +Merge: f184dca4c 2a9bc73a9 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 11 10:41:42 2020 -0400 + + Merge branch 'raft-tdp-main' into 191-user-form + +commit 2a9bc73a9be5156904deb6a3a3eb8016f46916af +Merge: 8ba78fca7 6cae67bab +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 11 10:23:00 2020 -0400 + + Merge pull request #251 from raft-tech/187-markdown-badges + + 187 markdown badges + +commit 6cae67bab94ca598442b28eae7d1fd4c5e4e15d9 +Author: raftergit +Date: Fri Sep 11 10:15:20 2020 -0400 + + updating code coverage badges to report from HHS codecov.io + +commit 87d0d597662ab6a3f059294e11a16249a80155f9 +Merge: 3b5f6b512 034e20abb +Author: raftergit +Date: Fri Sep 11 10:00:20 2020 -0400 + + Merge branch '187-markdown-badges' of https://github.com/raft-tech/TANF-app into 187-markdown-badges + +commit 3b5f6b51286f4fc0e73f77e7a08906b9365b114b +Author: raftergit +Date: Fri Sep 11 10:00:12 2020 -0400 + + adding documentation for github badges to tdrs-backend/docs + +commit 034e20abb61cd1179c7a9bbfd4830bdd186608dd +Merge: 3735ac6f0 8ba78fca7 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Sep 11 07:13:31 2020 -0400 + + Merge branch 'raft-tdp-main' into 187-markdown-badges + +commit f184dca4c5017f2ca7833ef8f9f498dad2d40b3d +Merge: 5d49de522 8ba78fca7 +Author: Spencer Hilvitz +Date: Thu Sep 10 19:06:16 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 191-user-form + +commit 8ba78fca749512930717c3b36545728ca7dbb693 +Merge: b1d4156aa 2267ba5f4 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Sep 10 21:36:18 2020 -0400 + + Merge pull request #257 from raft-tech/documentation-updates + + Documentation updates + +commit 2267ba5f4c8f4da72b90fc96d81b3f56a8fc8737 +Author: Spencer Hilvitz +Date: Thu Sep 10 18:20:07 2020 -0700 + + update tdrs-frontend/README.md option 3 + +commit 3735ac6f0274f07fef0b2945d7a0f32951cc9721 +Author: raftergit +Date: Thu Sep 10 21:08:10 2020 -0400 + + restoring default behavior + +commit 5d49de52245b98cd40cd59b36a7c57276ce6ee10 +Author: Spencer Hilvitz +Date: Thu Sep 10 18:05:27 2020 -0700 + + change welcome to splashpage, change signup to editprofile, add email to header, change login redirect to /edit-profile + +commit b3e6222ae1f165a7a6590a1ef174b11d6b4abbe3 +Author: raftergit +Date: Thu Sep 10 20:45:26 2020 -0400 + + trying out new tag formatting for shields.io + +commit 3d148d165a0ef23e01790959d157adaf3448ca49 +Author: raftergit +Date: Thu Sep 10 19:36:53 2020 -0400 + + adjusting length of logging statement + +commit 131ebd40b2e7beb344955f04394fce1618abeb98 +Author: raftergit +Date: Thu Sep 10 19:32:10 2020 -0400 + + updates in regards to linter correction tool + +commit 7eee85e681d4ab0298b719f3205d047459d85bdc +Author: raftergit +Date: Thu Sep 10 19:31:07 2020 -0400 + + updates to documentation and logging of API calls + +commit c335364b28e277e1e4035f052628a1832bbdb41d +Author: Spencer Hilvitz +Date: Thu Sep 10 16:03:17 2020 -0700 + + remove unnecessary class name + +commit cd6454a4e4ae11125e626dc8210688b165cfe5f4 +Merge: 3bdad648d b1d4156aa +Author: Spencer Hilvitz +Date: Thu Sep 10 15:34:57 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 191-user-form + +commit 3bdad648de7828a30b5618b9a4bea64f18b0b23e +Author: Spencer Hilvitz +Date: Thu Sep 10 15:05:55 2020 -0700 + + add jsdocs info to header, footer, and signup components + +commit b1d4156aa9c6544cd504a9b9589796a830be263a +Merge: 9a45258ca 379c16428 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Sep 10 17:57:09 2020 -0400 + + Merge pull request #255 from raft-tech/frontend/sprint3/accessibility-check + + Accessibility and Footer Changes + +commit 379c1642896850f09893778c7e7480c6f2a0a50a +Author: Carlton Smith +Date: Thu Sep 10 17:31:40 2020 -0400 + + remove padding + +commit efe9cda9e006dfd89de4e9591655e7914bc687f0 +Author: Carlton Smith +Date: Thu Sep 10 17:30:20 2020 -0400 + + remove tota11y + +commit ab8fccd0985256e0871e2cdb9eb6a6dda1ceacf4 +Author: Spencer Hilvitz +Date: Thu Sep 10 14:08:02 2020 -0700 + + fix signup test + +commit 17461385d2c2bf9b5e00c21ed85c76bb4cb7f4ce +Author: Spencer Hilvitz +Date: Thu Sep 10 13:58:31 2020 -0700 + + remove card and fieldset from signup.jsx + +commit 278e0590a7f32c54eabbb07381dcfa37b9dcd5d2 +Author: Carlton Smith +Date: Thu Sep 10 16:37:49 2020 -0400 + + use placeholder + +commit ff47de78ce2c9f3fee0cc47d5b1703756803c932 +Author: Spencer Hilvitz +Date: Thu Sep 10 12:48:16 2020 -0700 + + fix accessibility issues - no h1 (added h1) and no fieldset legend (added legend) + +commit 7e555dd95c2fbcd689e1628e557e4b17613371cc +Merge: da06d93c9 9a45258ca +Author: Spencer Hilvitz +Date: Thu Sep 10 12:19:29 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 191-user-form + +commit 42e01ce4efc5cf815ff8fadfb74f21ae10c6804c +Author: Carlton Smith +Date: Thu Sep 10 15:10:27 2020 -0400 + + add tota11y for accessibility, make main-content section global for accessibility, fix footer pushing up on page (noted issue in uswds) + +commit da06d93c9ca409844daf9aedcbe75f31d21f27dd +Author: Spencer Hilvitz +Date: Thu Sep 10 11:37:59 2020 -0700 + + fix header tests, add signup tests and refactor signup to remove mocksubmit + + the submit functionality is not included in this ticket + +commit 5e153c683d12b2d1b2536d8ec9e8cb5a3aaa6f36 +Author: Spencer Hilvitz +Date: Thu Sep 10 11:01:54 2020 -0700 + + add signup component and test file, change welcome.jsx jsdocs, change footer component, add signup route + +commit 5dba5ce87fdf8f710aea07c0537426e24193a16f +Author: raftergit +Date: Thu Sep 10 12:09:45 2020 -0400 + + changing branch check for dev back to raft-tdp-main + +commit 69dcda8142ad55dede86c6a42f64c5ef8119ba8c +Author: raftergit +Date: Thu Sep 10 11:53:31 2020 -0400 + + removing redundant unit test case from django job + +commit ab366ba90d1d44ee1d0066249f130fed7f02fb18 +Author: raftergit +Date: Thu Sep 10 11:44:59 2020 -0400 + + resolving ci/cd pipeline issues with docker-compose spin up process + +commit 7ded1f1b7d138be36b78a6281bc362340daa9ca5 +Author: raftergit +Date: Thu Sep 10 11:42:09 2020 -0400 + + testing full build process with new code coverage reporting logic + +commit 9ea79f18fab7e440f17e5cab767562db18141132 +Author: raftergit +Date: Thu Sep 10 11:24:50 2020 -0400 + + testin docker clean up logic and full backend test suite + +commit fabf0dca39c4e846c84d4a698a8cc3ec629b14ec +Author: raftergit +Date: Thu Sep 10 04:26:55 2020 -0400 + + adding a volume field to the tdrs-backend docker-compose.yml so the coverage.xml can be copied to the working directory + +commit e2dab6ea90ccacc2e0c3f1ecdac0147bfcf4296b +Author: raftergit +Date: Thu Sep 10 04:07:37 2020 -0400 + + testing logic to block coverage upload if not on target branch + +commit a2110218a6d7c321692f7a4e4a1a3dd524ce7438 +Author: raftergit +Date: Thu Sep 10 03:55:23 2020 -0400 + + adding targeted repo options to the circleci build status badges + +commit 2c7a67204b0d32de51f66b1c09cc85d4fd2c82e4 +Author: raftergit +Date: Thu Sep 10 03:38:35 2020 -0400 + + Adding Markdown Status Badges + + This branch updates the root directory README.md to include status + badeges for raft-tech/TANF-app/raft-tdp-main and HHS/TANF-app/main. + + 1) The Build status badges are derived from the current state of the + circleci CI/CD piplines of the following + + Dev: + + raft-tech/TANF-app/raft-tdp-main + + HHS: + + HHS/TANF-app/main + + 2.) The updates should only trigger on these branches in their + respective repos + + 3.) The vulnerability badges depend on Snyk.io and may have a delay + on occasion while pinging the Snyk.io servers for an update. + +commit 9a45258ca427f619b04038d79a82ad81481f1134 +Merge: a52d59996 f88c338e7 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 20:53:24 2020 -0400 + + Merge pull request #250 from raft-tech/deployment-remediations + + Deployment Remeditions + +commit f88c338e7cb6c6d9977c5dbc03d7f90607efcc78 +Author: raftergit +Date: Wed Sep 9 20:31:14 2020 -0400 + + updating README.md with more details of cloud foundry cli output + +commit 84b2d0cf81865cfc25a2417f3371232a00989f82 +Author: raftergit +Date: Wed Sep 9 19:44:33 2020 -0400 + + Technical Debt Resolution + + 1.) Resolving Snyk High Severity vulnerability by upgrading + django from version 3.1 to 3.1.1 + + 2.) Updating README.md documentation of frontend and backend + to be clear to new users + + 3.) Resolving styling issues with Footer.js in the frontend when deployed to + cloud.gov + +commit a52d5999684e18ff813279a47c519126a533c10b +Merge: dd12bb254 e3edbdb4a +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 17:21:00 2020 -0400 + + Merge pull request #246 from raft-tech/fix-readme + + Updates to Pa11y Config and Frontend/Backend README.md + +commit e3edbdb4ae07dca8811f9b430509582af71311fd +Merge: dcdb49375 dd12bb254 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 17:09:49 2020 -0400 + + Merge branch 'raft-tdp-main' into fix-readme + +commit dd12bb25437cb540720bef3181231b22e5c24ca0 +Merge: 5aad172a1 b2cd78869 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 17:09:30 2020 -0400 + + Merge pull request #247 from raft-tech/name-profile-api-endpoint + + First Name And Last Name User set_profile Update API Endpoint + +commit dcdb493757251ce5f4e0023d44308e6a2857edfd +Merge: 6687c931a 5aad172a1 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 17:04:22 2020 -0400 + + Merge branch 'raft-tdp-main' into fix-readme + +commit b2cd78869518a113a58de400bafb8734a2be313a +Author: raftergit +Date: Wed Sep 9 16:59:16 2020 -0400 + + updating the comment in serializers.py to reflect the behavior shown + +commit 05ddd8975348370d3a6a7d5e852b18a89dcbc6da +Merge: c73b289f0 5aad172a1 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 16:51:24 2020 -0400 + + Merge branch 'raft-tdp-main' into name-profile-api-endpoint + +commit 5aad172a1a3ed27892f6bce242d24f7ccf878ded +Merge: 23d97b318 a683746ca +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 16:45:11 2020 -0400 + + Merge pull request #236 from raft-tech/backend/209/login-testing + + Backend/209/login testing + +commit a683746ca042e76d614909f791255fec2c4d95ea +Merge: a753b554f 23d97b318 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 16:38:04 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/209/login-testing + +commit 23d97b3187c8946f51dedb8abccd2deef7d84b06 +Merge: 166968bbf 355af37b9 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 16:36:19 2020 -0400 + + Merge pull request #201 from raft-tech/172-landing-pages + + 172 Landing Pages + +commit c73b289f0ea6e1520a3d4225748df3a73aaa1456 +Author: raftergit +Date: Wed Sep 9 16:35:34 2020 -0400 + + updating comments in test_api.py to be more detailed + +commit d3f63119c4e84b98b004a8fd4a32104e06901fa9 +Author: raftergit +Date: Wed Sep 9 16:21:50 2020 -0400 + + removing un-needed PUT and PATCH call support from set_profile endpoint + +commit 3facefefc510d0889a52f9e38f242b37383b36d1 +Author: raftergit +Date: Wed Sep 9 16:09:41 2020 -0400 + + additional testing for special characters + +commit 355af37b9f4f3077b3b703095c55ddfec53d121c +Author: Spencer Hilvitz +Date: Wed Sep 9 12:59:32 2020 -0700 + + remove unnecessary footer.scss import + +commit ff8b9f28b0b5e098f803eed8b004a5bc3f96418f +Author: Spencer Hilvitz +Date: Wed Sep 9 12:55:29 2020 -0700 + + remove unused footer.scss, remove unnecessary p tag, remove header.scss + +commit 0e7bbef979eede55b5122abe3ad7acc20d56f97a +Author: raftergit +Date: Wed Sep 9 15:39:40 2020 -0400 + + removing logic to skip a if JWT_KEY not found in test_auth.py + +commit 25e237e533caf7e6cecd08f0874fdd1d26f7e271 +Author: raftergit +Date: Wed Sep 9 15:21:35 2020 -0400 + + updating spaced name test + +commit fc6c47f6b0caa3f9aa2586c0b4f7088da5ba3680 +Author: raftergit +Date: Wed Sep 9 15:18:01 2020 -0400 + + resolve linting warning + +commit a753b554fbfc3c11903ce36fc17172c37b03e4ef +Author: Carlton Smith +Date: Wed Sep 9 15:08:14 2020 -0400 + + update notes + +commit 0353332c442ddd2a766f22d594f846192de37e17 +Merge: bf59d441a 077cb6cda +Author: Carlton Smith +Date: Wed Sep 9 15:06:04 2020 -0400 + + Merge branch 'backend/209/login-testing' of github.com:raft-tech/TANF-app into backend/209/login-testing + updates for circleci + +commit bf59d441a730de67dc7a2a96f615ae4eabede805 +Author: Carlton Smith +Date: Wed Sep 9 15:05:36 2020 -0400 + + gitignore update and env comment + +commit 1d42d9163bb0965714d4ab7ee711b5adb35b1be2 +Author: raftergit +Date: Wed Sep 9 14:54:54 2020 -0400 + + adding additional test conditions for name variations + +commit fd09447b0a22e23e4aa4e0473ea9ba9fd0573de7 +Author: Spencer Hilvitz +Date: Wed Sep 9 11:10:24 2020 -0700 + + fix welcome tests and change welcome component name + +commit 0be51ae5f428f191a85354661e75b36030aaf3c1 +Merge: 076005f04 166968bbf +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 13:16:10 2020 -0400 + + Merge branch 'raft-tdp-main' into 172-landing-pages + +commit 6687c931a73f7905f4a73465c576f20cd5c6b012 +Merge: 1d11aab44 166968bbf +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 13:14:32 2020 -0400 + + Merge branch 'raft-tdp-main' into fix-readme + +commit 78775e8da7dd851ab1074a25a0409386817decad +Merge: 05b06aa71 166968bbf +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 13:12:41 2020 -0400 + + Merge branch 'raft-tdp-main' into name-profile-api-endpoint + +commit 077cb6cda74a31f667e9cafc5ff43f09aa46bc18 +Merge: e4c374c63 166968bbf +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 13:12:20 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/209/login-testing + +commit 166968bbf182fc793115f21c354f7ec3b6a20821 +Merge: eb2f5b13c 85ec90738 +Author: Spencer Hilvitz +Date: Wed Sep 9 10:10:53 2020 -0700 + + Merge pull request #249 from raft-tech/snyk-vulnerability-updates + + Removing snyk from circleci in support of using Snyk Github Integration + +commit 85ec907381bea1a50b0294103cab891f3b0da574 +Merge: 6d4be3114 eb2f5b13c +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Sep 9 12:52:12 2020 -0400 + + Merge branch 'raft-tdp-main' into snyk-vulnerability-updates + +commit 6d4be3114e4f45c92fee31c4b372134ad027a9ce +Author: raftergit +Date: Wed Sep 9 12:44:36 2020 -0400 + + updating test for spin up process to be a background process + +commit 076005f0467a8d3ea4938bde2cfc18a23441cc0d +Author: Spencer Hilvitz +Date: Wed Sep 9 09:43:05 2020 -0700 + + add usa-current check for welcome link + +commit cdcc417c5d264dda3b4b2b7c4d6d4fca346d8688 +Author: raftergit +Date: Wed Sep 9 12:41:43 2020 -0400 + + updating test for spin up process + +commit 4a0fd332fabe8c6a7faaad296d0a101ce19ee243 +Author: raftergit +Date: Wed Sep 9 12:37:35 2020 -0400 + + updating test for spin up process + +commit b811a192954c52547b78dd2ff4e8a53542055fe8 +Author: raftergit +Date: Wed Sep 9 12:33:11 2020 -0400 + + removing snyk from circleci in support of using Snyk Github Integration + +commit f2d7d049f1d756d48f06297fb7eb029b960de32d +Author: Spencer Hilvitz +Date: Wed Sep 9 09:14:34 2020 -0700 + + add visually-hidden span to Welcome login button + +commit e4c374c6358f30f88527192614fca08de6ab4274 +Author: Carlton Smith +Date: Wed Sep 9 09:05:54 2020 -0400 + + remove unneeded loggin, remove unneeded key, fix typo + +commit bcfe128008eb22c34f286222bdb732fa2245bc4b +Author: Carlton Smith +Date: Wed Sep 9 08:42:53 2020 -0400 + + reduce complexity of get method + +commit 9eb30beb03458a74d6eb9c182c84e8f2bd7ac07d +Author: Carlton Smith +Date: Wed Sep 9 08:19:35 2020 -0400 + + add test for expired token + +commit 25142a074e32682d32fd440c02bddf0856ce153b +Author: Spencer Hilvitz +Date: Tue Sep 8 22:36:26 2020 -0700 + + fix failing test in Footer.test.js + +commit 484a10c506fb7d455f0cbe2e48a2ce6ccb213fd9 +Author: Spencer Hilvitz +Date: Tue Sep 8 22:29:25 2020 -0700 + + add utility classes in welcome.jsx, add footer.scss, add sociallinks to Footer.jsx + +commit 57d2d3bc1281f5328ab567bcd20f02c56eb784d9 +Author: Spencer Hilvitz +Date: Tue Sep 8 18:37:55 2020 -0700 + + fix spelling mistake in .env.development, remove unnecessary stock image, rename logo, add TDP logo, rename variables + +commit 05b06aa71f28cf2d74c7fe4d14e1a6228dceb21f +Author: raftergit +Date: Tue Sep 8 21:14:51 2020 -0400 + + resolving linting after updates to common.py update + +commit d302d42d726c86f56e08db402d6ced6783e29a2f +Author: Carlton Smith +Date: Tue Sep 8 18:09:03 2020 -0400 + + fix linting + +commit 68129d999d14c1102f69a009dc08a9d6a33c76a0 +Author: Carlton Smith +Date: Tue Sep 8 17:52:02 2020 -0400 + + use test key + +commit cf4f6eeec9c23f064fb3b21f314f388a7b96d1e8 +Author: Carlton Smith +Date: Tue Sep 8 17:30:30 2020 -0400 + + remove httpbin + +commit ad5e071465e18fbcbf8f9e6a028df6e63636be98 +Author: Carlton Smith +Date: Tue Sep 8 16:35:15 2020 -0400 + + add test for expired token + +commit 187d86f09467686f5fe69cab6cba5add1abc5f0f +Author: Spencer Hilvitz +Date: Tue Sep 8 13:26:16 2020 -0700 + + update @trussworks/react-uswds from 1.8.0 to 1.9.0 per snyk instructions + +commit 48ba275bdc0687e084cc693c3198c3afe34dee0c +Author: Carlton Smith +Date: Tue Sep 8 15:29:46 2020 -0400 + + remove httponly + +commit bdabcdcad4964bb42057c5f4781d49c205b619f2 +Author: Spencer Hilvitz +Date: Tue Sep 8 12:07:48 2020 -0700 + + fix cypress test + +commit fc1576ecde337664a4d429e59f59e23aed294056 +Author: Spencer Hilvitz +Date: Tue Sep 8 11:41:47 2020 -0700 + + add tests for header + +commit 0a636e07485f007c5042efe4805f24c55f23e32b +Author: raftergit +Date: Tue Sep 8 14:36:56 2020 -0400 + + updating comment on CSRFToken in common.py + +commit 7b08e8642c6477fd3625bba70077e2cafc47001a +Author: raftergit +Date: Tue Sep 8 14:08:59 2020 -0400 + + Turn off CSRFToken HttpOnly Cookie + + The CSRF token Cookie holds no security benefits when confined to HttpOnly. + Setting this to false to allow the frontend to include it as a header + in API POST calls to prevent false negative authorization errors. + + Django Documentation : + https://docs.djangoproject.com/en/2.2/ref/settings/#csrf-cookie-httponly + +commit 1d11aab4467c155a3bb40a9da6ded2c1935dd340 +Author: raftergit +Date: Tue Sep 8 13:33:31 2020 -0400 + + Updates to Pa11y Config and Frontend/Backend README.md + + 1.) Configuring a more verbose pa11y configuration file for + better automated accessibility testing + + 2.) Updating the README.md files found in tdrs-frontend and + tdrs-backend to be more descriptive and easier to follow. + + 2.) + +commit 19cfa6abb103bc07df74595568763d365034fe94 +Author: Spencer Hilvitz +Date: Tue Sep 8 09:55:06 2020 -0700 + + add footer test, update pa11yci.json, update header.jsx, update welc.ome.test.js + +commit 744d46a15796e8cb014bfc1ea907b6430af2a5e3 +Author: raftergit +Date: Tue Sep 8 12:29:52 2020 -0400 + + resolve linting warning + +commit a1e41a0014747d085b72bb041d05b624515244df +Author: raftergit +Date: Tue Sep 8 12:28:39 2020 -0400 + + adding unit testing for new set_profile endpoint + +commit 68a96c0fa71d338e96f8cab1b4fb61545d04b666 +Author: raftergit +Date: Tue Sep 8 11:59:46 2020 -0400 + + Adding `/set_profile/` API End Point + + This endpoint leverages the httpOnly cookie session + to validate the currently logged in user and permits + them to update the First Name and Last Name of their + profile as defined in this request body: + + { + "first_name": "John", + "last_name": "Smith" + } + + This will also update the auth_chack endpoint to include the users + first name and last name: + + { + "authenticated": true, + "user": { + "email": "jsmith@test.com", + "first_name: "John", + "last_name": "Smith" + } + } + +commit 4b2665e536631767cc53744cc1a268c44f9debdc +Author: Spencer Hilvitz +Date: Sun Sep 6 15:40:23 2020 -0700 + + fix all linter errors + +commit b55863a94d4bff9231308c84dd7c6bf218fa2aae +Author: Spencer Hilvitz +Date: Sun Sep 6 15:34:52 2020 -0700 + + fix linter errors, add alt tag, add grid element + +commit 71faed298c15e26c0b1bcfb5f85a568efa2e3001 +Author: Spencer Hilvitz +Date: Fri Sep 4 14:01:17 2020 -0700 + + switch welcome.jsx with dashboard.jsx + + did welcome work in dashboard and needed to switch it back + +commit 5536ec75902d69b5844569edd6d939d68cded11d +Author: Carlton Smith +Date: Fri Sep 4 16:20:37 2020 -0400 + + http only cookie test + +commit 15d225a26851fc3b0c7c545179663a302a7081e7 +Author: Spencer Hilvitz +Date: Fri Sep 4 13:19:28 2020 -0700 + + add footer test + +commit 9deb34db4e256885da110f4e16da31859988f78e +Merge: 994ba2ac2 eb2f5b13c +Author: Spencer Hilvitz +Date: Fri Sep 4 13:10:04 2020 -0700 + + Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 172-landing-pages + +commit 994ba2ac2e7386826d5e9b592a9298dc992a436e +Author: Spencer Hilvitz +Date: Fri Sep 4 13:09:23 2020 -0700 + + basic layout done + + some cleanup is needed for paddings and removal of inline styles + +commit 2e25879b1d8ce62bb096a279bd5b413fed9fde77 +Author: Spencer Hilvitz +Date: Fri Sep 4 12:59:49 2020 -0700 + + basic layout done (without comments) + +commit e570c656b7a0e1952b55ba1bf908c3921006c74f +Author: Spencer Hilvitz +Date: Fri Sep 4 12:56:12 2020 -0700 + + basic layout done (with commented out code) + +commit e6b964bfb544b28d293c021d3298d966fd3ca56a +Merge: 1e5105c40 e7f3a9d94 +Author: Spencer Hilvitz +Date: Fri Sep 4 11:53:12 2020 -0700 + + Merge branch '172-landing-pages' of github.com:raft-tech/TANF-app into 172-landing-pages + +commit e7f3a9d94aff2d8bc0314e7b08c9c93e2c72ea5b +Author: Adam Caron +Date: Fri Sep 4 13:59:19 2020 -0400 + + Document the SASS_PATH variable being set on yarn run v1.22.4 + info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. + +commit d7f4839c60a2f19035dbe45037db66807f418328 +Author: Adam Caron +Date: Fri Sep 4 13:55:23 2020 -0400 + + Remove duplicate snyk test + + Since it runs later in the workflow already + +commit fa89a17cde482e1344c4c29119034faf4c80056c +Author: Carlton Smith +Date: Fri Sep 4 13:54:22 2020 -0400 + + linting fixes + +commit 03e7d79a855c56fdb7426fcffb1020c699a008a1 +Author: Adam Caron +Date: Fri Sep 4 12:18:29 2020 -0400 + + Set SASS_PATH before yarn build + + Previously SASS_PATH was set in .env.development + and was available to the 'localdev' Dockerfile stage. + However environment variables do not persist across + build stages, and SASS_PATH wasn't available to + the 'build' Dockerfile stage, causing an error + during `yarn build`. The variable has now been + added to the `yarn build` script so it works + both when build in Docker and without Docker. + + Additionally, remove the `npm rebuild node-sass` step + since it is not necessary. + - This reverts commit: 4d1b0ea5ac0fc67f4901584178f78c626b90bac1 + +commit 1e5105c40e5e8959699f251511d61c8dc16284d9 +Author: Spencer Hilvitz +Date: Fri Sep 4 10:30:27 2020 -0700 + + Landing page template working + +commit aeef21861ac7156141e92f3f6f1a3de5e50c1055 +Author: Carlton Smith +Date: Fri Sep 4 12:46:09 2020 -0400 + + test general exception + +commit 4b7d5178ed95357282d64c7f67b0e6e31ae43948 +Author: Carlton Smith +Date: Fri Sep 4 12:39:45 2020 -0400 + + login testing + +commit 480cfc44fe766a1afe9c2bb9e6614ad34a13e968 +Author: Adam Caron +Date: Fri Sep 4 12:18:29 2020 -0400 + + Set SASS_PATH before yarn build + + Because SASS imports require this config. + Otherwise all imports would need to change to + relative paths, like ('../../node_modules/my_package') + + Also, remove unnecessary node-sass rebuild step + - This reverts commit: 4d1b0ea5ac0fc67f4901584178f78c626b90bac1 + + There was an issue where an error is thrown related to + node-sass not having the correct binding for the Docker container. + The rebuild change did not resolve the issue + +commit b0251e26fff2557b301e9cff51e0dc1847ce1b07 +Author: Adam Caron +Date: Thu Sep 3 18:21:50 2020 -0400 + + Add responsive Header area + +commit 2f93f2648a74e8902fa0c9602ecc5f08077045e8 +Author: Adam Caron +Date: Thu Sep 3 17:51:40 2020 -0400 + + Ignore local env file + + So local development can have whatever config it needs + without being pushed up to git + +commit 54383d2dc2d0482dc468a27c3aa826670515c3b9 +Author: Adam Caron +Date: Thu Sep 3 17:42:13 2020 -0400 + + Remove file from incorrect directory + + Supposed to be in tdrs-frontend (and is already) + +commit 4d1b0ea5ac0fc67f4901584178f78c626b90bac1 +Author: Adam Caron +Date: Thu Sep 3 14:36:12 2020 -0400 + + Resolve node-sass binding issue + + References for the behavior: + - https://github.com/sass/node-sass/issues/2162 + - https://github.com/sass/node-sass/issues/1527 + - https://github.com/sass/node-sass/issues/2165 + +commit 74a7eac1b1bcb21c693f41354314fbca9cfcbe2d +Author: Adam Caron +Date: Thu Sep 3 09:48:45 2020 -0400 + + Create a script and a CircleCI step for Snyk + + For some reason snyk was being run with the Jest unit tests. + This decouples the two, which aren't related + +commit 7935cb1ac9f0579653b1f04f04119792e3bf5821 +Author: Adam Caron +Date: Thu Sep 3 09:47:37 2020 -0400 + + Ignore auto generated file + +commit 279cdfc53eeea610e3bbc1bccffc5d67be81465a +Author: Adam Caron +Date: Thu Sep 3 09:46:04 2020 -0400 + + Auto remove trailing spaces. Noop + +commit c05d9d8e2299354f44dffd0d5dfe94e28d41b74d +Author: Adam Caron +Date: Wed Sep 2 19:29:15 2020 -0400 + + Format gitignore and Dockerfile. No functional change + +commit 06d6153eea58f78bfb39067ceea238d2c731c072 +Merge: eff4f93f3 eb2f5b13c +Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Wed Sep 2 14:48:35 2020 -0400 + + Merge pull request #47 from raft-tech/raft-tdp-main + + SPRINT 2 RELEASE + +commit eb2f5b13c9c4b1cdf799b5f88067137cb949781c +Merge: 4bb29b9a3 65f529cf9 +Author: Laura Gerhardt +Date: Wed Sep 2 11:47:42 2020 -0400 + + Merge pull request #222 from raft-tech/circleci-deploy-value + + Updating deploy branch to load dev env vars from raft-tdp-main + +commit 65f529cf9706320f9861d46222da068710570b21 +Author: raftergit +Date: Wed Sep 2 11:22:30 2020 -0400 + + reverting to raft-tdp-main + +commit ef0193a1b47eba27218af5237973cf57c0d67549 +Author: raftergit +Date: Wed Sep 2 11:07:25 2020 -0400 + + testing deployment + +commit 79d4b1c2a1560b44ec6bd9f41eee57e3ae255866 +Author: raftergit +Date: Wed Sep 2 11:01:31 2020 -0400 + + updating deploy branch to load dev env vars from raft-tdp-main + +commit cc9f5c5f4c3f58fc75ea4c07f0f82f1e0526357a +Author: Adam Caron +Date: Tue Sep 1 12:54:56 2020 -0400 + + Configure CSS breakpoints + + To match the designs in figma. + + Use include-media to cleanly define breakpoints and reference in scss files. + + This sets up the patter going forward for all responsive implementation + (mobile first) + +commit 5641b31cfee24b54f79f90921a605910eca95794 +Author: Adam Caron +Date: Tue Sep 1 10:53:10 2020 -0400 + + Setup SCSS + + To perform imports from relative paths and node_modules. + docs: https://create-react-app.dev/docs/adding-a-sass-stylesheet + + Also, adjust the .env strategy as per the intended usage: + https://github.com/facebook/create-react-app/issues/6961#issuecomment-488365022 + - anything ending with .local must not be tracked. + - .test and .development should be tracked. + Consequently, remove the README instructions for setting up .env + since they're not necessary anymore. + +commit 444e96ed1150dd8afb41c634011a8d5f38109c14 +Author: Adam Caron +Date: Mon Aug 31 17:50:35 2020 -0400 + + Move Dockerfiles to frontend root to preserve local dev functionality + + The command in the Readme (to run app locally) mounts the src directory + making it possible for local development changes to be reflected in the + container without restarting/rebeuilding it each time. A previous change + moved the Dockerfiles into a subdirectory which broke this functionality. + + Additionally, with the Dockerfles in the subdirectory, the .dockerignore + wasn't being picked up at build time. + + Also, at build time, with the files in a subdir, the context was incorrect. + Certain commands referenced files in the same directory as the Dockerfile + and this broke when the Dockerfile changed to a sub dir + +commit ea43e5fb6deaf497ae574f4a186a0c5878557aa4 +Author: Adam Caron +Date: Mon Aug 31 15:43:06 2020 -0400 + + Specify where boilerplate docs end + +commit 24600f692dd3dd996a4b07640099823cf5ef6730 +Author: Adam Caron +Date: Mon Aug 31 14:14:11 2020 -0400 + + Untrack .env files since they must not be tracked in git. + + They currently contain no sensitive data but if that changes, + this sets things up so they're ignored. + + Any additions to .env.local or .env.test should be added to + .env.example with dummy values. + + The readme provides instructions to set up the project with these files. + +commit 4bb29b9a325500da4bf9a58c389bc63f8b25b82e +Merge: fa297f4e0 87030022e +Author: Laura Gerhardt +Date: Wed Sep 2 09:47:26 2020 -0400 + + Merge pull request #198 from raft-tech/sprint2-updates + + Sprint2 Updates + +commit 87030022e351dc17b89f32311b05bcab200e1a0e +Author: Adam Caron +Date: Tue Sep 1 18:40:42 2020 -0400 + + Document the functions and components throughout the app + +commit f3b8715e557a28ead2287299fdc5a8ad2a1ce025 +Author: Adam Caron +Date: Tue Sep 1 17:57:08 2020 -0400 + + Add jsdoc to the project + +commit c07f2392eb7ec87d26007554aa76009357026652 +Author: Adam Caron +Date: Tue Sep 1 17:53:16 2020 -0400 + + Rename Private to PrivateRoute + + To be more descriptive. + +commit ee47bbd36530937375715f99c1279b81ddc8d902 +Author: raftergit +Date: Tue Sep 1 17:26:53 2020 -0400 + + updating css in Welcome.scss + +commit 6eb524bd76bf6c4e2c81d9bb14097a15037d72fb +Author: raftergit +Date: Tue Sep 1 17:11:32 2020 -0400 + + updating snyk comments + +commit a2ef189c0d69568e6020e17174df08d0513bb3f4 +Merge: f5f763280 7802ed08f +Author: raftergit +Date: Tue Sep 1 17:01:37 2020 -0400 + + Merge branch 'sprint2-updates' of https://github.com/raft-tech/TANF-app into sprint2-updates + +commit f5f763280e190d9cd1231db8cecbfedd888ac856 +Author: raftergit +Date: Tue Sep 1 17:01:32 2020 -0400 + + updating documentation + +commit 7802ed08f6a94e395916cdd367a592317acba7f9 +Author: raftergit +Date: Tue Sep 1 16:45:57 2020 -0400 + + resolving linting errors + +commit 1dc67f58709035e41172e62a4cb831891a3b0757 +Author: raftergit +Date: Tue Sep 1 16:41:25 2020 -0400 + + extracting hardcoded cert from test_auth.py + +commit 442cc5b53730fc7b73609691d879dd79acc281af +Author: raftergit +Date: Tue Sep 1 16:37:09 2020 -0400 + + extracting hardcoded cert from test_auth.py + +commit d8f77860d6df19db2e155791de90926fc6dfa32c +Author: raftergit +Date: Tue Sep 1 16:06:28 2020 -0400 + + updating README.md to note Pipefile in snyk issue/ removing localhost references in common.py + +commit aa928954a8b97adee0227b06260ca8e72f3dbafc +Author: Carlton Smith +Date: Tue Sep 1 15:29:58 2020 -0400 + + adding tests + +commit ffc7feb064ad5ee05adf9cd23baa8221e1f55a47 +Merge: f276b578f 902eef830 +Author: Carlton Smith +Date: Tue Sep 1 15:26:08 2020 -0400 + + Merge branch 'sprint2-updates' of github.com:raft-tech/TANF-app into sprint2-updates + +commit f276b578f853cb0a5b0824a588a1d6979de1ec45 +Author: Carlton Smith +Date: Tue Sep 1 15:25:39 2020 -0400 + + add tests for unauth user + +commit 902eef8303eadbc14ca3b688edf44576bf4c1c17 +Merge: 682b77bc7 fa297f4e0 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Tue Sep 1 14:39:20 2020 -0400 + + Merge branch 'raft-tdp-main' into sprint2-updates + +commit e19f7698656e2f0f8a2270e541b5a9ff80476018 +Author: Carlton Smith +Date: Tue Sep 1 13:31:57 2020 -0400 + + test unauthorized + +commit fa297f4e0acc15186eda2c4d94d7f9f26d25d5e6 +Merge: b99e884fc 8ca3d327c +Author: Carl Smith +Date: Tue Sep 1 12:52:40 2020 -0400 + + Merge pull request #206 from raft-tech/raft-resolve-conflicts + + Resolving merge conflicts between main and raft-tdp-main + +commit 8ca3d327cb79b68d442de7f397dcb1ae2838063b +Author: raftergit +Date: Tue Sep 1 12:33:02 2020 -0400 + + tracking new frontend vulnerability published by snyk on 09/01/2020 + +commit 4cf62b4609505661751c81f999a5af341ceb2cb0 +Merge: 98854c692 9f8215aee +Author: raftergit +Date: Tue Sep 1 12:24:22 2020 -0400 + + Merge branch 'raft-resolve-conflicts' of https://github.com/raft-tech/TANF-app into raft-resolve-conflicts + +commit 98854c692c23392fea26a011c88bdf5224503ef0 +Author: raftergit +Date: Tue Sep 1 12:24:10 2020 -0400 + + tracking new frontend vulnerability published by snyk on 09/01/2020 + +commit 682b77bc70b6c746a08c46f0013bba1b46d58482 +Author: Carlton Smith +Date: Tue Sep 1 11:30:45 2020 -0400 + + move cert to environ + +commit 9f8215aeefbd154596178068576ca6534e4c2384 +Author: raftergit +Date: Tue Sep 1 11:26:32 2020 -0400 + + resolving merge conflicts with main + +commit 3d014c5d2fa22870df2ed61dbb07560848d1450b +Author: raftergit +Date: Tue Sep 1 11:26:11 2020 -0400 + + resolving merge conflicts with main + +commit 468e3f07bd2a6610b861de5aede2b9902227ea2f +Author: raftergit +Date: Tue Sep 1 11:25:56 2020 -0400 + + resolving merge conflicts with main + +commit 3e7d4e4a82bf87c22272bd4092992ecd1caa6f02 +Merge: b99e884fc eff4f93f3 +Author: raftergit +Date: Tue Sep 1 11:17:11 2020 -0400 + + Merge branch 'main' into raft-resolve-conflicts + +commit b99e884fc2a924089de69e791a47803c07813c2d +Merge: ea4d3447a 805a29fd5 +Author: Carl Smith +Date: Mon Aug 31 14:10:31 2020 -0400 + + Merge pull request #199 from raft-tech/shubhi-raft-patch-1 + + Update design issue template + +commit 805a29fd50534f8cad359d8994ba5783dccd7659 +Author: Shubhi Mishra +Date: Mon Aug 31 13:19:03 2020 -0400 + + Update design issue template + +commit 3982a595cfdfb6e187978bccd0539e9cea0c9a2c +Merge: 99a025bd8 ea4d3447a +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Mon Aug 31 11:35:53 2020 -0400 + + Merge branch 'raft-tdp-main' into sprint2-updates + +commit ea4d3447a98f3fa3d39eee4036fa90472a598024 +Merge: 3629374fb 2526f0394 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Mon Aug 31 11:27:38 2020 -0400 + + Merge pull request #194 from raft-tech/backend/177/testing + + Backend Testing Coverage + +commit 99a025bd807d8659fe86cb4c978154f31aad1079 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Sun Aug 30 20:40:28 2020 -0400 + + Update pull_request_template.md + +commit 044fe9dc7dad86eb205b575a0c012d57760e5a52 +Author: raftergit +Date: Fri Aug 28 17:21:56 2020 -0400 + + fixing type-o in pr issue temlpate mark down + +commit c339dbe96335d3b2492ffe3cac9947aebde4462f +Author: raftergit +Date: Fri Aug 28 17:13:52 2020 -0400 + + Updated based around comments on latest Sprint 1 Comments + + - Moved node-sass to devDependancies in the frontend package.json + + - Decided to keep two manifest.ymls in tdrs-frontend and tdrs-backend for the time being + + - Consolidated the items in tdrs-backend/.gitignore to the root .gitignore + + - Added "Pipfile.lock -diff" to .gitattributes in the root of the directory + +commit 2526f0394072758d6af817f3cbd79647201a1d0a +Merge: f328b8000 3629374fb +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Aug 28 16:43:27 2020 -0400 + + Merge branch 'raft-tdp-main' into backend/177/testing + +commit 3629374fb1d1e3c2e6fdcace8ea08ee65168525b +Merge: 22befc970 fe933c0af +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Aug 28 16:38:53 2020 -0400 + + Merge pull request #196 from raft-tech/sprint1-pr-review + + Sprint 1 PR Review Alt + +commit fe933c0af7bcad529d3c1bf579548b78cddc9606 +Author: raftergit +Date: Fri Aug 28 15:50:44 2020 -0400 + + updates to frontend snyk vulnerabilty scans + +commit f328b8000ef0055db61719e02629c7c73842f4ee +Author: Carlton Smith +Date: Fri Aug 28 13:53:03 2020 -0400 + + boost test coverage + +commit 1dfc1ecc9ebcd8a75d5c667a8b2bf6ce6f988615 +Author: Carl Smith +Date: Fri Aug 28 12:43:39 2020 -0400 + + Update README.md + + Correct typos + +commit 1cdb0d978c72b047bc8194f7687050b22c6ea954 +Author: raftergit +Date: Fri Aug 28 12:09:41 2020 -0400 + + updating README.md for the backend and frontend to reflect new testing logic + +commit 70e63fefe54c6a72e09693783daf39a001326ba3 +Author: raftergit +Date: Fri Aug 28 09:12:10 2020 -0400 + + updating README.md documentation for frontend and backend in support of new manifest.yml environment variable logic + +commit d24b029ae0772fe71acb4d77325ec3a3f946e503 +Author: raftergit +Date: Thu Aug 27 22:18:29 2020 -0400 + + moving the logic to check the JWT and generate the JWT to the backend deployment method in deploy-cloudgov-docker.sh + +commit 8cbc482decf8c8e5ff1e932583bd6ae17e9ae1a2 +Author: raftergit +Date: Thu Aug 27 22:00:15 2020 -0400 + + removing failing yarn cache logic from circleci config + +commit b8183cf8cf8e48d9b07f4171666b0f145310e731 +Merge: 8ac291d5b 2d15668a4 +Author: raftergit +Date: Thu Aug 27 21:48:06 2020 -0400 + + testing deployment via current branch + +commit 8ac291d5b36e90fc05eca8c6aff355615f26b305 +Author: raftergit +Date: Thu Aug 27 21:47:47 2020 -0400 + + testing deployment via current branch + +commit 06000fcdc60a3b5255ca93d8394217e4f16adf7e +Author: raftergit +Date: Thu Aug 27 21:23:15 2020 -0400 + + adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python + +commit bfe664ead45b4c01dcd82451ac39cf68b7b6e4c3 +Author: raftergit +Date: Thu Aug 27 21:12:21 2020 -0400 + + adding temporary fix for snyk policy not being fully referenced in circleci + +commit 1ac3db45cf9af48f600f69dd53775336914afbdd +Author: raftergit +Date: Thu Aug 27 20:45:42 2020 -0400 + + testing snyk policy update with deployment + +commit 8c78522dc2f43265be739a57ea199bb50470e2e7 +Author: raftergit +Date: Thu Aug 27 20:17:13 2020 -0400 + + attempting to use snyks ignore policy for vulnerabilities with no known current fix + +commit c7d58f6f34881c8f83c7b557429e8babb925e7a3 +Author: raftergit +Date: Thu Aug 27 19:37:11 2020 -0400 + + Updates in response to the Sprint 1 PR Review: + + 1.) The CI/CD deployment pipeline has been expanded to now utilized the + deploy-cloudgov-docker.sh script. With the correct parameters this script + will deploy frontend and backend docker images via a rolling up or + a standard redeployment. + + This script also facilitate the ability to construct a new deployment + environment in cloud.gov if the user so chooses. + + This script will also leverage the dynamic naming of the docker image to + be pushed via the manifest.yml. With this method, we can tag versions for + release and circumvent needing to hard code values in our manifest.yml + + 2.) Updates library vulnerabilities based around snyk have also been + added tot he CI/CD pipeline via the circleci config.yml. Future updates + will expand this to include docker image scanning as well. + + Currently,since there is no way to disable snyk failing if it encounters CVEs no + reported fix, we've disabled this auto fail feature. + + 3.) Unit Test coverage of the backend code has been raised from 58% to 80% + + 4.) A markdown file has been added to tdrs-backend/docs outlining the current + issues with finding a usefull OIDC library to Login.gov authentication in lieu + of our own. + + 5.) At the time of submission no resolvable issues have been produced by snyk scans + + 6.) Due to an update to resolve a snyk vulnerabilty found on the frontend when upgrading + react, we had to abandon our current implementation of using the "start-server-and-test" + npm library which was being used to allow our cypress and pa11y scans to execute. + This has been replaced with the package "concurrency" + +commit d0bcd44b86913ddb87566added83a0fda4f4eea1 +Author: raftergit +Date: Wed Aug 26 14:13:21 2020 -0400 + + resolving bug with django python logging + +commit 2d15668a4afffada257b4a5805ebb158de8efe71 +Author: raftergit +Date: Thu Aug 27 21:34:25 2020 -0400 + + adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python + +commit 01b65b001892ab269b1e561497d2aaf4121451d4 +Author: raftergit +Date: Thu Aug 27 21:27:52 2020 -0400 + + adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python + +commit 52d3eb220c2bad1a58046f4985678350a7b3be73 +Author: raftergit +Date: Thu Aug 27 21:23:15 2020 -0400 + + adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python + +commit c7347b25e2cc2ae3c7a769cd330b112c473a7f2d +Author: raftergit +Date: Thu Aug 27 21:12:21 2020 -0400 + + adding temporary fix for snyk policy not being fully referenced in circleci + +commit 1db87480a77ed75fd58157417e463f87b92636c4 +Author: raftergit +Date: Thu Aug 27 20:45:42 2020 -0400 + + testing snyk policy update with deployment + +commit 40808085a9e05ab07a126e7c439f8bb1f6154130 +Author: raftergit +Date: Thu Aug 27 20:17:13 2020 -0400 + + attempting to use snyks ignore policy for vulnerabilities with no known current fix + +commit c4fa749b37ddee8c9c648d31eab140f45c7a413f +Author: raftergit +Date: Thu Aug 27 19:37:11 2020 -0400 + + Updates in response to the Sprint 1 PR Review: + + 1.) The CI/CD deployment pipeline has been expanded to now utilized the + deploy-cloudgov-docker.sh script. With the correct parameters this script + will deploy frontend and backend docker images via a rolling up or + a standard redeployment. + + This script also facilitate the ability to construct a new deployment + environment in cloud.gov if the user so chooses. + + This script will also leverage the dynamic naming of the docker image to + be pushed via the manifest.yml. With this method, we can tag versions for + release and circumvent needing to hard code values in our manifest.yml + + 2.) Updates library vulnerabilities based around snyk have also been + added tot he CI/CD pipeline via the circleci config.yml. Future updates + will expand this to include docker image scanning as well. + + Currently,since there is no way to disable snyk failing if it encounters CVEs no + reported fix, we've disabled this auto fail feature. + + 3.) Unit Test coverage of the backend code has been raised from 58% to 80% + + 4.) A markdown file has been added to tdrs-backend/docs outlining the current + issues with finding a usefull OIDC library to Login.gov authentication in lieu + of our own. + + 5.) At the time of submission no resolvable issues have been produced by snyk scans + + 6.) Due to an update to resolve a snyk vulnerabilty found on the frontend when upgrading + react, we had to abandon our current implementation of using the "start-server-and-test" + npm library which was being used to allow our cypress and pa11y scans to execute. + This has been replaced with the package "concurrency" + +commit 814c1588bd6fa7c5b7f525452015ede6b438e9b3 +Author: Carlton Smith +Date: Thu Aug 27 16:43:01 2020 -0400 + + correct linting + +commit 17901fc89f5471d4ed6fd6b53c36a2508218c51f +Author: Carlton Smith +Date: Thu Aug 27 16:01:45 2020 -0400 + + test utilities and auth check + +commit 309a315961616f1cd49cd1b1f4c4782a7f8d3cfc +Author: Carlton Smith +Date: Thu Aug 27 13:55:50 2020 -0400 + + testing utlities + +commit 3ed86316c34f5eb851875ddf84790fb16e2f8529 +Author: Carlton Smith +Date: Wed Aug 26 17:21:53 2020 -0400 + + add tests for utils + +commit 22befc970545751ac9fc0fb903146a37334feb43 +Merge: f00f9135a 058f158a8 +Author: Carl Smith +Date: Wed Aug 26 14:42:40 2020 -0400 + + Merge pull request #193 from raft-tech/resolve-logger-bug + + resolving bug with django python logging + +commit 058f158a8f1fc93b234a4f184375c904a51834e3 +Author: raftergit +Date: Wed Aug 26 14:13:21 2020 -0400 + + resolving bug with django python logging + +commit f00f9135a2e14148303600d5536d6d20dfbafa9b +Author: raftergit +Date: Wed Aug 26 09:27:28 2020 -0400 + + resolving merge conflicts with login.py + +commit 9b033b6c2023e3590ba36d37222e1b6686e91856 +Author: raftergit +Date: Tue Aug 25 23:03:56 2020 -0400 + + resolving linting errors with auth.js and auth_test.js + +commit 92e39b695acf416cc132fa56775255bef3a131f3 +Author: raftergit +Date: Tue Aug 25 21:55:23 2020 -0400 + + updating axios call to auth_check API call to resolve undefined response + +commit c245b38a15097b6fbc4f45b4a960987dc21b7268 +Author: raftergit +Date: Wed Aug 26 09:26:05 2020 -0400 + + resolving redirect if users choose not to authenticate with Login.gov + +commit d9ed7cd779bbb8c7802608b6ca214000e7d63df8 +Author: raftergit +Date: Tue Aug 25 22:53:10 2020 -0400 + + resolving local execution issues with ui + +commit 8950dc7ddb869e027e88f7836e13215e399b45dc +Author: raftergit +Date: Tue Aug 25 21:40:02 2020 -0400 + + resolving merge conflicts with login UI PR + +commit 522b766a1457813439961adc1e8f652993e5ad39 +Author: Adam Caron +Date: Tue Aug 25 17:45:48 2020 -0400 + + Remove unnecessary eslint flag + +commit 37d2c05c7b9c9ff177e138c0844b60ed8a5ebc51 +Author: Adam Caron +Date: Tue Aug 25 17:23:50 2020 -0400 + + Fix python linting errors + + Remove unreferenced functions + +commit e4e33c81d33d5a24a72432c876732bab4343bc9a +Author: Adam Caron +Date: Tue Aug 25 17:21:03 2020 -0400 + + Test that the Welcome page does not render while auth is loading + +commit 7aa1414310d7ac74666ff01b61eba4ff054f32ec +Author: Adam Caron +Date: Tue Aug 25 17:07:04 2020 -0400 + + Test the Redux reducers for auth a alerts + +commit cde0641f083af220f6430f5c6646d2c629bff4f1 +Author: Adam Caron +Date: Tue Aug 25 16:15:55 2020 -0400 + + Adjust the auth loading message + + Also, do not render the welcome page while auth is being fetched + in order to prevent flashing that occurs when the unauthenticated + contenct renders for a split second before the user is redirected + to the Dashboard. + + Remove dupliate Logger message to cleanup the redux console + +commit 0f5808d1e04e44a5c203674ea764012712fa712b +Author: Adam Caron +Date: Tue Aug 25 15:19:27 2020 -0400 + + Test action that fetches auth + + - test the unauthenticated state + - test the error state + +commit eaf00e017323e2aaac74dcd5918e7ec423838ef5 +Author: Adam Caron +Date: Tue Aug 25 14:37:52 2020 -0400 + + Remove default 401 response + + The frontend will call /auth_check on every page load, including + when the user is not signed in. The endpoint should not error + with a 401 but rather should return 200 and inform the client + whether or not the user is authenticated. The client is always + authorized to make this request. + + Handle the case of anonymous users and those who are authenticated. + +commit b5a78b6ecb297c7db330ef15b299961eb446b49b +Author: Adam Caron +Date: Tue Aug 25 10:18:33 2020 -0400 + + Test user auth fetch action + +commit f22563547ff63a21af7c174318b7c2ceb6b8ce96 +Author: Adam Caron +Date: Mon Aug 24 10:58:02 2020 -0400 + + Test Login functionality + + - Welcome page + - Routes + - Private route + - Dashboard + - LoginCallback + - Notify component + +commit 0b1aced1ba08b33a75a15443248d0d234a3ebb0f +Author: Carlton Smith +Date: Fri Aug 21 15:05:02 2020 -0400 + + Login/Logout functionality + + Added methods to the CustomAuthentication class for handling HttpOnly + cookie authentication. Added authorization_check endpoint to finalize + login functionality. Updated settings with CORS whitelist for local. + + Setup local env file to reference local api + +commit 6f7fb3380efd00a53d0f4302fb0f2fadb556ebeb +Author: Adam Caron +Date: Fri Aug 21 14:12:14 2020 -0400 + + Clear Auth when no user is returned from auth check + + Also, remove unnecessary response + +commit 783bfd3fa2ea5ee9a727bbf01d932a4920216f23 +Author: Adam Caron +Date: Fri Aug 21 10:09:38 2020 -0400 + + Change internal response to redirect + + So the API redirects to the UI with an http_only cookie after + the login.gov flow is complete. + + Also, logout redirects back to UI + +commit 0d9941b8d7733494898c1a46d3e59a15cdfa1408 +Author: Adam Caron +Date: Thu Aug 20 22:13:46 2020 -0400 + + Add a Login Callback component + + The API will redirect back to the web app + after the login flow has completed, delivering with it + an http_only cookie. Upon landing on the callback page, + the web app makes one final call to the API to verify + that the web app indeed has the valid cookie. While this + happens, the login component renders a loading message. + + If user is not authenticated, and not in the process + of doing so, then redirect from the callback page + to the Welcome homepage at '/' + + If user is signed in, then redirect from callback page + to the Dashboard at '/dashboard' + + Render loading message on any private route + if sign-in is currently in process. + + Arrange Routes so public reoutes come first + because it's easier to reason about, and specify exact + so the order doesn't matter (no risk of unintended + fallthrough routing) + + Redirect Welcome to Dashboard for signed in users + so they don't see a log-in button or any content + intended for public users. + + Update redux actions and reducers so all data + is passed in a payload object, keeping the + action/reducer api consistent, predictable, and scalable + + Add user email to the login response object, and render that + on the authenticated Dashboard. + +commit 2cc76d250a153c812efb3d91240402534db14ec1 +Author: Adam Caron +Date: Thu Aug 20 20:14:29 2020 -0400 + + Add blank tests for new files + + Remove util to generate random chars since backend will do this now + +commit 5ac09002801991fe8a3cec08d1d3789ef237357f +Author: Adam Caron +Date: Thu Aug 20 16:28:02 2020 -0400 + + Implement Authentication and Authorization + + Add Private routing which redirects unauthenticated users + back to homepage at '/' (Welcome component). + + If API call to verify authentication is loading, + render an alert to notify the user it's loading. + + If unauthenticated user tries to navigate to + a private route, redirect to unauthenticated home + Welcome component and render an Alert that user + needs to login first. + + When the window first loads, make a call to retrieve + authentication info -- when authenticated, the user will + already have an http_only cookie set in the browser, + so the result of this call will identify the user as + already authenticated / or not yet authenticated + based on whether there is a valid cookie or not. + + Add a Dashboard for authenticated users. + + On the Welcome page, when user click 'Sign In', + user is redirected to API's Login.gov login flow. + + Alerts are hooked up to the redux store so they can render + across the site regardless of the current page. This helps + preserve messages after redirects. + + Additionally, the redux logger middleware order has changed + so logger comes last. If it is not last, it does not log + actions but instead logs promises and thunks: + https://github.com/LogRocket/redux-logger/issues/302#issuecomment-416767088 + +commit 882cc2c1908e643cc4ad098a0a88707e187b277c +Author: Adam Caron +Date: Wed Aug 19 13:57:35 2020 -0400 + + Add a Dashboard component to be used as an authenticated landing page + +commit 1927078cfe35e0a6b6ff40e6e937298edfe426a7 +Author: Adam Caron +Date: Wed Aug 19 13:54:15 2020 -0400 + + Move components into components dir + + Transition away from the pattern of separatign components and containers + as per the update in dabramov's post on the subject: + https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0 + +commit 796c14afc7aacacdd1b3664bb27c2f624c9bd384 +Author: Adam Caron +Date: Mon Aug 17 20:35:43 2020 -0400 + + Pivot auth strategy + + Redirect to API login endpoint + + Receive user info + +commit 96a1117f2d08eafaeba68cd8721bc5ba80cbc267 +Author: Adam Caron +Date: Mon Aug 17 12:58:56 2020 -0400 + + Add React Router + + Configure Redux store + - Add logger middleware to see actions and store state + - Connect Router to store + + Setup routes + + Redirect to API login on login button click + +commit 2727ca1085711a2cdf68a484dc871a404831dc00 +Author: Adam Caron +Date: Thu Aug 13 19:36:05 2020 -0400 + + Authorize with Login.gov + + Call Login.gov sandbox when login button is clicked. + and receive callback code and state at /code. + + Configure OICD-client userManager with env variables. + - Add an example .env and README instructions for local development + + Add oidc-client dependency and use redux-oidc in order + to benefit from store pattern, since redux will be used for app state. + - `prop-types` is a peer dependency so that is why it is installed here. + + Generate oicd state and nonce with cryptographically secure random char function, + which purposely does not use Math.random() since it does not provide + cryptographically secure random numbers. + + Make crypto available in the test environment + + Test login button click + Specify in README how to view coverage details as HTML in the browser. + +commit 4e14e5ec2f6a80f0f3d293da84386e6b68e48fed +Author: Adam Caron +Date: Fri Aug 7 15:20:39 2020 -0400 + + UI renders unauthenticated sign in page + + Add Cypress test that a person sees the sign in page with login button + + Remove hello world text and test + + Add to the project to use scss + + Extract Welcome page into its own container, away from App, + keeping gov banner at top level so it's rendered everywhere. + + Ignore index.js because it would be a useless thing to test. + +commit e026e333ae83ae041b6b2d061ccaede150f72cb6 +Author: raftergit +Date: Tue Aug 25 15:27:50 2020 -0400 + + restoring default flake8 detection settings + +commit fb013f458cd07587a3018299c0c1a52322961596 +Author: raftergit +Date: Tue Aug 25 14:41:09 2020 -0400 + + Getting tech coverage up to 82% + +commit 9566872f03b4710b4a550d4672a4dc5d5b4e5b50 +Author: raftergit +Date: Thu Aug 20 07:27:45 2020 -0400 + + disabling deployment logic by changing branch + +commit 5e777bcb9f0981636d34cac5982fb0e4873a03f7 +Author: raftergit +Date: Thu Aug 20 07:12:51 2020 -0400 + + trying out new frontend build method + +commit 81ab4dcad4dfb591ba89b3f1cf81a67fe8a1bda8 +Author: raftergit +Date: Thu Aug 20 06:55:46 2020 -0400 + + restoring logic for deploy to cloud.gov + +commit 3e47b064ef38f56c014a2fea9598e144e558ccb1 +Author: raftergit +Date: Thu Aug 20 06:55:00 2020 -0400 + + removing volume declaration from docker-compose.yml + +commit bfa853638119542964d648a8c54cadb62b1e69d9 +Author: raftergit +Date: Thu Aug 20 06:25:20 2020 -0400 + + updating docker-compose to clean up circleci behavior + +commit ad0ace5ad713d96fb4e1910330f5474e3abec54f +Author: raftergit +Date: Thu Aug 20 06:19:56 2020 -0400 + + adding branch name to manual trigger deployment test + +commit ea613f3a230aaed31e4b14925d745111f089ccaa +Author: raftergit +Date: Thu Aug 20 06:11:59 2020 -0400 + + adding branch name to manual trigger deployment test + +commit e611871e1bbcf56676feb6c603ceaba357c7ce82 +Author: raftergit +Date: Thu Aug 20 06:08:29 2020 -0400 + + updating test references in respect to docker-compose.yml changes + +commit db421c5887722eace2c4c16f2409669262a35dbc +Author: raftergit +Date: Thu Aug 20 06:01:12 2020 -0400 + + adding note about docker-compose to frontend ReadMe + +commit b82f82db2c1f1acc74e98ef91f3df3157317ed54 +Author: raftergit +Date: Thu Aug 20 05:57:22 2020 -0400 + + adding documentation , local testing instructions, more fleshed out ci/cd circleci.yml + +commit 7997c0b44d26fa05a7c05bcfd4ab8a1bccc423f3 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Aug 13 21:01:07 2020 -0400 + + Update pull_request_template.md + +commit e43189c6e0888e24e44b6147250aa393665371a6 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Aug 7 00:06:24 2020 -0400 + + Update pull_request_template.md + +commit 652315bc73ff8dd4957396164965ceded854c044 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Fri Aug 7 00:03:50 2020 -0400 + + Create pull_request_template.md + + Adding a template for Pull Requests + +commit d7eb3d6f2c9ce13b441a104487f910b4334e6439 +Author: raftergit +Date: Wed Aug 19 20:08:34 2020 -0400 + + adjusting circle.ci build in respect to alternate PR that addresses issues + +commit 9321fdc311f643ac0d7d8c2c0f36906e86abc44d +Author: raftergit +Date: Wed Aug 19 20:02:10 2020 -0400 + + obsecuring uneeded parameters in .env.local + +commit a8b0285469b9453023a7e7cfb290c16ca5018846 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Aug 19 10:13:17 2020 -0400 + + Update dev-issue-template.md + +commit 3934fe09170bc68461820abba25946c091bf9872 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Aug 19 10:03:44 2020 -0400 + + Update and rename dev_issue_template.md to dev-issue-template.md + +commit 86109e0106fbc9186cb763d3730cd603c51e9bcf +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Tue Aug 18 16:32:41 2020 -0400 + + Rename .github/dev_issue_template.md to .github/ISSUE_TEMPLATE/dev_issue_template.md + +commit 28642e2196a7b3d1b2906f64cf00d55137d5d155 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Tue Aug 18 16:26:52 2020 -0400 + + Rename issue_template.md to dev_issue_template.md + +commit 2a3b4444af96d08368cfe996bdbf172e9a4114df +Author: Shubhi Mishra +Date: Tue Aug 18 07:39:35 2020 -0400 + + Update issue templates + + Template for design issues + +commit 35d810fc366bcc6e6914f753e1543173d691e813 +Author: Shubhi Mishra +Date: Tue Aug 18 09:47:33 2020 -0400 + + Update and rename research-plan-issue-template-.md to research-issue-template-.md + +commit 069ed38e692c1c7551ca480ee0f52ea6b1b1cbac +Author: Shubhi Mishra +Date: Tue Aug 18 07:16:41 2020 -0400 + + Update issue templates + +commit 482cf3b69a177cc7686737e04cb82319352fb085 +Author: Adam Caron +Date: Tue Aug 11 15:11:14 2020 -0400 + + Ignore auto-generated Cypress directory + +commit 8d5393831925792f628be407b3e545630ac72fb7 +Author: Adam Caron +Date: Mon Aug 10 17:41:08 2020 -0400 + + Add missing peer dependencies, and treat yarn.lock as a binary file + + Peer Dependencies: + - Previously `yarn install` would output warnings for missing deps eslint and jest. + This resolves those warnings. + + Treat yarn.lock as a binary file: + - So that git doesn't try to merge changes in the file. Yarn is the only thing + that should make changes or updates to yarn.lock + - This should make diff's on PRs more manageable and less awkward + since the lockfile won't count in the diff. + - See discussion here on how to handle merge conflicts with yarn.lock: + https://github.com/yarnpkg/yarn/issues/1776#issuecomment-269539948 + +commit bc5db1fe51dc7f3f733631e016718222f5bb9564 +Author: Adam Caron +Date: Mon Aug 10 14:13:22 2020 -0400 + + Do not prevent the app from being published + + Since it's an open source project, no need to prevent publication + even though we don't intend on publishing it on NPM. + + Also, specify license for open source, since yarn throws warnings + without the license key, when the `private` key is not specified. + +commit 5f928c41a2490f448ac901ccd3c2f9c87d828e6a +Author: Adam Caron +Date: Mon Aug 10 13:56:10 2020 -0400 + + Update the favicon to the uswds flag + + As per suggestion on the scaffolding PR: + https://github.com/HHS/TANF-app/pull/37#discussion_r467144739 + +commit dc14f174796a7cf6042c736c8adf1ca2065c42f6 +Author: Adam Caron +Date: Fri Aug 7 12:44:48 2020 -0400 + + Move UI .gitignore contents into global project .gitignore + + Because if it's in subdirectory, and if PWD is project root, + then the subdirectory gitignore won't take effect + +commit e433d33b56821cc9510f167edd55cdcd2c169f80 +Author: raftergit +Date: Wed Aug 19 19:59:37 2020 -0400 + + adding additional docstring commenting/updated readme/added envars settings for local and deployments + +commit 5ccd77a477f86706e3e6284edcbba5e213e4a435 +Author: Carlton Smith +Date: Wed Aug 19 14:50:50 2020 -0400 + + model tests + +commit 57314b112d989fa384e8c8b8d047043a53b5f21f +Author: Carlton Smith +Date: Wed Aug 19 11:53:19 2020 -0400 + + test authentication.py + +commit 9b181a79406776339cca896cdd06beaebef60005 +Author: Carlton Smith +Date: Tue Aug 18 11:30:03 2020 -0400 + + remove testing files + +commit 4011bbeb721afb9b7c188076e33a379f6e3ef13a +Author: Carlton Smith +Date: Mon Aug 17 15:30:15 2020 -0400 + + fix requirements syntax error + +commit 5e5fc493dd0160ca205935547d24917f842df2a1 +Author: Carlton Smith +Date: Mon Aug 17 15:28:13 2020 -0400 + + remove unneeded file + +commit a7dc19b2f49b9350b161bd3db1ecba5c9b7113ed +Author: Carlton Smith +Date: Mon Aug 17 15:27:14 2020 -0400 + + fix linting error + +commit 8719d61416537fda7c0b0f27bf70e5751e8df3e4 +Author: Carlton Smith +Date: Mon Aug 17 15:25:37 2020 -0400 + + allow cors connections + +commit f057a56dbe224ea39afa5fb202fd87dcd16eaacf +Author: Carlton Smith +Date: Mon Aug 17 15:14:34 2020 -0400 + + add url test + +commit a8f52628ff40701d1c0debd7a655c1dacbfd8525 +Author: Carlton Smith +Date: Mon Aug 17 15:14:05 2020 -0400 + + add nbf flag to jwt + +commit 667896fc545bd52f3d43d3378f54fdeeeea71f51 +Author: Carlton Smith +Date: Mon Aug 17 14:37:24 2020 -0400 + + repair url test + +commit 110c59fe351862ea1cd348d0fa6499c4c7fad50e +Author: Carlton Smith +Date: Mon Aug 17 13:48:08 2020 -0400 + + add docstrings and other linting fixes + +commit 337531a818e11ffedc89c0cc23605519ebb3699a +Author: Carlton Smith +Date: Mon Aug 17 11:47:19 2020 -0400 + + redefine ignore + +commit 571a8d0e0ec0f4f83e6e4771129bfbad70fb984d +Author: Carlton Smith +Date: Mon Aug 17 11:45:43 2020 -0400 + + remove ignored + +commit dd320cd19b4a4871ae188fee62adbe2c585ee1a2 +Author: Carlton Smith +Date: Mon Aug 17 10:06:44 2020 -0400 + + linting fixes + +commit cbbbebe44276f6a06b90af7d1c3e330011d70ef5 +Author: raftergit +Date: Mon Aug 17 08:52:35 2020 -0400 + + extracted hard coded values to environment .env file + +commit 7bceb29133a420a88d432236c6b942e269d02e14 +Author: raftergit +Date: Sat Aug 15 23:35:34 2020 -0400 + + Resolving conflict with sessions retaining hint_token for logout and tracking the nonce and state generated for verification + +commit 3a63283c7be7b9e73278711dcd9fd7a82ac7cb83 +Author: raftergit +Date: Sat Aug 15 21:48:50 2020 -0400 + + Adding OIDC Login Auhorization as a backend task + +commit 9369c738f019564e7320963bd37ec933e84b2a69 +Author: Carlton Smith +Date: Fri Aug 14 11:36:35 2020 -0400 + + testing and linting + +commit 742a4b1e332735e0a2ae4b034c0fca35e7cdbd45 +Author: Carlton Smith +Date: Thu Aug 13 16:05:31 2020 -0400 + + login and logout using login.gov and django custom auth + +commit b27c6f00045e65ea4b782915f09179d555996f7a +Author: raftergit +Date: Mon Aug 10 23:14:32 2020 -0400 + + removing unused cypress/fixtures directory + +commit df0ed6f3bd8fbbda916412f3a00afde7ec347a2f +Author: raftergit +Date: Mon Aug 10 23:13:25 2020 -0400 + + removing unsed cypress/support directory + +commit bd6514b1fc115b2eef26305bac486b72b4b19f20 +Author: raftergit +Date: Thu Aug 6 23:06:41 2020 -0400 + + Resolve linting errors to pass CI Tests + + Found linting errors while implemetning circleci test automation on the backend + +commit cab4bda5e8e0bbe5e2ee973b45d4988c9c1c8195 +Author: raftergit +Date: Thu Aug 6 20:37:46 2020 -0400 + + Adding Backend CircleCI Testing + + Adding circleci build jobs for the Django rest framework + +commit adc68a1bfc41f3caa9fe81203f6adcaba938be20 +Author: raftergit +Date: Wed Aug 5 22:59:18 2020 -0400 + + updates to run gunicorn during local development + +commit f2f9cd64f7444f3ce969ad9e694d26bc34ade4f1 +Author: raftergit +Date: Tue Aug 4 00:18:53 2020 -0400 + + reduced docker image size updated manifest.yaml for dev deployment + + use token + + decode token + +commit c3c9b99e8a104e501a4bbd3f69bfc59956459ee4 +Author: Carlton Smith +Date: Mon Aug 3 18:48:44 2020 -0400 + + log in user and return user data to front end + +commit 313b89ea9bf0f6b638d39ab319ac17e57fceeeff +Author: Carlton Smith +Date: Mon Aug 3 18:32:41 2020 -0400 + + log response + +commit 166508b6ffd3f5509105171326e4f86e29d43edc +Author: Carlton Smith +Date: Mon Aug 3 14:38:57 2020 -0400 + + check for verified email + + typo fix + + latest + +commit ee19a2d977a82bb5259d8b67b601747cb9f69ece +Author: Carlton Smith +Date: Mon Aug 3 13:29:51 2020 -0400 + + get user and create session + +commit 2a99ee799023c3652259a30aec74b78d0670e58d +Author: raftergit +Date: Mon Aug 3 10:12:10 2020 -0400 + + updating call userinfo endpoint + +commit d2105a49246211e61be03a7dc0ac7340d44d8cf8 +Author: raftergit +Date: Mon Aug 3 09:06:53 2020 -0400 + + removing old oidc lib from urls.py + +commit 56d2f0bbda2e813d3478833e77cff29870f10d9f +Author: raftergit +Date: Mon Aug 3 08:59:24 2020 -0400 + + removing debugging logic + +commit a6953450a7a078bff98b71b25698e9655ebdbe4e +Author: raftergit +Date: Mon Aug 3 03:54:27 2020 -0400 + + removing apps that aren't needed from sub repo + +commit b0d40cb53e31a70968666ed5ec04c00e579db73b +Author: raftergit +Date: Mon Aug 3 03:48:29 2020 -0400 + + updates to authentication endpoint + +commit 1e56e9fd67355c192adae2d163c3028ce34f66ab +Author: raftergit +Date: Fri Jul 31 02:57:48 2020 -0400 + + draft of the manifest.yml and multi Dockerfile support + +commit 28bd38a8db70c9317ce29d6fbaa8fa9af1060e82 +Author: raftergit +Date: Fri Jul 31 02:04:55 2020 -0400 + + rolling linter testing, linter correction, unit testing, and vulnerability scanning into a script + +commit 609f714ebc1fce4f6a52a440998cfdd26b4a75a3 +Author: raftergit +Date: Wed Jul 29 17:45:11 2020 -0400 + + renamed config file to status, added nonroot user to docker container, default django settings to use local.py + + updating commenting + + updating commenting + +commit 7bf1fdce79f1d2374e0f9855a343fa9edf41dbd0 +Author: raftergit +Date: Wed Jul 29 17:09:57 2020 -0400 + + adding custom user to prevent defaulting to root + +commit 9edc84a8f4649b114f695a0c742b4ecc4cfcea51 +Author: raftergit +Date: Wed Jul 29 15:40:52 2020 -0400 + + updates to boilerplate + +commit de651d75c9379e415aaf1164fa72421dcc44d80f +Author: Carlton Smith +Date: Wed Jul 29 15:13:52 2020 -0400 + + add gitignore + + clenup gitignore + + add files + +commit d19925b093a62dd0a6c74a4ca3ac94ea5008183e +Author: raftergit +Date: Wed Jul 29 14:30:36 2020 -0400 + + updates to dockerfile + +commit 5f0b861ed9817c5dd5a0941408000968cbe8ba23 +Author: raftergit +Date: Wed Jul 29 11:19:50 2020 -0400 + + initial scaffolding for backend service + +commit 54011b441cc20a6f9b0559d88ebe60ac488ba7f7 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 21:23:18 2020 -0400 + + Update issue_template.md + +commit 1311e1cf14e768c8b3f8a1e6b16bc18e52e1365b +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 20:09:51 2020 -0400 + + Default issue format template + +commit 74b848fa70f3a4f2c2d83b3fa66af00ba2c2a38b +Author: raftergit +Date: Mon Aug 3 17:46:33 2020 -0400 + + Setup CircleCI job for the frontend + + Add build steps: + - Install dependencies + - Run linter + - Run pa11y accessibility tests + - Run Cypress integration tests + - Run Jest unit tests + + Update the manifest to use a consistent name for the application across the project + + Update Readme instructions to build locally + +commit 1b0b24c5b8e3ae97716eb696c22a85d3b7de4942 +Author: Adam Caron +Date: Mon Aug 3 10:12:10 2020 -0400 + + Add pa11y for ci + + Also move prod build instructions in readme to the top + so readers do not need to scroll through the long local dev instructions + +commit a46936d24bce2b25bc2f7edac3fc8d2fe0f66747 +Author: Adam Caron +Date: Thu Jul 30 14:01:51 2020 -0400 + + Add Cypress for end-to-end UI tests + + Update README with e2e test running instructions + + Add an integration test for the welcome page: + `/cypress/integration/welcome_page_greeting.spec.js` + +commit 0a27fc6711ca21b3f28ad139c9d2d40c3ec952de +Author: Adam Caron +Date: Thu Jul 30 08:52:47 2020 -0400 + + Add Jest testing framework for unit tests + + Add scripts for CI and for local code coverage + - test:ci for CI + - test:cov to see code coverage locally. Because running with coverage + slows down the test suite, this was added as an optional script. + The --watchAll flag was added to `test:cov` because there is an issue + where coverage reports 0/0% when tests run in interactive mode. + https://github.com/facebook/jest/issues/7331 + https://github.com/jest-community/vscode-jest/issues/433 + + Have ESLint and Git ignore the coverage output + + Add tests for the App component + + Update README with unit test instructions + +commit 1f3f72ef17eb64bd664a0b3afc957b92a0ad4331 +Author: Adam Caron +Date: Wed Jul 29 14:49:24 2020 -0400 + + Add ESLint and Prettier + + Configure ESLint to work with Prettier + and follow the Airbnb style guide + + Fix files to comply with ESLint/Prettier rules + + Add .eslintignore and .prettierignore to omit files and directories + that should not be changed or checked + + Document lint tools in the README + + Add a yarn run v1.22.4 + $ eslint src/ && echo 'Lint complete.' + Lint complete. + Done in 1.04s. command that can be used locally and by CI + + As a note: Paulo Ramos' script was used to setup ESLint, Prettier, + and Airbnb config to play nice with each other. This is typically + an arduous process and the script made it simple. + For reference: https://github.com/paulolramos/eslint-prettier-airbnb-react + +commit 58ed03ec6d7a6463c7b8f71878ec80bcd7ae3734 +Author: Adam Caron +Date: Wed Jul 29 10:48:05 2020 -0400 + + Add USWDS + + Use trussworks/react-uswds because it integrates nicely and is well supported/maintained. + + It became necessary to downgrade the Node.js version from 14 to 12 + because the trussworks project only supports 12. + - Change Dockerfile node version to 12 + - Create an .nvmrc file for folks who use nvm. This helps to ensure that + a contributor's local node environment matches the Docker runtime environment. + + Add a reference to USWDS in the README + + Add README instructions to `build`, `run`, and `push` the Docker image + both for local development and to serve the static build. + + Add a nice little UI to welcome people and to demonstrate that USWDS is integrated. + + Remove unnecessary default create-react-app output files and code + + Change the app title to match the project + +commit cf6d431395a0da0f471a2c4d85ebae266ff22333 +Author: Adam Caron +Date: Tue Jul 28 18:45:07 2020 -0400 + + Add a cloud foundry manifest + + Specify the docker image to be used. + Until we have a repository for this project, we'll use a public repo: + namely dockerhub.com and Adam's repo (adamcaron). + + Currently the `memory` attribute is unspecified, which defaults to `1GB` + +commit 583d69acbf538fa2ca8235cbf8b8b4d73caa8321 +Author: Adam Caron +Date: Tue Jul 28 15:08:59 2020 -0400 + + Add multi-stage build Dockerfile + + - Stage 0 installs dependencies. Target this stage for local dev + by building with the command: + `docker build --target localdev -t tdrs-frontend:local .` + and running: + `docker run -it -p 3000:3000 --rm tdrs-frontend:local yarn start` + and navigate to localhost:3000 + + - Stage 1 builds the production distribution + + - Stage 2 serves over nginx with custom nginx config. + To build stage 2: + `docker build -t adamcaron/tdrs-frontend:build .` + and run: + `docker run -it -p 3000:80 --rm adamcaron/tdrs-frontend:build` + + Add peer dependencies in package.json + so yarn install doesn't fail in the container. + For some reason with create-react-app's dependencies, + some peer dependencies do not automatically install + (typescript and @testing-library/jest-dom). Since presently + there is no way to automatically install peer deps, they have + been added to the package.json + + Add a dockerignore with basic contents to omit from the image + +commit 83e5537f7c09c509157051322f8f8f5c1cc9b1d9 +Author: Adam Caron +Date: Tue Jul 28 15:00:26 2020 -0400 + + Initialize React application + + Add basic output from create-react-app + + Add a gitignore with standard things to ignore + + Include yarn.lock since yarn will be the package manager. + Yarn was chosen for its improved performance over npm + as it is known to run more quickly, has a robust API, + is widely adopted (used by the React core project team), + and guarantees that running install on a project with a lockfile + will always produce the same tree of packages, unlike npm. + Yarn also plays nice with loom, in case this project goes the route + of a multi-package mono-repository. With yarn 2 around the corner, + it will also be easy to migrate, should that decision arise. + +commit 8ddbe55a355cba67e45a4be2476ff0cf2f49b012 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 21:23:18 2020 -0400 + + Update issue_template.md + +commit ec975359f564dd9e1f008e41cc3f82d5b1f5ef6b +Author: raftergit +Date: Wed Aug 26 11:26:42 2020 -0400 + + performing updates + +commit eff4f93f3dfe3cf7945d84ac89e0dd5227590441 +Merge: 4fa91d538 8207cf2f4 +Author: Robert Jolly +Date: Tue Aug 11 10:04:25 2020 -0600 + + Merge pull request #37 from raft-tech/raft-tdp-main + + TDP Frontend Scaffolding + +commit 8207cf2f4d744b28553058a07be0291044565aec +Merge: c358775e6 6c1bbb6e2 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Tue Aug 11 11:57:36 2020 -0400 + + Merge pull request #77 from raft-tech/backend-ci-tests + + PR Review Updates + +commit 6c1bbb6e2db82cf3c0cd753c87831dbf0d052059 +Author: raftergit +Date: Mon Aug 10 23:14:32 2020 -0400 + + removing unused cypress/fixtures directory + +commit c1b87370e0613ad8d91d1679a79efbb65c9cc348 +Author: raftergit +Date: Mon Aug 10 23:13:25 2020 -0400 + + removing unsed cypress/support directory + +commit 91e30bf4685bc6b979e618a30e27551c07cbb13c +Author: raftergit +Date: Thu Aug 6 23:06:41 2020 -0400 + + Resolve linting errors to pass CI Tests + + Found linting errors while implemetning circleci test automation on the backend + +commit c9d869531355a2bf55d3be6a43040e9c0c2c56f3 +Author: raftergit +Date: Thu Aug 6 20:37:46 2020 -0400 + + Adding Backend CircleCI Testing + + Adding circleci build jobs for the Django rest framework + +commit c358775e633570623580dc82ce5df6eca9e46886 +Merge: 53bc6b271 d5596011d +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Aug 6 19:13:05 2020 -0400 + + Merge pull request #76 from raft-tech/tpd-backend-scaffolding + + Tpd backend scaffolding + +commit d5596011d17eb2c70e8de3cdfceee240ecc0b5ff +Author: raftergit +Date: Wed Aug 5 22:59:18 2020 -0400 + + updates to run gunicorn during local development + +commit 0d8ed1c7dc13f3760b80d16e89baf1bc25707a9d +Author: raftergit +Date: Tue Aug 4 00:18:53 2020 -0400 + + reduced docker image size updated manifest.yaml for dev deployment + + use token + + decode token + +commit 1f24f803b03f2405743ddf4efe7cf1362af80162 +Author: Carlton Smith +Date: Mon Aug 3 18:48:44 2020 -0400 + + log in user and return user data to front end + +commit d8e51c9a7ed68e48b1f353d597631d5f261fadad +Author: Carlton Smith +Date: Mon Aug 3 18:32:41 2020 -0400 + + log response + +commit 7f2b98d2dd5351366a570eab5c66a3d54f53e5e1 +Author: Carlton Smith +Date: Mon Aug 3 14:38:57 2020 -0400 + + check for verified email + + typo fix + + latest + +commit 9180bb32316b8e4c52568f12f6b6185228bb5a7f +Author: Carlton Smith +Date: Mon Aug 3 13:29:51 2020 -0400 + + get user and create session + +commit a33c367ace91b258dd1011968c334ef77ed766b5 +Author: raftergit +Date: Mon Aug 3 10:12:10 2020 -0400 + + updating call userinfo endpoint + +commit 07928638a1d25e723ee7f85285513d44e06a0f71 +Author: raftergit +Date: Mon Aug 3 09:06:53 2020 -0400 + + removing old oidc lib from urls.py + +commit f4ab7a000a576b05c123038597ec56d38062edf5 +Author: raftergit +Date: Mon Aug 3 08:59:24 2020 -0400 + + removing debugging logic + +commit 56287e34dc822a651d3c96b54c3361edcb899e6d +Author: raftergit +Date: Mon Aug 3 03:54:27 2020 -0400 + + removing apps that aren't needed from sub repo + +commit c8ef29a2e3c019a12f636537cfac4ac1619027f1 +Author: raftergit +Date: Mon Aug 3 03:48:29 2020 -0400 + + updates to authentication endpoint + +commit 129d1577c306e80756c9d93f3582d1860f814a60 +Author: raftergit +Date: Fri Jul 31 02:57:48 2020 -0400 + + draft of the manifest.yml and multi Dockerfile support + +commit 4f7e129ea1d447765a9dbe0da7acf1b30fd92e30 +Author: raftergit +Date: Fri Jul 31 02:04:55 2020 -0400 + + rolling linter testing, linter correction, unit testing, and vulnerability scanning into a script + +commit e703f7f145e19ffb838c8e4d1c63265baf951108 +Author: raftergit +Date: Wed Jul 29 17:45:11 2020 -0400 + + renamed config file to status, added nonroot user to docker container, default django settings to use local.py + + updating commenting + + updating commenting + +commit 842914bb22d427f9711a723d972e1bc1592d6c48 +Author: raftergit +Date: Wed Jul 29 17:09:57 2020 -0400 + + adding custom user to prevent defaulting to root + +commit ee747e813f071947722f50a00a9dda2a817070b9 +Author: raftergit +Date: Wed Jul 29 15:40:52 2020 -0400 + + updates to boilerplate + +commit fe5cc34c962f75cfc829e7aaae0b5a478bf5df5c +Author: Carlton Smith +Date: Wed Jul 29 15:13:52 2020 -0400 + + add gitignore + + clenup gitignore + + add files + +commit c618df4803dc9c870c80b84de6f9d66bbdbda457 +Author: raftergit +Date: Wed Jul 29 14:30:36 2020 -0400 + + updates to dockerfile + +commit 06245715185ee4844156d3c041aca8bd4e834350 +Author: raftergit +Date: Wed Jul 29 11:19:50 2020 -0400 + + initial scaffolding for backend service + +commit 8efa67d063d0a36f73082d5ee9eb0f68fbe83641 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 21:23:18 2020 -0400 + + Update issue_template.md + +commit 10453dade366287876be1b73e91540fd6db1d888 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 20:09:51 2020 -0400 + + Default issue format template + +commit 53bc6b27105dc0c72163fa4d013bbc129efc2db4 +Merge: 37abc9de8 bd3c8d250 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Aug 6 17:56:51 2020 -0400 + + Merge pull request #73 from raft-tech/1-ui-hello-world--rebased + + Rebase commits from #26 and #70, and refactor CI config and scripts + +commit bd3c8d250d2a257ebbc3a46360888ba2bb8b4cb0 +Author: raftergit +Date: Mon Aug 3 17:46:33 2020 -0400 + + Setup CircleCI job for the frontend + + Add build steps: + - Install dependencies + - Run linter + - Run pa11y accessibility tests + - Run Cypress integration tests + - Run Jest unit tests + + Update the manifest to use a consistent name for the application across the project + + Update Readme instructions to build locally + +commit fad384ec687aec3e373fb42b2e6a87dd08585798 +Author: Adam Caron +Date: Mon Aug 3 10:12:10 2020 -0400 + + Add pa11y for ci + + Also move prod build instructions in readme to the top + so readers do not need to scroll through the long local dev instructions + +commit 9f1e0197ca1bef967e794ad598c8a39c77af9284 +Author: Adam Caron +Date: Thu Jul 30 14:01:51 2020 -0400 + + Add Cypress for end-to-end UI tests + + Update README with e2e test running instructions + + Add an integration test for the welcome page: + `/cypress/integration/welcome_page_greeting.spec.js` + +commit 5a5de687133d4a7070432e770b866bb2b1466545 +Author: Adam Caron +Date: Thu Jul 30 08:52:47 2020 -0400 + + Add Jest testing framework for unit tests + + Add scripts for CI and for local code coverage + - test:ci for CI + - test:cov to see code coverage locally. Because running with coverage + slows down the test suite, this was added as an optional script. + The --watchAll flag was added to `test:cov` because there is an issue + where coverage reports 0/0% when tests run in interactive mode. + https://github.com/facebook/jest/issues/7331 + https://github.com/jest-community/vscode-jest/issues/433 + + Have ESLint and Git ignore the coverage output + + Add tests for the App component + + Update README with unit test instructions + +commit c24648e3e47d8d2874810d720a35b5b3c2639b29 +Author: Adam Caron +Date: Wed Jul 29 14:49:24 2020 -0400 + + Add ESLint and Prettier + + Configure ESLint to work with Prettier + and follow the Airbnb style guide + + Fix files to comply with ESLint/Prettier rules + + Add .eslintignore and .prettierignore to omit files and directories + that should not be changed or checked + + Document lint tools in the README + + Add a yarn run v1.22.4 + $ eslint src/ && echo 'Lint complete.' + Lint complete. + Done in 1.04s. command that can be used locally and by CI + + As a note: Paulo Ramos' script was used to setup ESLint, Prettier, + and Airbnb config to play nice with each other. This is typically + an arduous process and the script made it simple. + For reference: https://github.com/paulolramos/eslint-prettier-airbnb-react + +commit afd37bbb8979a73b47306ad08fa5ba018d3f03c6 +Author: Adam Caron +Date: Wed Jul 29 10:48:05 2020 -0400 + + Add USWDS + + Use trussworks/react-uswds because it integrates nicely and is well supported/maintained. + + It became necessary to downgrade the Node.js version from 14 to 12 + because the trussworks project only supports 12. + - Change Dockerfile node version to 12 + - Create an .nvmrc file for folks who use nvm. This helps to ensure that + a contributor's local node environment matches the Docker runtime environment. + + Add a reference to USWDS in the README + + Add README instructions to `build`, `run`, and `push` the Docker image + both for local development and to serve the static build. + + Add a nice little UI to welcome people and to demonstrate that USWDS is integrated. + + Remove unnecessary default create-react-app output files and code + + Change the app title to match the project + +commit c06c929258dc3be81c69eb3b0eb8c84e7bc4e591 +Author: Adam Caron +Date: Tue Jul 28 18:45:07 2020 -0400 + + Add a cloud foundry manifest + + Specify the docker image to be used. + Until we have a repository for this project, we'll use a public repo: + namely dockerhub.com and Adam's repo (adamcaron). + + Currently the `memory` attribute is unspecified, which defaults to `1GB` + +commit 66422e65ab3736ae6c7586a404961fc8061b56c3 +Author: Adam Caron +Date: Tue Jul 28 15:08:59 2020 -0400 + + Add multi-stage build Dockerfile + + - Stage 0 installs dependencies. Target this stage for local dev + by building with the command: + `docker build --target localdev -t tdrs-frontend:local .` + and running: + `docker run -it -p 3000:3000 --rm tdrs-frontend:local yarn start` + and navigate to localhost:3000 + + - Stage 1 builds the production distribution + + - Stage 2 serves over nginx with custom nginx config. + To build stage 2: + `docker build -t adamcaron/tdrs-frontend:build .` + and run: + `docker run -it -p 3000:80 --rm adamcaron/tdrs-frontend:build` + + Add peer dependencies in package.json + so yarn install doesn't fail in the container. + For some reason with create-react-app's dependencies, + some peer dependencies do not automatically install + (typescript and @testing-library/jest-dom). Since presently + there is no way to automatically install peer deps, they have + been added to the package.json + + Add a dockerignore with basic contents to omit from the image + +commit aedb9b160ad8673ce8250fe34ea38494f8cebcb8 +Author: Adam Caron +Date: Tue Jul 28 15:00:26 2020 -0400 + + Initialize React application + + Add basic output from create-react-app + + Add a gitignore with standard things to ignore + + Include yarn.lock since yarn will be the package manager. + Yarn was chosen for its improved performance over npm + as it is known to run more quickly, has a robust API, + is widely adopted (used by the React core project team), + and guarantees that running install on a project with a lockfile + will always produce the same tree of packages, unlike npm. + Yarn also plays nice with loom, in case this project goes the route + of a multi-package mono-repository. With yarn 2 around the corner, + it will also be easy to migrate, should that decision arise. + +commit 37abc9de8a3f536fa22d9da94692b20134cc3ecd +Merge: 07869e74e ff483347d +Author: raftergit +Date: Tue Jul 28 10:54:23 2020 -0400 + + Merge branch 'main' of https://github.com/raft-tech/TANF-app into main + +commit 07869e74e4045b72f7148aafbb7d3171e1fc6dfa +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 21:23:18 2020 -0400 + + Update issue_template.md + +commit 21e592a5fc2a34fe42b875b1cc0c5dcb6b4851f1 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 20:09:51 2020 -0400 + + Default issue format template + +commit 4fa91d538bc45d7f2919dc25a30acdf2cc141a5f +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Thu Jul 23 10:48:03 2020 -0400 + + temp working directies (#32) + + Co-authored-by: raftergit + +commit ff483347d2528e9fe8e16ff7ae88db5eb35e3a22 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 21:23:18 2020 -0400 + + Update issue_template.md + +commit 9957b0999c6cd8774ea6d53288bc5aac3b37859c +Merge: 0c42d3250 7fdfdcdb1 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 20:19:54 2020 -0400 + + Merge pull request #15 from raft-tech/issue-template + + Default issue format template + +commit 7fdfdcdb122748937912ccccdbe145f58341a557 +Author: RafterGit <68233018+RafterGit@users.noreply.github.com> +Date: Wed Jul 22 20:09:51 2020 -0400 + + Default issue format template + +commit 0c42d3250aa94ec66fd1210ce1efd5468290b04a +Author: Laura Gerhardt +Date: Wed Jul 15 15:45:00 2020 -0400 + + wip: cf cli config for static dev (#31) + + * update cg-deploy to have static build-pack + + * saved down page and coming soon content + + * slimming down static page + + * Ftanf import from EXCEL (#13) + + * update section3 ftanfy based on file updates + + * init-commit-excel + + * move into class + + * handle empty rows + + * add inline documentation for ftanf class + + * ftanf-tests-wip + + * update ftanf-excel-tests + + * add pytest to req.txt + + * add xlrd to req.txt + + * update static path + + * Update manifest-static.yml + + * Rename index.htm to index.html + + * rm manifest static + + * upgrade cf-cli to 7 + + Co-authored-by: Christine Bath + +commit 75cd60edd6dc91669a496d64d786115a758fd049 +Author: Laura Gerhardt +Date: Tue Jul 14 16:51:29 2020 -0400 + + Static worker and ftanf excel (#26) + + * update cg-deploy to have static build-pack + + * saved down page and coming soon content + + * slimming down static page + + * Ftanf import from EXCEL (#13) + + * update section3 ftanfy based on file updates + + * init-commit-excel + + * move into class + + * handle empty rows + + * add inline documentation for ftanf class + + * ftanf-tests-wip + + * update ftanf-excel-tests + + * add pytest to req.txt + + * add xlrd to req.txt + + * update static path + + * Update manifest-static.yml + + Co-authored-by: Christine Bath + +commit ff9337ddbcd6a445fd92d1bab59c82bdc4f6f1f5 +Merge: 4df62b7a7 2ebf90dc0 +Author: Laura Gerhardt +Date: Tue Jul 14 15:32:07 2020 -0400 + + Merge pull request #29 from HHS/Miatta18F-patch-3 + + OFA/ACF COR Delegation Letter + +commit 4df62b7a74348bbba5f863d33a138e285b00f6e2 +Merge: d6c21503a a2b099bb0 +Author: Laura Gerhardt +Date: Tue Jul 14 15:31:46 2020 -0400 + + Merge pull request #28 from HHS/Miatta18F-patch-1 + + GSA/TTS/18F COR Delegation Letter + +commit 2ebf90dc0c713319059b5e1bf33556d9d8d367a1 +Author: Miatta <47864216+Miatta18F@users.noreply.github.com> +Date: Tue Jul 14 15:25:28 2020 -0400 + + OFA/ACF COR Delegation Letter + + COR delegation letter for Dvora Wilensky + +commit a2b099bb068162ea78fb2647f5be43c4d07cf537 +Author: Miatta <47864216+Miatta18F@users.noreply.github.com> +Date: Tue Jul 14 14:41:56 2020 -0400 + + Add files via upload + +commit d6c21503afbf52435a42726a52dd6e6a8b679cec +Merge: 33e4ed8ee 9f37eb3bf +Author: lfrohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jul 14 13:28:43 2020 -0400 + + Merge pull request #27 from HHS/lfrohlich-patch-1 + + Upload of the ACF org chart. + +commit 9f37eb3bfe841afcbc54b1a079795d0c9b4f2fa5 +Author: lfrohlich <61251539+lfrohlich@users.noreply.github.com> +Date: Tue Jul 14 13:26:57 2020 -0400 + + Upload of the ACF org chart. + +commit 33e4ed8eebd9159f4fba9607e248d09daf1133be +Merge: 2b44da6ca 0bcb42f22 +Author: Laura Gerhardt +Date: Fri Jul 10 14:46:06 2020 -0400 + + Merge branch 'dev' into main + +commit 2b44da6ca264d87ca26731d6c5eb1e8f0b0c0068 +Merge: d987b2498 99a9bb335 +Author: Laura Gerhardt +Date: Wed Jul 8 16:21:12 2020 -0400 + + Merge pull request #22 from HHS/master + + update main + +commit d987b24980aabdc38f7f82103bb1d0c38483178a +Merge: 694bb23a3 e5ecdc20d +Author: Laura Gerhardt +Date: Wed Jul 8 15:17:49 2020 -0400 + + Merge pull request #21 from HHS/main-rename + + update branch references + +commit e5ecdc20d86c6051b6c33d031b8237caf2adf535 +Author: Laura Gerhardt +Date: Wed Jul 8 15:12:30 2020 -0400 + + update branch references + +commit 99a9bb3354515bdb823d518cd09f780f4e34e5d3 +Merge: 694bb23a3 738d97d9c +Author: Laura Gerhardt +Date: Mon Jul 6 13:56:56 2020 -0400 + + Merge pull request #20 from HHS/readme-updates + + update image and readme + +commit 738d97d9c46cad1653eac13a1ad7343a55ab9447 +Author: Laura Gerhardt +Date: Mon Jul 6 13:25:14 2020 -0400 + + update image and readme + +commit 694bb23a3ed02534218876860b1214183f9edc78 +Author: Selena Juneau-Vogel +Date: Thu Jul 2 18:18:22 2020 -0400 + + Add files via upload + +commit 755cffe535d377fb431f32b655caab20398dcf15 +Author: Selena Juneau-Vogel +Date: Thu Jul 2 16:26:56 2020 -0400 + + Add files via upload + +commit a8aa8ff327dbcf31fe334f64ed237349959dbe1a +Author: Selena Juneau-Vogel +Date: Thu Jul 2 16:24:16 2020 -0400 + + Delete three product considerations.png + +commit 202d01d6df451504a4325b52698e19e82780209d +Author: Selena Juneau-Vogel +Date: Thu Jul 2 16:24:07 2020 -0400 + + Delete three considerations to strategy pyramid.png + +commit d33ad1ecc9ba6d5b08646a93b4bc10e1ea6df51f +Author: Selena Juneau-Vogel +Date: Thu Jul 2 16:23:57 2020 -0400 + + Delete inverted product strategy pyramid.png + +commit a9473eb129fef01dd5cc3301b47828cc143e9c68 +Author: Selena Juneau-Vogel +Date: Thu Jul 2 09:45:19 2020 -0400 + + Delete product-considerations + +commit c117efee49d8947bb0317a7b6b53155a5e3841bf +Author: Selena Juneau-Vogel +Date: Thu Jul 2 09:44:42 2020 -0400 + + Delete three product considerations.png + +commit 8ad24cdb9aa39a1db681981867eec5bac0d14693 +Author: Selena Juneau-Vogel +Date: Thu Jul 2 09:44:06 2020 -0400 + + product strategy images + +commit 181c03f1380a165380577f2ca37506f27e4faa91 +Author: Selena Juneau-Vogel +Date: Wed Jul 1 17:04:17 2020 -0400 + + Create product-considerations + +commit e9b5dc64c1f94520bb38dc8551ee9438f584093c +Author: Selena Juneau-Vogel +Date: Wed Jul 1 16:59:43 2020 -0400 + + Delete product-strategy-assets + +commit 3431796830de8f13cb66294a8227f649bfae5970 +Author: Selena Juneau-Vogel +Date: Wed Jul 1 16:52:23 2020 -0400 + + Add files via upload + +commit 512a5104ba2a78de0b5a65e91b25f5fa83c342f7 +Author: Selena Juneau-Vogel +Date: Wed Jul 1 16:49:30 2020 -0400 + + Create product-strategy-assets + + Adding folder for product strategy images etc. for wiki content + +commit 0bcb42f221d030c006c59674254b3236f5ba5b4f +Merge: b98697902 b032e866b +Author: Laura Gerhardt +Date: Wed Jul 1 10:57:23 2020 -0400 + + Merge pull request #19 from HHS/test-make-calendar-editable + + Test make calendar editable + +commit b032e866bd69de699e164f68a927447eb81d0828 +Author: Laura Gerhardt +Date: Wed Jul 1 10:32:00 2020 -0400 + + update readme + +commit 7da64d8797f142c8ffe5c899f2ad0495252b1c91 +Author: Laura Gerhardt +Date: Mon Jun 29 14:39:21 2020 -0400 + + gitignore ds_store + +commit 8af9516badc095794da4cdd9dc6a164a405bab04 +Author: Laura Gerhardt +Date: Mon Jun 29 14:38:08 2020 -0400 + + update docker compose and make one-field-input + +commit 00f4c53c9669280e796efd392eee685ed296acfe +Merge: 3527ea60a 6457ecaf4 +Author: Laura Gerhardt +Date: Fri Jun 26 15:01:41 2020 -0400 + + Merge pull request #17 from HHS/readme-format + + Update README.md + +commit 6457ecaf4ea4fc1ae230d5dfafb475085a70b9d8 +Author: Christine Bath +Date: Fri Jun 26 14:16:08 2020 -0400 + + Update README.md + +commit 3527ea60a631f1945524365a0cfcccf89c859659 +Merge: 3c167bb39 2ffb96345 +Author: Laura Gerhardt +Date: Fri Jun 26 13:22:23 2020 -0400 + + Merge pull request #15 from HHS/design-assets + + create design asset folder + +commit 2ffb96345114878167a416ff5a4db1f17e5d55b0 +Author: Laura Gerhardt +Date: Fri Jun 26 13:18:02 2020 -0400 + + Update README.md + +commit e0b800683dfabeeff57ce064e2ff447c6b8e33a2 +Author: Christine Bath +Date: Fri Jun 26 12:00:38 2020 -0400 + + removing DS_Store, adding DS_Store to gitignore + +commit 0f77dbc4db18e80ece77d023b94ce9a01544befd +Author: Christine Bath +Date: Wed Jun 24 15:10:13 2020 -0400 + + create design asset folder, add stakeholder map + +commit 3c167bb3945b212e4b55bb3b8fcc3e987e534818 +Author: Laura Gerhardt +Date: Wed Jun 17 14:37:15 2020 -0400 + + remove test doc upload + +commit c2801883b9cb1336489fc5986eca0d8b9e719b86 +Merge: c9edf5f57 7fa8bacc9 +Author: Laura Gerhardt +Date: Wed Jun 17 14:33:48 2020 -0400 + + Merge pull request #14 from HHS/Miatta18F-TestDocUpload + + Testing upload of a document + +commit 7fa8bacc96754533c20679c7c08eb24e76c4be94 +Author: Miatta <47864216+Miatta18F@users.noreply.github.com> +Date: Wed Jun 17 14:29:27 2020 -0400 + + Testing upload of a document + +commit c9edf5f57b5c354bf1b9a92fec9c49d452792802 +Author: Laura Gerhardt +Date: Wed May 13 13:39:45 2020 -0400 + + Incorporate ftanf updates (#12) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * removed section3 specific thing so it can work on multiple sections + + * update comment + + * Update section3 ftanfy based on xlsx updates (#11) + + * 1st deploy productions (#4) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + Co-authored-by: timothy-spencer + + * Deploy documentation to prod (#8) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * Document system better (#5) + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * remove Workflows.md + + * ftanf.py to production! (#10) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * Document system better (#5) + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * remove Workflows.md + + * fix ftanf.py so that it is more general (#9) + + * removed section3 specific thing so it can work on multiple sections + + * update comment + + * update section3 ftanfy based on file updates + + Co-authored-by: ttran-hub <61292479+ttran-hub@users.noreply.github.com> + Co-authored-by: timothy-spencer + + Co-authored-by: timothy-spencer + Co-authored-by: ttran-hub <61292479+ttran-hub@users.noreply.github.com> + +commit b98697902d1b22800a5edb3a93a5b3f7926c0b18 +Merge: c08a3211c c7d1c18ab +Author: Laura Gerhardt +Date: Wed May 13 13:33:20 2020 -0400 + + Merge branch 'master' into dev + +commit c08a3211c6ccd97dd3b8daf88a7854b5d66cd1ca +Author: Laura Gerhardt +Date: Mon Apr 13 11:21:32 2020 -0400 + + Update section3 ftanfy based on xlsx updates (#11) + + * 1st deploy productions (#4) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + Co-authored-by: timothy-spencer + + * Deploy documentation to prod (#8) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * Document system better (#5) + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * remove Workflows.md + + * ftanf.py to production! (#10) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * Document system better (#5) + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * remove Workflows.md + + * fix ftanf.py so that it is more general (#9) + + * removed section3 specific thing so it can work on multiple sections + + * update comment + + * update section3 ftanfy based on file updates + + Co-authored-by: ttran-hub <61292479+ttran-hub@users.noreply.github.com> + Co-authored-by: timothy-spencer + +commit c7d1c18ab3a020676707378e6f21d3a5fcc79d0d +Author: Tim Spencer +Date: Thu Mar 26 11:47:26 2020 -0700 + + ftanf.py to production! (#10) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * Document system better (#5) + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * remove Workflows.md + + * fix ftanf.py so that it is more general (#9) + + * removed section3 specific thing so it can work on multiple sections + + * update comment + +commit e42bb0368839a3f4caf7ef253fc4d5661c5bd6f4 +Author: timothy-spencer +Date: Tue Mar 24 13:02:23 2020 -0700 + + update comment + +commit 36200db7f01e88231edfd8b0b8a60d6f515083c4 +Author: timothy-spencer +Date: Tue Mar 24 12:55:04 2020 -0700 + + removed section3 specific thing so it can work on multiple sections + +commit 20dec63fd393786cacab5592e8451080e24c4f93 +Author: Tim Spencer +Date: Tue Mar 24 11:41:14 2020 -0700 + + Deploy documentation to prod (#8) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * Document system better (#5) + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + * added some fixups to make sure we handle the actual data properly + + * fix trailer, zero pad numbers, handle some exceptions better + + * fixed ftanf.py to work with latest iteration of spreadsheet + + * make sure header is using sizes properly + + * added a comment + + * first stab at documenting everything + + * forgot to put diagram in + + * yank LATO diagram because it's wrong + + * incorporate many changes proposed by laura + + * document XXX in documentation + + * add docs about per-environment cloud.gov deploys + + * more documentation updates from laura feedback + + * try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + + * remove Workflows.md + +commit bd9729586b8349c777bf76f90fee88f91de0a9b5 +Author: Tim Spencer +Date: Tue Mar 24 11:12:52 2020 -0700 + + try to find a usable shasum (#7) + + * try to find a usable shasum + + * forgot to redirect output + +commit d6ae8e71722ee11aff7ee9bbb45a51f58fab0094 +Author: timothy-spencer +Date: Tue Mar 24 11:08:46 2020 -0700 + + more documentation updates from laura feedback + +commit 5372732292bc783d412e646d713c08bc6e3bef60 +Author: timothy-spencer +Date: Tue Mar 24 10:58:21 2020 -0700 + + add docs about per-environment cloud.gov deploys + +commit c0429aecffe1fbdc8eb9f4699c8d30db7255dc27 +Author: timothy-spencer +Date: Tue Mar 24 10:55:07 2020 -0700 + + document XXX in documentation + +commit 632f362abca7f726f64d9c79284d704f12a98ada +Author: timothy-spencer +Date: Tue Mar 24 10:51:41 2020 -0700 + + incorporate many changes proposed by laura + +commit 80b2832c1a60c47f8b614dab5033600c43d60e15 +Author: timothy-spencer +Date: Mon Mar 23 17:40:13 2020 -0700 + + yank LATO diagram because it's wrong + +commit 77faef6b45f02966715333978c3e917c75388c9d +Author: timothy-spencer +Date: Mon Mar 23 17:39:05 2020 -0700 + + forgot to put diagram in + +commit a7dbbf5a89c3c59ef17eb56cb77a9c087985c77a +Author: timothy-spencer +Date: Mon Mar 23 17:36:16 2020 -0700 + + first stab at documenting everything + +commit 5beb4dfae63f41d0504024c586159db8450f1980 +Author: timothy-spencer +Date: Mon Mar 23 16:34:41 2020 -0700 + + added a comment + +commit 5c1788535b1405e4dc2c8f91cda48a339a733f42 +Author: timothy-spencer +Date: Mon Mar 23 16:33:32 2020 -0700 + + make sure header is using sizes properly + +commit 25def13b91f56ded2d3ac69845fc59edf2018ee6 +Author: timothy-spencer +Date: Mon Mar 23 16:18:53 2020 -0700 + + fixed ftanf.py to work with latest iteration of spreadsheet + +commit d8f16357ecb3b62918c3276e434227d4c9e551ee +Author: timothy-spencer +Date: Wed Mar 18 10:34:16 2020 -0700 + + fix trailer, zero pad numbers, handle some exceptions better + +commit 0716c243bde8d6233400c26aef6e1b8d276ea4d3 +Author: timothy-spencer +Date: Tue Mar 10 17:20:07 2020 -0700 + + added some fixups to make sure we handle the actual data properly + +commit ac64ed395e7e086c74a80fe0e82cfffe91729c31 +Author: ttran-hub <61292479+ttran-hub@users.noreply.github.com> +Date: Mon Mar 9 15:11:14 2020 -0700 + + 1st deploy productions (#4) + + * copy over prototype app from https://github.com/18F/tanf-prototype + + * turning off feature that HHS does not have enabled + + * set up so that dev/staging/prod work + + * added dev env + + * set CGHOSTNAME properly + + * trying to bump memory up + + * bump python version, try updating manifest to get memory to worker + + * added staging + + * update docs to test workflow + + * demo change to about page + + * removing my demo line + + * add workflows doc + + * removed link to doc section that does not exist + + * show easier way to run locally, enable owasp zap scanner + + * first stab at ftanf conversion script + + Co-authored-by: timothy-spencer + +commit 619ffa51d8721209fa80421c1bd5e7bdd0be5148 +Author: timothy-spencer +Date: Thu Mar 5 17:16:34 2020 -0800 + + first stab at ftanf conversion script + +commit 6b8083e5e7568c234b08ab8bccfc963309bbd797 +Author: timothy-spencer +Date: Mon Mar 2 15:51:00 2020 -0800 + + show easier way to run locally, enable owasp zap scanner + +commit 387c3ea086a0ad81b1b2b5c9703e70fa99b55987 +Author: timothy-spencer +Date: Fri Feb 28 15:06:08 2020 -0800 + + removed link to doc section that does not exist + +commit a5f6c055398f9229cc5a278f774dcc49c428162c +Author: timothy-spencer +Date: Fri Feb 28 15:04:56 2020 -0800 + + add workflows doc + +commit 02e34b3332cc2d5b84820df7c0cc55eea6201362 +Author: timothy-spencer +Date: Thu Feb 27 12:37:11 2020 -0800 + + removing my demo line + +commit 57dac3a448980d589ef751ca3e02cdef4dadd3b3 +Author: timothy-spencer +Date: Thu Feb 27 12:16:56 2020 -0800 + + demo change to about page + +commit 7d6402016bdba2aa52621fb9f1e77961398842ad +Author: timothy-spencer +Date: Wed Feb 26 16:25:46 2020 -0800 + + update docs to test workflow + +commit a46fd4969e51dd159afd5f3cdcd6bff6956cad6f +Author: timothy-spencer +Date: Wed Feb 26 16:02:40 2020 -0800 + + added staging + +commit 3a867c57d5177763abd6fe6bb4cc8ae67e8920ba +Author: timothy-spencer +Date: Wed Feb 26 15:51:02 2020 -0800 + + bump python version, try updating manifest to get memory to worker + +commit f6c6a3bc43c0f2f80e1aafdf7d6a268396d55a93 +Author: timothy-spencer +Date: Wed Feb 26 15:43:28 2020 -0800 + + trying to bump memory up + +commit a2b4a1bf736aeaa2e94cc7c0c3153f8d910982d2 +Author: timothy-spencer +Date: Wed Feb 26 14:45:16 2020 -0800 + + set CGHOSTNAME properly + +commit 0a4ec41b0be0795c83f54b06e1ebc63e8619f49c +Author: timothy-spencer +Date: Wed Feb 26 14:37:22 2020 -0800 + + added dev env + +commit 672b201021ab58c571530dd0a714f1b63dfdc270 +Author: timothy-spencer +Date: Wed Feb 26 12:14:49 2020 -0800 + + set up so that dev/staging/prod work + +commit 369b33ec72f9752db3920e2c12f9a5c0039c0c49 +Author: timothy-spencer +Date: Wed Feb 26 11:53:50 2020 -0800 + + turning off feature that HHS does not have enabled + +commit 38bb889ae4cb070c85aa42375ef9ff9726908a73 +Author: timothy-spencer +Date: Wed Feb 26 11:43:02 2020 -0800 + + copy over prototype app from https://github.com/18F/tanf-prototype + +commit b1ad3852a47e992f3fdc0334bd7273bc6c88aeca +Author: timothy-spencer +Date: Thu Feb 20 10:00:56 2020 -0800 + + initial checkin diff --git a/tdrs-frontend/nginx/cloud.gov/locations.conf b/tdrs-frontend/nginx/cloud.gov/locations.conf index cd5ea501bf..5920634393 100644 --- a/tdrs-frontend/nginx/cloud.gov/locations.conf +++ b/tdrs-frontend/nginx/cloud.gov/locations.conf @@ -3,7 +3,7 @@ location ~ ^/(v1|admin|static/admin|swagger|redocs) { limit_req zone=limitreqsbyaddr; resolver 169.254.0.2; set $backend http://{{env "BACKEND_HOST"}}.apps.internal:8080$request_uri; - proxy_pass $backend$is_args$args; + proxy_pass $backend; proxy_pass_header x-csrftoken; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; From 180427002428d6069071c665d29c6be0ab3d68e6 Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Wed, 22 May 2024 11:50:56 -0400 Subject: [PATCH 29/39] - remove debug file --- log.txt | 68832 ------------------------------------------------------ 1 file changed, 68832 deletions(-) delete mode 100644 log.txt diff --git a/log.txt b/log.txt deleted file mode 100644 index 7ea5d3b314..0000000000 --- a/log.txt +++ /dev/null @@ -1,68832 +0,0 @@ -commit d236a9a3166d96e13f6f6f9510d0b1d45cfb77fa -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue May 21 09:09:30 2024 -0400 - - 2938 blank filled ssn not parsing throws NoneType error (#2961) - - * handling None in transform functions - - * revert unwanted change - -commit 4b71344c626301a68e2a8c12d353412fd91a2439 -Merge: f1ef9d181 104a5ed78 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon May 20 17:20:09 2024 -0400 - - Merge pull request #2983 from raft-tech/feat/2949-csv-export-name - - 2949 - export file rename - -commit 104a5ed7801b603a40dfd6b362cafd5c5f0945d1 -Merge: 4d1884e93 f1ef9d181 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon May 20 17:04:19 2024 -0400 - - Merge branch 'develop' into feat/2949-csv-export-name - -commit f1ef9d1811b7368ed40a86cbef5766c3cdfb2f0c -Merge: 27290260a 8b1b6a28d -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon May 20 16:01:00 2024 -0400 - - Merge pull request #2941 from raft-tech/fix/2238-webinspect-low - - 2238 document unsafe-inline exception - -commit 8b1b6a28dae6183b4d7e4624e1313934ffa36012 -Merge: 86e2441e0 27290260a -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon May 20 15:42:34 2024 -0400 - - Merge branch 'develop' into fix/2238-webinspect-low - -commit 27290260a20b5629ae9b52ea669d571d2d034b2a -Merge: b2edac97f 229c32cf2 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon May 20 15:42:21 2024 -0400 - - Merge pull request #2989 from raft-tech/fix/2973-backend-service-discoverability - - Add service discoverability for backend routes - -commit 86e2441e0ef92deeb731ec51bcfefc26dc02da58 -Author: Jan Timpe -Date: Mon May 20 15:39:38 2024 -0400 - - update kibana version - -commit 229c32cf28b30b04d2b363fe3792eee6055b373c -Merge: 6c8de73a2 b2edac97f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon May 20 12:53:21 2024 -0400 - - Merge branch 'develop' into fix/2973-backend-service-discoverability - -commit cb9fc83c797c57b5454d93fbd6ba0a2b09ac2d3f -Author: Jan Timpe -Date: Mon May 20 12:44:04 2024 -0400 - - add attack vector info - -commit b2edac97f0772c2b3ef3f1c53152c71cf4b9f05f -Merge: 0b10e3f32 8d5def9fd -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon May 20 11:07:25 2024 -0400 - - Merge pull request #2912 from raft-tech/2826-trailing-spaces - - Space Fill Checks for T1's, T4's, M1, and M4 Records - -commit a4cd17dab68a534c26e7cd054591139fcec6d328 -Author: Jan Timpe -Date: Mon May 20 10:43:14 2024 -0400 - - update waiver language w/ deps - -commit c37e05532e10018852b0b051872ae486207fdf83 -Author: Jan Timpe -Date: Mon May 20 08:45:29 2024 -0400 - - rename security waiver - -commit bf7c49ff393e696661d6e92c48df8465f764b815 -Author: Jan Timpe -Date: Mon May 20 08:45:05 2024 -0400 - - update waiver to include discussion links - -commit 8d5def9fd7740fb38def89bb4f10b5ba3dbd0c31 -Author: Eric Lipe -Date: Mon May 20 08:35:02 2024 -0400 - - - updated test - -commit 9cfd92f795760a7b0b9c54ad14b0c9578b43b5ac -Merge: 9183ed70e 0b10e3f32 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon May 20 08:15:43 2024 -0400 - - Merge branch 'develop' into 2826-trailing-spaces - -commit 4866c487f22a44eb68ebe7117de7a4634c92b1ef -Merge: cc58bd32c 0b10e3f32 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon May 20 07:40:21 2024 -0400 - - Merge branch 'develop' into fix/2238-webinspect-low - -commit 0b10e3f32224b5f4a1b70e55528d70e8b32c5693 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon May 20 07:28:43 2024 -0400 - - 2884 preparser errors multi record rows wrong length missing space filled m3 tribal t3 (#2945) - - * added the test and change needed for T3 - - * added pseudo code in comments for second child - - * added tests for second child in T3 - - * removed prints from test file - - * corrected linting and some of the tests - - * added changes for TANF-T3 - - * revert changes back for t3 tribal - - * linting - - * passing tests - - * changed t3 validator - - * added tests - - * linting - - * added test for validators - - * added test for truncated case - - * added words for static numbers - - * merge conflicts and failing tests - - * correction - - * correction - - * 2757 fixed failing tests - - * 2757 fixed failing tests - - * corrected file header type to pass the tests - - * removed duplicate validators - - * added length validator to TribalT3 and M3 - - * 2757 rename child length validator - - * 2884 revised validator - - * moved test to separate text files - - * 2757 revised error message - - * 2757 corrected preparser malfunction - - * 2757 added tests - - * corrected quite preparser condition - - * reinstated the case number pre-validator - - * deleted unused test files - - * 2884 added error message assert - - * linting - - * 2884 added number of records assert - - * 2884 resolve conflicts - - * upgrade zap scanner - - * 2884 corrected failing tests - - * 2884 linting - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 9bcf9b93bc83220f701ab924a2bdf0b6f5066393 -Merge: 562c086b7 5e9897110 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri May 17 15:14:07 2024 -0400 - - Merge pull request #2879 from raft-tech/2842-cat-4-remaining-s2-validators - - More cat 4 - -commit 5e9897110bb0a1a4c22897bff337aea73871f25a -Author: Jan Timpe -Date: Fri May 17 15:03:55 2024 -0400 - - update ftl error language - -commit 3ad8be07149a9fa7b79f6cf2dd05f4e0d1ea76d6 -Author: Jan Timpe -Date: Fri May 17 13:53:12 2024 -0400 - - lint - -commit 9ce7ea1a94325d90b4bf569454bbf256d2dbc823 -Author: Jan Timpe -Date: Fri May 17 13:42:13 2024 -0400 - - add field name to error messages - -commit 8a17eb30fc6204cf5bf4c01f18818b1c57749c67 -Author: Jan Timpe -Date: Fri May 17 11:22:21 2024 -0400 - - update states rec_ssi logic - -commit fc7e751f29ab6d3bd139757892a8e2d94da4186b -Author: Jan Timpe -Date: Fri May 17 10:51:11 2024 -0400 - - update validator messaging - -commit f6fb71d4ad79200edc9d1c76fc2ace54e81ed313 -Author: Jan Timpe -Date: Fri May 17 09:56:36 2024 -0400 - - lint - -commit 89bb216c3319db6aec0fc6b24e1a99fa658ee2ec -Author: Jan Timpe -Date: Thu May 16 16:39:35 2024 -0400 - - update closure reason logic - -commit f9728eaacf22b16a10b988a6cd4b2bb6758f8498 -Author: Jan Timpe -Date: Thu May 16 13:22:09 2024 -0400 - - for a -> per in cat4 messaging - -commit 6c8de73a28b4d8f60935ac871904f61b1b20b2b6 -Merge: 76cb9ab4a 562c086b7 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu May 16 10:44:34 2024 -0400 - - Merge branch 'develop' into fix/2973-backend-service-discoverability - -commit 76cb9ab4a543c8084b96d45d44fcffadaae015c0 -Author: Jan Timpe -Date: Thu May 16 10:44:21 2024 -0400 - - revert locations matching change - -commit 9195ca173671b7da52ff0b56e1f50ea0f90b7968 -Merge: c1c87d91f 562c086b7 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed May 15 13:34:06 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-remaining-s2-validators - -commit c1c87d91f4510e7a374f05b8b09d4e70dae47477 -Author: Jan Timpe -Date: Wed May 15 13:33:53 2024 -0400 - - update adult age to 19 - -commit cc58bd32c444bdcd570bc5a67d420589fa97aef1 -Merge: 1c06ba7d7 562c086b7 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed May 15 12:21:06 2024 -0400 - - Merge branch 'develop' into fix/2238-webinspect-low - -commit 562c086b7ed626ac470126769f3f5f35090e55d2 -Merge: 00ee8001f 78201e0d5 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed May 15 12:07:26 2024 -0400 - - Merge pull request #2881 from raft-tech/2870-elastic-reindex-cron - - 2870 elastic reindex customizations - -commit 78201e0d57ddcf4f740c502054acf7ddcc406460 -Merge: 67f1a1dc5 00ee8001f -Author: Jan Timpe -Date: Wed May 15 08:03:02 2024 -0400 - - Merge branch 'develop' into 2870-elastic-reindex-cron - -commit 00ee8001fa0ca5711e47f79845e884a4b4a8a39d -Merge: c2223646e ca185993d -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed May 15 07:59:33 2024 -0400 - - Merge pull request #2859 from raft-tech/2842-cat-4-related-records - - Cat 4 implementation cont'd - records are related validator - -commit 82f79eb54c72736e96e59412d1b0345918504813 -Author: Jan Timpe -Date: Mon May 13 10:37:41 2024 -0400 - - add missing program_type to tests - -commit b7521f9a6f2e031f448122a452ef72a42f06c2dc -Merge: 1269d2cda ca185993d -Author: Jan Timpe -Date: Mon May 13 10:36:14 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit ca185993dbdbd9cd981a6a23bbddebac71d54e3b -Author: Jan Timpe -Date: Mon May 13 10:20:54 2024 -0400 - - rm logging - -commit e64f9ff99af77a3b89ebdeed7ebfa6682570d5f8 -Author: Jan Timpe -Date: Mon May 13 10:09:45 2024 -0400 - - add changed program type to case consistency init - -commit 9396e1f963f33a0e81f788f19583707b228f9eb9 -Merge: c6ec1210e c2223646e -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri May 10 11:19:58 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit c6ec1210e9e5d3f93a237088f1e0c9bd668a5f7c -Author: Jan Timpe -Date: Fri May 10 11:18:26 2024 -0400 - - rm logs - -commit 4d702243dbe33b6b04f226899102adb302c422bd -Author: Jan Timpe -Date: Fri May 10 11:17:48 2024 -0400 - - run cat4 regardless of cat2/3 errs - -commit 7d8e5e298019df51d0c5c09065decd11419741ed -Author: Jan Timpe -Date: Fri May 10 09:47:55 2024 -0400 - - add service discov for backend routes - -commit 4d1884e938504f132352bf7e9347ba252a1cdd20 -Merge: eb33083fc c2223646e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 9 13:46:28 2024 -0400 - - Merge branch 'develop' into feat/2949-csv-export-name - -commit c2223646ee63eb632690c5bc7ac8ae0c37442402 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu May 9 11:46:16 2024 -0600 - - Quick PR to Merge Priority Changes from `friendlynamefixes2` (#2952) - - * - Pulling changes from branch: friendlynamefixes2 that need to be merged before that branch - - * - Revert tribal t4 back to correct field. - - Align all BLANK field item numbers - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit eb33083fc7ebafdf42041b72b52f7b49ab30131b -Author: andrew-jameson -Date: Thu May 9 13:40:18 2024 -0400 - - Alright, we are successful now with filename. - -commit 4992f076719ab2819bd141dc6172b5a13cd4b9ec -Author: Jan Timpe -Date: Thu May 9 12:49:02 2024 -0400 - - exclude cat4 errors from multirecord tests - -commit f1c5e516c735e5990880c604b68d0b0b1b2f9fa7 -Merge: b9314ec46 4185b00d4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu May 9 12:22:16 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit 4185b00d425eaca633f6c912b54d71d8bd084f0f -Merge: 613ee9317 5a163d957 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu May 9 11:14:41 2024 -0400 - - Merge pull request #2959 from raft-tech/feature/2509-submission-email - - 2509 - Data submission email - -commit 5a163d9574480ecfed588afd1fae30b95337885e -Merge: ca339fb24 613ee9317 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu May 9 10:03:31 2024 -0400 - - Merge branch 'develop' into feature/2509-submission-email - -commit 613ee93170a410ec041165b475b8aac587f585b9 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu May 9 10:00:43 2024 -0400 - - [bugfix] 2987 update zap docker image to 2.14.0 (#2988) - - * update zap docker image to 2.14.0 - - * update zap on frontend - -commit ca339fb247ae29a16f3799946f1bb21d77d22cb5 -Merge: d8b46d11d 6d16f133b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu May 9 08:59:23 2024 -0400 - - Merge branch 'develop' into feature/2509-submission-email - -commit 6d16f133b397d48dd7cdc1ddcb38958deced07e1 -Author: Victoria Amoroso <106103383+victoriaatraft@users.noreply.github.com> -Date: Wed May 8 13:22:31 2024 -0700 - - Create sprint-98-summary.md (#2982) - - * Create sprint-98-summary.md - - Added sprint 98 details - - * Update sprint-98-summary.md - - updated ticket status - - * Update docs/Sprint-Review/sprint-98-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - - --------- - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 7e70164fb9e0ba56fdc8b5c028008628dd582019 -Author: Victoria Amoroso <106103383+victoriaatraft@users.noreply.github.com> -Date: Wed May 8 13:13:46 2024 -0700 - - Sprint 97 Summary (#2981) - - * Create sprint-97-summary.md - - sprint 97 summary - - * Update sprint-97-summary.md - - * Update sprint-97-summary.md - - * Update sprint-97-summary.md - - added in a link - - * Update sprint-97-summary.md - - updated ticket statuses - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 6e3d9c75dc7329858381da89af48e60c0b24cabc -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed May 8 12:22:57 2024 -0600 - - - Updated to latest django-admin-508 (#2979) - - https://github.com/raft-tech/django-admin-508/blob/fd7ebe52e7ed719c52e29bcfa5218750b7794ec5/admin_interface/static/admin_interface/508/dropdown-filter.js#L15 - -commit b6e643fb922c8594641f00664cd07618bf6f9a4e -Author: andrew-jameson -Date: Wed May 8 14:06:21 2024 -0400 - - better import scoping - -commit 986e8dde244ac50fcd18b12561d9fe98c573736c -Author: andrew-jameson -Date: Wed May 8 13:30:28 2024 -0400 - - first commit, want to test more - -commit 67f1a1dc548e20e2b79da944f20017eb2fc1a86f -Author: Jan Timpe -Date: Wed May 8 09:18:47 2024 -0400 - - at mgmt cmd helper - -commit 1c06ba7d7dd53fbb3d861f7437ad6f18164c3dea -Merge: b1e8f4c14 13dab9fa4 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon May 6 13:30:00 2024 -0400 - - Merge branch 'develop' into fix/2238-webinspect-low - -commit b3b1f273c3a0dfbdd33d104db744b055452535e5 -Author: Jan Timpe -Date: Mon May 6 10:18:14 2024 -0400 - - print -> logger.debug - -commit 13dab9fa41c9ef7d1e5b08441f37d61dbe800422 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon May 6 10:09:50 2024 -0400 - - Update README.md Rob (#2976) - -commit b1e8f4c140e15143ecfdfceb6b75ae6439c8c803 -Author: Jan Timpe -Date: Mon May 6 10:01:59 2024 -0400 - - remove extra lines - -commit d372e6c4da49a0a0e972d4534fb503e3b3e5fd0d -Author: Jan Timpe -Date: Mon May 6 10:01:25 2024 -0400 - - Revert "move unsafe inline directives to kibana location" - - This reverts commit e98cf417cdaaa789f9725d1769417a0a378833e9. - -commit d8b46d11d0f2edd6130d7380e0fd355b35020edf -Merge: e1af7fd43 383eb166f -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon May 6 08:52:26 2024 -0400 - - Merge branch 'develop' into feature/2509-submission-email - -commit e1af7fd4364ff66138c319b037c93cc322fd3253 -Author: Jan Timpe -Date: Mon May 6 08:52:14 2024 -0400 - - postfix F to email file types - -commit 383eb166f1082ab4dc59a79ed966dbad82091dfd -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri May 3 09:01:06 2024 -0400 - - 2757-generate-preparser-error-multi-record-wrong-length (#2856) - - * added the test and change needed for T3 - - * added pseudo code in comments for second child - - * added tests for second child in T3 - - * removed prints from test file - - * corrected linting and some of the tests - - * added changes for TANF-T3 - - * revert changes back for t3 tribal - - * linting - - * passing tests - - * changed t3 validator - - * added tests - - * linting - - * added test for validators - - * added test for truncated case - - * added words for static numbers - - * merge conflicts and failing tests - - * correction - - * correction - - * 2757 fixed failing tests - - * 2757 fixed failing tests - - * corrected file header type to pass the tests - - * removed duplicate validators - - * 2757 rename child length validator - - * 2757 revised error message - - * 2757 corrected preparser malfunction - - * 2757 added tests - - * added zero padding - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 195ab8f33dc43c45f58b0fd016f4dab2ec7c2bb5 -Merge: 25b07f73c 2c52e80fb -Author: Miles Reiter -Date: Thu May 2 16:21:43 2024 -0400 - - Merge pull request #2972 from raft-tech/open-source-docs - - Adds contributing & code of conduct markdowns - -commit 2c52e80fbac4390fdb6eecce23cf57ce2b4c3739 -Author: Miles Reiter -Date: Thu May 2 16:00:28 2024 -0400 - - Update CONTRIBUTING.md - -commit 6d8065fdc4131bbb1570d83d5efc9d376e387f94 -Merge: 9d4011d86 25b07f73c -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu May 2 11:24:32 2024 -0400 - - Merge branch 'develop' into feature/2509-submission-email - -commit 6008392ffb4b47223edeea09526ba84aca446929 -Author: Miles Reiter -Date: Wed May 1 15:47:29 2024 -0400 - - Rename LICENSE to LICENSE.md - -commit bbbc840889823e4703f5bb36abb42abe5f44254d -Author: Miles Reiter -Date: Wed May 1 15:46:51 2024 -0400 - - Update CONTRIBUTING.md - -commit f6859e3965540cc87101fef4fa90bd9d9212dcae -Author: Miles Reiter -Date: Wed May 1 15:46:36 2024 -0400 - - Create CODE_OF_CONDUCT.md - -commit 32f8efdfdc11e93b8390e7806658d38b42c9a8bd -Author: Miles Reiter -Date: Wed May 1 15:38:00 2024 -0400 - - Create CONTRIBUTING.md - -commit 6e002ebe0f46a3fbf517c8727d1ba6a2d066499f -Author: Jan Timpe -Date: Wed May 1 13:28:47 2024 -0400 - - liiint - -commit 14a8551ec28d6c675e72623d52cded925af99f1b -Author: Jan Timpe -Date: Wed May 1 13:20:28 2024 -0400 - - lint - -commit 909a068008aef523169ede18dc1f4c8e2677a494 -Author: Jan Timpe -Date: Wed May 1 12:52:49 2024 -0400 - - add vars to compose - -commit 345ae699ea1a71c630abd276ea0963dce0658fe5 -Merge: 998a42fc0 25b07f73c -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed May 1 12:51:43 2024 -0400 - - Merge branch 'develop' into 2870-elastic-reindex-cron - -commit 998a42fc03359c43edc50fef35dfc56f93f0101b -Author: Jan Timpe -Date: Wed May 1 12:50:10 2024 -0400 - - remove reindex beat schedule - -commit 06e9c046614f3e413956f0f610a2accaa50d16ca -Author: Jan Timpe -Date: Wed May 1 12:49:20 2024 -0400 - - parameterize log threshold settings - -commit 25b07f73c2b9b28d1773dd3efd720d3ae1faa9f5 -Merge: c58837397 f00fb2b82 -Author: Miles Reiter -Date: Wed May 1 12:10:12 2024 -0400 - - Merge pull request #2900 from raft-tech/Sprint-95-Summary - - Sprint 95 summary - -commit 1269d2cda9b88034c8b7f751a0ae5b98f8788a51 -Merge: c3b9c3327 b9314ec46 -Author: Jan Timpe -Date: Wed May 1 08:31:48 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit b9314ec4626b1d07f3b54ffb286043373225d1fb -Merge: fa2e1a51e c58837397 -Author: Jan Timpe -Date: Wed May 1 08:31:27 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit f00fb2b8287b013980f86a8de7e3ea2985a17541 -Merge: 5f9dfbf0c c58837397 -Author: Miles Reiter -Date: Tue Apr 30 16:36:27 2024 -0400 - - Merge branch 'develop' into Sprint-95-Summary - -commit c588373977fa161493e5a35ba7441ceb774a3c07 -Author: robgendron <163159602+robgendron@users.noreply.github.com> -Date: Tue Apr 30 11:24:33 2024 -0400 - - Create sprint-96-summary.md (#2958) - -commit 35fbedbcdfceaad0bd42aa363c6d486fadf63101 -Author: Jan Timpe -Date: Fri Apr 26 11:37:42 2024 -0400 - - copy paste error - -commit 9df0dbea06f3443c78f42b1a9e782aad722cab74 -Author: Jan Timpe -Date: Fri Apr 26 11:15:46 2024 -0400 - - index logging thresholds - -commit 9d4011d8679e70d30f4ff9fa2c65c0ff7b70c387 -Author: Jan Timpe -Date: Thu Apr 25 11:29:41 2024 -0400 - - parameterize login link - -commit b9c091d30d8ad81c32ae4d6267ef370e2551f1cb -Author: Jan Timpe -Date: Wed Apr 24 10:37:17 2024 -0400 - - preserve log settings on reindex - -commit 2015f230fe27ad7e461ab72caa9294e48ef3d65d -Merge: 751df09e4 53f6f3f2b -Author: Jan Timpe -Date: Wed Apr 24 10:27:37 2024 -0400 - - Merge branch 'develop' into 2870-elastic-reindex-cron - -commit c381f10ff283c3ccebf40e3f86e84d717cc4aa26 -Author: Jan Timpe -Date: Tue Apr 23 14:32:14 2024 -0400 - - lint - -commit 9233795e17b13f9ddd6daf90b95ed0a43165a646 -Author: Jan Timpe -Date: Tue Apr 23 14:25:32 2024 -0400 - - rm old test - -commit 98338a463ba29860aeb8e2d269bb6ce4033a4e82 -Author: Jan Timpe -Date: Tue Apr 23 14:16:26 2024 -0400 - - update text_message - -commit b8f9a19c63c5d46f53bb04a21cdfd3bb02d70ee7 -Author: Jan Timpe -Date: Tue Apr 23 14:06:08 2024 -0400 - - create new data submitted email send - -commit 32b6809647b139f1cdee26508783ea3d1ee535ba -Author: Jan Timpe -Date: Tue Apr 23 14:05:51 2024 -0400 - - remove old email send - -commit fa2e1a51e64adf9216cd918c617b2534b8b77380 -Merge: 4393d4c68 53f6f3f2b -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Apr 23 11:15:05 2024 -0500 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit 5f9dfbf0c28618b04c96333f4a53a009a4e1bfc7 -Merge: 6479524d9 53f6f3f2b -Author: Miles Reiter -Date: Mon Apr 22 14:13:51 2024 -0400 - - Merge branch 'develop' into Sprint-95-Summary - -commit 6479524d98b8a10935d8a5a0c487fb55bfbfa4a0 -Author: robgendron <163159602+robgendron@users.noreply.github.com> -Date: Mon Apr 22 14:12:49 2024 -0400 - - Update sprint-95-summary.md - -commit c3b9c332752b2107541bb634c7139da3881d9fba -Author: Jan Timpe -Date: Fri Apr 19 11:43:50 2024 -0400 - - lint - -commit 7346a3e4afcc9093f460fb16561a5e1b8082cc7e -Author: Jan Timpe -Date: Fri Apr 19 11:35:14 2024 -0400 - - fix test - -commit 664d0c9971930312824098cce912cdef2e12bce4 -Author: Jan Timpe -Date: Fri Apr 19 11:15:06 2024 -0400 - - or -> and - -commit 680f62e3c23c770ab255c95eeb023eb33d045038 -Author: Jan Timpe -Date: Fri Apr 19 11:12:28 2024 -0400 - - extrapolate `get_years_apart` to utils - -commit 881fcec6a5d4de5fb6ee406ad8b5691b8704aa5e -Author: Jan Timpe -Date: Fri Apr 19 10:56:22 2024 -0400 - - add 2 as option for territory aabd - -commit 39b471ffe8eee25f22b232df121e50017507a53c -Merge: c64a8cb4f 4393d4c68 -Author: Jan Timpe -Date: Fri Apr 19 10:53:43 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit 53f6f3f2b9b942e13cd868a8ab588613a63e80cf -Merge: c2e57c6c5 4f725d985 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 18 11:40:57 2024 -0600 - - Merge pull request #2903 from raft-tech/2839-nginx-dns - - Nginx DNS Issue: Kibana and ClamAV - -commit 4f725d9857a2b6e82055df173a09d801184d1421 -Author: Eric Lipe -Date: Thu Apr 18 10:35:27 2024 -0600 - - - added docs for dynamic locations - -commit a0c0b196224f57ae6b94107e88765bb046c7f729 -Author: Eric Lipe -Date: Thu Apr 18 09:25:27 2024 -0600 - - - recomment dev var - -commit d9854a7ae78df96ec06c87b6e89aab53f005a1d2 -Merge: 9e3b703de c2e57c6c5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 18 07:56:55 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit 9183ed70ecba5dd67e0e3d4f70d5de9752d9bcab -Merge: 3b6af63a3 c2e57c6c5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 18 07:56:51 2024 -0600 - - Merge branch 'develop' into 2826-trailing-spaces - -commit c2e57c6c50b2b5cc36201cd164214e139d71249f -Merge: 8feb97048 f4bdab188 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 18 07:55:52 2024 -0600 - - Merge pull request #2889 from raft-tech/2807-quarter-validate - - 2807 quarter validate - -commit 9e3b703de41b236179ad8195ed956432f9b30d5d -Author: Eric Lipe -Date: Wed Apr 17 12:44:47 2024 -0600 - - - removing old artifacts - -commit f4bdab1887ba3432a5da0e9cfff7da337a95e3d7 -Merge: 8e591d16c 8feb97048 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 17 12:21:17 2024 -0400 - - Merge branch 'develop' into 2807-quarter-validate - -commit 1b0a51d53fc3d444531dcef72ccd1bff24a58c49 -Merge: cefa18e3b 8feb97048 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 17 10:16:51 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit 3b6af63a35d41ab5bfdb42c17626e4422ef8d78c -Merge: a633758fe 8feb97048 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 17 10:16:46 2024 -0600 - - Merge branch 'develop' into 2826-trailing-spaces - -commit 8feb97048d474db2bd0bc60a4a8810a16ddf8b63 -Merge: 2a4916d5a 27068ec1e -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 17 10:16:12 2024 -0600 - - Merge pull request #2915 from raft-tech/2908-dac-csv-export - - DAC CSV Export - -commit 27068ec1e1214c01bb28eb893d2cb42b7c2f2f78 -Merge: ca3c6dbcd 2a4916d5a -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 17 10:05:38 2024 -0600 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 2a4916d5a9a65ec1eba5da22b15f5869e7b549f6 -Merge: 1f6010fec 3f33f4637 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 17 10:05:16 2024 -0600 - - Merge pull request #2939 from raft-tech/2768-zap-fix - - Zap Fix - -commit 3f33f4637dfaf2dae48b4124b32067c35f3b615c -Author: Eric Lipe -Date: Wed Apr 17 09:13:16 2024 -0600 - - - Revert workflow back to OG - -commit 4393d4c68738c014f2978ccce03c9232106c8c07 -Author: Jan Timpe -Date: Wed Apr 17 09:00:32 2024 -0400 - - lint - -commit ca2c06c3d6ce606610afff33085a3b407bc50639 -Author: Jan Timpe -Date: Wed Apr 17 08:48:50 2024 -0400 - - fix test - -commit 1e9cf8481a2c0df6a1ca817b58ecdc53911b53cc -Author: Jan Timpe -Date: Wed Apr 17 08:38:31 2024 -0400 - - fix last case validation - -commit d71e459d2767349f34c19404d9d4790bff3bf9de -Author: Eric Lipe -Date: Tue Apr 16 14:50:30 2024 -0600 - - - delete temp file - -commit 5f0785098830464464c96aad4b8df9756247581f -Author: Eric Lipe -Date: Tue Apr 16 14:49:42 2024 -0600 - - - add todo - - fix test - -commit 65e88e2f4410808c7c433b1d79d96580931d73a4 -Author: Eric Lipe -Date: Tue Apr 16 14:40:08 2024 -0600 - - - Capture all errors from cat4 validator - - Update test - -commit 23601bc08d8de66c531418f3d1b998f6d8c6c3e9 -Author: Eric Lipe -Date: Mon Apr 15 13:29:33 2024 -0600 - - - comment update - -commit 8bd5e2e093b773b9001747a0d602c37734cf8998 -Author: Eric Lipe -Date: Mon Apr 15 13:09:01 2024 -0600 - - - 4 minutes - -commit b8ddd9ace866a7c0e065167609c4de2c8cbebda5 -Author: Eric Lipe -Date: Mon Apr 15 12:49:06 2024 -0600 - - - testing different sleep time - -commit 91a5b883fd558fdaf85114a11327bc4180851ed0 -Merge: 351b7065f ed877dcca -Author: Eric Lipe -Date: Mon Apr 15 12:18:17 2024 -0600 - - Merge branch '2768-zap-fix' of https://github.com/raft-tech/TANF-app into 2768-zap-fix - -commit 351b7065f1f72bf869c5d862133fe1cdd7033b8f -Author: Eric Lipe -Date: Mon Apr 15 12:18:15 2024 -0600 - - - move everything back to yaml - -commit ed877dccae9c636527bf77118218fd46729bb31d -Merge: 9d47eb690 1f6010fec -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:48:41 2024 -0600 - - Merge branch 'develop' into 2768-zap-fix - -commit ca3c6dbcd2e1c40cad338996e1ee7f90a06c912a -Merge: 58ff9cebe 1f6010fec -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:48:32 2024 -0600 - - Merge branch 'develop' into 2908-dac-csv-export - -commit a633758fe7ed7b2cc77e0d2c203d0781edeadd4c -Merge: fbd9111a9 1f6010fec -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:48:28 2024 -0600 - - Merge branch 'develop' into 2826-trailing-spaces - -commit cefa18e3b1a791ad6a8b24501953f161dec1a5d6 -Merge: fb7a90fa5 1f6010fec -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:48:23 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit 82fa1cc9447348590ea4c39f1e5897b8eb21a233 -Merge: a76f7359f 1f6010fec -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Apr 15 13:35:34 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit 8e591d16ce65c08fed1aa168f5bf76527f363485 -Merge: 9f38eea49 1f6010fec -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Apr 15 13:35:09 2024 -0400 - - Merge branch 'develop' into 2807-quarter-validate - -commit 1f6010fec86c1a646661ad0dde39cac46476655f -Merge: 50628f751 a662286d0 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:31:15 2024 -0600 - - Merge pull request #2906 from raft-tech/knowledge-center-march - - Knowledge Center Updates March 2024 - -commit 9f38eea49bdc3166c7f5582515601b73382a9447 -Merge: df9f41e18 50628f751 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Apr 15 13:24:19 2024 -0400 - - Merge branch 'develop' into 2807-quarter-validate - -commit a76f7359f192c2315afde8058826e38b6a18baaf -Merge: ce815fdc2 50628f751 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Apr 15 13:21:15 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit a662286d0eef5883da391cc606cbf84f7ae2eba9 -Merge: 1ea6da49f 50628f751 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:18:31 2024 -0600 - - Merge branch 'develop' into knowledge-center-march - -commit 50628f751c2445770ddaa6c683c640c4e4afcdc2 -Merge: 2e8ede248 3d38ecd59 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:18:18 2024 -0600 - - Merge pull request #2823 from raft-tech/2536-cat4-design - - Cat4 Validation Design - -commit 9d47eb690cdc4f85bfba50d42bebc2f800acc846 -Author: Eric Lipe -Date: Mon Apr 15 11:17:54 2024 -0600 - - - recomment exit code - -commit 1ea6da49fc90a0aa7d707db4345cd8d8112e8428 -Merge: 9d0ad2e18 2e8ede248 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 11:14:23 2024 -0600 - - Merge branch 'develop' into knowledge-center-march - -commit df9f41e186c8630e243e19f316a520ac28ed067b -Merge: 0c783987e 2e8ede248 -Author: Andrew Trimpe -Date: Mon Apr 15 13:05:50 2024 -0400 - - merge develop - -commit 6798abd7cf6e423bb75f443b4a40faca8dd2ce20 -Author: Jan Timpe -Date: Mon Apr 15 13:00:01 2024 -0400 - - move kibana csp - -commit 4e62b48eaa915754fda8229798b9eddf9e5d04e8 -Author: Eric Lipe -Date: Mon Apr 15 10:56:49 2024 -0600 - - - testing develop scan - -commit 58ff9cebeef83460bdc06a4b63380cdd3736ccf7 -Author: Eric Lipe -Date: Mon Apr 15 10:55:54 2024 -0600 - - - logic fix - -commit bd56a09ad72017577ad7294f26cf32fee2f093b9 -Author: Eric Lipe -Date: Mon Apr 15 10:55:33 2024 -0600 - - - fix lint - -commit 3d38ecd59083029581c35683d8f9e7690e4f0800 -Author: Eric Lipe -Date: Mon Apr 15 10:53:50 2024 -0600 - - - remove unneeded cases - -commit 3f808a6ac16f70811b14f1938b5117ac202ac067 -Merge: dcffc436b 97acc4b54 -Author: Eric Lipe -Date: Mon Apr 15 10:45:21 2024 -0600 - - Merge branch '2908-dac-csv-export' of https://github.com/raft-tech/TANF-app into 2908-dac-csv-export - -commit dcffc436bf392e62ceeff561773546677ad03159 -Author: Eric Lipe -Date: Mon Apr 15 10:45:17 2024 -0600 - - - Fix display bug with newest filter - - Remove erroneous filter options - - Update fiscal period query generation to match frontend generation exactly - -commit 2ca3ede1358a7d33979045c12c05c44ceaba063b -Author: Jan Timpe -Date: Mon Apr 15 12:33:41 2024 -0400 - - move csp above locations - -commit f724c45ebf35c4c73b5ea5c6f792225373f886d6 -Author: Jan Timpe -Date: Mon Apr 15 12:18:13 2024 -0400 - - additional add_header - -commit bb4fd293e3dff5311b02439d9b7c945f268d8466 -Author: Eric Lipe -Date: Mon Apr 15 10:09:21 2024 -0600 - - - back to 10 min - -commit 57a384e197c12a5e23dd58621dd706c8ff996402 -Merge: e98cf417c 2e8ede248 -Author: Jan Timpe -Date: Mon Apr 15 12:00:11 2024 -0400 - - Merge branch 'develop' into fix/2238-webinspect-low - -commit e98cf417cdaaa789f9725d1769417a0a378833e9 -Author: Jan Timpe -Date: Mon Apr 15 11:57:40 2024 -0400 - - move unsafe inline directives to kibana location - -commit cde3936eaf70bf0b7fa7ca678a7fe465e8ca4f77 -Author: Eric Lipe -Date: Mon Apr 15 09:44:45 2024 -0600 - - - extra long sleep - -commit 273adbcce8eff4cfa17e1026721b3a2e58f4be73 -Author: Eric Lipe -Date: Mon Apr 15 09:30:27 2024 -0600 - - - try both scans - -commit 3de74937f479285878826db2f487aeef5502f28c -Author: Eric Lipe -Date: Mon Apr 15 09:09:51 2024 -0600 - - - running command - -commit 8376973669c4ecf3e525d8e9d12541e2c6b45829 -Author: Eric Lipe -Date: Mon Apr 15 08:56:48 2024 -0600 - - - testing a sleep - -commit 97acc4b545349236c67b3b78981b6ddb338d5f84 -Merge: 626e2187a 2e8ede248 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 08:43:56 2024 -0600 - - Merge branch 'develop' into 2908-dac-csv-export - -commit fb7a90fa5268dbca6c5a7ec556789dfa8633c6fe -Merge: 26afb118e 2e8ede248 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 08:43:50 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit bb9221fb0bda180f29d61170c0f75cfc36e4abf6 -Merge: 1928c255c 2e8ede248 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 08:43:46 2024 -0600 - - Merge branch 'develop' into 2536-cat4-design - -commit fbd9111a910405d517443a898410317397bccbe5 -Author: Eric Lipe -Date: Mon Apr 15 08:42:46 2024 -0600 - - - Update based on feedback - -commit 00059e677ddc2e5bf47da3819e8cf55bb5b62a12 -Merge: b61d8114d 2e8ede248 -Author: Eric Lipe -Date: Mon Apr 15 08:25:22 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2826-trailing-spaces - -commit b61d8114d40d5dbaef869f6554d411fb820951fa -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 08:24:25 2024 -0600 - - Update tdrs-backend/tdpservice/parsers/test/test_validators.py - - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - -commit b35b0f61075c2bd493fb0ba8094a3a9996bc241b -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 15 08:24:19 2024 -0600 - - Update tdrs-backend/tdpservice/parsers/validators.py - - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - -commit 626e2187a142ee90ea7641f0a38b58583c8f5d32 -Author: Eric Lipe -Date: Mon Apr 15 08:19:10 2024 -0600 - - - Update to go from 2021 to current year - -commit 0c783987e78bb1a5ee43aaa6cd07db19bee378db -Author: Eric Lipe -Date: Mon Apr 15 08:06:19 2024 -0600 - - - Update based on ux feedback - -commit 2e8ede248cc0fd1d27b806b18387240e5dabfe8c -Merge: a8e288c77 f171f2782 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Apr 15 09:53:36 2024 -0400 - - Merge pull request #2899 from raft-tech/2818-take-three - - 2818 Update Indicator - -commit 1928c255c664631d12e1d8040fca81fe74703efa -Merge: 706af07c6 a8e288c77 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Apr 15 08:58:13 2024 -0400 - - Merge branch 'develop' into 2536-cat4-design - -commit c64a8cb4f289205664674448f3cade57e79ae2c3 -Author: Jan Timpe -Date: Mon Apr 15 08:52:41 2024 -0400 - - fix tests - -commit 6928b39232aedc5f7bd84b3ddf46fb6c080ed00d -Merge: 816ba7417 a8e288c77 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Apr 15 08:22:14 2024 -0400 - - Merge branch 'develop' into 2826-trailing-spaces - -commit 97442873568fc4436e7a04726a2709f88de65591 -Author: Eric Lipe -Date: Fri Apr 12 18:27:13 2024 -0600 - - - remove unnecessary fields from list display - -commit 44e50cebf566e528090641df13439d396cd99c3a -Author: Eric Lipe -Date: Fri Apr 12 15:58:30 2024 -0600 - - - enable scan - -commit 26f432e98e2f3497f632415bf0f39a12b31bd0c5 -Author: Eric Lipe -Date: Fri Apr 12 15:56:42 2024 -0600 - - - testing different command - - no scan - -commit f5ad3e631a93565f923b72e061aa822aac7168f7 -Merge: 4d2037efd a8e288c77 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 12 17:41:19 2024 -0400 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 389f9e96ea268e90b1e5e58af2a7e2b90c219e68 -Author: Eric Lipe -Date: Fri Apr 12 15:39:46 2024 -0600 - - - more logging - -commit 239ec16fc6b0e7a2dc373dff023df5fe949170b6 -Author: Eric Lipe -Date: Fri Apr 12 15:24:31 2024 -0600 - - - all params - -commit e41fb86f126380d703483114efb41fb47b82d08d -Author: Eric Lipe -Date: Fri Apr 12 15:09:33 2024 -0600 - - - trying with sscript - -commit 332da65f48d5e4a06ba742e3999047c3a695f1ae -Author: Eric Lipe -Date: Fri Apr 12 14:45:54 2024 -0600 - - - remove cat - -commit ff17e21353db7230d72d1657c522ff19f3b74662 -Author: Eric Lipe -Date: Fri Apr 12 14:45:23 2024 -0600 - - Revert "- remove cat" - - This reverts commit 0243276ca6a50796a14b2c9b7ba2a79c4df945e6. - -commit 0243276ca6a50796a14b2c9b7ba2a79c4df945e6 -Author: Eric Lipe -Date: Fri Apr 12 14:44:59 2024 -0600 - - - remove cat - -commit f171f2782aff83a306a049128066cf27767afc9a -Merge: 9b1a35c5d a8e288c77 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 12 16:41:00 2024 -0400 - - Merge branch 'develop' into 2818-take-three - -commit a8e288c77b976a3ef3dffdffbf170023ff2258b7 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Apr 12 16:39:16 2024 -0400 - - linting terraform files (#2942) - -commit 62bd03032781c5c21815451371880427a8d966fe -Author: Eric Lipe -Date: Fri Apr 12 13:33:35 2024 -0600 - - - catting config - -commit 706af07c6effa56c17d4063e5b9d37b463a3e9fc -Merge: 7bd28346d 3db8c205f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 12 15:26:18 2024 -0400 - - Merge branch 'develop' into 2536-cat4-design - -commit 4d2037efd9afb0d10e87169e3ac9f855331e2f1b -Merge: 9b0750677 3db8c205f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 12 15:26:00 2024 -0400 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 4b0f266547702ff2d865b8331b71dfe13c69560c -Author: Eric Lipe -Date: Fri Apr 12 13:21:48 2024 -0600 - - Revert "Revert "- removing comments as test"" - - This reverts commit 949b68e802e9c25fe5d744aadc5801fb663e8454. - -commit b8381b03ba0227ec04f7ae8f4db98ba7939dc314 -Author: Eric Lipe -Date: Fri Apr 12 13:21:36 2024 -0600 - - - newline - -commit 949b68e802e9c25fe5d744aadc5801fb663e8454 -Author: Eric Lipe -Date: Fri Apr 12 13:19:29 2024 -0600 - - Revert "- removing comments as test" - - This reverts commit 785d689c51b6ac02b71d8a397b94918ae03e7cb4. - -commit 9b1a35c5d004cd03d50f6d6ad31e35a71b8998ca -Merge: 75cfa1e8f 3db8c205f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 12 15:13:38 2024 -0400 - - Merge branch 'develop' into 2818-take-three - -commit 3db8c205fcc9f41b9825b71f1dd7a6b360b8c52a -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Apr 12 15:11:57 2024 -0400 - - 1349 automate elastic search using terraform (#2932) - - * terraform create added to terraform - - * correction on main.tf - - * removed output commands - - * added data to main.tf s - - * changed prod-es to medium - - * updated readme.md file - -commit 785d689c51b6ac02b71d8a397b94918ae03e7cb4 -Author: Eric Lipe -Date: Fri Apr 12 13:11:15 2024 -0600 - - - removing comments as test - -commit a3cb0374822d9ac6fda4f50d3b5ba93193778794 -Author: Eric Lipe -Date: Fri Apr 12 12:57:22 2024 -0600 - - - remove comment - -commit d979685ee9d930910a5644ecb3b617bea3cea745 -Merge: 89b767bf3 ce815fdc2 -Author: Jan Timpe -Date: Fri Apr 12 13:30:17 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit ce815fdc2a73dea1e7762abba9930c087449e379 -Author: Jan Timpe -Date: Fri Apr 12 13:29:48 2024 -0400 - - lint - -commit 89b767bf35e3a129f9ab5282e0b7621ab9223e7f -Merge: 76bde1ea7 07b4a138e -Author: Jan Timpe -Date: Fri Apr 12 13:18:51 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit 07b4a138e5da8d2a69165a6931bd3a178eb2a20c -Author: Jan Timpe -Date: Fri Apr 12 13:13:36 2024 -0400 - - rm unused tests - -commit 84fa3343569cef66e8ff93b3c4a1c11dc22013ff -Author: Jan Timpe -Date: Fri Apr 12 13:12:58 2024 -0400 - - rm unused import - -commit 5b42977ee621f7ba655d577eed34115a79822dc6 -Author: Eric Lipe -Date: Fri Apr 12 11:12:20 2024 -0600 - - - playing with echos - -commit 76bde1ea71d2273ba5eff321e1d1095fcbb21175 -Merge: 05bbb7abb 41232c83d -Author: Jan Timpe -Date: Fri Apr 12 13:04:15 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit d66887e1f4505b01da7ff7f0fb98ef99156b4df6 -Author: Eric Lipe -Date: Fri Apr 12 11:01:40 2024 -0600 - - - dummy command - -commit 85acdea60515beabcf4b679453eed7c45ff05777 -Author: Eric Lipe -Date: Fri Apr 12 10:48:14 2024 -0600 - - - firmat - -commit decdc245a1c59ddfff52d151cb2cf816f63ca04e -Author: Eric Lipe -Date: Fri Apr 12 10:32:22 2024 -0600 - - - adding wait - - adding trailing echo - -commit 9d0ad2e180232ddc27a1fab9ed6d0eb83a0e3022 -Merge: cd55db0d1 fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 10:29:27 2024 -0600 - - Merge branch 'develop' into knowledge-center-march - -commit 31db0962425d9a6ccb5d2ba7b1aba1b43b94edc9 -Author: Eric Lipe -Date: Fri Apr 12 10:21:33 2024 -0600 - - - echo cmd - - trailing slash - -commit 440a19977590822eeadbfad83f4eeffbc5e11714 -Author: Eric Lipe -Date: Fri Apr 12 10:10:05 2024 -0600 - - - enable frontend - -commit 750b5624798e747be8258c5a4bcf466a9a3b564c -Author: Eric Lipe -Date: Fri Apr 12 10:07:13 2024 -0600 - - - comment jobs - - newline - -commit 5a481b7ddd38548f070f49be1aec9f3d980bd5e5 -Author: Eric Lipe -Date: Fri Apr 12 10:05:44 2024 -0600 - - - UNCOMMENT JOBS - -commit 76c3049027b6a8236519006edf189108e5feb83f -Author: Eric Lipe -Date: Fri Apr 12 10:04:06 2024 -0600 - - - remove comment and change indent - -commit e9beaea6b1d01c9b105df230267668f0472a9c43 -Author: Eric Lipe -Date: Fri Apr 12 10:01:39 2024 -0600 - - - disable scan - -commit 62dfd5632d213d615051dc737a5e5b6c602ee057 -Author: Eric Lipe -Date: Fri Apr 12 09:49:06 2024 -0600 - - - revert to old command style that abides to shellcheck - -commit 41232c83d07ad81aecd87efe39ca4fded2650ded -Merge: e874b305a 7bd28346d -Author: Jan Timpe -Date: Fri Apr 12 11:44:18 2024 -0400 - - Merge branch '2536-cat4-design' into 2842-cat-4-related-records - -commit d2af94ca612fd61c2c4e8a17dc7f725275802ef9 -Author: Eric Lipe -Date: Fri Apr 12 09:34:03 2024 -0600 - - - remove temp - -commit ce82d12d7501e4e1512cc0dd5070cf697376e0b1 -Author: Eric Lipe -Date: Fri Apr 12 09:33:38 2024 -0600 - - - abide by shellcheck - -commit 6365965e6a037c269b3acdd5a889e4a202eb7b6f -Author: Eric Lipe -Date: Fri Apr 12 09:24:00 2024 -0600 - - - remove echo - -commit ac2b8eb1f262642a51cfbd446e101d42e0afcc3c -Author: Jan Timpe -Date: Fri Apr 12 11:20:17 2024 -0400 - - document unsafe-inline exception - -commit b3c4295f2a934cb9db8212f5b9a8f97647c345b0 -Author: Eric Lipe -Date: Fri Apr 12 09:14:56 2024 -0600 - - - add an echo - -commit a8dddf5bdf41602c49417d79c347448a7eec03e7 -Author: Eric Lipe -Date: Fri Apr 12 09:11:59 2024 -0600 - - - remove sleep - -commit c011884e12cd66b3fdc837ded52ba75aac617717 -Author: Eric Lipe -Date: Fri Apr 12 08:53:01 2024 -0600 - - - readding wait - -commit 17c3bdeaf214098510f124f9c8c16584dada9c9d -Author: Eric Lipe -Date: Fri Apr 12 08:52:13 2024 -0600 - - - testing a sleep - -commit 317021c6eab936d7b014f842ae0584bc15d52bdc -Author: Eric Lipe -Date: Fri Apr 12 08:32:08 2024 -0600 - - - enable scan, force cmd params - -commit 44bc2baa114b033157010191d0d6f452d121161b -Author: Eric Lipe -Date: Fri Apr 12 08:28:40 2024 -0600 - - - testing with no scan - -commit 7bd28346d1804c970aad958672afbb2289d108a6 -Merge: 61224cc6b fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:12:22 2024 -0600 - - Merge branch 'develop' into 2536-cat4-design - -commit 05e9ce3ca7293bccf10f931a6f6dd1e3a16188d9 -Merge: 05e979cbb fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:12:16 2024 -0600 - - Merge branch 'develop' into 2807-quarter-validate - -commit 75cfa1e8fa15e4f1c7dea705fafe72fac0646963 -Merge: 7038dade9 fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:12:08 2024 -0600 - - Merge branch 'develop' into 2818-take-three - -commit 26afb118e53aab7bea58ca8df908a780fc9ccc1a -Merge: d6d7c4717 fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:12:02 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit 816ba741789831c069e3053dc61c2455e5cb8173 -Merge: 1021a9f92 fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:11:51 2024 -0600 - - Merge branch 'develop' into 2826-trailing-spaces - -commit 9b0750677029721aae0ad623ec06b1473f5522b0 -Merge: 54e4fb811 fac5838a5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:11:46 2024 -0600 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 0c80e97c5deb5a4e0fe882ee17ee35d2d2988639 -Merge: 559de612b fac5838a5 -Author: Eric Lipe -Date: Fri Apr 12 08:10:56 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2768-zap-fix - -commit 559de612bc397a2b649ce96d235afca613e28de3 -Author: Eric Lipe -Date: Fri Apr 12 08:07:06 2024 -0600 - - - enable all opts - -commit fac5838a580d6b1d5536c3846eeffb9b4170cfda -Merge: 054a475d0 c76bc28e5 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Apr 12 08:05:53 2024 -0600 - - Merge pull request #2940 from raft-tech/zap-image-fix - - Zap Image Hotfix - -commit c76bc28e5b4c6c620e71100249e0c500deacaad8 -Author: Eric Lipe -Date: Fri Apr 12 07:46:36 2024 -0600 - - - Update zap image - -commit c2ae8f7756ccb73db726537205ac809f2c8cd8fc -Author: Eric Lipe -Date: Fri Apr 12 07:27:23 2024 -0600 - - - removing cli opts - -commit 5e8f427df3ca3a3e869afb2494ebc321b61afcaa -Author: Eric Lipe -Date: Fri Apr 12 07:19:14 2024 -0600 - - - disable backend - -commit cce6cac4669920839e3c7a85356f7a36526fc625 -Author: Eric Lipe -Date: Thu Apr 11 17:10:32 2024 -0600 - - - comment out exit again - -commit c0b246b95df605f7da911cf56ef054af7abd51e8 -Author: Eric Lipe -Date: Thu Apr 11 16:58:37 2024 -0600 - - - all scans - -commit 3ed5a80dff5a361000d8f7961257fa8f4baca0fd -Author: Eric Lipe -Date: Thu Apr 11 16:58:17 2024 -0600 - - Revert "- Breakup args" - - This reverts commit fdfed7ea34f55921a803f26829ceb1bc65cf76c3. - -commit 7d489b507e962045dd9feb6fbc62b915d1b2e46c -Author: Eric Lipe -Date: Thu Apr 11 16:57:24 2024 -0600 - - - 2 minute crawling - -commit 046d995c594f5dd9e6d98c75ccf59dd0520ae626 -Author: Eric Lipe -Date: Thu Apr 11 16:57:07 2024 -0600 - - - add exit back in - -commit f1e51588738dab8e8239fee8a25a2ff80ffc0d7e -Author: Eric Lipe -Date: Thu Apr 11 16:44:35 2024 -0600 - - - remove echo - -commit efd4df424d76a009129108b177ad5892987f7d3c -Author: Eric Lipe -Date: Thu Apr 11 16:40:34 2024 -0600 - - - Update zap image to a supported image - -commit 10f65604503e491b32a75ffbfe2c71f5aa5b552e -Author: Eric Lipe -Date: Thu Apr 11 16:23:29 2024 -0600 - - - remove exit - -commit 5e6d03b2d4c6dafa3c96552a3b2474982e938b16 -Author: Eric Lipe -Date: Thu Apr 11 16:18:42 2024 -0600 - - - debug - -commit 2f814705d4ba2de9f25b81ff1c17501f61b62961 -Author: Eric Lipe -Date: Thu Apr 11 16:05:08 2024 -0600 - - - enable scan - -commit 11902e48264ca3a0bfd5b158e8a6d19f21943026 -Author: Eric Lipe -Date: Thu Apr 11 16:02:47 2024 -0600 - - - testing whether scripts exist - -commit 236ab9ef5d112fb5eff4a371d9cd992729e921fa -Author: Eric Lipe -Date: Thu Apr 11 15:44:22 2024 -0600 - - - debug - -commit de81b27ab2b9c3a8d8e6751b1864747226ed9aa8 -Author: Eric Lipe -Date: Thu Apr 11 14:36:04 2024 -0600 - - - commenting failing piece - -commit 05e979cbba8750f7ee4be5a14ced83df8de914bb -Author: Eric Lipe -Date: Thu Apr 11 14:09:34 2024 -0600 - - Revert "- debugging" - - This reverts commit b77392eff5d878b7f8e8596a7cb7e28c70d64b57. - -commit b77392eff5d878b7f8e8596a7cb7e28c70d64b57 -Author: Eric Lipe -Date: Thu Apr 11 14:06:57 2024 -0600 - - - debugging - -commit 5c0b00e07dfb4d92a783bc420f9372a4b54e4d20 -Author: Eric Lipe -Date: Thu Apr 11 11:23:39 2024 -0600 - - - Adding verbosity to zap script - - testing staging - -commit fdfed7ea34f55921a803f26829ceb1bc65cf76c3 -Author: Eric Lipe -Date: Thu Apr 11 11:18:00 2024 -0600 - - - Breakup args - -commit 943fc6948ac5d535b0acff0d0f054b08c5ee0f32 -Author: Eric Lipe -Date: Thu Apr 11 10:58:47 2024 -0600 - - - removing wait - -commit ccbc4f99fa43a6bf71f491fc71d2e8ab4cfb4078 -Author: Eric Lipe -Date: Thu Apr 11 08:59:04 2024 -0600 - - - adding todo reminder - -commit cd55db0d1a0076866f694120188c9c1e66f71b8f -Merge: 0d834d351 054a475d0 -Author: Miles Reiter -Date: Thu Apr 11 10:58:25 2024 -0400 - - Merge branch 'develop' into knowledge-center-march - -commit 0d834d351b63ec3abbdcf7c913d34eda7d9b33ca -Author: Miles Reiter -Date: Thu Apr 11 10:57:59 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit c8fe311a8b9c79236b9119594afff55bb31eaf7b -Author: Miles Reiter -Date: Thu Apr 11 10:57:21 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 7728ba3ae1ed47bdb0de55752c4a31f64c98151f -Author: Eric Lipe -Date: Thu Apr 11 08:53:38 2024 -0600 - - - overriding workflow - -commit 2fbc96d85ca23efd7534a5673cc4d1e3d9a700ec -Author: Eric Lipe -Date: Thu Apr 11 08:52:17 2024 -0600 - - - update run-task structure - -commit 61224cc6bd9c5649da65d8f6c5c2d032b8d7d17e -Author: Eric Lipe -Date: Thu Apr 11 07:47:15 2024 -0600 - - - remove un-needed functions - -commit dcc3722b7b7797793e3521d67ae8ebdf22ec062f -Merge: af616a473 054a475d0 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 11 07:43:38 2024 -0600 - - Merge branch 'develop' into 2536-cat4-design - -commit af616a4732a8f0efab9c48090780f34a323621cc -Author: Eric Lipe -Date: Thu Apr 11 07:41:49 2024 -0600 - - - remove unnecessary cat4 validator - -commit 054a475d0bda1a5cc0a71848aa5190a7580f4b2c -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu Apr 11 07:38:00 2024 -0400 - - 2814-aggregate-cloud-gov-ES-instances (#2876) - - * local ES aggregate - - * changes for elastic search instance needed - - * linting - - * corrected setting the env var for proxy.yml - - * changed app name to one env - - * corrected frontend deployment vars - - * corrected command for sh - - * EMR-2814 removed unused var in deploy frontend - - * moved deploying kibana and es out to separate script - - * md file added for script - - * linting - - * 2814 revert unnecessary changes - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit d6d7c47174f86cb48d2752ae6cd21bb8762f82a0 -Merge: 6a23258df 1c7b4c7cc -Author: Eric Lipe -Date: Wed Apr 10 10:50:41 2024 -0600 - - Merge branch '2839-nginx-dns' of https://github.com/raft-tech/TANF-app into 2839-nginx-dns - -commit 6a23258df6badf1d5573e7656d594a56f9d80a5e -Author: Eric Lipe -Date: Wed Apr 10 10:50:35 2024 -0600 - - - remove trailing `/` - -commit cba6a9d9b2222adcf348ee0bf889249283d354b9 -Author: Miles Reiter -Date: Wed Apr 10 11:59:51 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 48631dca89687476aae8a59807dd6d33b91ff7b4 -Author: Miles Reiter -Date: Wed Apr 10 11:59:41 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 492c34753c10c842e605aec0c9dcad9e2fa7a336 -Author: Miles Reiter -Date: Wed Apr 10 11:59:16 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 05bbb7abb493b08e8f66c9b71aa3efb3bca1e76f -Author: Jan Timpe -Date: Wed Apr 10 10:02:32 2024 -0400 - - clean up comments - -commit efdaa2c4725ae72f519e4685b8bca4c4b5d1e2e1 -Author: Jan Timpe -Date: Wed Apr 10 09:32:57 2024 -0400 - - rm comment - -commit 14487610f72477eb799055e7079ec3c97c20746f -Author: Jan Timpe -Date: Wed Apr 10 09:32:18 2024 -0400 - - rm irrelevant test case - -commit a34bc11465667acf90932d85992863c5f22635dd -Author: Jan Timpe -Date: Wed Apr 10 09:04:09 2024 -0400 - - fix tests - -commit b4dd54b22fdca16279734151ecce7c28268fe227 -Merge: fa56e6ebc 487947e6e -Author: Miles Reiter -Date: Wed Apr 10 01:14:03 2024 -0400 - - Merge branch 'develop' into knowledge-center-march - -commit fa56e6ebc86acc73869565e9d4930459e41d083c -Author: Miles Reiter -Date: Wed Apr 10 01:10:12 2024 -0400 - - Update view-submission-history.html - -commit 7e37295317feccf4c4bae2e9202aacf0b526ec32 -Author: Miles Reiter -Date: Tue Apr 9 19:52:41 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 9c1f865e457705a5b748852abfa747a0490a93bf -Author: Miles Reiter -Date: Tue Apr 9 19:52:35 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 1413d2138db51a6932ca345e28e3710ca494f2c4 -Author: Miles Reiter -Date: Tue Apr 9 19:52:27 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit fedaa6b8948828445dd11d8e199714160aa72a99 -Author: Miles Reiter -Date: Tue Apr 9 19:52:21 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 9f9978c324f6d1430e63c1cdb99e9f61f2021c99 -Author: Miles Reiter -Date: Tue Apr 9 19:52:12 2024 -0400 - - Update product-updates/knowledge-center/view-submission-history.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 3e2f8cf750bc7943d4355b6a0be06080d76a99a8 -Merge: 5ce18894f e874b305a -Author: Jan Timpe -Date: Tue Apr 9 15:04:59 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit e874b305af6a9adae0a3614ba916211469f53076 -Author: Jan Timpe -Date: Tue Apr 9 14:03:20 2024 -0400 - - unused import - -commit c07655246b317c98c51bc3699031e04742e9c792 -Merge: f85c41b69 487947e6e -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:47:47 2024 -0600 - - Merge branch 'develop' into 2807-quarter-validate - -commit 7038dade903dbcc09df10c44c146a6284c3b0ff4 -Merge: db5a31e19 487947e6e -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:47:42 2024 -0600 - - Merge branch 'develop' into 2818-take-three - -commit db5a31e197df073a4335521813841e9bea8e9bb4 -Author: Eric Lipe -Date: Tue Apr 9 11:47:35 2024 -0600 - - - fix lint - -commit 54e4fb8117c34fd8b5dec32e72eb544d35fa2307 -Merge: 06213b77a 487947e6e -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:46:33 2024 -0600 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 1021a9f92ca410419a14983812974b907c9107bd -Merge: 6c9503e4e 487947e6e -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:46:23 2024 -0600 - - Merge branch 'develop' into 2826-trailing-spaces - -commit 44076024b82292a84fa3253cf2899d1a939943dc -Merge: d9cdd9c94 487947e6e -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:46:12 2024 -0600 - - Merge branch 'develop' into 2536-cat4-design - -commit 487947e6e5618f1e84f2122d41295e40ce53479c -Merge: 16cf74302 d4d5a9c75 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:45:06 2024 -0600 - - Merge pull request #2898 from raft-tech/2287-rec-oasdi-insurance - - 2887 - 18A REC_OASDI_INSURANCE not mandatory - -commit a6857ba3ceed7d57a701364b7eaddac526e78701 -Author: Jan Timpe -Date: Tue Apr 9 13:41:13 2024 -0400 - - rm old tests - -commit d4d5a9c757d8a5e408cb9abc80b931eed1f0f915 -Merge: 15be88bc0 16cf74302 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 11:30:39 2024 -0600 - - Merge branch 'develop' into 2287-rec-oasdi-insurance - -commit 0db53e1b5adcfaeaed3805053bc5b1566ab81edb -Author: Eric Lipe -Date: Tue Apr 9 11:26:36 2024 -0600 - - - Update according to feedback - -commit 850d76cd374186994fe0823137fd36b5014b2807 -Merge: 9e8f30edd 16cf74302 -Author: Eric Lipe -Date: Tue Apr 9 11:06:24 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2818-take-three - -commit f85c41b690f1df4aef49c6d156e1fa54d127dbe3 -Merge: b82621c9b 16cf74302 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Apr 9 10:58:40 2024 -0600 - - Merge branch 'develop' into 2807-quarter-validate - -commit b82621c9bc5347ebb9201b34fd5a903514f6a3ba -Author: Eric Lipe -Date: Tue Apr 9 10:54:54 2024 -0600 - - - fix lint - -commit 6a09786c29e692797ec855a074fe73b2f31e8fe6 -Author: Eric Lipe -Date: Tue Apr 9 10:52:03 2024 -0600 - - - Add cat1 validator for calendar quarter - - Update test - -commit 5ce18894f28b588908b53f30a6f18bd7cc678c73 -Merge: fe50af778 a64a8ee59 -Author: Jan Timpe -Date: Tue Apr 9 10:59:35 2024 -0400 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit a64a8ee59fd6fa8d1ca76c434b66163e02e3d7f6 -Merge: ad86a1266 d9cdd9c94 -Author: Jan Timpe -Date: Tue Apr 9 10:01:31 2024 -0400 - - Merge branch '2536-cat4-design' into 2842-cat-4-related-records - -commit 06213b77a974581297898dec7ab09ac68a186a8f -Merge: 9674e7c94 16cf74302 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Apr 9 09:58:39 2024 -0400 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 16cf743024729df3969e0261226ba23b627034b5 -Merge: 953535813 860e0e7de -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Apr 9 09:56:03 2024 -0400 - - Merge pull request #2911 from raft-tech/fix/2822-webinspect-session-cookie - - 2822 fix webinspect medium priority - persistent session - -commit 860e0e7de21d555ac2bf87b4a0105f689a7edfcf -Merge: bd8cefdc5 953535813 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Apr 9 09:47:40 2024 -0400 - - Merge branch 'develop' into fix/2822-webinspect-session-cookie - -commit bd8cefdc5b07867359472a4d3a66707496bc28ed -Author: Jan Timpe -Date: Tue Apr 9 08:23:45 2024 -0400 - - add SESSION_COOKIE_AGE - -commit 83ab2f17b25f97474751a8eb0669ebb12c84f97c -Author: Eric Lipe -Date: Mon Apr 8 11:38:44 2024 -0600 - - - Fix parse test - -commit c3368ee3e53e5895c65e158a69090c57d4327321 -Author: Eric Lipe -Date: Mon Apr 8 11:34:12 2024 -0600 - - - Update tests - -commit 8d22660c0eec5dbe1cc56aeaaaa6e5267e3dbe6c -Merge: 80fcedd27 953535813 -Author: Eric Lipe -Date: Mon Apr 8 11:28:11 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2807-quarter-validate - -commit 9535358131fa59c31de3762d1c22bff3f3bf7d6c -Merge: e6b0fb7a4 d3250a750 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Apr 8 13:22:19 2024 -0400 - - Merge pull request #2880 from raft-tech/fix/2870-bulkindexerror-handling - - Change handling of elastic BulkIndexError - -commit f32ca4e878e2e7810831f2d5baca3c50f375f0e5 -Merge: bd545b2de e6b0fb7a4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Apr 8 12:42:14 2024 -0400 - - Merge branch 'develop' into fix/2822-webinspect-session-cookie - -commit d3250a7502840c29205e033760508e8da9dc0f40 -Merge: 611223330 e6b0fb7a4 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Apr 8 12:41:34 2024 -0400 - - Merge branch 'develop' into fix/2870-bulkindexerror-handling - -commit d9cdd9c9472e9a023c352531bd3722c49b881430 -Merge: b5acdf905 e6b0fb7a4 -Author: Eric Lipe -Date: Mon Apr 8 09:14:40 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design - -commit 6c9503e4ef3f02880f4f43c6f3ffd4dbfc558beb -Author: Eric Lipe -Date: Mon Apr 8 09:11:52 2024 -0600 - - - fixed tests - -commit 9e7f2c879376d846078b739f977903710aa7d266 -Author: Eric Lipe -Date: Mon Apr 8 09:06:57 2024 -0600 - - - Update test_parse tests to support validator updates - -commit c37d6df8faa78c8a09d0d7d9021e490e8bd2870d -Merge: 9cbc62207 e6b0fb7a4 -Author: Eric Lipe -Date: Mon Apr 8 09:03:05 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2826-trailing-spaces - -commit 9674e7c942b3184d7f93c636ec51c383c9bb7e62 -Merge: 62b17225c e6b0fb7a4 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 8 08:52:18 2024 -0600 - - Merge branch 'develop' into 2908-dac-csv-export - -commit 1c7b4c7ccfd21d234f6cf6838d4c1384c30386ff -Merge: ef22275d9 e6b0fb7a4 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 8 08:52:06 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit e6b0fb7a4c02cbac0188c2e8149f3b863d491f59 -Merge: eb08f1267 de813c632 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 8 08:51:43 2024 -0600 - - Merge pull request #2838 from raft-tech/2673-cat1-cleanup - - Cat1 Cleanup - -commit 62b17225ca6b33819a2cc5d1c88be0e2740b063b -Author: Eric Lipe -Date: Fri Apr 5 09:23:59 2024 -0600 - - - lint - -commit a9407d4b8cc971ffa593237b6066f20d1a07b92c -Author: Eric Lipe -Date: Fri Apr 5 08:54:07 2024 -0600 - - - Aggregate Mixin classes - - Aggregate overrides to respective classes - -commit bd545b2de8f129e42ce79047448a5872d7af005b -Merge: 9e14abc56 eb08f1267 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Apr 4 12:36:36 2024 -0400 - - Merge branch 'develop' into fix/2822-webinspect-session-cookie - -commit 611223330c450f82529baee50af83a67a879722b -Merge: d5d05e712 eb08f1267 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Apr 4 12:25:51 2024 -0400 - - Merge branch 'develop' into fix/2870-bulkindexerror-handling - -commit ad86a1266e27439e23f0d2832410c9e45a40906f -Author: Jan Timpe -Date: Thu Apr 4 12:19:48 2024 -0400 - - update test docstring - -commit 9cbc622071bbf06ca5841c00d4bdb6abe5d37713 -Merge: 595257a12 eb08f1267 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 4 08:31:28 2024 -0600 - - Merge branch 'develop' into 2826-trailing-spaces - -commit ef22275d9601ebd87920e13b2505680ad0e454f5 -Merge: 6fbbc2417 eb08f1267 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 4 08:31:15 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit de813c63241573b7ded5639bb99753f50e5b1d5d -Merge: 5d6bb1538 eb08f1267 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Apr 4 08:31:09 2024 -0600 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit c3aaa16f0f305e5a2eda26ddb40d2997f38bc9e5 -Merge: d4dac92b4 e128e5a4b -Author: Eric Lipe -Date: Wed Apr 3 16:18:30 2024 -0600 - - Merge branch 'dac-csv-export' of https://github.com/raft-tech/TANF-app into dac-csv-export - -commit d4dac92b4741af5df6fe853f4da10ccaa75b0633 -Author: Eric Lipe -Date: Wed Apr 3 16:18:29 2024 -0600 - - - fix lint - -commit e128e5a4b20feec246ffdc39809a3820c8774b2b -Merge: d8c5619ed eb08f1267 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 3 15:16:49 2024 -0600 - - Merge branch 'develop' into dac-csv-export - -commit d8c5619ed6489dbcedb1ff741184925ba5a5afc6 -Author: Eric Lipe -Date: Wed Apr 3 14:53:49 2024 -0600 - - - Removing unnecessary method - -commit b5acdf9057f69fb11f5c4a77c657ae5f8e34c66d -Merge: 7c0b80a93 eb08f1267 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 3 14:48:38 2024 -0600 - - Merge branch 'develop' into 2536-cat4-design - -commit 5940b734b4b0f83b5b32c6fbd931b9d16c7d8077 -Author: Eric Lipe -Date: Wed Apr 3 14:46:40 2024 -0600 - - - Make admin read only - -commit 7e6979f3e3f7e10b0a27abfb2af2f874fcd00864 -Author: Eric Lipe -Date: Wed Apr 3 14:37:24 2024 -0600 - - - Order by stt_code - -commit ca995ce50cbc03f039fd2f510f175774ee26118c -Author: Eric Lipe -Date: Wed Apr 3 14:13:32 2024 -0600 - - - lint - -commit e3ecc0d9086954a3fc4c5ff5b2da9b62b55f1888 -Author: Eric Lipe -Date: Wed Apr 3 14:07:44 2024 -0600 - - - Remove unused includes - -commit bbba7989a429a15421787b1c46f7c729adea08c1 -Author: Eric Lipe -Date: Wed Apr 3 14:07:09 2024 -0600 - - - Rename Mixin - - Create base Mixin to appeal to MRO - -commit 705deb603cd13f8a653caa228b7e14523e0c92d6 -Author: Eric Lipe -Date: Wed Apr 3 14:01:11 2024 -0600 - - - Add multiselector listfilter - - Update admin models - -commit eb08f12670cd8097c76804fc37b44fa361ae760b -Merge: 7a062d8d3 ef6f44fe5 -Author: Miles Reiter -Date: Wed Apr 3 15:10:08 2024 -0400 - - Merge pull request #2907 from raft-tech/error-categories-guide - - Error categories guide - -commit ef6f44fe534cc6c676ddc83c3857fd52dd010f90 -Merge: 01de8a48b 7a062d8d3 -Author: Miles Reiter -Date: Wed Apr 3 15:01:13 2024 -0400 - - Merge branch 'develop' into error-categories-guide - -commit 80fcedd2799bd5d5eb4c3506c55b2844b626b33f -Merge: a1d5cf57f 7a062d8d3 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Apr 3 14:41:38 2024 -0400 - - Merge branch 'develop' into 2807-quarter-validate - -commit 15be88bc0f877b9edfcb5ead1a96f3e638181bb0 -Merge: eb412eff0 7a062d8d3 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Apr 3 14:41:30 2024 -0400 - - Merge branch 'develop' into 2287-rec-oasdi-insurance - -commit d5d05e71276145438981c4d8c0137f38a9076a27 -Merge: c146f6b06 7a062d8d3 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Apr 3 14:29:52 2024 -0400 - - Merge branch 'develop' into fix/2870-bulkindexerror-handling - -commit eb412eff00d57394910b4bb60175287f8b5e6c07 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Apr 3 14:26:33 2024 -0400 - - change U to D in datafile to align with other ticket not yet comitted - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit d96e2729bb9f77f57ad649bc96af72c748526059 -Merge: be3c1f0d0 7a062d8d3 -Author: Miles Reiter -Date: Wed Apr 3 14:26:03 2024 -0400 - - Merge branch 'develop' into knowledge-center-march - -commit a1d5cf57fb39bab0c6e0f42a89ff3a8480b66cc3 -Author: Andrew Trimpe -Date: Wed Apr 3 14:24:49 2024 -0400 - - update 2019 -> 2020 and fix datafiles and tests - -commit 7a062d8d38d95c74015ba2a5692171cf4f37150a -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 3 11:22:39 2024 -0600 - - DIGIT Team Group + Kibana + Queries (#2861) - - * - Added new group and permissions - - Updated frontend to allow digit access to admin and kibana - - * - Add test - - Update test - - Add fixture - - * - Rename migration - - * - removing debug print - - * - Give digit team access to all parsed data - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 01de8a48b74bc968a3b5b4632377db41e5e36d58 -Author: Miles Reiter -Date: Wed Apr 3 12:30:36 2024 -0400 - - Update error-categories-guide.md - -commit 593d54f0bd77bf1022dbb929c24c2073436e0a64 -Author: Miles Reiter -Date: Wed Apr 3 12:29:47 2024 -0400 - - Update error-categories-guide.md - -commit 1162edb7a693a8116967912c849f29ae4e15e70f -Author: Miles Reiter -Date: Wed Apr 3 12:28:18 2024 -0400 - - Update docs/Technical-Documentation/error-categories-guide.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 46e8422a401ed66201140a0cd663e696e90c47c9 -Author: Miles Reiter -Date: Wed Apr 3 12:28:04 2024 -0400 - - Update docs/Technical-Documentation/error-categories-guide.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 595257a1292fc8a481402d873661935a2599df70 -Author: Eric Lipe -Date: Wed Apr 3 09:55:33 2024 -0600 - - - update test - -commit 12c986396a6fc2322d1099b772bf1f16c2f5e515 -Author: Eric Lipe -Date: Wed Apr 3 09:34:56 2024 -0600 - - - Correct rejection query - - Add test to cover rejection query - -commit 03d8f9f48b9fe4f45e60aa3eca500d3289573123 -Author: Andrew Trimpe -Date: Wed Apr 3 11:06:16 2024 -0400 - - lint - -commit 40f2ecc1430768af020c7d32a5109bc9630cb44c -Author: Andrew Trimpe -Date: Wed Apr 3 10:54:25 2024 -0400 - - lint - -commit b8473f0ff30c27ebfeb283a8a342f082cb5a25f0 -Merge: a11c653bc 509309abd -Author: Andrew Trimpe -Date: Wed Apr 3 10:37:24 2024 -0400 - - merge - -commit a4847c0d71bdc4078da005d79dd008d612cff351 -Author: Eric Lipe -Date: Wed Apr 3 08:03:45 2024 -0600 - - - Added support for range based length checks on certain records - - Updated tests - -commit 9e14abc56e03da42861452a827a87653f64ccfef -Author: Jan Timpe -Date: Wed Apr 3 08:12:34 2024 -0400 - - add SESSION_EXPIRE_AT_BROWSER_CLOSE - -commit 5dcbc1d17f0a6c3e229f812247ae7bfa0e800c33 -Author: Jan Timpe -Date: Tue Apr 2 17:36:00 2024 -0400 - - fix merge conflict issue - -commit 71e12ed4770536ea0baf2eb87f132ac804c4246c -Author: Jan Timpe -Date: Tue Apr 2 17:14:34 2024 -0400 - - fix conflicting migrations - -commit df25f0855bd15403b77b02500064f2b5d613475f -Author: Eric Lipe -Date: Tue Apr 2 14:07:42 2024 -0600 - - - fix liint - -commit 90bfc6977c58a0837c11ca560fdf97cee52184be -Author: Eric Lipe -Date: Tue Apr 2 14:06:25 2024 -0600 - - - Enable export for all record types - - Add custom iterators to generate custom rows in the csv - -commit 2b4b2e2ab1c210f29a1b2a5a75e6490be745cc6a -Merge: b115f62ff 7c0b80a93 -Author: Jan Timpe -Date: Tue Apr 2 13:19:54 2024 -0400 - - Merge branch '2536-cat4-design' into 2842-cat-4-related-records - -commit c146f6b06210521faecf8aac09f3df3f3a40c1f2 -Merge: 418320781 509309abd -Author: Jan Timpe -Date: Tue Apr 2 12:59:39 2024 -0400 - - Merge branch 'develop' into fix/2870-bulkindexerror-handling - -commit be3c1f0d04d1cd397c98e5b23b9880de1fa5224c -Author: Miles Reiter -Date: Tue Apr 2 00:19:22 2024 -0400 - - Update view-submission-history.html - -commit 7e9ec5b5bcf6bf3946fd537735f41596bb334a71 -Author: Eric Lipe -Date: Mon Apr 1 11:48:19 2024 -0600 - - - Move class to be internal - -commit 1092ced11fcae2bf8687601d48040e0edb358069 -Author: Eric Lipe -Date: Mon Apr 1 11:36:53 2024 -0600 - - - Convert to streaming interface to avoid timeouts - -commit 5d6bb1538a2cd9762d2fed44a3bf3f3a1633fa5b -Author: Eric Lipe -Date: Mon Apr 1 10:08:20 2024 -0600 - - - Fix test and lint - -commit 00879185df0f6393139498ddbd75ca903f1848d3 -Merge: cbf33c41a 509309abd -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 1 09:28:57 2024 -0600 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit 7c0b80a939780d5b9b8d887150e9347e4755dab9 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 1 09:22:12 2024 -0600 - - Update tdrs-backend/tdpservice/parsers/case_consistency_validator.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 6c2c1aa7a9d42d0d508aa119e7bca2d5c222fa0a -Author: Eric Lipe -Date: Mon Apr 1 09:17:59 2024 -0600 - - - Add filters to models - - Update filter name - -commit 94dd95a0e176bacefb84c3e2b9c17c7abfc7a694 -Author: Eric Lipe -Date: Mon Apr 1 09:12:19 2024 -0600 - - - Add fiscal year filter - -commit 6c6b32ca48bd2d013ecf23e328740e405d068e3d -Author: Andrew Trimpe -Date: Mon Apr 1 10:51:44 2024 -0400 - - merge - -commit 0e60ad76d719783da9dc39dd27fe3a02a43a6f96 -Merge: d1d1c64b8 509309abd -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Apr 1 10:39:39 2024 -0400 - - Merge branch 'develop' into 2287-rec-oasdi-insurance - -commit 9e8f30eddd66e3f1013c19f96d33ae06218d0446 -Merge: efe6c3a3a 509309abd -Author: Andrew Trimpe -Date: Mon Apr 1 10:27:57 2024 -0400 - - merge - -commit 7f515684707b38d7f78a5baff1d49a6106dcf991 -Author: Eric Lipe -Date: Fri Mar 29 15:42:48 2024 -0600 - - - Add stt filter - - Rename file to filters.py - -commit 55aeda7484696732657847ab92a065e124d03888 -Author: Miles Reiter -Date: Fri Mar 29 16:42:17 2024 -0400 - - Update error-categories-guide.md - -commit c0657076fbc76f14268d4b7538f8b3a845b73896 -Author: Eric Lipe -Date: Fri Mar 29 14:41:01 2024 -0600 - - - Add mixin class/file to export admin data as csv - -commit 6fbbc2417b0201fb5b6808f853aac7ef2729d910 -Author: Eric Lipe -Date: Fri Mar 29 14:21:46 2024 -0600 - - - use correct container - -commit f847a02c9b04594e7981fde6b27559837b3a6080 -Author: Eric Lipe -Date: Fri Mar 29 13:50:24 2024 -0600 - - - add logging - - update conf to allow logging - -commit a1aea3cb61cd2f2608ce2a7df267db7e8e370468 -Author: Eric Lipe -Date: Fri Mar 29 13:37:54 2024 -0600 - - - Add logging for clamav proxy - -commit b7f60aef0eb07f412a62902553b318499e155b17 -Author: Eric Lipe -Date: Fri Mar 29 13:36:44 2024 -0600 - - - update scan url - -commit 542aae476ae444431d318e4732424919e327fa95 -Merge: 84b4ebeeb 509309abd -Author: Miles Reiter -Date: Fri Mar 29 15:25:26 2024 -0400 - - Merge branch 'develop' into knowledge-center-march - -commit 84b4ebeeb6e8313b37e2b12f3f32fe6ed96c78e5 -Author: Miles Reiter -Date: Fri Mar 29 15:22:11 2024 -0400 - - Image and content changes from test environment - -commit 62568e0e89b53b995a7b971fbb2165c7cc46fe39 -Author: Eric Lipe -Date: Fri Mar 29 13:18:54 2024 -0600 - - - fix conf errors - -commit a3f050116c2366637ed862351e8cfbbf56c36f1c -Author: Miles Reiter -Date: Fri Mar 29 11:51:03 2024 -0400 - - Update README.md - -commit 9814af7285a187e53f505587a3ca15dcb87d8303 -Author: Miles Reiter -Date: Fri Mar 29 11:48:30 2024 -0400 - - Update error-categories-guide.md - -commit 58b51bd0c50a98a11fc1e75557987568d6fa8e4c -Author: Miles Reiter -Date: Fri Mar 29 11:47:53 2024 -0400 - - Create error-categories-guide.md - -commit d22ad1eceed3dedb9111d489499c35cf2d706efc -Merge: 9f90cbd5f 509309abd -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Mar 29 11:34:26 2024 -0400 - - Merge branch 'develop' into 2536-cat4-design - -commit aa0b7ed29025ef40d2297a7b82d2a60b2ccc7763 -Author: Eric Lipe -Date: Fri Mar 29 09:23:10 2024 -0600 - - - use correct container - -commit 509309abd0c0a730a6414e4dcc539ca0fa04edc1 -Merge: 88d24ec62 e120f9d62 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Mar 29 09:22:06 2024 -0600 - - Merge pull request #2891 from raft-tech/2886-ssp-error-report-download - - Bug: SSP Error Report Download - -commit bf7f97d240126a6244f4f41c3e411a9bf212aeca -Author: Eric Lipe -Date: Fri Mar 29 08:59:04 2024 -0600 - - - committing intermediate result to test kibana with oss elastic - -commit e120f9d62c36c3edecf955394a0f841ac1bdcf67 -Merge: 61aea4e27 88d24ec62 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Mar 29 08:48:18 2024 -0400 - - Merge branch 'develop' into 2886-ssp-error-report-download - -commit 88d24ec621c2088e5385cc291088ca5b57608c28 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Mar 29 07:54:12 2024 -0400 - - 2871-add retry and fix banner_timeout for file upload (#2874) - - * increased the banner_timeout - - * added retry to file upload - - * linting - - * corrected failing retry - - * changed range to 1 to 3 - -commit 61aea4e2774ece05ac2b999f02d89a1b864fb79e -Merge: eb52893bb dedbd30fa -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 28 18:37:10 2024 -0400 - - Merge branch 'develop' into 2886-ssp-error-report-download - -commit fe66bb5ed4d09a82ab1c4b4c6c7bda13a751c537 -Author: Miles Reiter -Date: Thu Mar 28 16:35:31 2024 -0400 - - adds changes from Test - -commit c7b906588594f253a12c68dafbcc2f19a5a2b6fe -Merge: 5a1e890ea dedbd30fa -Author: Miles Reiter -Date: Wed Mar 27 15:00:33 2024 -0400 - - Merge branch 'develop' into Sprint-95-Summary - -commit b115f62ff960ec54fe257896662f5ff24d4a212a -Merge: 62eaa3eaf dedbd30fa -Author: Jan Timpe -Date: Wed Mar 27 14:01:51 2024 -0400 - - Merge branch 'develop' into 2842-cat-4-related-records - -commit dedbd30fa286f047ed4c6b4e2aa32b2b08430f65 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Mar 27 10:46:52 2024 -0400 - - 2877 move ES AWS routing (#2890) - - * changed the manifest to raft docker hub - - * - Include docs on aws proxy - - * added security implications of keeping the image in external docker hub - - --------- - - Co-authored-by: Eric Lipe - -commit a11c653bc6d8e9d43915f08dce565753c5fa2ef3 -Author: Andrew Trimpe -Date: Wed Mar 27 10:10:21 2024 -0400 - - remove relative year calc - -commit 524086c2ab6dd5f90dc7c9cabf27e29fa9b3889a -Author: Eric Lipe -Date: Tue Mar 26 16:45:23 2024 -0600 - - - comment dev var - -commit 4ef2ab671d931352787bc221ca3f9c63f9896249 -Merge: 1a67b8507 4a3eacb89 -Author: Eric Lipe -Date: Tue Mar 26 16:44:49 2024 -0600 - - Merge branch '2839-nginx-dns' of https://github.com/raft-tech/TANF-app into 2839-nginx-dns - -commit 1a67b85079a4638dd59e888b8c12c498d123b04e -Author: Eric Lipe -Date: Tue Mar 26 16:44:45 2024 -0600 - - - Update clamav nginx - -commit 4a3eacb8913891679197cf8064b32473ea23871a -Merge: a0b8181a6 de1600c47 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 26 16:06:23 2024 -0600 - - Merge branch 'develop' into 2839-nginx-dns - -commit a0b8181a635cc1da542c19ddeb759d606c2f9e0b -Author: Eric Lipe -Date: Tue Mar 26 15:58:47 2024 -0600 - - - Add support for proxy passing a dynamic kibana hostname - -commit 5a1e890eae20e9aac72fab9681eab20bd154d1ac -Merge: fc75067fc de1600c47 -Author: Miles Reiter -Date: Tue Mar 26 16:27:32 2024 -0400 - - Merge branch 'develop' into Sprint-95-Summary - -commit cbf33c41a64183cbe760f98a54904dbd8693a346 -Author: Eric Lipe -Date: Tue Mar 26 13:17:44 2024 -0600 - - - fix lint - -commit eb52893bbf185c78d06960b1733d294683c43eaf -Author: Eric Lipe -Date: Tue Mar 26 13:07:21 2024 -0600 - - - add missing param - -commit 40d1a788ba188e04cea181586720772bbaedb90f -Author: Eric Lipe -Date: Tue Mar 26 13:06:00 2024 -0600 - - - fix test - -commit f768f4cba4680df2b7e94d13acf2785eaa7f368b -Merge: eede1a65a de1600c47 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 26 12:29:05 2024 -0600 - - Merge branch 'develop' into 2886-ssp-error-report-download - -commit 4ceab72f0dccc43c2763c33f40944580441b262d -Author: Eric Lipe -Date: Tue Mar 26 12:28:25 2024 -0600 - - - Turn trailer error generation on - -commit 2ee28be19eabbd5e158e9d6fbadf18bf35bee95e -Author: Eric Lipe -Date: Tue Mar 26 12:12:24 2024 -0600 - - - Fix error from merge - -commit 9f90cbd5fddb12e0497cee332cdb48a0cbd0a62d -Author: Eric Lipe -Date: Tue Mar 26 12:08:13 2024 -0600 - - - fix lint - -commit f1292c2eb25cb77486b49b143d4fba96051b5837 -Author: Eric Lipe -Date: Tue Mar 26 12:04:33 2024 -0600 - - - import row schema - -commit 8c595f1294e5ce16e56f0399e7c8e27796bad2e9 -Merge: 0ccb79130 de1600c47 -Author: Eric Lipe -Date: Tue Mar 26 12:02:15 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design - -commit 2e3c050095f529c2fb32a1736be405e8c797f84d -Author: Eric Lipe -Date: Tue Mar 26 11:58:24 2024 -0600 - - - fix lint - -commit fd54c1890104e64b5cae55446e1efbd75287166e -Merge: 20360a112 de1600c47 -Author: Eric Lipe -Date: Tue Mar 26 11:52:19 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup - -commit 20360a112c61117b1b9d2a4f0e8b9d87e9fb1606 -Author: Eric Lipe -Date: Tue Mar 26 11:42:56 2024 -0600 - - - Resolved remaining conflicts and test failures - -commit de1600c47663b9667a2c10ace347fa2c7eea94f6 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 26 10:59:31 2024 -0600 - - 2681 s1 enhancements (#2817) - - * - Added S1 enhancements - - * - fixed tests - - * - removed debug logging level - - add safety to custom validators where type exceptions could occur - - * - fix lint - - * - fixed test after validator correction - - * - Fix incorrect validators - - add logging - - fix lint - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - revert gender requirement - - * - Update based on feedback - - * - Fixed tests to support change to RECEIVES_SUB_HOUSING on t1 - - * - Updated based on feedback - - * - Update tests - - * - Getting yq form git repo - - * Revert "- Getting yq form git repo" - - This reverts commit 96be9313cebcb059b41e4a92cd73b1b0a054932e. - - * - make required - - update test file - - * - Fixed validator to use correct types - - * - fix validator - - * - Update validator per Alex's comments - - * - lint - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 221df4646ade49080dfd2ab8d489c46aa61bf9b0 -Author: Eric Lipe -Date: Tue Mar 26 09:47:52 2024 -0600 - - - Updated validators to leverage row schema instead of individual fields - -commit fc75067fcbee4f6ba0521b8120241186b604a384 -Author: robgendron <163159602+robgendron@users.noreply.github.com> -Date: Tue Mar 26 11:38:49 2024 -0400 - - Rename Sprint-95-Summary.md to sprint-95-summary.md - -commit 0361107c625520c17242ce69cdd6180d0d719135 -Author: robgendron <163159602+robgendron@users.noreply.github.com> -Date: Tue Mar 26 11:37:08 2024 -0400 - - Create Sprint-95-Summary.md - -commit 55b2470515d0dd9b2dfeb995b8f91fe5f7c39857 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 26 09:12:50 2024 -0600 - - File Rejection Criterion (#2867) - - * - Add metadata to datafile to track whether a file should be rejected based on record count - - * - fix lint - - * - Move record counts to DFS - - Update tests - - * - add missing param - - * - Fix lint - - * - Add unit test for rejection criteria - - * - Fix lint - - * - Added error generation for the case when the file is valid but no records are created. - - Added test and updated existing tests - - * - Fix lint - - Remove test file - - * - fixed tests - - * - Fix tests to avoid duplicate key error - - * - Quiet preparse errors for section 3 records - - * - add missing arg - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit da229897ddf84c44d4d73343ca631f2c6fe99d9c -Author: Eric Lipe -Date: Mon Mar 25 15:57:22 2024 -0600 - - - Adding missing params to new validator - -commit 84b683597594210d91da863ca3de4e3fcfac1464 -Merge: 738d0e6e0 fd0718200 -Author: Eric Lipe -Date: Mon Mar 25 15:56:51 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup - -commit 0ccb791306c8b1bdda89b5f6bd7bf584a3447381 -Merge: d6ff4ce52 fd0718200 -Author: Eric Lipe -Date: Mon Mar 25 15:46:50 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design - -commit efe6c3a3afdef0586e97bdccfdcd8c004126d486 -Author: Andrew Trimpe -Date: Mon Mar 25 16:33:15 2024 -0400 - - lint - -commit 19e442b7d1afc9c553855f747ee820153a5bb738 -Author: Andrew Trimpe -Date: Mon Mar 25 16:31:53 2024 -0400 - - lint - -commit d2bdf7cf91f9a45d5c06817524ad14fb91a3c78c -Author: Andrew Trimpe -Date: Mon Mar 25 16:31:37 2024 -0400 - - lint - -commit 8b191e90c5b1e92e46afa2345f922c1d76e71de7 -Author: Andrew Trimpe -Date: Mon Mar 25 16:27:02 2024 -0400 - - undo reverted code - -commit d1d1c64b84fbd3acd50dc5467f36a3aa758352bb -Merge: d8c67437b fd0718200 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Mar 25 09:55:52 2024 -0400 - - Merge branch 'develop' into 2287-rec-oasdi-insurance - -commit d8c67437b0777fa305125bba5ac74c0bab3a43cb -Author: Andrew Trimpe -Date: Mon Mar 25 09:55:29 2024 -0400 - - re-adding validator and altering test data to be <18yo - -commit d1e7665cec907bb84a06ce111d953c6dbec16b87 -Author: Eric Lipe -Date: Mon Mar 25 07:52:57 2024 -0600 - - - committing intermediate code - -commit fd07182006adac14b1b7fcb291c003970f800b16 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Mar 25 09:29:44 2024 -0400 - - 2799 catch rpt month year mismatches (#2812) - - * created pre-check error - - * corrected some of failing tests - - * corrected failing tests - - * two tests still failing - - * Passing tests - - * Update small_incorrect_file_cross_validator.txt - - * Update small_incorrect_file_cross_validator.txt - - * Update small_incorrect_file_cross_validator.txt - - * Update small_incorrect_file_cross_validator.txt - - * revert changes on test file - - * corrected the failing test - - * resolve circular import - - * merge conflict resolution - - * linting - - * correct failing tests - - * corrected t7 tests - - * first changes - - * remove old changes - - * tep changes - - * getting the reporting month - - * correct .util - - * tests failing but the preparsing error works - - * corrected tests, need to stop parsing if pre-validator error - - * solving failing tests - - * linting - - * added field validator to all submission - - * fixing failing tests - - * linting and correct tests - - * added validator for second child - - * merge conflict resolved failing tests - - * priotrized preparsing year/month error - - * linting - - * correct test files and linting - - * 2799 failing tests - -commit 751df09e476d37925172fd16bbbea6e53ba11b88 -Author: Jan Timpe -Date: Mon Mar 25 08:59:28 2024 -0400 - - add sleep - -commit 3334e5c7d688fc8c69dcaf8b9e715f80f4fcd4e3 -Author: Andrew Trimpe -Date: Fri Mar 22 13:41:25 2024 -0400 - - schema change + test and datafile - -commit f1a1b22dc27adbcdec3ad52736ef24405be372e5 -Author: Jan Timpe -Date: Thu Mar 21 13:06:12 2024 -0400 - - batch seed script - -commit eede1a65a21132621f7f24d549c0c3649ce0c60c -Author: Eric Lipe -Date: Thu Mar 21 09:00:47 2024 -0600 - - - remove print - -commit 69b0bbe6b0992f00417dd623c1110a139627487b -Author: Eric Lipe -Date: Thu Mar 21 09:00:30 2024 -0600 - - - Update queryset method to only filter on the list request - -commit d51c636011064bcfb07e7cdfec067c1caa6c0886 -Merge: 0ae5a6fdd ab4224d83 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Mar 21 08:47:57 2024 -0600 - - Merge branch 'develop' into 2886-ssp-error-report-download - -commit 738d0e6e01201481bf7b08ad8db818df9c4ae526 -Merge: 4124130a2 ab4224d83 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Mar 21 08:47:47 2024 -0600 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit d6ff4ce5245826766078bf6084bee60ac287de2a -Merge: 4cb782e74 ab4224d83 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Mar 21 08:47:36 2024 -0600 - - Merge branch 'develop' into 2536-cat4-design - -commit 98f81f6ea9ded45e0cc46abdb45fe80eefd6c5c2 -Author: Jan Timpe -Date: Thu Mar 21 09:38:14 2024 -0400 - - add seed records - -commit 11ff9b8368dd5bfed0599a6366dc147076cb6a53 -Author: Jan Timpe -Date: Thu Mar 21 09:38:05 2024 -0400 - - fix cron time - -commit cf387ee9777c9682f292e82e4f71443c33212186 -Merge: cec7c84ea ab4224d83 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Mar 21 09:22:17 2024 -0400 - - Merge branch 'develop' into 2870-elastic-reindex-cron - -commit 07206872ba19cdc83914b4ab3aa5439f0f1f15a9 -Merge: 9c02d6ad0 ab4224d83 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Mar 20 16:33:03 2024 -0400 - - Merge branch 'develop' into 2807-quarter-validate - -commit 9c02d6ad072347e9dd8a47456f3441f1c5f692e8 -Author: Andrew Trimpe -Date: Wed Mar 20 16:23:46 2024 -0400 - - remove comment - -commit 9e4581cbad56a0384fa47fe5075c1af16d7a79b8 -Merge: dffbe66d7 9c16bcb09 -Author: Andrew Trimpe -Date: Wed Mar 20 16:20:16 2024 -0400 - - Merge branch '2807-quarter-validate' of github.com:raft-tech/TANF-app into 2807-quarter-validate - -commit dffbe66d76f3efe011da689eb6992ca8c7185f39 -Author: Andrew Trimpe -Date: Wed Mar 20 16:20:00 2024 -0400 - - reworked try/catch to a more appropriate area - -commit ab4224d8394f8caca82332971cb94d9c42c42eec -Merge: 36f2f0527 7a1ae9690 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Mar 20 13:48:46 2024 -0600 - - Merge pull request #2894 from raft-tech/deployment-hotfix - - Hotfix for `yq` Installation - -commit 7a1ae96900264d0b45a4087636c9689986352bbe -Author: Eric Lipe -Date: Wed Mar 20 11:46:49 2024 -0600 - - - Add deployment fix - -commit 9c16bcb09db8d1692b3fca0269e4e967e6143512 -Merge: 4545374ee 36f2f0527 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Mar 20 11:28:15 2024 -0400 - - Merge branch 'develop' into 2807-quarter-validate - -commit 4545374ee3c820ca8044e4d4a7f8762e1d68f5b4 -Author: Andrew Trimpe -Date: Wed Mar 20 11:14:24 2024 -0400 - - fixing lint - -commit 4d87f183ae21524f013a71712b6afa61c76dec5b -Author: Andrew Trimpe -Date: Wed Mar 20 11:08:46 2024 -0400 - - requested change - -commit 36f2f05271501d25861ca2378ee1eaeb35d4c579 -Merge: 3772005c0 fa65a6866 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Mar 20 10:59:20 2024 -0400 - - Merge pull request #2893 from raft-tech/2818-undo-merge - - Revert "Merge pull request #2872 from raft-tech/2818-update-indicator" - -commit fa65a6866df397356371d2272f1bda183443e9f3 -Author: Andrew Trimpe -Date: Wed Mar 20 10:45:00 2024 -0400 - - Revert "Merge pull request #2872 from raft-tech/2818-update-indicator" - - This reverts commit 3772005c0904e444661f72c1a3c2892aaf86ab89, reversing - changes made to f38f6df85d614080fcecebff2530503665e6f768. - -commit f897a98272bdf7e5c00da398441739bc0aea6aac -Author: Andrew Trimpe -Date: Wed Mar 20 10:30:28 2024 -0400 - - remove generated file - -commit 3772005c0904e444661f72c1a3c2892aaf86ab89 -Merge: f38f6df85 e729be1db -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Mar 20 09:53:23 2024 -0400 - - Merge pull request #2872 from raft-tech/2818-update-indicator - - 2818-Update Indicator - -commit cec7c84ea1177352e3b252a7441bbde9b1a3d34c -Author: Eric Lipe -Date: Wed Mar 20 07:31:51 2024 -0600 - - - Fix lint - -commit e9809f2527fa6b3388e541e2151919fb10b8c8f8 -Author: Eric Lipe -Date: Tue Mar 19 14:49:42 2024 -0600 - - - Added error logging for the instance where the subprocess return code is not zero - -commit fe50af77889f2450f4ff7a5d3b2b10135eadd0f3 -Author: Jan Timpe -Date: Tue Mar 19 13:37:52 2024 -0400 - - validate case closure reasons - -commit bf3c93916fa45638a33b5bc48eb53dfb20ad4dcc -Author: Jan Timpe -Date: Tue Mar 19 13:32:48 2024 -0400 - - add request timeout var - -commit 4cb782e74ae556917c76af65662802e623f8631d -Merge: 7645b1bec f38f6df85 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 19 13:15:00 2024 -0400 - - Merge branch 'develop' into 2536-cat4-design - -commit 4124130a263ebf1c94895cf744ba8286dcf440ad -Merge: a5df1094e f38f6df85 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 19 13:14:58 2024 -0400 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit e729be1dbea590b318d8e2539cca5f3b4e14ab41 -Author: Andrew Trimpe -Date: Mon Mar 18 15:47:50 2024 -0400 - - remove debug statement - -commit 0ae5a6fdd4e35b010091fa2e35f1211cc8e49967 -Author: Eric Lipe -Date: Mon Mar 18 13:44:50 2024 -0600 - - - resolve duplicate key error - -commit ca82a56c79aae3ca3aee7e1017ee98eb46b75b58 -Author: Andrew Trimpe -Date: Mon Mar 18 15:27:07 2024 -0400 - - lint - -commit 96d2783718d15e7ac5bedb1e6888d782f83b6d6a -Author: Eric Lipe -Date: Mon Mar 18 13:25:04 2024 -0600 - - - Fix lint - -commit 582da0115477bb82f1e59e5db272c74cf9486704 -Author: Eric Lipe -Date: Mon Mar 18 13:24:04 2024 -0600 - - - Updated fixtures to create an stt who can submit both SSP and TANF - - Updated test to capture downloading SSP error report - -commit 997c1a5cf547b127f3c2eec01df59e29cab0b222 -Author: Andrew Trimpe -Date: Mon Mar 18 15:16:54 2024 -0400 - - fix test + cleanup - -commit 9fe1470719f5836326742f81db56794fa01bf6b6 -Merge: 7529c687e f38f6df85 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Mar 18 12:43:40 2024 -0600 - - Merge branch 'develop' into 2886-ssp-error-report-download - -commit 3abc89412675008c37379ad05821fac079acce38 -Merge: 271f7f1e9 f38f6df85 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Mar 18 14:43:02 2024 -0400 - - Merge branch 'develop' into 2818-update-indicator - -commit 7529c687ea9bb944fb13afb4e55806553d3684c0 -Author: Eric Lipe -Date: Mon Mar 18 12:32:04 2024 -0600 - - - Removed erroneous queryset filter that was causing ssp report to now download - -commit f38f6df85d614080fcecebff2530503665e6f768 -Author: Miles Reiter -Date: Mon Mar 18 13:56:01 2024 -0400 - - GitHub Research Docs Fixes (#2868) - - * Move over changes from Camilla's branch - - * Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - - Referenced file that no longer exists on the repo (now deep in archives in Figma & implemented in-app) - - * Update 2020, Spring - Understanding the local experience.md - - replaced old link pointing to project wiki - - * Update 2023, Spring - Testing CSV & Excel-based error reports.md - - Final jump to link fix - - * Update 2023, Winter - TDP 3.0 Pilot Program.md - - last research synthesis naming convention link fix - - * Update docs/User-Experience/Research-Syntheses/2020, Fall - Flatfile Metadata Guide.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - - * Update docs/User-Experience/Research-Syntheses/2021, Spring - Evil User Journeys & TANF Data Errors.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - - * Update docs/User-Experience/Research-Syntheses/2022, Fall - TDP 2.2 Pilot Expansion.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - - * Update 2023, Winter - TDP 3.0 Pilot Program.md - - * Update 2023, Winter - TDP 3.0 Pilot Program.md - - --------- - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 7645b1becc8e4c283cf1786c64ff66e43c466fd1 -Author: Eric Lipe -Date: Mon Mar 18 10:42:42 2024 -0600 - - - Appease linter - -commit 0c6af70c79260c96ba1725eed0200907849c3fc9 -Author: Eric Lipe -Date: Mon Mar 18 10:16:05 2024 -0600 - - - Adding try/except in validate - -commit 4880610b71fe64aaeb88fcd543142eef2b19769c -Author: Andrew Trimpe -Date: Mon Mar 18 11:10:14 2024 -0400 - - fixing tests - -commit 929e94f2ffdb1eec1f11890af0514d3f48463819 -Author: Andrew Trimpe -Date: Mon Mar 18 10:21:05 2024 -0400 - - fixing tests - -commit 130d324e98dbd15402ae2bff66eae2f1514f6881 -Author: Jan Timpe -Date: Mon Mar 18 09:32:29 2024 -0400 - - task name consistency - -commit 28969b0fd79c83144091443940c6f4b9d78fcf47 -Author: Jan Timpe -Date: Mon Mar 18 09:10:01 2024 -0400 - - use `subprocess` instead - -commit 6d757c971859044f1561e207f69c5a67957bea31 -Author: Jan Timpe -Date: Fri Mar 15 17:45:50 2024 -0400 - - lint - -commit b486395a45b90f69f884be2acc75de4eabbfc0d7 -Author: Jan Timpe -Date: Fri Mar 15 16:48:42 2024 -0400 - - parameterize `thread_count` and `chunk_size` - -commit 61e391f6df7bf784811cf6033724e8c142de930d -Author: Jan Timpe -Date: Fri Mar 15 16:38:18 2024 -0400 - - change cron schedule - -commit bccc2bbe9ce69ab2b6ca1bfcc3a571ea81b536ee -Author: Jan Timpe -Date: Fri Mar 15 16:33:53 2024 -0400 - - casting - -commit 8147a5f14cabf6c6207f30e2bd82449c4c07d193 -Author: Jan Timpe -Date: Fri Mar 15 16:29:39 2024 -0400 - - remove confusing object repr - -commit 012a614bf089ad06abcb0ebb3cdad5d7375f14e8 -Author: Jan Timpe -Date: Fri Mar 15 16:29:14 2024 -0400 - - parameterize `log` options - -commit f8890a98c9df4fd8c18e256deffa94c163c7adc9 -Author: Jan Timpe -Date: Fri Mar 15 16:12:56 2024 -0400 - - enable index aliases - -commit 87f5b548383f8cabb18e6cae67030895a3761657 -Author: Jan Timpe -Date: Fri Mar 15 16:12:46 2024 -0400 - - override django-elasticsearch-dsl _populate to pass in some options - -commit 13248bcd30112f04e5279f1a770ac78328e5d317 -Author: Jan Timpe -Date: Fri Mar 15 16:12:24 2024 -0400 - - enable parallel indexing - -commit b7310cf2bd0bfbdd18f457214a3510afb47b3dbc -Merge: d20225cb9 06c291622 -Author: Andrew Trimpe -Date: Fri Mar 15 09:56:59 2024 -0400 - - Merge branch '2807-calendar-quarter' of github.com:raft-tech/TANF-app into 2807-calendar-quarter - -commit d20225cb94e0e8dfe80427c1c9538c3fc3b0f8f4 -Author: Andrew Trimpe -Date: Fri Mar 15 09:50:24 2024 -0400 - - date update + catching invalid quarter error - -commit 06c291622af5cf3937ca0f39650729f0518af19e -Author: Andrew Trimpe -Date: Fri Mar 15 09:50:24 2024 -0400 - - date update + catching invalid quarter error - -commit a5df1094ee462cd74bbf1167a9e586c15f8f5668 -Author: Eric Lipe -Date: Thu Mar 14 12:04:35 2024 -0600 - - - fix lint - -commit 418320781de072378ff7578d9dab4573125bb376 -Merge: f894f5e9b abd50999a -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Mar 14 13:41:59 2024 -0400 - - Merge branch 'develop' into fix/2870-bulkindexerror-handling - -commit 7d657226fefe9dae8669497520a071806da3b2b3 -Merge: 1593f55b7 abd50999a -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Mar 14 13:41:51 2024 -0400 - - Merge branch 'develop' into 2870-elastic-reindex-cron - -commit 840980ed9c20f9927f6c013359a3357833aeec5e -Merge: 419e9125e abd50999a -Author: Eric Lipe -Date: Thu Mar 14 11:39:13 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design - -commit b3ea53a8bdf931dca09fb9e8bdc572402f15bbf2 -Author: Eric Lipe -Date: Thu Mar 14 11:37:12 2024 -0600 - - - Fix tests - -commit 0e52b37927996c1a88ce3f0cfe8d8ecc40db55fe -Author: Eric Lipe -Date: Thu Mar 14 11:19:24 2024 -0600 - - - Fixed validator tests - -commit eb5efa7d34c39b553d0ffd1f5653c259dcfc50c9 -Author: Eric Lipe -Date: Thu Mar 14 10:57:35 2024 -0600 - - - Fixed parse tests - -commit e4eba5f7414cc3cc201871d6abaaea99e39ba63f -Merge: c014e5739 abd50999a -Author: Eric Lipe -Date: Thu Mar 14 09:46:40 2024 -0600 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup - -commit abd50999a5d9c793dc30b7daec096059fc1a3d56 -Merge: 27f5d030a f5f8fb1c8 -Author: Miles Reiter -Date: Wed Mar 13 19:21:55 2024 -0400 - - Merge pull request #2882 from raft-tech/sprint-94-summary - - Create sprint-94-summary.md - -commit f5f8fb1c8f2c42fa399adb8ff2ec7399bc0cccc8 -Merge: 40bf72661 27f5d030a -Author: Miles Reiter -Date: Wed Mar 13 19:10:53 2024 -0400 - - Merge branch 'develop' into sprint-94-summary - -commit 27f5d030a8b43ceefff931ca574a000856766af2 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Mar 13 13:55:54 2024 -0600 - - CirCI OS Image Hotfix (#2875) - - * - Testing image - - * - Adding env var - - * Revert "- Adding env var" - - This reverts commit 642a7e0607bc0730f9e595c5b6412786c417eef8. - - * - testing env var - - * - only running frontend - - * Revert "- only running frontend" - - This reverts commit 998358ef3eccbab5693b7be9c75adb359b158a9e. - - * Revert "- testing env var" - - This reverts commit a15a18ad3c90417104e01e0157d338eac407a2df. - - * - only running frontend - - adding env var to job - - * - revert - - * Revert "- only running frontend" - - This reverts commit e6ef0ff88af6c8484746d7c9fd730c93e8436485. - - * - Adding var to command - - * - uncommenting tests - - * - test latest patch - - * - latest image circi has available - - --------- - - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit 40bf72661886fbe7869860605c08da0c8dc9ec03 -Author: Miles Reiter -Date: Wed Mar 13 15:35:28 2024 -0400 - - Update sprint-94-summary.md - -commit 9978a84eae7e688da02029a10e52108fa79a3e67 -Merge: 5d06b72e7 e247aa24a -Author: Miles Reiter -Date: Wed Mar 13 15:35:22 2024 -0400 - - Merge branch 'develop' into sprint-94-summary - -commit 271f7f1e9fb6243375ad5035ae79329de2bc7209 -Merge: e3871cd05 e247aa24a -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Mar 13 14:30:48 2024 -0400 - - Merge branch 'develop' into 2818-update-indicator - -commit e247aa24a675955761a7d62d589f4970b78cee51 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Mar 13 13:21:01 2024 -0400 - - Feature/2729 remote migrations (#2779) - - * add apply remote migrations script - - * add missing required env - - * rm migrate from gunicorn start - - * add required lib - - * add migrate command to pipeline - - * fix deps - - * rm message - - * tom's workaround - - * re-lock deps - - * remove commented migration lines - - * rm graphviz - - * catch exit status - - * add failing test migration - - * delete test migration - - * testing migration from local - - * rm test migration - - --------- - - Co-authored-by: Alexandra Pennington - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit e9947f90a9d422a967e107da7ee928d89a9d7e76 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Mar 13 11:08:22 2024 -0600 - - RPT_MONTH_YEAR Validation Update (#2849) - - * - Added preparse check for a valid rpt_month_year for all schemas - - Updated tests - - * - Add missing tests for validators - - * - fix lint - - * - Fix tests after merge - - * - Updated validator error message language - - * - Updated validator to check the year and month individually also - - * - fix lint - - --------- - - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit d4f58e1cc0ab3e0aaa074f13847e472bd453cc38 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Mar 13 10:57:02 2024 -0600 - - DOB Updates (#2825) - - * - Updating DOB field validators - - * - Fixed validator - - * - Updating error messages a bit - - * - updatec message - - * - Added missing tests - - Fixed range error - - * - Fix validators based on feedback - - Update/add tests - - * - Fixed validator - - * - Fix lint - - Remove duplicate definition - - * - Aligning DOB types across all schemas/models - - * - giving migration a good name - - * Revert "- giving migration a good name" - - This reverts commit 005ceb5dc083b8d04b8dc1d18efd6b13aa0ccc95. - - * Revert "- Aligning DOB types across all schemas/models" - - This reverts commit bb2be30b6b619c500630cdcdaf1070001216e392. - - * - Convert all DOB to string fields - - Add test covering DOB field provided by Alex - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 5d06b72e764368f8b66fe5513fc6c039f3d27c16 -Author: Miles Reiter -Date: Tue Mar 12 14:32:43 2024 -0400 - - Update sprint-93-summary.md - -commit b48e5c9b9275de9297d57f0fe84fd86e2a1e4af8 -Author: Miles Reiter -Date: Tue Mar 12 14:20:22 2024 -0400 - - Update sprint-94-summary.md - -commit 7e8c0e8a9a5527af3c7c5e8f6e69a5672b15a16b -Author: Miles Reiter -Date: Tue Mar 12 14:20:04 2024 -0400 - - Update sprint-94-summary.md - -commit 0ad65f174ce7ebb2b079d1f8b275f59483770970 -Author: Miles Reiter -Date: Tue Mar 12 14:19:43 2024 -0400 - - Update sprint-94-summary.md - -commit 449a82c7a079abb5bc54d64b96ce1994a8a4718e -Author: Miles Reiter -Date: Tue Mar 12 14:18:36 2024 -0400 - - Update sprint-92-summary.md - -commit c112074c765a90fc3e23f3b64a2660cc7ed86038 -Author: Miles Reiter -Date: Tue Mar 12 14:12:57 2024 -0400 - - Create sprint-94-summary.md - -commit 1593f55b790636620525282f7fcce7de31754aa3 -Author: Jan Timpe -Date: Mon Mar 11 10:38:23 2024 -0400 - - no blANK lineS aLLOwEd AfTEr funCtIoN doCStRINg - -commit 581cd42e4023634c2ec92ce103cb1b372e6fb2f6 -Author: Jan Timpe -Date: Mon Mar 11 10:26:55 2024 -0400 - - create a reindex cron task - -commit 931d4a3b17959aa15dcaee9331ea85fcff219fa8 -Author: Jan Timpe -Date: Mon Mar 11 10:26:45 2024 -0400 - - move the `log` func to core.utils - -commit c014e5739e4337c17ae808529e197e2f7aaa7fe5 -Author: Eric Lipe -Date: Sat Mar 9 11:30:52 2024 -0500 - - - Adding default for matches validator error func - -commit ca29f0ce4fdd9ec923d540bc074655b844020748 -Author: Eric Lipe -Date: Sat Mar 9 11:23:08 2024 -0500 - - - parametrized error funciton on the matches validator - -commit f894f5e9b92d04052555fbee9da5dbaf7b44ea9d -Author: Jan Timpe -Date: Fri Mar 8 18:23:37 2024 -0500 - - don't return a rollback response on bulkindexerror - -commit 5974ee6d2e64a14612cd3edc7c11a58c4c435431 -Merge: 7e2ce9544 62eaa3eaf -Author: Jan Timpe -Date: Fri Mar 8 15:26:58 2024 -0500 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit 62eaa3eaf48d8866b5bd763c6aa041d32e63c109 -Author: Jan Timpe -Date: Fri Mar 8 15:26:33 2024 -0500 - - up timeout - -commit 7e2ce95446be6898f8013b89e252df95879cc549 -Author: Jan Timpe -Date: Fri Mar 8 15:25:36 2024 -0500 - - up timeout - -commit b1b11ccb969db02eafb6a15a113c42d9c755d23a -Merge: 86809c3c4 8229d90d6 -Author: Jan Timpe -Date: Fri Mar 8 15:19:20 2024 -0500 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit 8229d90d609b784eb9afc4f6274e2caa6f9bb442 -Author: Jan Timpe -Date: Fri Mar 8 15:19:07 2024 -0500 - - rm logging - -commit 86809c3c4348d2559a76283fded83771b4d0f2e7 -Author: Jan Timpe -Date: Fri Mar 8 15:16:42 2024 -0500 - - uncomment logs - -commit 1ccebcfd26a974231958f79a6253ed1ec3b84989 -Merge: a5d713311 8507cc5f0 -Author: Jan Timpe -Date: Fri Mar 8 15:16:01 2024 -0500 - - Merge branch '2842-cat-4-related-records' into 2842-cat-4-remaining-s2-validators - -commit a5d71331154b9f4601a4e704c2a2dc9fcb022e1a -Author: Jan Timpe -Date: Fri Mar 8 15:10:38 2024 -0500 - - add cat4 aabd_and_ssi validator - -commit e3871cd0574f15ad9a95b1e1b11f3b1d0dbefad0 -Author: Andrew Trimpe -Date: Wed Mar 6 14:26:10 2024 -0500 - - changed schema to use matches - -commit 8507cc5f06bc8d79a21741df339c46fc3fc84fbf -Author: Jan Timpe -Date: Wed Mar 6 14:25:50 2024 -0500 - - wait for localhost - -commit 023f081ea832bdb1ebfc92fab3ccfda5060f54ad -Author: Andrew Trimpe -Date: Wed Mar 6 14:22:23 2024 -0500 - - changed schema to use matches - -commit d2c266f8f8cc9d6c1387485a9685b98707e07381 -Author: Jan Timpe -Date: Wed Mar 6 13:56:45 2024 -0500 - - wait for web - -commit 6607756a67a43375ba4dc58c10a684662edde1c0 -Author: Jan Timpe -Date: Wed Mar 6 13:40:33 2024 -0500 - - wait for elastic - -commit 86215ce2941347891c9d2aae8249aa563b30fd2e -Author: Jan Timpe -Date: Wed Mar 6 12:41:51 2024 -0500 - - cd - -commit baa8db1aaea72cd8415783a907b88b29bd4b5436 -Author: Jan Timpe -Date: Wed Mar 6 12:36:23 2024 -0500 - - missed a space - -commit 42e9417bfeaa93b7ed21c55080156e0b41a472de -Author: Jan Timpe -Date: Wed Mar 6 12:12:13 2024 -0500 - - move reindex to test workflow - -commit 624fe2d4e5eb7419e2c43fc8a476d26af4a4a039 -Author: Jan Timpe -Date: Wed Mar 6 11:58:23 2024 -0500 - - add search_index --rebuild - -commit 7fc43334a3c539325ce517f2cf241c4fe4d7bcad -Author: Andrew Trimpe -Date: Wed Mar 6 11:52:06 2024 -0500 - - not needed - -commit 6bbd8170e9d554848e0c4dec8ec0b0fb1d4d0425 -Author: Jan Timpe -Date: Wed Mar 6 11:35:16 2024 -0500 - - make parsererror row_number optional - -commit 723495e5e5f689ff06b2d95ea1227dc2517db972 -Author: Andrew Trimpe -Date: Wed Mar 6 10:21:56 2024 -0500 - - remove local changes - -commit 857402359e00e0d1d5932ce50277fd3348acd58e -Merge: 7e6796385 820027531 -Author: Andrew Trimpe -Date: Wed Mar 6 10:10:16 2024 -0500 - - Merge branch '2818-update-indicator' of github.com:raft-tech/TANF-app into 2818-update-indicator - -commit 7e679638540b7048bd4cae3890f3a8cf565f3ee2 -Author: Andrew Trimpe -Date: Wed Mar 6 10:08:50 2024 -0500 - - removed validator and use schema OneOf method - -commit 8200275314d23eda30afe86c9f1b126c59885e76 -Merge: 56e22da4a 4daa673d3 -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Wed Mar 6 09:03:13 2024 -0500 - - Merge branch 'develop' into 2818-update-indicator - -commit 56e22da4a56ed0aa5c0422072a7166aaaa567ee7 -Author: Andrew Trimpe -Date: Wed Mar 6 09:01:17 2024 -0500 - - revert local changes - -commit 427d83552fb8280ccaf0a2541415e4d450f080e9 -Author: Andrew Trimpe -Date: Wed Mar 6 08:58:45 2024 -0500 - - revert local changes - -commit 0bba6e82f01280841418468c110fa919b081dfc5 -Merge: 20a43a699 4daa673d3 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 5 12:29:55 2024 -0700 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit 419e9125e67f0a07ccfc2616e303de94c2a6b7bd -Merge: 69082e79b 4daa673d3 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Mar 5 12:29:23 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit 3243bc0025ecae08a0c51d4247e181bb5988d069 -Merge: 1ccf3a946 69082e79b -Author: Jan Timpe -Date: Tue Mar 5 13:30:10 2024 -0500 - - Merge branch '2536-cat4-design' into 2842-cat-4-related-records - -commit 1ccf3a9460d1a6d01df8f15de466df9b8436a1da -Author: Jan Timpe -Date: Tue Mar 5 13:27:18 2024 -0500 - - use `values()` over `items()` - -commit 69082e79bf12ae4185cc0eb2c78bed3729017d2d -Author: Eric Lipe -Date: Tue Mar 5 09:34:39 2024 -0700 - - - remove todo - -commit 4daa673d3874431209df1ee4c0201e62441822e8 -Merge: f34df6eea 28b29ed32 -Author: Miles Reiter -Date: Tue Mar 5 11:14:32 2024 -0500 - - Merge pull request #2864 from raft-tech/sprint-93-summary - - Create sprint-93-summary.md - -commit c6210e9078f8a0eff29d8aa9b54a1a0e5214e6d1 -Author: Andrew Trimpe -Date: Mon Mar 4 11:03:26 2024 -0500 - - fix test - -commit 2b9def6045da22e667136e1615f0fa35f871be24 -Merge: 633609f2d f34df6eea -Author: Andy Trimpe <115569664+atrimpe@users.noreply.github.com> -Date: Mon Mar 4 10:52:43 2024 -0500 - - Merge branch 'develop' into 2818-update-indicator - -commit 633609f2d6278b70a32855e91bf939d1320aa43e -Author: Andrew Trimpe -Date: Mon Mar 4 10:45:55 2024 -0500 - - fix lint - -commit 95083b594952a0a34f79193837dab75c4fcdbf3a -Author: Andrew Trimpe -Date: Mon Mar 4 10:38:49 2024 -0500 - - updated with suggested error message and altered gitignore to cover .vscode anywhere - -commit a9102ba47c6895f81adb3edfb9bac4c7d23abf21 -Merge: 694decf54 f34df6eea -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Mar 4 08:11:13 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit 20a43a69946b8173d55623c94bb7d9632f1dcd6d -Author: Eric Lipe -Date: Mon Mar 4 08:09:44 2024 -0700 - - - Fixed tests - -commit 527ddb80f2efacdac5e03e9518f85b0dee214087 -Merge: 9bb8abef3 f34df6eea -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Sat Mar 2 14:09:17 2024 -0700 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit 9bb8abef3d6be880ef39a8144fd20516b2b1512b -Author: Eric Lipe -Date: Sat Mar 2 14:08:37 2024 -0700 - - - Fix lint - - remove debug file - -commit 16c4460bfddd46f4c0b824bc94165a8ffa3b9427 -Author: Eric Lipe -Date: Sat Mar 2 12:41:48 2024 -0700 - - - Fix failing tests - -commit 28b29ed322a3f9d261d83a7204d0454a4186c24b -Author: Miles Reiter -Date: Fri Mar 1 16:55:01 2024 -0500 - - Update sprint-93-summary.md - -commit 0338203a95760f0c7a0186d9af20ccd2f69ed8bc -Merge: 356156e4a f34df6eea -Author: Miles Reiter -Date: Fri Mar 1 16:40:54 2024 -0500 - - Merge branch 'develop' into sprint-93-summary - -commit f34df6eeac643ecd147d0491b29fa07d907dfcb4 -Merge: d559d4f24 83c9eca5e -Author: Miles Reiter -Date: Fri Mar 1 16:40:28 2024 -0500 - - Merge pull request #2863 from raft-tech/sprint-92-summary - - Create sprint-92-summary.md - -commit 4e821163fed1755ca9630198058833600494e059 -Author: Jan Timpe -Date: Fri Mar 1 16:16:06 2024 -0500 - - move/update tests - -commit 668e17d9c1b1ccd1dc30134645e4d53d1a6e801f -Author: Jan Timpe -Date: Fri Mar 1 16:16:01 2024 -0500 - - add a SortedRecordSchemaPairs class - -commit 745537863a7a3cd991a8bf47be545702bf5da9ec -Author: Eric Lipe -Date: Fri Mar 1 14:10:15 2024 -0700 - - - Added structure to move parameters into validators error messages - - Added record type prefix to all error messages - - Updated tests - -commit 442bd753f500f514e9981584fb22bd5fb172ba4b -Author: Andrew Trimpe -Date: Fri Mar 1 12:28:09 2024 -0500 - - fix lint errors - -commit ce77311e8654818ec0bf7c956da098e21769b1c6 -Author: Andrew Trimpe -Date: Fri Mar 1 11:59:24 2024 -0500 - - Update indicator logic + unit + integration test: - -commit 83c9eca5e3ac85b014f31511cd156a81d2dbfd4e -Merge: f575e22f0 d559d4f24 -Author: Miles Reiter -Date: Thu Feb 29 20:19:47 2024 -0500 - - Merge branch 'develop' into sprint-92-summary - -commit 80ea628ce7c4545cfaede6b3049ad4f346c60c85 -Author: Eric Lipe -Date: Thu Feb 29 16:52:09 2024 -0700 - - - fix test - -commit 79f76a9941a6255173caf3e905ede51944972765 -Author: Eric Lipe -Date: Thu Feb 29 15:54:05 2024 -0700 - - - Update validator language - -commit 93ebb618a87b491aa4dab8ac26ff948365ad69dc -Author: Eric Lipe -Date: Thu Feb 29 14:54:57 2024 -0700 - - - Reverting out MOs branch since it was unnecessary - -commit 118743c4618ee2e05087a09d8b84a65e7c4b4dad -Author: Eric Lipe -Date: Thu Feb 29 14:33:39 2024 -0700 - - Revert "Revert "- Update language on case number preparser validator"" - - This reverts commit ed415e49bc68737f9b3b3c4ee5928b8c8559e1b9. - -commit cf682e68b691ce4b92f9d8e70cfaa987a9f42dee -Author: Eric Lipe -Date: Thu Feb 29 14:32:57 2024 -0700 - - Revert "Revert "- Update preparser validators to include record type"" - - This reverts commit 37244014c6331f1efd79c34bf36ba66adca52cae. - -commit 9c0d1382b0612bdd601f137cd9f26018b036632a -Author: Eric Lipe -Date: Thu Feb 29 14:28:47 2024 -0700 - - Revert "Merge branch '2799-catch-rpt-month-year-mismatches' of https://github.com/raft-tech/TANF-app into 2673-temp" - - This reverts commit 2b4e3c4f40d57fb25b926b04014c719366c944ac, reversing - changes made to dff31356ef40f87fc6b571c3c7f64be3a0a8534e. - -commit e92a3b18d2c6676be4dc6ff58db6086479fbb32f -Author: Eric Lipe -Date: Thu Feb 29 14:28:44 2024 -0700 - - Revert "- Fix tests" - - This reverts commit 9b7f5bef9c88f1c2f0c22622d90f7ccc5e16eb61. - -commit 7a182a20bfafa8e486686f2a2693a04932befa6f -Author: Eric Lipe -Date: Thu Feb 29 14:28:41 2024 -0700 - - Revert "- Fix validator" - - This reverts commit eb151897c6b22678e3df20c4d2769da1f334e94c. - -commit 99ed5ec3932709119f5de6b47243065f3da9175d -Author: Eric Lipe -Date: Thu Feb 29 14:28:39 2024 -0700 - - Revert "- Fixed tests" - - This reverts commit a42ff2b6fcfe409fe9b5ae88635d542757a53e56. - -commit 37244014c6331f1efd79c34bf36ba66adca52cae -Author: Eric Lipe -Date: Thu Feb 29 14:28:36 2024 -0700 - - Revert "- Update preparser validators to include record type" - - This reverts commit 17f0b9083a5215b5c3e2a95aa6ca0e01359f7115. - -commit ed415e49bc68737f9b3b3c4ee5928b8c8559e1b9 -Author: Eric Lipe -Date: Thu Feb 29 14:28:33 2024 -0700 - - Revert "- Update language on case number preparser validator" - - This reverts commit ce2d384ab014f6c176bef2b46d12c21984cf32c5. - -commit ce2d384ab014f6c176bef2b46d12c21984cf32c5 -Author: Eric Lipe -Date: Thu Feb 29 14:27:15 2024 -0700 - - - Update language on case number preparser validator - -commit 17f0b9083a5215b5c3e2a95aa6ca0e01359f7115 -Author: Eric Lipe -Date: Thu Feb 29 14:14:48 2024 -0700 - - - Update preparser validators to include record type - -commit a42ff2b6fcfe409fe9b5ae88635d542757a53e56 -Author: Eric Lipe -Date: Thu Feb 29 13:46:43 2024 -0700 - - - Fixed tests - -commit eb151897c6b22678e3df20c4d2769da1f334e94c -Author: Eric Lipe -Date: Thu Feb 29 13:38:31 2024 -0700 - - - Fix validator - -commit 9b7f5bef9c88f1c2f0c22622d90f7ccc5e16eb61 -Author: Eric Lipe -Date: Thu Feb 29 13:31:16 2024 -0700 - - - Fix tests - -commit 2b4e3c4f40d57fb25b926b04014c719366c944ac -Merge: dff31356e 8da16dc26 -Author: Eric Lipe -Date: Thu Feb 29 13:16:02 2024 -0700 - - Merge branch '2799-catch-rpt-month-year-mismatches' of https://github.com/raft-tech/TANF-app into 2673-temp - -commit 694decf548e4f8ee9a9fae6f0c77fbb738fe5d70 -Merge: b10073dee d559d4f24 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Feb 29 07:58:18 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit dff31356ef40f87fc6b571c3c7f64be3a0a8534e -Merge: c46158bfc d559d4f24 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Feb 29 07:57:52 2024 -0700 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit d559d4f24cd31d01be0dcfc419d58140eecacbfd -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Feb 29 07:47:41 2024 -0700 - - DB Backup Bug (#2853) - - * - pointing directly to the pg client directory - - * - Add lots of logging - - * - fix lint - - * - naming crontabs for easy understanding - - * - Removing log entries - - * - testing old method - - * - installing postgres client 15 - - * - print paths to see whats up - - * - fix lint - - * - remove all traces of postgres before installing new postgres - - * - disabling tests for speed - - * Revert "- remove all traces of postgres before installing new postgres" - - This reverts commit 76c4b9df5d823ea50f62516c5bf8d4278e914b09. - - * Revert "- fix lint" - - This reverts commit 27ff2db06b030fedcf09e52011486ef9df88c93f. - - * Revert "- installing postgres client 15" - - This reverts commit 2097d8dbd8ac9c1f5df21ecefc88dc9dd3bdc79c. - - * Revert "Revert "- fix lint"" - - This reverts commit 64c69075bb0119ce1dab98e7976de67b86c4cd92. - - * - Add correct client to apt.yml - - * - making tests even shorter - - * - trying clietn V14 - - * - removing from apt and installing manually - - * Revert "- removing from apt and installing manually" - - This reverts commit a2f94d3c406384b3ab10eecc3d09ab6c71c228fc. - - * - revert - - * - Version 12 in apt.yml - - Tell terraform to specify db version - - * - escaping quotes - - * - forcing db name - - * Revert "- forcing db name" - - This reverts commit b6069339e916cc98d20ab3d83c5c32a10fe47d6f. - - * - logging - - every 5 min - - * - more logging - - * - Cleanup debug code - - update tf environments to force version 12 of pg server - - * - Fix lint - - * - Adding back client search if hardcoded path doesn't exist - - * - fix syntax error - - * - fix lint - - * - remove extra slash - - * - Adding log entries to backup task - - * - Moving DB task to it's own file - - * - fix lint - - * - Seperate out email tasks - - update crontabs - - * - update tests - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit c46158bfcf5e69236992bd055b5c26ac551f5776 -Merge: c91cac7a4 c8d0934e0 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Feb 28 15:43:10 2024 -0700 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit b10073dee1be36df164fd98fb50d6f55d5d1db82 -Merge: bd8939efb c8d0934e0 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Feb 28 15:42:49 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit 356156e4ac2a6dd13d86a561d2ccb2d6470141da -Merge: 87440918a c8d0934e0 -Author: Miles Reiter -Date: Wed Feb 28 17:06:51 2024 -0500 - - Merge branch 'develop' into sprint-93-summary - -commit 87440918a496b607015bbe68c460ce1663c1f033 -Author: Miles Reiter -Date: Wed Feb 28 17:05:08 2024 -0500 - - Update sprint-93-summary.md - -commit f575e22f01a6f0e92acebb158317ac9becdf4205 -Author: Miles Reiter -Date: Wed Feb 28 16:52:53 2024 -0500 - - Update sprint-92-summary.md - -commit 02b9ccdfbd5e7d70671418e0c9c2d0758cc9cd45 -Merge: 74a967119 c8d0934e0 -Author: Miles Reiter -Date: Wed Feb 28 16:39:02 2024 -0500 - - Merge branch 'develop' into sprint-92-summary - -commit 74a96711905b1c5af5c2619ca25824001073634a -Author: Miles Reiter -Date: Wed Feb 28 16:38:50 2024 -0500 - - Update sprint-92-summary.md - -commit c8d0934e0d3b85ff587dfa0740e744ee8faed08f -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Feb 28 12:00:19 2024 -0500 - - Feat/2646 total errors aggregates (#2800) - - * total_errors_by_month aggregator - - * impl total_errors aggregator - - * submission history component structure - - * total errors frontend impl - - * add section 3/4 aggregates to tests - - * lint - - * fix null coalescing - - * fix+add aggregates tests - - * add tribal tests, positive case test - - * remove unused code from total_errors aggregate func - - * remove unnecessary saves - - * move total_errors to aggregates.py - - * extra blank line - - * undo formatter changes - - * extra space - - * make the query more efficient - - * rm unused code - - * fix error report url - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 625d0cec70dddc42b5ed57a1453ff53194969691 -Author: Jan Timpe -Date: Tue Feb 27 15:09:55 2024 -0500 - - use __generate_and_add_error - -commit bd8939efb272ef6663a879369ceb9bc2ac356340 -Author: Eric Lipe -Date: Tue Feb 27 12:01:04 2024 -0700 - - - doc string update - -commit 81dbcba8dc2a8cda43b4de790f321a2cf99ee6ec -Author: Eric Lipe -Date: Tue Feb 27 12:00:06 2024 -0700 - - - Move month generation to transform_to_months - -commit b40f41be722476272498bc27330944b3cd12e79a -Author: Miles Reiter -Date: Tue Feb 27 12:21:04 2024 -0500 - - Update sprint-93-summary.md - -commit de855604c87442f38426ec95a88ca1f8a805fd27 -Author: Miles Reiter -Date: Tue Feb 27 12:20:27 2024 -0500 - - Update sprint-93-summary.md - -commit 7ad90a4d460716af3e30c5e7c68ad5e482a0bdc7 -Author: Jan Timpe -Date: Tue Feb 27 09:20:40 2024 -0500 - - fix parse tests - -commit 44b2d5dc07fbc721ed7fd40cbc144872e8e49c3f -Author: Miles Reiter -Date: Tue Feb 27 00:49:35 2024 -0500 - - Create sprint-93-summary.md - -commit b5aaa117d412f13c989b2db869e1cc5058fe4c47 -Author: Jan Timpe -Date: Mon Feb 26 20:21:42 2024 -0500 - - add __ - -commit bda0191394871e80544cc46169d717ada035f495 -Author: Jan Timpe -Date: Mon Feb 26 20:17:38 2024 -0500 - - add s2 tests + clean up - -commit ca3b34b2c88355d05537bec8c39cde2de4baf039 -Author: Jan Timpe -Date: Mon Feb 26 18:09:16 2024 -0500 - - fix test - -commit 8177030a971c8a76fb4fcf4ec166abe21c050db2 -Author: Jan Timpe -Date: Mon Feb 26 18:07:24 2024 -0500 - - make section 1 program-type independent, add section 2 - -commit 02edd7877951e8f9e07b9b8ab46e14d0bb9fc933 -Author: Miles Reiter -Date: Mon Feb 26 16:38:04 2024 -0500 - - Create sprint-92-summary.md - -commit ce433a6cef5c7980c912c430460fb2bf3369f482 -Merge: 544e78a74 06193297d -Author: Eric Lipe -Date: Mon Feb 26 14:06:22 2024 -0700 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design - -commit c91cac7a446a1151aa971a01193284b6c26153ab -Merge: f29557e30 06193297d -Author: Eric Lipe -Date: Mon Feb 26 14:05:38 2024 -0700 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup - -commit 847ef589af6552696546b18a5021fb103a32e24b -Author: Jan Timpe -Date: Mon Feb 26 15:38:19 2024 -0500 - - make section 1 program-type independent - -commit 06193297ddff2ce93e37f3ddc11c76ed81febe59 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Feb 26 10:44:21 2024 -0500 - - Handle elastic BulkIndexException in bulk_create_records (#2835) - - * handle elastic BulkIndexException in bulk_create_records - - * lint - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 739200360ee4870b77bf5ee3b373d97378b1c755 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Feb 26 10:28:13 2024 -0500 - - Fix api privilege escalation (pentesting findings) (#2837) - - * make is_staff, is_superuser read-only - - * rm unused pk from endpoints - - * make fields readonly in profile serializer - - * enable swagger to run locally - - * make non-required fields read-only - - * remove unused set_profile endpoint - - * lint - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 3e26c08b8ca7050bae572ffaac68c0d8add76448 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Feb 26 10:15:57 2024 -0500 - - Fix Insecure Direct Object Reference in parser error report download (pentest findings) (#2841) - - * move xlsx serialization to datafiles serializers - - * create new parser error download endpoint under datafiles viewset - - * move xlsx serializer to utils - - * move tests to test_api - - * rm unneeded code - - * rm comments - - * rm blank lines - - * fix test - - * fix lint - - * lint - - * removed unused datafilesummary viewset - - * missed a ref - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit f29557e30ad2fca6eebcc476147297edb244ebad -Merge: 985720229 419cf089e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 26 08:19:06 2024 -0500 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit 419cf089efaef834142f4219f14a8a92dacb8c2b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Feb 22 14:37:51 2024 -0500 - - Feat/2768 zap pipeline (#2828) - - * can we just remove return code? - - * hijacking github workflow to get owasp triggered in pipeline - - * attempting to trigger a zap scan #2 - - * whitespace change to re-trigger - - * testing per office hours feedback - - * cf org param added - - * hard-coding org value - - * underscore - - * no hardcode - - * testing - - * debugging b/c this worked manually - - * simple return or return a response code? - - * Returning response. Need to trigger against raft env - - * hardcoding envs - - * syntax err on type - - * reverting jobs and workflows to not right nightly - - * helps to commit workflows too - - * missed these flags for owasp - - * This needs a string to operate on - - * cleaning up debugging cmd - - --------- - - Co-authored-by: andrew-jameson - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit aaf4c226209c8fbf6952f37557750b6fa1e7d884 -Author: Jan Timpe -Date: Wed Feb 21 18:31:18 2024 -0500 - - implement records_are_related cat4 validator + tests - -commit 544e78a744f4206f9d9927bb0928b03ae3e3172a -Merge: 821ae1061 382c85670 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Feb 21 12:43:41 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit 985720229b600c950c10b0e8ff2de35e0f7bd190 -Merge: d1d4e83a9 382c85670 -Author: Eric Lipe -Date: Wed Feb 21 12:00:01 2024 -0700 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2673-cat1-cleanup - -commit 382c856707ad91e6c58c358d19640a61dcf05778 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Feb 21 12:30:37 2024 -0500 - - Fix XSS vulnerability (pentest findings) (#2836) - - * add escapeHtml util - - * impl escapeHtml when rendering file names un-safely - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit ae6894e7e621c04990b9f308b470564603960fbb -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Feb 20 14:18:30 2024 -0500 - - Update Failed-Deployment-Troubleshooting.md (#2855) - - * Update Failed-Deployment-Troubleshooting.md - - * Update Failed-Deployment-Troubleshooting.md - -commit 821ae10616c4dcdf94e67808bc4e5898d4351343 -Merge: 67528c52b 44d6913cb -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Feb 20 08:05:20 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit 44d6913cb014e9b6c1d1365b79bbe42cc1505cc7 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Feb 20 07:41:21 2024 -0700 - - SSN Cat2 Updates (#2829) - - * - Updated all cat2 SSN validators to allow all 1's through 9's - - Fixed datafile that had encrypted SSN values - - * - Remove redundent length validator - - * - remove debug line - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 81598f8eb871cb48e2feb1fe1267cce5a2e2eae0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Feb 20 09:28:30 2024 -0500 - - Feat/2813 reduce dev env (#2827) - - * Deletions from global search, need manual intervention in github/circleci cfg - - * Updated diagram - - * removing documentation references to sandbox env - - * Updating png, forgot to export. - - --------- - - Co-authored-by: andrew-jameson - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 9b62b1cd5da401c5dce0135805b3ef8c2ce51a27 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Feb 16 07:43:55 2024 -0700 - - Case Number Validators (#2834) - - * - Updated case number validators to accept any characters and only throw error on values of all spaces - - * - Add preparser check for case number - - * - fixed tests - - * - fix lint - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 67528c52b9b4688c335108951d9295318e56ab67 -Merge: 3bc68c4b0 250342889 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Feb 15 15:26:02 2024 -0700 - - Merge branch 'develop' into 2536-cat4-design - -commit d1d4e83a9d8840b4236190357640e41a00fc2fa5 -Merge: 36c9b56d5 250342889 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Feb 15 15:25:36 2024 -0700 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit 8da16dc266b12b1cedc5855d5484c19029ac46c6 -Author: Mo Sohani -Date: Thu Feb 15 13:34:57 2024 -0500 - - fixing failing tests - -commit 25034288966972780c8d6b19962fa1b3548d240d -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Feb 15 11:01:29 2024 -0700 - - Kibana Deployment (#2805) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * 2599-added friendly name to postparsing validators - - * refining the validator tests - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * listing - - * added m6 - - * lint - - * corrected new line break - - * refactored validator logic - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Added Kibana config - - * friendly_name corrections - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - Added basic security to Kibana/Elastic - - Added setup container to init elastic users, roles, and passwords - - * - Remove debug code - - * - change provider name - - * - Updating settings to reference environment variables - - * - Add elastic dependency - - * - Fix network issue - - * - Added bulk creation of elastic indices - - * - Updated schemas to reference model based off of elastic document - - * - Remove password auth from elastic/kibana - - * - Remove password auth - - * - Fix tests - - * - Fix lint - - * - remove debug print - - * Changes for fully local development - - Enables direct frontend/backend communication sans Login.gov/Cloud.gov - - Drives off new DEVELOPMENT env var - - Pre-configures and disables frontend auth functionality - - Testing based on new dev user - - Install via web: ./manage.py generate_dev_user - - * Reorganized front end logic on REACT_APP_DEVAUTH env var - - * Reorganized backend logic on REACT_APP_DEVAUTH env var - - * - Added proof on concept for tdp based kibana auth - - * - Fixing type issue - - * added is_superuser and is_staff attrs to dev user - - * - Add group check - - * - Add frontend group check for kibana - - * - fix lint - - * - Fix lint errors - - * - Fix doc strings - - * - Adding authenticated permission - - * - Renaming variables to clarify things - - * - fix lint - - * Revert "- Remove password auth from elastic/kibana" - - This reverts commit 522ca381651e005e35701d51b94e6cf4d78c011a. - - * - Setting up anonymous users with kibana_admin privileges - - * - Adding password to settings in cloud.gov - - * - remove incorrect auth - - use admin only in frontend and backend - - * - Add elastic profile - - * DevAuth feature redesign inspired by Cypress - - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} - - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user - - Modified CustomAuthentication.authenticate to handle both known use cases - - Added stt_id=31 to the initial dev user - - Disabled ES disk threshold checking for local dev which blocked ES startup - - Removed DevAuthentication and other now unnecessary code - - * Fixed CustomAuthentication.authenticate return val for login.py use case - - * Fixed CustomAuthentication.authenticate logging for login.py use case - - * Removed unneeded permissions import - - * Updates to REACT_APP_DEVAUTH env var settings - - Enabled with an email address value - - Disabled by default - - * - debugging env vars - - * - Testing what settings are used - - * Revert "- debugging env vars" - - This reverts commit 900efa879e8cb33f0c62140ed4d8e9a1e1b5496a. - - * Revert "- Testing what settings are used" - - This reverts commit 784530e49d584db5bda89714a7de4f56c3ee805e. - - * - debugging env vars again - - * - Switching to container networking - - * Restored support for CustomAuthentication.authenticate username keyword - - * Modified CustomAuthentication.authenticate comment to satisfy flake8 - - * commit - - * asdfgvasd - - * Revert "Modified CustomAuthentication.authenticate comment to satisfy flake8" - - This reverts commit 761e4eb253d366ef742dd8caf94b6220ed9e81a1. - - * Revert "Restored support for CustomAuthentication.authenticate username keyword" - - This reverts commit 4bf895722e356e79b8bbe3674361b90888b91752. - - * Revert "Updates to REACT_APP_DEVAUTH env var settings" - - This reverts commit 7fc2a09353804fb728852e9accc041dff08e44e3. - - * Revert "Removed unneeded permissions import" - - This reverts commit c18383fe2bf8352c50dd84d2a84408fef2b71367. - - * Revert "Fixed CustomAuthentication.authenticate logging for login.py use case" - - This reverts commit 2b9b46f0e719638b320d0a7bbb2bd87eda97eeef. - - * Revert "Fixed CustomAuthentication.authenticate return val for login.py use case" - - This reverts commit 97a0cf6995dc17937f083d5efde1d74866c01ff4. - - * Revert "DevAuth feature redesign inspired by Cypress" - - This reverts commit 1497d4ab7549bf674e1f71d8f8f039ec7de363bf. - - * Revert "commit" - - This reverts commit a284856c66cb2caaca4b471c2f81fc39421e8f00. - - * Revert "added is_superuser and is_staff attrs to dev user" - - This reverts commit 6ffbee8f588f12b7595abd7adcfe15ad7e70d11b. - - * Revert "Reorganized backend logic on REACT_APP_DEVAUTH env var" - - This reverts commit 7fd7b4d48cd30a7e2c142ea7f1d85f8df95b80d8. - - * Revert "Reorganized front end logic on REACT_APP_DEVAUTH env var" - - This reverts commit 32a46713ae102fa15fdab0fcb66fca99b42eb7e2. - - * Revert "Changes for fully local development" - - This reverts commit 556221b310b73bee5e9af32eb4cd603b61a25d02. - - * asdf - - * - Adding integration tests for elastic bulk doc creation - - * Revert "asdf" - - This reverts commit 26455b48582ca9c6d986377e56475644525f7665. - - * - fix lint - - * fasdf - - * - Failed buildpack deploy. Commiting for history - - * - Updating manifests to deploy proxy and kibana - - * - Adding working manifests for kibana and proxy - - * - moving manifest to its own directory - - * - Updating backend deployment to include kibana and proxy for circi deploys - - * - remove port - - * - allowing manifest - - * - Update kibana and proxy hostnames - - * - adding debug - - * - Updating schemas - - * - Fix mispelling - - * - inplace update - - * - Fixing var names - - * - remove unset - - Add set-env for proxy - - * - parametrizing proxy host name for kibana - - * - Adding debug logging to see whats up - - * - fix lint - - * - adding kibana to deployed nginx conf - - * - Added usage of document to tribal - - * - making url public for the time being to allow redirect - - * - testing 2GB again - - * - making stt searchable - - update proxy mem limits - - * - back to internal route - - * - pushing temp changes for now - - * - adding extra setting - - * - pushing changes - - * - removing secondary proxy - - * - nginx auth - - * - Updated to allow nginx auth proxy for kibana - - * - adding back headers - - * - Undoing temp changes - - * - Updating to support cloud.gov deploy - - * - Fixing warnings - - * - fix env var - - * - Add netpol to allow kibana to talk to frontend - - * - Adding env vars for kibana - - * - fixing env var name - - * - remove host as test - - remove invalid params from search indices - - * - remover server host param - - * - remove request limiter - - * - Adding unsafe-inline - - * - Updating to use path based env vars - - * - whitelisting kibana in CSP - - * - converting back to env vars only - - * - adding unsafe eval - - * - Updated based on feedback - - * - Fixing error - - * - Updating local docker image to match deployed image - - * - Removing elastic setup as it is irrelevant now - - * - Updating frontend to only allow access to kibana sitemap if the user is Dev or Sys Admin - - * - fix lint - - * - remove unnecessary nginx settings - - * - Updated Kibana tab/link to only display when user is HHS AMS authenticated - - Added environment variable to show the tab/link for dev purposes - - * - Commenting env var to default to correct behavior in any environment - - * - update frontend memory quota - - * - Add resolver to nginx to avoid ip address change on app restart - - * - Add dns fix for clamav - - * - OFA sys admin only - - * - Testing dns resolution - - * - Fix merge conflict that was causing incorrect routing to kibana locally - - * - Updated to be boolean - - * - Remove merge conflict - - * - fix var - - * Revert "- Testing dns resolution" - - This reverts commit 84aac744fd999752d3dea8c91c9dcf3b9b3173bc. - - * - removing unnecessary setting - - * - Renaming var to capture its use better - - * - Keeping var commented out - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Thomas Tignor - Co-authored-by: Thomas Tignor - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 3bc68c4b0fe448dbe4a8174a8b29e087f0744097 -Author: Eric Lipe -Date: Thu Feb 15 08:41:50 2024 -0700 - - - avoid duplicate error generation when storing cat4 errors - -commit 386c9a78cb0699c0a390ff613be705a56697987d -Author: Eric Lipe -Date: Thu Feb 15 08:32:25 2024 -0700 - - - fix lint - -commit ea9d9498e81c9e74cb54eb81dcd4a0dedc1aee10 -Author: Eric Lipe -Date: Thu Feb 15 08:17:00 2024 -0700 - - - Updated based on feedback - -commit 36c9b56d5497c5b6bec2222d98a390f3df807672 -Merge: 8be848ea1 e06fba6f7 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Feb 14 16:02:19 2024 -0700 - - Merge branch 'develop' into 2673-cat1-cleanup - -commit 828abb8d71d044ad4a4a3dc5c363a569d5811fea -Author: Eric Lipe -Date: Wed Feb 14 15:47:01 2024 -0700 - - - Updated based on feedback - -commit 791e78b5c1899badd806402806ffa8c98f59fa02 -Merge: 86e5c85b3 e06fba6f7 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Feb 14 11:39:24 2024 -0500 - - Merge branch 'develop' into 2799-catch-rpt-month-year-mismatches - -commit 8be848ea11447f4365e0145a4819bd71e4f5d95e -Author: Eric Lipe -Date: Wed Feb 14 09:29:18 2024 -0700 - - - Made var a bool instead of string - - Setting it with dockerfile - -commit e06fba6f7d4cc5433b0cb01a5f0a132521694bc2 -Author: Miles Reiter -Date: Tue Feb 13 14:05:20 2024 -0500 - - Accessibility Guide (#2832) - - * Delete rafts-accessibility-dos-and-donts.md - - * Update README.md - - * Create accessibility-guide.md - - * Update accessibility-guide.md - - Cleans up some inline link markup - - * Update accessibility-guide.md - -commit c9c0c7437d2c6797884bff6ac0b71f0e37fd295f -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Feb 12 13:31:30 2024 -0700 - - Proof of Concept TDP Based Kibana Auth (#2775) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * 2599-added friendly name to postparsing validators - - * refining the validator tests - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * listing - - * added m6 - - * lint - - * corrected new line break - - * refactored validator logic - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Added Kibana config - - * friendly_name corrections - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - Added basic security to Kibana/Elastic - - Added setup container to init elastic users, roles, and passwords - - * - Remove debug code - - * - change provider name - - * - Updating settings to reference environment variables - - * - Add elastic dependency - - * - Fix network issue - - * - Added bulk creation of elastic indices - - * - Updated schemas to reference model based off of elastic document - - * - Remove password auth from elastic/kibana - - * - Remove password auth - - * - Fix tests - - * - Fix lint - - * - remove debug print - - * Changes for fully local development - - Enables direct frontend/backend communication sans Login.gov/Cloud.gov - - Drives off new DEVELOPMENT env var - - Pre-configures and disables frontend auth functionality - - Testing based on new dev user - - Install via web: ./manage.py generate_dev_user - - * Reorganized front end logic on REACT_APP_DEVAUTH env var - - * Reorganized backend logic on REACT_APP_DEVAUTH env var - - * - Added proof on concept for tdp based kibana auth - - * - Fixing type issue - - * added is_superuser and is_staff attrs to dev user - - * - Add group check - - * - Add frontend group check for kibana - - * - fix lint - - * - Fix lint errors - - * - Fix doc strings - - * - Adding authenticated permission - - * - Renaming variables to clarify things - - * - fix lint - - * Revert "- Remove password auth from elastic/kibana" - - This reverts commit 522ca381651e005e35701d51b94e6cf4d78c011a. - - * - Setting up anonymous users with kibana_admin privileges - - * - Adding password to settings in cloud.gov - - * - remove incorrect auth - - use admin only in frontend and backend - - * - Add elastic profile - - * DevAuth feature redesign inspired by Cypress - - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} - - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user - - Modified CustomAuthentication.authenticate to handle both known use cases - - Added stt_id=31 to the initial dev user - - Disabled ES disk threshold checking for local dev which blocked ES startup - - Removed DevAuthentication and other now unnecessary code - - * Fixed CustomAuthentication.authenticate return val for login.py use case - - * Fixed CustomAuthentication.authenticate logging for login.py use case - - * Removed unneeded permissions import - - * Updates to REACT_APP_DEVAUTH env var settings - - Enabled with an email address value - - Disabled by default - - * - debugging env vars - - * - Testing what settings are used - - * Revert "- debugging env vars" - - This reverts commit 900efa879e8cb33f0c62140ed4d8e9a1e1b5496a. - - * Revert "- Testing what settings are used" - - This reverts commit 784530e49d584db5bda89714a7de4f56c3ee805e. - - * - debugging env vars again - - * - Switching to container networking - - * Restored support for CustomAuthentication.authenticate username keyword - - * Modified CustomAuthentication.authenticate comment to satisfy flake8 - - * commit - - * asdfgvasd - - * Revert "Modified CustomAuthentication.authenticate comment to satisfy flake8" - - This reverts commit 761e4eb253d366ef742dd8caf94b6220ed9e81a1. - - * Revert "Restored support for CustomAuthentication.authenticate username keyword" - - This reverts commit 4bf895722e356e79b8bbe3674361b90888b91752. - - * Revert "Updates to REACT_APP_DEVAUTH env var settings" - - This reverts commit 7fc2a09353804fb728852e9accc041dff08e44e3. - - * Revert "Removed unneeded permissions import" - - This reverts commit c18383fe2bf8352c50dd84d2a84408fef2b71367. - - * Revert "Fixed CustomAuthentication.authenticate logging for login.py use case" - - This reverts commit 2b9b46f0e719638b320d0a7bbb2bd87eda97eeef. - - * Revert "Fixed CustomAuthentication.authenticate return val for login.py use case" - - This reverts commit 97a0cf6995dc17937f083d5efde1d74866c01ff4. - - * Revert "DevAuth feature redesign inspired by Cypress" - - This reverts commit 1497d4ab7549bf674e1f71d8f8f039ec7de363bf. - - * Revert "commit" - - This reverts commit a284856c66cb2caaca4b471c2f81fc39421e8f00. - - * Revert "added is_superuser and is_staff attrs to dev user" - - This reverts commit 6ffbee8f588f12b7595abd7adcfe15ad7e70d11b. - - * Revert "Reorganized backend logic on REACT_APP_DEVAUTH env var" - - This reverts commit 7fd7b4d48cd30a7e2c142ea7f1d85f8df95b80d8. - - * Revert "Reorganized front end logic on REACT_APP_DEVAUTH env var" - - This reverts commit 32a46713ae102fa15fdab0fcb66fca99b42eb7e2. - - * Revert "Changes for fully local development" - - This reverts commit 556221b310b73bee5e9af32eb4cd603b61a25d02. - - * asdf - - * - Adding integration tests for elastic bulk doc creation - - * Revert "asdf" - - This reverts commit 26455b48582ca9c6d986377e56475644525f7665. - - * - fix lint - - * fasdf - - * - Added usage of document to tribal - - * - Updated based on feedback - - * - Fixing error - - * - Updating frontend to only allow access to kibana sitemap if the user is Dev or Sys Admin - - * - fix lint - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Thomas Tignor - Co-authored-by: Thomas Tignor - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit eecad702171d187c6626984b7661254eee1c4cf9 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Feb 12 14:31:49 2024 -0500 - - 2781-django migration best practices (#2783) - - * added new markdown for migration best practices - - * Naming and data migration - - * added useful commands - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 6b7b7717d588c067cb0a2604f8680bf028490a9a -Author: Eric Lipe -Date: Mon Feb 12 08:17:03 2024 -0700 - - - Fix lint errors - -commit 0d15d594257a23d2db33e9ac7d6f9bfaf47bf8a4 -Author: Eric Lipe -Date: Fri Feb 9 15:19:45 2024 -0700 - - - Fixed test - -commit d316686cdff3b96d53737b2e2899ba8375476281 -Author: Eric Lipe -Date: Fri Feb 9 15:08:17 2024 -0700 - - - updated tests to turn on trailer errors - - updated test error messages - -commit 6efa24fcafe013be1c1fa692d38b2650d2ffc8ce -Author: Eric Lipe -Date: Fri Feb 9 14:25:52 2024 -0700 - - - Updated validators to match Errors Audit language - - Parametrized startsWith - -commit e465eea70d1a8b1f66f03568c21128b588425674 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Fri Feb 9 07:13:23 2024 -0800 - - Create sprint-91-summary.md (#2830) - - Sprint 91 summary - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 86e5c85b321d848ca654c15dbf8f841a2586146f -Author: Mo Sohani -Date: Sat Feb 3 08:12:30 2024 -0500 - - added field validator to all submission - -commit 328a2665014cd26c1999a1d9ab9eeb11cd67f25c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Feb 2 14:12:00 2024 -0500 - - can we just remove return code? (#2831) - - Co-authored-by: andrew-jameson - -commit e5913f56ef47cc644624e791cbe9a756ffbbeb67 -Merge: 4b5778ad1 434d603e1 -Author: Eric Lipe -Date: Fri Feb 2 10:04:12 2024 -0700 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into 2536-cat4-design - -commit 3e7dd740c1f6bd6e87dd5fa358eed600e4118e3c -Author: Mo Sohani -Date: Fri Feb 2 09:55:32 2024 -0500 - - linting - -commit 434d603e15e2fa35f28e2a1c2bc89bd69b26be0b -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Jan 31 10:40:32 2024 -0500 - - 2751 the resource cards updated with the latest coding instructions (#2819) - - * updated the link for ACF-199 - - * updated the test - - * linting - -commit 4b5778ad1c8b4f4af980e76b41e34d31d4c3cab1 -Author: Eric Lipe -Date: Tue Jan 30 11:19:19 2024 -0700 - - - fix lint - -commit 128b8625f0864723f91933e2e4509605da5d5e74 -Author: Eric Lipe -Date: Tue Jan 30 10:58:46 2024 -0700 - - - updating line value to None for cat4 errors - -commit e83b0b9e2a30eada81454b12f1094c661f7034a5 -Author: Eric Lipe -Date: Tue Jan 30 10:41:29 2024 -0700 - - - Extra log message to track meta fields - -commit 6e97396898969e29e1ff450d7372d25f2721deb9 -Author: Eric Lipe -Date: Tue Jan 30 10:38:45 2024 -0700 - - - Added useful logging and meta fields - - Added new test for record adding and validation logic - -commit 357cfb736ec8f475a95cd8c01279468d491e8fbc -Author: Mo Sohani -Date: Tue Jan 30 12:10:08 2024 -0500 - - solving failing tests - -commit 1b9391d2a785bbb4de60c1790dff637404188178 -Author: Eric Lipe -Date: Tue Jan 30 09:14:22 2024 -0700 - - - updating name to make things more clear - -commit 9960c6f3a6f53224b021a62a3cb00c7fd5556482 -Author: Eric Lipe -Date: Tue Jan 30 09:07:08 2024 -0700 - - - remove logging hack - -commit 1ef5ae1f663060e2c49350e4f0471c400276b453 -Author: Eric Lipe -Date: Tue Jan 30 08:08:43 2024 -0700 - - - Fix lint errors - -commit e6bd3071c8c33de762ed425817869fe687638799 -Author: Eric Lipe -Date: Mon Jan 29 14:37:13 2024 -0700 - - - Added fix for big file parsing - -commit 0c95cf94f3c90b8452e2d11b90c84bfdc2135459 -Author: Eric Lipe -Date: Mon Jan 29 12:49:29 2024 -0700 - - - Updated so that test_parse passes - - Updated class to only validate for S1 and S2 - -commit d1dfc47ef7058a1cf302f704e63f38334470b880 -Author: Eric Lipe -Date: Mon Jan 29 12:08:53 2024 -0700 - - - Renamed class - - Added more flushed out unit tests - - Added error count tracking in class for unit tests - -commit d21c65061acc90374e9a0d771214ec2b59628bd4 -Author: Mo Sohani -Date: Mon Jan 29 13:54:28 2024 -0500 - - corrected tests, need to stop parsing if pre-validator error - -commit 44b04099ea548979dd1d92bdfdadb99516119d68 -Author: Mo Sohani -Date: Mon Jan 29 12:37:29 2024 -0500 - - tests failing but the preparsing error works - -commit 1c8fb57217c46807a26dffd4fb7c37b674805ad7 -Author: Mo Sohani -Date: Fri Jan 26 09:36:44 2024 -0500 - - resolve issues with moving util file - -commit 4178469cbf75a6ec2ac1a92dea135d96d4627b53 -Author: Mo Sohani -Date: Fri Jan 26 09:05:41 2024 -0500 - - added base for testing the validator - -commit 62625cf8cc446ff3311172cb09c2c97028ecef3d -Author: Eric Lipe -Date: Thu Jan 25 15:13:49 2024 -0700 - - - Fix case_number logic - -commit 08faeb96b92ad0e64d55dd9bf5f6fd85c98291b9 -Author: Eric Lipe -Date: Thu Jan 25 14:21:02 2024 -0700 - - - Added parser errors - -commit f01378e6d679b808e33f571002ed3cc2afc75331 -Author: Eric Lipe -Date: Thu Jan 25 12:45:30 2024 -0700 - - - Move class to validators - - add checks for section and program type on validators - -commit 7791df5205f43bb67607f75eb2bccff35308b1d7 -Author: Eric Lipe -Date: Thu Jan 25 12:20:59 2024 -0700 - - - cat4 cache class - -commit 909a39cb07b827036dd35acdf7d464ec8b66c686 -Author: Mo Sohani -Date: Tue Jan 23 09:10:04 2024 -0500 - - correct .util - -commit 57ef70555eec71c384f541b181522971827e33f2 -Merge: 65dae3bf1 92b0a6947 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Jan 23 08:57:13 2024 -0500 - - Merge branch 'develop' into 2799-catch-rpt-month-year-mismatches - -commit 92b0a6947d75088cfa55ccaad2fe12d800bfd846 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Jan 22 09:37:18 2024 -0500 - - 2711-catch-rpt-month-year-mismatches (#2789) - - * created pre-check error - - * corrected some of failing tests - - * corrected failing tests - - * two tests still failing - - * Passing tests - - * Update small_incorrect_file_cross_validator.txt - - * Update small_incorrect_file_cross_validator.txt - - * Update small_incorrect_file_cross_validator.txt - - * Update small_incorrect_file_cross_validator.txt - - * revert changes on test file - - * corrected the failing test - - * resolve circular import - - * merge conflict resolution - - * linting - - * correct failing tests - - * corrected t7 tests - -commit 65dae3bf147b0c67a92c7ef1cf20c297eef01851 -Author: Mo Sohani -Date: Fri Jan 19 14:32:25 2024 -0500 - - getting the reporting month - -commit 0c4f3d2a895f8d5ec7fb9073cec866b0368d529d -Author: Mo Sohani -Date: Fri Jan 19 09:29:07 2024 -0500 - - tep changes - -commit 175e903732ffc6cd11b76a6b8eb02087d364e4dd -Author: Mo Sohani -Date: Thu Jan 18 15:34:43 2024 -0500 - - remove old changes - -commit cc10cffd814b83f0ceba1ed815a4a25a583f8e77 -Merge: e7554d6f9 cd2bf6223 -Author: Mo Sohani -Date: Thu Jan 18 15:29:36 2024 -0500 - - Merge branch '2799-catch-rpt-month-year-mismatches' of github.com:raft-tech/TANF-app into 2799-catch-rpt-month-year-mismatches - -commit e7554d6f98e628f25b2032e4a336e5a64d255677 -Author: Mo Sohani -Date: Thu Jan 18 15:29:13 2024 -0500 - - first changes - -commit cd2bf622309775ccd41c7189b0f58621153fdf63 -Merge: 620bd2247 d5a44ffcf -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu Jan 18 15:28:21 2024 -0500 - - Merge branch 'develop' into 2799-catch-rpt-month-year-mismatches - -commit d5a44ffcfe17a4f3c2d375bc75a0a6b1c2ecb939 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Jan 18 08:28:23 2024 -0700 - - Elastic Bulk Document Creation (#2772) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * 2599-added friendly name to postparsing validators - - * refining the validator tests - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * listing - - * added m6 - - * lint - - * corrected new line break - - * refactored validator logic - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Added Kibana config - - * friendly_name corrections - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - Added basic security to Kibana/Elastic - - Added setup container to init elastic users, roles, and passwords - - * - Remove debug code - - * - change provider name - - * - Updating settings to reference environment variables - - * - Add elastic dependency - - * - Fix network issue - - * - Added bulk creation of elastic indices - - * - Updated schemas to reference model based off of elastic document - - * - Remove password auth from elastic/kibana - - * - Fix tests - - * - Fix lint - - * - remove debug print - - * Changes for fully local development - - Enables direct frontend/backend communication sans Login.gov/Cloud.gov - - Drives off new DEVELOPMENT env var - - Pre-configures and disables frontend auth functionality - - Testing based on new dev user - - Install via web: ./manage.py generate_dev_user - - * Reorganized front end logic on REACT_APP_DEVAUTH env var - - * Reorganized backend logic on REACT_APP_DEVAUTH env var - - * added is_superuser and is_staff attrs to dev user - - * - Fix lint errors - - * - Renaming variables to clarify things - - * - fix lint - - * DevAuth feature redesign inspired by Cypress - - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} - - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user - - Modified CustomAuthentication.authenticate to handle both known use cases - - Added stt_id=31 to the initial dev user - - Disabled ES disk threshold checking for local dev which blocked ES startup - - Removed DevAuthentication and other now unnecessary code - - * Fixed CustomAuthentication.authenticate return val for login.py use case - - * Fixed CustomAuthentication.authenticate logging for login.py use case - - * Removed unneeded permissions import - - * Updates to REACT_APP_DEVAUTH env var settings - - Enabled with an email address value - - Disabled by default - - * Restored support for CustomAuthentication.authenticate username keyword - - * Modified CustomAuthentication.authenticate comment to satisfy flake8 - - * commit - - * Revert "Modified CustomAuthentication.authenticate comment to satisfy flake8" - - This reverts commit 761e4eb253d366ef742dd8caf94b6220ed9e81a1. - - * Revert "Restored support for CustomAuthentication.authenticate username keyword" - - This reverts commit 4bf895722e356e79b8bbe3674361b90888b91752. - - * Revert "Updates to REACT_APP_DEVAUTH env var settings" - - This reverts commit 7fc2a09353804fb728852e9accc041dff08e44e3. - - * Revert "Removed unneeded permissions import" - - This reverts commit c18383fe2bf8352c50dd84d2a84408fef2b71367. - - * Revert "Fixed CustomAuthentication.authenticate logging for login.py use case" - - This reverts commit 2b9b46f0e719638b320d0a7bbb2bd87eda97eeef. - - * Revert "Fixed CustomAuthentication.authenticate return val for login.py use case" - - This reverts commit 97a0cf6995dc17937f083d5efde1d74866c01ff4. - - * Revert "DevAuth feature redesign inspired by Cypress" - - This reverts commit 1497d4ab7549bf674e1f71d8f8f039ec7de363bf. - - * Revert "commit" - - This reverts commit a284856c66cb2caaca4b471c2f81fc39421e8f00. - - * Revert "added is_superuser and is_staff attrs to dev user" - - This reverts commit 6ffbee8f588f12b7595abd7adcfe15ad7e70d11b. - - * Revert "Reorganized backend logic on REACT_APP_DEVAUTH env var" - - This reverts commit 7fd7b4d48cd30a7e2c142ea7f1d85f8df95b80d8. - - * Revert "Reorganized front end logic on REACT_APP_DEVAUTH env var" - - This reverts commit 32a46713ae102fa15fdab0fcb66fca99b42eb7e2. - - * Revert "Changes for fully local development" - - This reverts commit 556221b310b73bee5e9af32eb4cd603b61a25d02. - - * asdf - - * - Adding integration tests for elastic bulk doc creation - - * Revert "asdf" - - This reverts commit 26455b48582ca9c6d986377e56475644525f7665. - - * - fix lint - - * fasdf - - * - Added usage of document to tribal - - * - Fixing error - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Thomas Tignor - Co-authored-by: Thomas Tignor - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit af10e1dc0a236d32e75687db45dc7894b15e8e39 -Merge: ea121aed3 ae0a5fcd1 -Author: Miles Reiter -Date: Wed Jan 17 15:25:54 2024 -0500 - - Merge pull request #2811 from raft-tech/sprint-90 - - Add Sprint 90 Summary - -commit ae0a5fcd1b8ca3158d74513745730c4cc091e06f -Author: Miles Reiter -Date: Tue Jan 16 10:57:24 2024 -0500 - - Create sprint-90-summary.md - -commit 620bd224764a1d2a50b02b2137c481932b5b5585 -Author: Mo Sohani -Date: Wed Jan 10 13:05:46 2024 -0500 - - corrected t7 tests - -commit e45cc626f25e802a6339bfb6f23bb219d9d57759 -Merge: 533b7e679 ea121aed3 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Jan 10 12:33:36 2024 -0500 - - Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches - -commit ea121aed3fd556cdca84b3d1999d0a63c1f29f3f -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Jan 10 10:08:48 2024 -0700 - - Elastic ADR Update (#2791) - - * - Added authentication risks - - * - Remove pricing info - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit d646eeff013b18069d4ab24c7d3b751cb5f4eeff -Author: George Hudson -Date: Wed Jan 10 08:59:13 2024 -0700 - - 2722/circleci (#2739) - - * reduced workflows from 3 deploys to 1 - - * fix spacing of nested 'steps:' - - * repaired logic for workflow - - * trying to get right format for conditional logic in job steps - - * fixed incorrect variable - - * adding default target_env instead of emptry string - - * reverting - - * fixed spacing - - * removed old requirement and updated for current jobs. - - * use this branch to check develop deploys - - * use this branch to check develop deploys - - * use this branch to check develop deploys - - * use this branch to check develop deploys - - * use this branch to check develop deploys - - * use this branch to check develop deploys - - * revert - - * revert - - * revert - - * removed check in jobs - - * updates site only for develop branch - - * removed deploy develop from github actions - - * fixed spacing - - * remove this branch from CI tracking - - * removed 2722/circleci branch references now that testing is done - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit b35795fc8788cf29cbb09de2accd513f43a2f897 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Jan 10 08:36:40 2024 -0700 - - Tribal Section 4 Parsing & Validation (#2762) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * - Added Tribal models, docs, admin refs - - Added support for tribal parsing - - * - Update t1 field validators - - * - t2/t3 field validators - - * 2599-added friendly name to postparsing validators - - * - Updated cat3 validators - - * - Updated how we detect tribe code - - * - Added error handling for inconsistent header info wrt tribe code - - Added new test - - * - Updated test - - * - Grammar fix - - Removed unused function - - * refining the validator tests - - * - Format with Black - - Add missing tests - - * - Fix lint - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * - Updated based on review feedback - - * - removing debug assert - - * - Fix lint - - * listing - - * - deconflicting migrations - - * - Fixing test - - * added m6 - - * lint - - * - Adding datafile - - * - Added support for parsing tribal t4/t5 - - Added test for t4/t5 parsing - - * - ADded cat2/cat3 validators - - * corrected new line break - - * - Update doc strings - - * - Fixed failing test - - * - Fix lint - - * refactored validator logic - - * - resolving conflict - - * - Fix lint errors - - * - Resolve conflict - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Renamed tribal files - - Updated to allow case aggregates - - Updated datafile to have a more convenient date range - - Updated tests to capture case aggregates - - * - Reduced file size - - Updated test - - * - Fix lint errors - - * - Added support for parsing and validating tribal t6 records - - * - Fix lint - - * - Added support for parsing/validating tribal t7 - - * - Fix lint - - * - Docstring fix - - * - Docstring fix - - * friendly_name corrections - - * - Adding friendly names to tribal - - * - Fixing typo - - * - Added friendly names - - * - Adding friendly names - - * - Adding friendly names - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - knowledge center - - * - Integrating Jans changes. Parametrizing values_is_empty - - * - Update based on review feedback - - * - Updated length checks - - * - removing fips code - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - update based on review - - * - Fix migration - - * - Fixed name clash on PARENT_MINOR_CHILD - - * - Fixed name clash on PARENT_MINOR_CHILD - - * - Cherry pick commit and remove test file - - * Revert "- Fixed name clash on PARENT_MINOR_CHILD" - - This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 1b17e39eec5a1da4a81634c19f3c32aef29c34f3 -Merge: 04de24550 6557594ad -Author: tptignor -Date: Tue Jan 9 20:35:51 2024 -0500 - - Merge pull request #2784 from raft-tech/local-devauth - - DEVAUTH - All-local devenv sans cloud or third-party auth workflows - -commit 6557594ad8b7f06a43e34ff585e687475c6bbf0e -Merge: 0ad143e6a 04de24550 -Author: tptignor -Date: Tue Jan 9 19:12:22 2024 -0500 - - Merge branch 'develop' into local-devauth - -commit 533b7e679a443a098c5c6f544b9b6612d5e18686 -Merge: 7dffa01d6 04de24550 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Jan 9 13:36:28 2024 -0500 - - Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches - -commit 7dffa01d6412cd66176160e0cdc680e37629d4b8 -Author: Mo Sohani -Date: Tue Jan 9 13:36:00 2024 -0500 - - correct failing tests - -commit 04de245500988c09f2791f6bcfcecf44f56a23c2 -Author: Miles Reiter -Date: Tue Jan 9 13:31:01 2024 -0500 - - Sprint 88 89 summaries (#2806) - - * Create sprint-88-summary.md - - * Create sprint-89-summary.md - -commit a86f810cde8793eb0e53d9898d2af1b8ba096cc2 -Merge: 5efd20378 a3c49d7cb -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Jan 9 09:43:24 2024 -0500 - - Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches - -commit 0ad143e6aa071ffc5a48936cc1007864c6cb904a -Merge: f72ec10f4 a3c49d7cb -Author: Thomas Tignor -Date: Tue Jan 9 08:25:27 2024 -0500 - - Merge branch 'develop' into local-devauth - Merging again with develop - -commit f72ec10f46a6703d55cf4b6b0f4f811121e78e91 -Author: Thomas Tignor -Date: Tue Jan 9 07:17:36 2024 -0500 - - Added CustomAuthentication.authenticate TODO and improved logging - -commit 6003e338f9a8802c695c7f7b6fbcbc154bdda168 -Author: Thomas Tignor -Date: Mon Jan 8 19:08:37 2024 -0500 - - Reverted changes to CustomAuthentication.authenticate - -commit a3c49d7cbb8b462fbaa72858b5e0acd4a91a416d -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Jan 8 09:52:16 2024 -0700 - - Tribal Section 3 Parsing & Validation (#2761) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * - Added Tribal models, docs, admin refs - - Added support for tribal parsing - - * - Update t1 field validators - - * - t2/t3 field validators - - * 2599-added friendly name to postparsing validators - - * - Updated cat3 validators - - * - Updated how we detect tribe code - - * - Added error handling for inconsistent header info wrt tribe code - - Added new test - - * - Updated test - - * - Grammar fix - - Removed unused function - - * refining the validator tests - - * - Format with Black - - Add missing tests - - * - Fix lint - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * - Updated based on review feedback - - * - removing debug assert - - * - Fix lint - - * listing - - * - deconflicting migrations - - * - Fixing test - - * added m6 - - * lint - - * - Adding datafile - - * - Added support for parsing tribal t4/t5 - - Added test for t4/t5 parsing - - * - ADded cat2/cat3 validators - - * corrected new line break - - * - Update doc strings - - * - Fixed failing test - - * - Fix lint - - * refactored validator logic - - * - resolving conflict - - * - Fix lint errors - - * - Resolve conflict - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Renamed tribal files - - Updated to allow case aggregates - - Updated datafile to have a more convenient date range - - Updated tests to capture case aggregates - - * - Reduced file size - - Updated test - - * - Fix lint errors - - * - Added support for parsing and validating tribal t6 records - - * - Fix lint - - * - Docstring fix - - * friendly_name corrections - - * - Adding friendly names to tribal - - * - Fixing typo - - * - Added friendly names - - * - Adding friendly names - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - knowledge center - - * - Integrating Jans changes. Parametrizing values_is_empty - - * - Update based on review feedback - - * - Updated length checks - - * - removing fips code - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - update based on review - - * - Fix migration - - * - Fixed name clash on PARENT_MINOR_CHILD - - * Revert "- Fixed name clash on PARENT_MINOR_CHILD" - - This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - Remove validator - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t6.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 7ca070b74166b2a2256ea055eeda2bb8c7de0e23 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Jan 8 09:29:35 2024 -0700 - - Tribal Section 2 Parsing & Validation (#2753) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * - Added Tribal models, docs, admin refs - - Added support for tribal parsing - - * - Update t1 field validators - - * - t2/t3 field validators - - * 2599-added friendly name to postparsing validators - - * - Updated cat3 validators - - * - Updated how we detect tribe code - - * - Added error handling for inconsistent header info wrt tribe code - - Added new test - - * - Updated test - - * - Grammar fix - - Removed unused function - - * refining the validator tests - - * - Format with Black - - Add missing tests - - * - Fix lint - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * - Updated based on review feedback - - * - removing debug assert - - * - Fix lint - - * listing - - * - deconflicting migrations - - * - Fixing test - - * added m6 - - * lint - - * - Adding datafile - - * - Added support for parsing tribal t4/t5 - - Added test for t4/t5 parsing - - * - ADded cat2/cat3 validators - - * corrected new line break - - * - Update doc strings - - * - Fixed failing test - - * - Fix lint - - * refactored validator logic - - * - resolving conflict - - * - Fix lint errors - - * - Resolve conflict - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Renamed tribal files - - Updated to allow case aggregates - - Updated datafile to have a more convenient date range - - Updated tests to capture case aggregates - - * - Reduced file size - - Updated test - - * - Fix lint errors - - * friendly_name corrections - - * - Adding friendly names to tribal - - * - Fixing typo - - * - Added friendly names - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - knowledge center - - * - Integrating Jans changes. Parametrizing values_is_empty - - * - Update based on review feedback - - * - Updated length checks - - * - removing fips code - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - update based on review - - * - Fix migration - - * - Fixed name clash on PARENT_MINOR_CHILD - - * Revert "- Fixed name clash on PARENT_MINOR_CHILD" - - This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - Remove validator - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 92fd835f73cfa08303ed7a7eec5524b508116a34 -Author: Miles Reiter -Date: Mon Jan 8 11:11:22 2024 -0500 - - Create sprint-87-summary.md (#2769) - - * Create sprint-87-summary.md - - * Update docs/Sprint-Review/sprint-87-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - - * Update docs/Sprint-Review/sprint-87-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - - --------- - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit c6702bfa438f58c231af0f63e50be037964fc675 -Author: Thomas Tignor -Date: Mon Jan 8 10:48:23 2024 -0500 - - Added pre-existing user condition to DEVAUTH check - Removed login.py logging - -commit 5efd2037840bc6594693823a2ab9c6637caf7e5b -Author: Mo Sohani -Date: Fri Jan 5 12:08:14 2024 -0500 - - linting - -commit bfbd7fa56d977004aa700a9398283f87c97973c7 -Author: Mo Sohani -Date: Fri Jan 5 11:53:14 2024 -0500 - - merge conflict resolution - -commit 35456d05baaa20e3f1a1c32e78690d81dd4df331 -Merge: d709a8ca3 ca6eecf9d -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Jan 5 11:41:17 2024 -0500 - - Merge branch 'develop' into 2711-catch-rpt-month-year-mismatches - -commit d709a8ca3c49bef78de286456e9de29c3114cb30 -Author: Mo Sohani -Date: Fri Jan 5 11:35:29 2024 -0500 - - resolve circular import - -commit ae4719ccb943af6c882756da125d4d9020b65fba -Author: Mo Sohani -Date: Fri Jan 5 09:20:28 2024 -0500 - - corrected the failing test - -commit 4bc60a7596c76eb2f97f1e516cc53d5940e29f00 -Author: Mo Sohani -Date: Fri Jan 5 09:12:17 2024 -0500 - - revert changes on test file - -commit 66e746ae86f98a1baf2846fe1b36714faaa79b65 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Jan 5 09:06:42 2024 -0500 - - Update small_incorrect_file_cross_validator.txt - -commit ef6368ecbf666f6b0e18163810f2db3fbe3346c2 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Jan 5 09:06:21 2024 -0500 - - Update small_incorrect_file_cross_validator.txt - -commit 7946fcba0a349edff22d01762debbea302fc2887 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Jan 5 09:05:44 2024 -0500 - - Update small_incorrect_file_cross_validator.txt - -commit 4aabc95347b075e5533d65fe51206a945f8a7bd2 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Jan 5 09:05:15 2024 -0500 - - Update small_incorrect_file_cross_validator.txt - -commit 98dc8f6b612068931e449795599cd43cce3ecec3 -Author: Mo Sohani -Date: Thu Jan 4 17:31:42 2024 -0500 - - Passing tests - -commit 4e9a2b8ddf6afdf833903db3230901aeb63cb663 -Merge: 1ccaaff80 ca6eecf9d -Author: Thomas Tignor -Date: Thu Jan 4 13:53:36 2024 -0500 - - Merge branch 'develop' into local-devauth - Merging with develop - -commit 1ccaaff80ab68ceaa412d6853eadca131af628cf -Author: Thomas Tignor -Date: Thu Jan 4 13:50:25 2024 -0500 - - Disabled REACT_APP_DEVAUTH for general cases - -commit c71c64798a540713fd0a7761ba83079efe4e0d2d -Author: Thomas Tignor -Date: Thu Jan 4 13:43:12 2024 -0500 - - Fixed Profile primaryRole bug - -commit ca6eecf9dada19b29ba5f35b3f77541856ad2ebb -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Jan 4 09:32:28 2024 -0700 - - Tribal Section 1 Parsing & Validation (#2742) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * - Added Tribal models, docs, admin refs - - Added support for tribal parsing - - * - Update t1 field validators - - * - t2/t3 field validators - - * 2599-added friendly name to postparsing validators - - * - Updated cat3 validators - - * - Updated how we detect tribe code - - * - Added error handling for inconsistent header info wrt tribe code - - Added new test - - * - Updated test - - * - Grammar fix - - Removed unused function - - * refining the validator tests - - * - Format with Black - - Add missing tests - - * - Fix lint - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * - Updated based on review feedback - - * - removing debug assert - - * - Fix lint - - * listing - - * - deconflicting migrations - - * - Fixing test - - * added m6 - - * lint - - * corrected new line break - - * refactored validator logic - - * - resolving conflict - - * - Fix lint errors - - * - Resolve conflict - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * - Renamed tribal files - - Updated to allow case aggregates - - Updated datafile to have a more convenient date range - - Updated tests to capture case aggregates - - * - Reduced file size - - Updated test - - * - Fix lint errors - - * friendly_name corrections - - * - Adding friendly names to tribal - - * - Fixing typo - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * - knowledge center - - * - Integrating Jans changes. Parametrizing values_is_empty - - * - Update based on review feedback - - * - Updated length checks - - * - removing fips code - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t3.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * - update based on review - - * - Fix migration - - * - Fixed name clash on PARENT_MINOR_CHILD - - * Revert "- Fixed name clash on PARENT_MINOR_CHILD" - - This reverts commit 5850dc845e2f84d7858e591cb6c0f5c381e63470. - - --------- - - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit b35ac52b86a1d27da930c56b8cdb81f6fe6f05e2 -Author: Mo Sohani -Date: Thu Dec 28 13:46:14 2023 -0500 - - two tests still failing - -commit ad014b036abd9073f411152c92e9513da3e512e6 -Author: Mo Sohani -Date: Wed Dec 27 13:29:00 2023 -0500 - - corrected failing tests - -commit 6547d9a3a1ba7605331c4eee22e8b935eedabe2a -Author: Mo Sohani -Date: Wed Dec 27 11:50:14 2023 -0500 - - corrected some of failing tests - -commit bdcdb3456ab975ef04f85452795d65f70d67c7ad -Author: Mo Sohani -Date: Thu Dec 21 16:09:45 2023 -0500 - - created pre-check error - -commit d626eb66593610c0e7c2ab3162c71c416e30ef30 -Author: George Hudson -Date: Wed Dec 20 13:27:01 2023 -0700 - - updated terraform to add redis service instances (#2787) - - Co-authored-by: George Hudson - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit f32607cd71258b6c511b543ce5069a60e4c4b99c -Author: George Hudson -Date: Wed Dec 20 13:10:00 2023 -0700 - - added Tom's workaround for files changed in windows auto changing when pulled into a mac (#2786) - - Co-authored-by: George Hudson - -commit bdb42a8462f7315af716816624f2ccd22bf4a911 -Author: Thomas Tignor -Date: Tue Dec 19 11:13:55 2023 -0500 - - flake8 changes for generate_dev_user.py - -commit d15bf6dbf4f292da66a9b8a087ee79dfc727f180 -Author: Thomas Tignor -Date: Tue Dec 19 10:28:36 2023 -0500 - - Removed unnecessary REACT_APP_DEVAUTH setting from backend - -commit 09d9d2c92bbd70928e16b785c159aa251ab246c5 -Author: Thomas Tignor -Date: Tue Dec 19 10:26:34 2023 -0500 - - Really removed unnecessary CYPRESS_TOKEN setting - -commit d21b155913bdde78ff7ecbfbbe66c7fe6bebebce -Author: Thomas Tignor -Date: Tue Dec 19 10:25:34 2023 -0500 - - Really removed unnecessary CYPRESS_TOKEN setting - -commit 23f6a693442359fc31e6057083f2428110719292 -Author: Thomas Tignor -Date: Tue Dec 19 10:23:24 2023 -0500 - - Removed unnecessary CYPRESS_TOKEN conditional setting - -commit ff79717a618a9e879f6acc2957e433a9afc57bf7 -Author: Thomas Tignor -Date: Fri Dec 15 15:51:46 2023 -0500 - - Modified CustomAuthentication.authenticate comment to satisfy flake8 - -commit 45d1d70965f02dc39c8a137ae05d9092a792c112 -Author: Thomas Tignor -Date: Fri Dec 15 13:49:30 2023 -0500 - - Restored support for CustomAuthentication.authenticate username keyword - -commit d475645e49528cea736f430b4061cd3bc997df6b -Author: Thomas Tignor -Date: Thu Dec 14 08:12:49 2023 -0500 - - Updates to REACT_APP_DEVAUTH env var settings - - Enabled with an email address value - - Disabled by default - -commit fdcb6e21d49c5050b0be07b6e628bf6bdb4ab862 -Author: Thomas Tignor -Date: Thu Dec 14 00:57:57 2023 -0500 - - Removed unneeded permissions import - -commit fe12fb0621471714f3c28b6e52a48e1f929d6a4a -Author: Thomas Tignor -Date: Thu Dec 14 00:52:36 2023 -0500 - - Fixed CustomAuthentication.authenticate logging for login.py use case - -commit 0ff4a662fb1d2344cd92a8f5b99eb4f55f81ce38 -Author: Thomas Tignor -Date: Thu Dec 14 00:49:46 2023 -0500 - - Fixed CustomAuthentication.authenticate return val for login.py use case - -commit d0bf9a36b3bbaa8d156c6301af51f89305bd9168 -Author: Thomas Tignor -Date: Thu Dec 14 00:02:33 2023 -0500 - - DevAuth feature redesign inspired by Cypress - - Initializing frontend w/POST /login/cypress: {devEmail, local-cypress-token} - - Changed REACT_APP_DEVAUTH to provide the email of the desired dev user - - Modified CustomAuthentication.authenticate to handle both known use cases - - Added stt_id=31 to the initial dev user - - Disabled ES disk threshold checking for local dev which blocked ES startup - - Removed DevAuthentication and other now unnecessary code - - Resolved cherry-pick conflict - -commit b12346b46894b887bccca4edacbe3c6688d5e83b -Author: Thomas Tignor -Date: Fri Dec 8 17:09:11 2023 -0500 - - added is_superuser and is_staff attrs to dev user - -commit 1548342f17d6223fa415e17d97cdf1a9aefb245f -Author: Thomas Tignor -Date: Tue Dec 5 11:39:38 2023 -0500 - - Reorganized backend logic on REACT_APP_DEVAUTH env var - -commit ca81e02c21609ee6fa9d13b3fc52c800eb632f89 -Author: Thomas Tignor -Date: Tue Dec 5 11:27:53 2023 -0500 - - Reorganized front end logic on REACT_APP_DEVAUTH env var - -commit 496f60236f00e6a5be31cf33a83c0ef108bd466e -Author: Thomas Tignor -Date: Wed Nov 29 11:21:53 2023 -0500 - - Changes for fully local development - - Enables direct frontend/backend communication sans Login.gov/Cloud.gov - - Drives off new DEVELOPMENT env var - - Pre-configures and disables frontend auth functionality - - Testing based on new dev user - - Install via web: ./manage.py generate_dev_user - -commit 1de71fe26330fe11140372b0b43ab42850e38f1d -Author: Thomas Tignor -Date: Tue Dec 19 09:24:55 2023 -0500 - - DEVAUTH - All-local devenv sans cloud or third-party auth workflows - - Remedy for git confusion on problem zip files - -commit 65afe1911dd24ea13055505e211a9cd5059e58a4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Dec 18 12:21:52 2023 -0500 - - Issue 2488: boundary diagram updates (#2770) - - * boundary diagram updates for 2488 - - * make pngs transparent - - * update nginx server for frontend description - - --------- - - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit ae1abca95a3834f9ab954ebc0a5958d34f1cd2de -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Dec 18 11:47:15 2023 -0500 - - 2599-error-report-excel-format (#2734) - - * Added formating for header and autofit columns - - * Formatted the headers - - * added year/month to the columns - - * Added contants - translation column - - * added friendly names to T1 and T2 - - * added friendly name to m1 and m2 - - * added friendly name to m3 - - * added friendly_name to t3 - - * added friendly_name to t4 and t5 - - * added friendly_name to t7 - - * correct missing friendly_name - - * correction on failing tests - - * addedfriendly name to excel report - - * linting - - * linting - - * linting - - * delete contants.py - - * added test for json field in error model - - * linting - - * linting - - * linting - - * 2599-added friendly name to postparsing validators - - * refining the validator tests - - * added returning fields names to validators - - * added friendly_name to error field - - * linting - - * corrections on views/tests - - * corrections for fields - - * failing test corrected - - * failing test corrected - - * correcting test failures - - * linting - - * corrected the excel fiel generator - - * removed excessive space in validator - - * linting - - * listing - - * added m6 - - * lint - - * corrected new line break - - * refactored validator logic - - * linting and correction on t1 - - * friendly_name correction from comments - - * friendly_name correction - - * corrected failing test for m5 - - * refactor the field_json creation DRY - - * friendly_name corrections - - * linting and cleaning errors - - * linting - - * correction on friendly_names - - * corrected friendly_name for test_util - - * correction child care - number of months - - * fixed a few more typos and some spacing. (#2767) - - * fixed a few more typos and some spacing. - - * fixed linting issues - - * missed a spot. - - --------- - - Co-authored-by: George Hudson - - * fields_json Backward compatibility - - * remove PATCH from black list - - * backward compatibility - - * linting - - * add PATCH to allowed - - * readded internal_name - - * added a function - - * remove NoneType from fields_json - - * linting - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * corrections on friendly names - - * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m2.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m5.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * correction on friendly names - - --------- - - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 8028ad00267b0284b94219675b696b6bb0cb9a2d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Dec 13 12:04:45 2023 -0500 - - adding documentation on cloudgov s3 incident response (#2763) - -commit 68e2abad7f3d9a2f117b73628ac87181d32dc04f -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Dec 13 08:31:02 2023 -0700 - - - Remove debug print statements (#2778) - -commit b11e1a9c00bd981d3871b2204dd013debcfd6e4d -Merge: 01338f905 e5ccc2c08 -Author: Miles Reiter -Date: Tue Dec 12 12:08:49 2023 -0500 - - Merge pull request #2776 from raft-tech/knowledge-center-img-hotfix - - Adds img folder for knowledge center hotfix - -commit e5ccc2c0899915cc4c71800fd1c6779eba12dd3e -Merge: 2a1506bf6 01338f905 -Author: Miles Reiter -Date: Fri Dec 8 17:55:42 2023 -0500 - - Merge branch 'develop' into knowledge-center-img-hotfix - -commit 2a1506bf6e7af21792c857981428fd555d572cc7 -Author: Miles Reiter -Date: Fri Dec 8 17:21:10 2023 -0500 - - Adds img folder - -commit 01338f905eb30cd76c8c3867be5299f77ef44eae -Merge: 25376871c 60fce1211 -Author: Miles Reiter -Date: Fri Dec 8 17:04:01 2023 -0500 - - Merge pull request #2774 from raft-tech/knowledge-center-ftanf-update - - Adds fTANF -> FTANF and FTANF Download Guide - -commit 60fce1211e35670d88e6e83616f3dd57bb82f8f6 -Merge: 47a7f923d a7d99d909 -Author: Miles Reiter -Date: Fri Dec 8 16:29:09 2023 -0500 - - Merge branch 'knowledge-center-ftanf-update' of https://github.com/raft-tech/TANF-app into knowledge-center-ftanf-update - -commit 47a7f923d075ae07c7babc3b280917e9dc824eae -Author: Miles Reiter -Date: Fri Dec 8 16:29:00 2023 -0500 - - Update index.html - -commit a7d99d9093a729bc19749f2b3b0360a6c724d9bd -Author: Miles Reiter -Date: Fri Dec 8 16:26:18 2023 -0500 - - Update product-updates/knowledge-center/index.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 9eb09c07e5273cf2f6615a569aaa53bb33757f34 -Author: Miles Reiter -Date: Fri Dec 8 12:29:13 2023 -0500 - - Fix missing copy edits & element nesting - -commit 3e1c7a2fdc7b95b665e9ffed036d2ba9c0f51a38 -Author: Miles Reiter -Date: Fri Dec 8 10:58:41 2023 -0500 - - Adds fTANF -> FTANF and FTANF Download Guide - -commit 25376871c98f77e79936860f43ca487a0a66b0ed -Author: George Hudson -Date: Wed Dec 6 09:12:18 2023 -0700 - - added needed space into logic (#2765) - - * added needed space into logic - - * updated security controls documentation to mention how NGINX is used by lower envs to connect to prod clamav server - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 11aef55904828519c9abb510f69f781105e49b15 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Dec 6 09:46:08 2023 -0500 - - Fix parser/preparser validation of empty strings (#2748) - - * add validator tests - - * add notEmpty test - - * add blank string to value_is_empty values - - * replace removed text - - * fix partial oob string indexing - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit eb16d8b3d4bd868d508203038ffb3fdc33002598 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Dec 1 10:55:28 2023 -0500 - - 2683-zap-CORS-misconfig (#2727) - - * added cloud.gov back to scan urls - - * temp - - * revert changes on zap.conf - - * revert change on zap.conf - - * revert changes on zap-hook.conf - - * revert changes on nginx.conf - - * revert changes on middleware.py - - * linting - - * revert change on docker-compose file - - * revert changes on .env file - - * remove file not needed - - * linting - - * revert changes on deploy-backend - - * revert changes on zap-scanner.py - - * revrt some changes on zap-scanner - - * Added CORS settings - - * increase max_file allow large file clamav scans - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit eac7e505eac1596af557608760fffad0833742e6 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Nov 29 15:53:45 2023 -0500 - - add file size to clamav-nginx (#2760) - -commit 0b6224107130a971a0b332416c3d945bc4239900 -Merge: cd6213a41 a8326054d -Author: mitika-lj <144261380+mitika-lj@users.noreply.github.com> -Date: Tue Nov 28 13:48:18 2023 -0600 - - Merge pull request #2758 from raft-tech/camilla-link-fix-branch - - Fixing the link ( removing the "copy" from the file name) - -commit a8326054d85ffbba7d4f93f7cf57ecfd3d408d02 -Author: mitika-lj -Date: Tue Nov 28 13:21:04 2023 -0600 - - Fixing the link ( removing the "copy" from the file name - -commit cd6213a41862e47e35da89258ac9d53eb246ae04 -Author: Miles Reiter -Date: Wed Nov 22 15:39:34 2023 -0500 - - Create sprint-86-summary.md (#2752) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit bd31881802f6483cf4173e1a74e1f0eba6dc54c7 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Nov 22 12:50:38 2023 -0700 - - SSP Section 2 Parsing & Validation (#2724) - - * - Added m4 and m5 - - Added cat 2 validators - - * - Quick correction to preparse validator - - * - Updated item numbers - - Added cat3 validators - - * - Adding datafile - - * - updated datafile to allow correct parsing of m4 records - - added tests - - * - Fix lint errors - - * - Update permissions test - - * - Fixed failing unit test - - * - Adding order_by to keep consistent results - - * - Fixed obj ordering issue - - Skipping super big file - - * - Added missing validator - - * - Updated import paths - - * - Updated DOB fields to make a little more sense - - * - Pre-emptively marking required false to prepare for merge - - * - Fix lint - - * - Formatting with Black - - * update m4/m5 validators - - * isInLimits -> matches (duh) - - * - Deconflicting migrations - - * - Fixing test - - * - Adding missing fixture - - * - Resolving migration name conflicts - - * - Fixing dependency - - * - Keeping consistent dependencies - - * - Linearizing deps - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - -commit f1f15c1b524fe28eda1cf4e963b4e26f8685359b -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Nov 22 10:43:37 2023 -0700 - - SSP Section 4 Parsing & Validation (#2731) - - * - Added support for parsing and validating ssp section 4 - - * - fix lint errors - - * - Updated permissions test - - * - Fixed item number mismatch - - * - Remove generic relation - - Add missing test - - Re-made migration - - * - Fix lint errors - - * - Pre-calculating item numbers - - * - Formatting with Black - - * - Adding missing postparsing validator - - * - Deconflicting migrations - - * - Deconflicting migrations - - * - Fixing test - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 9b1c2d1ab8726a922dfdbb1492a3f338da92c1b8 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Nov 21 09:59:45 2023 -0500 - - Feature/1119 ssp section 3 (#2733) - - * ssp m6 boilerplate - - * update ssp m6 field names - - * update tests - - * rm logging - - * rm logging - - * fix tests - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 7ce0a8e91614cb0972fe5358e2ade9f802a93aff -Merge: 619687b7f b6141661b -Author: Miles Reiter -Date: Mon Nov 20 11:57:38 2023 -0500 - - Merge pull request #2750 from raft-tech/sprint-85-summary - - Create sprint-85-summary.md - -commit b6141661b5f8bab6e2f26c4042fafbe97b0bb466 -Merge: 3887e4a55 619687b7f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Nov 17 13:56:50 2023 -0500 - - Merge branch 'develop' into sprint-85-summary - -commit 619687b7f2f7cb268bc235b5b4990c0b5dfa1c81 -Author: George Hudson -Date: Fri Nov 17 11:56:28 2023 -0700 - - added documentation for our Nexus repository (#2682) - - * added documentation for our Nexus repository - - * updated documentation to include VM configuration, nexus container setup, and new proxy and group repo usage. - - * updated reamde with qol and grammatical fixes - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 3887e4a5582bea6fb7afa23a040117454f342655 -Author: Miles Reiter -Date: Fri Nov 17 13:49:45 2023 -0500 - - Create sprint-85-summary.md - -commit 872c5b07d79a6e45ab18761c16e77f63d3635a75 -Author: George Hudson -Date: Wed Nov 8 13:38:07 2023 -0700 - - allow circleci tdrs-run-deploy to kick off with new functionality (#2741) - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 6b5065862c4eb310ed842b7eec2a3db7a26d5d86 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Nov 8 14:10:05 2023 -0500 - - Feature/2709 ssp section 1 validation (#2723) - - * cat 2 validation - - * ssp s1 cat 3 validators - - * debug ssp section errors - - * change string validators to number validators - - * add df to case agg query - - * update ssp s1 test - - * update ssp tests - - * fix lint - - * update test - - * rm prints - - * update validator - - * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * fix the validator i broke and update tests - - * udpate validator (again) - - * lint - - * Update tdrs-backend/tdpservice/parsers/schema_defs/ssp/m1.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * lint - - * rm unneeded cat3 validator - - * update docstring - - * rm unused validator - - * update m2 validator - - * fix education level validation for m3 - - * add required=False to allow blanks - - * fix other education level m3 validator - - * rm schema comments - - * fix tests - - --------- - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit fcd2a1d53b01ac35362d58c7004d7baf078ef2d9 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Nov 7 07:05:51 2023 -0700 - - Infinite FETCH_STTS (#2720) - - * - Updated request to execute 5 times before throwing error - - * - Adding error modal when stt list is empty - - * - Not defaulting to show error modal - - * - Updated to use redux state instead of component state for request counting - - * - Simplifying if block - - * - Updated to use our pre-built modal instead of re-inventing the wheel - -commit be8f1964c8e85964c00632bbf23aceea9c18f6e8 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Nov 6 11:57:11 2023 -0500 - - Updating apt repo for postgres (#2744) - -commit 6785277b941460ed2415ee201a8919bff426118b -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Nov 6 07:48:54 2023 -0700 - - 2695 field spaces (#2704) - - * - Added support to fields that can allow blanks as valid fields - - Added new tests - - Updated make validator to handle type errors - - * - Updating blank fields to not be required - - * - Fix lint errors - - Add datafile - - * - updating fields to be required until guidance comes out on what is not reqruired - - * - ADding None check - - * - Error checking - - * - Updated to run field validators even if field is empty but is allowed to be - - removed unnecessary validator - - updated schemas - - - - * - Switching back to numIsBlank - - * -Adding back numIsBlank - - * - adding isNone since empty string fields are also None - - * - Added all missing fields to test file - - Updated incorrect fields and catch validator error - - * - Updating test - - * - Fix lint errors - - * - Re-added missing fields - - Updating tests - - * - Updated tests - - * - Fixing errors from merge - - * - Removed extra flag - - Updated logic on when to run field validators - - Updated schemas - - * - Fixed failing tests - - * - Fix lint - - * - Removing unnused validator - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 7115532cd187955fe81766b9908f9461a655ccf4 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Nov 3 12:24:39 2023 -0600 - - File Input Render Issue (#2725) - - * - small grammar fix - - * - Fix lint suggestions - - * - updated message - - * - Fixed lint errors - - * - Added correct extension to datafiles without one - - * - Adding cherry picks for file extension error handling - - * - Updated regex - - * - updating to keep file in dropbox in event of error to help user correct their mistake. - - * - Fix icon rendering incorrectly - - * update test file extensions - - * - making timeout longer - - * - Resolved issue causing test failure - - resetting timeout - - * - passing param - - * - updated nginx conf - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Miles Reiter - Co-authored-by: Jan Timpe - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 96452dcd6fb7343532fa7e86c4d3ac7f0c04179f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Nov 3 12:44:47 2023 -0400 - - Debug/develop deployment failures (#2743) - - * Update cloudgov.py - - * hijack develop workflow to test deployments. - - * syntax typo. - - * I can't believe this typo. - - * linting whitespace - - * removed extra space - - * Adding in staging jwt_key due to recent deployment failure. - - * Removing self-reference branch filter for mergability - - * Updated elif logic based on CI failures - - --------- - - Co-authored-by: andrew-jameson - Co-authored-by: George Hudson - -commit d6784ad521f04650b045a08ce73f3ff52164307f -Author: Miles Reiter -Date: Fri Nov 3 10:00:33 2023 -0400 - - Sprint 84 summary (#2737) - - * Create sprint-84-summary.md - - * Update sprint-84-summary.md - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 84f357d9ac2fb485dab632e72b5d6a6aa07034aa -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Nov 2 08:01:55 2023 -0700 - - Create sprint-83-summary.md (#2728) - - Sprint summary - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit a886f701b2bc9af1839666a7bae37e556b4c7f8d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Nov 2 09:44:43 2023 -0400 - - Update cloudgov.py (#2730) - - * Update cloudgov.py - - * hijack develop workflow to test deployments. - - * syntax typo. - - * I can't believe this typo. - - * linting whitespace - - * removed extra space - - * Adding in staging jwt_key due to recent deployment failure. - - * Removing self-reference branch filter for mergability - - --------- - - Co-authored-by: andrew-jameson - Co-authored-by: George Hudson - -commit 932a41ea991b83ac75ec5c93d187eb4785316d56 -Author: George Hudson -Date: Thu Oct 12 08:18:29 2023 -0600 - - 2429/single clamav (#2718) - - * removed clamav from being deployed unless in production. Pointed AV SCAN enpoint to tanf-prod clam av scanner only - - * added network policy to connect to prod clamAV - - * use prod clam av in cloudgov.py too - - * fixing 'f-string is missing placeholders' now that we are hardcoding prod clamav - - * removed quotes from add-network-policy command when interpolation not needed - - * removed add-network-policy from deploy-backend.sh and added documentation for how to do manually. - - * add nginx router and manifest - - * cleaned up - - * Update README for CLAMAV - - * updated README file with deployment commands - - * added network policy for backend to clamav router - - * updated boundry diagram - - * updated boundry diagram - - * Removed AV_SCAN url from cloud.gov settings file - - * update setting environment variable - - * refactored circle ci for static clam av vars since only one server now. updated docs. - - * needs env_var_name, not string for login-cloud-dot-gov - - * revert back to env_var_name type for downstream login_cloud_dot_gov command - - * added prod prefix back in - - * readd AV_SCAN_URL - - * changed the inline comment in common.py settings - - * README file rewrite - - * added note - - * readded clam av nginx router url to manifest and setting network policies in the deploy-backend.sh script - - * updated for using backend to set ENV for ClamAV URL. - - * getting rid of spaces on empty last line of manifest - - * Remove AV_SCAN_URL from deploy-backend - - * updated README for clarification for clam-av-nginx-router naming - - * moving setting vars for clamav server to above cf push - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Mo Sohani - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 6fa43ad75268187a23a8b37b96edfdb231378713 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Oct 12 06:01:53 2023 -0700 - - Rename sprint-82-review.md to sprint-82-summary.md (#2726) - - renaming file - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 281cad7846b333e8e666119b1840ce5fa27d7a18 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Oct 11 16:09:19 2023 -0400 - - 2411 metadata parsed datafiles (#2706) - - * saving state real quick - - * finishing merge with latest - - * Missed old test script - - * Added new test, more cleanup - - * Updating unit tests in DFS, preparing for 1610 - - * Merging in Jan's 1610 code for parserError useful-ness - - * Revert "Merging in Jan's 1610 code for parserError useful-ness" - - This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. - - * update to test to use dfs fixture - - * saving state before new 1610 merge - - * Resolving merge conflicts with 1610. - - * Linting changes and comparing to 1610 - - * Some unit test linting but inherited 1610 issues - - * Re-ordering job to run tests vs lint first. - - * Updates to linting and unit tests. - - * Fixing linting. - - * Update tdrs-backend/setup.cfg - - * updates per PR. - - * Excluding trailers for rejection - - * VSCode merge resolution is garbage. - - * Fixing precheck for not implemented types - - * Updating to error-handle not implemented schema types - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Fixed failing test - - * add adminUrl to deployment cypress overrides - - * Adding "beta" banners to relevant error report sections (#2522) - - * Update views.py - - * Update views.py - - * Update SubmissionHistory.jsx - - * Update SubmissionHistory.test.js - - * Apply suggestions from code review - - Co-authored-by: Miles Reiter - - * lint fixes - - --------- - - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * Create sprint-73-summary.md (#2565) - - * hotfix for large file sizes (#2542) - - * hotfix for large file sizes - - * apply timeouts/req limits to dev - - * filter identity pages from scan - - * IGNORE sql injection - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: mo sohani - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - - * updating validation error language - - * accidentally included coding challenge - - * rm comments - - * 2550 deactivation email link (#2557) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding url to email - - * - test code for sandbox - - * - using my email - - * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" - - This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing - changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- using my email" - - This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- test code for sandbox" - - This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update README.md (#2577) - - Add ATO - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Create 2023, Spring - Testing CSV & Excel-based error reports.md - - * Update README.md - - * Updating deliverable links (#2584) - - * User viewset not returning/duplicating users (#2573) - - * - Fixed issue not allowing pagination to work locally with nginx - - Added ordering to user field to fix duplicates issue - - * - fix lint error - - * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update cf os (#2523) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding new dependencies - - * - adding package - - * - fixing broken install - - * - fixing libs - - * - using correct command - - * - gettign correct version of libc - - * - trying to upgrade libs - - * - testing - - * - Updated README and script - - * Revert "- Updated README and script" - - This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. - - * - Removed unnecessary circi stuff - - Removed script - - Updated docs to callout updating secondary apps - - * - Correct spelling error - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Item Number Mismatch (#2578) - - * - Updated schemas and models to reflect correct item numbers of fields - - * - Revert migration - - * - Updated header/trailer item numbers - - * - Fixed item numbers off by one errors - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * pipeline filtering (#2538) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Hotfix Devops/2457 path filtering for documentation (#2597) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - * build and test all on PRs even for documentation - - --------- - - Co-authored-by: George Hudson - - * Create sprint-74-summary.md (#2596) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * added URL filters (#2580) - - * added URL filters - - * allow github to trigger owasp and label deploys (#2601) - - Co-authored-by: George Hudson - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - - * Create sprint-75-summary.md (#2608) - - * Create sprint-76-summary.md (#2609) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * - Resolved failing tests - - * - Corrected merge thrash - - * - Using randbits to generate pk to get around confilcting sequence pks - - * Revert "- Using randbits to generate pk to get around confilcting sequence pks" - - This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. - - * - Updating region in fixture instead of factory - - letting django handle transaction for test - - * - Moved datafile reference to avoid confusion - - * pushing up incomplete codebase - - * Other unit tests now have passed w/ good error handling - - * Working tests, need to get setup for case aggregates populating via DB - - * - Updated queries - - Added helper function - - Need to merge in 2579 for queries to work - - * minor improvement to month2int - - * - Fixing most merge errors - - * - Fixing functions - - * - Updated queries based on generic relation - - * - Updated queries to count by case number instead of record number - - * - Added route - - Updated task to create dfs - - * - updated tests to include dfs - - * Cleaning up most comments that are no longer necessary and fixed lint issues. - - * making minor updates, still broken tests. - - * updating pipfile.lock and rebuild image resolved test issues - - * Reorganizing tests, still failing in test_parse.py - - * deleted summary file, split into other test scripts. - - * Fixed missing self reference. - - * Linting fixes. - - * Found reference failure in deployed env. - - * Removing extra returns for missing record type. - - * lint fix - - * Addressed invocation of datafile for failing test - - * lint update for whitespace - - * Intermediary commit, broken test - - * new assignemnts in util - - * - updated rejected query to correctly count objs - - * - Fixing most tests - - * - Fixed user error. Swapped numbers by accident. - - * - make region None to avoid PK collision - - * - Fix lint errors - - * - Updating to avoid warning - - * vscode merge conflict resolution (#2623) - - * auto-create the external network - - * didn't stage commit properly - - * checking diffs, matching 1613.2 - - * doesn't work in pipeline. must be cached local - - * re-commenting in unit test - - * lint failures fixed - - --------- - - Co-authored-by: andrew-jameson - - * url change per me, want pipeline to run e2e - - * Upgraded to querysets, fix PR comments, PE str - - * missing : not caught locally - - * Feat/1613 merge 2 (#2650) - - * Create sprint-78-summary.md (#2645) - - * Missing/unsaved parser_error for record_type - - * removing redundant tests - - * Hopefully resolved on unit tests and lint - - --------- - - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * icontains - - * tests - - * Changing dict structure per 1612. - - * fixed tests and lint issues, parse is too complex - - * schema_manager replaces schema check - - * Saving state prior to merge-conflict. - - * Adopting latest manager, removing old error style. - - * Commented out t6 line during Office hours - - * minor reference update - - * Acclimating to schemaManager - - * lint-fix isinstance - - * syntax mistake with isinstance - - * Apply suggestions from code review - - * reverting search_index merge artifacts. - - * adjusting for removing unused "get-schema()" - - * whitespace lint - - * Feedback from Jan - - * Ensuring tests run/work. - - * Ensure we have leading zero in rptmonthyear. - - * Minor lint fix for exception logging - - * resolving merge conflict problems - - * added the filters for datafile progtype - - * added url to admin filters - - * added datafile summary link to admin page - - * filtering parser errors - - * linting - - * Test data_file admin page - - * corrected datafile id for test file - - * linting - - * Added deplay to cypress test - - * changed datafile summary filter - - * Changed error report link - - * changed filter to reflect related name - - --------- - - Co-authored-by: Andrew Jameson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: andrew-jameson - Co-authored-by: elipe17 - Co-authored-by: Jan Timpe - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - Co-authored-by: Miles Reiter - Co-authored-by: George Hudson - Co-authored-by: George Hudson - -commit e178c5c7a035890980068bca9a93a2896107af99 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Oct 11 12:15:36 2023 -0700 - - Create sprint-82-review.md (#2716) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit a4ad481ff878a40ca9bb11fe3c4a9353c9b63321 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Oct 10 10:40:53 2023 -0600 - - Frontend File Validation (#2690) - - * - small grammar fix - - * - Fix lint suggestions - - * - updated message - - * - Fixed lint errors - - * - Added correct extension to datafiles without one - - * - Adding cherry picks for file extension error handling - - * - Updated regex - - * - updating to keep file in dropbox in event of error to help user correct their mistake. - - * - Fix icon rendering incorrectly - - * update test file extensions - - * - making timeout longer - - * - Resolved issue causing test failure - - resetting timeout - - * - passing param - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Miles Reiter - Co-authored-by: Jan Timpe - -commit 954edc74a494040db5f82a33a97fb25cbdaec47b -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Oct 5 10:33:32 2023 -0400 - - 1612 case aggregates frontend (#2643) - - * saving state real quick - - * finishing merge with latest - - * Missed old test script - - * Added new test, more cleanup - - * Updating unit tests in DFS, preparing for 1610 - - * Merging in Jan's 1610 code for parserError useful-ness - - * Revert "Merging in Jan's 1610 code for parserError useful-ness" - - This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. - - * update to test to use dfs fixture - - * saving state before new 1610 merge - - * Resolving merge conflicts with 1610. - - * Linting changes and comparing to 1610 - - * Some unit test linting but inherited 1610 issues - - * Re-ordering job to run tests vs lint first. - - * Updates to linting and unit tests. - - * Fixing linting. - - * Update tdrs-backend/setup.cfg - - * updates per PR. - - * Excluding trailers for rejection - - * VSCode merge resolution is garbage. - - * Fixing precheck for not implemented types - - * Updating to error-handle not implemented schema types - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Fixed failing test - - * add adminUrl to deployment cypress overrides - - * Adding "beta" banners to relevant error report sections (#2522) - - * Update views.py - - * Update views.py - - * Update SubmissionHistory.jsx - - * Update SubmissionHistory.test.js - - * Apply suggestions from code review - - Co-authored-by: Miles Reiter - - * lint fixes - - --------- - - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * Create sprint-73-summary.md (#2565) - - * hotfix for large file sizes (#2542) - - * hotfix for large file sizes - - * apply timeouts/req limits to dev - - * filter identity pages from scan - - * IGNORE sql injection - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: mo sohani - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - - * updating validation error language - - * accidentally included coding challenge - - * rm comments - - * 2550 deactivation email link (#2557) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding url to email - - * - test code for sandbox - - * - using my email - - * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" - - This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing - changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- using my email" - - This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- test code for sandbox" - - This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update README.md (#2577) - - Add ATO - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Create 2023, Spring - Testing CSV & Excel-based error reports.md - - * Update README.md - - * Updating deliverable links (#2584) - - * User viewset not returning/duplicating users (#2573) - - * - Fixed issue not allowing pagination to work locally with nginx - - Added ordering to user field to fix duplicates issue - - * - fix lint error - - * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update cf os (#2523) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding new dependencies - - * - adding package - - * - fixing broken install - - * - fixing libs - - * - using correct command - - * - gettign correct version of libc - - * - trying to upgrade libs - - * - testing - - * - Updated README and script - - * Revert "- Updated README and script" - - This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. - - * - Removed unnecessary circi stuff - - Removed script - - Updated docs to callout updating secondary apps - - * - Correct spelling error - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Item Number Mismatch (#2578) - - * - Updated schemas and models to reflect correct item numbers of fields - - * - Revert migration - - * - Updated header/trailer item numbers - - * - Fixed item numbers off by one errors - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * pipeline filtering (#2538) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Hotfix Devops/2457 path filtering for documentation (#2597) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - * build and test all on PRs even for documentation - - --------- - - Co-authored-by: George Hudson - - * Create sprint-74-summary.md (#2596) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * added URL filters (#2580) - - * added URL filters - - * allow github to trigger owasp and label deploys (#2601) - - Co-authored-by: George Hudson - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - - * Create sprint-75-summary.md (#2608) - - * Create sprint-76-summary.md (#2609) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * - Resolved failing tests - - * - Corrected merge thrash - - * - Using randbits to generate pk to get around confilcting sequence pks - - * Revert "- Using randbits to generate pk to get around confilcting sequence pks" - - This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. - - * - Updating region in fixture instead of factory - - letting django handle transaction for test - - * - Moved datafile reference to avoid confusion - - * pushing up incomplete codebase - - * Other unit tests now have passed w/ good error handling - - * Working tests, need to get setup for case aggregates populating via DB - - * - Updated queries - - Added helper function - - Need to merge in 2579 for queries to work - - * minor improvement to month2int - - * - Fixing most merge errors - - * - Fixing functions - - * - Updated queries based on generic relation - - * - Updated queries to count by case number instead of record number - - * - Added route - - Updated task to create dfs - - * - updated tests to include dfs - - * Cleaning up most comments that are no longer necessary and fixed lint issues. - - * making minor updates, still broken tests. - - * updating pipfile.lock and rebuild image resolved test issues - - * Reorganizing tests, still failing in test_parse.py - - * deleted summary file, split into other test scripts. - - * Fixed missing self reference. - - * Linting fixes. - - * Found reference failure in deployed env. - - * Removing extra returns for missing record type. - - * lint fix - - * Addressed invocation of datafile for failing test - - * lint update for whitespace - - * Intermediary commit, broken test - - * add reverse relation - - * frontend summary status - - * new assignemnts in util - - * - updated rejected query to correctly count objs - - * - Fixing most tests - - * - Fixed user error. Swapped numbers by accident. - - * - make region None to avoid PK collision - - * - Fix lint errors - - * - Updating to avoid warning - - * add acceptance icon - - * add reverse relationship to summary model - - * vscode merge conflict resolution (#2623) - - * auto-create the external network - - * didn't stage commit properly - - * checking diffs, matching 1613.2 - - * doesn't work in pipeline. must be cached local - - * re-commenting in unit test - - * lint failures fixed - - --------- - - Co-authored-by: andrew-jameson - - * add a pending status - - * add acceptance status tests - - * update warning icon - - * rm old assert - - * update rejected icon - - * add case aggregates to submission history - - * url change per me, want pipeline to run e2e - - * update case aggregate columns - - * update col names - - * Upgraded to querysets, fix PR comments, PE str - - * missing : not caught locally - - * Feat/1613 merge 2 (#2650) - - * Create sprint-78-summary.md (#2645) - - * Missing/unsaved parser_error for record_type - - * removing redundant tests - - * Hopefully resolved on unit tests and lint - - --------- - - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * icontains - - * tests - - * Changing dict structure per 1612. - - * fixed tests and lint issues, parse is too complex - - * schema_manager replaces schema check - - * Saving state prior to merge-conflict. - - * Adopting latest manager, removing old error style. - - * Commented out t6 line during Office hours - - * minor reference update - - * Acclimating to schemaManager - - * lint-fix isinstance - - * syntax mistake with isinstance - - * Apply suggestions from code review - - * reverting search_index merge artifacts. - - * adjusting for removing unused "get-schema()" - - * whitespace lint - - * Feedback from Jan - - * Ensuring tests run/work. - - * Ensure we have leading zero in rptmonthyear. - - * Minor lint fix for exception logging - - * fix migration - - * add backend partially accepted status - - * add frontend partially accepted status - - * add partially accepted test - - * rm accidental commit - - * rm unused variable - - * conditional submission history - - * fix test - - * resolving merge conflict problems - - * fixing tests from merge conflicts. - - * - fixed migration reference - - * dumb lint fix - - * - Fixed render error - - * Adding section - - * - Resolved type mismatches causing render failures - - * - Adding branch coverage - - * - Fix lint errors - - * - Fix lint errors - - * - Consolodated tetss - - * reducing line length for lint - - * - updated maxWidth to be percentage - - * Moving DFS migration into it's own file to avoid conflicts. - - * rename migrations - - * left align error report text - - * github got stuck :( - - * rm comment - - * rm margin, add text for no error report - - * fix tests - - * fix ssp case aggregates display - - --------- - - Co-authored-by: Andrew Jameson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: andrew-jameson - Co-authored-by: elipe17 - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: mo sohani - Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - Co-authored-by: Miles Reiter - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit 8de88cd7704e1d8262fbee2dac21fdc6beb13c3e -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Oct 4 14:06:36 2023 -0400 - - Feature/1610.2 frontend parsing status (#2622) - - * saving state real quick - - * finishing merge with latest - - * Missed old test script - - * Added new test, more cleanup - - * Updating unit tests in DFS, preparing for 1610 - - * Merging in Jan's 1610 code for parserError useful-ness - - * Revert "Merging in Jan's 1610 code for parserError useful-ness" - - This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. - - * update to test to use dfs fixture - - * saving state before new 1610 merge - - * Resolving merge conflicts with 1610. - - * Linting changes and comparing to 1610 - - * Some unit test linting but inherited 1610 issues - - * Re-ordering job to run tests vs lint first. - - * Updates to linting and unit tests. - - * Fixing linting. - - * Update tdrs-backend/setup.cfg - - * updates per PR. - - * Excluding trailers for rejection - - * VSCode merge resolution is garbage. - - * Fixing precheck for not implemented types - - * Updating to error-handle not implemented schema types - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Fixed failing test - - * add adminUrl to deployment cypress overrides - - * Adding "beta" banners to relevant error report sections (#2522) - - * Update views.py - - * Update views.py - - * Update SubmissionHistory.jsx - - * Update SubmissionHistory.test.js - - * Apply suggestions from code review - - Co-authored-by: Miles Reiter - - * lint fixes - - --------- - - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * Create sprint-73-summary.md (#2565) - - * hotfix for large file sizes (#2542) - - * hotfix for large file sizes - - * apply timeouts/req limits to dev - - * filter identity pages from scan - - * IGNORE sql injection - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: mo sohani - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - - * updating validation error language - - * accidentally included coding challenge - - * rm comments - - * 2550 deactivation email link (#2557) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding url to email - - * - test code for sandbox - - * - using my email - - * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" - - This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing - changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- using my email" - - This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- test code for sandbox" - - This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update README.md (#2577) - - Add ATO - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Create 2023, Spring - Testing CSV & Excel-based error reports.md - - * Update README.md - - * Updating deliverable links (#2584) - - * User viewset not returning/duplicating users (#2573) - - * - Fixed issue not allowing pagination to work locally with nginx - - Added ordering to user field to fix duplicates issue - - * - fix lint error - - * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update cf os (#2523) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding new dependencies - - * - adding package - - * - fixing broken install - - * - fixing libs - - * - using correct command - - * - gettign correct version of libc - - * - trying to upgrade libs - - * - testing - - * - Updated README and script - - * Revert "- Updated README and script" - - This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. - - * - Removed unnecessary circi stuff - - Removed script - - Updated docs to callout updating secondary apps - - * - Correct spelling error - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Item Number Mismatch (#2578) - - * - Updated schemas and models to reflect correct item numbers of fields - - * - Revert migration - - * - Updated header/trailer item numbers - - * - Fixed item numbers off by one errors - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * pipeline filtering (#2538) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Hotfix Devops/2457 path filtering for documentation (#2597) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - * build and test all on PRs even for documentation - - --------- - - Co-authored-by: George Hudson - - * Create sprint-74-summary.md (#2596) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * added URL filters (#2580) - - * added URL filters - - * allow github to trigger owasp and label deploys (#2601) - - Co-authored-by: George Hudson - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - - * Create sprint-75-summary.md (#2608) - - * Create sprint-76-summary.md (#2609) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * - Resolved failing tests - - * - Corrected merge thrash - - * - Using randbits to generate pk to get around confilcting sequence pks - - * Revert "- Using randbits to generate pk to get around confilcting sequence pks" - - This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. - - * - Updating region in fixture instead of factory - - letting django handle transaction for test - - * - Moved datafile reference to avoid confusion - - * pushing up incomplete codebase - - * Other unit tests now have passed w/ good error handling - - * Working tests, need to get setup for case aggregates populating via DB - - * - Updated queries - - Added helper function - - Need to merge in 2579 for queries to work - - * minor improvement to month2int - - * - Fixing most merge errors - - * - Fixing functions - - * - Updated queries based on generic relation - - * - Updated queries to count by case number instead of record number - - * - Added route - - Updated task to create dfs - - * - updated tests to include dfs - - * Cleaning up most comments that are no longer necessary and fixed lint issues. - - * making minor updates, still broken tests. - - * updating pipfile.lock and rebuild image resolved test issues - - * Reorganizing tests, still failing in test_parse.py - - * deleted summary file, split into other test scripts. - - * Fixed missing self reference. - - * Linting fixes. - - * Found reference failure in deployed env. - - * Removing extra returns for missing record type. - - * lint fix - - * Addressed invocation of datafile for failing test - - * lint update for whitespace - - * Intermediary commit, broken test - - * add reverse relation - - * frontend summary status - - * new assignemnts in util - - * - updated rejected query to correctly count objs - - * - Fixing most tests - - * - Fixed user error. Swapped numbers by accident. - - * - make region None to avoid PK collision - - * - Fix lint errors - - * - Updating to avoid warning - - * add acceptance icon - - * add reverse relationship to summary model - - * vscode merge conflict resolution (#2623) - - * auto-create the external network - - * didn't stage commit properly - - * checking diffs, matching 1613.2 - - * doesn't work in pipeline. must be cached local - - * re-commenting in unit test - - * lint failures fixed - - --------- - - Co-authored-by: andrew-jameson - - * add a pending status - - * add acceptance status tests - - * update warning icon - - * rm old assert - - * update rejected icon - - * url change per me, want pipeline to run e2e - - * Upgraded to querysets, fix PR comments, PE str - - * missing : not caught locally - - * Feat/1613 merge 2 (#2650) - - * Create sprint-78-summary.md (#2645) - - * Missing/unsaved parser_error for record_type - - * removing redundant tests - - * Hopefully resolved on unit tests and lint - - --------- - - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * icontains - - * tests - - * Changing dict structure per 1612. - - * fixed tests and lint issues, parse is too complex - - * schema_manager replaces schema check - - * Saving state prior to merge-conflict. - - * Adopting latest manager, removing old error style. - - * Commented out t6 line during Office hours - - * minor reference update - - * Acclimating to schemaManager - - * lint-fix isinstance - - * syntax mistake with isinstance - - * Apply suggestions from code review - - * reverting search_index merge artifacts. - - * adjusting for removing unused "get-schema()" - - * whitespace lint - - * Feedback from Jan - - * Ensuring tests run/work. - - * Ensure we have leading zero in rptmonthyear. - - * Minor lint fix for exception logging - - * fix migration - - * add backend partially accepted status - - * add frontend partially accepted status - - * add partially accepted test - - * rm accidental commit - - * rm unused variable - - * resolving merge conflict problems - - * fixing tests from merge conflicts. - - * dumb lint fix - - * Update tdrs-backend/tdpservice/parsers/migrations/0007_alter_datafilesummary_datafile.py - - * fix merge errors - - * fix name attr not populated for preparsing errors - - * include preparsing errors in row_precheck_errors status - - * make header precheck errors force rejected status - - * lint msg - - --------- - - Co-authored-by: Andrew Jameson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: andrew-jameson - Co-authored-by: elipe17 - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: mo sohani - Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - Co-authored-by: Miles Reiter - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit fb6cc5f847ad4c2a9e670e3a2ad361af1c9f3ef8 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Sep 29 11:56:31 2023 -0400 - - Feature/1111 tanf section 4 (#2657) - - * - ADding t2 schema - - * - small fixes to naming - - added t2.py - - Updating var names to match field names - - * - Added new doc for T2 - - Updated model fo rT2 - - Added active parse function - - * - Added T3 schema defs - - * - Fixing most lint errors - - * - Updated T3 to multirow record - - * - Added unit test and data files - - updated field names - - * - Updating var names to conform to DB max var name length - - * - Updating based on unit test failure - - * - adding datafile - - * - Adding unit tests for t2 and t3 - - * - Fixed field types - - Updated test file - - * - Removing many migrations to consolodate into one migration - - * Revert "- Removing many migrations to consolodate into one migration" - - This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. - - * - Resolved test issues after merge - - * - Resolve lint errors - - * - Merged 1113.2 - - * - Removed unnecessary file - - * - Rename model fields - - Combined migrations - - * - fixed spelling in test - - * - Fixed lint errors - - * rm commented validators - - * - Updated schema newlines to be consistent - - * - Updated field names - - Updated tests - - Updated migration - - * - consolodating migrations - - * - Updated readme and backup script - - * - Updated parse logic to batch create records - - * - Fixed lint errors - - * - Batching record serialization - - * - Updated parse logic - - * - Adding big s1 datafile - - * - fixing lint errors - - * - Removing test to see if its causing weird failure - - * - Updating based on comments - - Removing big file since circi cant handle it - - * - fixing error in update method - - * - fixing error in update - - * - Removed extraneous seek - - * - updating ignore to ignore patch files - - * - Made evaluate_trailer pure/immutable - - * Revert "- Removing test to see if its causing weird failure" - - This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. - - * - Use custom transactions while parsing - - Handle transaction rollback on parse failure/error - - Update tests to use transaction logic - - Created new decorator to rollback database when assertion error is hit - - Making elastic search log level configurable - - Added test for inter parse rollback - - * - updated store logic to one liner - - updated decorator to catch all exceptions - - updated tests - - * - removed function - - renamed test - - * - refactored multirecord schema to be a schema manager instead - - updated parse functions to use the new layout - - updated bulk create to manage batch size - - * - Name update for clarity - - * - Fix lint errors - - * - Changing batch size to avoid crash in circi - - * - Updated based on review - - Updated tests to reflect line number - - * - Updated based on review/OH - - Added extra transaction safety - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated based on review comments - - * - Updated based on feedback for preparse error handling - - updated tests - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Moved datafile reference to avoid confusion - - * - Updating based on comments. - - Added base class to keep things a little more DRY - - * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. - - * - small optimization for the rollback - - * - Fix lint errors - - * - Removing commented code - - * - Installing build essentials - - * Revert "- Installing build essentials" - - This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. - - * - adding setup tools and wheel - - * Revert "- adding setup tools and wheel" - - This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. - - * - Updating dependencies to get around pep issue - - * - Pin factoryboy - - fix lint error - - * - Updating manifest - - * - Added EncryptedField class - - Updated schema's - - Updated datafiles since all are encrypted - - * - Fix lint errors - - * - Added decryption for ssp - - * - Making the encrypted check stronger - - * - Added section two models, schemas, and an initial test - - * - Allowing fields to be nullable - - * - add missing field - - * - Consolodating migrations - - * - Consolodate migration - - Add tests - - * - Added encrypted field - - * - Refactored fields and rowschema into seperate files - - Updated encrypted field to take decryption function - - * - fix lint errors - - * - Fixed file spacing - - * - fix imports - - fix lint errors - - * - Fix import error - - * - Fix failing test - - * - Revert erroneous change - - * - Updating item numbers - - * - Fixed item numbers - - * - Updating to accomodate item number as string - - * - Removed erroneous update that was causing error - - Fixed whitespace in datafiles - - * - White space error - - * - Resolved error - - * - Fixing test - - * - fix lint errors - - * - Added field validators for T4/T5 - - * - Added cat3 validators - - * - Resolve lint and unit test errors - - * - small optimization to validator - - * - Added tests for cat3 validators for T5 record - - * - Fix lint errors - - * - updated fields to correct types - - * - update race/ethnicity - - * - updated tests post merge - - added check in make_validator to just return false if the value is None - - * - Updated based on review feedback - - * - Fix lint error - - * - Updating to the correct types - - * - Resolve conflicts - - * - Moving field updates to seperate migration to see if they take place - - * Revert "- Moving field updates to seperate migration to see if they take place" - - This reverts commit a3214f23e0bd9cc4cc37ad40e63ae0c98b4ea64b. - - * - Revert migration 15 to original state - - Generate new migration for field alterations - - * - Merged base branch and updated tests/factories - - * - Fixed test - - * - Fixed field names to correspond to model - - * - Remove duplicate function - - Update ssn validator - - Removed asserts with large number of parse errors - - * t7 model, index changes - - * add t7 to parser - - * update model mapping test - - * add s3-s10 - - * - Remove print statemtnt - - * - Resolved filter issue that made it seem like records werent being created - - Added filter to remaining records - - * - fix lint errors - - * - correct form merge conflict - - * - Added specific validators to avoid duplication - - Updated naming of validators - - * TANF Section 3 Parsing/Validation (#2649) - - * - Updated to support parsing section 3 data - - * - Added validators and tests for T6 record - - * - resolve lint errors - - * - Quick rename - - * - Update fields in test - - * - Fixed conflict - - * - Fix error from merge conflict - - * - Updated to create RPT_MONTH_YEAR from CALENDAR_QUARTER - - Updated tests - - * - Added new validators for field change - - * - Remove debug code - - * - Genericize TransformField - - Update all schemas to use TransformField - - Move transforms to seperate file - - Fix lint errors - - * - put kwargs in correct spot - - * - Very minor change to avoid setting field unnecessarily on all TransformFields - - * - Updated validator to call out name of field versus the value - - Updated tests - - * - Fix lint - - * - Calling super to avoid duplicate code - - * - Added validators for transformed field - - * - Updating based on merge - - * - Fixed remaining merge conflicts - - * - Fix lint errors - - * - update error messages based on validator updates - - * - Corrected validator - - * - Resolved bug causing file to think it was encrytped after multiple submissions and changing the encryption header in between submissions - - * - UPdated migration - - Updated test - - * - Added transform fields - - UPdated migrations - - * - Stratified T7 to one record per month per section indicator and stratum. - - * - Updated tests - - * - Fix test - - * - Add T7 factory - - * - Fix lint error - - * - Remove test class until cat three validators exist - - * - fix lint errors - - * - Fixing colliding migration - - * - Generating schemas instead of defining - - * - Fix lint errors - - * - Updated based on review feedback - - * rm 17/18 - - * remake migration 18 - - * fix merge error - - * fix merge error - - * fix merge error - - * labels are stuck - - * rm - - * dont compute aggregates for section 3/4 - - * move save - - * Update tdrs-backend/tdpservice/parsers/test/factories.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * enhance t7 modeladmin - - * fix rpt_month_year off by 1 - - * lint - - * differentiate item 6a/6b/67 in t7 records - - --------- - - Co-authored-by: elipe17 - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> - -commit 8289c015dc9aa9992cfc23cb731645fbbaf8fc69 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu Sep 28 14:46:59 2023 -0400 - - DB-drop-and-reset-write-down (#2710) - - * added md file for dropping DB - - * added section for db_backup & merged into README - - * Update CloudFoundry-DB-Connection.md - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit c94b8f7302733767e6cd3b69adaf92e0aa4dede7 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Sep 28 10:57:06 2023 -0700 - - Create sprint-81-summary.md (#2715) - -commit 43cb33d537cb77d82567078f94126a6e54ac043c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Sep 25 14:42:27 2023 -0400 - - 1613 - DataFileSummary w/ Case Aggregates (#2612) - - * saving state real quick - - * finishing merge with latest - - * Missed old test script - - * Added new test, more cleanup - - * Updating unit tests in DFS, preparing for 1610 - - * Merging in Jan's 1610 code for parserError useful-ness - - * Revert "Merging in Jan's 1610 code for parserError useful-ness" - - This reverts commit c5796da69d0e9a6d356057550378d536e2be5f8b. - - * update to test to use dfs fixture - - * saving state before new 1610 merge - - * Resolving merge conflicts with 1610. - - * Linting changes and comparing to 1610 - - * Some unit test linting but inherited 1610 issues - - * Re-ordering job to run tests vs lint first. - - * Updates to linting and unit tests. - - * Fixing linting. - - * Update tdrs-backend/setup.cfg - - * updates per PR. - - * Excluding trailers for rejection - - * VSCode merge resolution is garbage. - - * Fixing precheck for not implemented types - - * Updating to error-handle not implemented schema types - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Fixed failing test - - * add adminUrl to deployment cypress overrides - - * Adding "beta" banners to relevant error report sections (#2522) - - * Update views.py - - * Update views.py - - * Update SubmissionHistory.jsx - - * Update SubmissionHistory.test.js - - * Apply suggestions from code review - - Co-authored-by: Miles Reiter - - * lint fixes - - --------- - - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * Create sprint-73-summary.md (#2565) - - * hotfix for large file sizes (#2542) - - * hotfix for large file sizes - - * apply timeouts/req limits to dev - - * filter identity pages from scan - - * IGNORE sql injection - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: mo sohani - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - - * updating validation error language - - * accidentally included coding challenge - - * rm comments - - * 2550 deactivation email link (#2557) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding url to email - - * - test code for sandbox - - * - using my email - - * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" - - This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing - changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- using my email" - - This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- test code for sandbox" - - This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update README.md (#2577) - - Add ATO - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Create 2023, Spring - Testing CSV & Excel-based error reports.md - - * Update README.md - - * Updating deliverable links (#2584) - - * User viewset not returning/duplicating users (#2573) - - * - Fixed issue not allowing pagination to work locally with nginx - - Added ordering to user field to fix duplicates issue - - * - fix lint error - - * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Update cf os (#2523) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding new dependencies - - * - adding package - - * - fixing broken install - - * - fixing libs - - * - using correct command - - * - gettign correct version of libc - - * - trying to upgrade libs - - * - testing - - * - Updated README and script - - * Revert "- Updated README and script" - - This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. - - * - Removed unnecessary circi stuff - - Removed script - - Updated docs to callout updating secondary apps - - * - Correct spelling error - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Item Number Mismatch (#2578) - - * - Updated schemas and models to reflect correct item numbers of fields - - * - Revert migration - - * - Updated header/trailer item numbers - - * - Fixed item numbers off by one errors - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * pipeline filtering (#2538) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * Hotfix Devops/2457 path filtering for documentation (#2597) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - * build and test all on PRs even for documentation - - --------- - - Co-authored-by: George Hudson - - * Create sprint-74-summary.md (#2596) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * added URL filters (#2580) - - * added URL filters - - * allow github to trigger owasp and label deploys (#2601) - - Co-authored-by: George Hudson - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - - * Create sprint-75-summary.md (#2608) - - * Create sprint-76-summary.md (#2609) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * - Resolved failing tests - - * - Corrected merge thrash - - * - Using randbits to generate pk to get around confilcting sequence pks - - * Revert "- Using randbits to generate pk to get around confilcting sequence pks" - - This reverts commit ac9b0659a62f64c4114c41faf0baa659a92be07c. - - * - Updating region in fixture instead of factory - - letting django handle transaction for test - - * - Moved datafile reference to avoid confusion - - * pushing up incomplete codebase - - * Other unit tests now have passed w/ good error handling - - * Working tests, need to get setup for case aggregates populating via DB - - * - Updated queries - - Added helper function - - Need to merge in 2579 for queries to work - - * minor improvement to month2int - - * - Fixing most merge errors - - * - Fixing functions - - * - Updated queries based on generic relation - - * - Updated queries to count by case number instead of record number - - * - Added route - - Updated task to create dfs - - * - updated tests to include dfs - - * Cleaning up most comments that are no longer necessary and fixed lint issues. - - * making minor updates, still broken tests. - - * updating pipfile.lock and rebuild image resolved test issues - - * Reorganizing tests, still failing in test_parse.py - - * deleted summary file, split into other test scripts. - - * Fixed missing self reference. - - * Linting fixes. - - * Found reference failure in deployed env. - - * Removing extra returns for missing record type. - - * lint fix - - * Addressed invocation of datafile for failing test - - * lint update for whitespace - - * Intermediary commit, broken test - - * new assignemnts in util - - * - updated rejected query to correctly count objs - - * - Fixing most tests - - * - Fixed user error. Swapped numbers by accident. - - * - make region None to avoid PK collision - - * - Fix lint errors - - * - Updating to avoid warning - - * vscode merge conflict resolution (#2623) - - * auto-create the external network - - * didn't stage commit properly - - * checking diffs, matching 1613.2 - - * doesn't work in pipeline. must be cached local - - * re-commenting in unit test - - * lint failures fixed - - --------- - - Co-authored-by: andrew-jameson - - * url change per me, want pipeline to run e2e - - * Upgraded to querysets, fix PR comments, PE str - - * missing : not caught locally - - * Feat/1613 merge 2 (#2650) - - * Create sprint-78-summary.md (#2645) - - * Missing/unsaved parser_error for record_type - - * removing redundant tests - - * Hopefully resolved on unit tests and lint - - --------- - - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: andrew-jameson - - * icontains - - * tests - - * Changing dict structure per 1612. - - * fixed tests and lint issues, parse is too complex - - * schema_manager replaces schema check - - * Saving state prior to merge-conflict. - - * Adopting latest manager, removing old error style. - - * Commented out t6 line during Office hours - - * minor reference update - - * Acclimating to schemaManager - - * lint-fix isinstance - - * syntax mistake with isinstance - - * Apply suggestions from code review - - * reverting search_index merge artifacts. - - * adjusting for removing unused "get-schema()" - - * whitespace lint - - * Feedback from Jan - - * Ensuring tests run/work. - - * Ensure we have leading zero in rptmonthyear. - - * Minor lint fix for exception logging - - * resolving merge conflict problems - - * fixing tests from merge conflicts. - - * dumb lint fix - - * reducing line length for lint - - * Moving DFS migration into it's own file to avoid conflicts. - - --------- - - Co-authored-by: andrew-jameson - Co-authored-by: elipe17 - Co-authored-by: Jan Timpe - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - Co-authored-by: mo sohani - Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - Co-authored-by: Miles Reiter - Co-authored-by: George Hudson - Co-authored-by: George Hudson - Co-authored-by: raftmsohani <97037188+raftmsohani@users.noreply.github.com> - -commit bf2cf1211de07ddabb198bdc4ad6604323551e1b -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Sep 20 13:48:14 2023 -0400 - - Reverted migrations to reflect what exists in prod (#2703) - -commit 4d5ed4b20b15a659da93cf1a6a8682b37e5a9ef7 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Mon Sep 18 09:31:56 2023 -0700 - - Create sprint-80-summary.md (#2694) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 539007ae1b08d6acb97c74badeb6e5bf1d486c42 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Sep 12 03:34:37 2023 -0600 - - Parser Logging (#2665) - - * - Added custom formatter - - Added specific log config for parsing - - Added logging throughout parsing - - * - Addding tty to docker - - Update colors - - * - Added more logging based on discussion. - - * - Small updates to logs/color - - * - Fix lint errors - - * - Added repr/str for datafile - - Updated repr/str for parsererror - - UPdated based on review comments - - * - fix lint errors - - * - Updated based on review comments - - * - Updating buildpack - - * Revert "- Updating buildpack" - - This reverts commit 9854dcb69461feacfc55e0cff672be42b0e9e1b2. - - * - extra logging message - - * Revert "- extra logging message" - - This reverts commit 8f19e952ddc2d76647c0da965881ba0c152fb416. - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit d66ec4336ec3f76db34703cce8c4596680559685 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Sep 6 10:56:26 2023 -0400 - - added migrate command to gunicorn_start (#2686) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 6fb815c457181aedf85d1324a54322a0bed8fa00 -Author: George Hudson -Date: Wed Sep 6 09:26:58 2023 -0500 - - ZAP Scan ignores for SQL Injection (#2679) - - * Added Active SQL and Hidden File Finder to IGNORE list and updated documentation explaining why and process for reports - - * added examples of using postman - - --------- - - Co-authored-by: George Hudson - -commit bc61ab2ac4f0ae8210382316f4f42d50a4d482f3 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 5 11:58:48 2023 -0400 - - let's try diff orb versions (#2692) - - * let's try diff orb versions - - * Update base_config.yml - -commit 9c7ed6a989137ed2524a21baead5d87ba90871bc -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Aug 31 08:58:13 2023 -0600 - - TANF Section 2 Validation (#2633) - - * - ADding t2 schema - - * - small fixes to naming - - added t2.py - - Updating var names to match field names - - * - Added new doc for T2 - - Updated model fo rT2 - - Added active parse function - - * - Added T3 schema defs - - * - Fixing most lint errors - - * - Updated T3 to multirow record - - * - Added unit test and data files - - updated field names - - * - Updating var names to conform to DB max var name length - - * - Updating based on unit test failure - - * - adding datafile - - * - Adding unit tests for t2 and t3 - - * - Fixed field types - - Updated test file - - * - Removing many migrations to consolodate into one migration - - * Revert "- Removing many migrations to consolodate into one migration" - - This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. - - * - Resolved test issues after merge - - * - Resolve lint errors - - * - Merged 1113.2 - - * - Removed unnecessary file - - * - Rename model fields - - Combined migrations - - * - fixed spelling in test - - * - Fixed lint errors - - * rm commented validators - - * - Updated schema newlines to be consistent - - * - Updated field names - - Updated tests - - Updated migration - - * - consolodating migrations - - * - Updated readme and backup script - - * - Updated parse logic to batch create records - - * - Fixed lint errors - - * - Batching record serialization - - * - Updated parse logic - - * - Adding big s1 datafile - - * - fixing lint errors - - * - Removing test to see if its causing weird failure - - * - Updating based on comments - - Removing big file since circi cant handle it - - * - fixing error in update method - - * - fixing error in update - - * - Removed extraneous seek - - * - updating ignore to ignore patch files - - * - Made evaluate_trailer pure/immutable - - * Revert "- Removing test to see if its causing weird failure" - - This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. - - * - Use custom transactions while parsing - - Handle transaction rollback on parse failure/error - - Update tests to use transaction logic - - Created new decorator to rollback database when assertion error is hit - - Making elastic search log level configurable - - Added test for inter parse rollback - - * - updated store logic to one liner - - updated decorator to catch all exceptions - - updated tests - - * - removed function - - renamed test - - * - refactored multirecord schema to be a schema manager instead - - updated parse functions to use the new layout - - updated bulk create to manage batch size - - * - Name update for clarity - - * - Fix lint errors - - * - Changing batch size to avoid crash in circi - - * - Updated based on review - - Updated tests to reflect line number - - * - Updated based on review/OH - - Added extra transaction safety - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated based on review comments - - * - Updated based on feedback for preparse error handling - - updated tests - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Moved datafile reference to avoid confusion - - * - Updating based on comments. - - Added base class to keep things a little more DRY - - * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. - - * - small optimization for the rollback - - * - Fix lint errors - - * - Removing commented code - - * - Installing build essentials - - * Revert "- Installing build essentials" - - This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. - - * - adding setup tools and wheel - - * Revert "- adding setup tools and wheel" - - This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. - - * - Updating dependencies to get around pep issue - - * - Pin factoryboy - - fix lint error - - * - Updating manifest - - * - Added EncryptedField class - - Updated schema's - - Updated datafiles since all are encrypted - - * - Fix lint errors - - * - Added decryption for ssp - - * - Making the encrypted check stronger - - * - Added section two models, schemas, and an initial test - - * - Allowing fields to be nullable - - * - add missing field - - * - Consolodating migrations - - * - Consolodate migration - - Add tests - - * - Added encrypted field - - * - Refactored fields and rowschema into seperate files - - Updated encrypted field to take decryption function - - * - fix lint errors - - * - Fixed file spacing - - * - fix imports - - fix lint errors - - * - Fix import error - - * - Fix failing test - - * - Revert erroneous change - - * - Updating item numbers - - * - Fixed item numbers - - * - Updating to accomodate item number as string - - * - Removed erroneous update that was causing error - - Fixed whitespace in datafiles - - * - White space error - - * - Resolved error - - * - Fixing test - - * - fix lint errors - - * - Added field validators for T4/T5 - - * - Added cat3 validators - - * - Resolve lint and unit test errors - - * - small optimization to validator - - * - Added tests for cat3 validators for T5 record - - * - Fix lint errors - - * - updated fields to correct types - - * - update race/ethnicity - - * - updated tests post merge - - added check in make_validator to just return false if the value is None - - * - Updated based on review feedback - - * - Fix lint error - - * - Updating to the correct types - - * - Resolve conflicts - - * - Moving field updates to seperate migration to see if they take place - - * Revert "- Moving field updates to seperate migration to see if they take place" - - This reverts commit a3214f23e0bd9cc4cc37ad40e63ae0c98b4ea64b. - - * - Revert migration 15 to original state - - Generate new migration for field alterations - - * - Merged base branch and updated tests/factories - - * - Fixed test - - * - Fixed field names to correspond to model - - * - Remove duplicate function - - Update ssn validator - - Removed asserts with large number of parse errors - - * - Remove print statemtnt - - * - Resolved filter issue that made it seem like records werent being created - - Added filter to remaining records - - * - fix lint errors - - * - correct form merge conflict - - * - Added specific validators to avoid duplication - - Updated naming of validators - - * TANF Section 3 Parsing/Validation (#2649) - - * - Updated to support parsing section 3 data - - * - Added validators and tests for T6 record - - * - resolve lint errors - - * - Quick rename - - * - Update fields in test - - * - Fixed conflict - - * - Fix error from merge conflict - - * - Updated to create RPT_MONTH_YEAR from CALENDAR_QUARTER - - Updated tests - - * - Added new validators for field change - - * - Remove debug code - - * - Genericize TransformField - - Update all schemas to use TransformField - - Move transforms to seperate file - - Fix lint errors - - * - put kwargs in correct spot - - * - Very minor change to avoid setting field unnecessarily on all TransformFields - - * - Updated validator to call out name of field versus the value - - Updated tests - - * - Fix lint - - * - Calling super to avoid duplicate code - - * - Added validators for transformed field - - * - Updating based on merge - - * - Fixed remaining merge conflicts - - * - Fix lint errors - - * - update error messages based on validator updates - - * - Corrected validator - - * - Resolved bug causing file to think it was encrytped after multiple submissions and changing the encryption header in between submissions - - * - Made case number validators consistent - - * - Converging validators between sections - - * - Updating based on review comments - - * - Fix paren error - - * - Removed extra dot - - * - Updating validator - - * - updating race conditional validators - - * - corrected validator - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 824b05a7b92f252d2edd6fb1bf60241e314054a8 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Aug 29 14:03:01 2023 -0400 - - Sendgrid adr (#2678) - - * sendgrid adr - - * update name - - * update adr title - - * Update docs/Technical-Documentation/Architecture-Decision-Record/021-sendgrid.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 04e9f677d5e77dc55d30b2c5221540bd900ffa7d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 28 13:55:38 2023 -0400 - - Create spike.md (#2671) - -commit 2dfc993c023c09b7d66ae38f56a5357d591e8d97 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Aug 25 14:15:59 2023 -0400 - - 2369-quality-checks-across-TANF-section (#2518) - - * first commit - - * - add cat3 validator for t1 - - * - Added cat3 validators for T1 - - * - Added test class for cat3 validators - - * - Updated test to validate all branches in validators - - * - Fixed lint errors - - * - updating num expected errors - - * added cross complex validators - - * - Added remainign cat3 validators - - Added test for validators - - * added validations - - * Corrected fields and validations - - * t1 changes - - * adedd all T1 validations - - * T1 validations finished - - * T2 validators still missing two - - * linting - - * - Updated validator logic - - added cat3 t3 validators - - added new validators - - * - Updated validator logic - - * - Fixed lint errors - - Fixed validator logic - - updated tests to use new validator format - - Updated schemas to use correct validators - - * - Updated model field to correct type - - Updated tests per validation changes - - * - removed unnecessary prints - - * - Fix lint errors - - * validated against excel file - - * corrections on validators - - * linting - - * unit tests - - * correct isBlank - - * correction on cross validations - - * added cross valitors and applied corrections - - * linting - - * changed if_then validator to correct the logic - - * corrections a test - - * added missing validators for t3 child one - - * added migration to e2e job - - * - Resolving type issues - - Most validators updated - - * - Updating remaining validators - - * - Updated field types - - FIxed failing tests/validators - - * - Resolved conflicts/test issues - - * - Fixing validators - - * - Updated validators to respect field changes - - * - updating validator tests - - * - Fix lint errors - - * Update jobs.yml - - corrected backend directory name - - * SSN refactor notOneOf - - * - Updated based on review comments - - * - Updated based on review comments - - * - Fix lint errors - - * - Removing accidental file commit - - * requested change & added extention 2 or validator - - * - Fix lint errors - - * - fixing randomness of test - - * added missing 9 in the ranges for SSN - - * leading zeros for ZIP_CODE - - * - Resolved bug causing missing parser errors - - Updated tests to reflect record index - - * correction on isInLimits validator - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-backend/tdpservice/parsers/schema_defs/tanf/t1.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - --------- - - Co-authored-by: elipe17 - Co-authored-by: andrew-jameson - Co-authored-by: msohanifr - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit a98501853773d1ee696763dce027fca41c351c94 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Aug 24 10:32:13 2023 -0400 - - Fix deployment cypress failures (#2652) - - * add the required Referer header - - * improve stt lookup reliability - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit dc956a068121a40d039ad655026e95a55635d6c6 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu Aug 24 09:59:39 2023 -0400 - - 2282-file-upload-integration-test (#2634) - - * added the logic for uploading the file - - * uploading file - - * upload test with sucess message - - * Update accounts.js - - * Update accounts.js linting - - * separating the file_upload - -commit a980d1c2ed0466f6371b072e1f8d0515bfa4414f -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Aug 17 11:25:36 2023 -0700 - - Create sprint-79-summary.md (#2670) - -commit 63e84c0ef31aa9f7869d0d6b3ad7b15f9c554e11 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 17 09:52:36 2023 -0400 - - Hotfix/aug data deadline correction (#2668) - - * updated deadline in docs - - * updated deadline for aug on homepage - -commit c518e1ed501405ca7e4493643e8ba89e58e4a53e -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Aug 16 10:56:44 2023 -0400 - - Feature/sendgrid (#2613) - - * add sendgrid lib - - * update settings - - * sendgrid sandbox off - - * use sendgrid backend for send - - * lint - - * adds api key to local - - * re-enable task - - * temporarily comment - - * update from address - - * remove comments and unused shared_task - - * use automated_email synchronously - - * fix tests - - * test name - - * rm old vars - - * use new sendgrid api lib - - * add + impl custom email backend - - * update tests to be synchronous - - * rm local email config - - * fix lint - - * update local compose - -commit 1edfe45a0a359083252d80dcb6d0fd08debd2023 -Author: George Hudson -Date: Tue Aug 15 08:09:00 2023 -0600 - - updating to latest zapscanner container version (2.13.0) and removed endpoint to be tested from the global exclude list (#2659) - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 8398fde7756b4ff720e3075b2b0c8038e086897a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 15 09:40:24 2023 -0400 - - Updating nginx to latest stable version (#2653) - - * Updating to latest stable version - - * Update manifest.buildpack.yml - - * Update buildpack-changelog.md - - --------- - - Co-authored-by: andrew-jameson - -commit 713b0570e81ec9ea54d1521147095148341d7531 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Aug 9 12:40:22 2023 -0600 - - 1109 tanf section2 (#2628) - - * - ADding t2 schema - - * - small fixes to naming - - added t2.py - - Updating var names to match field names - - * - Added new doc for T2 - - Updated model fo rT2 - - Added active parse function - - * - Added T3 schema defs - - * - Fixing most lint errors - - * - Updated T3 to multirow record - - * - Added unit test and data files - - updated field names - - * - Updating var names to conform to DB max var name length - - * - Updating based on unit test failure - - * - adding datafile - - * - Adding unit tests for t2 and t3 - - * - Fixed field types - - Updated test file - - * - Removing many migrations to consolodate into one migration - - * Revert "- Removing many migrations to consolodate into one migration" - - This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. - - * - Resolved test issues after merge - - * - Resolve lint errors - - * - Merged 1113.2 - - * - Removed unnecessary file - - * - Rename model fields - - Combined migrations - - * - fixed spelling in test - - * - Fixed lint errors - - * rm commented validators - - * - Updated schema newlines to be consistent - - * - Updated field names - - Updated tests - - Updated migration - - * - consolodating migrations - - * - Updated readme and backup script - - * - Updated parse logic to batch create records - - * - Fixed lint errors - - * - Batching record serialization - - * - Updated parse logic - - * - Adding big s1 datafile - - * - fixing lint errors - - * - Removing test to see if its causing weird failure - - * - Updating based on comments - - Removing big file since circi cant handle it - - * - fixing error in update method - - * - fixing error in update - - * - Removed extraneous seek - - * - updating ignore to ignore patch files - - * - Made evaluate_trailer pure/immutable - - * Revert "- Removing test to see if its causing weird failure" - - This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. - - * - Use custom transactions while parsing - - Handle transaction rollback on parse failure/error - - Update tests to use transaction logic - - Created new decorator to rollback database when assertion error is hit - - Making elastic search log level configurable - - Added test for inter parse rollback - - * - updated store logic to one liner - - updated decorator to catch all exceptions - - updated tests - - * - removed function - - renamed test - - * - refactored multirecord schema to be a schema manager instead - - updated parse functions to use the new layout - - updated bulk create to manage batch size - - * - Name update for clarity - - * - Fix lint errors - - * - Changing batch size to avoid crash in circi - - * - Updated based on review - - Updated tests to reflect line number - - * - Updated based on review/OH - - Added extra transaction safety - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated based on review comments - - * - Updated based on feedback for preparse error handling - - updated tests - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Moved datafile reference to avoid confusion - - * - Updating based on comments. - - Added base class to keep things a little more DRY - - * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. - - * - small optimization for the rollback - - * - Fix lint errors - - * - Removing commented code - - * - Installing build essentials - - * Revert "- Installing build essentials" - - This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. - - * - adding setup tools and wheel - - * Revert "- adding setup tools and wheel" - - This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. - - * - Updating dependencies to get around pep issue - - * - Pin factoryboy - - fix lint error - - * - Updating manifest - - * - Added EncryptedField class - - Updated schema's - - Updated datafiles since all are encrypted - - * - Fix lint errors - - * - Added decryption for ssp - - * - Making the encrypted check stronger - - * - Added section two models, schemas, and an initial test - - * - Allowing fields to be nullable - - * - add missing field - - * - Consolodating migrations - - * - Consolodate migration - - Add tests - - * - Added encrypted field - - * - Refactored fields and rowschema into seperate files - - Updated encrypted field to take decryption function - - * - fix lint errors - - * - Fixed file spacing - - * - fix imports - - fix lint errors - - * - Fix import error - - * - Fix failing test - - * - Revert erroneous change - - * - Updating item numbers - - * - Fixed item numbers - - * - Updating to accomodate item number as string - - * - Removed erroneous update that was causing error - - Fixed whitespace in datafiles - - * - White space error - - * - Resolved error - - * - Fixing test - - * - fix lint errors - - * - updated fields to correct types - - * - update race/ethnicity - - * - Updating to the correct types - - * - Resolve conflicts - - * - Moving field updates to seperate migration to see if they take place - - * Revert "- Moving field updates to seperate migration to see if they take place" - - This reverts commit a3214f23e0bd9cc4cc37ad40e63ae0c98b4ea64b. - - * - Revert migration 15 to original state - - Generate new migration for field alterations - - * - Fixed field names to correspond to model - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 72a1c84e37ec2bf87551ca96dd70c2736b2db9f1 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Aug 8 12:06:55 2023 -0400 - - Bugfix test download text file (#2651) - - * added global temp directory to conftest - - * Update conftest.py - linting - -commit 1f9f4eb92e05ee4b932a148b1932145a7d27e3c9 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Mon Aug 7 09:47:37 2023 -0700 - - Create sprint-78-summary.md (#2645) - -commit c5ecb04ffefe58c5c8030f07a74ab09874310355 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Aug 2 08:56:46 2023 -0700 - - Create sprint-77-summary.md (#2638) - -commit bca5d8bcb07d08b1daab5e4b545fc55c8bb706c9 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Aug 1 11:02:52 2023 -0400 - - 2618 nginx config site down (#2635) - - * maintenance page config andstatic html - - * added Nginx template - - * corrected the path - - * changed the returning page - - * Adds hard-coded banner & a11y tweaks - - - Adds a skip to main link - - Adds prod-banner - - Adds uswds.min.js (from knowledge center) to make the banner expand work - - Removes list elements from around contact us button so it doesn't read as a single item list in screenreaders - - --------- - - Co-authored-by: Miles Reiter - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 3265cfd8dc019124854b2c65890fc48c649b4e80 -Author: George Hudson -Date: Tue Aug 1 07:04:11 2023 -0600 - - moved erd and infrastructure workflows into nested jobs in deploy (#2632) - - * moved erd and infrastructure workflows into nested jobs in deploy - - * forgot to save commands file - - * keeping make_erd job and commands definitions in separate folder - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 51fd924c940834e1fdbda469a0ad25edee4de996 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Aug 1 06:21:23 2023 -0600 - - SSN Encryption/Decryption (#2624) - - * - ADding t2 schema - - * - small fixes to naming - - added t2.py - - Updating var names to match field names - - * - Added new doc for T2 - - Updated model fo rT2 - - Added active parse function - - * - Added T3 schema defs - - * - Fixing most lint errors - - * - Updated T3 to multirow record - - * - Added unit test and data files - - updated field names - - * - Updating var names to conform to DB max var name length - - * - Updating based on unit test failure - - * - adding datafile - - * - Adding unit tests for t2 and t3 - - * - Fixed field types - - Updated test file - - * - Removing many migrations to consolodate into one migration - - * Revert "- Removing many migrations to consolodate into one migration" - - This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. - - * - Resolved test issues after merge - - * - Resolve lint errors - - * - Merged 1113.2 - - * - Removed unnecessary file - - * - Rename model fields - - Combined migrations - - * - fixed spelling in test - - * - Fixed lint errors - - * rm commented validators - - * - Updated schema newlines to be consistent - - * - Updated field names - - Updated tests - - Updated migration - - * - consolodating migrations - - * - Updated readme and backup script - - * - Updated parse logic to batch create records - - * - Fixed lint errors - - * - Batching record serialization - - * - Updated parse logic - - * - Adding big s1 datafile - - * - fixing lint errors - - * - Removing test to see if its causing weird failure - - * - Updating based on comments - - Removing big file since circi cant handle it - - * - fixing error in update method - - * - fixing error in update - - * - Removed extraneous seek - - * - updating ignore to ignore patch files - - * - Made evaluate_trailer pure/immutable - - * Revert "- Removing test to see if its causing weird failure" - - This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. - - * - Use custom transactions while parsing - - Handle transaction rollback on parse failure/error - - Update tests to use transaction logic - - Created new decorator to rollback database when assertion error is hit - - Making elastic search log level configurable - - Added test for inter parse rollback - - * - updated store logic to one liner - - updated decorator to catch all exceptions - - updated tests - - * - removed function - - renamed test - - * - refactored multirecord schema to be a schema manager instead - - updated parse functions to use the new layout - - updated bulk create to manage batch size - - * - Name update for clarity - - * - Fix lint errors - - * - Changing batch size to avoid crash in circi - - * - Updated based on review - - Updated tests to reflect line number - - * - Updated based on review/OH - - Added extra transaction safety - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated based on review comments - - * - Updated based on feedback for preparse error handling - - updated tests - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Moved datafile reference to avoid confusion - - * - Updating based on comments. - - Added base class to keep things a little more DRY - - * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. - - * - small optimization for the rollback - - * - Fix lint errors - - * - Removing commented code - - * - Installing build essentials - - * Revert "- Installing build essentials" - - This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. - - * - adding setup tools and wheel - - * Revert "- adding setup tools and wheel" - - This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. - - * - Updating dependencies to get around pep issue - - * - Pin factoryboy - - fix lint error - - * - Updating manifest - - * - Added EncryptedField class - - Updated schema's - - Updated datafiles since all are encrypted - - * - Fix lint errors - - * - Added decryption for ssp - - * - Making the encrypted check stronger - - * - Refactored fields and rowschema into seperate files - - Updated encrypted field to take decryption function - - * - fix lint errors - - * - Fix import error - - * - Removed erroneous update that was causing error - - Fixed whitespace in datafiles - - * - White space error - - * - Resolved error - - * - Refactored encryption logic to take the header encryption indicator into account - - * - Fix lint errors - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 2c030a9c3d542a08f3662f39e79ee34af74ed68d -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Jul 28 10:59:50 2023 -0400 - - 2598-staging-deployment-failure-issue (#2619) - - * disable migration and added timeout - - * added migrations to e2e pipeline - - * changed migration order - - * corrected directory - - * changed location of running commands for migration - - * reverted the migration back for checking the e2e - - * after waitfor - - * migration in docker-compose - - * rempved unused jobs - - * added -run back - - * check backend - - * added migration to docker-compose - - * testing - - * added populate stts - - * increased thetimeout - - * timeout - - * removed migration from Dockerfile - - * correction - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit aa10d876eb3ca0eb352e2b463064418eb8bb3a07 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Jul 26 07:13:02 2023 -0600 - - Feat/2486 - Parser Performance Improvement (#2548) - - * - ADding t2 schema - - * - small fixes to naming - - added t2.py - - Updating var names to match field names - - * - Added new doc for T2 - - Updated model fo rT2 - - Added active parse function - - * - Added T3 schema defs - - * - Fixing most lint errors - - * - Updated T3 to multirow record - - * - Added unit test and data files - - updated field names - - * - Updating var names to conform to DB max var name length - - * - Updating based on unit test failure - - * - adding datafile - - * - Adding unit tests for t2 and t3 - - * - Fixed field types - - Updated test file - - * - Removing many migrations to consolodate into one migration - - * Revert "- Removing many migrations to consolodate into one migration" - - This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. - - * - Resolved test issues after merge - - * - Resolve lint errors - - * - Merged 1113.2 - - * - Removed unnecessary file - - * - Rename model fields - - Combined migrations - - * - fixed spelling in test - - * - Fixed lint errors - - * rm commented validators - - * - Updated schema newlines to be consistent - - * - Updated field names - - Updated tests - - Updated migration - - * - consolodating migrations - - * - Updated readme and backup script - - * - Updated parse logic to batch create records - - * - Fixed lint errors - - * - Batching record serialization - - * - Updated parse logic - - * - Adding big s1 datafile - - * - fixing lint errors - - * - Removing test to see if its causing weird failure - - * - Updating based on comments - - Removing big file since circi cant handle it - - * - fixing error in update method - - * - fixing error in update - - * - Removed extraneous seek - - * - updating ignore to ignore patch files - - * - Made evaluate_trailer pure/immutable - - * Revert "- Removing test to see if its causing weird failure" - - This reverts commit 64b78b737c97fb9bfa70217ff70ccffea8d85429. - - * - Use custom transactions while parsing - - Handle transaction rollback on parse failure/error - - Update tests to use transaction logic - - Created new decorator to rollback database when assertion error is hit - - Making elastic search log level configurable - - Added test for inter parse rollback - - * - updated store logic to one liner - - updated decorator to catch all exceptions - - updated tests - - * - removed function - - renamed test - - * - refactored multirecord schema to be a schema manager instead - - updated parse functions to use the new layout - - updated bulk create to manage batch size - - * - Name update for clarity - - * - Fix lint errors - - * - Changing batch size to avoid crash in circi - - * - Updated based on review - - Updated tests to reflect line number - - * - Updated based on review/OH - - Added extra transaction safety - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated based on review comments - - * - Updated based on feedback for preparse error handling - - updated tests - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Moved datafile reference to avoid confusion - - * - Updating based on comments. - - Added base class to keep things a little more DRY - - * - Refactored parsing to avoid custom transactions by leveraging the FK on the records. Rollbacks are a lot slower now, but hopefully that will happen much less versus successful parses. - - * - small optimization for the rollback - - * - Fix lint errors - - * - Removing commented code - - * - Installing build essentials - - * Revert "- Installing build essentials" - - This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. - - * - adding setup tools and wheel - - * Revert "- adding setup tools and wheel" - - This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. - - * - Updating dependencies to get around pep issue - - * - Pin factoryboy - - fix lint error - - * - Updating manifest - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit d05a6fbf804f6f6e6a84dcc4b3023e0cf88bc439 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Jul 18 14:39:22 2023 -0600 - - 2579 latest data (#2607) - - * - Updated view to show latest datafiles - - Added admin filter to show newest or all datafile records - - Updated indices to allow easier elastic queries - - * - Updated search indices to have parent FK - - * - Fix lint errors - - * - Updated submission tests - - Moved create_datafile to util - - * - fix lint errors - - * - removing frontend filtering - - * - addding datafile to admin model - - * Revert "- addding datafile to admin model" - - This reverts commit 35a6f24c36c3a4c00ddcfc40f20833530b0199f4. - - * - Fixed issue where datafile FK wasnt populating - - Regenerated migration - - * - Readding datafile back to admin view now that the error is resolved - - * - adding datafile back - - * Revert "- Readding datafile back to admin view now that the error is resolved" - - This reverts commit 2807425059fd1b5b355edfb16d30d170cf869d7b. - - * - Removed unnecessary fields - - Updated dependencies - - Updated filter - - * - Updated document to include required fields - - * - Moved datafile reference to avoid confusion - - * - Updating based on comments. - - Added base class to keep things a little more DRY - - * - Installing build essentials - - * Revert "- Installing build essentials" - - This reverts commit 782a5f7d687e60965a9100520f027b9678dbac35. - - * - adding setup tools and wheel - - * Revert "- adding setup tools and wheel" - - This reverts commit f529728811fba242132b7c42f9e9e09d6037fa70. - - * - Updating dependencies to get around pep issue - - * - Pin factoryboy - - fix lint error - - * - Added missing filter - -commit 8a01767865db9cad134879fb8c81e68080bc72e3 -Author: George Hudson -Date: Mon Jul 10 13:39:14 2023 -0600 - - setup can trigger by circleci for develop branch for nightly scans to… (#2610) - - * setup can trigger by circleci for develop branch for nightly scans to run now - - * quick test - - * removing hotfix branch from tracked branches after successful test - - --------- - - Co-authored-by: George Hudson - -commit 48734a9339a2ee02a06dd394e2953d7fc42631aa -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Mon Jul 10 06:54:17 2023 -0700 - - Create sprint-76-summary.md (#2609) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit e96e634e165ca1718f2c6da9252fb9acb085c803 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Mon Jul 10 06:43:09 2023 -0700 - - Create sprint-75-summary.md (#2608) - -commit ce4bcbe29fae9566e56059a3e2895fb97a081172 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Jul 5 09:52:35 2023 -0400 - - added URL filters (#2580) - - * added URL filters - - * allow github to trigger owasp and label deploys (#2601) - - Co-authored-by: George Hudson - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: George Hudson - -commit b4032ae9466f6289067cf6bfa8bd62005679ea45 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Jun 29 08:05:08 2023 -0700 - - Create sprint-74-summary.md (#2596) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 487adfc35e91ce3c0d62a6dc69acbdca32f198b7 -Author: George Hudson -Date: Thu Jun 29 08:54:40 2023 -0600 - - Hotfix Devops/2457 path filtering for documentation (#2597) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - * build and test all on PRs even for documentation - - --------- - - Co-authored-by: George Hudson - -commit ab0966005a875f1ccb2c007d6d905d570998a1a7 -Author: George Hudson -Date: Tue Jun 27 11:40:22 2023 -0600 - - pipeline filtering (#2538) - - * pipeline changes that filter based on paths and branches. circle ci tracks specified branches in order to keep current functionality on HHS side. - - * updated syntax to be in line with build-all.yml - - * removed comma - - * WIP build flow docs - - * added Architecture Decision Record for the change to pipeline workflows - - * corrected file type of doc to .md - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit f7dcaf659ef58a99b51e8364bb67112d697a4709 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Fri Jun 23 14:24:42 2023 -0600 - - Item Number Mismatch (#2578) - - * - Updated schemas and models to reflect correct item numbers of fields - - * - Revert migration - - * - Updated header/trailer item numbers - - * - Fixed item numbers off by one errors - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 3e8521a123bad43f82c60e31b1186467a2aa384b -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu Jun 22 09:17:36 2023 -0600 - - Update cf os (#2523) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding new dependencies - - * - adding package - - * - fixing broken install - - * - fixing libs - - * - using correct command - - * - gettign correct version of libc - - * - trying to upgrade libs - - * - testing - - * - Updated README and script - - * Revert "- Updated README and script" - - This reverts commit 92697b3e53d1fd87b8d3e7995abb9093aa26e307. - - * - Removed unnecessary circi stuff - - Removed script - - Updated docs to callout updating secondary apps - - * - Correct spelling error - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 8918f5f23b62b5ebc188809c70d00b0e59dd53d3 -Merge: e4e467366 8ec31f908 -Author: Miles Reiter -Date: Wed Jun 21 14:39:10 2023 -0400 - - Merge pull request #2581 from raft-tech/synthesis-spring-2023 - - Research Synthesis — CSV & Excel Errors Research - -commit 8ec31f908e65b00bba51587e2eeb0d08c73ea8b3 -Merge: 86aac70fd e4e467366 -Author: Miles Reiter -Date: Wed Jun 21 14:28:50 2023 -0400 - - Merge branch 'develop' into synthesis-spring-2023 - -commit e4e4673668a3c2470bf55eae339ed38838873586 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Jun 21 12:16:21 2023 -0600 - - User viewset not returning/duplicating users (#2573) - - * - Fixed issue not allowing pagination to work locally with nginx - - Added ordering to user field to fix duplicates issue - - * - fix lint error - - * - Removing ID check since we cannot guarantee that the uuid that is generated per test run will be lexigraphically consistent - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit d841fb3b57ab7a57e8830cd82d67c32e2318c4e8 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 21 13:54:57 2023 -0400 - - Updating deliverable links (#2584) - -commit 86aac70fd58b2af5c6e22b33adbe8e2d7bc64a94 -Author: Miles Reiter -Date: Wed Jun 21 12:13:39 2023 -0400 - - Update README.md - -commit 007e800b819135f419daf8ae47f83964a1727a85 -Author: Miles Reiter -Date: Wed Jun 21 02:30:38 2023 -0400 - - Create 2023, Spring - Testing CSV & Excel-based error reports.md - -commit 7d5f5c8369c2f2acc227679fbc6731d3e1e99fd6 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jun 20 10:05:42 2023 -0400 - - Update README.md (#2577) - - Add ATO - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 21f81e02110c76eaed38c19185e3905d80d0fd5c -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue Jun 20 07:55:04 2023 -0600 - - 2550 deactivation email link (#2557) - - * - updated nginx buildpack - - * - specifying different nginx version - - * - Updating changelog - - * - added script to update certain apps in cf - - added workflow for each environment in circi - - * - fixed base config - - * - fixing jobs - - * - Updated based on feedback in OH - - * - Updating defaults - - * - Removing defaults - - * - Fixing indent - - * - Adding params to config - - * test - - * test - - * - updating work dir - - * - Adding checkout - - * - adding cf check - - * - logging into cf - - * - update cf check to install required binary - - * - removing unnecessary switch - - * - Forcing plugin installation - - * - test installing plugin from script also - - * - Adding url to email - - * - test code for sandbox - - * - using my email - - * Revert "Merge branch 'update-cf-os' into 2551-deactivation-email-link" - - This reverts commit e963b9df48dd1f72ca0c5b192c979bac11851d11, reversing - changes made to cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- using my email" - - This reverts commit cc9cf81e9d76c42f51ffd5e102f6027d3eb5e645. - - * Revert "- test code for sandbox" - - This reverts commit 06037747197d17ed8e63b086fcfcf048ecb50dc4. - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 485211ec0e6f0e629694b52a017e12054b185ec1 -Merge: 6b1ac8d05 0eec2a015 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Jun 16 14:54:25 2023 -0400 - - Merge pull request #2514 from raft-tech/fix/cypress-admin-url - - add adminUrl to deployment cypress overrides - -commit 0eec2a01565f5c592092d3603c3b9fd63a60d175 -Merge: d9c03b9a7 6b1ac8d05 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Jun 16 14:43:40 2023 -0400 - - Merge branch 'develop' into fix/cypress-admin-url - -commit 6b1ac8d05f475135a2ffaa0438f9c07d3ea6bd37 -Merge: eaeb470dc facda40bb -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Jun 16 14:17:28 2023 -0400 - - Merge pull request #2504 from raft-tech/feature/1610-parser-error-generator - - 1610.1 parser error generator - -commit facda40bb2b24582d541c577fac6d8db4ac07776 -Author: Jan Timpe -Date: Mon Jun 12 11:53:31 2023 -0400 - - rm comments - -commit 7179be06ef6eac2127680d9f0db00eda07a8cc2b -Author: Jan Timpe -Date: Mon Jun 12 09:37:24 2023 -0400 - - accidentally included coding challenge - -commit 831aceda7b5349ba84491340ce41dc8d77b8adcb -Author: Jan Timpe -Date: Mon Jun 12 09:29:41 2023 -0400 - - updating validation error language - -commit 71bdaf2e267faec2e3a24cef63f4bb1cf4bb7637 -Merge: f44197b8e eaeb470dc -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Jun 12 08:59:16 2023 -0400 - - Merge branch 'develop' into feature/1610-parser-error-generator - -commit eaeb470dca7739e5fba6cba59ade7332000479ca -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Jun 8 11:09:07 2023 -0400 - - hotfix for large file sizes (#2542) - - * hotfix for large file sizes - - * apply timeouts/req limits to dev - - * filter identity pages from scan - - * IGNORE sql injection - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: mo sohani - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 08003b566a6555ead28eb8d070b34d50c07e10de -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Jun 8 07:30:21 2023 -0700 - - Create sprint-73-summary.md (#2565) - -commit f44197b8e6b2bca8f27ce1cd3c461e98c12458af -Merge: ad9c62bcf 238e85e6c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 7 11:05:48 2023 -0400 - - Merge branch 'develop' into feature/1610-parser-error-generator - -commit 238e85e6cf778e845b56641a62c059ea50236d3e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jun 2 13:43:27 2023 -0400 - - Adding "beta" banners to relevant error report sections (#2522) - - * Update views.py - - * Update views.py - - * Update SubmissionHistory.jsx - - * Update SubmissionHistory.test.js - - * Apply suggestions from code review - - Co-authored-by: Miles Reiter - - * lint fixes - - --------- - - Co-authored-by: Miles Reiter - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: andrew-jameson - -commit ad9c62bcfbabd6d9217a9967ccd9e1bc7d79aa1f -Merge: 23412a888 914ee3b6a -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Jun 1 12:48:16 2023 -0400 - - Merge branch 'develop' into feature/1610-parser-error-generator - -commit 23412a888b9f6f013652da1803f4a31eecc7d573 -Author: Jan Timpe -Date: Thu Jun 1 12:34:57 2023 -0400 - - unused import - -commit 41053de5e20bd4185db991f4231abfcaf76aba6e -Author: Jan Timpe -Date: Thu Jun 1 12:28:49 2023 -0400 - - change record 'id' to uuid field with auto-gen default - -commit 914ee3b6a2fb852774108325798715f6c457f6e7 -Merge: 987fba8bd bd9e9c078 -Author: Miles Reiter -Date: Thu May 25 19:18:40 2023 -0400 - - Merge pull request #2541 from raft-tech/may-knowledge-center-additons - - May Knowledge Center Enhancements - -commit ee795dbc783f95c5f16c4562e649562fd699c049 -Author: Jan Timpe -Date: Thu May 25 17:15:55 2023 -0400 - - rm accidental addition - -commit 12e03f13c0c3273e56df53c1e62f9411b4cc691b -Author: Jan Timpe -Date: Thu May 25 17:14:01 2023 -0400 - - fix big_file test with new required errors - -commit 9b91a7a47612e44fdcb8e8e617df89fe7a799c6a -Author: Jan Timpe -Date: Thu May 25 16:43:58 2023 -0400 - - fix missing errors on required fields if no other validators - -commit bd9e9c078057b09001efbc3b6d57838303617863 -Author: Miles Reiter -Date: Thu May 25 15:05:37 2023 -0400 - - Copies over KC additions from Test - -commit 96bf6c6dff0ac8505bb0b91808b7dc2288ab5d70 -Merge: 2f9c568db 987fba8bd -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu May 25 14:43:36 2023 -0400 - - Merge branch 'develop' into feature/1610-parser-error-generator - -commit 2f9c568db31e24a7577a1167ba359ca7559f1ef5 -Author: Jan Timpe -Date: Thu May 25 14:29:27 2023 -0400 - - fix test - -commit a6ee4c18e2d44eec5397d93e8bb31db8c7cee7da -Author: Jan Timpe -Date: Thu May 25 14:14:25 2023 -0400 - - add item numbers to t2/t3 schema - -commit c4fa931108fed25ef2b1b18544d7095917688e23 -Author: Jan Timpe -Date: Thu May 25 13:59:50 2023 -0400 - - resolve conflicts - -commit 987fba8bd99c5aa3ea8893003917120c9899d5b4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 25 13:56:56 2023 -0400 - - 2531 - Fix for large filesize failures/timeout (#2532) - - * bumping size for quick test - - * updating timeouts to Mo's tested version - - --------- - - Co-authored-by: andrew-jameson - -commit 0a347db1f99cff17d7126860aa8f8690b1edc69f -Merge: 89a85425b e4bf0f4fe -Author: Jan Timpe -Date: Thu May 25 13:51:08 2023 -0400 - - Merge branch 'develop' into feature/1610-parser-error-generator - -commit e4bf0f4feb4918c220265187ab8630696a2aa83a -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu May 25 11:38:20 2023 -0600 - - 2424 ts1 parsing (#2511) - - * lift and shift search_indexes.parsers to parsers - - * lint - - * add helper methods to RowSchema and Field classes - - * add generic validator functions - - * create new header/trailer schema using RowSchema - - * create generic parse function for all schemas - - * add validator test, update docstrings - - * fix some tests - - * remove old preparser impl - - * fix parse section, blanks - - * rm comments - - * update parser task call - - * only save if record exists - - * add t1 schema - - * reduce parse_datafile complexity - - * improve schema mismatch handling - - * update tests with schema errors - - * rm extra header/trailer check - - * add count to big file test - - * add values assertions to small_correct - - * update comments - - * move get_schema_options_call - - * rename validate_document to be more descriptive - - * add new startswith validator - - * use startsWith in header/trailer preparsing validation - - * internal method naming - - * move trailer parse/validation out of preparsing - - * preparse trailer, but skip trailer pre-validation - - * ignore trailer parsing errors in preparse - - * misspelling - - * move models, documents, and admin to modular structure - - * fix tests - - * docstrings - - * fix program type mismatch - - * extra test - - * improve import structure - - * rm comments - - * update search indexes - - * add ssp m1/m2/m3 model, documents to search_indexes - - * add admin - - * add multirecord parsing - - * add notEmpty validator - - * ssp section 1 schema - - * ssp section 1 tests - - * - ADding t2 schema - - * - small fixes to naming - - added t2.py - - Updating var names to match field names - - * fix test - - * fix lint + broken tests - - * lint - - * - Added new doc for T2 - - Updated model fo rT2 - - Added active parse function - - * - Added T3 schema defs - - * - Fixing most lint errors - - * fix admin - - * - Updated T3 to multirow record - - * - Added unit test and data files - - updated field names - - * - Updating var names to conform to DB max var name length - - * - Updating based on unit test failure - - * - adding datafile - - * - Adding unit tests for t2 and t3 - - * - Fixed field types - - Updated test file - - * - Removing many migrations to consolodate into one migration - - * Revert "- Removing many migrations to consolodate into one migration" - - This reverts commit 1455ae4d334f72e250405803d61d26c0a894e886. - - * - Resolved test issues after merge - - * - Resolve lint errors - - * linter fixes - - * - Merged 1113.2 - - * rm commented schema fields - - * - Removed unnecessary file - - * - Rename model fields - - Combined migrations - - * - fixed spelling in test - - * - Fixed lint errors - - * rm commented field - - * rename `n` to `record_number` - - * fix formatting - - * rm commented validators - - * - Updated schema newlines to be consistent - - * - Updated field names - - Updated tests - - Updated migration - - * - consolodating migrations - - * - Updated readme and backup script - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit ef12493be532f3c1207f5619a1519d6adb0a0573 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Thu May 25 11:23:53 2023 -0600 - - - Fixed issue not allowing multipart requests (#2539) - -commit 9717fd21c9e4737bb2f952006f027e5cc28e0c77 -Author: George Hudson -Date: Wed May 24 07:29:52 2023 -0600 - - pulled out all filtering (#2534) - - Co-authored-by: George Hudson - -commit 8fe5d9414d72afb94cb5841fb05a3264aced47e6 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue May 23 08:08:14 2023 -0600 - - 2505 cron bug (#2525) - - * - updating cron - - * - running at midnigt est - - * - Updated cron times to correct times. Had EDT instead of EST - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 74a8b397b773c09441445b19a6a06bb6b355003f -Author: George Hudson -Date: Tue May 23 07:53:09 2023 -0600 - - using ref_name for simplified branch name (#2530) - - * using ref_name for simplified branch name - - * pass branch name to CircleCI for PRs - - * removed whitespace - - --------- - - Co-authored-by: George Hudson - -commit 89a85425b7e826d13eec15ccac3fe6437a87f7e0 -Author: Jan Timpe -Date: Thu May 18 10:04:46 2023 -0400 - - fix lint - -commit a55f175a33acf6242f7574bb07ef801666282e6e -Merge: 7912a67ef 3a3a8974e -Author: Jan Timpe -Date: Thu May 18 09:56:52 2023 -0400 - - Merge branch 'develop' into feature/1610-parser-error-generator - -commit 7912a67ef84e0a69a5fbe278114aa1571eeab3c9 -Author: Jan Timpe -Date: Thu May 18 09:45:01 2023 -0400 - - rm commented lines - -commit b6009dd11c6fa6e1c59bdc00acfca520531dfe4f -Author: Jan Timpe -Date: Thu May 18 09:41:20 2023 -0400 - - update ParserError fields - -commit 3a3a8974e5e5623c709b12d9ecf8e1b22d16e24a -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed May 17 11:04:34 2023 -0400 - - disable SQLinjection scan (#2515) - - * disable SQLinjection scan - - * ignoring SQL injection scan - - * Update zap-hook.py - - * Update zap.conf - - Changed SQL INJECTION scan from IGNORE to WARN - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit ac4e3bb1e76e6dabdc46604a620803d5672731d7 -Author: George Hudson -Date: Wed May 17 08:34:48 2023 -0600 - - Devops/2457 ci path filtering (#2512) - - * WIP pulling apart pipeline flows to only run tests on changed folders - - * added parameters to config.yml that were already in base_config.yml - - * put 'when' keyword in the correct block - - * trying to get conditional syntax right' - - * trying to get conditional syntax right - - * moved attempted logic out of jobs and into workflows. - - * updated logic for when workflows should run and added utility and infrastructure to filters - - * fixed spacing on make_erd? - - * updated make_erd job to string since not passing parameters to map anymore - - * innocuous change to backend/ to test filtering - - * fixed spacing - - * fixed spacing - - * fixed spacing on make_erd, ignoreing main and master for front/backend only builds - - * fixed spacing on make_erd - - * fixed spacing on make_erd - - * changing backend file to test filtering - - * nest branches-ignore in push block - - * changing backend file to test filtering - - * trying different condition, 'not' doesn't seem to be working as expected - - * changing backend file to test filtering - - * still trying different conditionals for circleci for filtering on - - * still trying different conditionals for circleci for filtering on - - * changing backend file to test filtering - - * can't use negative filtering for circleci workflows, so adding in build_and_test_all variable - - * changing backend file to test filtering - - * changing frontend file to test filtering - - * changing terraform file to test filtering - - * removing innocuouschanges to files to test filtering, should trigger all three pipelines individually - - * updated documentation to include why we use Actions to trigger CircleCI builds - - * added more documentation, with better links - - * update all actions to use github.repository instead of hard coded Raft repo in order to work with HHS side as well - - * updated circleci logic for HHS side - - * throwing in branch to test circleci side branch filtration - - * made changes so we can test in hhs_dev_devops branch - - * made changes so we can test in hhs-dev-devops branch - - * removed test lines and added strings for consistency for PR - - * removed e2e from frontend only and backend only workflows and not tracking commands.sh for full build and tests. Fixed some spacing issues. - - * testing backend - - * testing frontend - - * testing both - - * added sychronize to retest after changes made to PR - - * small update to build-all docs - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit f332bbd8570ac52088c880e5e2747087aac89099 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed May 17 07:29:14 2023 -0600 - - Update API Viewsets (#2477) - - * - Updated serializers to include requested fields - - Updated views with a list mixin - - * - remove prints and comment custom filter - - * - making version read only - - re-enabling the view filtering for datafiles to avoid security concern - - * - re-ordered serializer fields to follow model order - - added property to datafile to get s3 path - - * - Updated expected test results based on new fields - - * - using response last login date since user doesnt have it - - * - Added new action for user viewset - - Updated url to support new action - - Updated tests - - * - Fixed linter errors - - * - Removing accidental inclusion of file - - * - moving back to standard url - - updated tests - - * - re-adding accidentally commented code - - * - updating var init with None - - * - committing work around with debug prints to not lose state - - * - remove list in favor of get query set - - * - Adding explicit object checking on the custom retrieve since it is not done by default on overriden retrieve methods - - * - adding doc string - - * - ADding extra admin filter - - * - Fixed remaining tests - - * - added missing field - - * - added missing comma from merge - - * - Added role based permission class - - Updated views to leverage roll based permission class - - * - Not allowing datafile submissions unless it is your user - - * - Disabling browseable api when in prod - - * - Adding test classes for user viewset - - * - Added remaining tests - - * - Resolved lint errors - - * - Resolved unit test failures - - * - Updating tests to conform to minimum requirements for a user to request access - - * - removed list action override - - * - Remove comment from testing - - * - Removed commented code - - * - Renamed fixture - - Updated tests - - * - Fixed merge error - - * - Updated permission to also require account approval as well as the role - - updated tests - - Not allowing GET on request_access - - * - fixed lint error - - * - Updated test to conform to new permission rules - - removed debug print statements - - * - not allowing GET on set_profile - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 854157a9e0728506e554effbda75b2a89c905ae3 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue May 16 15:08:00 2023 -0400 - - 1113.2 - ssp section 1 parsing (#2479) - - * lift and shift search_indexes.parsers to parsers - - * lint - - * add helper methods to RowSchema and Field classes - - * add generic validator functions - - * create new header/trailer schema using RowSchema - - * create generic parse function for all schemas - - * add validator test, update docstrings - - * fix some tests - - * remove old preparser impl - - * fix parse section, blanks - - * rm comments - - * update parser task call - - * only save if record exists - - * add t1 schema - - * reduce parse_datafile complexity - - * improve schema mismatch handling - - * update tests with schema errors - - * rm extra header/trailer check - - * add count to big file test - - * add values assertions to small_correct - - * update comments - - * move get_schema_options_call - - * rename validate_document to be more descriptive - - * add new startswith validator - - * use startsWith in header/trailer preparsing validation - - * internal method naming - - * move trailer parse/validation out of preparsing - - * preparse trailer, but skip trailer pre-validation - - * ignore trailer parsing errors in preparse - - * misspelling - - * move models, documents, and admin to modular structure - - * fix tests - - * docstrings - - * fix program type mismatch - - * extra test - - * improve import structure - - * rm comments - - * update search indexes - - * add ssp m1/m2/m3 model, documents to search_indexes - - * add admin - - * add multirecord parsing - - * add notEmpty validator - - * ssp section 1 schema - - * ssp section 1 tests - - * fix test - - * fix lint + broken tests - - * lint - - * fix admin - - * linter fixes - - * rm commented schema fields - - * rm commented field - - * rename `n` to `record_number` - - * fix formatting - - * rm commented validators - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 1199d8ade781c442de7de05ed15b30e798e94448 -Author: Jan Timpe -Date: Fri May 12 12:12:33 2023 -0400 - - add error file extension - -commit ece11645664a03455c5d7896eea60d87cc75ecd6 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu May 11 07:15:07 2023 -0700 - - Create sprint-72-summary.md (#2520) - - Sprint 72 summary - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit d3f0d1ca373da0812a08a3b46dd7425b70916e14 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu May 11 06:50:15 2023 -0700 - - Create sprint-71-summary.md (#2519) - - Sprint 71 summary - -commit 364568d124689e6487b6c64fa96ab1f81de3ab26 -Author: Jan Timpe -Date: Tue May 9 12:38:16 2023 -0400 - - fix docstring - -commit d9c03b9a71e3b14fba03db9b16ed4349ba5ac75b -Author: Jan Timpe -Date: Fri May 5 11:21:53 2023 -0400 - - add adminUrl to deployment cypress overrides - -commit 10de636853df0d137fe2f986af3f5806b3c4f6de -Merge: a6128f1ee f199cfcf7 -Author: Jan Timpe -Date: Fri May 5 11:02:27 2023 -0400 - - Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator - -commit f199cfcf71c3421e4344cfc347eb4e8afdf677a0 -Merge: e2ddd7ac9 7d7a6ea3b -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri May 5 10:48:10 2023 -0400 - - Merge branch 'develop' into feature/1113-2-ssp-section-1-parsing - -commit 7d7a6ea3b896b0c84642c17730cefbb7eba7390b -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri May 5 10:36:41 2023 -0400 - - 1113.1 - Add ssp m1/m2/m3 model, documents to search_indexes (#2478) - - * lift and shift search_indexes.parsers to parsers - - * lint - - * add helper methods to RowSchema and Field classes - - * add generic validator functions - - * create new header/trailer schema using RowSchema - - * create generic parse function for all schemas - - * add validator test, update docstrings - - * fix some tests - - * remove old preparser impl - - * fix parse section, blanks - - * rm comments - - * update parser task call - - * only save if record exists - - * add t1 schema - - * reduce parse_datafile complexity - - * improve schema mismatch handling - - * update tests with schema errors - - * rm extra header/trailer check - - * add count to big file test - - * add values assertions to small_correct - - * update comments - - * move get_schema_options_call - - * rename validate_document to be more descriptive - - * add new startswith validator - - * use startsWith in header/trailer preparsing validation - - * internal method naming - - * move trailer parse/validation out of preparsing - - * preparse trailer, but skip trailer pre-validation - - * ignore trailer parsing errors in preparse - - * misspelling - - * move models, documents, and admin to modular structure - - * fix tests - - * docstrings - - * fix program type mismatch - - * extra test - - * improve import structure - - * rm comments - - * update search indexes - - * add ssp m1/m2/m3 model, documents to search_indexes - - * add admin - - * fix lint + broken tests - - * lint - - * fix admin - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit a6128f1ee840fb9e9d6a1cbafc05c74a5b9732f4 -Author: Jan Timpe -Date: Fri May 5 09:20:32 2023 -0400 - - missed item num - -commit 649ee22d458b666712867f2dcecd62a88234b6f6 -Author: Jan Timpe -Date: Fri May 5 09:20:09 2023 -0400 - - fix conflict - -commit 197117d5fa56bbe82f938ff1e38a5c70dde8992a -Author: Jan Timpe -Date: Fri May 5 09:07:25 2023 -0400 - - fix conflicts - -commit 17a01c59ece32d377e7b71f1c02440c5e7ec89c4 -Merge: a31b32f9d e2ddd7ac9 -Author: Jan Timpe -Date: Fri May 5 08:35:37 2023 -0400 - - Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator - -commit e2ddd7ac9a96519a34123043942ba5893f74c73a -Merge: 1245db99c d20b4387a -Author: Jan Timpe -Date: Fri May 5 08:34:32 2023 -0400 - - Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing - -commit d20b4387a198fe7da85c48d2e7cbf176404baf9c -Merge: 39c82f41f 8d7a069bf -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri May 5 08:33:51 2023 -0400 - - Merge branch 'develop' into feature/1113-1-ssp-section-1-models - -commit 8d7a069bf0867273e12c7508215b8bf6863406bb -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 4 16:14:37 2023 -0400 - - Fixing link to tabletops, removing old process (#2502) - -commit e633006bad9d242160d282c8b2cd7993122684ff -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu May 4 15:57:34 2023 -0400 - - 1122 validation errors for file error report (#2469) - - * Logic added for new column - - * added file number to rows - - * file downloads - - * corrected multiple file downloads - - * download working - - * added tests - - * linting - - * corrected the filename - - * added meaningful tests for createXLSReport - - * linting - - * added flag to datafile api to show error available - - * added method to SubmissionHistory download error - - * linting - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 1245db99c8fa70fb8ef749f3eebf6ce0748e54ff -Author: Jan Timpe -Date: Thu May 4 11:47:19 2023 -0400 - - fix formatting - -commit 248e6173581c69ba6c1b6b0dcb55ea6891012c90 -Author: Jan Timpe -Date: Thu May 4 10:54:52 2023 -0400 - - rename `n` to `record_number` - -commit 015b4bb2ddabbef335d40e439c23480a6b62903c -Author: Jan Timpe -Date: Thu May 4 10:53:45 2023 -0400 - - rm commented field - -commit 2c1bcbb63b8ac7a874a96b21ab6f366eea282c33 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed May 3 12:27:56 2023 -0600 - - 1336 access request email (#2490) - - * - Added logic for admin emailing - - * - Added admin link to templatre - - Updated crontab for debugging - - hardcoding personal email for debugging - - * - Fix lint errors - - use work email - - * - Update to show when user has requested access - - Add sortable field in user view in admin page for the new field - - * - Fixing unit tests - - * - fixed url in email - - * - re-enabling ofa admin emails - - updated cronjob to run at 0100 everyday - - * - Updating based on review comments - - * - Updated model name where necessary - - Updated url to sort users based on most recent requests - - * - put crontab back to normal - - * - Updating tests - - * deleting migratiosn - - * - Recreated migration - - * - Updated based on review comments - - * - Updated based on review - - Consolodated migrations - - * - Updated tests - - * - Fixed issue causing cypress to fail - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit a31b32f9d2b6b0a582bca87db6487b5adaacbc33 -Merge: ab72bfc16 2f894515e -Author: Jan Timpe -Date: Tue May 2 16:36:55 2023 -0400 - - Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator - -commit 2f894515eff32abd5e5e1fdd8bc4d5c7d0709a42 -Author: Jan Timpe -Date: Tue May 2 16:35:55 2023 -0400 - - rm commented schema fields - -commit de8d450279415eecea7ddfbfed46b724d7c1abc9 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Tue May 2 13:07:23 2023 -0600 - - 2274 cypress user approval (#2470) - - * - initial commit for admin approving user - - * - Updated to support backend admin api requests - - Updating tests to approve a new user - - * - Updated steps to get cypress user approved - - Added 'Given' step to ensure the cypress user is always in the correct state at the start of a test - - * - Added request state - - adding missing fields to admin post request - - * - adding logic for user to request access - - * - Added env variables to minimize hardcoded config - - Added logic to approve user in request state - - * fix cypress csrf errors - - * - Cleaned up code - - Renamed common steps - - * - Updated circi job to create super user - - updated docs - - quick rename of common steps - - updated glob patterns for step file discovery - - * - Removing debug statement - - * - Fixed linting errors - - * - removing unnecessary logging message - - * - Added tests for denying and deactivating users - - * - increased the wait for the page lload to avoid accidental fails - - uncommented tests - - * - Added final test for last acount status state - - * - Renamed steps to keep consistency - - Updated indentation level to be 4 - - * - Made updates based on review feedback - - * refactor adminApiRequest - - * - Removing unnecessary function - - using adminApiRequest throughout - - * - Removing groups and region on reinit - - * - re-enabling all tests - - * - Update CI job to refresh cypress users on start - - Updated docs - - Added command to delete cypress users - - Updated feature file to consistently reference user by name instead of "the user" - - Made prints in Commands log statements - - * - Fixed lint errors - - * - small change to gherkin to make more readable - - * - removing e2e command - - * - Testing suggested update for nginx to pass the csrf token to django - - * - Adding referer policy - - * Revert "- Adding referer policy" - - This reverts commit 4b32007539e560799f0c0e6ce8e6ef75b8b80bcf. - - * Revert "- Testing suggested update for nginx to pass the csrf token to django" - - This reverts commit ca2349bddff52c7d5f6eb6c58a296984f27f0fc5. - - * - Testing nginx config to pass csrf token - - * - Updating urls for new nginx config - - * - Added longer wait for request submitted view - - Updated csrf header key - - Getting nginx to pass csrf header along with cookies - - --------- - - Co-authored-by: Eric - Co-authored-by: Jan Timpe - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 39c82f41fd22cc8184e3005bd4f0baa31590220b -Merge: eeac9269d ad8138812 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue May 2 13:27:31 2023 -0400 - - Merge branch 'develop' into feature/1113-1-ssp-section-1-models - -commit ab72bfc16a3cc8a83db0e83dfae8f8d5bc2a8a85 -Author: Jan Timpe -Date: Tue May 2 09:16:38 2023 -0400 - - impl ParserErrorCategoryChoices - -commit 220b5952c4444fdf5f4e2502d58d22464ca01fb1 -Author: Jan Timpe -Date: Tue May 2 09:02:56 2023 -0400 - - fix conflict - -commit 282d21a054f70fe416eff0a9e028293811a062e9 -Merge: 9d838f87c ab453e59f -Author: Jan Timpe -Date: Tue May 2 09:01:38 2023 -0400 - - Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator - -commit ab453e59fcce905d527919e29e5d8e1f547b5533 -Author: Jan Timpe -Date: Tue May 2 08:57:47 2023 -0400 - - linter fixes - -commit ad813881268197076ec487e4b8f308c02b6fd870 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon May 1 11:10:47 2023 -0400 - - 2498 nightly scan bug fix (#2506) - - * add both frontend and backend for nightly scan - - * added external-net to zap-scanner.sh - - * removeing ECHO statements - - * remove curl statement - - * remove space - - * corrected command.sh - - * changed error code for rate control in local Nginx - - * changed error code for rate control Nginx - - * change Nginx max file size to 50MB - - * add frontend to backend-owasp-scan - - * Update buildpack.nginx.conf - - * Update buildpack.nginx.conf - -commit 9d838f87c8f31d2b1a3377c3d010373cdc0b9f01 -Author: Jan Timpe -Date: Thu Apr 27 21:35:07 2023 -0400 - - extra blank - -commit 0c4585d9c348ef40457d952f6eed9526bf079c35 -Author: Jan Timpe -Date: Thu Apr 27 21:34:33 2023 -0400 - - rm unused - -commit a26fc55234f322926cd7ee2403fd40f9ba1c96d1 -Author: Jan Timpe -Date: Thu Apr 27 21:24:30 2023 -0400 - - fix linter errors - -commit 5d062babe6212c0dfc8678091b13c0041980b6e0 -Merge: 037b965b3 523c08c1d -Author: Jan Timpe -Date: Thu Apr 27 16:15:37 2023 -0400 - - Merge branch 'feature/1113-2-ssp-section-1-parsing' into feature/1610-parser-error-generator - -commit 523c08c1d2949b126134b1746d52c0a4689cf238 -Merge: 1d7cffa33 eeac9269d -Author: Jan Timpe -Date: Thu Apr 27 16:15:24 2023 -0400 - - Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing - -commit eeac9269d0719187a8b63b2df49b365a4c15fb0d -Merge: 118826291 4fcd37362 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Apr 27 16:14:37 2023 -0400 - - Merge branch 'develop' into feature/1113-1-ssp-section-1-models - -commit 4fcd37362b376970902603143809572d149653b9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Apr 27 15:31:40 2023 -0400 - - updating csv file columns after talking with ux (#2472) - - * updating csv file columns after talking with ux - - * Lost header writing - - * lint fix - - * updated factory for error-log - - * updating tests - - * Updating rpt_month_yr per PR feedback - - * Reverting case_number to text per Alex's PR feedback - - --------- - - Co-authored-by: Andrew Jameson - Co-authored-by: andrew-jameson - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 037b965b3df9cbb1a4f41266d046b1a34b1770c6 -Author: Jan Timpe -Date: Thu Apr 27 13:52:23 2023 -0400 - - update tests to utilize parser error - -commit dfc2a9972dda1a46b99d02d5c47d150f64bdffaa -Author: Jan Timpe -Date: Thu Apr 27 13:52:15 2023 -0400 - - generate parser error from parse_and_validate - -commit 5a85ba2e8f00b5d9191035c492ffb666c1a07eb5 -Author: Jan Timpe -Date: Thu Apr 27 13:51:56 2023 -0400 - - make parser error type choice field - -commit e55bc74a3f142c91ccd0ed34c194fbc6f5d09b07 -Author: Jan Timpe -Date: Thu Apr 27 13:51:11 2023 -0400 - - add err func to custom file validation - -commit 6772b8e6b774972eaadda679f1839b19f21fc98c -Author: Jan Timpe -Date: Wed Apr 26 14:22:12 2023 -0400 - - wip parser error generator - -commit 118826291741df49e685377f38579ad92eef3c2f -Merge: bfe6f1dc5 29647afd1 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Apr 26 12:00:20 2023 -0400 - - Merge branch 'develop' into feature/1113-1-ssp-section-1-models - -commit 29647afd13bff68bb1cd10b0264d3b9a783b4a99 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Apr 25 14:42:19 2023 -0400 - - 2498 - Bugfix: correct owasp scan script in commands.sh (#2500) - - * add both frontend and backend for nightly scan - - * added external-net to zap-scanner.sh - - * removeing ECHO statements - - * remove curl statement - - * remove space - - * corrected command.sh - -commit f5a2e3c71c1b5ce537832323d0d952bd1043cfb5 -Merge: 6304bffe1 bdf604af4 -Author: Miles Reiter -Date: Mon Apr 24 13:29:34 2023 -0400 - - Merge pull request #2499 from raft-tech/2344-research-synthesis - - #2344 Research Syntheses & Readme Update - -commit bdf604af416e1d4b375b59550d39f47f04f44d66 -Author: Diana Liang -Date: Mon Apr 24 12:19:30 2023 -0500 - - added 4 files back - -commit 1d7cffa335097f8a3d2a425ddf2d68f06ad2d8ed -Merge: 24ce14920 bfe6f1dc5 -Author: Jan Timpe -Date: Fri Apr 21 14:21:47 2023 -0400 - - Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing - -commit bfe6f1dc573dee329b93b44834f6dfe31df192d0 -Author: Jan Timpe -Date: Fri Apr 21 14:21:12 2023 -0400 - - fix admin - -commit 6304bffe116ff7940f09d670415144d33d247397 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Apr 21 14:12:02 2023 -0400 - - added develop to acf.hhs.gov domain in zap-scanner (#2496) - -commit 593c469b7d34505a732f3b64183c4d4ea4966c6c -Merge: 449b4ca0e b50967007 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Apr 20 09:49:37 2023 -0400 - - Merge branch 'develop' into feature/1113-1-ssp-section-1-models - -commit b509670073089a404260c7f194d33ca462f875bf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Apr 20 08:36:08 2023 -0400 - - Update TDP-environments-README.md (#2493) - - minor edits to the readme. - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 0736ec7dc58d4a87b65642a5aebc38d02ebd7baf -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Apr 20 08:22:51 2023 -0400 - - Fix/pipeline failures (#2492) - - * wait for backend before setting up e2e users - - * create external net before generate erd - - * fix command - - * cd - - * fix cmd - - * rm cmd breaks - - * update make_erd - -commit 1f54177fffe6a768c1084e6854cc5e83d36190e6 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 19 15:10:45 2023 -0400 - - correction or zap-scanner URLs (#2495) - -commit cd35c12f46e0808c494a1161bec6b9e5b6600dfd -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 19 11:22:28 2023 -0400 - - correction on backend URLs in README and add network policy for internal route (#2487) - - * corrected backend URLs in TDP-environment-README - - * added network policy command to deploy-backend script - - * removed backend zap scanner - - * added swagger to local Nginx - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 1bb82f4fbaf845889aeff5adbda83e62dde89bb7 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 19 09:48:24 2023 -0400 - - Filter users according to ipv6 geo locations (#2481) - - * Nginx changes to new branch - - * changes from original Nginx branch - - * commit requested review changes - - * corrected the commands.yml - - * resolved issue starting gunicorn - - * env var changes - - * added more locations for backend - - * revised tdp-environment arch drawings - - * corrected circleci backend deployment command - - * commented search index rebuild - - * updated login.gov location - - * re-added search index - - * removed python manage.py search_index - - * commented migrate in gunicorn_start.sh - - * add migrate command - - * default database to sqlite for testing - - * linting - - * default REDIS_URI to local - - * changed mem to 1G from 2G - - * Added resolver - - * added url endpoints to locations.conf - - * added domain changes to Nginx - - * linting - - * made changes to deploy branch to develop... must be reverted before merge - - * corrected deploy-backend - - * correct form action header - - * change CSP to * for backend pages - - * changed CSP to allow s3-us-gov-west-1 - - * corrected add_header - - * removed e2e for testing - - * removed sqlite - - * linting - - * allow all ipv6 - - * Update common.py - - * added env vars for cypress test - - * updated size of executor for e2e testing - - * overwrite env vars for test:e2e-ci in job.yml - - * correct env var injection - - * added login/cypress to Nginx.location - - * Corrected locations - - * test env vars - - * check if static urls work - - * corrected test-e2e-ci, have static URLs - - * Corrected cf cli url - - * revert package cf urls back - - * added external-net to owasp - - * Update commands.yml - - * added external-net script - - * linting - - * correction on commands - - * correction - - * Update commands.yml - - * linting - - * removed if statement - - * corrected the if statement - - * correction - - * correction - - * correction - - * correct networks for DNS resolve - - * Update docker-compose.yml - - * Update docker-compose.yml - - * increase timeout for zap-proxy - - * increase timeout - - * added step tp owasp - - * corrected tje owasp job - - * Update tdrs-frontend/nginx/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * changed file names, created ipv6 whitelist file - - * Update tdrs-frontend/nginx/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update workflows.yml - - * linting - - * Update deploy-develop-on-merge.yml - - * Update cloudgov.py - - * Delete .env. - - * Update user_role_management.md - - * separated ip_whitelist - - * Update ip_whitelist.conf - - * Update buildpack.nginx.conf - - * added whitelistfiles to deploy-frontent - - * Add IP6 allow to ip_whitelist_ipv6 - - * removed incorrect IP6 - - * corrected ip_v6 - - * changed frontend memory to 128M - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 24ce14920474f68b4824c85f303c65a9f6bf567e -Merge: a6d449126 449b4ca0e -Author: Jan Timpe -Date: Tue Apr 18 17:25:49 2023 -0400 - - Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing - -commit 449b4ca0e8dc122e67762a7e9f099b87223ec61f -Author: Jan Timpe -Date: Tue Apr 18 17:15:54 2023 -0400 - - lint - -commit 58b33db273601ae8c31fd961c473c4fd3d968b17 -Author: Jan Timpe -Date: Tue Apr 18 16:55:04 2023 -0400 - - fix lint + broken tests - -commit a6d449126cb22c23b1505df3118604a1b43d7511 -Author: Jan Timpe -Date: Tue Apr 18 16:52:46 2023 -0400 - - fix test - -commit b12d748536f98474b623989cf85a93336c58f1fa -Merge: 971d438e4 a7195f132 -Author: Jan Timpe -Date: Tue Apr 18 16:45:53 2023 -0400 - - Merge branch 'develop' into feature/1113-1-ssp-section-1-models - -commit a7195f132a6cab59f4e8b480f5f6dd97d887662c -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Apr 18 12:13:56 2023 -0400 - - 1113.0 - Chore/reorganize search indexes (#2475) - - * lift and shift search_indexes.parsers to parsers - - * lint - - * add helper methods to RowSchema and Field classes - - * add generic validator functions - - * create new header/trailer schema using RowSchema - - * create generic parse function for all schemas - - * add validator test, update docstrings - - * fix some tests - - * remove old preparser impl - - * fix parse section, blanks - - * rm comments - - * update parser task call - - * only save if record exists - - * add t1 schema - - * reduce parse_datafile complexity - - * improve schema mismatch handling - - * update tests with schema errors - - * rm extra header/trailer check - - * add count to big file test - - * add values assertions to small_correct - - * update comments - - * move get_schema_options_call - - * rename validate_document to be more descriptive - - * add new startswith validator - - * use startsWith in header/trailer preparsing validation - - * internal method naming - - * move trailer parse/validation out of preparsing - - * preparse trailer, but skip trailer pre-validation - - * ignore trailer parsing errors in preparse - - * misspelling - - * move models, documents, and admin to modular structure - - * fix tests - - * docstrings - - * fix program type mismatch - - * extra test - - * improve import structure - - * rm comments - - * update search indexes - -commit d0b095774220b8f9800d0df83c13b9971b09b409 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Apr 17 11:19:13 2023 -0400 - - split location in the user list so that stt/region can be sorted (#2483) - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 4e33cde9bde569e3a0005fda8367d9ec620d0a39 -Merge: 69f573248 971d438e4 -Author: Jan Timpe -Date: Fri Apr 14 09:07:07 2023 -0400 - - Merge branch 'feature/1113-1-ssp-section-1-models' into feature/1113-2-ssp-section-1-parsing - -commit 971d438e41f0f2ad069da077de54f07b59c6f90b -Merge: 055b422e7 2af8c1f4b -Author: Jan Timpe -Date: Fri Apr 14 09:06:44 2023 -0400 - - Merge branch 'chore/reorganize-search-indexes' into feature/1113-1-ssp-section-1-models - -commit 2af8c1f4b089bacf912c7d9c612a4ec460ae5300 -Merge: 805d316e5 c1eda7c24 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Apr 14 09:05:39 2023 -0400 - - Merge branch 'develop' into chore/reorganize-search-indexes - -commit c1eda7c24530b658cde21fb0c6db81db6202a94d -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Apr 12 12:18:24 2023 -0700 - - Create sprint-70-summary.md (#2484) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit d3dc3d368d075f5f670e0938d4d8778d2846a577 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 12 13:35:19 2023 -0400 - - 1544 nginx with domain (#2449) - - * Nginx changes to new branch - - * changes from original Nginx branch - - * commit requested review changes - - * corrected the commands.yml - - * resolved issue starting gunicorn - - * env var changes - - * added more locations for backend - - * revised tdp-environment arch drawings - - * corrected circleci backend deployment command - - * commented search index rebuild - - * updated login.gov location - - * re-added search index - - * removed python manage.py search_index - - * commented migrate in gunicorn_start.sh - - * add migrate command - - * default database to sqlite for testing - - * linting - - * default REDIS_URI to local - - * changed mem to 1G from 2G - - * Added resolver - - * added url endpoints to locations.conf - - * added domain changes to Nginx - - * linting - - * made changes to deploy branch to develop... must be reverted before merge - - * corrected deploy-backend - - * correct form action header - - * change CSP to * for backend pages - - * changed CSP to allow s3-us-gov-west-1 - - * corrected add_header - - * removed e2e for testing - - * removed sqlite - - * linting - - * allow all ipv6 - - * Update common.py - - * added env vars for cypress test - - * updated size of executor for e2e testing - - * overwrite env vars for test:e2e-ci in job.yml - - * correct env var injection - - * added login/cypress to Nginx.location - - * Corrected locations - - * test env vars - - * check if static urls work - - * corrected test-e2e-ci, have static URLs - - * Corrected cf cli url - - * revert package cf urls back - - * added external-net to owasp - - * Update commands.yml - - * added external-net script - - * linting - - * correction on commands - - * correction - - * Update commands.yml - - * linting - - * removed if statement - - * corrected the if statement - - * correction - - * correction - - * correction - - * correct networks for DNS resolve - - * Update docker-compose.yml - - * Update docker-compose.yml - - * increase timeout for zap-proxy - - * increase timeout - - * added step tp owasp - - * corrected tje owasp job - - * Update tdrs-frontend/nginx/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update tdrs-frontend/nginx/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update workflows.yml - - * linting - - * Update deploy-develop-on-merge.yml - - * Update cloudgov.py - - * Delete .env. - - * Update user_role_management.md - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 805d316e5a54b12b6ffae3f86ae58dcdc27b89c1 -Merge: 20c9abf9a 910315bf1 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Apr 12 10:01:16 2023 -0400 - - Merge branch 'develop' into chore/reorganize-search-indexes - -commit 910315bf1579f70a5eadd5fd11a4c9e129100174 -Author: George Hudson -Date: Tue Apr 11 13:42:08 2023 -0600 - - updated size of executor for e2e testing (#2480) - - * updated size of executor for e2e testing - - * renaming executor for generalized use - - --------- - - Co-authored-by: George Hudson - Co-authored-by: andrew-jameson - -commit 69f573248b6f8979bde054ffb7b60e1f2dce2735 -Author: Jan Timpe -Date: Mon Apr 10 14:49:14 2023 -0400 - - ssp section 1 tests - -commit 01a99093aff8dc3ef509777806f1499265793466 -Author: Jan Timpe -Date: Mon Apr 10 14:49:09 2023 -0400 - - ssp section 1 schema - -commit 7ae9019b02fd12d01a7b16824331b8def2c4f613 -Author: Jan Timpe -Date: Mon Apr 10 14:48:53 2023 -0400 - - add notEmpty validator - -commit fb68c5ba953d2b26cf67f6b4df1f629f75c8014b -Author: Jan Timpe -Date: Mon Apr 10 14:48:40 2023 -0400 - - add multirecord parsing - -commit 055b422e77464bc92f742bd2fc5cde83807486a1 -Author: Jan Timpe -Date: Mon Apr 10 14:46:54 2023 -0400 - - add admin - -commit fbed1464007519968826b3fc0a2069c8b6d02cf7 -Author: Jan Timpe -Date: Mon Apr 10 14:43:23 2023 -0400 - - add ssp m1/m2/m3 model, documents to search_indexes - -commit 20c9abf9a91ecf95f48677c1773698a1371211d9 -Author: Jan Timpe -Date: Mon Apr 10 14:41:43 2023 -0400 - - update search indexes - -commit 781438e4218be54923d6daaf8d7f243fcb9cbee8 -Author: Jan Timpe -Date: Mon Apr 10 10:45:41 2023 -0400 - - rm comments - -commit 9c24d7fabc156760c0fd801a856c368480610637 -Author: Jan Timpe -Date: Mon Apr 10 10:44:42 2023 -0400 - - improve import structure - -commit 08478b287445a7f2751f96e29347c6a889072460 -Author: Jan Timpe -Date: Fri Apr 7 14:02:36 2023 -0400 - - extra test - -commit a5042b536a7ca77e93830ed93f369e4113541e5f -Merge: 9b40c31a6 40895e273 -Author: Jan Timpe -Date: Fri Apr 7 13:25:11 2023 -0400 - - Merge branch 'develop' into chore/reorganize-search-indexes - -commit 40895e2733492c581d594897309e72f9fec245d6 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Apr 7 13:18:19 2023 -0400 - - 2408.3 - refactor tanf t1 parsing (#2464) - - * lift and shift search_indexes.parsers to parsers - - * lint - - * add helper methods to RowSchema and Field classes - - * add generic validator functions - - * create new header/trailer schema using RowSchema - - * create generic parse function for all schemas - - * add validator test, update docstrings - - * fix some tests - - * remove old preparser impl - - * fix parse section, blanks - - * rm comments - - * update parser task call - - * only save if record exists - - * add t1 schema - - * reduce parse_datafile complexity - - * improve schema mismatch handling - - * update tests with schema errors - - * rm extra header/trailer check - - * add count to big file test - - * add values assertions to small_correct - - * update comments - - * move get_schema_options_call - - * rename validate_document to be more descriptive - - * add new startswith validator - - * use startsWith in header/trailer preparsing validation - - * internal method naming - - * move trailer parse/validation out of preparsing - - * preparse trailer, but skip trailer pre-validation - - * ignore trailer parsing errors in preparse - - * misspelling - - * fix tests - - * fix program type mismatch - -commit 9b40c31a6d80ab68fcfe1db3c4346ab670a04621 -Merge: f324ba64f ac28b063c -Author: Jan Timpe -Date: Fri Apr 7 10:41:51 2023 -0400 - - Merge branch 'chore/refactor-tanf-t1-parsing' into chore/reorganize-search-indexes - -commit ac28b063c8af41dc3c6f1a575151465beb698c75 -Author: Jan Timpe -Date: Fri Apr 7 10:40:02 2023 -0400 - - fix program type mismatch - -commit 6a67cafcb0a06c7f84b8431f6572bfa77d134830 -Merge: 496d6f4f5 cc6e998c5 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Apr 6 13:48:12 2023 -0400 - - Merge branch 'develop' into chore/refactor-tanf-t1-parsing - -commit cc6e998c5775fe896a60110bf1b4df599b1afc0a -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Wed Apr 5 13:26:38 2023 -0600 - - Filter Users by STT/Region (#2476) - - * - adding comma - - * - Adding missing fixes from the botched revert - -commit f324ba64f1ec67591ebf0e01b06722fb4100e3a5 -Author: Jan Timpe -Date: Tue Apr 4 17:34:31 2023 -0400 - - docstrings - -commit 3823d3df65d0ad76c894fc9e8a07a5d0c5ca1e70 -Merge: fb2c3f0db 496d6f4f5 -Author: Jan Timpe -Date: Tue Apr 4 17:21:10 2023 -0400 - - Merge branch 'chore/refactor-tanf-t1-parsing' into chore/reorganize-search-indexes - -commit 496d6f4f530f7a74be8432f368e5288b36e317de -Author: Jan Timpe -Date: Tue Apr 4 17:20:44 2023 -0400 - - fix tests - -commit fb2c3f0db0e2adb7e44cb1f7201bc677355ac265 -Merge: 0569540cf 88799d191 -Author: Jan Timpe -Date: Tue Apr 4 17:16:17 2023 -0400 - - Merge branch 'chore/refactor-tanf-t1-parsing' into chore/reorganize-search-indexes - -commit 88799d191be413cd12210debf352280b32b02602 -Merge: d81199c11 223e5f115 -Author: Jan Timpe -Date: Tue Apr 4 16:54:04 2023 -0400 - - Merge branch 'develop' into chore/refactor-tanf-t1-parsing - -commit d81199c113a6315ddcf82b67ad52d192d1ad685c -Merge: f5aaff3f5 2f014f71b -Author: Jan Timpe -Date: Tue Apr 4 16:51:47 2023 -0400 - - Merge branch 'chore/2408-update-schema' into chore/refactor-tanf-t1-parsing - -commit 223e5f115fa304cfd534790adae18a65c10793ec -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Apr 4 13:50:46 2023 -0400 - - 2408.2 - refactor preparser (#2462) - - * lift and shift search_indexes.parsers to parsers - - * lint - - * add helper methods to RowSchema and Field classes - - * add generic validator functions - - * create new header/trailer schema using RowSchema - - * create generic parse function for all schemas - - * add validator test, update docstrings - - * fix some tests - - * remove old preparser impl - - * fix parse section, blanks - - * rm comments - - * update parser task call - - * only save if record exists - - * reduce parse_datafile complexity - - * improve schema mismatch handling - - * update comments - - * move get_schema_options_call - - * rename validate_document to be more descriptive - - * add new startswith validator - - * use startsWith in header/trailer preparsing validation - - * internal method naming - - * move trailer parse/validation out of preparsing - - * preparse trailer, but skip trailer pre-validation - - * ignore trailer parsing errors in preparse - - * misspelling - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 41a7c1731c4c6a4577edb556bc2cc153966f8cd4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Apr 4 10:55:59 2023 -0400 - - Revert "Filter User by STT/Region" (#2474) - -commit a12753a07529eb4cd9513b4f4d3431351d28bf77 -Merge: 49c4a6bb2 dff51e8c6 -Author: Eric Lipe <125676261+elipe17@users.noreply.github.com> -Date: Mon Apr 3 16:04:32 2023 -0600 - - Merge pull request #2471 from raft-tech/2415-filter-user-by-stt - - Filter User by STT/Region - -commit 0569540cf1a36eb0da0714877c027003a45048d8 -Author: Jan Timpe -Date: Mon Apr 3 16:26:21 2023 -0400 - - move models, documents, and admin to modular structure - -commit dff51e8c6114228e9aae5bcde99ecd12640e0acd -Merge: dcf3dd507 49c4a6bb2 -Author: elipe17 -Date: Mon Apr 3 13:42:48 2023 -0600 - - Merge branch 'develop' into 2415-filter-user-by-stt - -commit 49c4a6bb2430e65b8b8e481355d00e16d47c03e9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Apr 3 13:04:40 2023 -0400 - - Update CloudFoundry-DB-Connection.md (#2467) - -commit dcf7b5fd91c3462be5d2fbd2aa01ea7345b2240f -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Mon Apr 3 09:25:32 2023 -0700 - - Create sprint-69-summary.md (#2468) - -commit dcf3dd507dfc2ad03b0335d52e0b7e11bbb53344 -Author: elipe17 -Date: Mon Apr 3 09:56:05 2023 -0600 - - - Updating based on review feedback - -commit 0e0ac7a3a40b2956cb7173705da1d803f36e986f -Author: elipe17 -Date: Mon Apr 3 09:49:57 2023 -0600 - - - adding stt to stt_user - -commit e04c4023062127f3abe0db6c7de74b49218229d8 -Author: elipe17 -Date: Mon Apr 3 09:39:12 2023 -0600 - - - Using pytest fixtures - -commit 6674b8add8345e451544418c7052eebfcd69593a -Author: elipe17 -Date: Mon Apr 3 09:38:30 2023 -0600 - - Revert "- fixing test to use pytest fixtures" - - This reverts commit 335b0b28f144cbd01f5c46156d458d6a4dc21b40. - -commit 335b0b28f144cbd01f5c46156d458d6a4dc21b40 -Author: elipe17 -Date: Mon Apr 3 09:37:54 2023 -0600 - - - fixing test to use pytest fixtures - -commit 18485da256e3e7dbd614d1c72df385b74a79a7aa -Author: elipe17 -Date: Mon Apr 3 09:21:09 2023 -0600 - - - Adding test for new user property - -commit a2bbc7f750043aa005d35b2585a01688ab9ff3b8 -Author: elipe17 -Date: Mon Apr 3 08:43:14 2023 -0600 - - - fixed lint errors - -commit f852d10e4e2760cbc0f5fc64176177719dd1aaf8 -Author: elipe17 -Date: Mon Apr 3 08:35:10 2023 -0600 - - - Added property to display the region or stt in user view - - Added the region as a filter option - -commit 7091b9f94b54f1d2a5cc54066a4966734d8cc6ee -Author: elipe17 -Date: Mon Apr 3 07:32:58 2023 -0600 - - - Added stt/approval status to table view - -commit 2f014f71b78f9c90063816f9038d4cd3c777cf2e -Author: Jan Timpe -Date: Fri Mar 31 14:19:06 2023 -0400 - - misspelling - -commit 5d37e9b6a5563796bfff23d53771b5e03c05edeb -Author: elipe17 -Date: Fri Mar 31 11:35:44 2023 -0600 - - - Adding 'stt' as a filtering option for users - -commit 6fa315b6cee1ccb6046ea200df39f12b389079cb -Author: Jan Timpe -Date: Fri Mar 31 08:52:29 2023 -0400 - - ignore trailer parsing errors in preparse - -commit 1a1a4ba2aa1ba792ee6e31b50d8b956ed9a2ffa8 -Author: Jan Timpe -Date: Wed Mar 29 13:00:20 2023 -0400 - - preparse trailer, but skip trailer pre-validation - -commit 7fe5a4e193e97ae9deb7e608fd0c395cda8fbc4c -Author: Jan Timpe -Date: Wed Mar 29 12:34:49 2023 -0400 - - move trailer parse/validation out of preparsing - -commit f602f83de7edea491a02c42ba38c1de30db6105a -Author: Jan Timpe -Date: Wed Mar 29 08:47:52 2023 -0400 - - internal method naming - -commit 3323c70954beea25e69b8648674512b8ec4fc89a -Author: Jan Timpe -Date: Tue Mar 28 12:27:09 2023 -0400 - - use startsWith in header/trailer preparsing validation - -commit 4ab5e3795de09956e6b81e97d7cb343ecb80e92c -Author: Jan Timpe -Date: Tue Mar 28 12:26:00 2023 -0400 - - add new startswith validator - -commit e2732fc6794467929f302cb56857a9f92a61f4db -Author: Jan Timpe -Date: Tue Mar 28 10:16:22 2023 -0400 - - rename validate_document to be more descriptive - -commit 5e71eced7dd9a40dc025246f553169e6359f741c -Author: Jan Timpe -Date: Tue Mar 28 10:11:49 2023 -0400 - - move get_schema_options_call - -commit 98617c538f804eaa35a8c3ff8fcd0a6cafec1672 -Merge: f8d4b9394 65a5abc8b -Author: Jan Timpe -Date: Mon Mar 27 15:53:41 2023 -0400 - - Merge branch 'develop' into chore/2408-update-schema - -commit 65a5abc8b55ad4cdf49244edbe08eeeb3ffd9ea7 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Mar 27 11:33:00 2023 -0400 - - Update states.csv (#2463) - - NV is trying to submit SSP data via TDP and cant because STT metadata incorrect. - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 8ac46cba1dfa4b9105f386fd2ffb1c6a529c9bae -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Mon Mar 27 11:03:07 2023 -0400 - - 2408.1 - lift and shift search_indexes.parsers to parsers (#2456) - - * lift and shift search_indexes.parsers to parsers - - * lint - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 71010c7a314cc56ae6cd9850e5993e6ce29eaf2f -Merge: 438c6ca2f aa2e0d818 -Author: Miles Reiter -Date: Fri Mar 24 16:32:45 2023 -0400 - - Merge pull request #2459 from raft-tech/knowledge-center-faq-march - - March Knowledge Center Updates - -commit aa2e0d8184e8f1481e4bb3a80369b715e7094b93 -Author: Miles Reiter -Date: Fri Mar 24 15:51:40 2023 -0400 - - Update faq.html - -commit f5aaff3f5b84bc8bd5fc333c1518726387686f11 -Merge: 151fe1728 f8d4b9394 -Author: Jan Timpe -Date: Fri Mar 24 13:04:39 2023 -0400 - - Merge branch 'chore/2408-refactor-preparsing' into chore/refactor-tanf-t1-parsing - -commit f8d4b9394adad4e15b81162faa01d180221f46d4 -Author: Jan Timpe -Date: Fri Mar 24 13:04:13 2023 -0400 - - update comments - -commit 151fe172802efda662e53d054e78e09a80cf1286 -Author: Jan Timpe -Date: Fri Mar 24 08:48:32 2023 -0400 - - add values assertions to small_correct - -commit 0f9082afd65b1ee253b034f1615e699afac4966c -Author: Jan Timpe -Date: Fri Mar 24 08:32:09 2023 -0400 - - add count to big file test - -commit 1d01d1e347e89a30817cdb68a2b8c19e63167f19 -Author: Jan Timpe -Date: Fri Mar 24 08:31:39 2023 -0400 - - rm extra header/trailer check - -commit 173baa4ef100cf4d16a4fce98962f4a7cb91741c -Author: Miles Reiter -Date: Thu Mar 23 18:21:46 2023 -0400 - - Update faq.html - -commit 1f36dd1620e5cd15562cc05915d41e29016b10ea -Merge: 443c51b1c 438c6ca2f -Author: Miles Reiter -Date: Thu Mar 23 16:14:53 2023 -0400 - - Merge branch 'develop' into knowledge-center-faq-march - -commit 438c6ca2f8289b01a115c42f928ebbcf9a9e7403 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Mar 23 15:33:10 2023 -0400 - - Fix/2443 admin link in sitemap (#2450) - - * remove old approval/role checks in favor of selectors - - * update tests - - * rm code comment - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 0d7126780a0a50c6301e11e0a3dc176b40881290 -Author: Jan Timpe -Date: Thu Mar 23 10:59:49 2023 -0400 - - update tests with schema errors - -commit 95183a27afd6659d2f76e46dc2570e46c3fa7c99 -Merge: 6f4d31c7b 56dba8e99 -Author: Jan Timpe -Date: Thu Mar 23 10:37:09 2023 -0400 - - Merge branch 'chore/2408-refactor-preparsing' into chore/refactor-tanf-t1-parsing - -commit 56dba8e994f9632261b97ad6f0f124d61fbd4055 -Author: Jan Timpe -Date: Thu Mar 23 10:35:21 2023 -0400 - - improve schema mismatch handling - -commit 24308768b7a4d4b1a4335c2fda15eaad4b80d275 -Author: Jan Timpe -Date: Thu Mar 23 09:25:46 2023 -0400 - - reduce parse_datafile complexity - -commit 6f4d31c7b9ed63ddf4cc866267ee2308f9b5f683 -Author: Jan Timpe -Date: Thu Mar 23 08:44:33 2023 -0400 - - add t1 schema - -commit 5d1531d81f14f35218b680e7f354ca8fc0a917ca -Author: Jan Timpe -Date: Thu Mar 23 08:44:08 2023 -0400 - - only save if record exists - -commit ecf760ad6a4712cdcd32a876904fb325439c2d00 -Author: Jan Timpe -Date: Thu Mar 23 08:42:42 2023 -0400 - - update parser task call - -commit 443c51b1c9e014e5a6e68f10731207c0fad25901 -Author: Miles Reiter -Date: Thu Mar 23 01:44:23 2023 -0400 - - Update product-updates/knowledge-center/index.html - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit d1bd670c0d3f11fdd3ee4192ca508f8e92d7d340 -Author: Miles Reiter -Date: Thu Mar 23 01:44:14 2023 -0400 - - Update product-updates/knowledge-center/faq.html - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 2f7fd04125e62cc61e118d3a2fe8077e27190c32 -Author: Jan Timpe -Date: Wed Mar 22 14:29:08 2023 -0400 - - rm comments - -commit 0a0f7597c5790b07b7b2548c5fcc18f4a409f1e2 -Author: Jan Timpe -Date: Wed Mar 22 12:04:55 2023 -0400 - - fix parse section, blanks - -commit 30132350c8f33d51ad1b4ff58bfbd176c4bf411b -Author: Jan Timpe -Date: Wed Mar 22 11:16:46 2023 -0400 - - remove old preparser impl - -commit a1342dbe211961ffa7889b76c4925a155724b279 -Author: Jan Timpe -Date: Wed Mar 22 11:16:34 2023 -0400 - - fix some tests - -commit 0b89f5dc0f62bbf072a1ddad3811ab120b710f15 -Author: Jan Timpe -Date: Wed Mar 22 09:57:24 2023 -0400 - - add validator test, update docstrings - -commit c9152928d26b197087ed9d36140a67f1cb4f8c2d -Author: Jan Timpe -Date: Wed Mar 22 09:51:22 2023 -0400 - - create generic parse function for all schemas - -commit cb02745d0946c1ecaa5185bab164bad25ddb43da -Author: Jan Timpe -Date: Wed Mar 22 09:50:57 2023 -0400 - - create new header/trailer schema using RowSchema - -commit 18f36762e8072955d38c9ea65899eb834ce73d18 -Author: Jan Timpe -Date: Wed Mar 22 09:50:45 2023 -0400 - - add generic validator functions - -commit f6109d4536ccd59ba95e6e5b5a0ef7abd23278be -Author: Jan Timpe -Date: Wed Mar 22 09:41:05 2023 -0400 - - add helper methods to RowSchema and Field classes - -commit 7645e3f9599a23cc4f5d9c47b780a8dafb491ef2 -Author: Miles Reiter -Date: Tue Mar 21 10:54:54 2023 -0400 - - Copies over all changes from Test environment - -commit 8f5e514ea907ead90055320c4be8c31543317509 -Author: Jan Timpe -Date: Mon Mar 20 10:59:34 2023 -0400 - - lint - -commit 64d847e7f88365204a4042e276479c2a224ba058 -Author: Jan Timpe -Date: Mon Mar 20 10:48:32 2023 -0400 - - lift and shift search_indexes.parsers to parsers - -commit 926e626dadfd1fe81f8bdcd158f7efa50eef31cf -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Mar 17 10:58:21 2023 -0400 - - Fix/1641 stt code in user (#2446) - - * change location_id/location_type to region/stt - - * add stt_code to admin stt select, make searchable - - * add docstring - - * update stt string representation test - - * rm unused limit - - * use logger instead of print in migration - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit ca11a041000007f0764d1fee043e25f69f23d31b -Author: Miles Reiter -Date: Thu Mar 16 11:57:44 2023 -0400 - - Updates UX templates to include internal raft-review AC (#2388) - - * Update design-deliverable-issue-template.md - - * Update research-synthesis-issue-template.md - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit dc69604582c8b8c6746c34fcc9f350d96f20b3a9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Mar 16 11:46:20 2023 -0400 - - Changing flow if initial user and superuser (#2452) - -commit 5e568ea4f993ef8ad5ec3f89b629f3688c94ed3d -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Mar 16 08:10:55 2023 -0700 - - Create sprint-68-summary.md (#2454) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 393538bfb52da3512cd349c1c3d8fd7582624ed1 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Mar 16 10:53:50 2023 -0400 - - Downgrading to within HHS limits. (#2455) - - Please see https://github.com/raft-tech/TANF-app/pull/2441 - -commit 6b6b329a8f7c3d78d639acf24865be7009c88bea -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Mar 16 10:11:02 2023 -0400 - - Create CloudFoundry-DB-Connection.md (#2453) - -commit 251bffe564ffeb3f956094fd8e5163ad0404eb08 -Author: Cameron Smart -Date: Wed Mar 15 06:57:39 2023 -0700 - - Deploy locally with curl (#2447) - - * add command to deploy branch using curl - - * added comments CCI token - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> - -commit e8ba3f93e70c3a42c53499ec31ba746d1a371b57 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Mar 15 09:08:17 2023 -0400 - - remove reports useEffect (#2451) - -commit 6b6ef2bb89fc8a3f764ca9072a4c31d0647921b7 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Mar 14 11:44:34 2023 -0400 - - 1121 file parsing errors log (#2422) - - * DRF to expose model - - * added filtering to DRF - - * dev test changes - - * linting, change urls - - * del frontend utility - - * added frontend createXLReport from base64 - - * linting and correct backend URL - - * added pytests and corrected url - - * linting - - * readded permission for data_file - - * added permission for search indexes - - * for testing - - * Test frontend - - * corrected createXLS - - * added month field - - * checnged rpt_month_year and tests - - * Update IdleTimer.jsx - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 4ccabfc37c8d4751864a7c2cfaa318a4ebbed94d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Mar 13 17:02:03 2023 -0400 - - Debug/zap resource class bump (#2441) - - * Update base_config.yml - - * Update executors - - * Wrong class keyword - - * running against debug/zap-resource-class-bump branch, for debugging - - * Update .circleci/owasp/workflows.yml - - --------- - - Co-authored-by: George Hudson - -commit 304ccdec82becf178ccad771c54922c2ccee42f1 -Author: Cameron Smart -Date: Mon Mar 13 12:04:46 2023 -0700 - - Bug 2379 search form error count (#2444) - - * Set expected error count based on role. - - * use selector for role - - * fix test - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 30a48ac1e3b1db24762fe4ff552347a002d2a29f -Author: Cameron Smart -Date: Fri Mar 10 07:33:53 2023 -0800 - - Feat/1965 approved user homepage (#2440) - - * add resource cards to home page - - Changed how resource cards were styled to keep the padding correct on the home and splash page - - * move tests - - * remove roles and permissions from being dispalyed - - * reusable card logic - - * add id to card - - * fix card tests - - * fix home tests - - * Changed approval text, updated deadline text to caption. - - * fix tests - - * spelling and tests - - * spellin - -commit 27c4124d4119e4cdc61f1602c5e2037cbde96b61 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Mar 2 09:26:49 2023 -0500 - - Fixing logout flow (#2428) - - Noticed during testing that logout was failing locally. The login.gov message stated to not use token_hint and instead include client_id. - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 1e6918c78e1c8156f0a70e0f9ff9eef634f2656b -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Mar 1 16:11:02 2023 -0500 - - Fix/1641 three digit stt code (#2426) - - * update stt_code to 3 chars - - * allow saving user location without a group assigned - - * fix tests - - --------- - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 41be613e07a02e1cd5c248b8106a82a9ed326931 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Tue Feb 28 13:42:40 2023 -0800 - - Create sprint-67-summary file (#2433) - -commit ff33e1e3e2248783e2fb8a1bbc50c0a99ffa8074 -Author: Cameron Smart -Date: Wed Feb 22 06:07:01 2023 -0800 - - bug/2403 scheduled triggers (#2414) - - * add unless nigtly to non nightly - - * also don't run deployment from nightly owasp scan for prod - - --------- - - Co-authored-by: George Hudson - -commit 412b4993acc4ed6a67e62fc49da33a8d5263bfa1 -Merge: 826165041 450ea9533 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Feb 15 11:06:34 2023 -0800 - - Merge pull request #2413 from raft-tech/Smithh-Co-patch-2-1 - - Create sprint-66-summary.md - -commit 450ea95338279a69c26878501b87da11021450ef -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Feb 15 10:38:20 2023 -0800 - - Create sprint-66-summary.md - -commit 826165041544838d50d08b5b7bacc7f460fc259f -Author: George Hudson -Date: Wed Feb 15 11:09:12 2023 -0700 - - Devops/2337 deploy develop on pr merge (#2401) - - * added Action to kick off deploys to develop on merges to develop, with additional job of running e2e tests on deployed environment - - * fixed wrong parameter name in workflow - - * don't need to run tests in circleCI before deploy (should already have been run in PR to develop) and temporarily change branch tracked for develop env - - * update deploy script to add in DJANGO_DEBUG and CYPRESS_TOKEN to env for develop deploys - - * updated to track develop branch before PR to develop. Added to documentation - - * added empty line at and of file - - * added empty line at and of file - - * moved base and api url prefixes to env vars - - --------- - - Co-authored-by: George Hudson - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 030fb2b3c38ffee104b51c5f934fded6a8753b6a -Merge: 9c81ead03 5f7bc19de -Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> -Date: Tue Feb 14 11:24:53 2023 -0600 - - Merge pull request #2410 from raft-tech/knowledge-center-hotfix - - image update - -commit 5f7bc19de49df08886867e1cff1798e396e4023c -Author: Diana Liang -Date: Tue Feb 14 10:54:39 2023 -0600 - - image update - - image update - -commit 9c81ead03b895a879dc1a33912de831389dbe22b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Feb 8 09:28:49 2023 -0500 - - changed NC from sample to universe state (#2398) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 4768439fbfcfe83b360eeb8a91a19fd36a070dc5 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Feb 7 17:08:11 2023 -0500 - - image swap (#2397) - -commit 8cc731039d0c672e86e19be2299f35f139e70838 -Merge: 8773a3e30 b4705adba -Author: Miles Reiter -Date: Tue Feb 7 10:11:49 2023 -0500 - - Merge pull request #2394 from raft-tech/3.0-knowledge-center-additions - - Adds 3.0 content to knowledge center - -commit b4705adba0bd2b8d817fd05c2dc9cb54bfcd1ddb -Author: Miles Reiter -Date: Mon Feb 6 17:44:42 2023 -0500 - - Copies repo from test env - -commit 8773a3e30a8e83a14704c35ab2cd88824f52271c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Feb 6 14:28:48 2023 -0500 - - Introducing technical debt, too complex to fix tanf-dev (#2392) - - * Introducing technical debt, too complex to fix tanf-dev - - * More elegant solution from Mo - - * Undoing random newlines - -commit 7d3a08a9131fa8d9ac5c8502369b1a4703db9d18 -Author: Cameron Smart -Date: Mon Feb 6 06:12:16 2023 -0800 - - Feat/1007 file versioning (#2364) - - * get most recent file - - * actually returns most recent file - - * force deploy to sandbox - - * trigger pipeline - - * update env vars for elastic - - * added print statement to see if version is returned - - * added print statement to see if version is returned - - * use boto3 - - * boto3 client - - * corrects setting vars - - * use client.client - - * get specific file - - * use .Bucket - - * checking all versions - - * actually use client - - * print versionid - - * add version id to model - - * add version id to modeland migration - - * remove reload - - * empty commit - - * empty commit - - * blank is False - - * var name typo - - * add property - - * test version - - * new download function - - * fix dl function - - * fix dl function - - * extended download functionality to take versioning into account - - * Put file getting logic on backend - - * remove unused code - - * update ci to enable versioning - - * cicd for enabling versioning - - * syntax - - * syntax - - * syntax - - * syntax - - * add workflows - - * syntax - - * install dependencies - - * apt instead of apk - - * need sudo apt - - * sudo for move and chmod - - * setting env vars - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * syntax - - * install aws the ol fashion way - - * Abracadabra - - * use deploy on label - - * typo - - * aws already in executor? - - * with script - - * chmod new script - - * stop if the key is already created - - * stop if the key is already created - - * linting - - * fix pytest - - * force deploy to sandbox - - * debugging - - * pagination - - * deploy - - * better loop - - * add circle ci for enabling versioning - - * Add s3_versioning var to model and use in view - - * add frontend submission history - - * add pagination endpoint - - * fix paginator - - * add new current submission endpoint (wip) - - * merged branches, got latested submissions endpoint working - - * linting and tests - - * added db migration - - * fix download functionality - - * test s3 version - - * hook up submission history api - - * bug? - - * disable arrows when first/last page - - * fix api - - * outline tests - - * merge 1007 - - * fix messed up merge - - * fix submitted by api - - * actually fix the submitted_by api and frontend - - * use dynamic app name for key - - * move uploaded files to a new part of redux state - - * fix broken tests - - * segmented control tests - - * paginator tests - - * move submitted_by to serializer - - * submission history tests - - * reports submission history test - - * fix submission history button styling - - * create new getCurrentSubmission action/reducers, wire up to current submission frontend - - * lint - - * undo circle changes - - * undo deploy on push - - * dont rebuild on deploy - - * lint - - * add logging - - * print version on create - - * print filename - - * look at whole version object - - * filter by bucket prefix - - * get latest version with verioning key - - * lint - - * fix merge mistakes - - * Update tdrs-backend/tdpservice/data_files/models.py - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * rm latest submission endpoint (unused) - - * rm commented code - - * rm commented reindex - - * unused import - - * Delete job - - * Delete filename - - * consolidate conditionals - - * rm default pagination and add working queryset ordering - - * pr changes - - * fix paginator aria-label - - * a11y fixes - - * include year/section in data file upload path - - * rm unused - - * trigger pipeline - - * trigger pipeline - - * fix submission history loading for SSP file types - - * update s3 path - - * Devops/1007 develop fake (#2389) - - * Testing out new workflow on main branch. - - * Changing to fake branch to improve accuracy. - - * refactor conditionals for versioning run - - * fixed filters - - * fixed spacing - - * fixed spacing - - * testing develop deploy - - * tracking develop branch now. - - --------- - - Co-authored-by: Andrew Jameson - Co-authored-by: George Hudson - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: George Hudson - Co-authored-by: Andrew Jameson - Co-authored-by: George Hudson - -commit f7938d41ff66d34b9e17213bade2e6e924d8fa79 -Merge: 64e164c55 fb04b8eef -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Fri Feb 3 11:13:32 2023 -0800 - - Merge pull request #2380 from raft-tech/Smithh-Co-patch-1 - - sprint-65-summary.md - -commit fb04b8eef7b68832c6b19c6fcfc8f337e19c719c -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Feb 2 10:20:51 2023 -0800 - - Formatting - adding George to sum.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 2b6f9e652958e9213f05eb59a8517cab75e49464 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Feb 2 10:05:59 2023 -0800 - - Formatting closure statement - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 32dcf2894fe029786129c4ab013cd5cf51b62195 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Thu Feb 2 10:05:08 2023 -0800 - - Formatting Sprint Goal - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit ffabffdbc47e6d8812632b12171a0470aae498c0 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Feb 1 15:20:12 2023 -0800 - - Updated spring-65-summary.md - - -- Removed 1354 from completed - ++ Added closed (not merged) section - -commit f1a7ea1a36adf63a7d93c514742779d03c59aad2 -Merge: 3dd70c142 64e164c55 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Feb 1 14:11:46 2023 -0800 - - Merge branch 'develop' into Smithh-Co-patch-1 - -commit 3dd70c1428de8d8320f5422b7cf4eae252e375eb -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Wed Feb 1 13:37:29 2023 -0800 - - ++ George to Summary - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 64e164c55d4289a72d527ab5b34f5058a62b197a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Feb 1 13:53:39 2023 -0500 - - Feat/132 parser file to model, no validators (#2312) - - * install django-elasticsearch-dsl-drf - - * set up elastic infra - - * add search indexes app and wire up t1 submission type - - * fix elastic impl, configure remaining submission models - - * update settings - - * add docker dns env variable for elastic - - * fix elastic version locally - - * update example env - - * rm default elastic host - - * code cleanup and linting - - * fix test - - * signed auth headers for elastic requests in non-local environments - - * update elastic settings - - * update aws auth impl - - * update auth impl (inconsistent docs) - - * ws - - * unused import - - * pin deps - - * actually pin deps - - * update dsl for django 3 support - - * removed unused boto3 connection - - * add model mapping tests - - * pinned version note - - * rebuild search indexes on dev startup - - * damn linter - - * set env default - - * Update tdrs-backend/tdpservice/search_indexes/test/test_model_mapping.py - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * fix pipfile, permissions conflicts - - * move index rebuild to all envs - - * reorganize tests - - * relock deps - - * First commit on cleaner branch, starting new branch based on Friday talks about pulling in 1354 - - * remove extra document fields - - * update field lengths - - * Wrapping up a number of changes for today around trying out validators and how we'd translate validation errors up into our JSON field. Desperately needs testing - - * Removed FIPS from document, gotten myself into a state where I only get errors 'populate on re-entrant' - - * Fixed my import issue, unhelpful django error took me on a wild goosechase - - * Starting on new route given pairing yesterday, will seek to create a separate PR/branch for model validation. - - * Adding validate_header and relevant cerberus package - - * Finishing up header test, need tribe_code handled - - * Cleaned up header test. - - * Some linting fixes - - * Manual fixing for changes to t1 model fields - - * Missed 2 field name changes, appending. - - * Seems our model needs changing, again. - - * Keep forgetting to add validators, no big changes - - * Semi-successful parsing and minimal tests. - - * Clearly missing something on the parser_task. - - * Finished manual uploads. Some unit tests work - - * Several days of work and effort, web file upload seems successful, still need to improve tests drastically. - - * fixed header validation test - - * test_preparser_trailer done - - * commiting some experimental test work so i can rebase/merge/pull/push - - * Tweak to test for smaller bad test file - - * Large bad file did apparently have a good T1 line on 14,364, broke it. - - * Fixed trailer validation again - - * Changing up header tests given cerberus limitation. - - * All tests are passing. - - * linter cleanup and removing files to be rewritten in 1354 - - * Simplified preparse from lint_failure. - - * Broke data_files:test_api when calling @filenames - - * minor tweak to linter alias - - * Removing unnecessary TODO - - * Minor removals after proof-reading code. - - * Removing extra lines breaking flake8. - - * Reducing log traffic to unspam circleci. - - * Updated other tests for parser changes. - - * Upping code coverage. - - * lint extra newline - - * Improvement to test on get_trailer_row() - - * Tweaked issue with spy_count_check() - - * PR feedback #1, This might break CircleCI - - * Fixing lockfile hashes for new deps. - - * lint fixes - - * Apply suggested removals from code review (parserlog) - - * Handful of changes related to PR - - * lint fixes - - * Moved length check into parser. - - * Apply suggestions from code review - - * updating to new token name - - * Updating broken CircleCI token - - * Alex found a silent failure, changing how preparse() handles failures. - - * Update tdrs-backend/tdpservice/search_indexes/parsers/test/test_data_parsing.py - - * PR feedback -- multiple headers/trailers - - * Making line length for t1 permissive per feedback - - * Linter cleanup - - * 132 - Converted field names per Alex, gov lead (#2377) - - * Converted field names per Alex, gov lead - - * Fixing parser fields/tests - - --------- - - Co-authored-by: Jan Timpe - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: abottoms-coder - -commit 912da6693925bbaab11df8fcc7da403338a75589 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Feb 1 11:54:13 2023 -0500 - - Increase memory to resolve file upload errors (#2354) - - * increase per child memory for testing - - * enable rsa pub keys for paramiko to test - - * lint - - * testing low limit memory - - * increased memory and changed upload task config - - * removed logger - - * linting - - * increased clamav instance memory - - * Uncommented flower package - - * Added disabled algorithms - - --------- - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit f7250781285dfb65194c1672ce6db790cc142714 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Tue Jan 31 13:31:59 2023 -0800 - - Create sprint-65-summary.md - -commit 07afe9acba82c973e9af767732bd578e87c27145 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Tue Jan 31 13:21:55 2023 -0800 - - Adding Gantt diagram reference (#2375) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 481b3c5c3538850d83a630f7293d81d5baecd1d9 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Tue Jan 31 12:24:45 2023 -0800 - - Updated POCs on readme (#2374) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit b636a7302853c6be60af8f324ee7fdb75137b0b4 -Author: Smithh-Co <121890311+Smithh-Co@users.noreply.github.com> -Date: Fri Jan 27 12:20:40 2023 -0800 - - Added George Hudson (DevOps - Raft) (#2378) - -commit 60e5b05d2b7db900011259c8ccfb4867ceeb9516 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Jan 27 09:29:46 2023 -0500 - - Chore/2141 cypress (#2305) - - * add and configure cypress - - * move tests - - * add cypress authentication override/support - - * generate cypress users management cmd - - * update test w/ shared steps - - * add cypress docs - - * commit cypress support - - * fix editor noise - - * sp - - * add cypress circle ci job - - * formatting - - * format - - * format again - - * add npm install for cypress - - * linter - - * override cypress token - - * fix var name - - * add cypress users - - * change local token - - * store screenshots/videos as artifacts - - * adr title - - * update email domain - - * broken link - - * Update docs/Technical-Documentation/cypress-integration-tests.md - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * update test name - - * update owasp circle token - - * try set browser - - * oops - - * Update docs/Technical-Documentation/Architecture-Decision-Record/019-integration-tests.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - * Update docs/Technical-Documentation/Architecture-Decision-Record/019-integration-tests.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 70f47b7cf3ecc260efe862262df52f7202456f2e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 25 09:48:38 2023 -0500 - - Issue 2336: Documentation added for CircleCI IR (#2367) - - * documentation added for CircleCI IR - - * Update docs/Technical-Documentation/secret-key-rotation-steps.md - - syntax - - * Update docs/Security-Compliance/Incidence-Response/README.md - - fixed internal ref again - - * Update docs/Technical-Documentation/secret-key-rotation-steps.md - - extra underscore - - * fixed syntax - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 59818329895f991a27b91f647387ca1f1a29f8fc -Author: Cameron Smart -Date: Tue Jan 24 13:01:31 2023 -0800 - - Feat/217 revise stt model (#2363) - - * Change code to postal_code - - * add sample to model and populate - - * set State field to none in State type STTs - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit 953d8818e17eb4e4bb1ce25d2e5fcb10ce03310b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jan 24 09:27:55 2023 -0500 - - Driver/navigator raft reviews (#2362) - -commit d503dfa8e4c76f2d3d4c9860f279b166fce14554 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Fri Jan 20 10:02:19 2023 -0800 - - Create sprint-64-summary.md (#2361) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 372e5f171b517adb365c2e9bb7daf626fc6a2435 -Merge: 0af45269e fa712b71b -Author: Miles Reiter -Date: Thu Jan 19 12:48:10 2023 -0500 - - Merge pull request #2339 from raft-tech/january-project-update - - January project update - -commit fa712b71b2cedf1ffc0bef488ac417bc39c837d9 -Merge: b0d8ab27d 0af45269e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 19 11:23:49 2023 -0500 - - Merge branch 'develop' into january-project-update - -commit b0d8ab27d5ffaf9bbdbd8d4057a91d79b4fdee53 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 19 11:17:04 2023 -0500 - - Update product-updates/index.html - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 52774309efcbdaf136cea1476e04ba39f19798a4 -Author: Miles Reiter -Date: Thu Jan 19 01:07:54 2023 -0500 - - Small grammar fix - -commit c9172cf7b8bf122624d0b86f1efdc45f979d720b -Author: Miles Reiter -Date: Thu Jan 19 01:06:26 2023 -0500 - - Adds final two tweaks from Alex feedback / UX sync - -commit 0af45269ec654f1608314d77dfaa8781960e15e4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 18 14:27:47 2023 -0500 - - Update Sys-Admin-Acct-Mgmt.md (#2359) - - * Update Sys-Admin-Acct-Mgmt.md - - updating ssh connection documentation on GFE + adding account approval field - - * Update qasp-owasp-scan.yml - - token change - -commit 05d1b53474ec95a84400d79eaaaf0db51463f1ae -Author: Miles Reiter -Date: Tue Jan 17 00:50:25 2023 -0500 - - Copies knowledge center additions (response to Alex's feedback) - -commit cc01906003e183b9479ecfe4347da933dee3e9e9 -Author: Miles Reiter -Date: Fri Jan 13 19:00:03 2023 -0500 - - Update index.html - -commit 1a09f5b7e4b5b36fe8bc26b192a92a77f94e63b4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Jan 12 09:35:15 2023 -0500 - - Only prod shall have prod vars (#2348) - - * Only prod shall have prod vars - - * breaky breaky api token - -commit 63da449a1f4eccad8c3a8797c476746f07403c93 -Author: Cameron Smart -Date: Tue Jan 10 13:59:29 2023 -0800 - - No more robots (#2271) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit b81cdcd922dae649309837aa77a75d2be76dee37 -Merge: a993f75ef 2b7f1dd2f -Author: Miles Reiter -Date: Tue Jan 10 12:12:25 2023 -0500 - - Merge branch 'develop' into january-project-update - -commit a993f75ef93de0a87b7969f89ccf11b02ddd15b2 -Author: Miles Reiter -Date: Mon Jan 9 15:12:46 2023 -0500 - - One more padding reduction - -commit 90356bec7ea0389b88109bc73b22a9f30bd86733 -Author: Miles Reiter -Date: Mon Jan 9 15:06:27 2023 -0500 - - Reduces margins between headings - -commit 2b7f1dd2f8705ddcb061aebcb19725cb390f7409 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Jan 9 11:57:05 2023 -0800 - - Create sprint-63-summary.md (#2333) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit c5e1a096f4ad4d7651c8acdd9ae567503f2190eb -Author: Miles Reiter -Date: Mon Jan 9 12:57:31 2023 -0500 - - Updates IDs - -commit 0bff3793bfca0f633b742cd476dcbc7945f92371 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Jan 9 09:22:28 2023 -0800 - - Update Team-Composition.md (#2340) - - * Update Team-Composition.md - - * Update docs/How-We-Work/Team-Composition.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 15d55e521b8954c16d3747120cc472e43ed17b90 -Author: Miles Reiter -Date: Mon Jan 9 11:44:10 2023 -0500 - - Fixes typos - -commit f18da74426680bdcce93fcc0766e283f2df2229f -Author: Miles Reiter -Date: Fri Jan 6 02:20:35 2023 -0500 - - Merge Test Env into TANF-app branch - - - Jquery Version Bump - - - Adds new Project Update page & updates nav - - - Fixes highcharts issue that was breaking formatting in test environment - -commit 4057f5d364e56e223c82bf4bc65d9f3f42a22df3 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jan 3 07:04:10 2023 -0800 - - Create sprint-62-summary.md (#2322) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 4769538d780e00311e6d5c3a52916facc66027a0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Dec 21 10:45:05 2022 -0500 - - pipenv lock --keep-outdated (#2324) - - * pipenv lock --keep-outdated - - * Changing only the hash and reverting pipfile pin - -commit 8a41d76bc934e857aa1483d2e203ddd1f0e30b6d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Dec 20 13:49:56 2022 -0500 - - Hotfix - Automating Elasticsearch deployment variables (#2320) - - * First try at fixing pipeline - - * workaround for auto-deploy - - * instantiating logger - - * try again - - * After much testing, some updated settings for ES - - * Reverting deployment changes for polishing PR. - - * linter fix - - Co-authored-by: Cameron Smart - -commit e32e05902babe93566dcd737f85b60935aeab72a -Merge: cda3b8700 e6e269b92 -Author: Miles Reiter -Date: Fri Dec 16 16:59:28 2022 -0500 - - Merge pull request #2316 from raft-tech/2191-synthesis-update - - 2191 synthesis update - -commit e6e269b92263ad9b5fcd52bdca37133fca097764 -Merge: cd4aafeb5 cda3b8700 -Author: Miles Reiter -Date: Fri Dec 16 16:33:13 2022 -0500 - - Merge branch 'develop' into 2191-synthesis-update - -commit cd4aafeb57951eb9289869fc3a493b0fc7e17b28 -Author: Miles Reiter -Date: Fri Dec 16 16:32:44 2022 -0500 - - Update 2022, Fall - TDP 2.2 Pilot Expansion.md - - Makes link future proof for next project update - -commit cda3b8700bf8b72d239bf704ea478d05c9555bcd -Author: Miles Reiter -Date: Thu Dec 15 12:05:03 2022 -0500 - - Update dev-ready-design-issue-template & add readme link to a11y doc (#2299) - - * Update dev-ready-design-issue-template.md - - * Rename dev-ready-design-issue-template.md to design-deliverable-issue-template.md - - * Update README.md - - * Update README.md - -commit 83b30ad538881a36677221baa06db29cb51c413e -Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> -Date: Wed Dec 14 16:01:47 2022 -0600 - - Update README.md - - added Fall, 2022 research synthesis summary - -commit 33d1b5de8eefef23fb6572454a28ebd922b28a27 -Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> -Date: Wed Dec 14 14:50:20 2022 -0600 - - Update README.md - -commit 68c42eca966b2b3bdefe16e81d7b4085bd89c376 -Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> -Date: Wed Dec 14 14:47:26 2022 -0600 - - Create 2022, Fall - TDP 2.2 Pilot Expansion.md - -commit c86987bef918038be78e622a66287883844cebf4 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Dec 7 10:56:51 2022 -0800 - - Create sprint-61-summary.md (#2303) - -commit 8b9dc4e10cc559b0b4e2d4dae86708ea96da35d7 -Merge: 014056a0c 8409ad359 -Author: Cameron Smart -Date: Fri Dec 2 11:04:22 2022 -0800 - - Merge pull request #2284 from raft-tech/cicd-nightly-trigger-fix - - Cicd nightly trigger fix - -commit 8409ad359b618c2d18a56096fb94f990b6a6d81d -Merge: 5a2761bfe 014056a0c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Dec 2 13:52:32 2022 -0500 - - Merge branch 'develop' into cicd-nightly-trigger-fix - -commit 5a2761bfe0d2eb87ee29cee7e6b873c00f365b34 -Author: Cameron Smart -Date: Fri Dec 2 09:42:59 2022 -0800 - - update readme - -commit 113d353d08a0376f7634b208fa4dc72e3bd784d3 -Author: Cameron Smart -Date: Fri Dec 2 09:40:20 2022 -0800 - - Updated config.yml - -commit b1f502b25723384c46dfaf90ae05f87506cdf5f7 -Author: Cameron Smart -Date: Fri Dec 2 09:35:59 2022 -0800 - - consolidate generate config scripts - -commit ad0dc210b2cab5151aed8aa4d86312fa94ffc344 -Author: Cameron Smart -Date: Fri Dec 2 09:08:59 2022 -0800 - - Apply suggestions from code review - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit c5454213d3f7f811328fcb27cc8bf9d159aabdd4 -Author: Cameron Smart -Date: Thu Dec 1 10:39:24 2022 -0800 - - Apply suggestions from code review - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 014056a0cd022bcf3af44adc114e385c121211bb -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Dec 1 11:24:29 2022 -0500 - - Feature/1351 - elastic (#2160) - - * install django-elasticsearch-dsl-drf - - * set up elastic infra - - * add search indexes app and wire up t1 submission type - - * fix elastic impl, configure remaining submission models - - * update settings - - * add docker dns env variable for elastic - - * fix elastic version locally - - * update example env - - * rm default elastic host - - * code cleanup and linting - - * fix test - - * signed auth headers for elastic requests in non-local environments - - * update elastic settings - - * update aws auth impl - - * update auth impl (inconsistent docs) - - * ws - - * unused import - - * pin deps - - * actually pin deps - - * update dsl for django 3 support - - * removed unused boto3 connection - - * add model mapping tests - - * pinned version note - - * rebuild search indexes on dev startup - - * damn linter - - * set env default - - * Update tdrs-backend/tdpservice/search_indexes/test/test_model_mapping.py - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - - * fix pipfile, permissions conflicts - - * move index rebuild to all envs - - * reorganize tests - - * relock deps - - * remove extra document fields - - * update field lengths - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit aa54f3f9775836efbcad8ba33491bcbb3c746352 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Nov 29 13:55:30 2022 -0500 - - Found fix for chromium bug on startup (#2292) - -commit 9affb78361fdc23692c4fcd67f34cc0e4c3f2451 -Author: Cameron Smart -Date: Wed Nov 23 12:44:02 2022 -0800 - - run nightly on develop branch - -commit 4b227f9f91fe8e456d64975779329f4aed4c1767 -Author: Cameron Smart -Date: Wed Nov 23 12:00:41 2022 -0800 - - clean up config - -commit 2f3b439c4ea5f9b3870d156276c9fc0407b3a853 -Author: Cameron Smart -Date: Wed Nov 23 11:57:20 2022 -0800 - - fix small typo - -commit e0ffc3cf555042e97a49d6bae362a9bd8bb830f7 -Merge: cfe55c548 a659af004 -Author: Cameron Smart -Date: Wed Nov 23 11:38:13 2022 -0800 - - Merge branch 'develop' into cicd-nightly-trigger-fix - -commit a659af004b182928bf2857bb230cdde0888b3f63 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Nov 23 11:26:42 2022 -0800 - - Create sprint-60-summary.md (#2286) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit cfe55c54807d169eacc4b4b74bff1c6b16608a38 -Author: Cameron Smart -Date: Tue Nov 22 15:19:00 2022 -0800 - - add readme - -commit dccc84a08679cd37aa51c95a8618ebd7cc159967 -Merge: 44f558aa3 9f47745e7 -Author: Miles Reiter -Date: Tue Nov 22 17:31:32 2022 -0500 - - Merge pull request #2287 from raft-tech/knowledge-center-update-submission-graphic - - Update 2-search-component.png (SSP/TANF & Heading change) - -commit 9f47745e7e80049744ae05037b8b574f8d0eac5a -Author: Miles Reiter -Date: Tue Nov 22 17:03:41 2022 -0500 - - Update uploading-data.html - -commit c98b8d1dcfd5b54951d5ff39c2bcd745e3624268 -Author: Cameron Smart -Date: Tue Nov 22 13:33:24 2022 -0800 - - target develop - -commit 00cd12968ebd84e2e663fa6c4bd75160971c02ba -Author: Cameron Smart -Date: Tue Nov 22 13:24:42 2022 -0800 - - test on current branch - -commit e65f1ef585b231f27697455ba5fb4a91d8cf2f4c -Author: Cameron Smart -Date: Tue Nov 22 13:22:12 2022 -0800 - - test on current branch - -commit 9a405d14dc58d0489bc881a91a9de3b57e357202 -Author: Cameron Smart -Date: Tue Nov 22 13:21:01 2022 -0800 - - test on current branch - -commit e3da9ea35161565b64327a4e636a22b43e5720c4 -Author: Miles Reiter -Date: Tue Nov 22 16:18:10 2022 -0500 - - Update 1-tab-emphasis.png - -commit a906e5779a060cc3fd12e1b1a1d8d0d0f63705b5 -Author: Cameron Smart -Date: Tue Nov 22 13:15:31 2022 -0800 - - remove whitespace - -commit bd910d4eaa345d9083711c7ba82c216dca77c185 -Author: Cameron Smart -Date: Tue Nov 22 13:08:55 2022 -0800 - - move commands to utils - -commit 008aabfca7e5b8550af4fec4f8de4d5d244e6a38 -Author: Miles Reiter -Date: Tue Nov 22 16:02:15 2022 -0500 - - Update 2-search-component.png - -commit 571bd9c1caf9cd3b20552002febbfe3be99951f9 -Author: Cameron Smart -Date: Tue Nov 22 12:57:35 2022 -0800 - - move commands to utils - -commit 2d0fb13547276db5a410f22152030b94faa1a3b9 -Author: Cameron Smart -Date: Tue Nov 22 12:44:01 2022 -0800 - - add nightly to base config - -commit a2006a70873f76fd49a30685a70359e9ff72f3d6 -Author: Cameron Smart -Date: Tue Nov 22 12:40:06 2022 -0800 - - try with schedule in UI - -commit 44f558aa3136dd62000d44fe3475374ae88d937b -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Nov 22 15:20:29 2022 -0500 - - Feat/1866 celery beat and postgres backups (#2176) - - * Excessively spammy PoC - - * Less spammy, need to resolve exception in db_backup for local - - * running into localstack issues, have refactored db_backup.py significantly - - * added AWS access key - - * Cleanup and functional db_backup after pairing w/ Mo, need to test in deployed env - - * found better flag for local v. deployed - - * missed 1/2 conditionals that needed update - - * Different deployed env missing var that we added manually to other envs - - * tilde for home was including 'app' in pgpass path - - * didn't finish this thought on s3 uri - - * ignoring backups locally - - * Removing local-specific logic - - * Removing unnecessary postgre install no longer used by local runs of db_backup.py - - * Trying out gunicorn-based env var - - * Updating indents - - * minor logging update - - * Setting REDIS_URI outside of CircleCI - - * Quotes in docker envs break test_api* - - * Ignoring db_backup for code coverage as untestable - - * Finalizing cadence as review is complete. - - Co-authored-by: abottoms-coder - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit fe177c6ab3d696e3bc986b57410510867ede9dbf -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Nov 22 15:02:36 2022 -0500 - - Fix/1744 permission guards (#2258) - - * fix role selector - - * permission guard component to conditionally render based on redux state - - * use permission guard for data file page - - * use permission guard for data file nav item - - * add component tests for data file permission guard - - * require account approval to access data files - - * update ci? - - * fix ci img - - * ci img - - * rm old heroku keys workaround - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 13221d851cbdbd061cf62c566df00af6bffa95c5 -Author: Cameron Smart -Date: Tue Nov 22 10:21:11 2022 -0800 - - small change to github action - -commit 57d18afc26155086f6b72eb3635d1c50482a726c -Author: Cameron Smart -Date: Tue Nov 22 10:16:26 2022 -0800 - - separate nightly owasp github actions file - -commit 92c55f51a65877296a567d49a20a8780dffcf077 -Author: Cameron Smart -Date: Tue Nov 22 10:11:31 2022 -0800 - - Updated config.yml - -commit df693c4ce34ce524d03de2fa7fdd2e0c17393462 -Author: Cameron Smart -Date: Tue Nov 22 09:58:33 2022 -0800 - - test - -commit 1bb249baaec9370fcef4dcd0e9526a04d45d7341 -Author: Cameron Smart -Date: Tue Nov 22 07:46:36 2022 -0800 - - turn filter off - -commit 5d01d8899800dd05dfa5f2c80819a9d4713c713b -Author: Cameron Smart -Date: Tue Nov 22 07:20:17 2022 -0800 - - add filter - -commit 8d097ee98ac13df1fd620fc3a582561fbce015e5 -Author: Cameron Smart -Date: Tue Nov 22 07:17:50 2022 -0800 - - test trigger - -commit d1ea6b0a2ea9aada22c1ed0a599d3955f7a16b08 -Merge: 7b120111d 6f8e8a9b1 -Author: Cameron Smart -Date: Mon Nov 21 09:48:34 2022 -0800 - - Merge pull request #2259 from raft-tech/1373-split-circleci-config - - split config file with continuation orb - -commit 6f8e8a9b1d606daa3e13919425b02d19abdea32c -Author: Cameron Smart -Date: Mon Nov 21 09:07:58 2022 -0800 - - added separate workflow files - -commit 84ff7f7dda41f8d6821fd4cde046d89a4a282919 -Author: Cameron Smart -Date: Thu Nov 17 14:23:04 2022 -0800 - - reorder by stage - -commit 5e2e2d875df609c31c8c62e8c85dce5bd820c1f8 -Merge: 6f121b705 7b120111d -Author: Cameron Smart -Date: Wed Nov 16 13:20:46 2022 -0800 - - Merge branch 'develop' into 1373-split-circleci-config - -commit 7b120111d9c68c58c9287ee7c97924c334d6a828 -Merge: bc2055653 c6a301c51 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Nov 16 12:36:20 2022 -0500 - - Merge pull request #2270 from raft-tech/hotfix/gpg-key-rename - - fix ubuntu renamed gpg key err - -commit c6a301c51caa8f6a30c818a8a9b759b56826992e -Merge: 77bd17fc1 bc2055653 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Wed Nov 16 12:11:03 2022 -0500 - - Merge branch 'develop' into hotfix/gpg-key-rename - -commit 77bd17fc139c86c2ab77fe0641afa7311cc6eb47 -Author: Jan Timpe -Date: Tue Nov 15 15:39:05 2022 -0500 - - fix ubuntu renamed gpg key err - -commit bc2055653babcbe8477adea62efbe43eda621cda -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Tue Nov 15 09:51:38 2022 -0500 - - update buildpacks (#2254) - - * update buildpacks - - * update changelog - - * update python version and lock deps - - * sp - - * rm sp - -commit 6f121b70534296d39dd6c781e599e35f537d95d2 -Author: Cameron Smart -Date: Mon Nov 14 12:36:39 2022 -0800 - - Update Readme - -commit c1cfd0333a465c3fcb71d745f843e840fbf96dd7 -Author: Cameron Smart -Date: Mon Nov 14 12:04:12 2022 -0800 - - split config file with continuation orb - -commit 95142292f46e27ebb90b0e8a4f70557779c7ac4e -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Nov 9 12:47:37 2022 -0800 - - Create sprint-59-summary.md (#2252) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 52d975b5c3176a009d72d48d19a000b9db0a4fa0 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Nov 9 09:05:46 2022 -0800 - - Update Roadmap-and-Backlog.md (#2246) - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 4fae5a8f80fe0a32bd114c06c1f84714980c3c63 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Nov 9 11:26:04 2022 -0500 - - Hotfix for v2.2 for SSP data submission (#2251) - - * Hotfix for v2.2 for SSP data submission - - added filenames for UT for SSP data submission for v2.2! - - * ME also missing SSP filenames - - audited `states.csv` to confirm all SSP states had filenames. only UT and ME were missing these. - - * add space for ME SSP files - - * close quotes for ME SSP Section3 - -commit a0fd0b6ad646faa4d85c147a3767d818051a4747 -Author: Cameron Smart -Date: Tue Nov 8 09:31:11 2022 -0800 - - 1755 - As a data analyst, I need to be able to upload SSP data files (#2236) - - * added ssp boolean to stt model - - * changed stts and datafile models - - * made ssp editable - - * added radio buttons to frontend - - * send ssp to backend through drf - - * added frontent tests - - * removed comments, fixed radio button - - * change migrations - - * remove temp files - - * fixed test - - * linting - - * reorder ssp radios - - * Fixed db migrations. Added backend test - - * fixed serializer tests - - * removed redundant ssp in the model - - * changes for testing migration issue - - * updated db migrations - - * changed ssp and migration - - * make new migration - - * added ssp to populate - - * change ssp in migration only - - * fix file path - - * make ssp upeditable - - * update db migration order - - * new migrations - - * Changing populate_stts to be peek-ahead, always-update STT fields - - * Changing populate_stts to be peek-ahead, always-update STT fields - - * removing old request_access endpoint test - - * plz fix - - * add an irrelevant comment - - * rm comment - - * linting - - * linting - - * add frontend redux for fileType - - * use global file type state in post/get requests - - * support ssp in GET param - - * linting - - * fixed test - - * fixed REDIS_URI - - * add '-' to header - - * rm prints - - * cleaner if statement - - * spelin - - * rm stuffs - - * update quarter-month mapping for logentries - - * Adding our testfiles to gitignore and removing comments around filenames property. May update again soon - - * move file type filter logic to get_queryset - - * docstring - - * added test for Tribe datafile and moved Tribe logic to serializer - - * linting - - * removing print and logs - - Co-authored-by: mo sohani - Co-authored-by: abottoms-coder - Co-authored-by: Jan Timpe - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - Co-authored-by: Pennington - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - -commit cdc8d051511a0953a545d49db19b7c90126a1513 -Merge: 44ddd240f 59ad92758 -Author: Miles Reiter -Date: Tue Nov 8 12:19:02 2022 -0500 - - Merge pull request #2249 from raft-tech/knowledge-center-em-hotfix - - Hotfix: Closes Knowledge center 's - -commit 59ad927587978bf4f6ac8f496f81fc96e1d90fde -Author: Miles Reiter -Date: Tue Nov 8 12:12:32 2022 -0500 - - Copies hotfix from test environment - -commit 44ddd240f79632b28e74f66d860316fefe6a557b -Merge: c42845e64 717856818 -Author: Miles Reiter -Date: Tue Nov 8 11:12:26 2022 -0500 - - Merge pull request #2220 from raft-tech/knowledge-center-update-2.2 - - Copy all Knowledge Center changes from Test env. - -commit 71785681839d3f7463a23e7e269cd99c49eafd97 -Merge: 1ebaf0ba1 e59affd42 -Author: Miles Reiter -Date: Tue Nov 8 10:53:59 2022 -0500 - - Merge branch 'knowledge-center-update-2.2' of https://github.com/raft-tech/TANF-app into knowledge-center-update-2.2 - -commit 1ebaf0ba1a69d79b3c3c78ea782193149873c776 -Author: Miles Reiter -Date: Tue Nov 8 10:53:56 2022 -0500 - - Adds emphasis on email addresses - -commit e59affd42f1d0b1861f9664c56f2f5482f94cc7c -Merge: 38fdf99b5 c42845e64 -Author: Miles Reiter -Date: Tue Nov 8 10:00:13 2022 -0500 - - Merge branch 'develop' into knowledge-center-update-2.2 - -commit 38fdf99b505daa33eb9a5d61d54a9c517288f968 -Author: Miles Reiter -Date: Tue Nov 8 09:58:12 2022 -0500 - - Adds denied sentence & some more copyediting - -commit 0ce67aa3195dbbe6f1e7a8251e7edc3b8141a0a4 -Author: Miles Reiter -Date: Tue Nov 8 09:40:11 2022 -0500 - - Adds tweaks from Friday - -commit 96fcaead9854788a962c3fa7dfc05035989ee42a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Nov 7 11:25:29 2022 -0500 - - Update product-updates/knowledge-center/create-new-login.html - - this removes no-reply from this section. - -commit c42845e64154e18316d4b7cc7d729b4ae09fc662 -Merge: ec6b59ca2 cf0d85a53 -Author: Miles Reiter -Date: Fri Nov 4 15:06:23 2022 -0400 - - Merge pull request #2237 from raft-tech/lilybl1-patch-1 - - Update dev-ready-design-issue-template.md - -commit cf0d85a5333809fc3b799118b23cab4f53f798cb -Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> -Date: Fri Nov 4 14:00:59 2022 -0500 - - Update dev-ready-design-issue-template.md - - updated the title based on UX sync - -commit ec6b59ca2f10bb64c29f0271c3f0043a0d8752c9 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Nov 3 12:53:31 2022 -0400 - - Fix/992 notify data file search selection changes (#2209) - - * notify on search field changes - - * live update report header - - * rename modal - - * conditional render modal - - * remove comment - - * create a generic Modal component - - * rm class - - * add tests - - * rm unused - - * undo live changing report header - - * unset/reset prev selected values - - * hide submit button if there are search form changes - - * update tests - - * complete modal message - - * disable instead of hide submit - - * add `aria-disabled` to buttons - - * allow submissions for "old" search values - - * fix ofa admin stt selection - - * fix no stt set for non admins - - * clear files on cancel upload - - * trap focus when modal displayed - - * fix z-index - - * add tab key tests - - * focus header on modal display - - * describedby on modal desc - - Co-authored-by: Miles Reiter - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 5e0284b1e5ea45e577938533e864765a890fb9a1 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Nov 3 12:37:08 2022 -0400 - - Update docker-compose.yml (#2230) - - pinning zap version to 2.11.0 in preparation for next release. - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 404daf0b93d4abb19bc6a37e3ebaa5d12fd8e870 -Author: Cameron Smart -Date: Thu Nov 3 09:05:50 2022 -0700 - - Feat/1844 deactivate email (#2204) - - * Send emails warning for account deactivation - - * linting - - * added custom DAC logger - - * linting - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - Co-authored-by: jtimpe <111305129+jtimpe@users.noreply.github.com> - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 7255966514760e233a42d675b02323feda3b5829 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Nov 3 11:23:26 2022 -0400 - - fix/2140 scroll upload alert into view (#2215) - - * scroll upload alert into view - - * add scrollIntoView mock for test - - Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> - -commit eee343af17e16867dad076f0f4e0016b103f3631 -Merge: baa5c69c6 53253fb0f -Author: Miles Reiter -Date: Tue Nov 1 17:27:48 2022 -0400 - - Merge branch 'develop' into knowledge-center-update-2.2 - -commit baa5c69c66f8afd7609d7e1966e219499ad1be9e -Author: Miles Reiter -Date: Tue Nov 1 17:25:31 2022 -0400 - - Adds "higher is better" to rating question - -commit 53253fb0faddda842426910d97cf62db565580d5 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Oct 28 16:45:27 2022 -0400 - - Update docker-compose.yml (#2218) - -commit ffeefe76e26cefd05e8f005f0aaf0a8e56587248 -Merge: 568c9fbd6 bd99ff17c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Oct 28 15:24:36 2022 -0400 - - Merge branch 'develop' into knowledge-center-update-2.2 - -commit bd99ff17ccb008a331a5ea5d5c3b84965e82eac3 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Oct 28 14:14:21 2022 -0400 - - Deps/zap broken executor (#2221) - - * pinning executor version to present value instead of using 'vague' current tag - -commit 568c9fbd6b94397fb2abcb17c97381282077299e -Author: Miles Reiter -Date: Fri Oct 28 11:58:44 2022 -0400 - - Copy all Knowledge Center changes from Test env. - - - Google Analytics - - - New Footer w/ ACF Privacy Policy & Jump To Top link - - - New Give Feedback form - - - Updated content & new imagery on Complete Resubmission, Existing Login, New Login pages - - - New (USWDS) icon-list based changelog on homepage - -commit cd20eb9b6c2d42c53bcd30a76e0453394bb54246 -Merge: 6c5178ddf f6713b96a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Oct 27 11:29:15 2022 -0400 - - Merge pull request #2200 from raft-tech/feature/email-on-data-submit - - 1845 - Email on data submit - -commit f6713b96a5dc0f414465da0f09bc70b8188c4a91 -Merge: 0930387b2 6c5178ddf -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 26 17:25:39 2022 -0400 - - Merge branch 'develop' into feature/email-on-data-submit - -commit 6c5178ddf9043e547ee898610dac076b06570a27 -Merge: 2d61e579e 0d22c2cbf -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 26 17:24:38 2022 -0400 - - Merge pull request #2210 from raft-tech/stevenino-patch-3 - - Create sprint-58-summary.md - -commit 0930387b2100b6be608b778f2a39585c9731ee4f -Author: Jan Timpe -Date: Wed Oct 26 14:12:23 2022 -0400 - - extra } - -commit 4db48ba23645920e3708d6ff9b46f39a28b82ffc -Author: Jan Timpe -Date: Wed Oct 26 13:50:09 2022 -0400 - - remove unused style - -commit d4cb9040fd78aad32266345f7f3da550746504d2 -Author: Jan Timpe -Date: Wed Oct 26 13:11:42 2022 -0400 - - add inline table style (gmail hack) - -commit 3c20bf0644c44721489d9efd459d5d3d15d82a98 -Author: Jan Timpe -Date: Wed Oct 26 13:01:47 2022 -0400 - - add table styling - -commit e8a19e1449df4aeb46f20f2fe024358ae06ba83e -Author: Jan Timpe -Date: Wed Oct 26 13:01:39 2022 -0400 - - allow style overrides - -commit 59cbdff7fae6cc8b02ca57abd6668b3846887b6f -Author: Jan Timpe -Date: Wed Oct 26 13:01:27 2022 -0400 - - add subject to email context - -commit 0d22c2cbfd4fda5ad21947caadcbc53688768383 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Oct 25 15:37:56 2022 -0700 - - Create sprint-58-summary.md - -commit d66b7451b5ce17831955cddc3801e020c1829674 -Author: Jan Timpe -Date: Tue Oct 25 18:15:30 2022 -0400 - - spell fix - -commit 0a490c4844acafedc1366a7a09be1d643d4857fe -Author: Jan Timpe -Date: Tue Oct 25 16:51:39 2022 -0400 - - update data submitted email template - -commit c88e89fc491b40e5af911f09612803aad81a41d6 -Author: Jan Timpe -Date: Mon Oct 24 15:44:28 2022 -0400 - - rm nullable from log - -commit ec10c5aee2a73b6c8ccb40611298999f3c90d666 -Author: Jan Timpe -Date: Mon Oct 24 15:31:56 2022 -0400 - - add django admin logging for submission emails - -commit 37589da992a1475491c03ce01fb41f877be24dc6 -Author: Jan Timpe -Date: Fri Oct 21 16:39:27 2022 -0400 - - linter driving me crazy - -commit 646851a320661f76c547659d3ff3cbad83439492 -Author: Jan Timpe -Date: Fri Oct 21 16:33:33 2022 -0400 - - move helpers into new module, update log - -commit 0670956e42ec38b8be130fd86e39bbca12e2eb65 -Merge: fc516c35f 2d61e579e -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Oct 21 16:08:23 2022 -0400 - - Merge branch 'develop' into feature/email-on-data-submit - -commit fc516c35f521b4cc3a9d15e6fcd29899f6d29b5a -Author: Jan Timpe -Date: Fri Oct 21 15:59:26 2022 -0400 - - linter - -commit 1d7b19211f11d6fa540faca41fb3ba49a7d5c111 -Author: Jan Timpe -Date: Fri Oct 21 15:52:54 2022 -0400 - - fix conflics - -commit 2d61e579e3c205cfe295c779e96b8d3c775ee7ef -Merge: 398e296d9 f86cc47ed -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Oct 21 15:33:21 2022 -0400 - - Merge pull request #2101 from raft-tech/doc/1104-boundary-diagram - - Issue 1104: Updated boundary diagrams for release 2+ - -commit 941f0d09cbe1ca5f7b3e949af631e777427fbc8e -Merge: df3c880e4 398e296d9 -Author: Jan Timpe -Date: Fri Oct 21 15:32:28 2022 -0400 - - Merge branch 'develop' into feature/email-on-data-submit - -commit df3c880e4c8f324071cd02266a6733825a633dc8 -Merge: f7327fa19 0707d063a -Author: Jan Timpe -Date: Fri Oct 21 15:27:51 2022 -0400 - - Merge branch 'develop' into feature/email-on-data-submit - -commit f86cc47ed1e96143ca72dda0b389eab15ed77ee2 -Merge: 60b066184 398e296d9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Oct 21 15:27:04 2022 -0400 - - Merge branch 'develop' into doc/1104-boundary-diagram - -commit 398e296d995b18c28ca783fe34c89c36e3d0207a -Merge: e3d14df85 bd4594c09 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Oct 21 15:24:33 2022 -0400 - - Merge pull request #2178 from raft-tech/feat/1814-account-access-emails - - Feat/#1814 #1840 #1839 #1334 account access emails - -commit 60b066184abd717588f26ed1c3159ff33d03e909 -Merge: 8d28bfe53 e3d14df85 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Oct 20 12:47:35 2022 -0400 - - Merge branch 'develop' into doc/1104-boundary-diagram - -commit bd4594c099ac422439a63aebc8db1006bb4ec122 -Author: Jan Timpe -Date: Thu Oct 20 12:44:54 2022 -0400 - - move context update - -commit 2f9a4cc6e91541ae42552e3c27b76ea61f812705 -Merge: 87e76c43e e3d14df85 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Thu Oct 20 09:30:49 2022 -0400 - - Merge branch 'develop' into feat/1814-account-access-emails - -commit 87e76c43e6fbd5fd5e2c230f74765bfcb6c365a1 -Author: Cameron Smart -Date: Wed Oct 19 20:43:23 2022 -0700 - - Template urls change based on frontend url - -commit c9494672131289e0aceddd4ec5a65ed19afd45b6 -Author: Jan Timpe -Date: Wed Oct 19 17:04:28 2022 -0400 - - linter - -commit 35b062e01ff1922ece5d7428076404085f67732c -Author: Jan Timpe -Date: Wed Oct 19 17:02:15 2022 -0400 - - move to email helper - -commit 3b395e9eee4b0048c7526e0e06240fab566d365d -Author: Jan Timpe -Date: Wed Oct 19 16:25:41 2022 -0400 - - linterr - -commit 3877e62222b66f0cd2af641ba28f60f6a7c9faf9 -Author: Jan Timpe -Date: Wed Oct 19 15:11:02 2022 -0400 - - adds a logger function for DAC logging of email status - -commit e3d14df85575e38ea1cacfcba32828e2e1f213a7 -Merge: 0707d063a 3a5fef1ec -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 19 10:51:01 2022 -0400 - - Merge pull request #2185 from raft-tech/stevenino-patch-3 - - Create sprint-57-summary.md - -commit 3a5fef1ec7a4fff2b282bb85a0e64c5db7e0a235 -Merge: 4079197ef 0707d063a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 19 10:29:07 2022 -0400 - - Merge branch 'develop' into stevenino-patch-3 - -commit f7327fa19072c77371117435ac085f8e53acfd03 -Author: Jan Timpe -Date: Tue Oct 18 15:26:57 2022 -0400 - - clean up logging and add test - -commit dc1ce32e21aceeb7183563a3cf06635dc887ac8c -Author: Jan Timpe -Date: Tue Oct 18 13:59:18 2022 -0400 - - First line should be in imperative mood - -commit 0896c038e0ed43dc7473a8cc89b3386ed7a6004f -Author: Jan Timpe -Date: Tue Oct 18 13:33:28 2022 -0400 - - lint - -commit 60a6ebdfc4731a22af67f7f4c9bfdaa51506afa3 -Author: Jan Timpe -Date: Tue Oct 18 13:26:26 2022 -0400 - - add data submitted email - -commit 126ca551393341ac77351ff1dd93b97d7e7e12b9 -Merge: c0e823250 97cd5175b -Author: Jan Timpe -Date: Tue Oct 18 12:23:36 2022 -0400 - - Merge branch 'feat/1814-account-access-emails' into feature/email-on-data-submit - -commit c0e823250c6b99e23e322f3b861b8c7b6dc1b922 -Author: Miles Reiter -Date: Wed Sep 28 14:34:15 2022 -0400 - - Correct title tag - -commit d1097fb1d8a4f465e23794defcf5a3c25745d8ed -Author: Miles Reiter -Date: Thu Sep 22 23:22:05 2022 -0400 - - Copies over all changes from test environment - -commit c3af696e303b9f1c37bcff5ac8770782ae2cb3f5 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 08:00:32 2022 -0700 - - Update docs/Sprint-Review/sprint-55-summary.md - -commit cb6f1838b0d8863dba6287757facd4e5e96030dc -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 08:00:20 2022 -0700 - - Update docs/Sprint-Review/sprint-55-summary.md - -commit eef2809d493ea3676c20779343540f01274008c1 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 14 09:42:27 2022 -0700 - - Create sprint-55-summary.md - -commit 3d9f6a8ea2486de5f7d8112286d45ffaf675496f -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 07:28:29 2022 -0700 - - Update docs/Sprint-Review/sprint-56-summary.md - -commit 93155811efd44f2ab785e036ce45cace874db1ca -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 07:28:20 2022 -0700 - - Update docs/Sprint-Review/sprint-56-summary.md - -commit 8342ef09ef1ea45ab7aeecfe8cded7dc5e623a7f -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 07:28:10 2022 -0700 - - Update docs/Sprint-Review/sprint-56-summary.md - -commit 02ebf8b03552438211f92b6f04c1b88772ecca26 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Sep 27 17:04:14 2022 -0700 - - Create sprint-56-summary.md - -commit 4527a6795ed91d4e84cc3db31cf880f8da097275 -Author: msohanifr -Date: Tue Sep 27 05:50:44 2022 -0400 - - Revert "Update README.md" - - This reverts commit b0cb11787c72360312328cfd26ea9ddc4e462c6c. - -commit 5642939c762e198bd9d3457d7f603378a48c0600 -Author: raftmsohani -Date: Mon Sep 26 14:25:07 2022 -0400 - - linting - -commit f96561d1da374b808a03a484468d6f105975ae0b -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Sep 26 14:11:28 2022 -0400 - - Update models.py - - Changed to include 'Tribal' interim section logic. - -commit c9fc31e37a0a8bca60ea5068c6d403e456e092aa -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Sep 26 12:28:04 2022 -0400 - - Update README.md - - trivial change. - -commit 510eea6b3269af83ef894b719ad81d60447ced0d -Author: raftmsohani -Date: Thu Sep 22 11:06:40 2022 -0400 - - removed new filename method - -commit b1ba2c3af8b8830262abd8a505e892a6e3268939 -Author: Cameron Smart -Date: Thu Sep 29 09:52:03 2022 -0700 - - Run scans when label is added - -commit 487b03abf93edb17ad6b93b865ae4ddcf43c9081 -Author: Cameron Smart -Date: Wed Sep 28 10:21:34 2022 -0700 - - disable proxy pass - -commit 008305d12b3a4f47ab169854d56f76e19ee4446b -Author: Cameron Smart -Date: Wed Sep 28 09:56:12 2022 -0700 - - test owasp - -commit 2b17c6f4c1ec6dab621821888e0293d2c820d905 -Author: Jan Timpe -Date: Thu Sep 15 11:23:25 2022 -0400 - - update timeout to match component timeout - -commit d52eede8b1a3e0f7ecbeff6b93503c1f9553f20b -Author: Jan Timpe -Date: Thu Sep 15 11:05:37 2022 -0400 - - add back welcome text - -commit 536499cffc3f9590ac274b88a91c49c385c77894 -Author: Jan Timpe -Date: Thu Sep 15 10:43:22 2022 -0400 - - fix user approved but not assigned role bug - -commit 751cd95ebbb12d330c017ef2029a719916e79845 -Author: Jan Timpe -Date: Thu Sep 15 10:43:05 2022 -0400 - - add new user role selectors - -commit df8a31622c6bf68c4c7bf3894c48ef0732877d39 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Sep 12 16:28:30 2022 -0700 - - Create sprint-54-summary.md - -commit 137a3ab9665ed242281ba701604128d182c65ea2 -Author: Miles Reiter -Date: Mon Sep 26 11:14:32 2022 -0400 - - Update docs/User-Experience/Research-Syntheses/2022, Summer - TDP 2.0 Pilot Program.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 0c637c85f42fc1b940bdc8cfb6e61bf69e64fc50 -Author: Miles Reiter -Date: Mon Sep 26 11:14:21 2022 -0400 - - Update docs/User-Experience/Research-Syntheses/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 10c3e1aee2511316310bf2e070e3f29dc475e5fd -Author: Miles Reiter -Date: Thu Sep 22 23:10:50 2022 -0400 - - Update README.md - -commit f44e41af3b1cbe51573f5460b4ca441a95d50244 -Author: Miles Reiter -Date: Thu Sep 22 23:02:13 2022 -0400 - - Create 2022, Summer - TDP 2.0 Pilot Program.md - -commit 1f497a8149405e4f3c1314983a1695c529537225 -Author: Jan Timpe -Date: Tue Sep 6 10:18:21 2022 -0400 - - update nginx and python buildpacks - -commit 0707d063a8d943fea682ba6d54d870699571fd64 -Merge: f8c0c84dc 22cfcb4d1 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Oct 18 08:01:27 2022 -0400 - - Merge pull request #2189 from raft-tech/release/v2.1.0 - - Release/v2.1.0 - -commit 97cd5175b8c236b953fe4c7e722666d003a8b6d9 -Author: Cameron Smart -Date: Mon Oct 17 10:07:52 2022 -0700 - - linting - -commit 9dadc38cab8b20923074832d70f1fe902f65644d -Merge: a42d5e6a7 22cfcb4d1 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Oct 14 14:18:40 2022 -0400 - - Merge branch 'release/v2.1.0' into feat/1814-account-access-emails - -commit 22cfcb4d16a5cace083154b69a88e221c0a28943 -Merge: c7895e948 6e938d4c9 -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Oct 14 13:37:05 2022 -0400 - - Merge pull request #2190 from raft-tech/release-v2.1-update - - Release v2.1 update - -commit 6e938d4c9207ead26561f4d46e81027de2496e74 -Author: Cameron Smart -Date: Thu Oct 13 11:26:35 2022 -0700 - - fix palley - -commit 753f10bc27281f58286bec2f57532cf67a581cda -Author: Cameron Smart -Date: Thu Oct 13 11:17:13 2022 -0700 - - fixed errors caused by merge - -commit 436f14a5fd67e47ffb67c38f7cbe98adfe1db475 -Merge: c7895e948 f8c0c84dc -Author: Cameron Smart -Date: Thu Oct 13 10:39:08 2022 -0700 - - Merge branch 'develop' into release/v2.1.0 - -commit a42d5e6a7a6c6bb0d4a9199024e69e5599aa64fd -Author: Cameron Smart -Date: Wed Oct 12 07:26:59 2022 -0700 - - revert config form test mode - -commit d71af803a1d857d443be4bab4a3104ba7497e14c -Author: Cameron Smart -Date: Tue Oct 11 19:03:37 2022 -0700 - - adressing pr comments - -commit 4079197ef367783932db0fcf8d1cba8c7dee45dc -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Oct 11 16:19:20 2022 -0700 - - Create sprint-57-summary.md - -commit 9d2a6955145f75530739661790d2f7d144a05ba2 -Author: Cameron Smart -Date: Fri Oct 7 12:01:15 2022 -0700 - - more logs - -commit 201d03a240907357b9e6a0d51602cd90a6b0631d -Author: Cameron Smart -Date: Fri Oct 7 11:40:37 2022 -0700 - - force deploy to sandbox - -commit e264ad6c90f28fe0f07ed4079ff4c9c1dd491c0a -Author: Cameron Smart -Date: Fri Oct 7 11:36:53 2022 -0700 - - prints for testing - -commit c1266f594eb89832f1debfaf083396abf42a90dd -Author: Cameron Smart -Date: Fri Oct 7 10:47:55 2022 -0700 - - Use base.html to extend templates - -commit 23949336d69a3ce68cffb896a1a66c2f777dcfef -Author: Cameron Smart -Date: Fri Oct 7 10:10:10 2022 -0700 - - add one more test, fix email - -commit d2db3a8e8025d6edaede161c0e34f8f492ee8bae -Author: Cameron Smart -Date: Wed Oct 5 17:07:03 2022 -0700 - - fix errors caused by merge, linting - -commit e63ca3efb989de9033dedb709081045ea60c9bf9 -Author: Cameron Smart -Date: Wed Oct 5 16:45:06 2022 -0700 - - Tested account status emails. Linting - -commit 0ffb99fd3e786741cbdce37a1f814cfca7bd7864 -Author: Jan Timpe -Date: Wed Oct 5 16:40:07 2022 -0700 - - Override save and from db to send emails. - When a change is made to the user account approval status an email will be triggered - Co-authored-by: Cameron Smart - -commit d1eda172f9e883f7fe16cd3b5fd813563ecadfe8 -Merge: a2c29efdf 68072aeee -Author: Cameron Smart -Date: Wed Oct 5 16:24:39 2022 -0700 - - Merged in need account approval code - Merged 68072aeee2edc62232f59fa7eb7844a5251e2c03 - -commit a2c29efdf720a907f0d147f407ba3cfa252eb07d -Author: Cameron Smart -Date: Wed Oct 5 15:43:26 2022 -0700 - - update test name - -commit 244e37c7564a9d8eae40b78fba5b21cb9e788199 -Author: Cameron Smart -Date: Wed Oct 5 14:45:49 2022 -0700 - - Added more email templates - - Templates for access request, approved, denied, and deactivated - -commit 5a24165d4b515db568f73fc83bb61d5641c9a783 -Author: Jan Timpe -Date: Wed Oct 5 14:40:55 2022 -0700 - - Logic to send emails all in email.py - -commit c7895e948424b1a2bbe10ab15f05b1cc725e02a1 -Merge: d0fb5cf86 39d18f7ff -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 5 16:58:50 2022 -0400 - - Merge pull request #2129 from raft-tech/feat/1952-celery-email-queue - - Feat/1952 celery email queue - -commit f8c0c84dc45fab335ade60987d1b5a991569ba5e -Merge: cff126aa5 4195bc03a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 5 12:31:14 2022 -0400 - - Merge pull request #2170 from raft-tech/bug/2102-label-owasp-scans-fail - - Bug/2102 label owasp scans fail - -commit 4195bc03a2b0f83335a10e9197da4c312de15beb -Merge: 7c129d889 cff126aa5 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Oct 5 12:23:47 2022 -0400 - - Merge branch 'develop' into bug/2102-label-owasp-scans-fail - -commit 39d18f7ff7b560ac6f0a9363f6a53cc11e9bced6 -Author: Cameron Smart -Date: Fri Sep 30 13:00:46 2022 -0700 - - linting - -commit f87e857faa305c8ee7c4fd00e26a36fb5bc8c91a -Author: Cameron Smart -Date: Fri Sep 30 12:56:17 2022 -0700 - - Another small change to doc string - -commit 69553b2c6b3e4fc177295d16c849cb82d83affb7 -Author: Cameron Smart -Date: Fri Sep 30 12:16:48 2022 -0700 - - small change to doc string - -commit d05639cfb6379685628ce80dc8578880eee28141 -Author: abottoms-coder -Date: Fri Sep 30 15:03:53 2022 -0400 - - Final clean-up commit done with Cameron for circleci and testing mail function - -commit e1c65adb1032a2b342fd40759daa87754a20bda9 -Author: abottoms-coder -Date: Fri Sep 30 14:26:37 2022 -0400 - - changing recipient for mail() and also adding redis as dependent service - -commit cff126aa5252f31be7103f89eb20981dee8d11ab -Merge: 01aa878f2 8329f73a0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 13:17:53 2022 -0400 - - Merge pull request #2155 from raft-tech/feat/2136-ACF-Titan-filename-from-STT-filename-table - - Feat/2136 acf titan filename from stt filename table - -commit 7c129d8893bc5baac4947e91ea7bdfa8c2a9b2f8 -Author: Cameron Smart -Date: Thu Sep 29 09:52:03 2022 -0700 - - Run scans when label is added - -commit 8329f73a0dd695ebef425516aa455592d103792a -Merge: d10e7ba18 01aa878f2 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 12:36:56 2022 -0400 - - Merge branch 'develop' into feat/2136-ACF-Titan-filename-from-STT-filename-table - -commit 01aa878f238052f976358355c66f8a0e93f9bf3e -Merge: c5d60bf5f 56ff8d026 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 12:25:53 2022 -0400 - - Merge pull request #2167 from raft-tech/stevenino-patch-3 - - Create sprint-56-summary.md - -commit 56ff8d0262dd0e09aa1ed238e22a64ced00191b9 -Merge: 539b1f6d2 c5d60bf5f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 12:19:43 2022 -0400 - - Merge branch 'develop' into stevenino-patch-3 - -commit c5d60bf5fef62cb2cde55084931d5f05e61f09bc -Merge: ca6266a03 ead0eb819 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 12:19:32 2022 -0400 - - Merge pull request #2139 from raft-tech/stevenino-patch-4 - - Create sprint-55-summary.md - -commit ead0eb819940f5aa65992bf75dc38ce1428ec345 -Merge: 27542bb21 ca6266a03 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 12:07:05 2022 -0400 - - Merge branch 'develop' into stevenino-patch-4 - -commit ca6266a03debba4fdad07adb3880f4f8ab6e1275 -Merge: bc94f4e93 e22e8d0b9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 29 12:06:58 2022 -0400 - - Merge pull request #2157 from raft-tech/project-updates-and-knowledge-center-updates - - Updates & Enhancements to Project Updates / Knowledge Center - -commit e22e8d0b91579c480c1e6ccabc19d0f293166086 -Merge: 3db920dc8 bc94f4e93 -Author: Miles Reiter -Date: Wed Sep 28 14:35:11 2022 -0400 - - Merge branch 'develop' into project-updates-and-knowledge-center-updates - -commit 3db920dc8765c9a9cdc52ff62492871103d2f6b2 -Author: Miles Reiter -Date: Wed Sep 28 14:34:15 2022 -0400 - - Correct title tag - -commit fe095f763d0f5ba941ab41e4bdda9a30c95e1aab -Author: Cameron Smart -Date: Wed Sep 28 10:21:34 2022 -0700 - - disable proxy pass - -commit 2944fa9e64c75b4cd8a482195c656febba166d35 -Author: Cameron Smart -Date: Wed Sep 28 09:56:12 2022 -0700 - - test owasp - -commit 27542bb21e108467ed5755aaec9bff41525dd883 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 08:00:32 2022 -0700 - - Update docs/Sprint-Review/sprint-55-summary.md - -commit 85d0647b4148cc9f19ca246156ac4dec6519c3dc -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 08:00:20 2022 -0700 - - Update docs/Sprint-Review/sprint-55-summary.md - -commit 539b1f6d285c0ffee4847dde2e83561079eda1fe -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 07:28:29 2022 -0700 - - Update docs/Sprint-Review/sprint-56-summary.md - -commit d6c7dd73ffcaa5dfda7f007b6e2d68edf6cfa13c -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 07:28:20 2022 -0700 - - Update docs/Sprint-Review/sprint-56-summary.md - -commit 03ec923540d21dcbab38388c1304ca13b95a5b81 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 28 07:28:10 2022 -0700 - - Update docs/Sprint-Review/sprint-56-summary.md - -commit 6996e4803cb5633c7a3f29887f1abf9fb559d78c -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Sep 27 17:04:14 2022 -0700 - - Create sprint-56-summary.md - -commit bc94f4e931ad993eb646eac42828a8bf5a12388e -Merge: 591b92a0a 814b33ec9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 27 14:27:45 2022 -0400 - - Merge pull request #2156 from raft-tech/docs/pilot-synthesis - - Docs/pilot synthesis - -commit ca7ce6095aec2bbe18ac22d385090bb0169aa2d1 -Author: Cameron Smart -Date: Tue Sep 27 11:24:42 2022 -0700 - - testing email - -commit 27e211623410396b815e6dcafc4e7789e1ca4f09 -Author: Cameron Smart -Date: Tue Sep 27 11:05:54 2022 -0700 - - testing email - -commit 814b33ec901cfc4595c5dcd05f4487928dc0fa28 -Merge: 1f26ec472 591b92a0a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 27 13:57:34 2022 -0400 - - Merge branch 'develop' into docs/pilot-synthesis - -commit 591b92a0a315a04bd2093e8d85f6a1225332b90e -Merge: 0a8e9c664 6379509cc -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 27 13:57:27 2022 -0400 - - Merge pull request #2143 from raft-tech/fix/approved-with-no-role-bug - - Fix/approved with no role bug - -commit 8030f0522143d6691b59cf593fba0151f4c1325a -Author: Cameron Smart -Date: Tue Sep 27 09:21:52 2022 -0700 - - deploy to sandbox - -commit d37f9fe3c6d22d57aa1f954870fe2b6f3063451d -Author: Cameron Smart -Date: Tue Sep 27 09:13:53 2022 -0700 - - test with email server - -commit d10e7ba18bdae938ac8259f86702ed0ba9e5181b -Author: msohanifr -Date: Tue Sep 27 05:50:44 2022 -0400 - - Revert "Update README.md" - - This reverts commit b0cb11787c72360312328cfd26ea9ddc4e462c6c. - -commit 6a7ffe864f7bfed95234cbda2c1c251490f8f8e7 -Author: raftmsohani -Date: Mon Sep 26 14:25:07 2022 -0400 - - linting - -commit 4600bcc0a2a547bec80f3bbb4d0bb9bdb3c72eee -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Sep 26 14:11:28 2022 -0400 - - Update models.py - - Changed to include 'Tribal' interim section logic. - -commit 6379509cc06c1877997c603402157adc5d5c1444 -Merge: 838928111 0a8e9c664 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Sep 26 13:41:11 2022 -0400 - - Merge branch 'develop' into fix/approved-with-no-role-bug - -commit 7ec501c465dabca763ad56d8e843b6fcbdfaf38d -Merge: 08f13a05c 0a8e9c664 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Sep 26 12:48:06 2022 -0400 - - Merge branch 'develop' into project-updates-and-knowledge-center-updates - -commit 1c985c5ea05ca7264e01c1cc02c1f8403e9a7b20 -Author: Cameron Smart -Date: Mon Sep 26 09:28:21 2022 -0700 - - remove docstrings, other small changes from pr review - -commit b0cb11787c72360312328cfd26ea9ddc4e462c6c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Sep 26 12:28:04 2022 -0400 - - Update README.md - - trivial change. - -commit 1f26ec472d0fa799ecf286fd5a2aa97aa7ad8f91 -Merge: 351278f90 0a8e9c664 -Author: Miles Reiter -Date: Mon Sep 26 11:14:39 2022 -0400 - - Merge branch 'develop' into docs/pilot-synthesis - -commit 351278f909787a70109221047451ded3298ba39e -Author: Miles Reiter -Date: Mon Sep 26 11:14:32 2022 -0400 - - Update docs/User-Experience/Research-Syntheses/2022, Summer - TDP 2.0 Pilot Program.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit cbd73f0f5cb8dcdd1e141294828aa495300c36ed -Author: Miles Reiter -Date: Mon Sep 26 11:14:21 2022 -0400 - - Update docs/User-Experience/Research-Syntheses/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit d601559c1b3745174419ddd20ae8a9dad6923374 -Merge: e8535be82 0a8e9c664 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Sep 26 09:42:26 2022 -0400 - - Merge branch 'develop' into feat/2136-ACF-Titan-filename-from-STT-filename-table - -commit 221be5001fd00d18dad75633f48cc13ee010f8f1 -Author: Cameron Smart -Date: Fri Sep 23 11:25:06 2022 -0700 - - Removing unnessesary validators, fix tests - -commit 0a8e9c6643fd7e51928bc924a3ba35e7d46100db -Merge: 5b55cadef f695c53bc -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 23 10:58:10 2022 -0400 - - Merge pull request #2126 from raft-tech/stevenino-patch-3 - - Create sprint-54-summary.md - -commit 08f13a05cd5c87c7fb5ccf80420552c3c8a26d62 -Author: Miles Reiter -Date: Thu Sep 22 23:22:05 2022 -0400 - - Copies over all changes from test environment - -commit a3879dce175fcd101cbce3a1769873e7c9066971 -Author: Miles Reiter -Date: Thu Sep 22 23:10:50 2022 -0400 - - Update README.md - -commit 9ba1f90f1c6de5bf5cd6f67d2582eb4cee9d9d46 -Author: Miles Reiter -Date: Thu Sep 22 23:02:13 2022 -0400 - - Create 2022, Summer - TDP 2.0 Pilot Program.md - -commit 95b342379b6647cfbc9bf56560a22c89981da46a -Author: Cameron Smart -Date: Thu Sep 22 10:26:37 2022 -0700 - - numpy style docstring - -commit 813d52a8e452cd6a1b0ced99f92956d3f03194bc -Author: Cameron Smart -Date: Thu Sep 22 09:46:24 2022 -0700 - - Comments from pr. - - Removed testing code from config, consolidated validations - -commit e8535be8254dc5c76d8e7d993319035e1d348264 -Author: raftmsohani -Date: Thu Sep 22 11:06:40 2022 -0400 - - removed new filename method - -commit f695c53bc5b4de5f8dd1e5df319b756437585c7b -Merge: acd07a88a 5b55cadef -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 22 10:04:53 2022 -0400 - - Merge branch 'develop' into stevenino-patch-3 - -commit d0fb5cf8653eb21c8436def2310cb2a4ec4be3b6 -Merge: 9772bf7da 6406be627 -Author: abottoms-coder -Date: Tue Sep 20 13:52:55 2022 -0400 - - Merge conflict resolution on pipfile.lock - -commit 55248bec5d4b2310d401c9444e3bac75dbb71106 -Author: Cameron Smart -Date: Mon Sep 19 14:16:32 2022 -0700 - - better comments - - confirmed that celery works as expected - -commit 957f6cd5d3d34c6e66fd408f79e6a180c5beb693 -Author: Cameron Smart -Date: Mon Sep 19 10:27:53 2022 -0700 - - raise exception when no emails sent - -commit 08c795db3821d33e55c1523b43a0a5333ed1211e -Author: Cameron Smart -Date: Mon Sep 19 10:16:02 2022 -0700 - - only need one shared task - -commit 69e8c6b39f0150c61d5c08c3356b34b74a890890 -Author: Cameron Smart -Date: Mon Sep 19 08:57:01 2022 -0700 - - test emails - -commit 785cabced84a23e9dade2b84b306453bb537c16c -Author: Cameron Smart -Date: Fri Sep 16 13:10:02 2022 -0700 - - fix test - -commit d4f75699944e58fcc9a408b4802295a7da7f0ebe -Author: Cameron Smart -Date: Fri Sep 16 12:37:26 2022 -0700 - - linting - -commit 4eec855f33e33a71e2d396afc9eca317e0e09232 -Author: Cameron Smart -Date: Fri Sep 16 12:24:07 2022 -0700 - - Better error handeling. - -commit 9772bf7dacda014ce186828d288364956d751253 -Merge: 7a26c8d5a 5344c3983 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 16 12:31:43 2022 -0400 - - Merge pull request #2147 from raft-tech/2138-ez-merge - - 2138 - increase pagination - -commit 9f33650cd01c52b5665929b277f1da65c1e70484 -Author: Cameron Smart -Date: Fri Sep 16 09:29:27 2022 -0700 - - one more type - -commit e1b9b358760a5c87633b6b2cb71b32710eee0dcb -Author: Cameron Smart -Date: Fri Sep 16 09:27:48 2022 -0700 - - removed unused files. - -commit 5344c398320c0140b7dd95547eadd517d01e7f6e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 16 12:23:33 2022 -0400 - - 2138 - increase pagination - -commit 7a26c8d5aeab40be911558453508328506763d74 -Merge: bf1d89e46 af5f23b85 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 16 10:26:42 2022 -0400 - - Merge pull request #1918 from raft-tech/feat/1133-files-transferred-to-ACF-Titan - - feat 1133 files transfer to ACF Titan - -commit 5b55cadefeac33c1427467022170bbe2a5fd8103 -Merge: 5eb027751 d53c0e2de -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 16 10:26:03 2022 -0400 - - Merge pull request #2114 from raft-tech/chore/restage-buildpack-envs - - Chore/restage buildpack envs - -commit 81d90820b619d17cf9c1292f772f07dbc0fd395a -Author: Cameron Smart -Date: Thu Sep 15 14:19:46 2022 -0700 - - remove test code - -commit 2499d29e19c96b60479f1292d2a548cf6436efb5 -Author: Cameron Smart -Date: Thu Sep 15 13:01:09 2022 -0700 - - one more fix - -commit 324562cfab593be85768e038c4e450acf93f7c93 -Author: Cameron Smart -Date: Thu Sep 15 12:32:15 2022 -0700 - - actualy fixed the emails this time - -commit a9e0ea707672bb56ac9fd5b71d9743dbc68c5372 -Author: Cameron Smart -Date: Thu Sep 15 11:53:27 2022 -0700 - - testing email, getting tests to pass - -commit 620b5df98ce5f64ef9bc0c3eeb7f81c0cf05ac4c -Author: Cameron Smart -Date: Thu Sep 15 11:42:26 2022 -0700 - - fixes to tests and send mail function params - -commit d53c0e2de6592cbb02c52e1a750482a8636a05f9 -Merge: e67929510 5eb027751 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Sep 15 13:38:15 2022 -0400 - - Merge branch 'develop' into chore/restage-buildpack-envs - -commit 988666e178b34910890f573303897c4a1e0a66d3 -Author: Cameron Smart -Date: Thu Sep 15 10:05:35 2022 -0700 - - remove garbage import - -commit 37ec515616075428a15975be48acb2a801538872 -Author: Cameron Smart -Date: Thu Sep 15 10:00:25 2022 -0700 - - fixed tests, testing subbmit data email, deploy to staging. - -commit 29c7162c0bb44d04a768f50aa028f71e269a91ca -Author: Cameron Smart -Date: Thu Sep 15 09:40:32 2022 -0700 - - using EmailMultiAlternatives for text and html emails - -commit 838928111d1b404513e21665a486bda2a7807146 -Author: Jan Timpe -Date: Thu Sep 15 11:23:25 2022 -0400 - - update timeout to match component timeout - -commit baac0b49c2ce4000723a8d0374635b7bb11e105e -Author: Jan Timpe -Date: Thu Sep 15 11:05:37 2022 -0400 - - add back welcome text - -commit 7ddc1a5ae91f956bbe2c60249589610336bf51a8 -Author: Jan Timpe -Date: Thu Sep 15 10:43:22 2022 -0400 - - fix user approved but not assigned role bug - -commit 7febba0489203ec26519b25cb7ad951e07a36551 -Author: Jan Timpe -Date: Thu Sep 15 10:43:05 2022 -0400 - - add new user role selectors - -commit 89ae5c1e27e08722d7dd126d3f1e27963cba241a -Author: Cameron Smart -Date: Wed Sep 14 17:27:32 2022 -0700 - - fixed tests - -commit 85a7da764480457f8baf5eb31ce31769cc20432d -Author: Cameron Smart -Date: Wed Sep 14 16:59:57 2022 -0700 - - fixed linting - -commit f1fb6689883d6b8f45d111bba4def8bc142c15d1 -Author: Cameron Smart -Date: Wed Sep 14 16:32:37 2022 -0700 - - added tests - -commit 6fcf6744d621e6c78a2f1e5ac2f4bde3e327aceb -Author: Cameron Smart -Date: Wed Sep 14 13:23:47 2022 -0700 - - log response - -commit 2a25cb3865e9f498b9f6e10a557f6c8b0f79a702 -Author: Cameron Smart -Date: Wed Sep 14 12:36:45 2022 -0700 - - deploy to raft - -commit 665520f52388033e869980348a4019cbbf59a5f1 -Author: Cameron Smart -Date: Wed Sep 14 12:30:44 2022 -0700 - - added email template and enums - -commit aa372202acce8cbd85a61f7615d2023035dc524e -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Sep 14 09:42:27 2022 -0700 - - Create sprint-55-summary.md - -commit af5f23b85b6f53ddab3d25be4685209c33c85cfe -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Sep 14 10:16:04 2022 -0400 - - Updated the comment - -commit c534e51b3f6a7b3ecc6a3346c8ac7b8a45014c7e -Merge: 1e0e4fb1e 3bb65174a -Author: raftmsohani -Date: Tue Sep 13 18:12:26 2022 -0400 - - merged 2090 - -commit 1e0e4fb1efa687f8ad235ee8b8159df0dbb172c2 -Author: Cameron Smart -Date: Tue Sep 13 14:51:26 2022 -0700 - - removed label force - -commit 3bb65174a88705462c1ee82f62554531528c46e4 -Author: raftmsohani -Date: Tue Sep 13 17:41:27 2022 -0400 - - changed the logic - -commit ce849d70429bbb989038205ed8475c64d1a5cae6 -Author: Cameron Smart -Date: Tue Sep 13 12:41:07 2022 -0700 - - force deployment when label is set to QASP REVIEW - -commit 1b622a4a4789479c78a2ab69855e67e25103fe1c -Author: Cameron Smart -Date: Tue Sep 13 09:17:34 2022 -0700 - - added email host variables - -commit 1b613fca3113dc9c6bedefaa2d32912af433f74c -Author: Cameron Smart -Date: Tue Sep 13 09:12:41 2022 -0700 - - added email tests - -commit a595f75e1760ac191c3d79ffc1ece3dd50ec78e6 -Author: Cameron Smart -Date: Tue Sep 13 09:12:15 2022 -0700 - - added email functions - -commit bf1d89e4668bc52027f2b528dfe2b271ad4aa62b -Merge: 857f2f94b fac3ac991 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 13 10:36:55 2022 -0400 - - Merge pull request #2128 from raft-tech/feat/catch-up-2.1.0 - - Feat/catch up 2.1.0 - -commit 5eb027751cb8632955689312d28d1f7d04e1cbc7 -Merge: 51217e381 68072aeee -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 13 08:50:32 2022 -0400 - - Merge pull request #2074 from raft-tech/feature/account-approval-statuses - - Account approval statuses - -commit 68072aeee2edc62232f59fa7eb7844a5251e2c03 -Merge: c841a95b6 51217e381 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Sep 13 08:41:13 2022 -0400 - - Merge branch 'develop' into feature/account-approval-statuses - -commit 51e676f71cc4b61545dadd333b0fca336dbc4e78 -Merge: 6c8f2e613 6cc737c90 -Author: raftmsohani -Date: Mon Sep 12 21:15:58 2022 -0400 - - corrected Tribe logic - -commit 6cc737c9084b0d5cd3bcfe25814147e46cb0407a -Author: raftmsohani -Date: Mon Sep 12 21:06:59 2022 -0400 - - corrected Tribe logic - -commit acd07a88a7d339d1dcace297b04c7e4e54187112 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Sep 12 16:28:30 2022 -0700 - - Create sprint-54-summary.md - -commit c841a95b655c717f7695c7ddd0e2ec2639996167 -Merge: 5e1957e6b 3d862b660 -Author: Jan Timpe -Date: Mon Sep 12 16:45:12 2022 -0400 - - Merge branch 'feature/account-approval-statuses' of github.com:raft-tech/TANF-app into feature/account-approval-statuses - -commit 5e1957e6b5a46c51d2dc571e9982478f3353abe9 -Author: Jan Timpe -Date: Mon Sep 12 16:45:07 2022 -0400 - - update user.deactivated reference - -commit 51217e38180db2d3c353393df41f11c0e68d3bf3 -Merge: 522e4b48d da31f1a69 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Sep 12 11:31:22 2022 -0400 - - Merge pull request #2110 from raft-tech/doc/1980-update-repo-readme - - Issue 1980: Update repo readme with security policy links and prod build metrics - -commit 6c8f2e613a217d261da49b3d37a8f7e246d7b204 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Sep 12 11:01:38 2022 -0400 - - Update models.py - -commit da31f1a6982e77ff0d004a7751e942ab75b2aabc -Merge: 3a57f5d63 522e4b48d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Sep 12 10:15:14 2022 -0400 - - Merge branch 'develop' into doc/1980-update-repo-readme - -commit 522e4b48dfa5c1fa84d570dd4b3d7b08c834f356 -Merge: 08ff803fe 6406be627 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Sep 12 09:22:00 2022 -0400 - - Merge pull request #2107 from raft-tech/feat/2054-owasp-scans-copied-to-prod-backend - - 2054 Owasp scans copied to prod DAC - -commit 857f2f94baff35f46e1db561239a71018b1785e0 -Merge: c9c11ac8f bb8e4339d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Sep 12 09:21:22 2022 -0400 - - Merge pull request #2089 from raft-tech/1979-vulnerability-disclosure-policy-link-to-TDP-frontend - - 1979 vulnerability disclosure policy link to tdp frontend - -commit 3a57f5d63a3d1b1b0791fda0cfa8cb70967f59e9 -Merge: df7de368d 08ff803fe -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Sep 9 15:24:50 2022 -0400 - - Merge branch 'develop' into doc/1980-update-repo-readme - -commit 6406be627d85092c65eea49283dd869e5dabfd1a -Merge: 9d5d24808 08ff803fe -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Sep 9 13:09:18 2022 -0400 - - Merge branch 'develop' into feat/2054-owasp-scans-copied-to-prod-backend - -commit 9d5d2480821478063ecef4f6e62475cf8e428ea5 -Author: Cameron Smart -Date: Fri Sep 9 09:49:51 2022 -0700 - - cleaner way to get project slug - -commit bb8e4339d3e13154ce51e46c1720dc74580e8c43 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Sep 9 12:39:19 2022 -0400 - - Update footer with capital Policy - -commit 8ae575c75c7c92a9dec2713c8dedb036f969702d -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Sep 9 12:10:20 2022 -0400 - - Updated test for Policy - -commit a1013c848f98a8473416548a3b6f4acda77442e7 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Sep 9 12:08:08 2022 -0400 - - Changed policy to capital - -commit bc08c381221bdf80ff41d1f5304e001359d43dec -Merge: d2513701b 642d573c0 -Author: raftmsohani -Date: Fri Sep 9 08:19:50 2022 -0400 - - Merge branch 'feat/2090-Transferred-files-must-renamed-ACF-Titan' into feat/1133-files-transferred-to-ACF-Titan - -commit 642d573c017abf42068b4516a7bc8e1640b164c3 -Author: raftmsohani -Date: Thu Sep 8 10:38:56 2022 -0400 - - linting + changed test file - -commit 5e916a837eb87053ded539b0e63752172968fb7b -Author: Cameron Smart -Date: Wed Sep 7 15:10:24 2022 -0700 - - better formatting and comments - -commit 58f9d2ce919ae32c9c9d844aaba4bb1ca5b27d00 -Author: Cameron Smart -Date: Wed Sep 7 15:03:54 2022 -0700 - - use sed to get slug from circle ci pipeline variables - -commit 3cd30dd11c21b68dcd679a1a05636bcc0e35d02c -Author: Cameron Smart -Date: Wed Sep 7 15:01:47 2022 -0700 - - added param type - -commit fb2c4b67f568005df89b44fdc05cd5a0d49986ae -Author: Cameron Smart -Date: Wed Sep 7 14:54:30 2022 -0700 - - set project slug from pipeline var - -commit 01aad6c3247067dc8f34deeca5b19e0ad1e42ecd -Author: Cameron Smart -Date: Wed Sep 7 12:08:49 2022 -0700 - - added better logs - -commit 3d862b660cb1d20a3870123b89ed3e0d0c3d5dd1 -Merge: 313a372a2 08ff803fe -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Sep 7 14:12:08 2022 -0400 - - Merge branch 'develop' into feature/account-approval-statuses - -commit d2513701bac3e8a208eaa5729c402e8f909fc9d8 -Author: raftmsohani -Date: Wed Sep 7 10:18:50 2022 -0400 - - linting - -commit 29259957e56e926039f7123604f27414a8f836b1 -Author: raftmsohani -Date: Wed Sep 7 10:09:45 2022 -0400 - - changed method to use property - -commit 728a71d21a992cdfa9f8908d4543d8ad20801aab -Author: raftmsohani -Date: Tue Sep 6 11:10:47 2022 -0400 - - changed stt.filename to return Tribal filename and added comment on TODO refactor - -commit 82b508e1e69d695963536699abacbbdb0bda8725 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue Sep 6 10:22:45 2022 -0400 - - Update sftp_upload task to use filename - - Updated the upload task to use filename instead of create_filename. The filename() method returns the filename based on STT code - -commit e679295105fac025e8488ab5b80deb601dc3e84d -Author: Jan Timpe -Date: Tue Sep 6 10:18:21 2022 -0400 - - update nginx and python buildpacks - -commit 08ff803fe3bebaf2bcce53149aa13afa33c67871 -Merge: e82e904d9 62e3929d3 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:59:44 2022 -0400 - - Merge pull request #2063 from raft-tech/stevenino-patch-2 - - Create sprint-53-summary.md - -commit 62e3929d3161b44b367ca65843064d49f0ef0f1b -Merge: 3a97eefd3 e82e904d9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:51:35 2022 -0400 - - Merge branch 'develop' into stevenino-patch-2 - -commit e82e904d9f4dcf8f2ce349c0897567c2d5e3c839 -Merge: 474e9145e 8eefb02fa -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:49:45 2022 -0400 - - Merge pull request #2045 from raft-tech/feat/CVE-2022-36359-django-update-3-2-15 - - Feat/CVE 2022 36359 django update 3 2 15 - -commit 8eefb02fa9f4c82773e9693e716f31849be6f0d2 -Merge: b5533e034 474e9145e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:44:39 2022 -0400 - - Merge branch 'develop' into feat/CVE-2022-36359-django-update-3-2-15 - -commit 474e9145ec4cde60f806980264040bc6fa736b55 -Merge: 2b87189a8 10ec910c2 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:41:53 2022 -0400 - - Merge pull request #1922 from raft-tech/adpennington-patch-1 - - Update security control implementation statements - -commit 10ec910c2ca8707b47f26ae89e4919a4d359cb7f -Merge: 15067e6bf 2b87189a8 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:29:56 2022 -0400 - - Merge branch 'develop' into adpennington-patch-1 - -commit b5533e03498afde1b9d58432969a9e8b9df21d6d -Merge: 1ef74e14e 2b87189a8 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Sep 2 11:25:15 2022 -0400 - - Merge branch 'develop' into feat/CVE-2022-36359-django-update-3-2-15 - -commit 73699e31151998cbbfdeb41fbc5f4b5e8d480e12 -Author: raftmsohani -Date: Fri Sep 2 10:29:04 2022 -0400 - - linting - -commit df7de368dad218806bb9855bfc32927fe9a50d52 -Author: Pennington -Date: Thu Sep 1 14:02:36 2022 -0400 - - formatting - -commit 3d33184fb442e8de43e2bdaad2dcec1412e3d9c3 -Author: Pennington -Date: Thu Sep 1 14:01:57 2022 -0400 - - update circle config to track codecov on master - -commit fa243f7123393927679e0b0b863ede26ec062971 -Author: Pennington -Date: Thu Sep 1 13:56:30 2022 -0400 - - update ADR005 to document decision to move away from NextGen - -commit cec6b96121e2abcf70e11477dcf29ace329bb7b4 -Author: Cameron Smart -Date: Tue Aug 30 15:16:43 2022 -0700 - - change project slug arg in circle ci. - force pushed because I accidentally added a commit to the wrong branch and removed it. - -commit 5d8aa1bb324d763f056f2a3b480802f8bed31f71 -Author: Pennington -Date: Thu Sep 1 11:58:40 2022 -0400 - - add links to privacy and vulnerability disclosure policies - -commit f75378e74a07b0d8f045c9fabc731d4554b57434 -Author: Pennington -Date: Thu Sep 1 11:41:16 2022 -0400 - - replaced references to nextgen with logingov - -commit 0f6f4a2b447a4802f2933071c1ba42d032b75d8d -Author: Pennington -Date: Thu Sep 1 11:39:33 2022 -0400 - - added production column to build table - -commit 313a372a2e09beab5c6c3d8845a43dcaf37e4e40 -Author: Jan Timpe -Date: Wed Aug 31 14:40:06 2022 -0400 - - add comment explaining admin user validation change - -commit 8d28bfe53aa0e5c3d2b028ef613a1e5556ca44d1 -Merge: 0fad2a175 2b87189a8 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Aug 30 17:14:36 2022 -0400 - - Merge branch 'develop' into doc/1104-boundary-diagram - -commit 0fad2a1753146ef829655e349fb33e1954c8b6c6 -Author: Pennington -Date: Tue Aug 30 16:48:30 2022 -0400 - - updated boundary diagrams for release 1 and 2+ - -commit 2b87189a8177cb2bbd92fecf0fe565ad222e923b -Merge: 0af229d63 f9c23d21f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 30 16:47:00 2022 -0400 - - Merge pull request #2099 from raft-tech/release/v2.0.1 - - Release/v2.0.1 - -commit f9c23d21f2e766762e1e7205752935af1a0b6a89 -Merge: fac3ac991 0af229d63 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 30 16:39:15 2022 -0400 - - Merge branch 'develop' into release/v2.0.1 - -commit 0af229d636050ef800e468407b5f92c94c13423e -Merge: e09f5c2be 37c5a2624 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 30 16:39:03 2022 -0400 - - Merge pull request #2098 from raft-tech/release/v2.0.0 - - Release/v2.0.0 - -commit 37c5a26249d16675e51d7471187630d4409b3e10 -Merge: aa3b9ecd9 e09f5c2be -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 30 16:32:16 2022 -0400 - - Merge branch 'develop' into release/v2.0.0 - -commit 4da951ada1b60933b854f4162461bfa6de60e9f7 -Author: raftmsohani -Date: Mon Aug 29 16:56:02 2022 -0400 - - added link to site map - -commit 7f9d63deeb2b9ebabf8de3c21e848e5c569ebc78 -Author: raftmsohani -Date: Mon Aug 29 16:31:03 2022 -0400 - - linting - -commit d0fe0d602fb330a026d9460d4d2fc3b28894d7a6 -Author: raftmsohani -Date: Mon Aug 29 15:34:38 2022 -0400 - - linting - -commit f9f67d7f25878df0e0585ac3ad361831028fe639 -Author: raftmsohani -Date: Mon Aug 29 14:07:05 2022 -0400 - - linting - -commit aa08c9ecfe08f753b7a7b1c8dd0545b945ccc6d3 -Author: raftmsohani -Date: Mon Aug 29 13:58:13 2022 -0400 - - linting - -commit 187966d434026dcac5197762aa922c93bb6b6cca -Merge: 4a2b79d1a c9c11ac8f -Author: raftmsohani -Date: Mon Aug 29 13:07:34 2022 -0400 - - merg release/v2.1.0 - -commit 15067e6bf1126c6439e66115335b4eabaee821a1 -Merge: c2201a7ca e09f5c2be -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 29 10:57:43 2022 -0400 - - Merge branch 'develop' into adpennington-patch-1 - -commit fac3ac991aff168d78465a19b5d0ca0b88b95dbd -Merge: aa3b9ecd9 c13ba7134 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 29 10:56:38 2022 -0400 - - Merge pull request #2070 from raft-tech/main - - 2038 - CSRF settings Bug fix for non-production sites - -commit c1ea90231077a9cf5333c3e455d78f815dd2d89d -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri Aug 26 14:33:21 2022 -0400 - - Update tdrs-backend/tdpservice/scheduling/test/test_file_upload.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit c13ba71348a46cebeb752a99e693fdb6d936adc4 -Author: Cameron Smart -Date: Fri Aug 26 11:26:43 2022 -0700 - - remove changes that did not fix owasp - -commit 5a88aaf6e0b3d0b99079b081af2d675618b76af6 -Author: Cameron Smart -Date: Fri Aug 26 11:13:36 2022 -0700 - - fix build in Dockerfile for owasp scan - -commit 9e4df883e54db23d6acbed8b66fdb7816b76b517 -Author: Cameron Smart -Date: Fri Aug 26 09:45:27 2022 -0700 - - fix owasp scan - -commit 271dc53f81d614b0ac6790275c88d6bd6c73d327 -Author: raftmsohani -Date: Fri Aug 26 12:11:46 2022 -0400 - - corrected the directory config - -commit 4a2b79d1a9e0aeb64987d9a0f6341d17c2c2784a -Author: raftmsohani -Date: Fri Aug 26 11:10:28 2022 -0400 - - added link to footer - -commit c9c11ac8f3ca6ed1d381efcb93222b56b5857339 -Merge: 4852f108f 40d3a7525 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 26 10:52:55 2022 -0400 - - Merge pull request #2069 from raft-tech/feat/1787-site-map-redo - - Feat/1787 site map redo - -commit 887a210260eaa4d7e619f01eee41eea1f4dbe2cf -Author: raftmsohani -Date: Thu Aug 25 21:29:47 2022 -0400 - - Changed redis_server_local to TRUE - -commit f88eeeec2ea5cfe6fede538bec2ea577b1176442 -Author: raftmsohani -Date: Thu Aug 25 21:13:51 2022 -0400 - - Added env var for owasp scan to use redis - -commit 4681a0ecfc4a550829f61fc0f77fd53d0642a15b -Author: raftmsohani -Date: Thu Aug 25 20:52:00 2022 -0400 - - Added env var for local Redis - -commit 4dac74dc67f4a6d4e6c8866efce2d0faa79bb509 -Author: raftmsohani -Date: Thu Aug 25 20:26:50 2022 -0400 - - increase timeout for OWASP - -commit f1680f04a7ec2d23fbe57962c40f4e24a1af7e0d -Author: raftmsohani -Date: Thu Aug 25 11:06:03 2022 -0400 - - increase timeout for OWASP - -commit ed4c9fc0da94e09be94b4b7a6fcf882c664f012f -Author: raftmsohani -Date: Thu Aug 25 10:49:55 2022 -0400 - - correct typo - -commit 49292ba68df67c76e99e72d4c85b2d7ca0212dbe -Author: raftmsohani -Date: Wed Aug 24 09:43:57 2022 -0400 - - test file reference change - -commit 911705718a1993a76ab1c900e420d3ca4a68abdd -Author: raftmsohani -Date: Wed Aug 24 09:32:30 2022 -0400 - - linting, chaging upload filename, etc - -commit 6ecf745293241186f0319e8328129b5debf834e0 -Author: Cameron Smart -Date: Tue Aug 23 17:58:02 2022 -0700 - - syntax - -commit 5ba34057abe1fc2f613ea198c85f711abfc3d066 -Author: Cameron Smart -Date: Tue Aug 23 17:51:55 2022 -0700 - - remove unneeded comments - -commit c7d8d443d40c4f86539de6b7ffd5d2bc08256913 -Author: Cameron Smart -Date: Tue Aug 23 17:25:32 2022 -0700 - - removed 'unsafe-inline' - -commit 663271ff8f57de89580e10f48782e8dfa1612218 -Author: Cameron Smart -Date: Tue Aug 23 16:56:14 2022 -0700 - - added 'unsafe-inline' - -commit 433a577df81f40ec585d8ac423169815a1aafe52 -Author: Cameron Smart -Date: Tue Aug 23 16:30:25 2022 -0700 - - syntax - -commit fd01704b8cde77700c2aaf197d109834ec94a3c0 -Author: Cameron Smart -Date: Tue Aug 23 16:24:29 2022 -0700 - - test clamav - -commit 22c5d79a6bb4e07a3d795e7bb2d21af3ae1acc2a -Author: Cameron Smart -Date: Tue Aug 23 14:08:55 2022 -0700 - - add /scan to AV_SCAN_URL - -commit 7ade1a0ae3d8fa23e1ee38557a67b9858e050b72 -Author: Cameron Smart -Date: Tue Aug 23 08:57:01 2022 -0700 - - remove testing code - -commit e8cc8eab6c64abb06e311f5e4f7d239284b90056 -Author: raftmsohani -Date: Tue Aug 23 09:20:28 2022 -0400 - - ENV variable for specific ACF TITAN directory - -commit a1d8cb033d7e8924cadd23e0543e419eca1c91a2 -Author: raftmsohani -Date: Tue Aug 23 09:04:51 2022 -0400 - - python script to change EOL with _ - -commit 721c9a46696abeecb956d482b4735fcc35d549e2 -Author: Cameron Smart -Date: Mon Aug 22 14:14:09 2022 -0700 - - move SessionMiddleware to common - -commit 17611f0cc1e790470030136c1bf6b8604f1f73ec -Author: Cameron Smart -Date: Mon Aug 22 14:11:16 2022 -0700 - - deploy to prod and staging - -commit 22dfaa4fd91c50212b0fa9e4cc3b1675b4037036 -Author: Cameron Smart -Date: Mon Aug 22 13:57:15 2022 -0700 - - reorder middleware - -commit 77678d25a30af6cbdb0e00a810bf614ca291e6ea -Author: Cameron Smart -Date: Mon Aug 22 13:49:39 2022 -0700 - - deploy to staging only - -commit a8add49df95d04957ed3d35ae00172e95fbe4266 -Author: Cameron Smart -Date: Mon Aug 22 10:11:24 2022 -0700 - - added session cookies code to prod settings - -commit 6aabed7b00c023d8ff8009e4a9bc1b50ec3b0229 -Author: Jan Timpe -Date: Mon Aug 22 13:07:12 2022 -0400 - - rm comment - -commit 93392d25c090341c1545af486696477489c25e40 -Merge: 8541623c4 18ce590f9 -Author: Jan Timpe -Date: Mon Aug 22 13:06:29 2022 -0400 - - Merge branch 'feature/account-approval-statuses' of github.com:raft-tech/TANF-app into feature/account-approval-statuses - -commit 8541623c4bb6ae956964bc75286a1c7e5d8cf71a -Author: Jan Timpe -Date: Mon Aug 22 13:06:26 2022 -0400 - - allow saving user without group - -commit ee3cf93239dbe9eeca2914a4c8fbfdca0d0bd0e8 -Author: Cameron Smart -Date: Fri Aug 19 18:45:32 2022 -0700 - - use common.py from main-rewind - -commit 08e0536601faf798cdf4ebf8278a0c3de0e22489 -Author: Cameron Smart -Date: Fri Aug 19 18:15:55 2022 -0700 - - middleware for prod - -commit f7585d465f586dc4d03862cd494fad45efd32fc3 -Author: Cameron Smart -Date: Fri Aug 19 17:40:55 2022 -0700 - - removed prod middleware form common.py - -commit 175f2711c2fff52706917325d8c7c659fb76c719 -Author: Cameron Smart -Date: Fri Aug 19 17:02:10 2022 -0700 - - using env.development - -commit 77c1b2a39347e71092a2429ab80017693283f369 -Author: Cameron Smart -Date: Fri Aug 19 16:37:44 2022 -0700 - - spelling mistake - -commit 8dab23e22072f477f1745ec7f92b8fc0f4e34b6f -Author: Cameron Smart -Date: Fri Aug 19 16:01:05 2022 -0700 - - using ALLOWED ORIGIN - -commit abd3353c8d614f4d46562708977a333ce3b24849 -Author: Cameron Smart -Date: Fri Aug 19 12:49:37 2022 -0700 - - trying to get it to work on in just prod - -commit 18ce590f949df19f9d1484ad1875442f1124cf01 -Merge: ef79b7669 e09f5c2be -Author: jtimpe <111305129+jtimpe@users.noreply.github.com> -Date: Fri Aug 19 15:02:13 2022 -0400 - - Merge branch 'develop' into feature/account-approval-statuses - -commit b769eea4789a900a86e2e6a42de89b31fff08ad5 -Author: Cameron Smart -Date: Fri Aug 19 11:39:01 2022 -0700 - - revert last commit, use old version of nginx conf - -commit 0e56cf3eb26c7d0a5bafa3753b9660e6994adb90 -Author: Cameron Smart -Date: Fri Aug 19 11:20:54 2022 -0700 - - cookies in Access-Control-Allow-Headers - -commit 31fd0ba1e4b4e40569211a6ffeea39d47e293f24 -Author: Cameron Smart -Date: Fri Aug 19 10:31:10 2022 -0700 - - trigger pipeline - -commit ade2e76fcf20db9df0dd2586ba7687f541d0e38a -Author: Cameron Smart -Date: Fri Aug 19 10:30:38 2022 -0700 - - run on staging - -commit 98eb805ec1df81acb48a8ea224663ec7776eb68d -Author: Cameron Smart -Date: Fri Aug 19 10:29:14 2022 -0700 - - fix prod allowed hosts typo - -commit 0ceb241667fa6ab6212047eb66319060a9284636 -Author: Cameron Smart -Date: Fri Aug 19 10:20:31 2022 -0700 - - don't add prod vars in staging - -commit dd1f3407e39084ee2263c80062325cb20c652ed8 -Merge: 7e56b5b5c aa3b9ecd9 -Author: Cameron Smart -Date: Fri Aug 19 09:22:54 2022 -0700 - - merged releaseV2.0.1 to main - -commit e09f5c2becac2c3c28a9b493a7eb3efc1a231bd9 -Merge: 4852f108f 8a43fadeb -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 19 12:12:45 2022 -0400 - - Merge pull request #2025 from raft-tech/doc/1422-v1-ato-updates - - Release 1 ATO documentation updates - -commit ef79b76696e7111ca109b6bba44586836c2de80e -Author: Jan Timpe -Date: Fri Aug 19 11:43:29 2022 -0400 - - linter again. i ran it locally this time - -commit ce9bc5c18b34819c334f162e3d23c51d907c28e6 -Author: Jan Timpe -Date: Fri Aug 19 11:36:09 2022 -0400 - - appease the linter - -commit 57dd3f3d6ef8e8dc662e4cfcd0d7ef324d4a44f0 -Author: Jan Timpe -Date: Fri Aug 19 11:04:58 2022 -0400 - - accursed linting and leftover code - -commit 8a43fadeb7d510b068b29c95530e04d111122d63 -Merge: 6e58cc8a5 4852f108f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 19 11:01:28 2022 -0400 - - Merge branch 'develop' into doc/1422-v1-ato-updates - -commit 794bc08d1e7b547f79e2e3668dead7beca6068b1 -Author: Jan Timpe -Date: Fri Aug 19 10:48:09 2022 -0400 - - comment for discussion - -commit c19c04a80fbb3379a0d8c6ccfdd1ddbda1776572 -Author: Jan Timpe -Date: Fri Aug 19 10:33:11 2022 -0400 - - update usages of `access_request` to use new selectors - -commit 15ec3854f5ccb0f745e8f9534f3f2739f6f1a187 -Author: Jan Timpe -Date: Fri Aug 19 10:32:39 2022 -0400 - - create selectors for account status checks - -commit 6d667aa49b7405aecd969ec3a7cebb0ec212faa9 -Author: raftmsohani -Date: Fri Aug 19 09:55:01 2022 -0400 - - 1133: linting - -commit cebfd507b8ed7488c3373f14d1a45b27d2a754e2 -Author: raftmsohani -Date: Fri Aug 19 08:36:48 2022 -0400 - - 1133: Added comments to settings files - -commit 7e56b5b5c709ba3c5aa3e417f252de644beeeec8 -Author: Cameron Smart -Date: Thu Aug 18 23:00:58 2022 -0700 - - run on prod - -commit e3319dd0cadc33f1afe246df43665658aceaa9af -Author: Cameron Smart -Date: Thu Aug 18 22:59:49 2022 -0700 - - circle ci config from releasev2 - -commit 448c3428a3421e45a0751c16448212cbe8261e07 -Author: raftmsohani -Date: Thu Aug 18 18:43:20 2022 -0400 - - 1133: disabled private key algorithms - -commit 741dd80b809fb05f25086bbf899caf2923fb43c3 -Author: raftmsohani -Date: Thu Aug 18 17:30:32 2022 -0400 - - 1133: look for key to false - -commit 1c6650e4d814026a98c8a437225a954f411733de -Author: raftmsohani -Date: Thu Aug 18 17:00:00 2022 -0400 - - 1133: changed to pkey to resolve primary key error - -commit d014b8a392d9bbefd4bfb8e6e79d43a5ef1fdc72 -Author: Jan Timpe -Date: Thu Aug 18 16:26:50 2022 -0400 - - remove comment, update admin - -commit 192c4eb0fa529442c81780f742dbdafeb9baeb88 -Author: Jan Timpe -Date: Thu Aug 18 16:20:53 2022 -0400 - - update access_request view - -commit ea130d6bf0a5817d7f706d1430bd34e8e0066f0e -Author: Jan Timpe -Date: Thu Aug 18 16:19:57 2022 -0400 - - update auth check - -commit 2cc64e86470b0c8e9725a3b89afdfdc269fca4c5 -Author: Jan Timpe -Date: Thu Aug 18 16:18:45 2022 -0400 - - update model admin, serializers, docs - -commit 928e426202e66b8e5bef8ececa462f263b139071 -Author: Cameron Smart -Date: Thu Aug 18 13:18:10 2022 -0700 - - update scripts - -commit cff58ff18b9e42b964bc27895022575a6b0af76e -Author: Jan Timpe -Date: Thu Aug 18 16:18:06 2022 -0400 - - add new approval statuses fields and update old field help text - -commit 1e551172d367bd9e637459978a093c636eb8e7d7 -Author: Jan Timpe -Date: Thu Aug 18 16:15:03 2022 -0400 - - fix docs link - -commit cf272d875dfd2d4b3de0cd863cec03cb6c89ec24 -Author: Cameron Smart -Date: Thu Aug 18 13:07:38 2022 -0700 - - coppied deploy scripts from release v2 - -commit 820017c85ae5d6258d3ab7abffbc5506791b1a0e -Author: Cameron Smart -Date: Thu Aug 18 12:46:45 2022 -0700 - - deploy to prod. dont deploy staging - -commit 38d40156ae937fdc043030fdbcaa2223551e11e3 -Author: raftmsohani -Date: Thu Aug 18 15:37:07 2022 -0400 - - 1133: changing private key and replace '_' with \n - -commit 73c5f51c099e3f8ad71c77576c24dcfb4ea17553 -Author: raftmsohani -Date: Thu Aug 18 15:01:53 2022 -0400 - - 1133: linting - -commit e82c2593ae750802a92f0e3fbbab2b0a9ecf17c7 -Author: raftmsohani -Date: Thu Aug 18 14:54:46 2022 -0400 - - 1133: Added end of line replacement for ssh key - -commit 4e52f2b27d1a07dad45d7df55827cf074bfdaca6 -Author: raftmsohani -Date: Thu Aug 18 14:28:17 2022 -0400 - - 1133: Removed default for testing - -commit 5ab9c960a10e2837a70bfc7d0ef60befa7b93d6f -Author: raftmsohani -Date: Thu Aug 18 14:10:49 2022 -0400 - - 1133: Added an env var - -commit 9cccf7529fa929390767387ad03094a0e892ea3b -Author: raftmsohani -Date: Thu Aug 18 13:55:59 2022 -0400 - - 1133: Added an env var - -commit 40d3a7525a19ad0c12c5a1f87f8f872b80f69d63 -Author: Cameron Smart -Date: Thu Aug 18 10:28:30 2022 -0700 - - fixed check for data files tab - -commit 36ea55779f89f7781f09ee25bbc5bdda47a9ee76 -Author: raftmsohani -Date: Thu Aug 18 13:09:22 2022 -0400 - - 1133: common settings file for env vars - -commit 440b32beb1e8ded79c32a42b7a8f13a34e9553d1 -Author: raftmsohani -Date: Thu Aug 18 13:01:55 2022 -0400 - - 1133: common settings file for env vars - -commit b31c3729af8ba67d30ee9d77366ca41e82d5e919 -Author: Cameron Smart -Date: Thu Aug 18 09:49:03 2022 -0700 - - added OFA admin to canViewAdmin - -commit 075371096997aec4d9794d048ca90167c8ea10d7 -Author: raftmsohani -Date: Thu Aug 18 12:34:10 2022 -0400 - - 1133: changed the pytest_key env var pull up to common.py - -commit 6cd1f1f4eacffeedcc0b72db7a4ff6e0887e9424 -Author: raftmsohani -Date: Thu Aug 18 11:58:08 2022 -0400 - - 1133: settings file linting - -commit ea861d205deb5fc42107e2bf0da40b98b5ed5814 -Author: raftmsohani -Date: Thu Aug 18 11:51:32 2022 -0400 - - 1133: settings file linting - -commit a2196a442f6843e2fdaf2838e2333e86b3bea01c -Author: raftmsohani -Date: Thu Aug 18 11:43:40 2022 -0400 - - 1133: settings file: added if statement - -commit 30b5162a3ac288cd43acbfbf9a687fa704f20bbd -Author: raftmsohani -Date: Thu Aug 18 11:33:40 2022 -0400 - - 1133: removed cat ACF key file - -commit b1b190d731618f7219c49b6aa8c640ceab26130e -Author: raftmsohani -Date: Thu Aug 18 11:08:13 2022 -0400 - - 1133: changed redis and celery memory by adding redis.conf, removed logging and print from testing, linting, changed the private key to env vars - -commit ebd50496fe7e6564cbaaf5306cc1ce023a293bcd -Author: raftmsohani -Date: Thu Aug 18 07:57:34 2022 -0400 - - 1133: changed redis and celery memory and added commenting - -commit 6b9d748694ec0d3eb173ddc4b2c82b83c0c820bd -Author: raftmsohani -Date: Wed Aug 17 19:08:02 2022 -0400 - - 1133: changed redis and celery memory - -commit 15343de1203d7fbfcc5c2471afbf6240ce3b8ee3 -Author: raftmsohani -Date: Wed Aug 17 18:40:06 2022 -0400 - - 1133: changed redis and celery memory - -commit 16a053c5a349eaee966bba72323a468ddff4c741 -Author: Cameron Smart -Date: Wed Aug 17 13:29:18 2022 -0700 - - fixed test and added new test - -commit 369165524c49909b84a6cdad3eddc1b3fed03b71 -Author: Cameron Smart -Date: Wed Aug 17 13:22:22 2022 -0700 - - Site map opens in same tab, Can only see data files if access approved - -commit 097a95345531f73581046dca3b301b5d137cf42a -Author: Cameron Smart -Date: Mon Aug 15 13:55:05 2022 -0700 - - removed comments - -commit 334210c80314b854f04706f389e328f422d10f28 -Author: Cameron Smart -Date: Wed Aug 10 13:15:50 2022 -0700 - - linting - -commit 1f516857ad3f5549cbe928465ffc8958c8ce02c9 -Author: Cameron Smart -Date: Wed Aug 3 16:37:54 2022 -0700 - - fixed tests - -commit bd3d5c5ef6bee5584a62c947e46ec4e3e6234bce -Author: Cameron Smart -Date: Wed Aug 3 11:01:18 2022 -0700 - - refactor canViewAdmin - -commit 9704cf2ca78b3e08c279cf149a49b77853a28290 -Author: Cameron Smart -Date: Mon Aug 1 10:09:23 2022 -0700 - - fixed test - -commit 0a2621b70bf7ce256ee40d4fdfcfc3e704d05aa1 -Author: Cameron Smart -Date: Wed Jul 27 10:26:34 2022 -0700 - - pass user to sitemap - -commit 05a4dd76cff47e8d760337fd504c5c6cd828c6ae -Author: Cameron Smart -Date: Tue Jul 26 09:11:13 2022 -0700 - - linting - -commit 08633ff5e2f5ee33cd56cc3510ae226fa50b1fc2 -Author: Cameron Smart -Date: Tue Jul 26 08:41:19 2022 -0700 - - working on tests - -commit 27ab0314e900a4a08061d7e8e6860e8b39db5ea2 -Author: Cameron Smart -Date: Mon Jul 25 13:46:47 2022 -0700 - - Starting on tests - -commit 06d2cab8804a55ee6d641fe24f35fc41d225ba30 -Author: Aaron Beavers -Date: Thu Jul 14 14:26:22 2022 -0400 - - Update tests - -commit 77feb194fd6274c5000aaaa1448017335fb9d1ca -Author: Aaron Beavers -Date: Thu Jul 14 14:26:18 2022 -0400 - - Lint and permission function - -commit 04a05e242e16c411b7a9845ab5cf99e0bcaee389 -Author: Aaron Beavers -Date: Thu Jul 14 14:25:42 2022 -0400 - - lint - -commit c24df751b950acf397ac85274e092d7a226a019c -Author: Aaron Beavers -Date: Tue Jul 12 14:03:04 2022 -0400 - - Update test to include initial state - -commit a78eede0ead1496579f2f23aa3ca8130cb9a8959 -Author: Aaron Beavers -Date: Tue Jul 12 14:02:49 2022 -0400 - - threading the needle - -commit 50ea005dc085401cbbf13d0516c0143622c645bf -Author: Aaron Beavers -Date: Tue Jul 12 14:02:07 2022 -0400 - - update admin element for authorized users only - -commit c54570213693f6142fdebf26cc4b3cf93cdd411c -Author: Aaron Beavers -Date: Tue Jul 12 11:24:59 2022 -0400 - - Add noopener - -commit ea9b8b0b2e4d303e9986421d64aa209adfb938aa -Author: Aaron Beavers -Date: Tue Jul 12 11:12:09 2022 -0400 - - lint tests - -commit 84871ebb1c60e68e46813a92ee4c9b5fac9ce0db -Author: Aaron Beavers -Date: Tue Jul 12 10:49:28 2022 -0400 - - Added tests and fixed admin link text - -commit 58309ec8928c7eaf97a2c83a477f106223c20c24 -Author: Aaron Beavers -Date: Tue Jul 12 10:39:28 2022 -0400 - - Don't show site map to non authenticated users - -commit 63411da3b620a56d956e51e711b4fba564fc54fc -Author: Aaron Beavers -Date: Mon Jul 11 15:37:20 2022 -0400 - - Add link to site map from footer - -commit 3ff3db727a4bcc867392b99da6205fab84687258 -Author: Aaron Beavers -Date: Mon Jul 11 15:37:06 2022 -0400 - - Add sitemap route - -commit 79933e9ed32bbfb5e07b22c7692a4bbb3073d459 -Author: Aaron Beavers -Date: Mon Jul 11 15:36:51 2022 -0400 - - Add SiteMap component - -commit 5913030e6acd8050a6538daeb271f1f220e75a09 -Author: raftmsohani -Date: Wed Aug 17 15:33:32 2022 -0400 - - 1133: permissions - -commit a8a852535746f1600c5d32b8d9d679ffdbda5c6d -Author: raftmsohani -Date: Wed Aug 17 15:27:06 2022 -0400 - - 1133: permissions - -commit 899b9031895cd09457b0eb4cc57b4ec36888125c -Author: raftmsohani -Date: Wed Aug 17 15:15:41 2022 -0400 - - 1133: removed scheduling - -commit 966b2c6c5bf2b5a2e1d66de0ee96697a4b9fc72a -Author: raftmsohani -Date: Wed Aug 17 13:47:29 2022 -0400 - - 1133: linting - -commit 878f6352284fe2f33eba60fe4c6a74df6a319b7d -Author: raftmsohani -Date: Wed Aug 17 13:30:31 2022 -0400 - - 1133: update config - -commit 21a14182b87d013758d9de43f9953728d7030d45 -Author: raftmsohani -Date: Wed Aug 17 13:09:05 2022 -0400 - - 1133: linting - -commit 2f19dc5527cb3be71aa55ca05d5bad00648299ff -Author: raftmsohani -Date: Wed Aug 17 13:03:36 2022 -0400 - - 1133: change celery.py for linting - -commit c4a899cea1407c59a8743273f58ef45448c5509c -Author: raftmsohani -Date: Wed Aug 17 12:57:40 2022 -0400 - - 1133: change celery start step - -commit 98ba904ef741ac750fc8e30bea3752fec72018b2 -Author: raftmsohani -Date: Wed Aug 17 12:52:04 2022 -0400 - - 1133: add logging to celery.py - -commit c737ed7859a1f74ed3d68fbdae085b9db8f3db79 -Author: raftmsohani -Date: Wed Aug 17 11:53:44 2022 -0400 - - 1133: add logging - -commit f29e7a9c22aedd303facb573313a2493e7e15c84 -Author: raftmsohani -Date: Wed Aug 17 11:37:36 2022 -0400 - - 1133: add logging - -commit f93005e084c24e27b542f2210b0d1a869ca07cde -Author: raftmsohani -Date: Wed Aug 17 11:21:03 2022 -0400 - - 1133: add logging - -commit e8e1e7410d3290c24b1f1c2a0598e94ed6fd24f4 -Author: raftmsohani -Date: Wed Aug 17 11:15:23 2022 -0400 - - 1133: add logging - -commit f7eaeb5e69357327938b17b29e665096061c7a11 -Author: raftmsohani -Date: Wed Aug 17 10:55:50 2022 -0400 - - 1133: add logging - -commit 0584942bfbabefdd6fe1f48428421d8e783a8fa6 -Author: raftmsohani -Date: Wed Aug 17 10:31:51 2022 -0400 - - 1133: add logging - -commit 0a00a4fa5931754ff92097cbd271fd13fdc0f05e -Author: raftmsohani -Date: Wed Aug 17 10:25:47 2022 -0400 - - 1133: add logging - -commit a759ed93121227aefa4629282ef590981d0a1ab4 -Author: raftmsohani -Date: Wed Aug 17 09:41:34 2022 -0400 - - 1133: added import - -commit 8e2fe88ee45f23a25f0a77b95dcb96996ea42f23 -Author: raftmsohani -Date: Wed Aug 17 08:46:01 2022 -0400 - - 1133: changes for passing the test - -commit 3a97eefd375ec4f05ea634fb924e5167687476b8 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Aug 16 16:57:03 2022 -0700 - - Create sprint-53-summary.md - -commit 2f62586104e0fe50edc28defc6a3f52cd46d500d -Author: Cameron Smart -Date: Tue Aug 16 11:24:35 2022 -0700 - - move semicolon - -commit 41846f8519c49972d82557a44aae6b3f1374fa68 -Author: Cameron Smart -Date: Tue Aug 16 10:17:51 2022 -0700 - - trigger pipeline - -commit 20bb9a3469d31af9c7c2015672c9ef30153b9c12 -Author: raftmsohani -Date: Mon Aug 15 12:17:15 2022 -0400 - - 1133: linting - -commit fc7f9baf0380badfa987e25a28f2ca4aeb50aa13 -Author: raftmsohani -Date: Mon Aug 15 11:29:15 2022 -0400 - - 1133: linting - -commit 63ad4c12ec02122699701d57f3b2efc03a7127c1 -Author: raftmsohani -Date: Mon Aug 15 10:55:19 2022 -0400 - - 1133: Upload Pytest, and linting - -commit 80312c410f30be6d04dedf378831a5110219a2e7 -Author: Aaron Beavers -Date: Wed Aug 10 13:00:38 2022 -0400 - - Whitespace for a deploy - -commit 5d8d0404adf714c4b990360fb33ef840043d938d -Author: Aaron Beavers -Date: Wed Aug 10 12:00:23 2022 -0400 - - remove stray quote - -commit 45f2dffcd9656a492aa21f8ab6af5928dbd6bb65 -Author: Aaron Beavers -Date: Wed Aug 10 11:44:10 2022 -0400 - - semicolons - -commit 1038f97cbabb718c8aa03501cf29e66cdc305104 -Author: Aaron Beavers -Date: Wed Aug 10 11:30:05 2022 -0400 - - We really love cloudfoundry's custom nginx syntax - -commit 87b9d95090a3719f48ead50c79cdc519dd2e0927 -Author: Aaron Beavers -Date: Wed Aug 10 11:10:09 2022 -0400 - - buildpacks need special magic for env vars - -commit a28b8547e9673f9cfa64163b36a0ca7f6a94a76f -Author: Aaron Beavers -Date: Wed Aug 10 10:30:25 2022 -0400 - - Add appname to set-env - -commit 4f7b9e3c3fb02f9dce12acc84f6702e1e4bb9f13 -Author: Aaron Beavers -Date: Wed Aug 10 10:08:16 2022 -0400 - - semicolons are fun - -commit d6b83ac051e813bda00e1f9ea861ca1718746537 -Author: Aaron Beavers -Date: Wed Aug 10 09:52:46 2022 -0400 - - Add env vars to frontend nginx server - -commit 7e618e7ef3ff4b4c15087129aff9f215fc13ea8e -Author: Aaron Beavers -Date: Wed Aug 10 09:52:28 2022 -0400 - - Allow Nginx to be configured from env vars - -commit 1ef74e14e6223be6ac16fd6142f4c12cd6c0dfd9 -Author: Aaron Beavers -Date: Wed Aug 10 09:47:57 2022 -0400 - - lint - -commit 064074e5f58872efd7a7e15d1e8aed9c8c3f271c -Author: Aaron Beavers -Date: Tue Aug 9 16:35:02 2022 -0400 - - Use a file response to leverage django 3.2.15 security update - -commit dcdf66786c9d27028f52cf4255efed179d2cc966 -Author: Aaron Beavers -Date: Tue Aug 9 16:23:46 2022 -0400 - - update django version - -commit aa3b9ecd943310562871b4f2a643c55f6506d084 -Merge: 04b35d866 6d93b6e89 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 9 15:39:28 2022 -0400 - - Merge pull request #2044 from raft-tech/bug/2035-manage-account-button - - linting - -commit 6d93b6e89d37b228076aa8dbebecb74496edbdf9 -Author: Cameron Smart -Date: Tue Aug 9 12:34:21 2022 -0700 - - linting - -commit 04b35d866b44e50043ffb44820872b254083f356 -Merge: b2968326d a780c2e90 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 9 15:16:30 2022 -0400 - - Merge pull request #2041 from raft-tech/bug/2035-manage-account-button - - Bug/2035 manage account button - -commit a780c2e90b72c0291c3eb4a484c3b9c4c0ecf3c6 -Author: Cameron Smart -Date: Tue Aug 9 12:08:51 2022 -0700 - - new line and moved prod env command - -commit 60b169bc30fae3ada4738ec840230e19b4c95c24 -Author: Cameron Smart -Date: Tue Aug 9 10:48:00 2022 -0700 - - modifications to button - -commit 0b60e29eb3088ad09248d2d8f9363ee447c81d1a -Author: Cameron Smart -Date: Tue Aug 9 10:41:23 2022 -0700 - - modify deploy scripts for different envs - -commit 172f2788060edcbd482fce077f79e95578ad3f4f -Author: Aaron Beavers -Date: Tue Aug 9 13:39:55 2022 -0400 - - don't deploy to prod any more - -commit c5de0b4f2a315298a8b750dd11cb4b1aa1a99123 -Author: Cameron Smart -Date: Tue Aug 9 10:33:51 2022 -0700 - - add environment variable to circleci - -commit 320f0b5cb9add966a578b88aa712b32fa6a11ea9 -Author: Aaron Beavers -Date: Mon Aug 8 16:04:37 2022 -0400 - - deploy - -commit 0dca013d6cd750bd4a6b2e27ac235c0ab1f83f6f -Author: Aaron Beavers -Date: Mon Aug 8 15:56:28 2022 -0400 - - deploy - -commit ab0cb5694c03c12e57067ff5120d76d106ebc03c -Author: Aaron Beavers -Date: Mon Aug 8 14:58:11 2022 -0400 - - Linting error - -commit c0372725e14c1165c38083867cd039b62c3b4937 -Author: Aaron Beavers -Date: Mon Aug 8 14:46:13 2022 -0400 - - Add log - -commit 41c175f412af5d2d1574dbf989d8efdadfe6e5a0 -Author: Aaron Beavers -Date: Mon Aug 8 14:45:55 2022 -0400 - - Fix environment environment variables - -commit e4d38612fd85a08817e62955b7067829769cbe78 -Author: abottoms-coder -Date: Mon Aug 8 10:49:16 2022 -0400 - - frontend whitespace lint issue - -commit 5771378a962cc0ee8530eebdc1549fd8ef8c9e3f -Author: abottoms-coder -Date: Mon Aug 8 10:41:54 2022 -0400 - - reverting quotattions in deployment script - -commit 58e2dbae874ec670389a7d90539cb6caa1477698 -Author: abottoms-coder -Date: Mon Aug 8 10:41:30 2022 -0400 - - commentation linting error fix - -commit 2b99c0222e32da6e5a2b5670d5988c56a98b4bfd -Author: abottoms-coder -Date: Mon Aug 8 10:29:54 2022 -0400 - - Frontend changes to both be up-to-date and also debugging cookie setting - -commit b134632a5e6eb0722b8014775999eb4bdc9440b6 -Author: abottoms-coder -Date: Mon Aug 8 10:18:06 2022 -0400 - - Trying to add quotations around value fixing ACFTITAN_KEY not being set in CircleCI - -commit 92ff0ddbd7462629ecf5ff02d671954a013773d2 -Author: abottoms-coder -Date: Mon Aug 8 10:14:44 2022 -0400 - - Conditionally setting headers for production in frontend auth.js - -commit f3dd976221f5bf3c871debc0327d82c0e0d1a103 -Author: abottoms-coder -Date: Mon Aug 8 09:54:48 2022 -0400 - - Removing cookies in allow-headers due to console errors and buttons not submitted - -commit c4674fda5041fd34fb46445fba0ecd81f44f91ca -Author: abottoms-coder -Date: Mon Aug 8 09:47:48 2022 -0400 - - cleanup print statement - -commit 9374e02e341c1c0de34726c3e6eb25187970b854 -Author: abottoms-coder -Date: Mon Aug 8 09:39:11 2022 -0400 - - Testing conditional middleware loading for cloud.gov - -commit 0faba42c1a4af5dfd8def7083cf749f0b8c5ef62 -Author: abottoms-coder -Date: Sat Aug 6 15:15:01 2022 -0400 - - reverting common to exclude django settings changes - -commit 8f452c0927df84421118e48f4031fd68e6baa705 -Author: abottoms-coder -Date: Sat Aug 6 14:37:51 2022 -0400 - - Trying to add cloud.gov to some django settings around cookies - -commit 35a651d8fdb33b4ffbe8d81eb97dcf3d973769e2 -Author: abottoms-coder -Date: Fri Aug 5 17:51:59 2022 -0400 - - removing session middleware entirely - -commit c8b5905b0fb579003f62ffc28cbc7374899a58dc -Author: abottoms-coder -Date: Fri Aug 5 17:33:34 2022 -0400 - - Commenting out session middleware reference to acf domain - -commit fc62965b53f1be32e046745d33764ebc92194fc0 -Author: abottoms-coder -Date: Fri Aug 5 17:26:01 2022 -0400 - - Updating session middleware to see if that's causing staging breakage - -commit af12fdf4bfa119595e4716205423d9859756c4c7 -Author: abottoms-coder -Date: Fri Aug 5 17:12:44 2022 -0400 - - setting django cookie settings like 1945 to rule those out as breaking staging - -commit 377d4d39efac4e74c840e059383835ce2840dabb -Author: abottoms-coder -Date: Fri Aug 5 17:06:08 2022 -0400 - - changing frontend to match 1945, doubt these affected it - -commit 9e5255fb5696e82111bd7b02675d8fc5dd5b16a2 -Author: abottoms-coder -Date: Fri Aug 5 16:43:27 2022 -0400 - - testing nginx changes from 1945on staging/main - -commit b2968326dd93a647683bb95b0ae43513447c23d1 -Merge: a3a2bcc52 2bd2a9649 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 8 15:41:36 2022 -0400 - - Merge pull request #2037 from raft-tech/feat/1945-back-out-axios - - Finalizing release 2.0.0 - -commit 2bd2a9649d8489e732a1eb0e27b6e5c8a98ee686 -Merge: 483d26385 a3a2bcc52 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 8 14:17:00 2022 -0400 - - Merge branch 'release/v2.0.0' into feat/1945-back-out-axios - -commit a3a2bcc52878c568cd6afa845dc73104524c7536 -Merge: 175d8baa1 5cab27f6e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 8 12:48:26 2022 -0400 - - Merge pull request #1971 from raft-tech/feat/1754-owasp-on-aditional-branches - - Feat/1754 owasp on aditional branches - -commit 175d8baa1598d2dc6a59ff8cf3a919099ab128e7 -Merge: a2787388d ed66fa3e3 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 8 12:46:58 2022 -0400 - - Merge pull request #2001 from raft-tech/bug/1995-clamav-not-detecting-malware - - bug/1995 clamav not detecting malware - -commit c2201a7ca709ef5b12d0d7005517bf0650af8ec4 -Merge: cebf3dc5a 4852f108f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 5 13:02:11 2022 -0400 - - Merge branch 'develop' into adpennington-patch-1 - -commit 4852f108f79e5cbb0b954cc8abbeaa5483bc5170 -Merge: 770f7f6ea 156679423 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 5 13:01:57 2022 -0400 - - Merge pull request #1996 from raft-tech/stevenino-patch-2 - - Update Roadmap-and-Backlog.md - -commit 15667942344ae21cf989bd6e500a4a25eeb62c56 -Merge: 9ac36921e 770f7f6ea -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 5 12:56:03 2022 -0400 - - Merge branch 'develop' into stevenino-patch-2 - -commit 770f7f6ea7d4eb69f0fdde3fb854524d23f742fe -Merge: a2787388d 5372590ef -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Aug 5 12:55:25 2022 -0400 - - Merge pull request #2016 from raft-tech/stevenino-patch-3 - - Create sprint-52-summary.md - -commit 483d26385c850a6029f0a3c8cb0f6fd00f954b04 -Author: abottoms-coder -Date: Fri Aug 5 11:21:56 2022 -0400 - - After local testing, we have a new nginx configuration to hopefully provide more insight into our production woes with login.gov. Additionally, I believe the changes in FRONTEND_BASE_URL will resolve our logout redirecting to localhost:3000 - -commit bf9511a07e5258b5502f8bd2a2fcbe92ec220de9 -Author: abottoms-coder -Date: Fri Aug 5 08:50:21 2022 -0400 - - Should be equivalent to Aaron's branch - -commit 79c17dd7238a04013ae01e27c98b856eeb3a370e -Author: abottoms-coder -Date: Thu Aug 4 18:08:10 2022 -0400 - - linting fix - -commit 0838d44aff1e13e3d1fded932c52c8dc684979cf -Author: abottoms-coder -Date: Thu Aug 4 17:53:42 2022 -0400 - - frontend common - -commit 4f2f4586ff38b4f0aba44ee58da191b8ac28b180 -Author: abottoms-coder -Date: Thu Aug 4 17:40:04 2022 -0400 - - frontend line by line additions - -commit cebf3dc5a103dc06fec00186ae7c6aeb00bf649f -Merge: 688590561 a2787388d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 4 17:35:02 2022 -0400 - - Merge branch 'develop' into adpennington-patch-1 - -commit 71cd676cd0ba01825d520f43de61ebf300a8e092 -Author: abottoms-coder -Date: Thu Aug 4 17:28:42 2022 -0400 - - readding more - -commit 64a3a9820bf92ba50c42d6e7365ecc0083eb8d05 -Author: abottoms-coder -Date: Thu Aug 4 17:13:03 2022 -0400 - - readding some other django settings for more testing - -commit 5cab27f6e30ce6852f8af4caf7305502ab6396f9 -Merge: 72e07e579 a2787388d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 4 16:39:43 2022 -0400 - - Merge branch 'develop' into feat/1754-owasp-on-aditional-branches - -commit 6d9bdc87babd37cbf2596340ba605bcf9c8a2e1c -Author: abottoms-coder -Date: Thu Aug 4 16:36:50 2022 -0400 - - Readding custom session middleware because testing is not successful - -commit 72e07e579297ab707b9199c74c94946b330eb946 -Author: Cameron Smart -Date: Thu Aug 4 13:10:52 2022 -0700 - - added logic for prod url - -commit 8d11c41f46f372609ea4454bfce67685a29b08f4 -Author: Cameron Smart -Date: Thu Aug 4 13:02:33 2022 -0700 - - added Alex's fix to ignore certain scans - -commit 63755ebb385437ad1b473489107729daad498800 -Author: abottoms-coder -Date: Thu Aug 4 15:23:07 2022 -0400 - - Re adding my branch name so we can test a deployment out to prod - -commit c58711c60078d38f3b8eff7763313eda7060e99d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu Aug 4 15:13:00 2022 -0400 - - Update tdrs-frontend/nginx/nginx.conf - - This was causing a silent failure of nginx. - -commit 6e58cc8a5398f1bdc588fc78183044c3399ee161 -Merge: 6b0989534 a2787388d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 4 14:09:04 2022 -0400 - - Merge branch 'develop' into doc/1422-v1-ato-updates - -commit 6b0989534ff5012fe5b143783170404ab467f08a -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 4 13:52:54 2022 -0400 - - fix date typp - -commit 185c7ea711f4e33efd53b23c267ac6c47e38c8fd -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 4 12:43:12 2022 -0400 - - security control statement for AT series for #953 - -commit 5eca1dbc763261a50f1235cd636b84388b6ad05a -Author: raftmsohani -Date: Thu Aug 4 10:23:41 2022 -0400 - - 1133: Linting - -commit 3cb3055e38cd198c298fe74796d1011485dc0f74 -Author: raftmsohani -Date: Thu Aug 4 10:13:30 2022 -0400 - - 1133: Added error handling, starting redis on cloud.gov script - -commit ed66fa3e343c3dbb8b49ec813e8be4963ded72ba -Merge: e4db73c6e a2787388d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 4 09:59:13 2022 -0400 - - Merge branch 'develop' into bug/1995-clamav-not-detecting-malware - -commit e4db73c6ed222348081b993a713d76e8c0d815f7 -Author: Cameron Smart -Date: Wed Aug 3 16:45:38 2022 -0700 - - moved AV_SCAN_URL to abstract config - -commit ee052df3ac573783673e560872c3f53b8b382599 -Author: abottoms-coder -Date: Wed Aug 3 15:52:30 2022 -0400 - - Removing our feature branch from deployment - -commit 0bce0efee56c0aac933d32ea988501e9e9d046f4 -Author: abottoms-coder -Date: Wed Aug 3 15:31:21 2022 -0400 - - Matching up frontend to original form - -commit 46ffef3815e26cee49bdb6522dd58eead1ca263a -Author: abottoms-coder -Date: Wed Aug 3 15:23:53 2022 -0400 - - Tweak to deploy-frontend to polish it up for prod - -commit b6d35be832ebc56062aa6a3ad7d35e027a624749 -Author: abottoms-coder -Date: Wed Aug 3 15:17:27 2022 -0400 - - changing allow headers within the auth check - -commit c9520fd3780b23bac8276eec2e859adc34011306 -Author: abottoms-coder -Date: Wed Aug 3 15:03:48 2022 -0400 - - Removing more CORS stuff and also minor tweak to deployment script - -commit 07668da9904d0faf813289ddf30e7dd94d528c1c -Author: abottoms-coder -Date: Wed Aug 3 14:47:13 2022 -0400 - - Undoing first set of django settings for crsf/cookies - -commit c3cd722d2033f7beae9e4cf0df308e3da24d49cf -Author: abottoms-coder -Date: Wed Aug 3 14:31:22 2022 -0400 - - Hardcoding the backend domain to prevent redoing this manual steps on every deploy - -commit af9c1d117d0a516418b0cfd945562d1ca3f66ec9 -Author: abottoms-coder -Date: Wed Aug 3 14:26:30 2022 -0400 - - Backing out session middleware customization - -commit 0686adbb5e533ad82f3ae501d472b95c41ec86d7 -Author: abottoms-coder -Date: Wed Aug 3 14:02:34 2022 -0400 - - changing branch name for deploying to prod - -commit aee46b372fa8cdc73e5aca335fdb2761020a4129 -Author: abottoms-coder -Date: Wed Aug 3 13:58:56 2022 -0400 - - Backing out axios changes for auth.js - -commit 9f95b48efd59dd942dc8ff74ea644dc9ae176f32 -Author: Cameron Smart -Date: Wed Aug 3 10:13:15 2022 -0700 - - remove unneeded code - -commit 6816619bf9ffa05b385911652de7b51f8d6eba6b -Author: Cameron Smart -Date: Wed Aug 3 09:52:05 2022 -0700 - - syntax - -commit ab5f73d710a5f426c6eb88dcaa29f9baeb54b8d2 -Author: Cameron Smart -Date: Wed Aug 3 08:29:07 2022 -0700 - - fixed up for pr - -commit 5372590efcc65071a2dd9dea74c3b20aad5e363f -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Aug 2 16:19:23 2022 -0700 - - Create sprint-52-summary.md - -commit 04ae250bd768e4c52c2c2871d05968a470ca1275 -Author: Cameron Smart -Date: Tue Aug 2 14:12:39 2022 -0700 - - If this works I am blamming the linter - -commit f442937604d059185a6d670a204b1598abe281cb -Author: Cameron Smart -Date: Tue Aug 2 12:22:01 2022 -0700 - - stop hourly scan - -commit a2787388d8597db9cd3e7a7958ceea4b0300aba1 -Merge: 7f484b669 49528417c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 2 15:14:10 2022 -0400 - - Merge pull request #2012 from raft-tech/andrew-jameson-patch-1 - - Updating backend FQDN per changes - -commit 49528417ca76a482e550b944689e031a33c6bb52 -Merge: 41639ff94 7f484b669 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 2 15:07:58 2022 -0400 - - Merge branch 'develop' into andrew-jameson-patch-1 - -commit 7f484b6690d934e211da93bbbd2b940275c31fe8 -Merge: ffe46ec82 96d32f2c1 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 2 15:07:52 2022 -0400 - - Merge pull request #2011 from raft-tech/final-knowledge-center-img-fix - - Corrects hrefs still looking for jpegs instead of jpgs - -commit 96d32f2c138723b49f8c545163b857fa85910905 -Merge: 105c25e72 ffe46ec82 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 2 14:58:13 2022 -0400 - - Merge branch 'develop' into final-knowledge-center-img-fix - -commit ffe46ec82a1be3d234d2aa1ea334a5efebbf3850 -Merge: 2d0f5d7fd 59d0e9389 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Aug 2 14:58:03 2022 -0400 - - Merge pull request #1937 from raft-tech/feat/1906-use-asterisk-on-access-form - - Feat/1906 use asterisk on access form - -commit f88e4cffc11711a3b5997aab39f131156d5fae59 -Author: Cameron Smart -Date: Tue Aug 2 11:33:05 2022 -0700 - - testing all branches - -commit 5ca7b04f8159f78c1af14cde2a15bbdefc76c6b4 -Author: raftmsohani -Date: Tue Aug 2 12:03:10 2022 -0400 - - 1133: additional log - -commit c3b2e65ca66ec7b9ae6a5b63f676cf85d8f33082 -Author: raftmsohani -Date: Tue Aug 2 11:54:14 2022 -0400 - - 1133: additional log - -commit 5597c5bbee1c61bcefa2442bb537af1f77071f88 -Author: raftmsohani -Date: Tue Aug 2 11:33:32 2022 -0400 - - 1133: additional log - -commit 30d5f7f89708c470830ed054d8b3f36385755232 -Author: raftmsohani -Date: Tue Aug 2 11:27:22 2022 -0400 - - 1133: additional log - -commit 4a83bba95a078082680b7a5c2fb8953311c0a4cb -Author: raftmsohani -Date: Tue Aug 2 10:24:26 2022 -0400 - - 1133: wrapped the task in try/exception - -commit 51c91de4503375e71c4b1afa9fb563830bfb323d -Author: raftmsohani -Date: Mon Aug 1 23:52:07 2022 -0400 - - 1133: corrected gunicorn_start.sh - -commit d1b31305a95f5cf8f4ac779754fff22d50edb02e -Author: raftmsohani -Date: Mon Aug 1 23:48:58 2022 -0400 - - 1133: corrected gunicorn_start.sh - -commit dd2d8f268f654d9dda73af7ae9444ff0787961cd -Author: raftmsohani -Date: Mon Aug 1 23:31:20 2022 -0400 - - 1133: corrected gunicorn_start.sh - -commit b518124b3bc03a6784210b213e0810e7f73908ea -Author: raftmsohani -Date: Mon Aug 1 22:56:53 2022 -0400 - - 1133: corrected gunicorn_start.sh - -commit d31af210bd5a05bcc2110986690f5263c251dbcf -Author: raftmsohani -Date: Mon Aug 1 22:38:44 2022 -0400 - - 1133: corrected flower uri - -commit 56559e68caa08895d7018011dbf2003f6d29ef4c -Author: raftmsohani -Date: Mon Aug 1 22:36:38 2022 -0400 - - 1133: absolute path instead of home path - -commit e4fb775092d5d4e73ba88ab9affbc545e6d0cea5 -Author: raftmsohani -Date: Mon Aug 1 22:10:16 2022 -0400 - - 1133: absolute path instead of home path - -commit ecdfc9e51c32ae6c5374a45379e48b0f7e7be436 -Author: Cameron Smart -Date: Mon Aug 1 15:42:30 2022 -0700 - - passed target_env into zap_scanner.sh - -commit 41639ff94eec9c1912a941285b5a95cabe6ca399 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Aug 1 16:57:24 2022 -0400 - - Updating backend FQDN per changes - - Kudos to Cameron - -commit a2268f3b69fa3e50fd83c7a7bad2df79ece02c95 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Aug 1 16:56:12 2022 -0400 - - update erd to latested from CircleCi - -commit 83df81f6b75faeba6954a02038f6a74c51083fae -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Aug 1 15:21:56 2022 -0400 - - update boundary diagram description - -commit a7d8a957118e1ba1b7c8446eacb87e89f26c5db3 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Aug 1 14:28:19 2022 -0400 - - updated bd with acf and non-acf user routes - -commit 105c25e72bf0d3528dda5e234391bdd8314c2da9 -Author: Miles Reiter -Date: Mon Aug 1 13:26:01 2022 -0400 - - Corrects hrefs still looking for jpegs instead of jpgs - -commit ac202a5ceca1c84c3deddfda6f1801e9309e321a -Author: raftmsohani -Date: Mon Aug 1 13:04:33 2022 -0400 - - 1133 - Refactored redis URI to env vars - -commit 59566502c3d39bc169cb9dc1a9a12b3d35e1f541 -Author: raftmsohani -Date: Mon Aug 1 12:47:38 2022 -0400 - - 1133 - Removed the test files - -commit 17cad9c7fc320099f754cf9a16e967c4db575d4d -Author: raftmsohani -Date: Mon Aug 1 12:27:24 2022 -0400 - - 1133 - Added redis-server to gunicorn_start.sh and changed the Celery broker/backend to run on the local redis-server - -commit 91384b7e47f71a4400a3f6b4362f6527fbc5321d -Author: raftmsohani -Date: Mon Aug 1 11:33:41 2022 -0400 - - added local redis - -commit 319b46d89338ee2706846aa67040935334055898 -Author: raftmsohani -Date: Mon Aug 1 10:57:10 2022 -0400 - - added dependency packages - -commit 25adae8bc19ef200702ca17ecb15c104689cf014 -Author: raftmsohani -Date: Mon Aug 1 10:12:58 2022 -0400 - - added redis-cli apt - -commit 01a04a1cd6fdd7ecf845dd3aa48bd126355c5b20 -Merge: eaa8e3284 2d0f5d7fd -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Aug 1 08:39:19 2022 -0400 - - Merge branch 'develop' into feat/1133-files-transferred-to-ACF-Titan - -commit 7b3cb04d63ef6018944ca764dd5178275b309f6d -Author: Aaron Beavers -Date: Fri Jul 29 17:14:13 2022 -0400 - - Add another header - -commit 02b0343892055b85dc9da379b96ffc53e48aa315 -Author: Aaron Beavers -Date: Fri Jul 29 16:53:47 2022 -0400 - - Add more headers - -commit af6cd7965818c9887bb59dd1f292c5e768731f23 -Author: Aaron Beavers -Date: Fri Jul 29 16:46:58 2022 -0400 - - add allowed headers: - -commit 8890023233a558d24e92e95dca4f79fdab47cc3e -Author: Aaron Beavers -Date: Fri Jul 29 16:16:53 2022 -0400 - - Add allow headers - -commit 975a1e777beaee93b2b2c40f8cc1a4b9221c7f55 -Author: Aaron Beavers -Date: Fri Jul 29 15:49:16 2022 -0400 - - MORE TYPOS! - -commit 561cfdf97a1771b193cfcaf3d3cf2c3ea78b4065 -Author: Cameron Smart -Date: Fri Jul 29 12:29:15 2022 -0700 - - hard code AV_SCAN_URL in cloudgov.py - -commit 9ba49cdbe175890f32651f0d58d03fb8138042d7 -Author: Aaron Beavers -Date: Fri Jul 29 15:28:42 2022 -0400 - - add semi colon - -commit f49c86f897de1381d5e6cfd00e864e2554e9e64a -Author: Aaron Beavers -Date: Fri Jul 29 15:18:05 2022 -0400 - - update the correct nginx file - -commit 6a678302816e6693ebf78696ea6876ea4e038c0e -Author: Aaron Beavers -Date: Fri Jul 29 15:02:20 2022 -0400 - - try adding access control allow origin to nginx - -commit b974cd95ba88380d991163490cd28ac411cf3076 -Author: Aaron Beavers -Date: Fri Jul 29 14:57:30 2022 -0400 - - try updating the nginx csp header - -commit 2cd955a4f9ae83e95b8f36954a7f2d9e67a8ca70 -Author: Aaron Beavers -Date: Fri Jul 29 14:49:26 2022 -0400 - - fix typo - -commit 5fec8d832daa8f1284a903b59192bf8395783d86 -Author: Aaron Beavers -Date: Fri Jul 29 14:39:57 2022 -0400 - - try wild card - -commit 4618ee7a053c717f9e04ca3299b6be1f9d500880 -Author: Aaron Beavers -Date: Fri Jul 29 14:25:03 2022 -0400 - - add header - -commit 624e4c20846db46116dd6f19295ecce2c7bd59d1 -Author: Aaron Beavers -Date: Fri Jul 29 13:58:10 2022 -0400 - - use wild cards - -commit bd3240c36ce12cc2123a9f9c41dd3157c2b3ab02 -Author: Aaron Beavers -Date: Fri Jul 29 13:40:41 2022 -0400 - - updated a few more cookie/csp settings - -commit 30bddc855fa52f6a76edefe1ff50dbf70bcc23a9 -Author: Aaron Beavers -Date: Fri Jul 29 11:07:26 2022 -0400 - - Hard code backend url into frontend deploy script - -commit d21350f0fe7d0837f67e20f114db7952b8150dfa -Author: Aaron Beavers -Date: Fri Jul 29 10:09:56 2022 -0400 - - Add a domain to csrf cookie - -commit eaa8e3284d2aad3a57ce9df331ed6019c8378d1f -Author: raftmsohani -Date: Fri Jul 29 09:46:20 2022 -0400 - - 1133 - Linting - -commit 4bba52020389b1f5f6e7e84faa32b8a9f904c786 -Author: raftmsohani -Date: Fri Jul 29 09:27:40 2022 -0400 - - 1133 - Linting - -commit 2f0bc798615e1cf4e6335ed45f919e3f32d73fdd -Author: raftmsohani -Date: Fri Jul 29 09:19:26 2022 -0400 - - 1133 - Linting - -commit 33276b0b6ea1634ed321ec493c1efa871a60f55b -Author: raftmsohani -Date: Fri Jul 29 09:10:53 2022 -0400 - - 1133 - Linting again - -commit 7f190c239a50a472b796653421fc636f383575cc -Author: raftmsohani -Date: Fri Jul 29 08:39:58 2022 -0400 - - 1133 - Linting - -commit 7a92e00d1546635734c00f247e1f3e24875d6480 -Author: raftmsohani -Date: Fri Jul 29 08:24:50 2022 -0400 - - 1133 - Removed the tasks app - -commit 384830f18d7f654c1c4ba8ebf7c5d466272dd99b -Author: raftmsohani -Date: Fri Jul 29 08:07:54 2022 -0400 - - 1133 - Removed the scheduled tasks - -commit c8ec5559266ae18ce28bb3948abec1e2da22307a -Author: Aaron Beavers -Date: Thu Jul 28 16:29:32 2022 -0400 - - Try typing these values different. - -commit f85aab2a26330e831655cf817d6639278ce16880 -Author: Aaron Beavers -Date: Thu Jul 28 16:04:39 2022 -0400 - - Uncomment frontend code. - -commit 6885905612b73ef12e201798b16b065e2a199370 -Merge: 50abe3438 2d0f5d7fd -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 14:52:35 2022 -0400 - - Merge branch 'develop' into adpennington-patch-1 - -commit 50abe3438f356c3235e5b8dc61418c2226bea195 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 14:24:02 2022 -0400 - - Update docs/Security-Compliance/Security-Controls/cm-7-2/index.md - - fix broken link cm7 - -commit 30792b3f15d4a549c6eed311d25aaaf0549a468e -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 14:22:07 2022 -0400 - - fix broken link in ra5 - -commit 5846a324570a404efd9d442e355cb6ea7892e74c -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 13:49:31 2022 -0400 - - fix broken link in ac-06 - -commit b0269452003fb67e97f617e57c4364d78e307625 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 13:40:30 2022 -0400 - - added evidence of clamav scans in DAC to cm7 - -commit 6f4da80dbee0c25c6b5f4e252342f5931d24eaa8 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 13:11:50 2022 -0400 - - updating RA-5 to include screenshots of owasp scans in DAC - -commit 881141daaf0e1fd24b65bfa0492e580815ea76a3 -Author: Cameron Smart -Date: Thu Jul 28 09:43:14 2022 -0700 - - append /scan to default AV_SCAN_URLs - -commit d67792afa8a8c231d43847eda07cb4110e675bd0 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 10:45:08 2022 -0400 - - IA-8 updated to note authentication inherited by acf ams too - -commit 0232856b37ef5dbc8b26831675bc6c491a64f98a -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 10:42:52 2022 -0400 - - Au-2 updated to include account logging for acf users inherited from acf ams - -commit 01400e1ee7371eee346097b7380415937a8467c8 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 10:32:29 2022 -0400 - - AC-7 updated to clarify that login attempts inherited from authentication services used by TDP - -commit a4fc0d172fed923bcf97073a4fdc38bef1c519b2 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 10:24:57 2022 -0400 - - AC-6 updated with acf ams authentication - -commit 628bc2ac18e462718a17c60f77bef4de9d5dbea4 -Author: raftmsohani -Date: Thu Jul 28 10:21:09 2022 -0400 - - 1133 - Added env vars, creating directories, putting the file, error handling. - -commit 8ec8a2c10726df3dd6dd3f8a8362d447ca610bfe -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jul 28 10:20:57 2022 -0400 - - AC-2 updated with permission groups and acf ams - -commit 9ac36921eae7c5c25a7115f739904ce1ff7d1e40 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Jul 27 16:44:10 2022 -0700 - - Update Roadmap-and-Backlog.md - -commit 321d4d409e78678d6b07645dd46e77a548c33366 -Author: Cameron Smart -Date: Wed Jul 27 13:01:13 2022 -0700 - - added prod parameters for owasp - -commit 4f6444ad8de797cfcda3c3c63558f17363dc8c15 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jul 26 13:10:54 2022 -0700 - - Update Roadmap-and-Backlog.md - -commit ae262ac2a661cfef15557c12e6931d25466d00d1 -Author: Aaron Beavers -Date: Tue Jul 26 15:45:37 2022 -0400 - - Add fixes to deploy-backend - -commit 4e5ea9511bd507a7d68f28105db6a3dba2741a55 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jul 26 11:20:37 2022 -0700 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit cfb751e45090f48a4aaa986ffab5c22ae07714a6 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jul 26 11:20:23 2022 -0700 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 53a7d9d58890f6df884dfa095d5210d4e3115777 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jul 26 11:19:51 2022 -0700 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 3220fdb197f2b460b3252653cfc9021a2104ae25 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jul 26 11:19:23 2022 -0700 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 59d0e9389711e84c43da9ebd677ad50919532602 -Merge: af58e02af 2d0f5d7fd -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jul 26 09:31:28 2022 -0400 - - Merge branch 'develop' into feat/1906-use-asterisk-on-access-form - -commit 2d0f5d7fd383daa5209ed93940d0a86cad39b5c6 -Merge: 3b8123a4f 5c4fc743a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jul 26 09:31:02 2022 -0400 - - Merge pull request #1973 from raft-tech/feat/1957-include-current-fiscal-year - - feat/1957 include current fiscal year - -commit 5c4fc743af63fab522fb2bf63838e48ccc7b5d0c -Merge: 48ba4058a 3b8123a4f -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jul 26 09:13:31 2022 -0400 - - Merge branch 'develop' into feat/1957-include-current-fiscal-year - -commit 3b8123a4ff1b20c50af9a6d6f38a1f7c23313c59 -Merge: c940e9417 487df4f9c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jul 26 09:13:18 2022 -0400 - - Merge pull request #1924 from raft-tech/feat/1788-resource-cards - - Feat/1788 resource cards - -commit 487df4f9c286b6d54116ddc966cf6514fa8bee5a -Merge: b436edbb6 c940e9417 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jul 26 08:50:19 2022 -0400 - - Merge branch 'develop' into feat/1788-resource-cards - -commit c940e941727a02109e0570a2f3baabb6d878e157 -Merge: 716f1092d 329e17760 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jul 26 08:48:18 2022 -0400 - - Merge pull request #1964 from raft-tech/feat/1750-failed-deployment - - Feat/1750 failed deployment - -commit 6104482ad68414fa422ef67f56ca7be58b3f7bfa -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Jul 25 14:42:15 2022 -0700 - - Update Roadmap-and-Backlog.md - -commit 5434ffaf181fa79a09defb0d3bdbad0350f294dc -Author: Cameron Smart -Date: Thu Jul 21 11:43:16 2022 -0700 - - added needed filter for schedule on nightly - -commit 56402897c0e06790215fbc52948566dfb243fc9d -Author: Cameron Smart -Date: Thu Jul 21 11:37:56 2022 -0700 - - check branches in nightly workflow - -commit 3c649135a22c2592391572a28910fb2b4b9ffa55 -Author: Cameron Smart -Date: Tue Jul 19 11:35:08 2022 -0700 - - test multiple jobs with their branches - -commit 27a5801a68e527aac6bd3f4c54573bd7fe17b36b -Author: Cameron Smart -Date: Tue Jul 19 10:49:31 2022 -0700 - - testing nightly owasp with filter and static var - -commit b7b12c5d7a351ac46961284e936c7d0b5aa74617 -Author: Cameron Smart -Date: Tue Jul 19 10:13:04 2022 -0700 - - testing nightly owasp - -commit 17328977dc0e9c5aa4247470d126d8df75d6531d -Author: Cameron Smart -Date: Tue Jul 19 10:06:32 2022 -0700 - - used pipeline var for backend env in nightly-owasp-scan - -commit 329e17760fca6f0ab13883cbd08d015ceee86b08 -Merge: c6dd7c61d 716f1092d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 25 15:40:09 2022 -0400 - - Merge branch 'develop' into feat/1750-failed-deployment - -commit b436edbb67066c39fb16458cc776a8ef6c176daf -Merge: 27bf5cd20 716f1092d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 25 14:52:09 2022 -0400 - - Merge branch 'develop' into feat/1788-resource-cards - -commit b9740ec7d70d8322c00c5e9fd0a25bcf501fd8bc -Author: Aaron Beavers -Date: Mon Jul 25 14:50:36 2022 -0400 - - new line under class doc string - -commit af58e02afb468bd8ab9f8ec8c981a998a696e5cf -Merge: ce49c209b 716f1092d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 25 14:45:23 2022 -0400 - - Merge branch 'develop' into feat/1906-use-asterisk-on-access-form - -commit 48ba4058aefaa2440e870ee56a7789f7c581cbc5 -Merge: 3351aeced 716f1092d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 25 14:45:09 2022 -0400 - - Merge branch 'develop' into feat/1957-include-current-fiscal-year - -commit e5a11a29a98501580147e3c8e2bc4138dabb4ccc -Author: Aaron Beavers -Date: Mon Jul 25 14:44:00 2022 -0400 - - Temporarily deploy to production from this branch - -commit 511db094161fc765f9a4e846896e42a4b7e00806 -Author: Aaron Beavers -Date: Mon Jul 25 14:34:21 2022 -0400 - - Add doc strings for lint - -commit 3b1bc5263adbc2728fad10999bda58ef47de1d33 -Author: Aaron Beavers -Date: Mon Jul 25 14:10:57 2022 -0400 - - git config change - -commit 6562209d1ca9c6ba9877da35d48fcb59ca01297f -Author: Aaron Beavers -Date: Mon Jul 25 14:10:33 2022 -0400 - - Some backend ENV vars - -commit ebda33754cbfe2ba7c9f9de8da7e32b1192882e3 -Author: Aaron Beavers -Date: Mon Jul 25 14:03:09 2022 -0400 - - Hack for prod route - -commit 4c48af228c2662d52a402e4a69f07366a359bd86 -Author: Aaron Beavers -Date: Mon Jul 25 14:02:43 2022 -0400 - - Use a variable again for CF_SPACE - -commit 70e3cbe03ea0ad4d1343bc7a5a5e0c0f245e0bc2 -Author: Aaron Beavers -Date: Mon Jul 25 13:59:24 2022 -0400 - - Add cloud.gov backend to allowed hosts - -commit 3427c86fba1b5946d427750928acd845c5b65810 -Author: Aaron Beavers -Date: Mon Jul 25 13:58:03 2022 -0400 - - Add ALLOWED_CORS_HEADERS - -commit 613cff54d769e49c6c03f85509248dbafd6d748b -Author: Aaron Beavers -Date: Mon Jul 25 13:57:41 2022 -0400 - - Update CSP_CONNECT_SRC - -commit 24acb2bd6264893f87f6886ee91e4b9c96c8540e -Author: Aaron Beavers -Date: Mon Jul 25 13:56:49 2022 -0400 - - Add Session Middleware Patch - -commit 58824c9c8b0fcbbaab621f55cf05fc27a21c0638 -Author: Aaron Beavers -Date: Mon Jul 25 13:54:15 2022 -0400 - - Update CSRF_HEADER_NAME - -commit 8082a68928066f8ef956c3cda0a8da4db5868392 -Author: Aaron Beavers -Date: Mon Jul 25 13:54:02 2022 -0400 - - Update CSRF_COOKIE_SAMESITE - -commit c5adb17e4857ae90e3b0a415fb0d36588076b4c2 -Author: Aaron Beavers -Date: Mon Jul 25 13:53:47 2022 -0400 - - update CSRF_COOKIE_SECURE - -commit 192fd86b6c51cc738678cd67e9d0e1d289523494 -Author: Aaron Beavers -Date: Mon Jul 25 13:53:29 2022 -0400 - - Update CSRF_TRUSTED_ORIGINS - -commit 14528db2b0af3cb5abad56830320b76485f125fb -Author: Aaron Beavers -Date: Mon Jul 25 13:53:01 2022 -0400 - - Reorder imports - -commit 498a7e7152eabcc2ba1b6ab2ebdad03de5dc6b98 -Author: Aaron Beavers -Date: Mon Jul 25 13:52:40 2022 -0400 - - Update SESSION_COOKIE_SAMESITE - -commit d432eb9a872e6b8888155d67beceef89eae53f46 -Author: Aaron Beavers -Date: Mon Jul 25 13:52:07 2022 -0400 - - update SESSION_COOKIE_SECURE - -commit 81c65c5100fdd30d2be84470511abb0800e82186 -Author: Aaron Beavers -Date: Mon Jul 25 13:51:38 2022 -0400 - - update csp default - -commit 93d63caf6fe0d49d2d7ad3af60d6729cbeec04bc -Author: Aaron Beavers -Date: Mon Jul 25 13:45:48 2022 -0400 - - Use tdpservice.middleware.SessionMiddleWare and reorder corsheaders line - -commit 7fd71020a16732b6f2daf4fbe61349faba40b9ba -Author: Aaron Beavers -Date: Mon Jul 25 13:44:51 2022 -0400 - - Add additional Headers to allowed - -commit 126f2fbef4c8d6f432b6548703419ed9734fdccb -Author: Aaron Beavers -Date: Mon Jul 25 13:43:56 2022 -0400 - - add csrf cookie the hard way - -commit eae660913a63fda451041512982d7ecf4490d659 -Author: Aaron Beavers -Date: Mon Jul 25 13:43:29 2022 -0400 - - Remove break lines - -commit 6bf210820dfadb3b9d3aed545a30dda0e1a403b6 -Author: Aaron Beavers -Date: Mon Jul 25 13:43:14 2022 -0400 - - Terraform syntax Error - -commit 5a2b3b5949db9f37715def597b32f4001d825d19 -Author: raftmsohani -Date: Mon Jul 25 11:56:34 2022 -0400 - - FileUpload - added error handling - -commit c587b5940b710fb40f4f6bc325c84b0f22153aaf -Author: raftmsohani -Date: Mon Jul 25 00:59:33 2022 -0400 - - FileUpload - Refactored scheduled task to let delay task to be scheduled - -commit 2f30262b6005ed7c881a76e0e26bb693dc39ccf4 -Author: raftmsohani -Date: Sun Jul 24 22:54:30 2022 -0400 - - FileUpload - -commit 3351aeced40c945e13ff37d800399aac1927a2c0 -Author: Cameron Smart -Date: Fri Jul 22 14:41:21 2022 -0700 - - linting - -commit ce49c209b63058018e7cf7e39f3c71a1d3366860 -Author: Cameron Smart -Date: Fri Jul 22 14:38:54 2022 -0700 - - added aria-req to combobox input for real - -commit a8f3e0911dd4c8962c0551585ca83fbc191f150d -Author: Cameron Smart -Date: Fri Jul 22 13:37:33 2022 -0700 - - Fixed a test - - The test I reverted before was actually correct - -commit 716f1092dbdabb56df5528c7e39f5bec99fecb44 -Merge: fd6594b5e b385bc5ab -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 22 16:31:05 2022 -0400 - - Merge pull request #1953 from raft-tech/feat/1951-production-login-variables - - feat/1951 Production Login Variables - -commit b385bc5abf470255a174edc375483e3a3ba86cfd -Merge: c415267dd fd6594b5e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 22 16:22:31 2022 -0400 - - Merge branch 'develop' into feat/1951-production-login-variables - -commit fd6594b5efaeacde8ce6a503ace58ce3402ecbe6 -Merge: 1a42b0b09 48eddc674 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 22 16:22:09 2022 -0400 - - Merge pull request #1974 from raft-tech/stevenino-patch-2 - - Create sprint-51-summary.md - -commit 48eddc674cfa0c65cce1c2638e3b08f16b18a9f8 -Merge: ba93d1e9f 1a42b0b09 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 22 16:16:31 2022 -0400 - - Merge branch 'develop' into stevenino-patch-2 - -commit 56f15a97e0e6e34e66beaf5679639df6763dc1c5 -Author: Cameron Smart -Date: Fri Jul 22 12:52:02 2022 -0700 - - reversed years and fixed tests - -commit 8af6d422e115005177b7642558cdfbebc34c4277 -Author: Cameron Smart -Date: Fri Jul 22 12:02:21 2022 -0700 - - remove false positive from test - -commit c415267ddb19592a51c573ffc7dfccf4a6e7ccc4 -Merge: 0ad9f8051 1a42b0b09 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jul 22 14:13:06 2022 -0400 - - Merge branch 'develop' into feat/1951-production-login-variables - -commit c6dd7c61d6afa8af1296791f6133999a90775384 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 22 10:20:00 2022 -0400 - - Update docs/Technical-Documentation/Failed-Deployment-Troubleshooting.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit fd7724e25afa06deacd6d99a2d2afedc75033ba2 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 22 10:19:54 2022 -0400 - - Update docs/Technical-Documentation/Failed-Deployment-Troubleshooting.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 1a42b0b0998072e85beb405fc864f9be425ebfcb -Merge: edea3cd7b ed65a1a01 -Author: Miles Reiter -Date: Thu Jul 21 15:06:39 2022 -0400 - - Merge pull request #1983 from raft-tech/knowledge-center-img-fix - - Knowledge center img fix - -commit c0a2652ba0450e6a092a8fba89b7286cb06013a4 -Author: raftmsohani -Date: Thu Jul 21 10:55:23 2022 -0400 - - Working scheduler - -commit ed65a1a0184f0814ddac137b4c422c779b575f34 -Author: Miles Reiter -Date: Wed Jul 20 23:07:03 2022 -0400 - - Remaining jpegs to jpg - -commit 91861e165956c1e2d03ea00bd8a3bef2e6fea662 -Author: Miles Reiter -Date: Wed Jul 20 23:04:18 2022 -0400 - - Jpeg to jpg — complete-data - -commit 85805a7b9e86ee301aa6b505d92cf11594058c1d -Author: Miles Reiter -Date: Wed Jul 20 23:03:31 2022 -0400 - - Delete .gitattributes.txt - -commit d211e0f658c3bd92bbe5b19e2cf26f5d3045645c -Author: Miles Reiter -Date: Wed Jul 20 22:55:52 2022 -0400 - - add images - -commit 07834f384e9cbc70afed57e9053144dc14772ae2 -Author: Miles Reiter -Date: Wed Jul 20 22:55:37 2022 -0400 - - remove images - -commit b7263928adee5c97b5bb82c7ff5cc9aeedd4f58a -Author: Miles Reiter -Date: Wed Jul 20 22:53:58 2022 -0400 - - Rename .gitattributes to .gitattributes.txt - -commit 1f4158e812c0eddebf43e25ca019d7cfa69a47bd -Author: Miles Reiter -Date: Wed Jul 20 22:53:06 2022 -0400 - - (re-add images) - -commit 8bce5063f2502e374df87bd2fbedce12a141d5e2 -Author: Miles Reiter -Date: Wed Jul 20 22:52:43 2022 -0400 - - Delete images - -commit f6111408514f8494da186ad296b3d8a1db73c7a6 -Author: Miles Reiter -Date: Wed Jul 20 22:52:10 2022 -0400 - - Create .gitattributes - -commit 580dfcac31ac2146ffa433acd6e519c786ca361f -Author: Miles Reiter -Date: Wed Jul 20 22:43:19 2022 -0400 - - (Re)Add img - -commit af487c03b91d7ebc7ee2dbf05d3fa839071291fd -Author: Miles Reiter -Date: Wed Jul 20 22:42:58 2022 -0400 - - Delete img - -commit 31740fbf63dfc93f2d8a9541c35425c6dd4fb01b -Author: Cameron Smart -Date: Wed Jul 20 12:36:05 2022 -0700 - - removed unneeded debugging code - -commit e87f4a8f3bafd8b15a06ac80c372810a51de51a2 -Author: Cameron Smart -Date: Wed Jul 20 12:25:00 2022 -0700 - - One more test - -commit 03cab3e3201f427038265a40410bb28a9418d370 -Author: Cameron Smart -Date: Wed Jul 20 12:12:27 2022 -0700 - - linting - -commit ae0528ff96fa572899e74e46026d791660d8a3c3 -Author: Cameron Smart -Date: Wed Jul 20 12:08:25 2022 -0700 - - removed duplicate test - -commit e1367d5395c90ee8e92013f1572bf484dd067792 -Author: Cameron Smart -Date: Wed Jul 20 12:06:48 2022 -0700 - - tested constructYear functionality - -commit 27bf5cd206000547d22168fd7b2b3d6c3c910f82 -Merge: f835792b4 edea3cd7b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jul 20 13:31:53 2022 -0400 - - Merge branch 'develop' into feat/1788-resource-cards - -commit 8382155a7e88e626bee8a5a5af787bbbb97c843c -Merge: f2f78d951 edea3cd7b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jul 20 11:16:34 2022 -0400 - - Merge branch 'develop' into feat/1906-use-asterisk-on-access-form - -commit ba93d1e9f7a6b622a97c67e4461ae6d848366c59 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jul 19 15:59:21 2022 -0700 - - Create sprint-51-summary.md - -commit 759cd7aaa95fbc3fbe78f58150c8178beb68b041 -Author: Cameron Smart -Date: Tue Jul 19 14:39:52 2022 -0700 - - linting - -commit 8c0ce59f4c0449c2e600df42c35e5157e1d1cd0c -Author: Cameron Smart -Date: Tue Jul 19 14:33:38 2022 -0700 - - fixed test - -commit 042876835b52119ff9dc3466eeef26dd322bcaa7 -Author: Cameron Smart -Date: Tue Jul 19 13:54:05 2022 -0700 - - year was off by 1 - -commit e913ca8ea2937553281d64361b521da329f0d6c0 -Author: Cameron Smart -Date: Tue Jul 19 12:46:12 2022 -0700 - - Function to return fiscal year options - -commit edea3cd7bdd69d277a91647e63d94c74d363326c -Merge: f9d994674 904019ed2 -Author: Aaron Beavers -Date: Tue Jul 19 13:24:58 2022 -0400 - - Merge pull request #1970 from raft-tech/fix/1789-cf-space - - revert cf space production - -commit 904019ed28872fd76caaf7436796183fba9cfe99 -Author: Aaron Beavers -Date: Tue Jul 19 12:29:34 2022 -0400 - - Fix terraform formating error in production - -commit 661c411848ac0d4439aa15aa37c29f1daf5383e4 -Author: raftmsohani -Date: Tue Jul 19 12:15:53 2022 -0400 - - added shceduled tasks - -commit f835792b4b5b41e0b6739849b711d09271c69833 -Author: Cameron Smart -Date: Tue Jul 19 07:58:39 2022 -0700 - - grammar fix on instruction card - -commit f59403e8e422e61f0b97d6b4ad07703c81c88993 -Author: Aaron Beavers -Date: Tue Jul 19 10:23:58 2022 -0400 - - revert cf space production - -commit 5dc7b1eba69b2cddf7769492617301da3a15721f -Merge: 959183ea5 f9d994674 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 19 08:49:37 2022 -0400 - - Merge branch 'develop' into feat/1788-resource-cards - -commit 15daafb4a6c1f3c4e07c16ded10066f3298512ec -Author: raftmsohani -Date: Tue Jul 19 06:38:09 2022 -0400 - - added upload task - -commit f9d994674622272b59de1123937a9e7bce367e50 -Merge: df4d98131 e73ad7375 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 18 16:52:20 2022 -0400 - - Merge pull request #1864 from raft-tech/feat/1746-new-routes-and-services-tanf-staging-space - - feat/1746-new-routes-and-services-tanf-staging-space - -commit 959183ea588dbb35ad1639d9996377729e19fbb9 -Merge: ec3f58cb9 df4d98131 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 16:36:04 2022 -0400 - - Merge branch 'develop' into feat/1788-resource-cards - -commit e73ad7375e3831b2f7edaf995bc585b2ec8fbd67 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 15:20:16 2022 -0400 - - adding more updates for PR #1864 - -commit d60beeb01fd621b697022d7120ecd861ab161369 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 15:16:46 2022 -0400 - - reverting testing branch back to hhs staging branch: main - -commit 44fe0142c0b306e5402d9e299e1cafe0d347257b -Merge: d8e9ba731 614be218a -Author: abottoms-coder -Date: Mon Jul 18 15:01:25 2022 -0400 - - Merge branch 'feat/1750-failed-deployment' of github.com:raft-tech/TANF-app into feat/1750-failed-deployment - -commit d8e9ba7318752d70c82513a34c248a53c2fd50fb -Author: abottoms-coder -Date: Mon Jul 18 15:01:11 2022 -0400 - - Removing line about JWT to not trigger git-secrets - -commit 614be218ab4b689a6b43d2ca6805a4d982ab6ed0 -Merge: 2f0b58afe df4d98131 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 18 14:44:43 2022 -0400 - - Merge branch 'develop' into feat/1750-failed-deployment - -commit 0ad9f80514d2c8979f388a6b54308d3da99e2028 -Author: Cameron Smart -Date: Mon Jul 18 11:43:09 2022 -0700 - - removed unneeded var - -commit dfe2c64fc33f8cc5b6a6abc81c7dce0e82b9e6c2 -Author: Cameron Smart -Date: Thu Jul 14 10:14:53 2022 -0700 - - propper env var names - -commit 9d658f95cfeae41e9a5510cd81e937bce432e3da -Author: Cameron Smart -Date: Wed Jul 13 09:54:13 2022 -0700 - - Append deploy variables to common.py - -commit 2f0b58afebccadac2f53f8d78c477c13632dba02 -Author: abottoms-coder -Date: Mon Jul 18 14:33:42 2022 -0400 - - updating ToC links - -commit e13346df63aecd44a9fe74da57c018dbc4cad3a5 -Author: abottoms-coder -Date: Mon Jul 18 14:27:13 2022 -0400 - - More updates for circleci - -commit 4e65bf2b56653fba653e2307679c6baa8f8fba50 -Author: abottoms-coder -Date: Mon Jul 18 13:43:20 2022 -0400 - - Added section on network connectivity - -commit 61cf7bc87bf164310e36a09e4047c647f41d3ddf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 13:21:23 2022 -0400 - - Update config.yml - - testing staging deployment for hhs:main. - -commit 380dffaa0805cfbecf52a8c47f36bf3ed450b862 -Merge: 402aee4ab df4d98131 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 13:01:19 2022 -0400 - - Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit df4d98131e6270b0bcaff71174472ab431d39398 -Merge: 5428ab1f5 3c26c9356 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 18 09:42:48 2022 -0400 - - Merge pull request #1907 from raft-tech/feat/1789-prod-gov-banner - - Feat/1789 prod gov banner - -commit 3c26c9356e8f9ef843dca8e744aa3f50a96bfacc -Merge: e1cb0dadb 5428ab1f5 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 18 09:35:53 2022 -0400 - - Merge branch 'develop' into feat/1789-prod-gov-banner - -commit 5428ab1f5189c5f797e2117e88b809d54b7d7d47 -Merge: d1fb30194 01222dcce -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 18 09:35:26 2022 -0400 - - Merge pull request #1900 from raft-tech/feat/1680-profile-stt-unapproved - - Feat/1680 profile stt unapproved - -commit 01222dcce139c66dce8bbe8965369081d32f26c2 -Merge: abad4e4d7 d1fb30194 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jul 18 09:24:17 2022 -0400 - - Merge branch 'develop' into feat/1680-profile-stt-unapproved - -commit f2f78d9519b255c679c741c07e79eaa14f14958c -Merge: 9bfa6b159 d1fb30194 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 09:07:20 2022 -0400 - - Merge branch 'develop' into feat/1906-use-asterisk-on-access-form - -commit ec3f58cb9f426477bae8259aa8b05abbff64d8aa -Merge: b5da5e7dc d1fb30194 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 18 09:06:29 2022 -0400 - - Merge branch 'develop' into feat/1788-resource-cards - -commit d1fb301949d0f34a0ad77e87b8b7e7a2b1af6671 -Merge: 7ba13f463 79a4b866e -Author: Miles Reiter -Date: Fri Jul 15 19:11:25 2022 -0400 - - Merge pull request #1940 from raft-tech/knowledge-center - - Adds finalized Knowledge Center Content - -commit 79a4b866ed28a2dfd658ba3798df9de5d1936b43 -Merge: 6bfcd05a0 7ba13f463 -Author: Miles Reiter -Date: Fri Jul 15 18:03:30 2022 -0400 - - Merge branch 'develop' into knowledge-center - -commit 9bfa6b159c8fd47334bdb7315cc2b904d33f80fa -Author: Cameron Smart -Date: Fri Jul 8 16:49:29 2022 -0700 - - added aria-req to combobox input - -commit 42ed2a5b581d3f35f51eaf7bd7151cd9d54d9a5e -Author: Cameron Smart -Date: Thu Jul 7 11:53:20 2022 -0700 - - fix frontend tests - -commit 3e35640ccf78769706e99bb2c334e6b54c800f8b -Author: Cameron Smart -Date: Thu Jul 7 11:39:05 2022 -0700 - - change required to * - -commit b5da5e7dc17ebf29d538372de909acb3f1cf39df -Author: Cameron Smart -Date: Mon Jul 11 16:00:46 2022 -0700 - - Aligned home button propperly - -commit faf98806474b2ee0650018fb6faf275c53c7ba51 -Author: Cameron Smart -Date: Mon Jul 11 14:37:40 2022 -0700 - - fix nav button alignment - -commit 52be8c176079ecbecdd141fc97c90e9664751520 -Author: Cameron Smart -Date: Mon Jul 11 14:33:31 2022 -0700 - - fix nav bar styling - -commit fc13af6452b83652ec7cdde82e6ce96ac3e708e2 -Author: Cameron Smart -Date: Mon Jul 11 12:46:51 2022 -0700 - - Fix header positioning - -commit bb1cbd96ed90e8dbb4bd505844182bdef8394b2b -Author: Cameron Smart -Date: Mon Jul 11 11:30:38 2022 -0700 - - Fix sign out button on home page width - -commit 22ae51950aba42e7e416adb5498666c18055a04a -Author: Cameron Smart -Date: Mon Jul 11 10:09:50 2022 -0700 - - change main container to use widescreen - -commit dd231134e6a654da0fbdf25c76b41f36ecdb6718 -Author: Cameron Smart -Date: Mon Jul 11 09:51:14 2022 -0700 - - remove unnneeded margins - -commit 14d613cfb1fadc9d5294c2ecd66336296bba2b5b -Author: Cameron Smart -Date: Fri Jul 8 17:10:08 2022 -0700 - - Fixed Fate typo - -commit f77a766051d257e96cc07be59d4824bf2e4dda67 -Author: Cameron Smart -Date: Fri Jul 8 16:43:08 2022 -0700 - - fixed eslint - -commit f3f37ee377fc9b4f78c397086f7fe1c84ff2028d -Author: Cameron Smart -Date: Fri Jul 8 16:36:27 2022 -0700 - - fixed tests - -commit 3312e93a4d8a976ca0e02f61cc71dfacadf6c9ec -Author: Cameron Smart -Date: Fri Jul 8 15:55:25 2022 -0700 - - remove broken tests - - they will return - -commit a370dbd14a60533f86c0a4dabc941b8cff46d17b -Author: Cameron Smart -Date: Fri Jul 8 14:13:48 2022 -0700 - - changed header/footer margins, final touches to styling - -commit 6285a16eaf0ba531a12efa4f4c0693c2b6c9d46c -Author: Cameron Smart -Date: Fri Jul 8 12:05:46 2022 -0700 - - refactored a tag into button component - -commit 7dc75c31203c333ecea5496ef4dc817595199c5b -Author: Cameron Smart -Date: Fri Jul 8 11:35:18 2022 -0700 - - fixed double focus when tabbing though buttons, started tests. - -commit da5f8f5322da8f3d32fb5bdff1d1775eeb2e5548 -Author: Aaron Beavers -Date: Wed Jul 6 15:01:48 2022 -0400 - - reverting mirage.js to develop - -commit 83c5f62887c133f735f115eeaa4c5e155f7a2cd4 -Author: Cameron Smart -Date: Tue Jul 5 15:53:32 2022 -0700 - - adjusting margin for mobile - -commit 9369494d3f87fb822b87c950c0e693719119d636 -Author: Cameron Smart -Date: Tue Jul 5 15:03:37 2022 -0700 - - Cards header in container for positioning - -commit 8c3e2be8c16333f4206e7e4558377358c8c9cb20 -Author: Cameron Smart -Date: Tue Jul 5 14:13:30 2022 -0700 - - no more horizontal overflow on mobile - -commit 3be5daa4c96d14b5c0bc92b28ddeda10b7aac8aa -Author: Cameron Smart -Date: Tue Jul 5 13:31:06 2022 -0700 - - opimized for mobile - -commit bc0b45b570abe8b5f95324a1617cd35e9d6ef1a5 -Author: Cameron Smart -Date: Tue Jul 5 10:32:01 2022 -0700 - - remove rolling strategy for clamav - -commit 8c03e1097860e71042b19953e4170c5ed66da047 -Author: Cameron Smart -Date: Fri Jul 1 15:28:07 2022 -0700 - - better layout - -commit 80da5f9b166c5d70d59ab5d7e36b7479b36d8874 -Author: Cameron Smart -Date: Fri Jul 1 14:53:42 2022 -0700 - - added background color - -commit a13bd95701f93083181f974475f8982f4ecb5edb -Author: Cameron Smart -Date: Fri Jul 1 14:28:14 2022 -0700 - - Added padding, formatted for widescreen - - removed more style classes from the .scss. I think I got the styles to match better without usa-card__heading, but I should talk to someone about this - -commit 2b9a4e6e886d117345f7246a1c55885f896bf0b2 -Author: Cameron Smart -Date: Fri Jul 1 13:09:17 2022 -0700 - - title and cards in same row - -commit 99f041f0d27a65a9bfdb2b9eeef48c39ca24c173 -Author: Cameron Smart -Date: Thu Jun 30 13:15:01 2022 -0700 - - card content all fits - -commit a0754a72a4d2c12c52bd12df58b7abf92150b1df -Author: Cameron Smart -Date: Thu Jun 30 12:06:18 2022 -0700 - - linked buttons and centered content - - there is still an issue with the height of the cards - -commit 67a9e60b0e9ca831a1757c264a936740420e9afc -Author: Aaron Beavers -Date: Wed Jun 29 11:49:13 2022 -0400 - - started work - -commit fc2164666c319417da75b05a0588e4b279e26387 -Author: Aaron Beavers -Date: Wed Jun 22 14:18:04 2022 -0400 - - update mirage - -commit 7ba13f463a2b2b1627314b72a2708da76c7468a2 -Merge: 2e897f25b cb6afbd26 -Author: Aaron Beavers -Date: Fri Jul 15 16:07:29 2022 -0400 - - Merge pull request #1961 from raft-tech/bug/fix-cf-install-for-circleci - - bug/fix-cf-install-for-circleci - -commit cb6afbd263f959be3708ab42a800fc406edf1029 -Author: Aaron Beavers -Date: Fri Jul 15 15:59:08 2022 -0400 - - Update .circleci/config.yml - -commit 0d2b09469b818613640a9c437cbb774947c9653e -Author: abottoms-coder -Date: Fri Jul 15 15:36:09 2022 -0400 - - initial commit, draft - -commit 8b66d53c12f9360d81a6ad796e0846a310d04f4c -Author: Cameron Smart -Date: Fri Jul 15 11:50:59 2022 -0700 - - install cf from source - -commit 06d2f0d13e638bec12a4bd80cdf73134d3e0b581 -Author: msohanifr -Date: Thu Jul 14 19:22:27 2022 -0400 - - added paramiko - -commit 06df91793b42f627092d03cac37d182da22dda3f -Author: msohanifr -Date: Thu Jul 14 11:11:11 2022 -0400 - - added the task for upload - -commit 6bfcd05a0965ebbb2eb7401a173964538e99b617 -Merge: cb473bb33 2e897f25b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jul 13 09:28:58 2022 -0400 - - Merge branch 'develop' into knowledge-center - -commit 2e897f25b3f63451de8528d9d62f450d74f559d8 -Merge: eb6a6ac80 d82bbcdf8 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jul 13 09:28:45 2022 -0400 - - Merge pull request #1912 from raft-tech/doc/1493-keyrotation - - Issue 1493: Update key rotation steps - -commit e1cb0dadb4308260a52a812b7c873e4325188d4c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jul 13 09:27:08 2022 -0400 - - Update scripts/deploy-frontend.sh - - testing prod context for qasp. this will be reverted. - - Co-authored-by: Aaron Beavers - -commit d82bbcdf8ead38426561d70eebc8967423e53120 -Merge: ed62c1cd6 eb6a6ac80 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jul 13 09:14:18 2022 -0400 - - Merge branch 'develop' into doc/1493-keyrotation - -commit 402aee4ab779a189185954880cb99f3e471b0e05 -Author: Aaron Beavers -Date: Tue Jul 12 15:36:20 2022 -0400 - - add diagram - -commit a92a98efc1d448bdf842ef5fadbbaaac3040fe71 -Merge: 9b865ce76 eb6a6ac80 -Author: Aaron Beavers -Date: Tue Jul 12 15:26:01 2022 -0400 - - Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit 9b865ce769fcdb31ca2c6a46b02c9b4acc13f5a0 -Author: Aaron Beavers -Date: Tue Jul 12 15:25:39 2022 -0400 - - Update .circleci/config.yml - -commit a5202b1a97cdb1ed31ee359ed44859bd6eacb6c2 -Author: Aaron Beavers -Date: Tue Jul 12 15:25:33 2022 -0400 - - Update .circleci/config.yml - -commit cb6298049e267cd2ef84f7f4f30351521a7aec5f -Author: Aaron Beavers -Date: Tue Jul 12 15:25:20 2022 -0400 - - Update .circleci/config.yml - -commit 5425fb43532155d086ebbf1748b07c86e5da9f12 -Author: Aaron Beavers -Date: Tue Jul 12 15:06:22 2022 -0400 - - Update .circleci/config.yml - -commit c5ac937d7b5899b793a03ce44f0a8c5545ca2e1e -Author: Aaron Beavers -Date: Tue Jul 12 15:06:06 2022 -0400 - - Update docs/Technical-Documentation/TDP-environments-README.md - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit bb1cd7880193502e263fcef28892d72debb3420a -Author: Aaron Beavers -Date: Tue Jul 12 15:05:56 2022 -0400 - - Update docs/Technical-Documentation/Architecture-Decision-Record/008-deployment-flow.md - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit cb473bb332c958485b3d3fa3b26367e3be8840f7 -Author: Miles Reiter -Date: Tue Jul 12 14:51:55 2022 -0400 - - Adds nav nesting fix - -commit 7ca218707d4ed5a50a93a21a656c4faf6b37a30c -Merge: ef1111ddb eb6a6ac80 -Author: Aaron Beavers -Date: Mon Jul 11 14:03:48 2022 -0400 - - Merge branch 'develop' into feat/1789-prod-gov-banner - -commit ef1111ddb3481a84709db2248ea035568b6c3b61 -Author: Aaron Beavers -Date: Mon Jul 11 13:59:25 2022 -0400 - - Updated test descriptions - -commit ac748bba8756bfe5ea63adb1ec5155872073cbf5 -Author: Aaron Beavers -Date: Mon Jul 11 13:56:18 2022 -0400 - - Updated test descriptions - -commit 463868dd4949ed1b1f6224b72de9102edc1fdd62 -Author: Miles Reiter -Date: Mon Jul 11 13:11:14 2022 -0400 - - Found one more a11y fix that didn't get into the main commit - -commit 81c8ea10dd66c2e5040023f06d996fcfaeb0d94d -Author: msohanifr -Date: Mon Jul 11 12:35:08 2022 -0400 - - added django_celery_beat - -commit c9c7b7bbea5292b548a12826999c1ce53cb7edfe -Author: msohanifr -Date: Mon Jul 11 09:40:00 2022 -0400 - - added a new app, and sub task - -commit 98adae78a38d1f570372ec9ec241fd487ae3fc13 -Author: Miles Reiter -Date: Mon Jul 11 00:48:18 2022 -0400 - - Adds finalized Knowledge Center Content - -commit eb6a6ac80230d971f9c1a11f889bb42a946aba1d -Merge: c890e290a e448de320 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 8 09:13:38 2022 -0400 - - Merge pull request #1933 from raft-tech/stevenino-patch-2 - - Create sprint-50-summary.md - -commit e448de3201a903ddd80cd1c33b962842f0da6945 -Merge: c211890cb c890e290a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 8 08:56:28 2022 -0400 - - Merge branch 'develop' into stevenino-patch-2 - -commit c890e290a63f0b19a49f512d2998b1650d609372 -Merge: 275d20b47 c849bb988 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 8 08:56:04 2022 -0400 - - Merge pull request #1911 from raft-tech/lilybl1-patch-1 - - Add files via upload - -commit c849bb988435fdd5c72f65a8e913148db7388df6 -Merge: 93af8cb1a 275d20b47 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jul 8 08:42:35 2022 -0400 - - Merge branch 'develop' into lilybl1-patch-1 - -commit c211890cbdef1e5ab6a9c401fafbaa150510077b -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Jul 6 16:53:57 2022 -0700 - - Create sprint-50-summary.md - -commit abad4e4d79bfeb136d18037b53375fe961dc9d4a -Merge: 127af5102 275d20b47 -Author: Aaron Beavers -Date: Wed Jul 6 09:29:19 2022 -0400 - - Merge branch 'develop' into feat/1680-profile-stt-unapproved - -commit 51c818cdbb9dd1369064e259ca2bd826781f7a23 -Author: msohanifr -Date: Wed Jul 6 02:12:53 2022 -0500 - - added __init__ - -commit 6cf5549de2382296098445b9d30f521a77b58985 -Author: msohanifr -Date: Wed Jul 6 02:10:16 2022 -0500 - - delete __init__ file - -commit 22a20e27bec5c641803f77675057b2247665b5cf -Author: msohanifr -Date: Wed Jul 6 02:08:40 2022 -0500 - - remove white space - -commit c595ffb1e732b08fff79156c2fd1f7b90b1011b5 -Author: msohanifr -Date: Wed Jul 6 01:54:15 2022 -0500 - - changes to use django-configurations - -commit c0068618f8d1123915f81756e4f5c1240b05d298 -Author: msohanifr -Date: Tue Jul 5 11:11:02 2022 -0500 - - corrections - -commit d880c6f0f686f1c523b7b9f047a87b4cad252a4d -Author: raftmsohani -Date: Fri Jul 1 15:05:20 2022 -0700 - - 1133: redis works with celery installed in scheduling app - -commit 6917bbb48f50bdacb77868f45d96ba466ce04275 -Author: raftmsohani -Date: Fri Jul 1 13:20:19 2022 -0700 - - 1133: redis works - -commit 72527386ea05d8bb3568ae1c6b88e4586028670e -Author: raftmsohani -Date: Fri Jul 1 06:56:46 2022 -0700 - - 1133: redis works, celery doesn't connect - -commit ed62c1cd6f478b838eaa53842341cde70d230869 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jul 1 09:23:07 2022 -0400 - - Update docs/Technical-Documentation/secret-key-rotation-steps.md - - fix link - -commit 275d20b473c942687cbbbaf3adca118a35052356 -Merge: 4bb9c188c 3d1cefbd3 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 29 16:25:35 2022 -0400 - - Merge pull request #1923 from raft-tech/andrew-jameson-patch-1 - - Update communication-tools.md - -commit 6adbf0e81bb80bd374d156a98112a079a8666490 -Author: Aaron Beavers -Date: Wed Jun 29 15:10:15 2022 -0400 - - lint - -commit 127af510289656aa110877e53d732771d42e5458 -Author: Aaron Beavers -Date: Wed Jun 29 15:08:11 2022 -0400 - - lint - -commit 8d5c4febbba5b04268c1e721119c55c98f5820ed -Author: Aaron Beavers -Date: Wed Jun 29 15:07:03 2022 -0400 - - lint - -commit 3d1cefbd377aed04ca5edd3ee2e61b31be2a8112 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 29 15:06:55 2022 -0400 - - Update communication-tools.md - -commit 97e44a7949fdc692514d0bd3ffbefcf563ec9657 -Author: Aaron Beavers -Date: Wed Jun 29 15:05:48 2022 -0400 - - lint - -commit fe556284a9208ff9188ed816181d52a8672d3cb5 -Author: Aaron Beavers -Date: Wed Jun 29 15:04:40 2022 -0400 - - lint - -commit 6d1545a611ea65d92f923022986a164b488e05b1 -Author: Aaron Beavers -Date: Wed Jun 29 15:00:08 2022 -0400 - - use it over test for consistancy with other tests - -commit 53657d251e3bf98ab502a7e58ce0d29cd2354fa5 -Author: Aaron Beavers -Date: Wed Jun 29 14:52:16 2022 -0400 - - remove code meant for future work - -commit cf50122ac289348c3c5f5cb003b29f76b9a6c328 -Author: Aaron Beavers -Date: Wed Jun 29 14:41:03 2022 -0400 - - lint - -commit c461f48200e2a753dee2285cadc6f5dab1104491 -Author: Aaron Beavers -Date: Wed Jun 29 14:25:41 2022 -0400 - - remove log - -commit a07a8dde77e2cdc095b89cfb6115d265477ec14b -Author: Aaron Beavers -Date: Wed Jun 29 14:24:12 2022 -0400 - - Federal staff no longer show blank region - -commit 420618d2da83afd9506016ada0e664d7cb1d8189 -Author: Aaron Beavers -Date: Wed Jun 29 13:39:47 2022 -0400 - - Revert "Revert "consoldate blocks"" - - This reverts commit abaa1f13aca4b8628d2d7fd5a748d63ba654cd24. - -commit abaa1f13aca4b8628d2d7fd5a748d63ba654cd24 -Author: Aaron Beavers -Date: Wed Jun 29 13:39:47 2022 -0400 - - Revert "consoldate blocks" - - This reverts commit 283bb96db5718ad04eaa43c5a2f7a5c7326a05c5. - -commit ea4ce5970fb69f5b74914244a5d37915afdeeef9 -Author: Pennington -Date: Wed Jun 29 13:54:28 2022 -0400 - - updating sc-4 re: prepper to analyst - -commit 5cde964cc80bebf175ed7345078201b30313d4b1 -Merge: 283bb96db 0bf88e6b0 -Author: Aaron Beavers -Date: Wed Jun 29 13:42:37 2022 -0400 - - merging - -commit 283bb96db5718ad04eaa43c5a2f7a5c7326a05c5 -Author: Aaron Beavers -Date: Wed Jun 29 13:39:47 2022 -0400 - - consoldate blocks - -commit 38d7f699112847d4eef8bbd1620f02146fcdabdb -Author: Pennington -Date: Wed Jun 29 13:19:56 2022 -0400 - - updating ac-2 re: permission groups and acf ams - -commit 0bf88e6b0d68adcff63cc80d3aed71a06597a189 -Author: Aaron Beavers -Date: Wed Jun 29 13:04:08 2022 -0400 - - remove debugging logs - -commit 166d5f0114059d634e042d8cf3dd78ad20423453 -Author: Aaron Beavers -Date: Wed Jun 29 12:25:46 2022 -0400 - - fix database connection issue - -commit 3e5514d14168040e26378542c2bcaf48f6b51e4b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 29 10:18:58 2022 -0400 - - Update index.md - - updating control statement with expanded list and description of TDP (prod) permission groups. - -commit 529380cf0a7e1387e3a06adfbc730124d40b7981 -Author: raftmsohani -Date: Tue Jun 28 09:41:02 2022 -0700 - - added ToDo comments where the logic has to be added - -commit b3bd2ba90720075d13a1a75c80f72aa00dda4d53 -Merge: 3b4b82f30 4bb9c188c -Author: Aaron Beavers -Date: Tue Jun 28 10:53:30 2022 -0400 - - Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit 3b4b82f308e10ce77906baf01129878236e400fb -Author: Aaron Beavers -Date: Tue Jun 28 10:53:24 2022 -0400 - - Update docs/Technical-Documentation/Architecture-Decision-Record/008-deployment-flow.md - -commit ae6102fe5da85ca6e1e601ce2c82bcff9c17679f -Author: Aaron Beavers -Date: Tue Jun 28 10:49:53 2022 -0400 - - lint - -commit 41176b9a8fb694e7c9314b6cfdff79a09b4d83c6 -Merge: 3db900648 0a04fb118 -Author: Aaron Beavers -Date: Tue Jun 28 10:31:01 2022 -0400 - - merge - -commit 3db9006487e4a85db8d2d9d0a9873b177d1f0afa -Author: Aaron Beavers -Date: Tue Jun 28 10:29:18 2022 -0400 - - updated tests - -commit 4bb9c188c412cd65b55fc30a34d6b68b212f26c4 -Merge: b00e6eca2 428c6c121 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 27 16:53:07 2022 -0400 - - Merge pull request #1830 from raft-tech/feat/1736-legacy-file-transfer - - Feat/1736 legacy file transfer - -commit 0a04fb11867c10998acae03511bd7566e0879768 -Merge: af5f47ce1 b00e6eca2 -Author: Aaron Beavers -Date: Mon Jun 27 16:34:40 2022 -0400 - - Merge branch 'develop' into feat/1680-profile-stt-unapproved - -commit af5f47ce1022e8994b7b796b8bc567048fa1c849 -Author: Aaron Beavers -Date: Mon Jun 27 16:28:10 2022 -0400 - - update region for non approved users - -commit 79341d6bc0685ebe9d5a87868971b369df88c0ab -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 27 15:42:08 2022 -0400 - - include circleci link - -commit aae45811d6a2641ec4721d188c503a12f16c17de -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 27 15:36:40 2022 -0400 - - updating key rotation steps - -commit f91df07c4ae361967135c109ca090bcf376b5082 -Author: Aaron Beavers -Date: Mon Jun 27 15:24:31 2022 -0400 - - typo - -commit bd85573fc9be6d5bfd99df14fe56fac26bddfe99 -Author: Aaron Beavers -Date: Mon Jun 27 15:10:41 2022 -0400 - - update strings for spaces - -commit 613b8ad4241011fa81482d050e925f2bf9da57a0 -Author: Aaron Beavers -Date: Mon Jun 27 14:37:59 2022 -0400 - - Update docs/Technical-Documentation/TDP-environments-README.md - -commit bf9fc57e754f41ca6bb99826ca2767e1aa7854f8 -Merge: 5127dd83b b00e6eca2 -Author: Aaron Beavers -Date: Mon Jun 27 14:37:39 2022 -0400 - - Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit 5127dd83ba1393db5d02101a35301650c626baee -Merge: b35565fad bffc06e69 -Author: Aaron Beavers -Date: Mon Jun 27 13:49:48 2022 -0400 - - merging - -commit b35565fadcbc98de71990ca383a0b59539db06fe -Author: Aaron Beavers -Date: Mon Jun 27 13:43:48 2022 -0400 - - update documentation - -commit 428c6c1214371ddc6e497119aa27a575e64fdf29 -Author: Aaron Beavers -Date: Mon Jun 27 13:22:24 2022 -0400 - - Update tdrs-backend/tdpservice/stts/migrations/0006_alter_stt_filenames.py - -commit 076496b2bbd6194ed83bcee8e1c7819917bf55fa -Author: Aaron Beavers -Date: Mon Jun 27 13:22:13 2022 -0400 - - Update tdrs-backend/tdpservice/stts/migrations/0006_alter_stt_filenames.py - -commit 400fab37b855868e2e26789691264021ca962e85 -Merge: 893d914b1 b00e6eca2 -Author: Aaron Beavers -Date: Mon Jun 27 13:19:57 2022 -0400 - - Merge branch 'develop' into feat/1736-legacy-file-transfer - -commit 93af8cb1a6cb36138013cc861adc89b4bd57e08d -Author: Diana Liang <104451160+lilybl1@users.noreply.github.com> -Date: Mon Jun 27 11:42:11 2022 -0500 - - Add files via upload - -commit b00e6eca26805c7c3668d70f9e3f6593a71f9248 -Merge: d1ce85f6b c70159a54 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 27 10:07:38 2022 -0400 - - Merge pull request #1897 from raft-tech/stevenino-patch-2 - - Create sprint-49-summary.md - -commit c70159a548368283020a448c2ce860b817ddfb61 -Merge: e26c72bea d1ce85f6b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 27 09:40:43 2022 -0400 - - Merge branch 'develop' into stevenino-patch-2 - -commit 8ea168fd3d7a0e3f9701731330345d3d8022b450 -Merge: 41279ecea d1ce85f6b -Author: Aaron Beavers -Date: Mon Jun 27 09:20:29 2022 -0400 - - Merge branch 'develop' into feat/1789-prod-gov-banner - -commit 41279ecea10d09564652207186fa4962aa0f873e -Author: Aaron Beavers -Date: Fri Jun 24 16:26:05 2022 -0400 - - lint - -commit e5cba92adc8164bf0e473d647986f24499ce6a7b -Author: Aaron Beavers -Date: Fri Jun 24 16:18:51 2022 -0400 - - lint - -commit 87342ac790c24226c5922dd612efefb4bb4ed76a -Author: Aaron Beavers -Date: Fri Jun 24 16:12:23 2022 -0400 - - update gov banner and test - -commit d1ce85f6b93669600694ae80007e3902cc6c08f7 -Merge: 8b5be5458 6b0350d44 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jun 24 15:49:10 2022 -0400 - - Merge pull request #1908 from raft-tech/hotfix/clamav-dont-delete - - clamav was getting network policies nuked every deletion - -commit 6b0350d447a1f4b36868a83df21d01b2f0db6188 -Author: abottoms-coder -Date: Fri Jun 24 15:16:13 2022 -0400 - - clamav was getting network policies nuked every deletion - -commit 737520ad179c5a95f94864cbdbf16cd1294ec0d0 -Author: Aaron Beavers -Date: Fri Jun 24 14:11:17 2022 -0400 - - Update banner and add env var to deployment scripts - -commit 893d914b1efed0629825e5f4ddfecbc31220756d -Author: Aaron Beavers -Date: Fri Jun 24 10:22:10 2022 -0400 - - lint - -commit e01ca462d9d46c5891e6bcf25420f9ccf377e352 -Author: Aaron Beavers -Date: Fri Jun 24 10:18:51 2022 -0400 - - Added an additional assertion to confirm test is valid, and loop executes - -commit 633af2695cf08013736ee3c7dfadb62efaa56d59 -Author: Aaron Beavers -Date: Fri Jun 24 10:01:50 2022 -0400 - - remove call to command - -commit cb80c905dd81a147aa05592385610e7ed72cb493 -Merge: e40c58a04 8b5be5458 -Author: Aaron Beavers -Date: Thu Jun 23 10:08:08 2022 -0400 - - Merge branch 'develop' into feat/1680-profile-stt-unapproved - -commit e40c58a04cb765cd28f6f1b8c437bfe32988d821 -Author: Aaron Beavers -Date: Thu Jun 23 10:02:25 2022 -0400 - - update test - -commit a26443e530cd08c093c6009273d6e4c8ef05b40a -Author: Aaron Beavers -Date: Wed Jun 22 15:51:06 2022 -0400 - - Update page to show infered region - -commit d408914a4d262e54420081dac67a7d39094ef661 -Author: Aaron Beavers -Date: Wed Jun 22 15:50:44 2022 -0400 - - add region to seriazlizer - -commit 21231c798cdc0120dbbb9588ffb7603dcdc352fe -Author: Aaron Beavers -Date: Wed Jun 22 15:21:28 2022 -0400 - - remove incomplete thought - -commit ae632b650b7a2d108fd7481c0702586130487ad7 -Author: Aaron Beavers -Date: Wed Jun 22 15:20:56 2022 -0400 - - lint and commentary - -commit 255fd8de634eadf10603fd31d2ccf7db9e28b810 -Author: Aaron Beavers -Date: Wed Jun 22 14:38:13 2022 -0400 - - Default to federal government as STT if no name is available. - -commit 63086edf023abf32e85dfe4d2eb2a937b009226e -Author: Aaron Beavers -Date: Wed Jun 22 14:20:28 2022 -0400 - - update page - -commit a707e11d0b5068c9d0cdad96f9f6a4f8ce3e61c9 -Merge: c396df5c0 6e5b53e1b -Author: Aaron Beavers -Date: Wed Jun 22 14:19:06 2022 -0400 - - Merge branch 'develop' into feat/1680-profile-stt-unapproved - -commit 6e5b53e1bde349b2b463a9e21b6676dd6edb113f -Author: Aaron Beavers -Date: Wed Jun 22 14:18:04 2022 -0400 - - update mirage - -commit bffc06e69994ef4ca30fc04017140f9bb020eed9 -Merge: 47a0406a3 8b5be5458 -Author: Aaron Beavers -Date: Wed Jun 22 12:09:20 2022 -0400 - - Merge branch 'develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit e26c72bea0a486e3c414090e3243502beef0ad18 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jun 21 17:04:52 2022 -0700 - - Update docs/Sprint-Review/sprint-49-summary.md - -commit 5a59722022c00f792cff98a5df191ed662721a03 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jun 21 17:03:54 2022 -0700 - - Update docs/Sprint-Review/sprint-49-summary.md - -commit 6d0d5c54e1c51305ee6b499a270bba8a5e098ba6 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jun 21 16:59:19 2022 -0700 - - Create sprint-49-summary.md - -commit 82e6ec1d10a408bf891320bb4daf0f7c3f9da398 -Author: Aaron Beavers -Date: Tue Jun 21 10:02:49 2022 -0400 - - Pass stt explicitly into data file factory to prevent duplicate key error in region model - -commit 8b5be5458180b4038583d496f47b0202d9a376fe -Merge: c1ee21510 6ace0d05e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jun 17 11:16:39 2022 -0400 - - Merge pull request #1877 from raft-tech/andrew-jameson-patch-1 - - Update pull_request_template.md - -commit 6ace0d05e681710b5af6e79d451098c35aac732d -Merge: e3da547c6 c1ee21510 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jun 17 10:26:34 2022 -0400 - - Merge branch 'develop' into andrew-jameson-patch-1 - -commit c1ee21510bfcf98deadf9862e06d3f67f18cc64b -Merge: c396df5c0 976029a8b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jun 17 10:26:19 2022 -0400 - - Merge pull request #1749 from raft-tech/feat/1631-periodic-database-backup - - 1631: Cloud database backup and restore - -commit e3da547c6cb677b663bf938ea4f58aca9aaa1438 -Merge: 1b40f758c c396df5c0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri Jun 17 10:22:50 2022 -0400 - - Merge branch 'develop' into andrew-jameson-patch-1 - -commit 47a0406a30a597ec3bafd97ea0ad512e93338097 -Author: Aaron Beavers -Date: Thu Jun 16 11:08:36 2022 -0400 - - change to test-main - -commit c5444a3a0842f5394ea26f899e368d21b7ad0c5d -Author: Aaron Beavers -Date: Wed Jun 15 15:08:01 2022 -0400 - - update terraform staging variables fmt - -commit 1991e70272ccc5d3471985a678d88c7c3fe85ee7 -Merge: 06b3be99b c396df5c0 -Author: Aaron Beavers -Date: Wed Jun 15 14:16:01 2022 -0400 - - Merge remote-tracking branch 'origin/develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit 06b3be99b4022f086c55cb0fef1fb60df2751f9a -Author: Aaron Beavers -Date: Wed Jun 15 14:12:29 2022 -0400 - - test - -commit 15fd7ede81c0482db9b4c23d9b48adbe8b119f86 -Author: Aaron Beavers -Date: Wed Jun 15 14:07:37 2022 -0400 - - update the filter for staging - -commit 56729d4dd7f742894a3772e6ff108d0d43c86a43 -Author: Aaron Beavers -Date: Wed Jun 15 14:07:18 2022 -0400 - - keep my undo files from getting into the project - -commit 0fb7de30afcda1f8988b36e1e39a60892f4ebee5 -Merge: e2478d512 c396df5c0 -Author: Aaron Beavers -Date: Wed Jun 15 13:35:55 2022 -0400 - - Merge remote-tracking branch 'origin/develop' into feat/1736-legacy-file-transfer - -commit e2478d5121ded75e3edda216eec7c790274e4e64 -Author: Aaron Beavers -Date: Wed Jun 15 13:35:39 2022 -0400 - - parse json - -commit 976029a8b7659dd47cfe7e7f805127d0dcca64e0 -Merge: 80376d0bd c396df5c0 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 15 12:47:18 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit c396df5c0a87fa4898bb4a7b93049777df21e68e -Merge: fe676b484 b52098fee -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 15 12:20:51 2022 -0400 - - Merge pull request #1867 from raft-tech/doc/1282-usermgmt - - Issue 1282: Update documentation on user management - -commit 80376d0bd85c0a8de9a83d29b1ec9db8547e2b27 -Merge: d142980f2 fe676b484 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 15 12:14:06 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit b52098fee09f69ce369798a687cd70044bdd9974 -Merge: 833d667d6 fe676b484 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 15 12:09:53 2022 -0400 - - Merge branch 'develop' into doc/1282-usermgmt - -commit fe676b4848919fc01aa523caf6c5f9a0a7842918 -Merge: 081b77bb4 ac11865d8 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 15 09:58:50 2022 -0400 - - Merge pull request #1771 from raft-tech/feat/1440-s3-prefix - - 1440/s3-prefix - -commit ac11865d855f4c9e8363845996782372471548ed -Merge: 1a4887ea2 081b77bb4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 15 09:53:16 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit 2a49718d10ccc4f2d428cb71c13adb924e4cac64 -Author: Aaron Beavers -Date: Wed Jun 15 09:39:47 2022 -0400 - - parse the json - -commit 081b77bb4b2164ac81aa9fada3ac65b9dd2fe741 -Merge: 2bd9a5222 8104648f4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 15 09:29:40 2022 -0400 - - Merge pull request #1774 from raft-tech/ops/1489 - - build(1489): Automate setting of default environment variables in Cloud.gov - -commit 772153529062bffb9b9f66cbac6c2791f60f4d20 -Author: Aaron Beavers -Date: Tue Jun 14 17:18:08 2022 -0400 - - migration for file names - -commit 1b40f758cc9974c2c0578746d724f74b8f44ff5e -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue Jun 14 14:51:42 2022 -0400 - - Update pull_request_template.md - - Unfortunately, keywords just link issue to PR, the linkage behavior cannot be changed. :( - -commit 4f9eed8d6a60dd15d9ee948fecc7d5564d83e93c -Author: Aaron Beavers -Date: Mon Jun 13 16:26:31 2022 -0400 - - lint - -commit 8104648f4661b80bfa7dbbf97801fc5523042e79 -Merge: 385492673 5520dd1df -Author: abottoms-coder -Date: Mon Jun 13 11:16:28 2022 -0400 - - Merge branch 'ops/1489' of github.com:raft-tech/TANF-app into ops/1489 - -commit 385492673ab1afef47449d6f1dacbd2d48d6c02b -Author: abottoms-coder -Date: Mon Jun 13 11:16:23 2022 -0400 - - Re-adding this, needed for rebuild context when done manually. Also removing set -e, we know the initial push for rebuild will fail, want script to run fully despite return codes - -commit 5520dd1df4e095801add8b05f9a1f8f4e19b8b0d -Merge: 2b42a1312 2bd9a5222 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 13 10:19:54 2022 -0400 - - Merge branch 'develop' into ops/1489 - -commit 601c001efb9b08caff6c708c75345488c79cd42f -Author: Aaron Beavers -Date: Fri Jun 10 13:14:56 2022 -0400 - - add new route to allowed hosts - -commit 15dfadcb4c1280ff28cd8ffbd402d6fcf12e322e -Author: Aaron Beavers -Date: Fri Jun 10 13:14:29 2022 -0400 - - start updates on circle config - -commit 833d667d614c43b17f19987e02139da7b7eb7c4a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jun 10 12:09:05 2022 -0400 - - Update docs/Technical-Documentation/user_role_management.md - - relative path cleanup - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 98a5cdb0690881e2c4b554d171d3f063ceededb5 -Merge: fedf0dd59 155edda5e -Author: Aaron Beavers -Date: Thu Jun 9 16:15:17 2022 -0400 - - Merge remote-tracking branch 'origin/feat/1440-s3-prefix' into feat/1746-new-routes-and-services-tanf-staging-space - -commit 0aec2e66fa04fb7398c3cb3968731a66321f8bd6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jun 9 15:38:52 2022 -0400 - - Update docs/Technical-Documentation/user_role_management.md - -commit e3bd4755f924dfc3bdcc99791b2a16444a37b3e5 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jun 9 15:31:01 2022 -0400 - - updated DAC documentation - -commit fedf0dd599a759c5176cffd9235a8f33ff0fe031 -Merge: c9309c504 55e2a35b8 -Author: Aaron Beavers -Date: Thu Jun 9 14:47:46 2022 -0400 - - Merge remote-tracking branch 'origin/ops/1489' into feat/1746-new-routes-and-services-tanf-staging-space - -commit 1a4887ea28049d890d39a03891abe62c835b7f86 -Author: Aaron Beavers -Date: Thu Jun 9 12:32:42 2022 -0400 - - Update tdrs-backend/tdpservice/data_files/models.py - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit ecd41a838d9b351812dffbc6646d044a0196bdd6 -Author: Aaron Beavers -Date: Thu Jun 9 11:58:44 2022 -0400 - - Update tdrs-backend/tdpservice/data_files/models.py - -commit c9309c504973095b202d4fb939b8bb30fbc44663 -Merge: 55d938abf 2bd9a5222 -Author: Aaron Beavers -Date: Thu Jun 9 11:13:46 2022 -0400 - - Merge remote-tracking branch 'origin/develop' into feat/1746-new-routes-and-services-tanf-staging-space - -commit bb3a6ed838e0143d4c09260d1ecc34e88df0e76c -Author: Aaron Beavers -Date: Thu Jun 9 10:57:41 2022 -0400 - - remove commented test - -commit 155edda5e9aebc3e10ff6ca4b0e99554762c851d -Merge: b94fcb109 2bd9a5222 -Author: Aaron Beavers -Date: Thu Jun 9 10:07:38 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit 7c8c753e73ca3524bff9108d5ed7a090d984b2f0 -Author: Aaron Beavers -Date: Thu Jun 9 09:53:01 2022 -0400 - - lint - -commit 2a743d90d11a68e9c9f8d05690f149862e4e990b -Author: Aaron Beavers -Date: Thu Jun 9 09:41:56 2022 -0400 - - lint - -commit d142980f2e9d253fa71dfbfab02459b4042805d7 -Merge: 5833467ef 0612f2bd5 -Author: Aaron Beavers -Date: Thu Jun 9 09:27:09 2022 -0400 - - Merge remote-tracking branch 'origin/feat/1631-periodic-database-backup' into feat/1631-periodic-database-backup - -commit 5833467ef83605169a9f1fb26594b204352a17d0 -Author: Aaron Beavers -Date: Thu Jun 9 09:26:05 2022 -0400 - - lint - -commit 0612f2bd53606da1ba9f934bb68476a5d861d8a8 -Merge: 2f10dbae5 2bd9a5222 -Author: Aaron Beavers -Date: Thu Jun 9 09:21:20 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit 55e2a35b8c9c6a82cfd7f0d2124928af68072942 -Merge: 2b42a1312 2bd9a5222 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jun 9 09:20:13 2022 -0400 - - Merge branch 'develop' into ops/1489 - -commit c403af4f39672204a268efab9927c4ec368d0986 -Merge: f3af8d666 2bd9a5222 -Author: Aaron Beavers -Date: Wed Jun 8 16:38:56 2022 -0400 - - Merge branch 'develop' into feat/1736-legacy-file-transfer - -commit f3af8d6661ebf82c87493d882223cb2dcd0ea360 -Author: Aaron Beavers -Date: Wed Jun 8 16:37:34 2022 -0400 - - choice migration - -commit 3c10d043ff48a743b358579ef3d7a4d359f848cb -Author: Aaron Beavers -Date: Wed Jun 8 16:35:47 2022 -0400 - - simplify test and remove left over imports - -commit e3d241ce0379a041ed7e012bc624a157c6fdeecf -Author: Aaron Beavers -Date: Wed Jun 8 16:34:07 2022 -0400 - - remove excessive test - -commit 6b08670a9d85ef0eec537246023df71af6793c4e -Author: Aaron Beavers -Date: Wed Jun 8 16:33:57 2022 -0400 - - add the rest of the possible section names to data file choice object - -commit 2b42a131270ac0a74feb87ccd92e747a0f439fa0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 8 16:10:52 2022 -0400 - - Update .github/workflows/deploy-on-label.yml - -commit cd89e0b1103a61cb55faba0d85ce8e06d573211a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 8 16:10:44 2022 -0400 - - Update scripts/deploy-backend.sh - -commit a3bee9591648a726153896713e2e4c7cd119c5ed -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 8 16:10:38 2022 -0400 - - Update scripts/deploy-backend.sh - -commit 2bd9a522292753042f57e4d0553a2fd1457a0fd7 -Merge: ef2be9cfb 30ee5afc9 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 8 15:05:34 2022 -0400 - - Merge pull request #1823 from raft-tech/dependabot/pip/tdrs-backend/develop/jwcrypto-1.3.1 - - Bump jwcrypto from 0.9.1 to 1.3.1 in /tdrs-backend - -commit 30ee5afc9381c4bedac7dc450dbfce5e31268fcd -Merge: 80ca40d95 ef2be9cfb -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 8 14:59:15 2022 -0400 - - Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/jwcrypto-1.3.1 - -commit ef2be9cfbf9f0fe0e855296d5fcc840f07171997 -Merge: 1bee3abe0 55a8106cf -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed Jun 8 14:59:02 2022 -0400 - - Merge pull request #1855 from raft-tech/stevenino-patch-2 - - Create sprint-48-summary.md - -commit fcef935eb3dbf409e81e689901c4514ea39f36b6 -Author: Aaron Beavers -Date: Wed Jun 8 14:41:22 2022 -0400 - - Added some explanatory comments - -commit 523d09e6995b3acd40e3c6b18eee034e218ce481 -Author: Aaron Beavers -Date: Wed Jun 8 14:36:05 2022 -0400 - - lint - -commit 732e39d42015b1019fb815d20414854e1e84eb7a -Author: Aaron Beavers -Date: Wed Jun 8 14:29:50 2022 -0400 - - DRYing out the tests - -commit ac0937ab572b2f31af7bfee276df4639356ce831 -Author: Aaron Beavers -Date: Wed Jun 8 14:04:44 2022 -0400 - - test passes - -commit b0dc82e9b18b2b2917e5434c84a22bcf5c1a71e3 -Author: Aaron Beavers -Date: Wed Jun 8 13:37:10 2022 -0400 - - WIP tests for data files - -commit d0b3b380a617904179cb3e23ea2593fbc2cf6bd5 -Author: Aaron Beavers -Date: Wed Jun 8 13:36:51 2022 -0400 - - parse json from csv file before comitting to model - -commit 4ef76aaffd076e40dd49135c1dd0a9b54716e7d2 -Author: Aaron Beavers -Date: Wed Jun 8 13:36:07 2022 -0400 - - Add getter for a data_files filename - -commit 610775c597ebf4a846f33920f437064c9fc8636a -Author: Aaron Beavers -Date: Wed Jun 8 13:35:35 2022 -0400 - - Add test confirming filenames field matches CSV - -commit 4316059977853b916dd3c34caa98ee40595db156 -Author: Aaron Beavers -Date: Wed Jun 8 13:35:12 2022 -0400 - - use json field - -commit 0d2120070fe10e3cd07a3487bc67640ef18e8b9b -Author: Aaron Beavers -Date: Wed Jun 8 10:10:17 2022 -0400 - - add legacy file transfer permissions - -commit 55a8106cfe80ac66ca9755f7cd51ff515813807c -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Jun 7 14:43:15 2022 -0700 - - Create sprint-48-summary.md - -commit b94fcb109b85883289e9be34b76cc683eabd153d -Author: Aaron Beavers -Date: Tue Jun 7 16:00:52 2022 -0400 - - remove unneeded code - -commit 1d063aeef3b0118dd2ff37a38c2fe4dd07e2bc97 -Author: Aaron Beavers -Date: Tue Jun 7 15:59:19 2022 -0400 - - document location setting choice - -commit 86016ead8412c6a31b9ceac67b0de73ea4494270 -Author: Aaron Beavers -Date: Tue Jun 7 15:47:10 2022 -0400 - - renamed sync for clarity - -commit 36ccfa9947240229b068c32f6d6f37969b488866 -Author: Aaron Beavers -Date: Tue Jun 7 15:46:58 2022 -0400 - - add backend sync to documentation - -commit fd9bdf1c6d5b8af56bb1873f98f711e664bd9ac6 -Author: Aaron Beavers -Date: Tue Jun 7 15:39:47 2022 -0400 - - update sync - -commit b32496971af334558d3c9d589fe547a33efc07f6 -Author: Aaron Beavers -Date: Tue Jun 7 15:06:51 2022 -0400 - - lint - -commit a984dfe0ed068b125f5fc1ac13bfb602688f420a -Merge: da6f44d0a 1bee3abe0 -Author: Aaron Beavers -Date: Tue Jun 7 13:31:59 2022 -0400 - - Merge branch 'develop' into feat/1736-legacy-file-transfer - -commit 2f10dbae5c04f47c62ecde41d19de2c21ec2d443 -Author: abottoms-coder -Date: Mon Jun 6 17:21:53 2022 -0400 - - Fixed stderr issue, added print statements - -commit da6f44d0ae535d34ee171fec2760cbdb058b3703 -Author: Aaron Beavers -Date: Mon Jun 6 16:26:47 2022 -0400 - - Update tdrs-backend/tdpservice/data_files/models.py - -commit 5820b79436b042473e3ae6ef10220756c03bf210 -Merge: caee092df cc629c255 -Author: Aaron Beavers -Date: Mon Jun 6 16:20:17 2022 -0400 - - Merge remote-tracking branch 'origin/feat/1736-legacy-file-transfer' into feat/1736-legacy-file-transfer - -commit caee092dfc99bca332409150c2b293ec8c371088 -Author: Aaron Beavers -Date: Mon Jun 6 16:18:38 2022 -0400 - - moved get_sha_sum function - -commit 8e5eacded62f2ad2973246c9af3ad3e01e0aaa44 -Merge: 972b3cd91 1bee3abe0 -Author: Aaron Beavers -Date: Mon Jun 6 15:19:49 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit 972b3cd910da9e3acd4f67919418337e54a70ced -Author: Aaron Beavers -Date: Mon Jun 6 15:14:53 2022 -0400 - - Update terraform/dev/main.tf - -commit 485beede6ef2bdf9f524a5ed093bab0015e11e51 -Author: Aaron Beavers -Date: Mon Jun 6 15:10:32 2022 -0400 - - Update tdrs-backend/tdpservice/settings/cloudgov.py - -commit a4621992efa05f0d4028fb6c09c52d761985039b -Author: Aaron Beavers -Date: Mon Jun 6 15:10:26 2022 -0400 - - Update tdrs-backend/tdpservice/settings/cloudgov.py - -commit 44a4021f5ce862d97bab74ab443a73df85263cb5 -Author: Aaron Beavers -Date: Mon Jun 6 15:10:20 2022 -0400 - - Update terraform/create_backend_vars.sh - -commit 78cc22919094d4879603018634fcbc663ddb32bf -Author: Aaron Beavers -Date: Mon Jun 6 15:09:56 2022 -0400 - - Update terraform/create_tf_vars.sh - -commit d3a444fe69451bcaba29a2bec5a0adb9696e5316 -Author: Aaron Beavers -Date: Mon Jun 6 15:09:34 2022 -0400 - - Update tdrs-backend/tdpservice/settings/cloudgov.py - -commit cc629c255e520704636ab3bf2b2b81a8b73bf9d4 -Author: Aaron Beavers -Date: Mon Jun 6 11:48:14 2022 -0400 - - lint - -commit d5267a1d7dde2546e749502dfb3e0cee42cb211a -Author: Aaron Beavers -Date: Mon Jun 6 11:48:05 2022 -0400 - - import file shasum from security module - -commit 80ca40d95c93c6146a403744ea4bc4c352cc3224 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jun 6 14:20:40 2022 +0000 - - Bump jwcrypto from 0.9.1 to 1.3.1 in /tdrs-backend - - Bumps [jwcrypto](https://github.com/latchset/jwcrypto) from 0.9.1 to 1.3.1. - - [Release notes](https://github.com/latchset/jwcrypto/releases) - - [Commits](https://github.com/latchset/jwcrypto/compare/v0.9.1...v1.3.1) - - --- - updated-dependencies: - - dependency-name: jwcrypto - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 1bee3abe050c726a36b8b74f81662d8cfd2b1cef -Merge: 443436f63 329b35f31 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 6 10:16:07 2022 -0400 - - Merge pull request #1821 from raft-tech/dependabot/pip/tdrs-backend/develop/markdown-3.3.7 - - Bump markdown from 3.3.4 to 3.3.7 in /tdrs-backend - -commit 329b35f3104b427881389cb82bea7984fb93ec65 -Merge: db6b0dac7 443436f63 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 6 10:00:56 2022 -0400 - - Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/markdown-3.3.7 - -commit 443436f63844aaf6ed85fcd7380e7f22883a23cf -Merge: 147e22112 2448fa323 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 6 10:00:44 2022 -0400 - - Merge pull request #1822 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 - - Bump @lagunovsky/redux-react-router from 2.2.0 to 3.2.0 in /tdrs-frontend - -commit 2448fa3236ac1e5b013fd3bd4886d0a3bf5707a4 -Merge: 2157defb6 147e22112 -Author: abottoms-coder -Date: Mon Jun 6 09:54:42 2022 -0400 - - Resolved merge conflicts - -commit db6b0dac7d3cb96279a51d4402d6733c43912602 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jun 6 13:41:48 2022 +0000 - - Bump markdown from 3.3.4 to 3.3.7 in /tdrs-backend - - Bumps [markdown](https://github.com/Python-Markdown/markdown) from 3.3.4 to 3.3.7. - - [Release notes](https://github.com/Python-Markdown/markdown/releases) - - [Commits](https://github.com/Python-Markdown/markdown/compare/3.3.4...3.3.7) - - --- - updated-dependencies: - - dependency-name: markdown - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 147e221123d95fd159fb94b8170688dfb37ab1d5 -Merge: f47c4c5c1 44a3daf36 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 6 09:37:36 2022 -0400 - - Merge pull request #1800 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 - - Bump miragejs from 0.1.43 to 0.1.44 in /tdrs-frontend - -commit 44a3daf36150a68f63c8b323df755ab68e631c53 -Merge: 23e03ab4e f47c4c5c1 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon Jun 6 09:21:46 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 - -commit ad6af81f38f9693867501fd6173dabb95d331562 -Author: Aaron Beavers -Date: Fri Jun 3 15:44:18 2022 -0400 - - lint - -commit c5f04c1f83323f34759d577f051497d6b18297e3 -Merge: caaec43bd f47c4c5c1 -Author: Aaron Beavers -Date: Fri Jun 3 14:55:22 2022 -0400 - - Merge remote-tracking branch 'origin/develop' into feat/1736-legacy-file-transfer - -commit 0d2cd6b47af071bfc666a497a2f2b2c97bea8008 -Author: Aaron Beavers -Date: Thu Jun 2 16:28:14 2022 -0400 - - lint - -commit 47c4116c9a3604d1cd2ba446a0dc0f96687ac7f8 -Author: Aaron Beavers -Date: Thu Jun 2 16:07:44 2022 -0400 - - add location to s3 backends - -commit 1b818f3fbfe200c7728ee88fa9b76955c8a354ae -Author: Aaron Beavers -Date: Thu Jun 2 15:38:49 2022 -0400 - - lint - -commit a8154ce80bab8cc214f16cd739cbf723b77f18ce -Author: Aaron Beavers -Date: Thu Jun 2 15:31:49 2022 -0400 - - print settings - -commit 10f0c30265845e4323d5de7b5ed8eb7ce0c386b6 -Author: abottoms-coder -Date: Wed Jun 1 13:40:58 2022 -0400 - - Did the 'fi' get deleted by accident or is my bash-fu just weak? - -commit 69a24377f282ebc2318ba3a137f787a5b79345a2 -Author: abottoms-coder -Date: Tue May 31 17:01:52 2022 -0400 - - I love testing via CI - -commit d53aaf560a6699219cf6d17e520446b5bcf8735b -Author: abottoms-coder -Date: Tue May 31 16:52:43 2022 -0400 - - testing removing escaped quotes - -commit 25c7142cc632004da26fec30ef355f22277cf46c -Author: Aaron Beavers -Date: Thu May 26 14:42:04 2022 -0400 - - Update tdrs-backend/tdpservice/settings/cloudgov.py - -commit b86567aee94594ca8ce16b86851f6c72078d208b -Author: raftmsohani -Date: Thu May 26 09:19:30 2022 -0700 - - 1631: linting - -commit e9e8ebc5705eeb7c4285a9fc9df806e46dbbdd71 -Author: raftmsohani -Date: Thu May 26 08:59:34 2022 -0700 - - 1631: applied a couple of fixes - -commit cec64a462fa0812b8d0699143a1a9cfdc239acce -Merge: 89db633c8 f47c4c5c1 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 26 11:31:26 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit f47c4c5c1e41620de1c79b4656bf5d6f742e83c2 -Merge: 61b6d8088 f31cb4729 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 26 10:09:59 2022 -0400 - - Merge pull request #1798 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/axios-0.27.2 - - Bump axios from 0.26.0 to 0.27.2 in /tdrs-frontend - -commit f31cb472925197bfbac61eb9e83d7b2487bb0a12 -Merge: 998ae14f2 61b6d8088 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 26 09:58:33 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/axios-0.27.2 - -commit 61b6d8088a34899a28068f8ec78e67e062aea07b -Merge: 963cfc088 a768ca501 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 26 09:58:26 2022 -0400 - - Merge pull request #1825 from raft-tech/dependabot/pip/tdrs-backend/develop/django-filter-21.1 - - Bump django-filter from 2.4.0 to 21.1 in /tdrs-backend - -commit a768ca50115255095d30ce48068b10f70a3d9fa1 -Merge: 6f1babc5d 963cfc088 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 26 09:52:00 2022 -0400 - - Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/django-filter-21.1 - -commit 963cfc088f81aaf2ed53a43c68adb8a176dd4c3d -Merge: 16565b64d a00faaf66 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 26 09:51:28 2022 -0400 - - Merge pull request #1829 from raft-tech/stevenino-patch-2 - - Create sprint-47-summary.md - -commit 64193c7ddeff38ed05861ed9441c96210fa72fd1 -Author: raftmsohani -Date: Thu May 26 06:46:46 2022 -0700 - - 1631: cleanups - -commit 89db633c87c8f35f1d4c1a16d6ce23f4e84f40ab -Merge: 651734837 826edcb4a -Author: Aaron Beavers -Date: Wed May 25 14:37:28 2022 -0400 - - merge - -commit 651734837c393253fd77b74bd0c664a6c67a6614 -Author: Aaron Beavers -Date: Wed May 25 14:36:04 2022 -0400 - - update the rest of the environments - -commit dcf7379dc7bbf5361a10f71c7e7dfc6453b1f39c -Author: raftmsohani -Date: Wed May 25 11:19:37 2022 -0700 - - 1631: linting - -commit 1889fdea08abbb508ade5102417a6faaa5612b37 -Author: Aaron Beavers -Date: Wed May 25 14:15:54 2022 -0400 - - removed fun - -commit ce7566b8fe46f282cbc3c3f206527d4371c335fd -Author: raftmsohani -Date: Wed May 25 11:13:45 2022 -0700 - - 1631: printing - -commit 82f72a7948f5f28287781a002576039fe6e09f83 -Author: raftmsohani -Date: Wed May 25 10:42:38 2022 -0700 - - 1631: corrected -U option - -commit 826edcb4ab39d2a9abe7ef1042cd8db772fbbb34 -Author: Aaron Beavers -Date: Wed May 25 12:33:54 2022 -0400 - - Update tdrs-backend/tdpservice/settings/cloudgov.py - -commit 8c31576dd858321660c0324b296764cc8c3109ba -Author: raftmsohani -Date: Wed May 25 08:04:12 2022 -0700 - - 1631: linting - -commit c3c2501ad1803ae51d68ba68683b3a23f1ea643e -Author: raftmsohani -Date: Wed May 25 07:24:44 2022 -0700 - - 1631: linting - -commit a1f208e6db7bc85bec44bfb58f52a08792d5cf08 -Author: raftmsohani -Date: Wed May 25 06:57:39 2022 -0700 - - 1631: update pgpass - -commit 3512081d9b7d725d046ee94c950de9cc47a98d7c -Merge: 246357a12 16565b64d -Author: Aaron Beavers -Date: Wed May 25 09:33:12 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit f754d801d9488043ec18fa5609e68c601f660a90 -Author: raftmsohani -Date: Wed May 25 05:53:40 2022 -0700 - - 1631: removed --create and --clean option from restore - -commit 66856cc5a7c2697754542e8397901e37dd4083b2 -Author: raftmsohani -Date: Wed May 25 05:28:06 2022 -0700 - - 1631: added env PGPASSFILE to be used by createdb - -commit 55a31b01143aefb111a2626d7c1d3786a7e25fb9 -Author: raftmsohani -Date: Wed May 25 04:46:33 2022 -0700 - - 1631: linting - -commit 9f2978b2f6045fd686672f88c07330b440634ba5 -Author: raftmsohani -Date: Wed May 25 04:40:55 2022 -0700 - - 1631: linting - -commit e4f238cd75645c773ef8c66a90e03e05b8dbede6 -Author: raftmsohani -Date: Wed May 25 04:34:39 2022 -0700 - - 1631: removed prints - -commit a00faaf6644a70e8555a41fc73a35c385a192bce -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue May 24 14:07:11 2022 -0700 - - Create sprint-47-summary.md - -commit 24957eeb480ce1f35bd526ed7cce86cd1883552a -Author: abottoms-coder -Date: Tue May 24 15:32:53 2022 -0400 - - whitespace - -commit a69cc4e7e135df62588fabe9bfda9f90bd150ff9 -Author: abottoms-coder -Date: Tue May 24 15:14:13 2022 -0400 - - whitespace changes to retrigger ci and therefore redeploy - -commit 58025d118272aa2f876f5ecde2e73cdc52649a26 -Author: raftmsohani -Date: Tue May 24 12:11:18 2022 -0700 - - 1631: corrected the command line options - -commit ed0dc28afcdc5bf56c31339b6dcdcc8acd26a7b8 -Author: abottoms-coder -Date: Tue May 24 14:30:42 2022 -0400 - - not sure how I missed that we were calling the old script still...anyway, also deleted the weird temp flag check as we now have set-e - -commit b6eb9ab85c7ba19cc66fecdeef10983cea2a579f -Merge: 26d440bee 0e4ae6429 -Author: abottoms-coder -Date: Tue May 24 14:12:59 2022 -0400 - - Merge branch 'ops/1489' of github.com:raft-tech/TANF-app into ops/1489 - -commit 26d440beec53d8e1200075f64e64ac20656436da -Author: abottoms-coder -Date: Tue May 24 14:12:53 2022 -0400 - - setting error-exit for failed commands/expressions - -commit 0e4ae64294a960fd05f7e32044f2b9ed95deecdc -Merge: e2a4edd2a 16565b64d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 24 14:09:38 2022 -0400 - - Merge branch 'develop' into ops/1489 - -commit e2a4edd2a4aa3a0c15ca1d06f2340841c2b72ca5 -Author: abottoms-coder -Date: Tue May 24 14:09:25 2022 -0400 - - These escapes seem unnecessary - -commit 6f1babc5d4e96c0f1252bdb63e54fcf9382cf0db -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue May 24 16:14:31 2022 +0000 - - Bump django-filter from 2.4.0 to 21.1 in /tdrs-backend - - Bumps [django-filter](https://github.com/carltongibson/django-filter) from 2.4.0 to 21.1. - - [Release notes](https://github.com/carltongibson/django-filter/releases) - - [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst) - - [Commits](https://github.com/carltongibson/django-filter/compare/2.4.0...21.1) - - --- - updated-dependencies: - - dependency-name: django-filter - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 998ae14f228afd63ddab896452f7d7dc01cebb97 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue May 24 16:11:40 2022 +0000 - - Bump axios from 0.26.0 to 0.27.2 in /tdrs-frontend - - Bumps [axios](https://github.com/axios/axios) from 0.26.0 to 0.27.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.26.0...v0.27.2) - - --- - updated-dependencies: - - dependency-name: axios - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 23e03ab4e3fc5a628075c158450756184eb724af -Merge: 3b8d95f70 16565b64d -Author: Aaron Beavers -Date: Tue May 24 12:11:20 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 - -commit 2157defb6ac1b44ffb2522258cd4ee53730366b3 -Merge: 39845c6b9 16565b64d -Author: Aaron Beavers -Date: Tue May 24 12:10:31 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 - -commit 16565b64d0162ff46bcfa7e19173b62ec41d3f89 -Merge: 607b1f09a 3d326cdc0 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue May 24 12:10:14 2022 -0400 - - Merge pull request #1824 from raft-tech/dependabot/pip/tdrs-backend/develop/psycopg2-binary-2.9.3 - - Bump psycopg2-binary from 2.9.1 to 2.9.3 in /tdrs-backend - -commit 39845c6b987946de8a087c2710990b67e42a5581 -Merge: c724cda46 607b1f09a -Author: Aaron Beavers -Date: Tue May 24 12:08:15 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 - -commit 246357a12114ea50b6826384256cb161365136dc -Merge: b8a1dfa7c 607b1f09a -Author: Aaron Beavers -Date: Tue May 24 09:40:54 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit 3d326cdc0f5090cf62089fbaae7eab228f74987a -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue May 24 13:29:27 2022 +0000 - - Bump psycopg2-binary from 2.9.1 to 2.9.3 in /tdrs-backend - - Bumps [psycopg2-binary](https://github.com/psycopg/psycopg2) from 2.9.1 to 2.9.3. - - [Release notes](https://github.com/psycopg/psycopg2/releases) - - [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS) - - [Commits](https://github.com/psycopg/psycopg2/commits) - - --- - updated-dependencies: - - dependency-name: psycopg2-binary - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 607b1f09a132b2d09a95b3994cea9b95587595b0 -Merge: e77e8df45 6bc562b7a -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 24 09:25:37 2022 -0400 - - Merge pull request #1820 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/eslint-8.16.0 - - Bump eslint from 8.15.0 to 8.16.0 in /tdrs-frontend - -commit 6bc562b7afad102c8eb050ce0a7ec70b30be5ef7 -Merge: 251ccbc08 e77e8df45 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 24 09:17:12 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/eslint-8.16.0 - -commit 7ee64dfe59a022a75f6f21ae2824af53ce2c8316 -Author: raftmsohani -Date: Tue May 24 05:24:52 2022 -0700 - - 1631: testing - -commit 07d589bc19b5d58657fe258976e0bd356562a506 -Author: raftmsohani -Date: Tue May 24 04:53:36 2022 -0700 - - 1631: removed try - -commit 1e0ea388f3596975ded823abda957c0d72c568b6 -Author: raftmsohani -Date: Tue May 24 04:15:44 2022 -0700 - - 1631: linting - -commit 758a42d99773103beafcbcc81ec4281b0708cdf6 -Author: raftmsohani -Date: Tue May 24 04:10:29 2022 -0700 - - 1631: added pg_pass file to restore function - -commit d340f6a51bb23524aaed97638e47423322b3dc69 -Author: raftmsohani -Date: Tue May 24 03:30:39 2022 -0700 - - 1631: added URI handling back - -commit 6098f78923557e5555ace132512d73b0fb25e79c -Merge: 9200fdb67 e77e8df45 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Tue May 24 05:37:00 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit b8a1dfa7c684ac07b53d4670842a30f42181962a -Author: Aaron Beavers -Date: Mon May 23 16:41:19 2022 -0400 - - varname - -commit 8bb9dd5a54d087c9d98bf8188de756021f34ff14 -Merge: 83b0bd73d 592b11e03 -Author: Aaron Beavers -Date: Mon May 23 16:18:20 2022 -0400 - - iMerge branch 'feat/1440-s3-prefix' of github.com:raft-tech/TANF-app into feat/1440-s3-prefix - -commit 83b0bd73d605387c377bddf1d254264afd23892c -Author: Aaron Beavers -Date: Mon May 23 16:09:29 2022 -0400 - - update circleci config - -commit 592b11e03176f3f92c0eba4b4f88e93c57033e24 -Merge: 8cb932db3 e77e8df45 -Author: Aaron Beavers -Date: Mon May 23 15:45:27 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit 8cb932db30b82ffccbe68b8ec11645daf3f64139 -Author: Aaron Beavers -Date: Mon May 23 15:38:37 2022 -0400 - - remove from main tf bucket and prefix - -commit e77e8df459e2bb1519744e2036cd9062f27fb56c -Merge: a8c2e04ed 87e67ce17 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 23 14:13:27 2022 -0400 - - Merge pull request #1812 from raft-tech/feat/1779-buildpack-version-pinning - - Buildpack version pinning - -commit 87e67ce1764c393b9ae3e80e9eefab406b67ffef -Merge: bd739f9ee a8c2e04ed -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 23 14:07:17 2022 -0400 - - Merge branch 'develop' into feat/1779-buildpack-version-pinning - -commit 3b8d95f70b9af9419d5698d6f3b7607338ea8504 -Merge: 735d4c4e6 a8c2e04ed -Author: Aaron Beavers -Date: Mon May 23 13:17:16 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/miragejs-0.1.44 - -commit c724cda4646e6adfc1e51db835f6e7130fb4965e -Merge: e0a511d2f a8c2e04ed -Author: Aaron Beavers -Date: Mon May 23 12:18:30 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/develop/lagunovsky/redux-react-router-3.2.0 - -commit 9200fdb67f23d371e6c30fd88bad0eccd3c66a16 -Author: raftmsohani -Date: Mon May 23 08:42:40 2022 -0700 - - 1631: remove tmp files - -commit 144b79edc8d0cc5c20595208e84d0760b822ab02 -Merge: 08e415e1d a8c2e04ed -Author: Aaron Beavers -Date: Mon May 23 11:38:26 2022 -0400 - - Merge branch 'develop' into ops/1489 - -commit c4223d605dacc0a8a26b985a96c1660fa526591b -Author: raftmsohani -Date: Mon May 23 07:18:14 2022 -0700 - - 1631: linting - -commit ed4bd77c2b4fe74417b115b9d2cd86681443c302 -Merge: 1942f6696 3d2850994 -Author: raftmsohani -Date: Mon May 23 07:07:20 2022 -0700 - - Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup - -commit 1942f6696d1700cb4fa7f90042007155887bb20e -Author: raftmsohani -Date: Mon May 23 07:06:37 2022 -0700 - - 1631: Added createdb for restoring to different database - -commit a8c2e04ed944bde37af1b9b416e7f9980be431be -Merge: c47ec76b2 9ad8dbc08 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 23 10:04:44 2022 -0400 - - Merge pull request #1782 from raft-tech/bug/1772-errors-when-submitting-files - - Bug/1772 errors when submitting files - -commit 9ad8dbc0804353395bbdafa918f2b99d9bd8573e -Merge: 556e3e22b c47ec76b2 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 23 09:58:47 2022 -0400 - - Merge branch 'develop' into bug/1772-errors-when-submitting-files - -commit e0a511d2f0c60798365ee19ba80011067bea33d7 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 23 06:39:28 2022 +0000 - - Bump @lagunovsky/redux-react-router in /tdrs-frontend - - Bumps [@lagunovsky/redux-react-router](https://github.com/lagunovsky/redux-react-router) from 2.2.0 to 3.2.0. - - [Release notes](https://github.com/lagunovsky/redux-react-router/releases) - - [Commits](https://github.com/lagunovsky/redux-react-router/compare/v2.2.0...v3.2.0) - - --- - updated-dependencies: - - dependency-name: "@lagunovsky/redux-react-router" - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 251ccbc08897d1661a32c3b3782f2de297b33b15 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 23 06:36:17 2022 +0000 - - Bump eslint from 8.15.0 to 8.16.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.15.0 to 8.16.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.15.0...v8.16.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit c47ec76b238210dcb8706c316beec10b78fad75e -Merge: 3eefd5ed5 7e4a4f004 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 13:53:21 2022 -0400 - - Merge pull request #1818 from raft-tech/andrew-jameson-patch-1 - - Updating rotation steps after working on JWT keys - -commit 7e4a4f004299c08d8633bf754f31f2591b306352 -Merge: 4ad062050 3eefd5ed5 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 13:28:16 2022 -0400 - - Merge branch 'develop' into andrew-jameson-patch-1 - -commit 4ad0620503f1905b7512c3686251a28d53f49808 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 13:27:19 2022 -0400 - - Update secret-key-rotation-steps.md - -commit 735d4c4e678dcd565c21a38eda4e032e833c5b53 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 20 15:59:57 2022 +0000 - - Bump miragejs from 0.1.43 to 0.1.44 in /tdrs-frontend - - Bumps [miragejs](https://github.com/miragejs/miragejs) from 0.1.43 to 0.1.44. - - [Release notes](https://github.com/miragejs/miragejs/releases) - - [Changelog](https://github.com/miragejs/miragejs/blob/master/CHANGELOG.md) - - [Commits](https://github.com/miragejs/miragejs/compare/v0.1.43...v0.1.44) - - --- - updated-dependencies: - - dependency-name: miragejs - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 3eefd5ed50a331051122b149833c76ce766809b3 -Merge: 8f6bc5633 2c3091aad -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 11:58:37 2022 -0400 - - Merge pull request #1817 from raft-tech/dependabot/pip/tdrs-backend/develop/gunicorn-20.1.0 - - Bump gunicorn from 20.0.4 to 20.1.0 in /tdrs-backend - -commit 08e415e1d085622f902703b2b065dc9cf8a7565a -Merge: b3179be5d 8f6bc5633 -Author: abottoms-coder -Date: Fri May 20 11:47:55 2022 -0400 - - Resolving merge conflict - -commit 2c3091aadcb61389fabed09779647cec26986d04 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 20 15:34:37 2022 +0000 - - Bump gunicorn from 20.0.4 to 20.1.0 in /tdrs-backend - - Bumps [gunicorn](https://github.com/benoitc/gunicorn) from 20.0.4 to 20.1.0. - - [Release notes](https://github.com/benoitc/gunicorn/releases) - - [Commits](https://github.com/benoitc/gunicorn/compare/20.0.4...20.1.0) - - --- - updated-dependencies: - - dependency-name: gunicorn - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 8f6bc5633b0019564783e072639c2a4fd368710c -Merge: fa2df46cb aa722ab15 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 11:31:09 2022 -0400 - - Merge pull request #1809 from raft-tech/dependabot/pip/tdrs-backend/develop/django-cors-headers-3.12.0 - - Bump django-cors-headers from 3.7.0 to 3.12.0 in /tdrs-backend - -commit c1c0037493ccf0adb5d06334e45460cef3555715 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 11:28:43 2022 -0400 - - Update secret-key-rotation-steps.md - -commit aa722ab1515a2420bab7b54ae0666be27750caa6 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 20 15:17:57 2022 +0000 - - Bump django-cors-headers from 3.7.0 to 3.12.0 in /tdrs-backend - - Bumps [django-cors-headers](https://github.com/adamchainz/django-cors-headers) from 3.7.0 to 3.12.0. - - [Release notes](https://github.com/adamchainz/django-cors-headers/releases) - - [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/HISTORY.rst) - - [Commits](https://github.com/adamchainz/django-cors-headers/compare/3.7.0...3.12.0) - - --- - updated-dependencies: - - dependency-name: django-cors-headers - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit fa2df46cbae9f66aeeff373da7678e2c717127be -Merge: ce9278427 06e61b5f0 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri May 20 11:11:21 2022 -0400 - - Merge pull request #1804 from raft-tech/dependabot/pip/tdrs-backend/develop/django-csp-3.7 - - Bump django-csp from 3.6 to 3.7 in /tdrs-backend - -commit 06e61b5f002aea7b69f56a89967f7da3e8a2fbc0 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 20 14:30:14 2022 +0000 - - Bump django-csp from 3.6 to 3.7 in /tdrs-backend - - Bumps [django-csp](https://github.com/mozilla/django-csp) from 3.6 to 3.7. - - [Release notes](https://github.com/mozilla/django-csp/releases) - - [Changelog](https://github.com/mozilla/django-csp/blob/main/CHANGES) - - [Commits](https://github.com/mozilla/django-csp/commits/3.7) - - --- - updated-dependencies: - - dependency-name: django-csp - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit ce927842701bdd435aa94b33f586e86b21b63db3 -Merge: 1f750884b 02e907b31 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 10:26:19 2022 -0400 - - Merge pull request #1815 from raft-tech/dependabot/pip/tdrs-backend/develop/pyjwt-2.4.0 - - Bump pyjwt from 2.1.0 to 2.4.0 in /tdrs-backend - -commit 6255b5801be773e16979e26229d50df87662fd1b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 10:19:58 2022 -0400 - - Updating rotation steps after working on JWT keys - -commit 02e907b31180e68b3fdf18622c35226b6a219597 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 20 13:19:17 2022 +0000 - - Bump pyjwt from 2.1.0 to 2.4.0 in /tdrs-backend - - Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.1.0 to 2.4.0. - - [Release notes](https://github.com/jpadilla/pyjwt/releases) - - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) - - [Commits](https://github.com/jpadilla/pyjwt/compare/2.1.0...2.4.0) - - --- - updated-dependencies: - - dependency-name: pyjwt - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 1f750884b8d05eebe6a5d2ea88b9b1301f1d37dc -Merge: 20cbdf48c 488d24fd6 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 09:12:45 2022 -0400 - - Merge pull request #1805 from raft-tech/dependabot/pip/tdrs-backend/develop/djangorestframework-3.13.1 - - Bump djangorestframework from 3.12.4 to 3.13.1 in /tdrs-backend - -commit 3d285099451019883a20a3addf8e3a27ae23a5db -Merge: 7a177bcbc 20cbdf48c -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri May 20 09:03:46 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit 488d24fd6216ee1beb7371b331d2ba3a8336664b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 20 13:03:06 2022 +0000 - - Bump djangorestframework from 3.12.4 to 3.13.1 in /tdrs-backend - - Bumps [djangorestframework](https://github.com/encode/django-rest-framework) from 3.12.4 to 3.13.1. - - [Release notes](https://github.com/encode/django-rest-framework/releases) - - [Commits](https://github.com/encode/django-rest-framework/compare/3.12.4...3.13.1) - - --- - updated-dependencies: - - dependency-name: djangorestframework - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 20cbdf48c7f898f6fc263635677b671f17b476eb -Merge: ae11dc937 009a23638 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 20 08:58:50 2022 -0400 - - Merge pull request #1801 from raft-tech/dependabot/pip/tdrs-backend/develop/requests-2.27.1 - - Bump requests from 2.26.0 to 2.27.1 in /tdrs-backend - -commit 009a236383defb6b66b98efbc5a81eb6067645f5 -Author: raftmsohani -Date: Fri May 20 05:20:27 2022 -0700 - - corrected module import - -commit 6ec6910da5c07408f1d09ce1111042eb2193d97c -Author: abottoms-coder -Date: Thu May 19 11:34:34 2022 -0400 - - Updating notation to match rest of file, this is a troubleshooting step - -commit 36354e8d53f0653383b23810d65b93e0a6a44044 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu May 19 14:18:16 2022 +0000 - - Bump requests from 2.26.0 to 2.27.1 in /tdrs-backend - - Bumps [requests](https://github.com/psf/requests) from 2.26.0 to 2.27.1. - - [Release notes](https://github.com/psf/requests/releases) - - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - - [Commits](https://github.com/psf/requests/compare/v2.26.0...v2.27.1) - - --- - updated-dependencies: - - dependency-name: requests - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit ae11dc937f25d5f33322d8f0e7d942c8d77460a9 -Merge: da6c7f3bd e60b23fd2 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 19 10:14:25 2022 -0400 - - Merge pull request #1803 from raft-tech/dependabot/pip/tdrs-backend/develop/django-storages-1.12.3 - - Bump django-storages from 1.11.1 to 1.12.3 in /tdrs-backend - -commit e60b23fd2d1340d6461a2b74de5094b04c68122e -Merge: 413688bf0 da6c7f3bd -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 19 09:52:03 2022 -0400 - - Merge branch 'develop' into dependabot/pip/tdrs-backend/develop/django-storages-1.12.3 - -commit bd739f9eea6c357c712e2b7ea87181f1e90ac5cc -Merge: 971497c5e da6c7f3bd -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 18 10:46:20 2022 -0400 - - Merge branch 'develop' into feat/1779-buildpack-version-pinning - -commit 971497c5eed13beb7a0a6f22bcee3dab0df70006 -Author: abottoms-coder -Date: Wed May 18 10:22:35 2022 -0400 - - reverting shortcut - -commit 3d757dcd0bfac998b62b7ecdd3455ad490cdf335 -Author: abottoms-coder -Date: Wed May 18 10:21:58 2022 -0400 - - Minor typo, also updating doc again - -commit 481ec9453ea5190b7f6ffcec532de12c921fb096 -Author: abottoms-coder -Date: Wed May 18 10:17:43 2022 -0400 - - Doc update for new process - -commit 59ae21edb309247c3e065a9b5f3fb72e725fc491 -Author: abottoms-coder -Date: Wed May 18 10:03:32 2022 -0400 - - Updating frontend manifest to pin nginx conf - -commit da6c7f3bd7e8fd717d70cfc3a451614d8ad3cc08 -Merge: d1876e552 d1cf1f155 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 18 09:56:01 2022 -0400 - - Merge pull request #1808 from raft-tech/docs/sitemap - - Docs/sitemap - -commit 06b739528791a480bb4b8eb515a7cd08aec45da2 -Merge: 44049bdcb 22b7e5403 -Author: abottoms-coder -Date: Wed May 18 09:55:50 2022 -0400 - - Merge branch 'feat/1779-buildpack-version-pinning' of github.com:raft-tech/TANF-app into feat/1779-buildpack-version-pinning - -commit 44049bdcb44371b4bd6239dd70a3ec96966b6ab6 -Author: abottoms-coder -Date: Wed May 18 09:55:40 2022 -0400 - - Trying this syntax one last time before emailing support - -commit 413688bf0c589835fa9da8088defdfec365c3a14 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed May 18 13:51:17 2022 +0000 - - Bump django-storages from 1.11.1 to 1.12.3 in /tdrs-backend - - Bumps [django-storages](https://github.com/jschneier/django-storages) from 1.11.1 to 1.12.3. - - [Release notes](https://github.com/jschneier/django-storages/releases) - - [Changelog](https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst) - - [Commits](https://github.com/jschneier/django-storages/compare/1.11.1...1.12.3) - - --- - updated-dependencies: - - dependency-name: django-storages - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit d1cf1f15503cb30715946e41a5d4922b3ce6f927 -Merge: 0e3d911ef d1876e552 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 18 09:49:09 2022 -0400 - - Merge branch 'develop' into docs/sitemap - -commit d1876e5521bb639c0ad2451cc71c3b37b2d3fa69 -Merge: 9931caeb4 c006c4c8d -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 18 09:47:21 2022 -0400 - - Merge pull request #1810 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/eslint-8.15.0 - - Bump eslint from 8.13.0 to 8.15.0 in /tdrs-frontend - -commit 22b7e5403b73a2860bfb6d7375965a69f15165e2 -Merge: f9d85e064 9931caeb4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 18 09:46:33 2022 -0400 - - Merge branch 'develop' into feat/1779-buildpack-version-pinning - -commit f9d85e0643c1ddbdf31bb8b20bd556a236d343c8 -Author: abottoms-coder -Date: Wed May 18 09:31:27 2022 -0400 - - Interpretting docs differently for versions - -commit 80bf01ba587befc3fb3c0f9d2fd5e87bf7105c86 -Author: abottoms-coder -Date: Wed May 18 09:27:33 2022 -0400 - - Shortcut for deployments - -commit c006c4c8df5c60997e6d58fe6f217c76a0176d97 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed May 18 13:22:36 2022 +0000 - - Bump eslint from 8.13.0 to 8.15.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.13.0 to 8.15.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.13.0...v8.15.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 9931caeb4e259d38a12d0b712ff1a75887b0b4c8 -Merge: 480e30e80 27d9796c4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 18 09:20:54 2022 -0400 - - Merge pull request #1799 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/develop/concurrently-7.2.0 - - Bump concurrently from 7.1.0 to 7.2.0 in /tdrs-frontend - -commit 3365fabdcd2fd42c13aa4ce3c209625417dab8a9 -Author: abottoms-coder -Date: Wed May 18 09:19:45 2022 -0400 - - Testing out different syntax for buildpack versioning - -commit 0e3d911ef3dbeabf99f45c3353316731504f902c -Author: Diana Liang -Date: Tue May 17 14:08:27 2022 -0500 - - Site Map PDFs - - Adding the site map PDFs to the Dev Ready Design folder in GitHub - -commit b3179be5dc7310e87fa630efe8b742f76b18f40b -Author: abottoms-coder -Date: Tue May 17 13:02:58 2022 -0400 - - Tweak for git secrets, thought this was pushed - -commit 27d9796c4205fd6519c47628a020d89e62ac1382 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue May 17 15:26:06 2022 +0000 - - Bump concurrently from 7.1.0 to 7.2.0 in /tdrs-frontend - - Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 7.1.0 to 7.2.0. - - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - - [Commits](https://github.com/open-cli-tools/concurrently/compare/v7.1.0...v7.2.0) - - --- - updated-dependencies: - - dependency-name: concurrently - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 480e30e8004360cbc6b67b9600436aa1d1ed5164 -Merge: 209f3d35c 60b597fb4 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 17 11:24:17 2022 -0400 - - Merge pull request #1806 from raft-tech/dependabot/pip/tdrs-backend/develop/awscli-1.24.1 - - Bump awscli from 1.23.13 to 1.24.1 in /tdrs-backend - -commit 60b597fb42db9a10d35634879ad56619d148daf2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue May 17 14:25:39 2022 +0000 - - Bump awscli from 1.23.13 to 1.24.1 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.23.13 to 1.24.1. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.23.13...1.24.1) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 209f3d35c2cfd9f96a884beab8c5a9813e363275 -Merge: 55d938abf 1428227dc -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 17 10:10:02 2022 -0400 - - Merge pull request #1796 from raft-tech/andrew-jameson-patch-1 - - Update dependabot.yml - -commit 1428227dc83d55f167ae67bdba5f03b499853d3c -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 17 09:01:18 2022 -0400 - - Update dependabot.yml - -commit 7a177bcbcaee70ef0762733a9ea4ed255215a6d9 -Author: raftmsohani -Date: Mon May 16 16:20:28 2022 -0700 - - 1631: Corrected the args - -commit f8c3db19975feba53d3825916fdce2116df10383 -Author: raftmsohani -Date: Mon May 16 16:17:07 2022 -0700 - - 1631: Corrected the args - -commit 5e7acd5649cf62d3b27673569825141af05b33d6 -Author: raftmsohani -Date: Mon May 16 15:46:43 2022 -0700 - - 1631: URI - -commit 1bb751e30bb438d5591af267c2331b55993c5973 -Author: Aaron Beavers -Date: Mon May 16 16:44:14 2022 -0400 - - Move the variables around - -commit 5c8c87a793d2aacc819d11a3391854e72b8a4e02 -Author: Aaron Beavers -Date: Mon May 16 16:29:31 2022 -0400 - - use aws_backend as variable name - -commit 7057d45e242a7bc4cf03503734933bcf02be691c -Author: Diana Liang -Date: Mon May 16 13:45:11 2022 -0500 - - Create SiteMap Sample.pdf - -commit de777122acad92f6f6d7c72f9441a945dd755a32 -Author: Aaron Beavers -Date: Mon May 16 11:43:41 2022 -0400 - - Update tdrs-backend/tdpservice/settings/common.py - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 6d3f0468673a9b7a8edf3d1ef8b985ffc0ea9c28 -Author: raftmsohani -Date: Sun May 15 07:43:40 2022 -0700 - - 1631: linting - -commit 26abdf686c759b895db2d67abedf0d32d6a7aa6f -Author: raftmsohani -Date: Sun May 15 07:04:44 2022 -0700 - - 1631: Refactored restore - -commit d509b1e8b97d9b6511ab18e1072fba6e38e31d7c -Author: raftmsohani -Date: Sat May 14 13:33:19 2022 -0700 - - 1631: debug - -commit 74805165a850ac2f90e31713462fe1501a3eda21 -Author: raftmsohani -Date: Sat May 14 12:03:40 2022 -0700 - - 1631: Linting - -commit 06e609452c8b2b77ae0a1c140efa2b5c16afd5ca -Merge: 7000c994b 4d075ed8f -Author: raftmsohani -Date: Sat May 14 11:56:17 2022 -0700 - - Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup - -commit 7000c994b21604a4a93a0e8eeec2d46a9f230300 -Author: raftmsohani -Date: Sat May 14 11:55:37 2022 -0700 - - 1631: Reverted the URI back for backup and restore functions - -commit 3f3bf3b742705cda87381dc4626fa8f8fd99443a -Author: abottoms-coder -Date: Fri May 13 17:23:12 2022 -0400 - - Some minor refactoring of this script, rather unhappy. Will look into alternative tools/languages - -commit 328fc9b9f28526b655e5ced673b8cb10d9941aa2 -Author: abottoms-coder -Date: Fri May 13 16:50:03 2022 -0400 - - Minor tweak for backend looping and being exact with git-secrets - -commit 8a127e131cc4d338f4816730120b52329326bec5 -Author: Aaron Beavers -Date: Fri May 13 15:38:55 2022 -0400 - - fix format - -commit 038d69dfc5c37e0aaede1a63ac80df6cf6bb59a9 -Author: Aaron Beavers -Date: Fri May 13 15:10:21 2022 -0400 - - lint - -commit 406763ac41b75d789922c88da8a5bfd7d5a7cc3e -Author: Aaron Beavers -Date: Fri May 13 15:01:02 2022 -0400 - - resolve merge conflict - -commit 374049f71b6765ae0219cb59df3e8cbac06f8fca -Merge: aaf96aeb7 55d938abf -Author: Aaron Beavers -Date: Fri May 13 14:59:07 2022 -0400 - - Merge remote-tracking branch 'origin/develop' into feat/1440-s3-prefix - -commit aaf96aeb7220352a25a224a12df2ae465a67a522 -Author: Aaron Beavers -Date: Fri May 13 14:57:09 2022 -0400 - - change parameter type - -commit fef0a3c0f926970b1a6cf8a563b3eb1ff38a30a6 -Author: Aaron Beavers -Date: Fri May 13 14:55:53 2022 -0400 - - thread the needle - -commit f64e170f56a9c7a6b082c79f63b92ddf69d3810c -Author: Aaron Beavers -Date: Fri May 13 14:31:43 2022 -0400 - - update circleci config - -commit 3be369852fc7545c97442438a27e211f033994bd -Author: Aaron Beavers -Date: Fri May 13 14:26:21 2022 -0400 - - update terraform - -commit 55d938abf3cd31d06395737278451c4ea562f37a -Merge: 3e79e79ab e69113563 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 13 10:05:00 2022 -0400 - - Merge pull request #1783 from raft-tech/ADPennington-patch-1 - - Update ADR 009 with production deployment flow - -commit e69113563ceed69d610ca3599e57c4dc90c8214d -Merge: f3c297d15 3e79e79ab -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Fri May 13 09:24:29 2022 -0400 - - Merge branch 'develop' into ADPennington-patch-1 - -commit 4d075ed8f378bd731d6a83b4bde0986e907ffeb1 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri May 13 06:58:39 2022 -0400 - - Revert back the changes - -commit f68a509b8f940d9c75118b4eecd2ac39f70b93fd -Merge: 597e4bec7 32ce8e111 -Author: raftmsohani -Date: Fri May 13 03:54:09 2022 -0700 - - Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup - -commit 597e4bec7e5a486d393ac0eba323afffe5b37195 -Author: raftmsohani -Date: Fri May 13 03:53:28 2022 -0700 - - 1631: Corrected the backup method as well as README.md file - -commit 556e3e22b0734e0dfd77f50faf58d42f4acc6083 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 12 16:33:29 2022 -0400 - - Update .github/workflows/deploy-on-label.yml - -commit cf55dc9329abd6d2e62814b607a12dc7aaa0b97d -Merge: 1a8ed4cc1 68f601572 -Author: abottoms-coder -Date: Thu May 12 16:32:41 2022 -0400 - - Merge branch 'bug/1772-errors-when-submitting-files' of github.com:raft-tech/TANF-app into bug/1772-errors-when-submitting-files - -commit 1a8ed4cc1ff196dabefc584c22c006c4e1b772c9 -Author: abottoms-coder -Date: Thu May 12 16:32:27 2022 -0400 - - Just needed the right port, cleaning up for PR - -commit 68f6015725bdc827fe68348ee70bb39dbd6159c1 -Merge: 8b02845e9 3e79e79ab -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 12 16:28:11 2022 -0400 - - Merge branch 'develop' into bug/1772-errors-when-submitting-files - -commit 3e79e79ab6b7bdce7f68382a5d9c4215a7bf092b -Merge: fd479f30b ca6f91c02 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 12 15:51:18 2022 -0400 - - Merge pull request #1751 from raft-tech/fix/1415 - - chore(1415): bump django-admin-508 to 0.2.0 - -commit ca6f91c02d62da4f2366e5ebbb2b53295c3ea3fb -Author: abottoms-coder -Date: Thu May 12 15:31:34 2022 -0400 - - updating lock - -commit 0b82f4e7bfd67e81c3c0a2fa60b77012fae0cbad -Merge: b5836b68c fd479f30b -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 12 15:11:40 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit fd479f30b8d7b13b771107d1f494badda24b80a4 -Merge: 40d9c9894 a196d4830 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Thu May 12 15:11:17 2022 -0400 - - Merge pull request #1767 from raft-tech/feat/1707-improve-backend-logging - - As a developer, I want to improve our backend logging formatter - -commit b5836b68c0e8e99f87e9f739dce5ccdca6426ac0 -Merge: 43bee110e 40d9c9894 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu May 12 14:26:38 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit a196d483092d15fb25bb30df0174152a3f13eb3d -Merge: 8b231848d 40d9c9894 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu May 12 14:20:44 2022 -0400 - - Merge branch 'develop' into feat/1707-improve-backend-logging - -commit f3c297d15c4977d106e7a26c18dcd9987fa00820 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu May 12 13:23:23 2022 -0400 - - Update ADR 009 with production deployment flow. - - Adding additional step for government to trigger deployment to the production environment. - -commit 8b02845e9d23c3b3bdf525fb06b74e09303d8b05 -Author: abottoms-coder -Date: Thu May 12 10:33:19 2022 -0400 - - dash v underscore - -commit 8cee84a1bcf109a8233e9a059ddc2145b283db87 -Author: abottoms-coder -Date: Thu May 12 10:23:27 2022 -0400 - - left .git - -commit c1aab3f89f26a192e87ac5b418853f291db5a5a4 -Author: abottoms-coder -Date: Thu May 12 10:15:14 2022 -0400 - - reverting buildpack versions, syntax issue - -commit 6e0a9c61c9a3d58d93b20138d3785badae9987c1 -Author: abottoms-coder -Date: Thu May 12 10:00:01 2022 -0400 - - catching up logging because I can't troubleshoot rn - -commit 74d27fd821cf8707153cc5a47906ba501c1d6ecb -Author: abottoms-coder -Date: Wed May 11 18:37:05 2022 -0400 - - Potential solutions for cloud.gov breaking our environments. - -commit dbbfd297d5aec9e4b39d9552a7dea7c5029d88e2 -Author: abottoms-coder -Date: Wed May 11 17:03:10 2022 -0400 - - short term hack to speed up redeploys - -commit afd4b539ef9e79947bcc8be2699fd8c3aede7164 -Author: abottoms-coder -Date: Wed May 11 17:02:04 2022 -0400 - - Changing AV URLs since these env vars seem empty on deployed sites - -commit 32ce8e1119b82346c7509aced1f9ef52ec64ec75 -Merge: b7b9434a9 40d9c9894 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 11 14:31:44 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit 40d9c989490fcdae0aa90a02558a630e6d3482a0 -Merge: 0d08bce19 6ddeb8694 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 11 14:26:21 2022 -0400 - - Merge pull request #1780 from raft-tech/hotfix/python3.10.4-upgrade-for-cloud-gov - - hotfix for Python version and buildpack changelog - -commit 6ddeb86940284012ebba743b602981f4182cbe7c -Author: abottoms-coder -Date: Wed May 11 12:34:04 2022 -0400 - - hotfix, runs locally for me, need CI to confirm I didn't break everything - -commit 0d08bce19370eaa43dad489bb62836920e933605 -Merge: 2f2b5fe07 c7a273888 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 11 10:29:24 2022 -0400 - - Merge pull request #1777 from raft-tech/stevenino-patch-2 - - Create sprint-46-summary.md - -commit c7a273888ef295549a0ec55b2799bcc1658fd5df -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue May 10 15:11:23 2022 -0700 - - Create sprint-46-summary.md - -commit 5c63eb08a3dc7ddd9820bf0564deb32b6d75318a -Merge: e24e79b84 2f2b5fe07 -Author: Jorge Gonzalez -Date: Tue May 10 15:32:32 2022 -0400 - - Merge branch 'develop' into ops/1489 - -commit 43bee110e6c5ad16c978ec24d4b8412e5bf83b22 -Merge: 0cceb1811 e307ed963 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 10 13:47:33 2022 -0400 - - Merge pull request #1776 from raft-tech/deps/ipython-fix-for-1415 - - Deps/ipython fix for 1415 - -commit e307ed96386958714b3fb4684de8c471ea0c2555 -Merge: 03133812c 0cceb1811 -Author: abottoms-coder -Date: Tue May 10 12:28:15 2022 -0400 - - merge conflicts via lock - -commit 03133812ca11fd21425635b6f3b82beaf54ad590 -Author: abottoms-coder -Date: Tue May 10 12:24:26 2022 -0400 - - deleted lockfile and regenerated - -commit 0cceb181166cd4c6f54e0bce369c345a0468c0a2 -Merge: b76abf62e 2f2b5fe07 -Author: Jorge Gonzalez -Date: Tue May 10 10:13:26 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit 474a4473ccb0ffd69929dca4cf7c5869013f5e32 -Author: Aaron Beavers -Date: Tue May 10 10:02:07 2022 -0400 - - Add todo comment - -commit 8b231848ddfb8f12131b9daf367f423e48ee8b7b -Merge: 69c94e531 2f2b5fe07 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 10 09:47:49 2022 -0400 - - Merge branch 'develop' into feat/1707-improve-backend-logging - -commit eb31dd3d57c0af994e774c789d06822ce44e339c -Author: Aaron Beavers -Date: Tue May 10 09:35:36 2022 -0400 - - Update tdrs-backend/tdpservice/settings/cloudgov.py - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 2f2b5fe078d6ce604d30add33356427bf86fe72c -Merge: 4ed33f9ab 5e7cb16a0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Tue May 10 08:57:25 2022 -0400 - - Merge pull request #1773 from raft-tech/deps/cve-21699-ipython - - Removing ipython - -commit c9bd8840247363b69d815a4b85809492eb5b1f3f -Merge: 7502a5a88 4ed33f9ab -Author: Aaron Beavers -Date: Mon May 9 16:40:19 2022 -0400 - - Merge branch 'develop' into feat/1440-s3-prefix - -commit 7502a5a886f98bf49ac13332bea4649974b8a7bf -Merge: d86eefca5 5eaccc9e0 -Author: Aaron Beavers -Date: Mon May 9 16:26:25 2022 -0400 - - Merge branch 'feat/1707-improve-backend-logging' into feat/1440-s3-prefix - -commit 5e7cb16a008a542cb027a51528ed26370fc210a3 -Merge: d9363b4f7 4ed33f9ab -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 9 16:03:52 2022 -0400 - - Merge branch 'develop' into deps/cve-21699-ipython - -commit 69c94e5316d57cf7d978e57f01f23cca1e1aa42e -Merge: 4e4646d56 4ed33f9ab -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 9 15:50:12 2022 -0400 - - Merge branch 'develop' into feat/1707-improve-backend-logging - -commit 4e4646d562c7cf3babd3d86f9591bc2cdfc624fc -Author: abottoms-coder -Date: Mon May 9 15:49:28 2022 -0400 - - accounting for local development as well per Aaron's feedback on PR - -commit e24e79b84e917803a02d83a56aa7b08751c0a0b5 -Author: Jorge Gonzalez -Date: Mon May 9 14:42:57 2022 -0400 - - ignore deploy script for secrets check - -commit 611b323e675a32441476498bd6f9d98ebf879824 -Merge: 9b808ef57 4ed33f9ab -Author: Jorge Gonzalez -Date: Mon May 9 11:58:33 2022 -0400 - - Merge branch 'develop' into ops/1489 - -commit 5eaccc9e039c1e4f73980cafaab410909a92d3cf -Author: abottoms-coder -Date: Mon May 9 11:57:18 2022 -0400 - - Resolving local issue w/ Aaron - -commit caaec43bd31cce7d8a828f77300a246cfb7ec890 -Author: abottoms-coder -Date: Mon May 9 11:28:30 2022 -0400 - - updating tests - -commit b7b9434a9f1e83cc925362ba414d55d692c7546d -Author: raftmsohani -Date: Mon May 9 08:06:19 2022 -0700 - - 1631: Added URI credential extraction - -commit b76abf62ea35228d0529bcdc458f12950b7c6956 -Merge: eb9942161 4ed33f9ab -Author: Jorge Gonzalez -Date: Mon May 9 10:57:19 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit 4ed33f9abd4f64de294ec79cad6f508fb166c5a7 -Merge: d34b27b2e 1f62a47f0 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Mon May 9 10:52:39 2022 -0400 - - Merge pull request #1770 from raft-tech/docs/envs - - docs: update tdp-environments diagrams - -commit eb99421614958adb4c8f1b658a214b4484a9f3c5 -Author: Jorge Gonzalez -Date: Mon May 9 10:40:48 2022 -0400 - - empty commit to trigger a new build - -commit 64401b5be2372dee8f6ce53618fe2a62c359c164 -Author: raftmsohani -Date: Sun May 8 12:39:47 2022 -0700 - - 1631: Linting - -commit 154ac963f180a0bda9af1e5c27a685d2fb1f800f -Author: raftmsohani -Date: Sun May 8 12:34:08 2022 -0700 - - 1631: Revised README.md, and revised the db_backup.py - -commit cd50e5849a8f9efd585bbb8491622e2930942bf6 -Author: raftmsohani -Date: Sun May 8 08:08:11 2022 -0700 - - 1631: Added .pgpass - -commit d14a951871f6564c80a5f5489e7d540b96e97ab8 -Author: raftmsohani -Date: Sat May 7 12:54:55 2022 -0700 - - 1631: added missing username - -commit 5f967893e782390477817f2b5dfcbc0a22c72f99 -Author: raftmsohani -Date: Sat May 7 12:31:02 2022 -0700 - - 1631: linting - -commit 2c67e8dac85caebce7d14f4fb3a37e7f9f9b4c33 -Author: raftmsohani -Date: Sat May 7 12:24:07 2022 -0700 - - 1631: pg_restore command correction - -commit 9e85b811a87376c58ead7bf3f3b3dde528af300d -Author: raftmsohani -Date: Sat May 7 09:13:59 2022 -0700 - - 1631: Linting - -commit 395b4f8842823947446757da0d0ec3715cfbbc4f -Author: raftmsohani -Date: Sat May 7 08:55:32 2022 -0700 - - 1631: Revised Pg_Restore to use options - -commit e3095cc172d3634e36de2a83ae3b1b98e9836a19 -Author: raftmsohani -Date: Sat May 7 08:22:20 2022 -0700 - - 1631: Revised Pg_Restore to use options - -commit b2ec66c15f0d777cb19dffa40ccc3bf59f7e260b -Author: abottoms-coder -Date: Fri May 6 17:24:49 2022 -0400 - - First steps for LFT - -commit d86eefca50cc57f3fd2bc6dfa1d150a7fb75e8eb -Merge: f649c5aff f7f7e9431 -Author: Aaron Beavers -Date: Fri May 6 15:54:37 2022 -0400 - - Merge remote-tracking branch 'origin/feat/1707-improve-backend-logging' into feat/1440-s3-prefix - -commit 9b808ef57e205212aff2a67a11ea147bc77a5323 -Author: Jorge Gonzalez -Date: Fri May 6 13:18:40 2022 -0400 - - build: update backend env vars and deploy scripts - -commit 51d5bd4ba7aafcb535f02c92428c9800be145ec8 -Author: raftmsohani -Date: Fri May 6 07:20:39 2022 -0700 - - 1631: Revised README.md - -commit b463f3ec9208e192d345cbc34b4ab91a3d1a1dd4 -Author: raftmsohani -Date: Fri May 6 07:18:35 2022 -0700 - - 1631: Revised README.md - -commit 87479bc4d75c5f3aba66cc3ded5283439247373d -Author: raftmsohani -Date: Fri May 6 07:13:47 2022 -0700 - - 1631: Revised README.md - -commit 7bee202c2c7ef03160b17cd7ff535788ee153f29 -Merge: 60b65b4e0 d34b27b2e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri May 6 09:47:10 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit 7ab303025349ef04d7b2238f2d04e1ec6f886d54 -Author: raftmsohani -Date: Fri May 6 05:40:08 2022 -0700 - - 1631: Added README.md for backup script - -commit 8e63618b8b5745a407baf793c18264397a2ea3b1 -Author: raftmsohani -Date: Fri May 6 05:03:02 2022 -0700 - - 1631: filename/path correction - -commit d754e8dbde55603eba8193bcd479d65337822ee6 -Author: raftmsohani -Date: Fri May 6 04:34:11 2022 -0700 - - 1631: linting - -commit d9e3711d6871b41d2ee77c4ad52e64dc880ed029 -Author: raftmsohani -Date: Fri May 6 04:24:45 2022 -0700 - - 1631: linting - -commit 9550977475f6a6a348b0ecbafc1cc6885f562183 -Author: raftmsohani -Date: Fri May 6 04:01:20 2022 -0700 - - 1631: linting - -commit 66779ee6987c4530fa34ee4e2a8805392b8e1c41 -Author: raftmsohani -Date: Fri May 6 03:56:11 2022 -0700 - - 1631: linting - -commit 866c780d6b1e2b399685707e43d61af15352cc8f -Author: raftmsohani -Date: Fri May 6 03:33:52 2022 -0700 - - 1631: linting - -commit 0afd0f01d158ecf6433751b8a8774fc770cef69b -Author: raftmsohani -Date: Fri May 6 03:28:06 2022 -0700 - - 1631: added list command - -commit 1910877679e857bdf0f4d12869630255548bcd58 -Author: raftmsohani -Date: Fri May 6 03:19:43 2022 -0700 - - 1631: changed default dump file directory to /tmp - -commit 11cf1ad156949cc9727bc4a0272f647984bf8f6f -Author: raftmsohani -Date: Fri May 6 03:10:51 2022 -0700 - - 1631: solving permission denied on pg_dump - -commit 844602cb27417d2d93a06891d5e4e9c21cd01c96 -Author: raftmsohani -Date: Fri May 6 02:41:10 2022 -0700 - - 1631: added the script folder to make the script available in the backend - -commit 0450f7e531fbf65b4429aafba210d008cc464bee -Merge: 98e02461d d34b27b2e -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Fri May 6 04:58:59 2022 -0400 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit f649c5aff3bb78f9b9a7c77a1bd44aafbf2082cd -Author: Aaron Beavers -Date: Thu May 5 23:11:45 2022 -0400 - - use app name - -commit ec8c8d96063879381a9f8c9e8a0c84ff437e3a6c -Author: Aaron Beavers -Date: Thu May 5 12:48:26 2022 -0400 - - add to media url - -commit 7a04c757644c7e18db99ea2a92646ffac8cbd801 -Author: Aaron Beavers -Date: Thu May 5 12:44:37 2022 -0400 - - logs minor update - -commit e3ed367019b7fc3a4bc024dd1631a6e17f2dc8eb -Author: raftmsohani -Date: Thu May 5 08:38:30 2022 -0700 - - 1736: Model change and added method for STT - -commit 98e02461d8d555102d64b556f1bfa8dae173d033 -Author: raftmsohani -Date: Thu May 5 08:33:05 2022 -0700 - - 1631: Moved the script to script folder - -commit 81e7786b628438e85dde11cb54f180ef16f68023 -Merge: 7a9a92f23 af245b538 -Author: Aaron Beavers -Date: Wed May 4 16:24:12 2022 -0400 - - Merge remote-tracking branch 'origin/feat/1707-improve-backend-logging' into feat/1440-s3-prefix - -commit 7a9a92f231087b11776eb48874dfc68e3e719f15 -Author: Aaron Beavers -Date: Wed May 4 15:38:40 2022 -0400 - - sync - -commit f7f7e94310ca869af2a992146caee75a4130bb16 -Author: abottoms-coder -Date: Wed May 4 15:23:43 2022 -0400 - - Minor tweaks from PR and also the gunicorn todo trial - -commit 3ec7ce648008d72579639fc5a5233a57eab52ca1 -Author: raftmsohani -Date: Wed May 4 10:26:35 2022 -0700 - - 1631: Added authentication skip commands for database restore - -commit 7438b59126dd4f91a6d232345cd03c67afa2ca88 -Author: Aaron Beavers -Date: Wed May 4 13:21:09 2022 -0400 - - set aws 3s location to app name - -commit f24cd4bdd69429ebf222d3fe07e6253edc6b0c83 -Author: abottoms-coder -Date: Wed May 4 11:50:16 2022 -0400 - - Reverting DJANGO_DEBUG - -commit 1f62a47f0c333d251b9c90ccee6fd18796f2b900 -Author: Jorge Gonzalez -Date: Wed May 4 10:52:42 2022 -0400 - - docs: update tdp-environments diagrams - -commit d34b27b2e7a4f632d6da34a750d82a74f87b1bfb -Merge: 6c331fcbc bd8bbec87 -Author: Andrew <84722778+andrew-jameson@users.noreply.github.com> -Date: Wed May 4 10:08:03 2022 -0400 - - Merge pull request #1768 from raft-tech/fix/tfstates - - hotfix: update s3 tfstates bucket for terraform - -commit bd8bbec87450c3742768542f4676fef19492c506 -Author: Jorge Gonzalez -Date: Wed May 4 10:00:24 2022 -0400 - - Update docs/Technical-Documentation/TDP-environments-README.md - - Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> - -commit 946f886e52ea5a13642380325404bc1402514119 -Author: Jorge Gonzalez -Date: Wed May 4 09:51:03 2022 -0400 - - build: update s3 tfstates bucket for terraform - -commit 56afa3d8ee1dde654236a1ae175c4a5ac8fc3e06 -Author: abottoms-coder -Date: Wed May 4 09:36:30 2022 -0400 - - After some testing and tuning, logging seems to work as expected. Reverting gunicorn script to previous state + reload - -commit d9363b4f75548cc12c8bab425ccb043ef03939c4 -Author: abottoms-coder -Date: Tue May 3 14:25:05 2022 -0400 - - Can I just remove ipython? I don't see why our app needs this at all - -commit b0f82d9333186529837db360e3606cb3feafd4d1 -Author: abottoms-coder -Date: Tue May 3 13:58:29 2022 -0400 - - Restructuring so we have tdpservice-specific logging practices and don't raise to root. Also removing unnecessary level-setting as this should be fine in only the formatters. - -commit e704e44d93673f4e8deb4f5837c6dfb6d2d29734 -Author: abottoms-coder -Date: Tue May 3 11:10:10 2022 -0400 - - Found the missing piece - -commit ecf557b951f0206c943f3872323e498e9a056d89 -Merge: 1a62d9f6b 6c331fcbc -Author: abottoms-coder -Date: Tue May 3 09:29:57 2022 -0400 - - Merge branch 'develop' into feat/1707-improve-backend-logging - -commit 1a62d9f6b51a8978a80f2c531a81ce00a4365fc0 -Author: abottoms-coder -Date: Tue May 3 09:29:23 2022 -0400 - - Changing up console logging - -commit 60b65b4e08b57db8c4e8bf82457063e11eaa822d -Merge: 392035434 6c331fcbc -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon May 2 15:23:20 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit 6c331fcbc74095425dbc8332f7b30018ff754143 -Merge: 941b5aa7a 6b95612ed -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon May 2 14:12:27 2022 -0400 - - Merge pull request #1764 from raft-tech/master - - build(895): Configure CircleCI to deploy to production - -commit 6b95612edca32ac57b0d2886a98130bf8855143c -Merge: 83b8050ae 47a00e692 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon May 2 13:50:50 2022 -0400 - - Merge pull request #1766 from raft-tech/feat/895-var-updates - - Updating cloud.gov org name and django settings ALLOWED_HOSTS for pro… - -commit 39203543415b84faa0d983b9a45a9e62d407fc22 -Merge: 14cb6bb90 941b5aa7a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon May 2 12:10:32 2022 -0400 - - Merge branch 'develop' into fix/1415 - -commit 47a00e6928f7b3a5e3a5ea6be1d8561d62028fc3 -Author: abottoms-coder -Date: Mon May 2 08:52:59 2022 -0400 - - Updating cloud.gov org name and django settings ALLOWED_HOSTS for prod var - -commit 83b8050ae2f734cce089b9a2645a308f33ea1795 -Merge: 157649d15 941b5aa7a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon May 2 08:26:16 2022 -0400 - - Merge branch 'develop' into master - -commit 941b5aa7a669a25e1c93914940e93e53ac3c6e26 -Merge: d02a946f3 14435225c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon May 2 08:24:31 2022 -0400 - - Merge pull request #1729 from raft-tech/feat/1619-hhs-id-field-for-ams - - Use hhs_id for ACF AMS logins - -commit 157649d15547b8e0c7eefc0f398c52d32ba373ae -Author: Jorge Gonzalez -Date: Fri Apr 29 14:59:25 2022 -0400 - - update TDP-environments-README.md - -commit 992a575aa36a7be6f7260c8f27c2bd68f698fab6 -Author: Jorge Gonzalez -Date: Fri Apr 29 13:07:22 2022 -0400 - - add dev deploy job - -commit 78e1280cc0dccfb2cb80587fef3a46f52ba390a7 -Author: Jorge Gonzalez -Date: Fri Apr 29 12:22:29 2022 -0400 - - update rds and s3 service plans - -commit 14435225c2ec95b7035afdecd600f34006c4a52e -Merge: 61e669d30 d02a946f3 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 29 12:21:15 2022 -0400 - - Merge branch 'develop' into feat/1619-hhs-id-field-for-ams - -commit ab417ceadf7eaccd10f0217dc80da74e02fb0240 -Merge: dd1992136 38dbbc213 -Author: Jorge Gonzalez -Date: Fri Apr 29 12:19:03 2022 -0400 - - Merge remote-tracking branch 'origin/master' - - # Conflicts: - # tdrs-backend/tdpservice/settings/cloudgov.py - -commit dd1992136ba580a1bbc7d8004e6c8a4e4b1dcd8d -Author: Jorge Gonzalez -Date: Fri Apr 29 12:18:33 2022 -0400 - - lint - -commit 38dbbc21375933758b6f38cb70b2ce1b3ade2247 -Author: Jorge Gonzalez -Date: Fri Apr 29 12:18:33 2022 -0400 - - lint - -commit f4ea6993481bcee367130eae7278769b2a85d3df -Author: Jorge Gonzalez -Date: Fri Apr 29 11:59:24 2022 -0400 - - add git-secrets exclusion - -commit 3f8f714b2c605e40521f0226c33dc22d25b84376 -Author: raftmsohani -Date: Thu Apr 28 13:11:18 2022 -0700 - - 1631: corrected the db_restore function - -commit 0784dac7b88f217116b8553d4d87233b86734ac0 -Author: Jorge Gonzalez -Date: Thu Apr 28 14:53:36 2022 -0400 - - add build and test back - -commit 983675931e8e1755daa49194fec3ceb7159e45e4 -Author: Jorge Gonzalez -Date: Thu Apr 28 13:53:01 2022 -0400 - - update deploy scripts - -commit d88b21e94344af332977b81b858c35e92454a229 -Merge: 2e6297668 d02a946f3 -Author: Jorge Gonzalez -Date: Thu Apr 28 12:07:31 2022 -0400 - - Merge branch 'develop' into master - -commit db966d0a8e8789c3f77ae250aecf32299e06ac57 -Author: raftmsohani -Date: Wed Apr 27 19:38:35 2022 -0700 - - 1631: linting - -commit 3d42344db6e7f12dc9cc5879442da06c7ed939fb -Author: raftmsohani -Date: Wed Apr 27 19:28:36 2022 -0700 - - 1631: linting - -commit 65dca291a8fc95e2724a2c82696e19afddb4b939 -Author: raftmsohani -Date: Wed Apr 27 19:21:45 2022 -0700 - - 1631: linting - -commit 39d56db24acacd02425c5967350e1beb837f8578 -Author: raftmsohani -Date: Wed Apr 27 19:12:54 2022 -0700 - - 1631: linting - -commit b1ada8548f30b97fa6d09074c397f7f4052c426d -Merge: 2a6794e0c d9cd9591e -Author: raftmsohani -Date: Wed Apr 27 19:05:36 2022 -0700 - - Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup - -commit 2a6794e0cf6d63b5d74f9f3f2bf51502bc806aab -Author: raftmsohani -Date: Wed Apr 27 19:05:09 2022 -0700 - - 1631: linting - -commit d9cd9591e6921f064a464dc4393f86b9084202ec -Merge: 61ea40028 d02a946f3 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 27 18:53:48 2022 -0700 - - Merge branch 'develop' into feat/1631-periodic-database-backup - -commit 61ea40028a189c983c04b9bad0c5c0e5ef9ee9eb -Author: raftmsohani -Date: Wed Apr 27 18:47:45 2022 -0700 - - 1631: added cmd vars - -commit 4db66374c87bfa969b7c576460ab28c6dfea0121 -Author: abottoms-coder -Date: Wed Apr 27 15:51:30 2022 -0400 - - reducing to one worker to always be refreshing with latest and setting debug=true - -commit af245b538b699c0a5230e62390f213f69f370ee6 -Author: abottoms-coder -Date: Wed Apr 27 15:23:50 2022 -0400 - - Updating gunicorn for reload, mem on buildpack manifest - -commit 14cb6bb9009e02897eca83a52947a44f0c67abae -Merge: 7afa5fe79 d02a946f3 -Author: Jorge Gonzalez -Date: Wed Apr 27 08:48:31 2022 -0400 - - Merge branch 'develop' of https://github.com/raft-tech/TANF-app into fix/1415 - -commit d02a946f3d28ccb1da96ffd8ff3c5031dfb18d0a -Merge: 0c4a81dc8 b871d3bc2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 26 16:48:18 2022 -0400 - - Merge pull request #1762 from raft-tech/dependabot/pip/tdrs-backend/django-3.2.13 - - Bump django from 3.2.11 to 3.2.13 in /tdrs-backend - -commit 2e6297668da6db0e894741e99da3dd2cfbd7712e -Author: Jorge Gonzalez -Date: Tue Apr 26 15:13:35 2022 -0400 - - tweak db_name based on env - -commit 87093229c2225edf11d70ea5944ca34d44298864 -Merge: 6b44c2743 0c4a81dc8 -Author: Jorge Gonzalez -Date: Tue Apr 26 15:10:38 2022 -0400 - - Merge branch 'develop' into master - -commit 6b44c27435f204948d77a717a959cc6df555dafc -Author: Jorge Gonzalez -Date: Tue Apr 26 15:06:12 2022 -0400 - - tweak db_name based on env - -commit b871d3bc22d2a33c23f337abae059f11d5150db7 -Merge: b78c49aec 0c4a81dc8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 26 14:58:13 2022 -0400 - - Merge branch 'develop' into dependabot/pip/tdrs-backend/django-3.2.13 - -commit 0c4a81dc8ab0846dd43d8987b9e9891523a340a2 -Merge: 890a21e3b 87be8abef -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 26 14:57:55 2022 -0400 - - Merge pull request #1763 from raft-tech/stevenino-patch-1-1 - - Create sprint-45-summary.md - -commit 87be8abef58cad5f6562bb5b05d63a9e17de6260 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Apr 26 10:18:49 2022 -0700 - - Create sprint-45-summary.md - -commit b3c5b1fe77a97d520258999bdc42759d0ce2e2bc -Author: abottoms-coder -Date: Tue Apr 26 09:48:12 2022 -0400 - - testing gunicorn-worker theory, also commenting out 'set -e' - -commit c486a9b36055595928aef9e9ae4357ebf1f21bbc -Author: Jorge Gonzalez -Date: Tue Apr 26 09:43:51 2022 -0400 - - test old db name in param - -commit 7afa5fe796a99837c7949b1c04fda380ab0e2395 -Author: Jorge Gonzalez -Date: Tue Apr 26 09:21:31 2022 -0400 - - chore(1415): bump django-admin-508 to 0.2.0 - -commit d7f3c30f67c07391b91490d45e1fc8a150c0a51e -Author: raftmsohani -Date: Mon Apr 25 18:40:15 2022 -0700 - - 1631: database-backup.py: backup, restore, save to s3 - -commit b78c49aec35d02a0361858b884606b3ad913dabc -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Apr 25 20:05:28 2022 +0000 - - Bump django from 3.2.11 to 3.2.13 in /tdrs-backend - - Bumps [django](https://github.com/django/django) from 3.2.11 to 3.2.13. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/3.2.11...3.2.13) - - --- - updated-dependencies: - - dependency-name: django - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 890a21e3baff3ada8bb86259378feb88af340818 -Merge: 4d4affe01 94537253b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 25 15:59:06 2022 -0400 - - Merge pull request #1761 from raft-tech/deps/dependency-fix-nose-prog - - Hotfix - "nose-progressive" dependency build failure - -commit 61e669d3048c89eac5d9877274ced263472ea54d -Merge: ef9d9c5eb 94537253b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 25 15:24:36 2022 -0400 - - Merge pull request #1760 from raft-tech/deps/dependency-fix-nose-prog - - Local testing is successful - -commit 94537253b0e8d6a418e349972a1f7612f8483249 -Author: abottoms-coder -Date: Mon Apr 25 15:14:01 2022 -0400 - - Local testing is successful - -commit ef9d9c5eb9871bf5c1d05520aa3dd93b18d2265e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 25 09:31:29 2022 -0400 - - Revert tdrs-backend/manifest.yml - -commit 5b92a03c5deeead157a24a9bebb8ca553a879bc0 -Author: raftmsohani -Date: Thu Apr 21 12:40:05 2022 -0700 - - 1631: linting - -commit 260f941f1a103a81c2df96dea08408ea383dc901 -Author: raftmsohani -Date: Thu Apr 21 12:17:29 2022 -0700 - - 1631: linting - -commit 973db146264b8c778d28264107674f5112f2bf05 -Author: raftmsohani -Date: Thu Apr 21 11:53:36 2022 -0700 - - 1631: removed import json because of linting problem - -commit d1d077c3a1c6fe411c30b2fe570558294608290a -Author: raftmsohani -Date: Thu Apr 21 10:38:07 2022 -0700 - - 1631: moved database-backup.py to parent directory to make it available - -commit e3c74394f73209790154d285e10cd33430f648fb -Author: Jorge Gonzalez -Date: Thu Apr 21 13:30:14 2022 -0400 - - fix: db name - -commit 761ff8718f6d27220ad6ea6efaf29caa6efed462 -Author: Jorge Gonzalez -Date: Thu Apr 21 13:17:35 2022 -0400 - - test set space explicitly - -commit cb0be0f8fc6af319929f3ca5205a9be34557e9c2 -Author: raftmsohani -Date: Thu Apr 21 10:12:39 2022 -0700 - - 1631: updated database-backup.py to include the local backup and test s3 - -commit 8ef7aaf6837a7ef7a6cfe3088730a5e2e34b322e -Author: Jorge Gonzalez -Date: Thu Apr 21 13:02:43 2022 -0400 - - test changes - -commit 8fec7450c49a12f31a5a247f015de4849be74e8f -Author: Jorge Gonzalez -Date: Thu Apr 21 12:47:46 2022 -0400 - - test changes - -commit 11b081c2907be79abdf8b07b4c6ecc90260205fa -Author: Jorge Gonzalez -Date: Thu Apr 21 12:23:12 2022 -0400 - - nit - -commit c2a8748842ea62814d32bdf56cbff0c92f678dd2 -Author: Jorge Gonzalez -Date: Thu Apr 21 11:59:39 2022 -0400 - - fix: org name - -commit 66f1b13bb1e56f345b61765e9396651dcb0b80bf -Author: Jorge Gonzalez -Date: Thu Apr 21 11:58:15 2022 -0400 - - fix: pass in parameters to login-cloud-dot-gov for prod - -commit c477fa6e7293ffc212abf187ae07774707181926 -Author: Jorge Gonzalez -Date: Thu Apr 21 11:57:38 2022 -0400 - - fix: pass in parameters to login-cloud-dot-gov for prod - -commit a9245cfd39b160ce57febf5af8999da7b25c2080 -Merge: 4d4affe01 93e852def -Author: Jorge Gonzalez -Date: Thu Apr 21 11:44:34 2022 -0400 - - Merge pull request #1759 from raft-tech/feat/895 - -commit 93e852def9879b39e63b0de63847ef631f55e28c -Author: Jorge Gonzalez -Date: Thu Apr 21 10:49:18 2022 -0400 - - fix: cf space names - -commit 591dfd1c28e35c5b299660480350dd9b15b1c05a -Merge: 0e1ec3226 4d4affe01 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Apr 21 10:25:20 2022 -0400 - - Merge branch 'develop' into feat/1619-hhs-id-field-for-ams - -commit ae715e6f16524d64aa8a4b22441d79cd90baba29 -Merge: 8bc1b0a36 4d4affe01 -Author: Jorge Gonzalez -Date: Thu Apr 21 10:06:22 2022 -0400 - - Merge branch 'develop' into feat/895 - -commit 8bc1b0a3697a82cfc034892e75426b6e1876b65c -Author: Jorge Gonzalez -Date: Thu Apr 21 10:06:02 2022 -0400 - - feat: init prod circleci config - -commit 4d4affe01db680e15df0011fb25c71937d3b39b5 -Merge: 00ee01fdb 4bbf7c441 -Author: Jorge Gonzalez -Date: Wed Apr 20 14:06:04 2022 -0400 - - Merge pull request #1758 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/async-2.6.4 - -commit 4bbf7c441b2d7b1c0031e34a7fdade4af818d96b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Apr 20 16:17:32 2022 +0000 - - Bump async from 2.6.3 to 2.6.4 in /tdrs-frontend - - Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - - [Release notes](https://github.com/caolan/async/releases) - - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) - - --- - updated-dependencies: - - dependency-name: async - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 00ee01fdbde202b3abacf823e2ad596bbfadc956 -Merge: 82a03eb67 6029f24e3 -Author: Jorge Gonzalez -Date: Wed Apr 20 12:16:28 2022 -0400 - - Merge pull request #1743 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.3 - -commit 4e21ac2184be9231856bb866c213f3c1cc4fd6a8 -Author: raftmsohani -Date: Tue Apr 19 11:09:49 2022 -0700 - - 1631: Added postgres deb file - -commit a440d9ae45d940013944a956b195aff553917f24 -Author: raftmsohani -Date: Tue Apr 19 10:44:40 2022 -0700 - - 1631: Added postgres deb file - -commit 568c4aeb9dd113ae6d71679bff2599da308437ff -Author: raftmsohani -Date: Tue Apr 19 10:14:19 2022 -0700 - - 1631: Added postgres deb file - -commit 52b13fb3b1af4ee5905dff739bbdbca5bd0bf036 -Author: raftmsohani -Date: Tue Apr 19 09:54:31 2022 -0700 - - 1631: Changed apt file - -commit 21b2d7060fef27bddf2fea259ded9e5670c3ce8b -Author: raftmsohani -Date: Tue Apr 19 09:18:47 2022 -0700 - - 1631: Changed postgres-client version to 12 using debian - -commit a65904ac33de5b7bd8e222be2acb20daeb39e1ca -Author: raftmsohani -Date: Tue Apr 19 09:17:36 2022 -0700 - - 1631: Changed postgres-client version to 12 using debian - -commit 6029f24e317d9b8985cb5d315fb7fe3e085954f5 -Merge: 9356c9a48 82a03eb67 -Author: Miles Reiter -Date: Tue Apr 19 12:08:39 2022 -0400 - - Merge branch 'develop' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.3 - -commit e40512e18b2259163dc3964f31235105387f8e65 -Author: raftmsohani -Date: Tue Apr 19 08:41:24 2022 -0700 - - 1631: Changed postgres-client version to 12 using debian - -commit 55fbebb710349d6f6c16199671f0470efe2137f5 -Author: raftmsohani -Date: Tue Apr 19 08:05:16 2022 -0700 - - 1631: Changed postgres-client version to 12 - -commit 82a03eb67dd00ed4d43bae3072e75b86ff9d772e -Merge: 8395ab8e4 853e7212f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 18 15:25:59 2022 -0400 - - Merge pull request #1747 from raft-tech/stevenino-patch-1 - - Create Sprint 44 Summary.md - -commit 853e7212f6a98175bc270649033df44076b4c3ed -Merge: 12419632e 8395ab8e4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 18 15:15:02 2022 -0400 - - Merge branch 'develop' into stevenino-patch-1 - -commit 0e1ec3226b23db4f6756058ddd6f14e79f8ee619 -Merge: 47f643cc0 8395ab8e4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 18 15:13:20 2022 -0400 - - Merge branch 'develop' into feat/1619-hhs-id-field-for-ams - -commit 47f643cc03b705f27281fb42919db22a1b976e33 -Author: abottoms-coder -Date: Mon Apr 18 15:12:34 2022 -0400 - - Cleaning up files for PR - -commit 60fd34af9c6b48344d00576515915bccb1146eb1 -Author: abottoms-coder -Date: Mon Apr 18 15:06:07 2022 -0400 - - Missed deploy-on-label - -commit 40971f80d6f6675a97185fdd5be1c8f9240cdad4 -Author: abottoms-coder -Date: Mon Apr 18 14:39:52 2022 -0400 - - Undoing changes made during development to hopefully reduce size of PR - -commit a00b7aa23cc1753a7a28a96cbf08557b64fd0e91 -Author: Jorge Gonzalez -Date: Mon Apr 18 14:32:46 2022 -0400 - - feat: init prod terraform config - -commit 7518e18742204df7abd059bb386aa637749528d3 -Author: abottoms-coder -Date: Mon Apr 18 14:27:41 2022 -0400 - - Improvements for PR - -commit 16229212148287892abd620e0b6792446bcdd7b2 -Author: abottoms-coder -Date: Mon Apr 18 11:32:07 2022 -0400 - - updating exception - -commit f484278dd3a451ba60a5d9b0d38170a4f10d9080 -Author: abottoms-coder -Date: Mon Apr 18 11:25:43 2022 -0400 - - updating error handling again - -commit d81690061e0bb0aae2dd82736c31f192d67eb3c2 -Author: abottoms-coder -Date: Mon Apr 18 11:13:18 2022 -0400 - - Debugging prints again - -commit ed550b0ab24548af5d4ec70b7bcde8f62c6eaff3 -Author: abottoms-coder -Date: Mon Apr 18 11:02:19 2022 -0400 - - reverting to gunicorn logging - -commit bf9f86d671828b2daab07cdf6fbfceef8430aa8d -Author: abottoms-coder -Date: Mon Apr 18 10:12:29 2022 -0400 - - Updating error handler and logger - -commit 1a2f48eb454fdb70233a9c0899af1c920d3d56ee -Author: abottoms-coder -Date: Mon Apr 18 09:44:53 2022 -0400 - - Reworking logic due to duplicate key issue when using save() - -commit 58a761560e617b480352c01d91bd42afe8b71100 -Author: abottoms-coder -Date: Mon Apr 18 08:58:34 2022 -0400 - - new exception handler - -commit 859f68e8d727df43ce0d007b33933570802cc606 -Author: abottoms-coder -Date: Fri Apr 15 16:48:39 2022 -0400 - - playing with log level as cloud.gov is misbehaving - -commit 8395ab8e4201d6c458981ce3c7585df1f03ae08e -Merge: 8d90f867f 54338ab76 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Apr 15 16:33:14 2022 -0400 - - Merge pull request #1753 from raft-tech/ADPennington-patch-1 - - Update erd job to run on develop branch - -commit 7ddf6aced844dd4fafe8619664222e35ca6daa1c -Author: abottoms-coder -Date: Fri Apr 15 16:08:36 2022 -0400 - - CircleCI found linting issue I didn't have locally 2 - -commit a55898770deadfe3bef2077f37db8298a224b4e5 -Author: abottoms-coder -Date: Fri Apr 15 16:04:16 2022 -0400 - - CircleCI found linting issue I didn't have locally - -commit f9b8d11976dfd3e9f35d38339640f5118be0c6ea -Author: abottoms-coder -Date: Fri Apr 15 15:58:47 2022 -0400 - - What else to say? Need to commit to test in deployed env also upping ram to 512 maybe - -commit e9ff950f66ef3362d1c4bf41a2ec2eef0c8a1e66 -Author: abottoms-coder -Date: Fri Apr 15 15:46:47 2022 -0400 - - Fixing unit tests - -commit 54338ab76a383b45d856ff682da26883259eceeb -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 15 13:24:00 2022 -0400 - - Update erd job to run on develop branch - - updating job to run on `develop` branch (formerly `raft-tdp-main`) - -commit 82d249f545b28f116982f37dab2b8c4251b52cdd -Author: abottoms-coder -Date: Fri Apr 15 12:24:50 2022 -0400 - - Logic for updating hhs_id, initial test plus flake8 linting updates - -commit 662c7a3c9d8a9185172b7b633af23f7c9aa761c0 -Author: abottoms-coder -Date: Fri Apr 15 11:44:54 2022 -0400 - - Fixed migrations causing unit test failures - -commit 9959b811364503a63afee18a6692d89087d45a06 -Author: abottoms-coder -Date: Fri Apr 15 10:00:50 2022 -0400 - - Fixed and tested tdrs-make-migrations - -commit 19534b127eb1ea175c487550a470b67f15d45669 -Author: abottoms-coder -Date: Fri Apr 15 09:52:18 2022 -0400 - - New migration for model changes, updates to tests, notes about unusable tdrs-run/make-migrations - -commit e4a3adaa6c5affdcb53c341cdf80347930e10c15 -Author: abottoms-coder -Date: Fri Apr 15 09:19:17 2022 -0400 - - reordering auth flags and debugging - -commit 8d90f867fa8cf8be641eed4f9e8472e475f80a65 -Merge: 7214e8e67 81cf8202a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Apr 14 14:02:37 2022 -0400 - - Merge pull request #1740 from raft-tech/abottoms-coder-patch-1 - - DAC508 and a11y PR process change - -commit 81cf8202ac8e654f0784c95d4fb3852b045655c7 -Merge: fb47da0a3 7214e8e67 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Apr 14 13:49:37 2022 -0400 - - Merge branch 'develop' into abottoms-coder-patch-1 - -commit ba3c920e5f1718c4382eb6864924c5cfb4c9744e -Author: raftmsohani -Date: Thu Apr 14 09:21:57 2022 -0700 - - 1631: Changed the order for buildpacks - -commit ec353526e8efe17efb333a16c5b6de114bda4419 -Author: raftmsohani -Date: Thu Apr 14 06:49:25 2022 -0700 - - 1631: Added APT to the buildpacks - -commit dbb18ac057132d13ee10f9f4659d7c6727425420 -Author: raftmsohani -Date: Thu Apr 14 05:47:34 2022 -0700 - - 1631: Multiple apps in manifest.yml - -commit ba7473b3bfdd78bfec3a6a16a54dd4329ce43185 -Author: raftmsohani -Date: Wed Apr 13 13:08:23 2022 -0700 - - 1631: Added APT build-pack to manifest.buildpack.yml - -commit 0aac714108317d34a66910add320190efbd6e33d -Author: raftmsohani -Date: Wed Apr 13 12:18:39 2022 -0700 - - 1631: Removed the APT package - -commit 8da799a28c72aa6756a154edd046ac34bd874646 -Author: raftmsohani -Date: Wed Apr 13 09:06:20 2022 -0700 - - 1631: Reversed the manifest order - -commit 0b556abb81c0feef509666e69cd3add165dde24b -Author: raftmsohani -Date: Wed Apr 13 08:54:01 2022 -0700 - - 1631: Reversed the manifest order - -commit 4ee77f82e55323e37967fb2db9dcafdaa2ba13b4 -Author: raftmsohani -Date: Wed Apr 13 08:18:56 2022 -0700 - - 1631: Corrected flag from y to f - -commit cf3d3791daceefe490e48b6a22c8861b7144b041 -Author: raftmsohani -Date: Wed Apr 13 08:07:41 2022 -0700 - - 1631: Changed the flag for manifest - -commit 7214e8e673bd1c8df836fa12b2228a76fda05002 -Merge: 8d8c5e145 e138afa33 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 13 09:53:20 2022 -0400 - - Merge pull request #1731 from raft-tech/doc/1726-release-strategy - - Documentation for release branching and versioning strategy - -commit 077d1e4bae10fae07d5c87d9e9a6b8cee1c47fdf -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 13 09:48:23 2022 -0400 - - Delete .env - -commit e138afa3307233b12af34b4cbdba497a38495dfb -Author: abottoms-coder -Date: Wed Apr 13 09:44:11 2022 -0400 - - link fix, incidence response - -commit 9c2fa424249859458eef20747134f8e6350b68e0 -Merge: db838b4ec 8d8c5e145 -Author: abottoms-coder -Date: Wed Apr 13 09:42:26 2022 -0400 - - Merge conflict resolving for incident response - -commit ab30e791dcb1c4892b2c0025999a9135858f1962 -Merge: de5fdc119 d9312482c -Author: raftmsohani -Date: Wed Apr 13 06:41:36 2022 -0700 - - Merge branch 'feat/1631-periodic-database-backup' of https://github.com/raft-tech/TANF-app into feat/1631-periodic-database-backup - -commit de5fdc11989070d48afe272a693d45b7d7da6b54 -Author: raftmsohani -Date: Wed Apr 13 06:33:38 2022 -0700 - - 1631: added .env file for deployment - -commit 8d8c5e1450536c681b1647eca903f47de080abb4 -Merge: 29a3eaaaf 247584767 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 13 09:03:00 2022 -0400 - - Merge pull request #1739 from raft-tech/docs/project-update-april - - Docs/ Adds April Project Update - -commit 2475847675d4af911c1728a5640058c252357d51 -Merge: 4753c0526 29a3eaaaf -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 13 08:56:00 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/project-update-april - -commit 29a3eaaafd0d5aa55a7936cd873d77c11b93c30a -Merge: 235234443 fb634eea3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 13 08:55:24 2022 -0400 - - Merge pull request #1719 from raft-tech/docs/update-ux-templates - - Docs - Update UX issue templates - -commit d9312482c04b9a4126ce0875ecf02577eff3d2b0 -Merge: bd6541a33 235234443 -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Wed Apr 13 00:50:15 2022 -0700 - - Merge branch 'raft-tdp-main' into feat/1631-periodic-database-backup - -commit bd6541a3388820b3a33bd987121439fc8976bc57 -Author: raftmsohani -Date: Wed Apr 13 00:43:30 2022 -0700 - - 1631: added APT buildpack and initial python script for database backup - -commit 12419632ea6f67b3fb275dbaef9beeb220e3fa99 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Apr 12 16:50:22 2022 -0700 - - Create Sprint 44 Summary.md - -commit 9356c9a48f8f4f1c2dc376590d6f2065311260cb -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Apr 12 19:15:21 2022 +0000 - - Bump uswds from 2.13.2 to 2.13.3 in /tdrs-frontend - - Bumps [uswds](https://github.com/uswds/uswds) from 2.13.2 to 2.13.3. - - [Release notes](https://github.com/uswds/uswds/releases) - - [Commits](https://github.com/uswds/uswds/compare/v2.13.2...v2.13.3) - - --- - updated-dependencies: - - dependency-name: uswds - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit fb634eea324338c2d4edc709345651ed915c415b -Merge: 43e65fe49 235234443 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 12 15:14:17 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit 235234443f1b2a831cbe558700fffadf6534c2e3 -Merge: 67d8b6974 a47805711 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 12 15:14:08 2022 -0400 - - Merge pull request #1732 from raft-tech/fix/1487 - - fix(1487): upgrade django-admin-508 to fix select all action - -commit a47805711f42ed44cb8a9af38d82a4a0c1e71627 -Author: Jorge Gonzalez -Date: Tue Apr 12 14:15:04 2022 -0400 - - fix: Upgrade django-admin-508 to fix select all action - -commit 43e65fe49b0f5f7b6ba22db71f56e463705106db -Merge: 9ee013279 67d8b6974 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 12 11:54:39 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit 67d8b6974adf8dba5bf5fad433e87793cfec8d0e -Merge: cdb3bae9b acc25ec64 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 12 11:54:22 2022 -0400 - - Merge pull request #1742 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.5 - - Bump @testing-library/react from 12.1.4 to 12.1.5 in /tdrs-frontend - -commit acc25ec64b9c3413d4776e905c6ed0ae2e63eddc -Merge: 2f02266c2 cdb3bae9b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 12 11:18:31 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.5 - -commit cdb3bae9b341ecc8facc6a1e1c3aaeab26621382 -Merge: 8cbfff91a 048de98f0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 12 11:18:16 2022 -0400 - - Merge pull request #1664 from raft-tech/feat/1414-upgrade-django-admin-508 - - [feat/1414,1412,1411] upgrade django admin 508 to latest stable version - -commit 2f02266c20f23907f80e6a2306e7e66ae6cbffc0 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Apr 12 11:02:55 2022 +0000 - - Bump @testing-library/react from 12.1.4 to 12.1.5 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.4 to 12.1.5. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.4...v12.1.5) - - --- - updated-dependencies: - - dependency-name: "@testing-library/react" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 9ee0132797fb93eb87e6f18c29fbd622ea39d46a -Merge: 4f40fd552 8cbfff91a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 15:22:33 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit db838b4eca89778e91aa3873c32803110989e603 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 15:19:22 2022 -0400 - - Delete TANF-Git-Workflow.jpg - -commit 27bd53873569f5d8db2ce396b3bb6f414c8c86fd -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 15:18:52 2022 -0400 - - Update 009-git-workflow.md - -commit 194137a560bff12181cd0f41ef969c5929232d48 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 13:27:16 2022 -0400 - - Update docs/Technical-Documentation/Architecture-Decision-Record/008-deployment-flow.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 048de98f0efd03ce2fdf68889c42d507708f0590 -Merge: a0738a981 8cbfff91a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Apr 11 10:46:15 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit 8cbfff91ad7b280d3b1ae8b2ffbe78e9f3c0fb90 -Merge: 9787e13e2 41cd45d6c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 09:43:27 2022 -0400 - - Merge pull request #1741 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.13.0 - - Bump eslint from 8.12.0 to 8.13.0 in /tdrs-frontend - -commit 41cd45d6c616e0e0001fa15bdced494201766abc -Merge: db7aea7b7 9787e13e2 -Author: Jorge Gonzalez -Date: Mon Apr 11 09:17:53 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.13.0 - -commit 9787e13e24a9db0a2b24538839ca9edc7a7a7a24 -Merge: e000170a7 87795d418 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 09:11:27 2022 -0400 - - Merge pull request #1730 from raft-tech/adp/1642-ird-sysadmin - - Issue 1642: IRP for compromised sys admin acct - -commit 87795d418f6645c232e02a3fe84b03c7d094c46e -Merge: 069471528 e000170a7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 09:05:06 2022 -0400 - - Merge branch 'raft-tdp-main' into adp/1642-ird-sysadmin - -commit e000170a72c89c1b977a6dc0e144b109a10209a9 -Merge: d7f4003f6 28eab5d6c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 11 09:04:53 2022 -0400 - - Merge pull request #1674 from raft-tech/feat/1658-read-only-dac - - feat(1658): Make various models read-only through Django Admin - -commit db7aea7b74b8cab41c611113c9a398e9ce00f183 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Apr 11 06:18:42 2022 +0000 - - Bump eslint from 8.12.0 to 8.13.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.13.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.12.0...v8.13.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit ab5e40819114c4d5265644b9f68ff63c914365cd -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Apr 8 15:08:19 2022 -0400 - - Update 018-versioning-and-releases.md - -commit 069471528f0a8aba9fa69f19a98b883c7281ea0c -Merge: 2fcb01f27 d7f4003f6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 8 12:33:13 2022 -0400 - - Merge branch 'raft-tdp-main' into adp/1642-ird-sysadmin - -commit 2fcb01f27682ee45cfbcfa293887d4fa484b23bd -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 8 12:30:13 2022 -0400 - - spelled out IR folder - -commit fb47da0a3d78aa29ead00a97527c31be9769e662 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Apr 8 11:40:53 2022 -0400 - - Update 009-git-workflow.md - -commit 8c7f30c9e5864c9bece35efe10eab1d7a7c06811 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Apr 8 11:36:12 2022 -0400 - - Update 009-git-workflow.md - -commit 1d232711a2a589cf14d786d9d355094f65efe1a8 -Author: abottoms-coder -Date: Fri Apr 8 10:56:51 2022 -0400 - - flake8 indentation - -commit 3491870f0d8cc83e535da506243fe1c31bb9a480 -Author: abottoms-coder -Date: Fri Apr 8 10:54:37 2022 -0400 - - reverting any recent changes to gunicorn - -commit 962b7b3c1dfcb17c2148d4374fd6a6d6edfc6301 -Author: abottoms-coder -Date: Fri Apr 8 10:43:34 2022 -0400 - - testing logging vs. logger - -commit 5955fb6b17908cafedce61f29e2ea4cd0a52da5e -Author: abottoms-coder -Date: Fri Apr 8 10:10:21 2022 -0400 - - updating the field, finally! - -commit c9eda806aee5f4eb413b4e2f5226ee39245eb82b -Author: abottoms-coder -Date: Fri Apr 8 09:51:31 2022 -0400 - - yet another debug commit - -commit 4753c052662b08f18b82a8e172a72de1e842fe72 -Author: Miles Reiter -Date: Fri Apr 8 00:11:07 2022 -0400 - - Adds April Project Update - -commit 4f40fd552f45548b501448ea1e2bf6b03aa9f9db -Merge: 6052536a0 d7f4003f6 -Author: Miles Reiter -Date: Thu Apr 7 23:33:34 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit 38e0864fca3ba76f86537288dafd01a27567d4a9 -Author: abottoms-coder -Date: Thu Apr 7 15:49:46 2022 -0400 - - extra _ also failing tests, simplifying - -commit 2cdf722beab55cde4704e04abab17b0cb7d78819 -Author: abottoms-coder -Date: Thu Apr 7 15:15:15 2022 -0400 - - trying deploy, couldn't deploy via script - -commit 3f1667fb3eb0e59bdcbbf8e8a2d45aa1eadab373 -Author: abottoms-coder -Date: Thu Apr 7 13:29:25 2022 -0400 - - i hate when the server doesn't reload - -commit 1de11f548a732746595320a9035607b9262563bb -Author: abottoms-coder -Date: Thu Apr 7 13:11:49 2022 -0400 - - debugging this way is awful2 - -commit e3ed78b00e77ed19b2c1271c38aea120e9c33031 -Author: abottoms-coder -Date: Thu Apr 7 12:22:24 2022 -0400 - - debugging this way is awful - -commit 2898cd6f8168ec30eda0426b6eb3c0a9ec3180b9 -Author: abottoms-coder -Date: Thu Apr 7 12:09:22 2022 -0400 - - keyerror exception - -commit f62b315f55302f184c3af80536357168985b9861 -Author: abottoms-coder -Date: Thu Apr 7 11:49:12 2022 -0400 - - missed ) - -commit 9be7fbabc3eed32f03900c94db9d344cb96c2c51 -Author: abottoms-coder -Date: Thu Apr 7 11:44:07 2022 -0400 - - hopefully final debugging push/deploy - -commit a0738a981359d983a37e24017d9209768d29aa4c -Merge: e64edd651 d7f4003f6 -Author: Jorge Gonzalez -Date: Thu Apr 7 11:42:39 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit 28eab5d6c2af4b47a12e98c19d31dccc365c0865 -Merge: 0934cbbb1 d7f4003f6 -Author: Jorge Gonzalez -Date: Thu Apr 7 10:32:15 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit d7f4003f69ceff070133fb18431c0d9b672139d2 -Merge: d98946658 68a76dc40 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Apr 7 10:14:55 2022 -0400 - - Merge pull request #1738 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.50.0 - - Bump sass from 1.49.11 to 1.50.0 in /tdrs-frontend - -commit 68a76dc40444a8f8fbe5fcc16da68ec172c0df7a -Merge: 72f5b6cdb d98946658 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Apr 7 10:08:31 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.50.0 - -commit d98946658a8545dc5fa1244a95b532cca26951d2 -Merge: d2121afaa 564fb06e3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Apr 7 10:08:22 2022 -0400 - - Merge pull request #1724 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 - - chore: Upgrade react-router and react-router-dom - -commit 564fb06e36e810b465c224570e63bb9a7f671354 -Merge: 844850e80 d2121afaa -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Apr 7 09:56:26 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 - -commit 72f5b6cdb18e6dd1a51f6697dbd365e358d60562 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Apr 7 06:13:37 2022 +0000 - - Bump sass from 1.49.11 to 1.50.0 in /tdrs-frontend - - Bumps [sass](https://github.com/sass/dart-sass) from 1.49.11 to 1.50.0. - - [Release notes](https://github.com/sass/dart-sass/releases) - - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - - [Commits](https://github.com/sass/dart-sass/compare/1.49.11...1.50.0) - - --- - updated-dependencies: - - dependency-name: sass - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 2809410959b727272cadaafdafb7ed1723f7798d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:46:36 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - -commit 73fa6ea2ace8dba38d8828636b67184a9e4692a3 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:45:46 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - render missing words - -commit f524bb5ad963a26827614064497827f8c294e358 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:44:42 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - render missing words. - -commit 6e2ce9e11d3066cb07f91be8ff6c781a6fec5bcf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:42:30 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 7a0205653301bfe31172065115666ae1fbb310e4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:42:07 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - Co-authored-by: Steve Nino <101280598+stevenino@users.noreply.github.com> - -commit 55743f36a10e7c914cbd5eb1233b608948d67fdb -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:41:45 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - using github for images. - -commit 32b1b0764f636c747a9511b868bfa8f529c288c1 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:40:38 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 1271c772a3d70155f8f0fa87d3c0d34de7388722 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:40:24 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - using github for images. - -commit 64edf96c0f26cde5c363d93f2c6eae1cc273a167 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:39:29 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - using github for images. - -commit b4738c3c994186e9132471ff74cd6b58d6bca434 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:39:07 2022 -0400 - - Update docs/Security-Compliance/IR/Sys-Admin-Acct-Mgmt.md - - using github for images. - -commit 2fbc286ab13566acf9e9bd1357691ec8ae6073ca -Merge: 9baaa6c64 d2121afaa -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 16:19:11 2022 -0400 - - Merge branch 'raft-tdp-main' into adp/1642-ird-sysadmin - -commit d2121afaa03e6534e672d4d701b41733f55aedd1 -Merge: d4c32477c b99542eed -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 6 15:01:45 2022 -0400 - - Merge pull request #1722 from raft-tech/spike/1614-erd-automation - - [Spike]Entity Relation Diagram Automation - -commit 844850e806dbf2bff542b3386f86028780865554 -Merge: 7ecb70c50 d4c32477c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 13:42:19 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 - -commit b99542eed244defef4807d42851f82db6d0c8e40 -Merge: 597ec83ad d4c32477c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 6 13:04:56 2022 -0400 - - Merge branch 'raft-tdp-main' into spike/1614-erd-automation - -commit d4c32477c5b22f16edddc4aec08f8003879ef1ca -Merge: 45b7b1000 59e48f004 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 6 13:04:15 2022 -0400 - - Merge pull request #1720 from raft-tech/stevenino-patch-1 - - Update team-meetings.md - -commit 59e48f004fb16f4d811c8e328ce473287f6edea6 -Merge: 796c2e947 45b7b1000 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 6 12:57:30 2022 -0400 - - Merge branch 'raft-tdp-main' into stevenino-patch-1 - -commit 45b7b10006a9e18070727e1b6fc1a44d766a81a9 -Merge: 5c1ec2aa6 245e61114 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 6 12:55:47 2022 -0400 - - Merge pull request #1735 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.4 - - Bump @testing-library/jest-dom from 5.16.3 to 5.16.4 in /tdrs-frontend - -commit 6052536a0b6dbca6cecdc081253fa4c1ace3a411 -Merge: 48fcefcec 5c1ec2aa6 -Author: Miles Reiter -Date: Wed Apr 6 12:05:07 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit 7ecb70c502610a986c3b137724725c6871a240a6 -Merge: 067290a7f 5c1ec2aa6 -Author: Jorge Gonzalez -Date: Wed Apr 6 11:04:52 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 - -commit 245e61114c9a934bd9efc1b8b766630aba76573f -Merge: 58de08b45 5c1ec2aa6 -Author: Jorge Gonzalez -Date: Wed Apr 6 11:03:06 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.4 - -commit 5c1ec2aa69fcc4c1a88763e7730c37dacf6ff8a4 -Merge: e0f44fd9d 120a50798 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Apr 6 10:44:04 2022 -0400 - - Merge pull request #1703 from raft-tech/hotfix/clamav-env-var - - CLAMAV_NEEDED env var cleanup - -commit 8015554f50313b485a1204aeef07cfa13fb1fc20 -Author: abottoms-coder -Date: Wed Apr 6 10:24:32 2022 -0400 - - trying prints - -commit 58de08b45c0160901d901be16ec91b8307c4232d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Apr 6 06:14:12 2022 +0000 - - Bump @testing-library/jest-dom from 5.16.3 to 5.16.4 in /tdrs-frontend - - Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.16.3 to 5.16.4. - - [Release notes](https://github.com/testing-library/jest-dom/releases) - - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/jest-dom/compare/v5.16.3...v5.16.4) - - --- - updated-dependencies: - - dependency-name: "@testing-library/jest-dom" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit eda4f898da4089e1b9cfb9b4cc4474e4cde7cdbe -Author: abottoms-coder -Date: Tue Apr 5 16:26:09 2022 -0400 - - clamav is hungry - -commit 1cb66ee0b14f9368f74415ece6114529b4941b60 -Author: abottoms-coder -Date: Tue Apr 5 16:07:07 2022 -0400 - - putting hhsid behind if block for tests - -commit 0bf1cb391e17c57d7dc7d5b4aca684d077c6c782 -Author: abottoms-coder -Date: Tue Apr 5 15:57:39 2022 -0400 - - Updated wrong manifest - -commit 85d6bf58c307e49e1573629334d275c37990b98a -Author: abottoms-coder -Date: Tue Apr 5 15:53:17 2022 -0400 - - Dropping mem req - -commit 013c018b04b7420068cf0c0cb5a817449977b921 -Author: abottoms-coder -Date: Tue Apr 5 15:49:11 2022 -0400 - - Figuring out circleci - -commit 05da8145d77fd702fc1af9490486f2cf832c4c9c -Author: abottoms-coder -Date: Tue Apr 5 15:46:29 2022 -0400 - - Also experimenting with circleci - -commit ac4f75a1f2bb43415e37f6e1f37a4238fb2a5f05 -Author: abottoms-coder -Date: Tue Apr 5 15:40:20 2022 -0400 - - playing with different logging settings - -commit 120a5079890debe2f69526ebab5f3452640b6797 -Merge: ae5f2f7b8 e0f44fd9d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Apr 5 15:33:19 2022 -0400 - - Merge branch 'raft-tdp-main' into hotfix/clamav-env-var - -commit 3431c1ffa1c4373f37c1c37d56521fca72aecc7f -Author: abottoms-coder -Date: Tue Apr 5 14:36:05 2022 -0400 - - Removing old frontend docs, updates badges stuff. - -commit 5cbb0873a23edbbe64a888a34cb4e090e0d93e5a -Merge: 2266d24c0 36244858b -Author: abottoms-coder -Date: Tue Apr 5 14:28:06 2022 -0400 - - Merge conflict - -commit 2266d24c06ed5136440c520d5e8a1035be32a969 -Author: abottoms-coder -Date: Tue Apr 5 14:26:39 2022 -0400 - - Updates to use develop instead of raft-tdp-main in the docs folder - -commit a389f76cc8e51028c2d7c591a0e6b38c9e8fb8d5 -Author: abottoms-coder -Date: Tue Apr 5 14:17:48 2022 -0400 - - updating references to raft-tdp-main and absolute github links vs relative - -commit 0934cbbb11cb4784d18a783ccf95cb8a5f102483 -Merge: d8d2da522 e0f44fd9d -Author: Jorge Gonzalez -Date: Tue Apr 5 11:05:35 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit 067290a7f54ef48788d251a43c112227a6bdce7a -Merge: ed2f94dc8 e0f44fd9d -Author: Jorge Gonzalez -Date: Tue Apr 5 11:00:35 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.3.0 - -commit e0f44fd9d63f6463bf5debcd15ba2a2e2d50eb69 -Merge: 1d1de9734 e27d9058c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 10:59:32 2022 -0400 - - Merge pull request #1727 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.1.0 - - Bump concurrently from 7.0.0 to 7.1.0 in /tdrs-frontend - -commit d8d2da522435d95a1cfcf9f4cd972b2e3994842e -Merge: 87e72fe28 1d1de9734 -Author: Jorge Gonzalez -Date: Tue Apr 5 10:59:31 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit ae5f2f7b8d5cbf0d5ec8232fc0e18c959541c95b -Merge: 31b3b6322 1d1de9734 -Author: Jorge Gonzalez -Date: Tue Apr 5 10:57:50 2022 -0400 - - Merge branch 'raft-tdp-main' into hotfix/clamav-env-var - -commit 597ec83adfce81828fd1a034211637a798f802a4 -Merge: 900134bb2 1d1de9734 -Author: Jorge Gonzalez -Date: Tue Apr 5 10:56:47 2022 -0400 - - Merge branch 'raft-tdp-main' into spike/1614-erd-automation - -commit ed2f94dc84d96334484778a87dc360894a462a0b -Author: Jorge Gonzalez -Date: Tue Apr 5 10:52:45 2022 -0400 - - chore: bump react-router and react-router-dom - -commit 36244858bac80def6458b9fac5484fc2445e32a1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 10:26:36 2022 -0400 - - Update 009-git-workflow.md - -commit 2945a6b502455c7bc3c174db807ebb3c385cf444 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 10:23:23 2022 -0400 - - Update 018-versioning-and-releases.md - -commit d194736e5b6f6a03574c7efbce12a2a9a56317cb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 10:10:37 2022 -0400 - - Update 018-versioning-and-releases.md - -commit 62d36025fb3454127f76b45d1c6c1787ed4e6e91 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 10:04:40 2022 -0400 - - Update 018-versioning-and-releases.md - -commit 1885f780c3c8052ca3538cab324b0d9b5fe7c9cb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 09:56:32 2022 -0400 - - Update 008-deployment-flow.md - -commit 32b5c8c2e55a54a088da41e68066089ea7bb622f -Author: abottoms-coder -Date: Tue Apr 5 09:45:52 2022 -0400 - - First take at docs - -commit 44424d483e779ec3973b6a2ce73844fa741a0a95 -Author: abottoms-coder -Date: Tue Apr 5 09:38:23 2022 -0400 - - Creation of dummy file - -commit 266368f72f5ad8742a193127144a9ee73cb3672e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Apr 5 09:34:59 2022 -0400 - - Update 008-deployment-flow.md - -commit 9baaa6c64e3a6d19325e975599fc13929bb222eb -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Apr 4 17:16:49 2022 -0400 - - update sysadmin response drill - -commit 22dd090d396a3e7fd2d2058f7e3a982664d11003 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Apr 4 17:09:25 2022 -0400 - - added IR subdir, moved secrets md, added sysadmin md - -commit dc6e20a837f451287266b355996b268ca4af1c61 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Apr 4 16:44:35 2022 -0400 - - updated sc readme to mention new ir subdir - -commit 92bfd89f810f69853b2e5354b5dca4cc923d6f1b -Author: abottoms-coder -Date: Mon Apr 4 16:32:42 2022 -0400 - - undoing bypass - -commit 624ecf5650450e918955b4f8dac3e093094db9ed -Author: abottoms-coder -Date: Mon Apr 4 16:21:23 2022 -0400 - - bypassing build-test checks pt2 - -commit 07c9302ddcea87bed8cf2da0e9b0eff17d5c133a -Author: abottoms-coder -Date: Mon Apr 4 16:19:21 2022 -0400 - - bypassing build-test checks - -commit ace2a9106738e90168168114d24a7da4a33a35cd -Author: abottoms-coder -Date: Mon Apr 4 16:15:56 2022 -0400 - - updating logging to stdout, rnd2 - -commit f156f61916d93ef91ae76e17cadc83e058a7133f -Author: abottoms-coder -Date: Mon Apr 4 16:09:25 2022 -0400 - - updating logging to stdout - -commit 48fcefcecda10b1381ae194a4e593dcc57521dcc -Merge: 209274b79 1d1de9734 -Author: Miles Reiter -Date: Mon Apr 4 16:07:46 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit 779e3691b6825c27d1b89f76cff3591d695e5db1 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Apr 4 19:50:33 2022 +0000 - - Bump react-router-dom from 6.2.2 to 6.3.0 in /tdrs-frontend - - Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.2.2 to 6.3.0. - - [Release notes](https://github.com/remix-run/react-router/releases) - - [Commits](https://github.com/remix-run/react-router/commits/v6.3.0/packages/react-router-dom) - - --- - updated-dependencies: - - dependency-name: react-router-dom - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit e27d9058cb1d9e5f6fd9c821ca278ad7fd80e10b -Merge: efd5ca42d 1d1de9734 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 4 15:49:31 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.1.0 - -commit 1d1de9734fc7c1582c2456704d3f47a81f593682 -Merge: dcbd0c085 c38180f84 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 4 15:49:22 2022 -0400 - - Merge pull request #1701 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.18 - - Bump @fortawesome/react-fontawesome from 0.1.17 to 0.1.18 in /tdrs-frontend - -commit c38180f84b7b5037df5d87f9b9f020e9a04ce894 -Merge: 7282183e7 dcbd0c085 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 4 15:42:01 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.18 - -commit efd5ca42d7974d09e8f75376a1d466b7b2db1bb2 -Merge: 1585b8b78 dcbd0c085 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 4 15:41:49 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.1.0 - -commit dcbd0c0853ba6eb49517c5e40aae198434418c76 -Merge: 4ef3bb303 80fbfecfb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Apr 4 15:41:37 2022 -0400 - - Merge pull request #1728 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.11 - - Bump sass from 1.49.9 to 1.49.11 in /tdrs-frontend - -commit fc6b8fbb7fe2c90c08d8251dff4c7a3ed031d55b -Author: abottoms-coder -Date: Mon Apr 4 15:35:50 2022 -0400 - - Adding garbage debugging for local testing - -commit 209274b798a6b91ca61147c9e65d94f84f0643bc -Author: Miles Reiter -Date: Mon Apr 4 12:19:05 2022 -0400 - - Update .github/ISSUE_TEMPLATE/research-synthesis-issue-template.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit a1e06a36c08b3d95bddb57942356ef130d9896d4 -Author: Miles Reiter -Date: Mon Apr 4 12:18:53 2022 -0400 - - Update .github/ISSUE_TEMPLATE/research-planning-issue-template.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 62107cf6c0e383ed998603887b55be7071d4b7f6 -Author: Miles Reiter -Date: Mon Apr 4 12:18:37 2022 -0400 - - Update .github/ISSUE_TEMPLATE/research-synthesis-issue-template.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 07d435a87da690412214bd70af9986c52985d080 -Author: Miles Reiter -Date: Mon Apr 4 12:13:08 2022 -0400 - - Update .github/ISSUE_TEMPLATE/research-planning-issue-template.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 2a9c60e6dbc916af55ff4de3a3c77fce147fecb1 -Author: Miles Reiter -Date: Mon Apr 4 12:06:32 2022 -0400 - - Update .github/ISSUE_TEMPLATE/dev-ready-design-issue-template.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 3c8d4b50ead4eac86fa16bc92d20cb629c117555 -Author: Miles Reiter -Date: Mon Apr 4 12:06:24 2022 -0400 - - Update .github/ISSUE_TEMPLATE/dev-ready-design-issue-template.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit f4fab5948d8b9b79b023e38f3a6821e21b62d2cf -Author: abottoms-coder -Date: Mon Apr 4 11:59:00 2022 -0400 - - Minor updates, pushing - -commit 80fbfecfbc29d710883d690da3e8ad6bbd79d405 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Apr 4 06:11:56 2022 +0000 - - Bump sass from 1.49.9 to 1.49.11 in /tdrs-frontend - - Bumps [sass](https://github.com/sass/dart-sass) from 1.49.9 to 1.49.11. - - [Release notes](https://github.com/sass/dart-sass/releases) - - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - - [Commits](https://github.com/sass/dart-sass/compare/1.49.9...1.49.11) - - --- - updated-dependencies: - - dependency-name: sass - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 1585b8b7894c61ac32009fef899af60c4132c511 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Apr 4 06:11:36 2022 +0000 - - Bump concurrently from 7.0.0 to 7.1.0 in /tdrs-frontend - - Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 7.0.0 to 7.1.0. - - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - - [Commits](https://github.com/open-cli-tools/concurrently/compare/v7.0.0...v7.1.0) - - --- - updated-dependencies: - - dependency-name: concurrently - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit e64edd65156a719eacb6afc1f9585cfeeb004254 -Author: Aaron Beavers -Date: Fri Apr 1 14:40:27 2022 -0400 - - update pipfile - -commit 87e72fe28e03d741b927063105ff3d1853978cec -Merge: 66c93c8f0 4ef3bb303 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 1 13:08:02 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit 4ef3bb30308029255dc0362e80dba4ad21dce473 -Merge: be5538101 5578bad0e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Apr 1 13:07:34 2022 -0400 - - Merge pull request #1699 from raft-tech/feat/1692-data-file-upload-bug - - Feat/1692 data file upload bug - -commit 5578bad0e69760080ff4f6625fa58febc9dad188 -Merge: 2c3a1e7cb be5538101 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Apr 1 12:56:48 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug - -commit 66c93c8f01ca9ece815622b6eba7c9835b631903 -Merge: c4cf68554 be5538101 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 1 12:30:09 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit fed3819a841ff4c1e66de637cb42711417fc68d5 -Merge: 72b6ad0aa be5538101 -Author: Miles Reiter -Date: Fri Apr 1 12:02:01 2022 -0400 - - Merge branch 'raft-tdp-main' into docs/update-ux-templates - -commit 2c3a1e7cbac557c16c393bf1ead2c07058d44ef6 -Author: Aaron Beavers -Date: Fri Apr 1 10:25:10 2022 -0400 - - lint - -commit be55381017d6ecfba3782f3712e8e6fbf3a5fc49 -Merge: b744ac501 13f2ebf40 -Author: Miles Reiter -Date: Fri Apr 1 09:51:55 2022 -0400 - - Merge pull request #1702 from raft-tech/Update-Dev-Ready-Designs - - Adds submission history dev ready PDFs - -commit 13f2ebf40eea164a131e93a3497aca1f92966e2e -Merge: da589e5f8 b744ac501 -Author: Miles Reiter -Date: Fri Apr 1 09:46:04 2022 -0400 - - Merge branch 'raft-tdp-main' into Update-Dev-Ready-Designs - -commit a0c54acb15cb22490d3dd0f4b491104e64fe14d6 -Author: Aaron Beavers -Date: Thu Mar 31 16:35:15 2022 -0400 - - Add permissions to test - -commit 3c57310c7704ebd0a7adbe662975a5f3fd7da159 -Author: Aaron Beavers -Date: Thu Mar 31 16:22:27 2022 -0400 - - leverage permission list to decide if data files tab is visible - -commit 31b3b63220cf4e1d1ec5ce9caf31ee93cd531ef9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Mar 31 13:43:09 2022 -0400 - - Update tdrs-backend/tdpservice/settings/common.py - -commit 900134bb27b8dd94c8c959cb3692ad83efb05516 -Merge: 65d1b96fd b744ac501 -Author: Jorge Gonzalez -Date: Thu Mar 31 11:00:35 2022 -0400 - - Merge branch 'raft-tdp-main' into spike/1614-erd-automation - -commit 65d1b96fdc22fc693222bae80f8eee4d3cf2c499 -Author: abottoms-coder -Date: Thu Mar 31 09:28:00 2022 -0400 - - Cleanup of old command and reverting back branch - -commit 796c2e947291fa4b0fdfb966670f19e33e3d09d1 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Wed Mar 30 16:11:33 2022 -0700 - - Update team-meetings.md - -commit 36ddcb444ea07292bbb4ab673feff6dd08b4efd1 -Author: abottoms-coder -Date: Wed Mar 30 17:38:58 2022 -0400 - - can we run w/o sudo? - -commit dd0895b3ffc1742987d821e814238243e93f2213 -Author: abottoms-coder -Date: Wed Mar 30 17:30:32 2022 -0400 - - can we run w/o installing graphviz twice? - -commit ec982c946022982441c0ea267d4d0014efec6ba7 -Author: abottoms-coder -Date: Wed Mar 30 17:22:12 2022 -0400 - - can we run w/o backend spinup? - -commit 72b6ad0aaa2520aa4802c4288e233e30bf78e507 -Author: Miles Reiter -Date: Wed Mar 30 17:16:27 2022 -0400 - - Update research-synthesis-issue-template.md - -commit 9482728a7b285d8deba9bc957fd0738ff47625ef -Author: abottoms-coder -Date: Wed Mar 30 17:15:08 2022 -0400 - - running inside containers for pythonpath - -commit ce9ddf498b9d6c74e401bc7b8fedfbbfe572f034 -Author: abottoms-coder -Date: Wed Mar 30 17:13:44 2022 -0400 - - I wish local circleci would work - -commit f6384a9af8baaeedac352077499c89d2bb5de326 -Author: Miles Reiter -Date: Wed Mar 30 17:13:27 2022 -0400 - - Update research-synthesis-issue-template.md - -commit 47c3284a4cf2db8ec8e8fe8bc8665be0b6fca1ee -Author: Miles Reiter -Date: Wed Mar 30 17:12:48 2022 -0400 - - Create research-synthesis-issue-template.md - -commit d7fa0a6cb213cefbe288eec9baa0cd8a80d607f3 -Merge: 4f807ceec b744ac501 -Author: Miles Reiter -Date: Wed Mar 30 17:10:47 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit ba6fbd0f2a7df928c99671d38434a4b9bb9bf8d4 -Author: Miles Reiter -Date: Wed Mar 30 17:10:08 2022 -0400 - - Update research-planning-issue-template.md - -commit db32ddc230ee9d205e4815b36c1dce115f91b240 -Author: Miles Reiter -Date: Wed Mar 30 17:09:50 2022 -0400 - - Update research-facilitation-issue-template.md - -commit 97ae557593facbb343871a7b3740b6fe541ff006 -Author: abottoms-coder -Date: Wed Mar 30 17:09:42 2022 -0400 - - Might need this sudo-check here - -commit 6160f1721a8cae9e45bafda94a4f9234b6a1f957 -Author: abottoms-coder -Date: Wed Mar 30 17:08:24 2022 -0400 - - Might need this dev package - -commit b8d70f347dafbc4f15fcb57fe54e7f0bee32fe58 -Author: Miles Reiter -Date: Wed Mar 30 17:07:43 2022 -0400 - - Rename research-planning-issue-template-.md to research-planning-issue-template.md - -commit df3f729dded0a8d61b84d04fa893e059926c24ba -Author: Miles Reiter -Date: Wed Mar 30 17:07:20 2022 -0400 - - Update and rename research-facilitation-issue-template to research-facilitation-issue-template.md - -commit c123dee0a3530e398381ded53a0bd3896b328812 -Author: abottoms-coder -Date: Wed Mar 30 17:06:57 2022 -0400 - - Changing branch name to get this to run - -commit 874b1ec3e71de0200ad6ba67be48f802d2df2404 -Author: Miles Reiter -Date: Wed Mar 30 17:06:55 2022 -0400 - - Create research-facilitation-issue-template - -commit 8e2448cc49e7f7357ca690ad1f8a200de25e9a49 -Author: abottoms-coder -Date: Wed Mar 30 17:04:29 2022 -0400 - - Validated cfg - -commit 3ba3bb601f8bbdb5e3a5cb74ca0ee2a821b58a2a -Author: Miles Reiter -Date: Wed Mar 30 16:55:40 2022 -0400 - - Update research-planning-issue-template-.md - -commit 7d7448aec2fd0eedd69eae430bbf11a3f547e70b -Author: Miles Reiter -Date: Wed Mar 30 16:55:08 2022 -0400 - - Update and rename research-issue-template-.md to research-planning-issue-template-.md - -commit ab0f63f8f0357ed0455c590d78cb6e113e657dcb -Author: abottoms-coder -Date: Wed Mar 30 16:49:01 2022 -0400 - - First test in circleci - -commit 56b45fe6afe22e934f19e5cbe4974d1678dab524 -Author: Miles Reiter -Date: Wed Mar 30 16:09:34 2022 -0400 - - Update dev-ready-design-issue-template.md - -commit 56784b4d9e8b5c04a6376ab87c00ecf57fb5011b -Author: Miles Reiter -Date: Wed Mar 30 16:09:04 2022 -0400 - - Update and rename design-issue-template.md to dev-ready-design-issue-template.md - -commit 7282183e7468b3bdda5d54bf8f133bfa818f331c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Mar 30 19:08:08 2022 +0000 - - Bump @fortawesome/react-fontawesome in /tdrs-frontend - - Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.17 to 0.1.18. - - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) - - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.17...0.1.18) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/react-fontawesome" - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit b744ac501b027278fe9fda7c58f34690ea47101d -Merge: 1a385c2ff a67fc4e4a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 30 15:06:40 2022 -0400 - - Merge pull request #1710 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-6.1.1 - - Bump @fortawesome/fontawesome-svg-core from 1.3.0 to 6.1.1 in /tdrs-frontend - -commit a67fc4e4a230662d123f10476935389bc4e9e357 -Merge: 75d58d34f 1a385c2ff -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 30 15:00:48 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-6.1.1 - -commit 1a385c2ff57bc4f27eb50cab088f90f6239ee633 -Merge: 8fd867808 b2c23afe1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 30 15:00:36 2022 -0400 - - Merge pull request #1718 from raft-tech/stevenino-patch-1 - - Create sprint-43-summary.md - -commit b2c23afe1292e6d72f611e13d6ecb0b72c4e877a -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Mar 30 10:40:10 2022 -0400 - - Update docs/Sprint-Review/sprint-43-summary.md - -commit 3448fd43031f28f274d369b13bff060387632289 -Merge: 7195a9647 8fd867808 -Author: Aaron Beavers -Date: Wed Mar 30 10:29:08 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug - -commit c4555ffb3373463529b685f801f6a5bfa8cb40c7 -Author: abottoms-coder -Date: Wed Mar 30 09:42:15 2022 -0400 - - cleaning up variable for debugging line - -commit 4f807ceecb13595a390afa1970276484111561c1 -Merge: 0723ee6b8 8fd867808 -Author: Miles Reiter -Date: Tue Mar 29 20:30:42 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit 30332f4e6d44c93a8ec79e7207ae15bcc817df77 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Mar 29 16:51:40 2022 -0700 - - Create sprint-43-summary.md - -commit 0723ee6b81e7498c1aca4f5cbd451a90360462d5 -Author: Aaron Beavers -Date: Tue Mar 29 15:45:43 2022 -0400 - - update django admin 508 to 0.1.8 - -commit da589e5f899f3f38139e5c1199b273dce9014f7a -Merge: b9165a9c5 8fd867808 -Author: Miles Reiter -Date: Tue Mar 29 10:10:07 2022 -0400 - - Merge branch 'raft-tdp-main' into Update-Dev-Ready-Designs - -commit 75d58d34f978d740484a81efc10fd3285e446545 -Merge: aab4fdf33 8fd867808 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 29 09:55:11 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-6.1.1 - -commit 8fd8678081f08d4e307e8be3d02c18eb871b7e96 -Merge: 3a7e78346 d8a0c7198 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 29 09:41:46 2022 -0400 - - Merge pull request #1712 from raft-tech/stevenino-patch-1 - - Update team-meetings.md - -commit b9165a9c5a03aff7448e5412174540cba5abb61b -Author: Miles Reiter -Date: Tue Mar 29 00:01:57 2022 -0400 - - Update README.md - -commit d8a0c7198df40a82aaa95600c8a880744f6aa433 -Merge: 04977d428 3a7e78346 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Mar 28 14:10:36 2022 -0700 - - Merge branch 'raft-tdp-main' into stevenino-patch-1 - -commit 652980199e0216be094c47b9257bbefd8c3c0ac0 -Author: abottoms-coder -Date: Mon Mar 28 16:02:04 2022 -0400 - - Per feedback from Aaron, adjusting to explicit type casts and handling of this variable. Also made an improvements to wait_for_services - -commit 04977d42880fb1c1eb7c465abe5de3fffce10849 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Mar 28 12:59:49 2022 -0700 - - Update docs/How-We-Work/team-meetings.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 2dc7cb368f4f1688ffa4febb388e72458704f2ef -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Mar 28 12:59:26 2022 -0700 - - Update docs/How-We-Work/team-meetings.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 0cbc737ea41274e1fa2af71d76fb53903b354ca6 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Mar 28 12:59:09 2022 -0700 - - Update docs/How-We-Work/team-meetings.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 3a7e78346280d38fe20691a83ca0c434f4e0cadb -Merge: 47088018a 914dae51e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 28 14:44:02 2022 -0400 - - Merge pull request #1675 from raft-tech/feat/1640-stt-form - - feat(1640): optionally display the STT field based on user email address - -commit aab4fdf33690e1e84cdc3c1ed50caf1a886a099b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 28 18:33:25 2022 +0000 - - Bump @fortawesome/fontawesome-svg-core in /tdrs-frontend - - Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.3.0 to 6.1.1. - - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/Font-Awesome/commits/6.1.1) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/fontawesome-svg-core" - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 914dae51ebf569002c11a5a4d1a06003df687534 -Merge: 7fd64bca7 47088018a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 28 14:32:24 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit 47088018a86ee2e3529d3d6fd3244cd602850052 -Merge: d820396c4 d783c8990 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 28 14:32:09 2022 -0400 - - Merge pull request #1714 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/minimist-1.2.6 - - Bump minimist from 1.2.5 to 1.2.6 in /tdrs-frontend - -commit 7c03dea46788f7c7fcc45942377a426ce9df5eba -Author: Aaron Beavers -Date: Mon Mar 28 11:07:32 2022 -0400 - - update django admin 508 - -commit 61a65ff7f39205f618c1bc4ad1013cb5c6aaef19 -Merge: 80ffd4de3 d820396c4 -Author: Aaron Beavers -Date: Mon Mar 28 11:00:36 2022 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit 7fd64bca73fec7339034f00928ee8ed073feb05f -Merge: 9e42069c7 d820396c4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Mar 28 10:43:52 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit d783c8990942f7e48e4c3fc34797cf6e76f87d77 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 28 14:33:59 2022 +0000 - - Bump minimist from 1.2.5 to 1.2.6 in /tdrs-frontend - - Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - - [Release notes](https://github.com/substack/minimist/releases) - - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) - - --- - updated-dependencies: - - dependency-name: minimist - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit d820396c4dbc861fc652ed873430a2e0f3c5a6fc -Merge: 1f109fbdc a10396e08 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 28 10:32:22 2022 -0400 - - Merge pull request #1715 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.12.0 - - Bump eslint from 8.11.0 to 8.12.0 in /tdrs-frontend - -commit 9e42069c72f6caf2afba100db5ffe46a8c68b9be -Merge: 4fcfc9220 1f109fbdc -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Mar 28 10:28:02 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit a10396e089be1f37f37385cce9ef1494b52f6f42 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 28 13:05:50 2022 +0000 - - Bump eslint from 8.11.0 to 8.12.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.11.0 to 8.12.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.11.0...v8.12.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 1f109fbdcbd403ffcab77111bde1cf39133b597f -Merge: 5a93004d3 194fc5342 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 28 09:04:32 2022 -0400 - - Merge pull request #1713 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.3 - - Bump @testing-library/jest-dom from 5.16.2 to 5.16.3 in /tdrs-frontend - -commit 194fc5342f74f8756c648196afd5d6b09004750a -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Mar 25 17:06:47 2022 +0000 - - Bump @testing-library/jest-dom from 5.16.2 to 5.16.3 in /tdrs-frontend - - Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.16.2 to 5.16.3. - - [Release notes](https://github.com/testing-library/jest-dom/releases) - - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/jest-dom/compare/v5.16.2...v5.16.3) - - --- - updated-dependencies: - - dependency-name: "@testing-library/jest-dom" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 5a93004d365ea5389d21d6a50987641d23a29620 -Merge: bc19beb49 eedb0282e -Author: Jorge Gonzalez -Date: Fri Mar 25 13:05:36 2022 -0400 - - Merge pull request #1711 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-6.1.1 - -commit 8a2db7f2f017aafab7f14b2db06bdcf07f92fda8 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 25 11:06:45 2022 -0400 - - Update docs/How-We-Work/team-meetings.md - -commit 2c1bf3bddbfe3960f04ea52a745c4a54dba203fc -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Fri Mar 25 07:44:13 2022 -0700 - - Update docs/How-We-Work/team-meetings.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit a4da1501ead0ed9a0bee24c2b8205659cb8e6efc -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 25 10:24:57 2022 -0400 - - Update docs/How-We-Work/team-meetings.md - -commit a7bf2918d4d096ec8e949fd18434281004e0b108 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 25 10:23:53 2022 -0400 - - Update docs/How-We-Work/team-meetings.md - -commit c47a3d12028e03c5afa95286ab1115eede500365 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 25 10:22:26 2022 -0400 - - Update docs/How-We-Work/team-meetings.md - -commit 26738884495d6eabd8d0c461f94b57d8eafd811e -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 25 10:19:09 2022 -0400 - - Update docs/How-We-Work/team-meetings.md - -commit f1513295cee1fbec48c2f7632096b2a4d37f9434 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Thu Mar 24 13:12:50 2022 -0700 - - Update team-meetings.md - - Updating with the new meeting cadence and the updated descriptions of the meetings along with the facilitator role. - -commit bc8d7563b8325a6085fe250d8c5a6cdb45ce9a55 -Merge: 4a36c2adb 7195a9647 -Author: abottoms-coder -Date: Thu Mar 24 13:45:42 2022 -0400 - - Merge branch 'feat/1692-data-file-upload-bug' into hotfix/clamav-env-var - -commit 4fcfc92208116746ff9a34343a9c3cf6bf0db5d1 -Author: Jorge Gonzalez -Date: Thu Mar 24 11:57:58 2022 -0400 - - fix: request access validation tests - -commit 7195a9647393c37149a05d39cbb892ba493bd0d1 -Merge: 40c03e97f bc19beb49 -Author: Aaron Beavers -Date: Thu Mar 24 11:42:10 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug - -commit 40c03e97fc1f02095a8c35686223302ce42d517c -Author: Aaron Beavers -Date: Thu Mar 24 11:27:02 2022 -0400 - - lint - -commit 4a36c2adb9ccb1639c872742111a1d15eefc7748 -Author: abottoms-coder -Date: Thu Mar 24 11:22:01 2022 -0400 - - Added explaining comment - -commit 88e826cb3b347e36b7201cc5239df4016784046f -Author: abottoms-coder -Date: Thu Mar 24 11:13:28 2022 -0400 - - Tweaking the alias - -commit abdb05867e1d2e33b4d8931050994b8674fe275f -Merge: 3424f92d1 2a3039210 -Author: abottoms-coder -Date: Thu Mar 24 10:21:32 2022 -0400 - - Merge branch 'feat/1692-data-file-upload-bug' into hotfix/clamav-env-var - -commit 3424f92d1c095121e94def07783635cb9bdb610b -Author: abottoms-coder -Date: Thu Mar 24 10:20:45 2022 -0400 - - new alias - -commit 2a30392104776f5bedd6e4f98e2df685e1d044be -Author: Aaron Beavers -Date: Wed Mar 23 15:10:41 2022 -0400 - - Developers can now have an stt assigned to them - -commit 46e626994fba88ee49a029dd9480764cc3ba6064 -Merge: 2a8a295c8 bc19beb49 -Author: Jorge Gonzalez -Date: Wed Mar 23 09:28:46 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit eedb0282e81713db7709c553dae688ad998eb0d9 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Mar 23 06:17:37 2022 +0000 - - Bump @fortawesome/free-solid-svg-icons in /tdrs-frontend - - Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 6.0.0 to 6.1.1. - - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.0.0...6.1.1) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/free-solid-svg-icons" - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit bc19beb498dc89a3041667829b6a77e659f04d04 -Merge: 8e489767e 613c63fe0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 22 10:19:16 2022 -0400 - - Merge pull request #1704 from raft-tech/doc/1592-sitemapsynthesis - - Create Sitemap Survey Research Synthesis.md - -commit b14df5814a907c8202ebd50cd7167863018a36c7 -Author: Aaron Beavers -Date: Tue Mar 22 09:55:44 2022 -0400 - - Fix prettier linting issue - -commit 613c63fe0f407d679b8227125f1929829c61cceb -Merge: 4f697754c 8e489767e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 22 09:21:53 2022 -0400 - - Merge branch 'raft-tdp-main' into doc/1592-sitemapsynthesis - -commit 8e489767ebaa00739142bc23a7e9e336e92afd76 -Merge: beb83329e 612205b8d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 22 09:21:47 2022 -0400 - - Merge pull request #1695 from raft-tech/stevenino-patch-1 - - Create sprint-42-summary.md - -commit 612205b8dfb7920d70633f31265e6e7b60c79610 -Merge: 82144d2c8 beb83329e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 22 09:15:25 2022 -0400 - - Merge branch 'raft-tdp-main' into stevenino-patch-1 - -commit beb83329e3fe9a135b790d396317311895e3644d -Merge: c7fcaf961 98a0a3fb5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 22 09:15:05 2022 -0400 - - Merge pull request #1696 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.6.0 - - Bump prettier from 2.5.1 to 2.6.0 in /tdrs-frontend - -commit 98a0a3fb514f3c4eaad9da13a2abb946c8a0a699 -Merge: e19cb6fdb c7fcaf961 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 21 13:40:40 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.6.0 - -commit 82144d2c8d0da08ef2c8d9ed93ae59e0710f5323 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Mar 21 09:25:47 2022 -0700 - - Update docs/Sprint-Review/sprint-42-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 75a5b50bdecc1ada60cd9aa2ba5133bc165e6d20 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Mon Mar 21 09:25:36 2022 -0700 - - Update docs/Sprint-Review/sprint-42-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 4f697754c5cd9ef00b47b80285b285f4fea8cb25 -Author: spurayannur <89534038+sreedevip@users.noreply.github.com> -Date: Mon Mar 21 12:20:08 2022 -0400 - - Create Sitemap Survey Research Synthesis.md - -commit d6477ce3fee2625ac7f376475ee44d656f4c5489 -Author: abottoms-coder -Date: Mon Mar 21 11:57:52 2022 -0400 - - Added set-backend for all runs of deploy_backend for testing -- hope this always sets updated vars now - -commit f2c63425dd01c596b0f1eb4d97884816992a0f64 -Author: abottoms-coder -Date: Mon Mar 21 10:26:10 2022 -0400 - - one line change for a default - -commit 093faf979c7333bfa4ecb739f8aedd1fec938e73 -Author: Miles Reiter -Date: Fri Mar 18 17:26:47 2022 -0400 - - Update README.md - -commit 132d3a4d701934557596c2dc2b1e62c47b00e33a -Author: Miles Reiter -Date: Fri Mar 18 15:45:31 2022 -0400 - - Adds submission history dev ready PDFs - -commit baedbeb046df569090d22f6d12bc39e553d60381 -Merge: 4a64278d3 78491e6cf -Author: Aaron Beavers -Date: Fri Mar 18 13:18:20 2022 -0400 - - Merge remote-tracking branch 'origin/feat/1692-data-file-upload-bug' into feat/1692-data-file-upload-bug - -commit 4a64278d31ac745a399ec363202b6ec1e99741e5 -Author: Aaron Beavers -Date: Fri Mar 18 13:06:52 2022 -0400 - - remove unused code - -commit 78491e6cff75ec619871cd2e7010da2122f4ec9a -Merge: 9a18d7d18 c7fcaf961 -Author: Miles Reiter -Date: Fri Mar 18 12:34:35 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1692-data-file-upload-bug - -commit 2a8a295c8309759c52984179ae5f17f870df872a -Merge: 1ff79ee37 c7fcaf961 -Author: Jorge Gonzalez -Date: Thu Mar 17 15:33:47 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit c7fcaf961eacf997540caa22177b522d9ba02464 -Merge: 5597c28f8 dafa30d35 -Author: Miles Reiter -Date: Thu Mar 17 15:11:24 2022 -0400 - - Merge pull request #1688 from raft-tech/restore-stakeholder-and-personas - - Restore stakeholder and personas - -commit 72d2c666bdbc29cdf9fa8c7be0af2afee5228fe0 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Thu Mar 17 07:40:26 2022 -0700 - - Update docs/Sprint-Review/sprint-42-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 867f076e03adf9a163fa1a148256edb483a0e677 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Thu Mar 17 07:37:23 2022 -0700 - - Update docs/Sprint-Review/sprint-42-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 9a18d7d1882ff06e059ba8274ba9324ed3fae719 -Author: Aaron Beavers -Date: Wed Mar 16 14:28:45 2022 -0400 - - update tests to pass for new changes - -commit be9c23d1d837837c0421b77f7fab4b430cb6d29d -Author: Aaron Beavers -Date: Wed Mar 16 14:28:36 2022 -0400 - - Add new permission code with helpers - -commit 533a15370e4c0497535cc2f3cff4286c4892147e -Author: Aaron Beavers -Date: Wed Mar 16 14:28:20 2022 -0400 - - remove old permission code - -commit 1ff79ee37c9f02524e2acaf81f1be05dbef96eaa -Author: Jorge Gonzalez -Date: Wed Mar 16 10:45:38 2022 -0400 - - fix: stt form validation - -commit c4cf68554af38c923b118a8a02bfc872ae61879d -Merge: bdc67c49c 5597c28f8 -Author: Jorge Gonzalez -Date: Wed Mar 16 09:21:22 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit e19cb6fdbe4fcf7788e7aa8bf0f5e76e95f49172 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Mar 16 06:10:53 2022 +0000 - - Bump prettier from 2.5.1 to 2.6.0 in /tdrs-frontend - - Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.0. - - [Release notes](https://github.com/prettier/prettier/releases) - - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/prettier/compare/2.5.1...2.6.0) - - --- - updated-dependencies: - - dependency-name: prettier - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 4f4b21c0ca19048970edc2d630d68d5712e36361 -Author: Steve Nino <101280598+stevenino@users.noreply.github.com> -Date: Tue Mar 15 13:49:45 2022 -0700 - - Create sprint-42-summary.md - -commit 80ffd4de3c35c0df517f9a3426f767187910d564 -Merge: 9b05d03c7 5597c28f8 -Author: Aaron Beavers -Date: Tue Mar 15 13:12:40 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit c9eadd0621fea8ed805439b7a926c011ed73c981 -Merge: 61aaccaed 2f74f47a4 -Author: Jorge Gonzalez -Date: Tue Mar 15 12:26:31 2022 -0400 - - Merge branch 'feat/1640-stt-form' of https://github.com/raft-tech/TANF-app into feat/1640-stt-form - -commit 61aaccaed1d7d02fea5b8dfb287e5bc991ebe9fc -Author: Jorge Gonzalez -Date: Tue Mar 15 12:26:16 2022 -0400 - - fix: frontend tests - -commit 2f74f47a47c2fe0b4f32267eb508d9160de28eb8 -Merge: 52fd673bc 5597c28f8 -Author: Jorge Gonzalez -Date: Tue Mar 15 11:52:15 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit dafa30d35ba5f3b5fdc995f56170b2ee42c9de1a -Merge: ca4a52e63 5597c28f8 -Author: Miles Reiter -Date: Tue Mar 15 11:09:42 2022 -0400 - - Merge branch 'raft-tdp-main' into restore-stakeholder-and-personas - -commit ca4a52e63795c3d9aeae10418b8a3d90263e0da3 -Author: Miles Reiter -Date: Tue Mar 15 11:09:35 2022 -0400 - - Update docs/User-Experience/Research-Syntheses/2020, Summer - Understanding Stakeholders and creating personas.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 0bed32393e81b3163fbc2829f40b86acb3d1ad4b -Author: Miles Reiter -Date: Tue Mar 15 11:09:30 2022 -0400 - - Update docs/User-Experience/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 34bac865b86eee04d702e880af70cd994cc8b68b -Author: Miles Reiter -Date: Tue Mar 15 11:09:15 2022 -0400 - - Update docs/User-Experience/README.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 5597c28f8efc6cc866505c10df1a863dd33324e9 -Merge: a5e7ee06f f4b01dc84 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 15 10:07:43 2022 -0400 - - Merge pull request #1648 from raft-tech/feat/skip-clamav-locally - - Skip clamav locally - -commit f4b01dc848ad1e7a351224429824fd8ff57e9f08 -Merge: 5f7b595fb a5e7ee06f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Mar 15 09:14:23 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/skip-clamav-locally - -commit bdc67c49cfb8a02fe3e5bd74d9e85f14e791be67 -Merge: ebd91d4eb a5e7ee06f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Mar 15 09:14:08 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit 52fd673bc7c53fea1d52c37588403a82e4412385 -Merge: b78f42232 a5e7ee06f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Mar 15 09:11:05 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit 1af7c4a4dcd5c30477fba1de05043e65ca5280f0 -Merge: 4d9723c8f a5e7ee06f -Author: Miles Reiter -Date: Mon Mar 14 17:24:13 2022 -0400 - - Merge branch 'raft-tdp-main' into restore-stakeholder-and-personas - -commit 4d9723c8fa314d1ef767694169529cb6ca88ed6c -Author: Miles Reiter -Date: Mon Mar 14 17:20:15 2022 -0400 - - Corrects link - -commit a5e7ee06f11ccf426feab6218b0c2fa1fde79767 -Merge: 85a6a48ae b2e97966d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 14 17:18:40 2022 -0400 - - Merge pull request #1687 from raft-tech/lfrohlich-patch-1 - - Update with Steve's name - -commit 699f69357b208342620a9e9674e560984e2ac18b -Author: Miles Reiter -Date: Mon Mar 14 17:17:59 2022 -0400 - - Updates main UX readme with direct link to stakeholders and personas doc - -commit e316e0068228a3c6be67b736c6d9602d90519392 -Author: Miles Reiter -Date: Mon Mar 14 17:16:14 2022 -0400 - - Updates readme with a non placeholder description for stakeholders doc - -commit 9b5c821fa332088d24bbd26a9ecbef9bc2d9f550 -Author: Miles Reiter -Date: Mon Mar 14 17:12:07 2022 -0400 - - Fixes small layout issue - -commit 8dbf36209d76531657610cddbd8ec409fcd57787 -Author: Miles Reiter -Date: Mon Mar 14 17:11:22 2022 -0400 - - Update existing markdown doc with updated content - -commit b2e97966d73f693f3a2c2638eb3e8cdf974f2409 -Merge: 2e7d162c4 85a6a48ae -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 14 17:09:30 2022 -0400 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-1 - -commit 36c94aee0f036a825b211e84a52b7d50eac31f87 -Author: Miles Reiter -Date: Mon Mar 14 17:09:08 2022 -0400 - - Delete Stakeholders-and-Personas.md - -commit 85a6a48ae859144e9f24abe69738a85f64aebdda -Merge: 248db158a 0c1b257fa -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 14 15:35:54 2022 -0400 - - Merge pull request #1689 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.11.0 - - Bump eslint from 8.10.0 to 8.11.0 in /tdrs-frontend - -commit b78f422329f63337da0c5500d6942507fa9e7f79 -Author: Jorge Gonzalez -Date: Mon Mar 14 14:52:15 2022 -0400 - - fix: validation - -commit 4a75b9d68fabb623ee42badc7da87a0ae9349ca6 -Merge: 73c1d6985 248db158a -Author: Jorge Gonzalez -Date: Mon Mar 14 14:07:10 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit 9b05d03c7c0390e61597fa68ea4a753b7d1f1983 -Author: Aaron Beavers -Date: Mon Mar 14 14:00:56 2022 -0400 - - update django admin 508 to 0.1.6 - -commit 0c1b257fa2b59084072fed2a6871787560f1408b -Merge: 002398018 248db158a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 14 13:38:33 2022 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.11.0 - -commit 248db158ac510af425113aad8f24ed790e958c4c -Merge: dce4b5f4d e5256a7b2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Mar 14 13:38:26 2022 -0400 - - Merge pull request #1668 from raft-tech/feat/1358-ocio-groups - - feat(1358): create default ACF OCIO permissions group - -commit ebd91d4eb33af332bbcbb9087039133a1bba3365 -Merge: 6b49644f3 dce4b5f4d -Author: Jorge Gonzalez -Date: Mon Mar 14 10:00:55 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit 73c1d69853d3dc9fcef750ab1e6d6ad6a71b52c5 -Merge: 436154239 dce4b5f4d -Author: Jorge Gonzalez -Date: Mon Mar 14 10:00:24 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit 5f7b595fb2429aeaad7c0ae3095c94964fbebe17 -Merge: f107ea66a dce4b5f4d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Mar 14 09:21:20 2022 -0400 - - Merge branch 'raft-tdp-main' into feat/skip-clamav-locally - -commit 00239801814e77c555bcf201ff1d04eb0ab7aeae -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 14 06:16:02 2022 +0000 - - Bump eslint from 8.10.0 to 8.11.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.10.0 to 8.11.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.10.0...v8.11.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit cc63b67fc420823a11f924ea58af86df8ccb1e96 -Author: Miles Reiter -Date: Sun Mar 13 23:29:44 2022 -0400 - - Update README.md - -commit df619577449e392e12c2053e0e08b02261d6a730 -Author: Miles Reiter -Date: Sun Mar 13 23:27:38 2022 -0400 - - Adds link to restored doc to readme - -commit 175111dacfb4188700675051d892ec675c59acb4 -Author: Miles Reiter -Date: Sun Mar 13 23:15:36 2022 -0400 - - Update and rename Stakeholders-And-Personas.md to Stakeholders-and-Personas.md - -commit f9d8c12300fcc9a96df7522d2339b16df3ecb216 -Author: Miles Reiter -Date: Sun Mar 13 23:08:35 2022 -0400 - - Create Stakeholders-And-Personas.md - -commit 2e7d162c4a2b6601a71fa00690f7c48f0a5a4a9b -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 11 16:30:38 2022 -0500 - - Update docs/How-We-Work/Team-Composition.md - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 1a9699a4a3d05c81ee33d97ccb08da96bda0b578 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 11 15:09:16 2022 -0500 - - Update Team-Composition.md - -commit e679457b2846086407792f5e5a070fe0bba38503 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Mar 11 15:03:25 2022 -0500 - - Update with Steve - -commit e5256a7b2dd016330c6bb501804c0906d731db0a -Merge: bf8c0c5fa dce4b5f4d -Author: Jorge Gonzalez -Date: Fri Mar 11 13:11:36 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1358-ocio-groups - -commit dce4b5f4decfabfac72ece14f7be8da871f91144 -Merge: 139dbd8fe f8b87f736 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 11 12:03:44 2022 -0500 - - Merge pull request #1685 from raft-tech/update-default-su - - Update cloudgov.py - -commit f8b87f736c729087e0e5c8142e2fe9f3d1d312f3 -Merge: e3183c31a 139dbd8fe -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 11 11:44:25 2022 -0500 - - Merge branch 'raft-tdp-main' into update-default-su - -commit 139dbd8fea49a6264fc9c02521c93899aec903ff -Merge: 83e870f87 898400a28 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 11 11:44:09 2022 -0500 - - Merge pull request #1678 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.2 - - Bump uswds from 2.12.1 to 2.13.2 in /tdrs-frontend - -commit 898400a28c000fee1f07450a8e52e89a25f34bd4 -Merge: 9cb4177cd 83e870f87 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 11 11:35:51 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.2 - -commit 83e870f8732ab2a102023c12a7422664f785a6f5 -Merge: 2ff63dc3a 939a40e3a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 11 11:35:39 2022 -0500 - - Merge pull request #1677 from raft-tech/react-router-bump - - chore(react-router): Bump react-router and react-router-dom to 6.2.2 - -commit e3183c31a7854017da8f0ca1fdf57eb88c04f7cf -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 11 11:21:33 2022 -0500 - - Update cloudgov.py - -commit 939a40e3a780f375e93baf6895771acb8253457c -Merge: 8b5878731 2ff63dc3a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Mar 11 10:15:28 2022 -0500 - - Merge branch 'raft-tdp-main' into react-router-bump - -commit f107ea66a6732e4a33002e984871d957ca9b386d -Merge: 7eda7e70d 2ff63dc3a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Mar 10 17:01:00 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/skip-clamav-locally - -commit 7eda7e70d46c6dd8a010c42bfa64a814a7a4d5bb -Author: abottoms-coder -Date: Thu Mar 10 16:49:19 2022 -0500 - - dummy commit to trigger deployment - -commit 9cb4177cdac64964a0ad20ba3c8e6e7be8951461 -Merge: 908fa9222 2ff63dc3a -Author: Jorge Gonzalez -Date: Thu Mar 10 14:46:35 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.13.2 - -commit 436154239455f93a56af1b6bb30089ece6e1c4fc -Author: Jorge Gonzalez -Date: Thu Mar 10 14:45:33 2022 -0500 - - fix: address Home tests with the stt box guard - -commit aefe4b34726e3a9eedf42107a2ff221a4a2a0d29 -Merge: 4a0215a77 2ff63dc3a -Author: Jorge Gonzalez -Date: Thu Mar 10 14:34:56 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit ec53557493e9837b8ac1b00dcebfc886a98a1591 -Merge: ec8234e4c d33e27a51 -Author: abottoms-coder -Date: Thu Mar 10 12:21:47 2022 -0500 - - Merge from local-dockerfile branch - -commit 2ff63dc3a6ebbc87425e59680845f73ac366ab26 -Merge: d1d313ef0 08766da1a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Mar 10 12:19:15 2022 -0500 - - Merge pull request #1683 from raft-tech/deps/buildpack-updates - - Update buildpack-changelog.md - -commit ec8234e4c7d04ec98005a2f12499b0ecfffbb264 -Author: abottoms-coder -Date: Thu Mar 10 12:18:44 2022 -0500 - - Adding CLAMAV_NEEDED as necessary/default envvar for cloud.gov deployments with this script..hopefully... - -commit 3db6a7d0a747b83ec7be039a8621556452ab06fd -Author: abottoms-coder -Date: Thu Mar 10 12:07:46 2022 -0500 - - Resolved login loop, needed to match target - -commit 08766da1a863c6ef29cf730a049702b2d432d93d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Mar 10 10:50:48 2022 -0500 - - Update buildpack-changelog.md - -commit 8b587873161c4424aab26069a640624d9e34c9e9 -Merge: 8be7364bf d1d313ef0 -Author: Jorge Gonzalez -Date: Thu Mar 10 10:27:04 2022 -0500 - - Merge branch 'raft-tdp-main' into react-router-bump - -commit 908fa9222479312f6751bf89c564d6978d49d00f -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Mar 10 14:21:30 2022 +0000 - - Bump uswds from 2.12.1 to 2.13.2 in /tdrs-frontend - - Bumps [uswds](https://github.com/uswds/uswds) from 2.12.1 to 2.13.2. - - [Release notes](https://github.com/uswds/uswds/releases) - - [Commits](https://github.com/uswds/uswds/compare/v2.12.1...v2.13.2) - - --- - updated-dependencies: - - dependency-name: uswds - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit d1d313ef08943c792de22aca853aa4825a94633b -Merge: 3d554fd34 e974a3e5f -Author: Jorge Gonzalez -Date: Thu Mar 10 09:20:37 2022 -0500 - - Merge pull request #1681 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.4 - -commit e974a3e5f135c5106146542a2879e3e5fe8586c2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Mar 10 06:11:10 2022 +0000 - - Bump @testing-library/react from 12.1.3 to 12.1.4 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.3 to 12.1.4. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.3...v12.1.4) - - --- - updated-dependencies: - - dependency-name: "@testing-library/react" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 3d554fd34166cc7ceaff988fbed0c7f12e881254 -Merge: 1f497618a a95d0bf0f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 9 11:56:53 2022 -0500 - - Merge pull request #1659 from raft-tech/feat/1439-separate-rds-databases - - Feat/1439 separate rds databases - -commit a95d0bf0fb1284ee513207dc2abdf0ece3afa299 -Merge: e69ed9f1a 1f497618a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 9 11:35:04 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1439-separate-rds-databases - -commit 1f497618abe653fc6b3f2f2566758650c85ba041 -Merge: 4891de4bf 953138be6 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Mar 8 12:59:11 2022 -0500 - - Merge pull request #1657 from raft-tech/feat/1540-shared-authentication-tests - - Feat/1540 shared authentication tests - -commit 4a0215a77b42e9e21e77aaa323eefa09490bb794 -Merge: 8c18312a1 4891de4bf -Author: Jorge Gonzalez -Date: Tue Mar 8 11:08:49 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1640-stt-form - -commit e69ed9f1ad6503a170bd785139b44d95679a84dd -Merge: 01a1be118 4891de4bf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Mar 7 17:07:49 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1439-separate-rds-databases - -commit 953138be6890bea131e0e2ce843840a2efbf08a1 -Merge: 313d0fca9 4891de4bf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Mar 7 17:07:31 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests - -commit 8be7364bfba225df083979e1cf9747463f1ece68 -Author: Jorge Gonzalez -Date: Mon Mar 7 11:32:37 2022 -0500 - - chore: upgrade react-router packages; remove unused resolutions block - -commit 6b49644f3a55eb6f5a697364654aea2f1deaefb4 -Merge: 523ce5514 4891de4bf -Author: Jorge Gonzalez -Date: Mon Mar 7 11:15:08 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit 4891de4bfb6679db43691160fb9cbb7d50387873 -Merge: 832073f8f 4e0ec3ea0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Mar 4 14:04:43 2022 -0500 - - Merge pull request #1673 from raft-tech/feat/1534-updating-to-latest-zaproxy - - Issue 1534: Fix zap scan parameters - -commit 523ce55141288d200197a80f31bdb2f541dc975c -Author: Jorge Gonzalez -Date: Fri Mar 4 10:00:59 2022 -0500 - - fix: deregister LogEntry - -commit 4e0ec3ea042f225027062cb6f0bfb5ba5c9c6892 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Mar 4 10:00:27 2022 -0500 - - reverting temp scan rules used for testing - -commit 9da69c6ef3e1807c9761e3f478b3662cbe31b05a -Author: Jorge Gonzalez -Date: Thu Mar 3 17:03:37 2022 -0500 - - chore: lint - -commit 8c18312a1a4c30c415e0ed37fd8568bfc078657d -Author: Jorge Gonzalez -Date: Thu Mar 3 16:53:00 2022 -0500 - - feat: optionally display the STT field based on user email address - -commit cb8dce3273d744557fce2824a15ed618335c401c -Merge: 0e56a72b4 832073f8f -Author: Jorge Gonzalez -Date: Thu Mar 3 16:42:15 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1658-read-only-dac - -commit 0e56a72b44679fce4b0d2407cb1ac97c827cb894 -Author: Jorge Gonzalez -Date: Thu Mar 3 16:23:16 2022 -0500 - - feat: make various django-admin models permanently read-only - -commit 9670e94dca18a81f2d56f99f4687f3c69b204ef3 -Merge: 62d4c16fc 832073f8f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 16:35:33 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1534-updating-to-latest-zaproxy - -commit 832073f8ff6404e6bfa4ad60246296b440e25a08 -Merge: 22d35e24c ef66a00cc -Author: Jorge Gonzalez -Date: Thu Mar 3 16:35:06 2022 -0500 - - Merge pull request #1655 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/history-5.3.0 - -commit 62d4c16fcfcef4e8d1de353c6ed58d777a976f82 -Merge: 80f98c17a 22d35e24c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 15:47:14 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1534-updating-to-latest-zaproxy - -commit bf8c0c5fabf0acbe7e88ae306dd8a92ecb48f202 -Merge: 24ca01c39 22d35e24c -Author: Jorge Gonzalez -Date: Thu Mar 3 15:28:37 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1358-ocio-groups - -commit 24e669302482da7b6d1f074e1e9622979457d477 -Merge: 43a79fdbf 22d35e24c -Author: Jorge Gonzalez -Date: Thu Mar 3 15:28:33 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1414-upgrade-django-admin-508 - -commit 313d0fca9e90a901c24f9733c46c5b1b4cee7204 -Merge: ea9eae687 22d35e24c -Author: Jorge Gonzalez -Date: Thu Mar 3 15:28:25 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests - -commit ef66a00cc0c8d0374ec4ee387f79361802d8c126 -Merge: ba5b7592c 22d35e24c -Author: Jorge Gonzalez -Date: Thu Mar 3 15:27:42 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/history-5.3.0 - -commit 22d35e24c9021698dad8dbd2435294a6227bd2d0 -Merge: bd721f22d aabc0f909 -Author: Jorge Gonzalez -Date: Thu Mar 3 15:27:17 2022 -0500 - - Merge pull request #1670 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-config-prettier-8.5.0 - -commit ea9eae687131085a7cd8dd54c2658c1be4aada9e -Merge: a06e4aa07 bd721f22d -Author: Jorge Gonzalez -Date: Thu Mar 3 15:26:59 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests - -commit 80f98c17a1194c60b65ef119d697a309d74b3899 -Merge: e254889c9 bd721f22d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 15:24:05 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1534-updating-to-latest-zaproxy - -commit 24ca01c390af6a73ebf61154dd18282f5c23c780 -Author: Jorge Gonzalez -Date: Thu Mar 3 14:37:54 2022 -0500 - - feat: redirect relevant users to django admin - -commit d709cfaa4c8025f4ef18a74b55e8f3fdae8da761 -Author: Jorge Gonzalez -Date: Thu Mar 3 14:12:24 2022 -0500 - - fix: test - -commit e254889c94a48f90256ed6a82c9fbe3b62c3bfaa -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 13:35:40 2022 -0500 - - cleanup--undoing test changes herein - -commit c1674584ab83c3aef1ad62e11d5e4d2fc752fd1b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 13:08:43 2022 -0500 - - globalexclude syntax change - -commit cbc85f79c1e8e48ec7ef96743f755ad623e43f9c -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 12:38:55 2022 -0500 - - enable statements - -commit 6bc4cc791dd60124cf31d6f2a5899b25c7593091 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Mar 3 11:52:33 2022 -0500 - - excluding s3 buckets - -commit beb65cfb6b478d90e31682ddb55f29500cc17aab -Merge: f766debde bd721f22d -Author: Jorge Gonzalez -Date: Thu Mar 3 10:58:42 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1358-ocio-groups - -commit ba5b7592ceecaf6f72943400de6c30d5e9d8fcb4 -Merge: 0c5befbb8 bd721f22d -Author: Jorge Gonzalez -Date: Thu Mar 3 10:58:12 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/history-5.3.0 - -commit aabc0f9098bc66b7063a3ecfcbe6162023228031 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Mar 3 06:11:28 2022 +0000 - - Bump eslint-config-prettier from 8.4.0 to 8.5.0 in /tdrs-frontend - - Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.4.0 to 8.5.0. - - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v8.4.0...v8.5.0) - - --- - updated-dependencies: - - dependency-name: eslint-config-prettier - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 3b54406f07ffd5b4491694933f412b5e79bc4c98 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 16:58:37 2022 -0500 - - added cdn to global exclude and undo 1455 test - -commit 01a1be118269d626f8adce2561dc3e1d8d8a3d8d -Author: abottoms-coder -Date: Wed Mar 2 15:44:08 2022 -0500 - - Tweak to be generic for staging/prod in the future - -commit 718bb5c02c917ebcd4a9d0ea727b73789d203200 -Author: abottoms-coder -Date: Wed Mar 2 15:40:52 2022 -0500 - - fixing whitespace, misc - -commit 3140fb346c460d9dd023d1e3a1e198173eb8da59 -Author: abottoms-coder -Date: Wed Mar 2 15:38:17 2022 -0500 - - manually reverting all references to the automation of creating a DB - -commit 37b82c7a3806c2f907513514eb254bf10181364e -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 15:27:08 2022 -0500 - - confirming 1455 fixed id - -commit e9f1a17b19b5eadf6537541d848119c9d5703ace -Author: abottoms-coder -Date: Wed Mar 2 15:25:59 2022 -0500 - - try local_exec - -commit f7ed459da4f833c7bef9108658744b40e3a37324 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 15:23:08 2022 -0500 - - confirming 1455 - -commit 59676e3d0e6dc4071ffc75089880b549b0bf9046 -Author: abottoms-coder -Date: Wed Mar 2 15:08:50 2022 -0500 - - reverting the reversion of underscore - -commit 1e8201f3c7478d3d61c2fa1300512b1e0a31f58f -Author: abottoms-coder -Date: Wed Mar 2 14:55:04 2022 -0500 - - removing fake code - -commit e26206c9766f6c640c9781ee6323249a562ab624 -Author: abottoms-coder -Date: Wed Mar 2 14:50:14 2022 -0500 - - get rid of underscore in terry/main - -commit a7abf5aad04338b184f12f72a772a6779b88612c -Author: abottoms-coder -Date: Wed Mar 2 14:48:00 2022 -0500 - - Slowing down - -commit 083174d6bb00a241c01e139b5aeae4ce80084495 -Author: abottoms-coder -Date: Wed Mar 2 14:43:04 2022 -0500 - - trying with label - -commit 7d226b6615084b0ccbb15463858509b11908ce95 -Author: abottoms-coder -Date: Wed Mar 2 14:33:42 2022 -0500 - - less escapes - -commit 7eba60555de2e3a27b0947b21abecbd6613b5bce -Author: abottoms-coder -Date: Wed Mar 2 14:32:45 2022 -0500 - - syntax for interpolating var into string for terry - -commit fdd715eefb0fb9bbd03f78485914f3c0ca908c4c -Author: abottoms-coder -Date: Wed Mar 2 14:29:43 2022 -0500 - - workaround for commiting fastest - -commit e0540a2d17b7cb64e1b2cc61a4b8269087ffc0f7 -Author: abottoms-coder -Date: Wed Mar 2 14:28:37 2022 -0500 - - workaround for commiting fasterer - -commit 67044f008cb7ba755a7e9fd5a11f974bf0df01ee -Author: abottoms-coder -Date: Wed Mar 2 14:27:53 2022 -0500 - - workaround for commiting faster - -commit cafa784469b795ca2484da124c5350d03b40bd9d -Author: abottoms-coder -Date: Wed Mar 2 14:25:06 2022 -0500 - - First stab w/ Terraform - -commit bd721f22d8ab00665822dc8b7ec5a191f62f8635 -Merge: a710af2c1 e82d905f0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 2 13:49:21 2022 -0500 - - Merge pull request #1669 from raft-tech/sprint-summary-41 - - Create sprint-41-summary.md - -commit e82d905f0f9d7974c0fbd584b92ab198728df592 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Mar 2 13:36:47 2022 -0500 - - Create sprint-41-summary.md - -commit f673d7993db88b85946e9fc38bd3c4961fb4d483 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 12:13:38 2022 -0500 - - add one nontdp url - -commit 5edac20e05a443caa19c14502d8b4d3984fd0106 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 10:17:36 2022 -0500 - - remove addl urls to check root issues of exit 5 - -commit 28b52acf6c6c72f6b40a8a51d477f3c6738e724d -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 09:54:12 2022 -0500 - - fix tabs - -commit 61e7605b8ea6fe085afa944e5346becef3a1f89c -Merge: 9a816ba6e 5aba79dee -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 09:36:29 2022 -0500 - - Merge branch 'feat/1534-updating-to-latest-zaproxy' of https://github.com/raft-tech/TANF-app into feat/1534-updating-to-latest-zaproxy - -commit 9a816ba6eba07151579b6e327de58e17c9a14354 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 09:35:25 2022 -0500 - - replaced spaces with tabs - -commit 5aba79deec11ad6cea5a708567ba3f96fe7c1fd6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 09:24:48 2022 -0500 - - Update zap.conf - - removing blank line - -commit 182cdcec663ef0463d55f44beb94000c923e743a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 08:51:09 2022 -0500 - - Update config.yml - - run job twice per hour - -commit c77da1f1fdb1104999fc764ea9e267d301c69e1f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 08:43:22 2022 -0500 - - Update config.yml - - run every hour at 15 after - -commit f1a8366f58b321bd35abbd7e9197a0610bc89320 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 08:40:50 2022 -0500 - - testing if adding nontdp urls to zap config will exclude from rpt - -commit 7932780cf2faf97ffc6df2955eb9a4798c34cd77 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 2 08:36:00 2022 -0500 - - increasing frequency of job to every hour - -commit f766debde8e4847db86e239ae82a43ef60f55289 -Merge: 586fe2238 a710af2c1 -Author: Jorge Gonzalez -Date: Tue Mar 1 10:49:50 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1358-ocio-groups - -commit 586fe2238f1b45c8663ebf7c53f03de680e5874a -Author: Jorge Gonzalez -Date: Tue Mar 1 10:38:36 2022 -0500 - - fix: migration - -commit d22713a6ef2c4713b8622e21c93edc05831464ad -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 28 16:19:55 2022 -0500 - - Update config.yml - - increased owasp scan job timeout to 60min on remote branch. cron job will run twice a day. - -commit a710af2c1035996cfe006a5e6160dd08231a6e37 -Merge: 3475687f0 d024c46a5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 14:48:34 2022 -0500 - - Merge pull request #1663 from raft-tech/valcollignon-patch-1 - - Update sprint-40-summary.md - -commit 0c5befbb8883347b8da1984e09e35ac56f8bb962 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 28 18:57:39 2022 +0000 - - Bump history from 5.2.0 to 5.3.0 in /tdrs-frontend - - Bumps [history](https://github.com/remix-run/history) from 5.2.0 to 5.3.0. - - [Release notes](https://github.com/remix-run/history/releases) - - [Commits](https://github.com/remix-run/history/compare/v5.2.0...v5.3.0) - - --- - updated-dependencies: - - dependency-name: history - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit d024c46a5d0266914bdafc0f32e08c0b623a5646 -Merge: 610072edc 3475687f0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 13:56:37 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 3475687f09c98aaeed1beb05df2b9b39e91c4820 -Merge: 2c20a917d a56387dbc -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 13:56:30 2022 -0500 - - Merge pull request #1633 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.26.0 - - Bump axios from 0.25.0 to 0.26.0 in /tdrs-frontend - -commit 610072edc4b78a4c424afb97371d507eab2078d1 -Merge: db80d0bd7 2c20a917d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 13:56:26 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit a56387dbc7aa7f3c5a43314bd99e68ea5b8079f8 -Merge: 68cec035b 2c20a917d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 12:24:56 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.26.0 - -commit 2c20a917d69b8e4a5f56e2311d5720ca7838f837 -Merge: e98c5fa41 425b91828 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 12:24:46 2022 -0500 - - Merge pull request #1660 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.9 - - Bump sass from 1.49.8 to 1.49.9 in /tdrs-frontend - -commit 43a79fdbf7b21b00553506f2b53f3229f8e7c839 -Author: Aaron Beavers -Date: Mon Feb 28 11:27:12 2022 -0500 - - upgrade django admin 508 to 0.1.5 - -commit a06e4aa077bec37e06b5f13691a107040e2eee63 -Merge: c7f47b0d8 e98c5fa41 -Author: Jorge Gonzalez -Date: Mon Feb 28 11:12:54 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests - -commit db80d0bd78494fe54eb474d492632c638bb0c9bc -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Mon Feb 28 10:36:13 2022 -0500 - - Update sprint-40-summary.md - -commit a4aa57cd516de3abc8b0fe2e3cd08df6be9bc70a -Merge: fe92ea4e6 e98c5fa41 -Author: Jorge Gonzalez -Date: Mon Feb 28 10:08:56 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1358-ocio-groups - - # Conflicts: - # tdrs-backend/tdpservice/users/models.py - -commit fe92ea4e6f5099a3246adc2b8eafb3d61ed3a440 -Author: Jorge Gonzalez -Date: Mon Feb 28 10:03:50 2022 -0500 - - feat: prevent ocio staff users from having region and stt - -commit 68cec035b81a18e57bc2317920c23da33bdc0369 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 28 14:44:25 2022 +0000 - - Bump axios from 0.25.0 to 0.26.0 in /tdrs-frontend - - Bumps [axios](https://github.com/axios/axios) from 0.25.0 to 0.26.0. - - [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.25.0...v0.26.0) - - --- - updated-dependencies: - - dependency-name: axios - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 425b91828a998943369e4192a5846a222c360805 -Merge: df7d5653d e98c5fa41 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 09:43:25 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.9 - -commit e98c5fa418af72b0bfeb1cc518cb4f2574b05252 -Merge: 4740ee4ec a0f22e3f7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 28 09:43:13 2022 -0500 - - Merge pull request #1661 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.10.0 - - Bump eslint from 8.9.0 to 8.10.0 in /tdrs-frontend - -commit a0f22e3f7b950e012fd4976d793863ed98c387cc -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 28 06:12:48 2022 +0000 - - Bump eslint from 8.9.0 to 8.10.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.9.0 to 8.10.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.9.0...v8.10.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit d133784d4415a443ee6c06e9fa5da26af64a00ac -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 25 14:25:05 2022 -0500 - - Update docker-compose.yml - -commit df7d5653d304dcdf03339875c56d73aed538fb48 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Feb 25 06:19:44 2022 +0000 - - Bump sass from 1.49.8 to 1.49.9 in /tdrs-frontend - - Bumps [sass](https://github.com/sass/dart-sass) from 1.49.8 to 1.49.9. - - [Release notes](https://github.com/sass/dart-sass/releases) - - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - - [Commits](https://github.com/sass/dart-sass/compare/1.49.8...1.49.9) - - --- - updated-dependencies: - - dependency-name: sass - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 5b1b86be5eef400b201be7d05eb0a2cc21df59ed -Author: abottoms-coder -Date: Thu Feb 24 17:35:14 2022 -0500 - - Reverting terraform changes, commenting in bad practices - -commit 699ac98f0e4d807b34ae5b74213745beed21e640 -Author: abottoms-coder -Date: Thu Feb 24 17:32:23 2022 -0500 - - Third attempt - -commit 77bd4b56b1771bd1ef030ac0e6edbb5948aac3ce -Author: abottoms-coder -Date: Thu Feb 24 17:28:39 2022 -0500 - - Attempt #2 on getting terraform to create my database dynamically. - -commit d5c0727b40445d29bbca073ab6768347a96e33c4 -Author: abottoms-coder -Date: Thu Feb 24 16:38:57 2022 -0500 - - Attempting to throw a parameter into terraform and create the named DB through it. - -commit c7f47b0d858053b0daf5a808b9b53c279e6c76f8 -Merge: 5495ecb49 4740ee4ec -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Thu Feb 24 12:13:34 2022 -0800 - - Merge branch 'raft-tdp-main' into feat/1540-shared-authentication-tests - -commit 830b3c980331a930ae066a5ab89f3c0cf40ad1bf -Author: abottoms-coder -Date: Thu Feb 24 13:12:39 2022 -0500 - - reverting sqlcreate in gunicorn - -commit 57cd9591f9b5663142956a153a12aa22f12c5d9f -Author: abottoms-coder -Date: Thu Feb 24 11:43:42 2022 -0500 - - Cleanup of old db_name code - -commit 34d0c72255d288c556abc75ae39fa5fc936923e4 -Author: abottoms-coder -Date: Thu Feb 24 11:42:51 2022 -0500 - - Improvement needed, but have automated database creation via our deploy pipelines and have setup connection within cloudgov.py settings. - -commit 7a1f4ab97fc8d6c6b1f2e9333dcd312372b322f3 -Author: abottoms-coder -Date: Thu Feb 24 09:54:44 2022 -0500 - - First stab at automation of database creation upon startup. I could call this ticket done right now if I just manually created them when we spun up the rds instance. - -commit 5495ecb493e527eb28a776a4d8259a432d282048 -Author: raftmsohani -Date: Thu Feb 24 05:26:19 2022 -0800 - - 1540: Added dot to docstring for TestLoginParam class - -commit 54e9423ea5fd7bd978b7f440c9fe3b8221c79c52 -Author: raftmsohani -Date: Thu Feb 24 05:17:29 2022 -0800 - - 1540: Added docstring for TestLoginParam class - -commit f5431ec0493e594ac49734b9ef1b5a3061e082f2 -Author: raftmsohani -Date: Thu Feb 24 05:07:47 2022 -0800 - - 1540: Removed blank lines after function docstring - -commit a605a9a2ba18a3ac6aaab69a7705080e01643fcd -Author: raftmsohani -Date: Thu Feb 24 04:52:33 2022 -0800 - - 1540: Removed excessive lines to pass circleci - -commit d3d67caca63b98951167a133b75c6f23d6879791 -Author: raftmsohani -Date: Thu Feb 24 04:33:32 2022 -0800 - - 1540: Removed unused variables to pass circleci - -commit 50d90c0e6bd6596460be633f9097ef5e67c31f07 -Author: raftmsohani -Date: Wed Feb 23 10:58:46 2022 -0800 - - 1540: Added mock to pass circleci - -commit 4740ee4ec3d4aee4d77585f523b4fa3abf7c6388 -Merge: 717edd4f8 0aa063664 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 23 11:50:32 2022 -0500 - - Merge pull request #1656 from raft-tech/revert-1635-deps/security-vulnerabilities-django-ipython - - Revert "Bump Django and ipython" - -commit 0aa0636646655a7b8349dce79d97409093104853 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 23 11:05:35 2022 -0500 - - Revert "Bump Django and ipython" - -commit d33e27a51a9126dd0cf22c8a69b447a8db4110ab -Author: abottoms-coder -Date: Wed Feb 23 10:49:35 2022 -0500 - - Received 2to3 error deploying to buildpack, trying to downgrade to avoid - -commit b3c4a354c60cd7675d696f69153feb4ede76f714 -Merge: 01d29a4bc 717edd4f8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 23 09:51:44 2022 -0500 - - Merge branch 'raft-tdp-main' into local-dockerfile - -commit 717edd4f888471e0445d4c9f1f4557d27b01c18c -Merge: ae4900528 e6a65dce3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 23 09:40:33 2022 -0500 - - Merge pull request #1635 from raft-tech/deps/security-vulnerabilities-django-ipython - - Bump Django and ipython - -commit e6a65dce3bb884030f6aaa7ba7a145b3b3b8d476 -Merge: 666a2bd82 ae4900528 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 23 09:29:30 2022 -0500 - - Merge branch 'raft-tdp-main' into deps/security-vulnerabilities-django-ipython - -commit ae4900528d8887741adf84e6b39435f4851f3d1d -Merge: 3ff068373 d79468135 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 23 09:25:03 2022 -0500 - - Merge pull request #1654 from raft-tech/hotfix/a11y-env-migration - - Tweaking migration and shell script for backend vars - -commit ab8af03a69e27e4495dd4d9e82a36e848481bec9 -Author: raftmsohani -Date: Wed Feb 23 05:39:13 2022 -0800 - - 1540: Cleaned parametrization - -commit d7946813539747b7fe11d7d9f30efa79235c81cf -Merge: 04c907601 3ff068373 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 17:00:36 2022 -0500 - - Merge branch 'raft-tdp-main' into hotfix/a11y-env-migration - -commit 666a2bd82e5cfe51e37fe7e609327399777e2b04 -Merge: 2a8be27f3 3ff068373 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 16:24:43 2022 -0500 - - Merge branch 'raft-tdp-main' into deps/security-vulnerabilities-django-ipython - -commit 04c907601efbc0ba1fbbd5b7b50b6efb3e7149dd -Author: abottoms-coder -Date: Tue Feb 22 16:18:21 2022 -0500 - - Incorporation types per Aaaron - -commit a2f6d5e961633132f27310bcfc6b96d62b6c2994 -Author: abottoms-coder -Date: Tue Feb 22 16:00:03 2022 -0500 - - Importing exception - -commit d5a741f796019d383fd404e9d75e0ad26da50d55 -Author: abottoms-coder -Date: Tue Feb 22 15:36:14 2022 -0500 - - Tweaking migration and shell script for backend vars - -commit 3ff06837319081f8e3c8468932465b96c4252ee0 -Merge: dd62a0e2a 4cadb3203 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 15:07:24 2022 -0500 - - Merge pull request #1636 from raft-tech/feat/1567-add-tabletop-checkbox - - Add table top section to pr template - -commit 4cadb3203c560a5586f5fd2a3528d00e1c4d5b67 -Merge: eee8e87eb dd62a0e2a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 14:53:22 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1567-add-tabletop-checkbox - -commit dd62a0e2a873c0627f5d86ee5c962e0adcc63de4 -Merge: 0aff933b1 f2765ff6a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 09:41:57 2022 -0500 - - Merge pull request #1652 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/url-parse-1.5.9 - - Bump url-parse from 1.5.4 to 1.5.9 in /tdrs-frontend - -commit f2765ff6add6c5487aac4dbb4941153a8f6efa0a -Merge: a1562d429 0aff933b1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 09:30:53 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/url-parse-1.5.9 - -commit 0aff933b1a0d0e6b854062268d45df90fb3bfff5 -Merge: ebed4e06d 3ba9898a9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 09:30:13 2022 -0500 - - Merge pull request #1651 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-config-prettier-8.4.0 - - Bump eslint-config-prettier from 8.3.0 to 8.4.0 in /tdrs-frontend - -commit a1562d429a4ad52571711e5e5b53518cb8455c5e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Feb 22 14:20:13 2022 +0000 - - Bump url-parse from 1.5.4 to 1.5.9 in /tdrs-frontend - - Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.5.4 to 1.5.9. - - [Release notes](https://github.com/unshiftio/url-parse/releases) - - [Commits](https://github.com/unshiftio/url-parse/compare/1.5.4...1.5.9) - - --- - updated-dependencies: - - dependency-name: url-parse - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit 3ba9898a9a018d5a99e917b161df2f57412aa259 -Merge: 75a363571 ebed4e06d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 09:19:01 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-config-prettier-8.4.0 - -commit ebed4e06d3c422d356e9d431d3d77924d78fc57b -Merge: ee8c699ce 19bbae00a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 22 09:18:51 2022 -0500 - - Merge pull request #1650 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/follow-redirects-1.14.9 - - Bump follow-redirects from 1.14.7 to 1.14.9 in /tdrs-frontend - -commit 75a363571874a32bbd54822e9fa9248814ca456d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 21 06:13:30 2022 +0000 - - Bump eslint-config-prettier from 8.3.0 to 8.4.0 in /tdrs-frontend - - Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.3.0 to 8.4.0. - - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v8.3.0...v8.4.0) - - --- - updated-dependencies: - - dependency-name: eslint-config-prettier - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 19bbae00af045ea9a5dce9fac90e63a657ddfaf4 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Feb 18 21:17:42 2022 +0000 - - Bump follow-redirects from 1.14.7 to 1.14.9 in /tdrs-frontend - - Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.9. - - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.14.9) - - --- - updated-dependencies: - - dependency-name: follow-redirects - dependency-type: indirect - ... - - Signed-off-by: dependabot[bot] - -commit ee8c699ce93a9cfa36150f56797e1a67da24ed29 -Merge: d2ba59d8c 0f8b5ffd4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 18 16:15:30 2022 -0500 - - Merge pull request #1571 from raft-tech/feat/1495-organized-first-experience-profile - - feat(1495): As UX lead, I want the user to have a organized first experience for the Profile page - -commit 0f8b5ffd4b806d3c8b7c70a8719d03def0563164 -Merge: d199e6a12 d2ba59d8c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 18 15:51:18 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit d2ba59d8ce1a05b5608afe765f9bbb9b3934b2fa -Merge: 43c55ca51 7d10b2389 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 18 15:51:03 2022 -0500 - - Merge pull request #1644 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.8 - - Bump sass from 1.49.7 to 1.49.8 in /tdrs-frontend - -commit 51faf10014feb8e553d77b85aa94ec5e052574f9 -Author: abottoms-coder -Date: Fri Feb 18 12:20:22 2022 -0500 - - Changes for skipping clamav locally, also reverted version of compose and added an alias - -commit 01d29a4bc47b12da9330dcf3f0ca2aab03e5dd6e -Author: Jorge Gonzalez -Date: Fri Feb 18 11:09:01 2022 -0500 - - tweak dockerfiles - -commit 13118ca8616a8947ecfe684541f783db043150c7 -Author: Jorge Gonzalez -Date: Fri Feb 18 10:58:11 2022 -0500 - - add proper local dockerfiles - -commit 0583c383aee1794d09e5d47abd89ad755a8b784a -Author: Jorge Gonzalez -Date: Fri Feb 18 10:51:15 2022 -0500 - - add proper local dockerfiles - -commit ab01cb2097d66103440c13613f5230132bc8a930 -Author: raftmsohani -Date: Fri Feb 18 07:27:31 2022 -0800 - - 1540: Finished adding all the parametrized tests. Needs cleanup - -commit d199e6a12f7ac5c57238beeba78ff2ca23080e98 -Merge: 24511c8f8 fc41ee4bc -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 18 09:06:13 2022 -0500 - - Merge pull request #1572 from raft-tech/feat/1387-locations - - feat(1387): As a System Admin, I should not be able to set conflicting STT and region attributes for a user - -commit 7d10b23897a5613cdabe86c0aaa8b5de1b76d705 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Feb 18 06:13:21 2022 +0000 - - Bump sass from 1.49.7 to 1.49.8 in /tdrs-frontend - - Bumps [sass](https://github.com/sass/dart-sass) from 1.49.7 to 1.49.8. - - [Release notes](https://github.com/sass/dart-sass/releases) - - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - - [Commits](https://github.com/sass/dart-sass/compare/1.49.7...1.49.8) - - --- - updated-dependencies: - - dependency-name: sass - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 6c1193a491d60b91843c0033b573caf34aa57b3c -Author: raftmsohani -Date: Thu Feb 17 19:47:44 2022 -0800 - - 1540: Added testsusing getfixturevalue method - -commit 74814298ab2ec7b88a6f324a1a49b6e1e9ee3cc4 -Author: Jorge Gonzalez -Date: Thu Feb 17 17:20:20 2022 -0500 - - feat: create default ocio group with read-only permissions to - -commit 24511c8f8bce7d6b62e1e3f027883e950ebd4a98 -Merge: 7f2c1c0b7 43c55ca51 -Author: Jorge Gonzalez -Date: Thu Feb 17 10:12:58 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 43c55ca51c421b47ff26bdcc8552700b955eb0bb -Merge: 6ab4e0f8b a10588584 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 16 13:48:02 2022 -0500 - - Merge pull request #1639 from raft-tech/valcollignon-patch-1 - - Create sprint-40-summary.md - -commit a10588584bffe40236d545a158143234eb1617c1 -Merge: 2321906c3 6ab4e0f8b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 16 13:38:23 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit fc41ee4bcf658497a82f0d98884fef614c2eefe4 -Merge: 352c26e95 6ab4e0f8b -Author: Aaron Beavers -Date: Wed Feb 16 13:31:23 2022 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1387-locations - -commit 6ab4e0f8bfd225c7dbccf99cb03ccaa01a39b8d2 -Merge: ea5d34868 4733665ad -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 16 10:03:41 2022 -0500 - - Merge pull request #1638 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.3 - - Bump @testing-library/react from 12.1.2 to 12.1.3 in /tdrs-frontend - -commit 2321906c3de37b8c1f1c54221b7f34d4dd46d8a4 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Feb 16 09:54:03 2022 -0500 - - Create sprint-40-summary.md - -commit eee8e87ebd626317b03736bd9e42819dd13cc0ff -Author: Aaron Beavers -Date: Wed Feb 16 09:51:45 2022 -0500 - - Update .github/pull_request_template.md - -commit 4733665ad70adef0a805582aef3cef2ce71951f5 -Merge: 0fd026e82 ea5d34868 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 16 09:50:48 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.3 - -commit ea5d34868fe743affe8bc9cdd77fc124d48a70c7 -Merge: 07e93c577 c54ed2b29 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 16 09:50:34 2022 -0500 - - Merge pull request #1632 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.9.0 - - Bump eslint from 8.8.0 to 8.9.0 in /tdrs-frontend - -commit 0fd026e824d7d4274ab4a345cc421e3051864c71 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Feb 16 06:09:21 2022 +0000 - - Bump @testing-library/react from 12.1.2 to 12.1.3 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.2 to 12.1.3. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.2...v12.1.3) - - --- - updated-dependencies: - - dependency-name: "@testing-library/react" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 9109ef338b2af1ea8394fb806eb61f3b9f1a80e0 -Author: Aaron Beavers -Date: Mon Feb 14 16:57:27 2022 -0500 - - Add table top section to pr template - -commit 352c26e95f17ae5e38127e0d29398cb87c052ce4 -Author: Aaron Beavers -Date: Mon Feb 14 11:28:13 2022 -0500 - - Cleaned up remove federal gov stt migration - -commit 2a8be27f3814332c396c1acd1c82927265acdef0 -Author: abottoms-coder -Date: Mon Feb 14 11:21:48 2022 -0500 - - Updated pipfile - -commit c54ed2b29fb8277904cd7dac51ef1e20b0279f0a -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 14 15:24:58 2022 +0000 - - Bump eslint from 8.8.0 to 8.9.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.8.0 to 8.9.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.8.0...v8.9.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 07e93c577bbe03958d3456a802740d522718a6e9 -Merge: dd24e1ab0 1a36ff317 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 14 10:23:36 2022 -0500 - - Merge pull request #1617 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-6.0.0 - - Bump @fortawesome/free-solid-svg-icons from 5.15.4 to 6.0.0 in /tdrs-frontend - -commit 1a36ff3171a70688730848bef032676b11b59e16 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 14 14:52:27 2022 +0000 - - Bump @fortawesome/free-solid-svg-icons in /tdrs-frontend - - Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 5.15.4 to 6.0.0. - - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/5.15.4...6.0.0) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/free-solid-svg-icons" - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit dd24e1ab0f3789a6af7897cce902e4286f800935 -Merge: f2a4abf2b 0539fae06 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 14 09:51:20 2022 -0500 - - Merge pull request #1618 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.3.0 - - Bump @fortawesome/fontawesome-svg-core from 1.2.36 to 1.3.0 in /tdrs-frontend - -commit 27ddf4dec3aaf8bf26dcea89f7b3d9b84a9f1b51 -Merge: fbd1c918e f2a4abf2b -Author: Aaron Beavers -Date: Mon Feb 14 09:40:35 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1387-locations - -commit b5ec645ad1cb3496d0822288418c863bce13c3aa -Author: raftmsohani -Date: Mon Feb 14 05:06:27 2022 -0800 - - 1540: Amended "test_login_with_bad_nonce_and_state" to dynamically add fixtures. Added fixtures was causing the tests to fail previously - -commit 7f2c1c0b7473225244ebb99dda4e9e9450abade5 -Merge: d0664691b f2a4abf2b -Author: Jorge Gonzalez -Date: Fri Feb 11 10:36:07 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 0539fae06508dc2d731f0192d19668ee9fcb11a8 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Feb 11 14:18:25 2022 +0000 - - Bump @fortawesome/fontawesome-svg-core in /tdrs-frontend - - Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.2.36 to 1.3.0. - - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/Font-Awesome/commits) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/fontawesome-svg-core" - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit f2a4abf2b83d956bf74e3963c29b6a15ef5c8770 -Merge: f6ad08624 4f2017ca7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 11 09:17:07 2022 -0500 - - Merge pull request #1625 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/wait-on-6.0.1 - - Bump wait-on from 6.0.0 to 6.0.1 in /tdrs-frontend - -commit 4f2017ca7ce15ada8c2f0298d87c513fa8a30f19 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Feb 11 06:23:00 2022 +0000 - - Bump wait-on from 6.0.0 to 6.0.1 in /tdrs-frontend - - Bumps [wait-on](https://github.com/jeffbski/wait-on) from 6.0.0 to 6.0.1. - - [Release notes](https://github.com/jeffbski/wait-on/releases) - - [Commits](https://github.com/jeffbski/wait-on/compare/v6.0.0...v6.0.1) - - --- - updated-dependencies: - - dependency-name: wait-on - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit fbd1c918e1ae789adc3071f00b6dcad33d663a99 -Author: Aaron Beavers -Date: Thu Feb 10 15:02:41 2022 -0500 - - simplify location migration - -commit 01f4c729f47573674a8630292b7bc499829fe202 -Author: Aaron Beavers -Date: Thu Feb 10 15:02:29 2022 -0500 - - simplify location migration - -commit 275ccca2e6cbd87ff43035916463c76b5ac8bcdc -Author: raftmsohani -Date: Thu Feb 10 11:36:47 2022 -0800 - - 1540: Added parametrized version of req_factory - -commit 15218329797c5a969fa01560d56642ba31d491b1 -Author: Aaron Beavers -Date: Thu Feb 10 12:45:41 2022 -0500 - - Fail gunicorn if any steps fail - -commit 62a6d5924a5a552f5ed4fb41d545f460d64eacbd -Author: raftmsohani -Date: Thu Feb 10 09:05:37 2022 -0800 - - 1540: Removed unparametrized "test_login_with_bad_nonce_and_state" tests - -commit d0664691b634bbe315a80d2e1a2db396b5cdaa97 -Merge: 2e4f7164d f6ad08624 -Author: Jorge Gonzalez -Date: Thu Feb 10 11:36:21 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit f6ad08624e02823d5e57d9866fe2a508f2e2a453 -Merge: ed8871c29 3c9b1d86c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 10 10:26:58 2022 -0500 - - Merge pull request #1622 from raft-tech/abottoms-coder-patch-1 - - Removing redundant request for ACs - -commit 3c9b1d86c376d677d831b9a98d9fa12ee6c82477 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 10 10:00:30 2022 -0500 - - Removing redundant request for ACs - -commit efddfff5149eb2b67e1b9102bd6e36f29e948868 -Author: Aaron Beavers -Date: Thu Feb 10 09:57:40 2022 -0500 - - remove logging - -commit 9d550559c8b80d79ef4194c8aa5863388a02c2dc -Author: raftmsohani -Date: Thu Feb 10 06:14:45 2022 -0800 - - 1540: CircleCI failed: Removed blank EOF - -commit 97e5fab1727e43dd01bfa704d14cc24fa452588f -Author: raftmsohani -Date: Thu Feb 10 06:03:45 2022 -0800 - - 1540: Parametrized LoginDotGov and AMS for test_login_with_bad_nonce_and_state - -commit b1438fab6cfda189ca18ddf285ebb8b323e39a77 -Author: raftmsohani -Date: Wed Feb 9 15:25:26 2022 -0800 - - 1540: parametrized fixture. Have to add fixtures for AMS test to be able to use same fixture - -commit 067aba4aabdd81ca335eada4105570abb37b018c -Author: Aaron Beavers -Date: Wed Feb 9 15:55:04 2022 -0500 - - Tests pass - -commit 23989c99e3bbd33a01baf79717a6b0af69802bfa -Author: Aaron Beavers -Date: Wed Feb 9 15:18:10 2022 -0500 - - Use safe access operator - -commit 2e4f7164d788388708c4fcdd6b0081483ca9518f -Author: Jorge Gonzalez -Date: Tue Feb 8 16:32:19 2022 -0500 - - feat: add a11y improvement - -commit e2b960cbe70851061669684f87e15937883da20f -Author: Aaron Beavers -Date: Tue Feb 8 16:43:55 2022 -0500 - - Initial work on frontend - -commit 6595c74dd766e966625477b6f450a1e10436338c -Author: Aaron Beavers -Date: Tue Feb 8 16:43:46 2022 -0500 - - Migrations naming conflicts resolved - -commit 4d669225f865b35ffb1b938a70e420367d566a45 -Author: Aaron Beavers -Date: Tue Feb 8 15:48:19 2022 -0500 - - resolve serializer conflict - -commit 111fab59ed8118eb2e3c98fd747503b22987b130 -Merge: 72af088a4 2a644a679 -Author: Aaron Beavers -Date: Tue Feb 8 15:40:44 2022 -0500 - - Merge remote-tracking branch 'origin/feat/1495-organized-first-experience-profile' into feat/1387-locations - -commit 72af088a430f69359c3f8ade74118c991924c3c3 -Author: Aaron Beavers -Date: Tue Feb 8 15:25:40 2022 -0500 - - Remove federal territory - -commit 70312a755d578c6fb37a2263b64f868704c09820 -Author: Aaron Beavers -Date: Tue Feb 8 15:25:26 2022 -0500 - - Remove dev stuff - -commit 2a644a679e34b2f596a5efe86936bb3f7d04ed16 -Merge: d84423019 ed8871c29 -Author: Jorge Gonzalez -Date: Tue Feb 8 14:58:19 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit ed8871c29a0ac3470e1ce6b7407033082cd88987 -Merge: 41c40f417 92b0c297c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 8 14:54:05 2022 -0500 - - Merge pull request #1616 from raft-tech/techdocs-updates-1526 - - Issue 1526: Updates to tech doc subdir - -commit 92b0c297c5d010fc4d55b122f40e89bd1d35b84c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Feb 8 12:21:28 2022 -0500 - - Update README.md - - added terraform ref link - -commit 7b4ab25cbd3e92061a4113e04061cd2ed41bd7ca -Author: abottoms-coder -Date: Tue Feb 8 09:12:49 2022 -0500 - - updates to unit-tests.md with testing commands - -commit 54a994c7611352f14f7171e0eee5383d5193cdde -Author: Aaron Beavers -Date: Mon Feb 7 16:31:11 2022 -0500 - - Syntax error - -commit d8442301903900d1165ae8a6d151a84a955de051 -Author: Jorge Gonzalez -Date: Mon Feb 7 15:39:00 2022 -0500 - - feat: add various test fixes and a11y improvements - -commit 61b1815b157daefb0baf0090e812f383367667c4 -Author: Aaron Beavers -Date: Mon Feb 7 15:55:51 2022 -0500 - - add a condition to migration - -commit f1f776b2c07a2a5ca8a1000579a0de4cccffc322 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 12:18:10 2022 -0500 - - update ref links in main readme - -commit 2904f8694c4cf25ebc4e206b15a5198ecab5dda2 -Merge: 4ff2f798c 41c40f417 -Author: Aaron Beavers -Date: Mon Feb 7 11:22:32 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1387-locations - -commit 6780472d10c68bce4f2a214be32c1b95a5652703 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 10:37:00 2022 -0500 - - del obsolete docs/ readme - -commit 20d29bcf4d6eb03a2d3a44bb354f3fd241f8e782 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 10:33:10 2022 -0500 - - ref raft a11y guidelines in hww expectations doc - -commit df9601ce73d149377a9b5b418f8a2afdc774729b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 10:26:46 2022 -0500 - - reference commands.sh in unit-tests md - -commit edc41f85bab4e7f7fa6c102cd3931d5112a7ee68 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 10:12:26 2022 -0500 - - renamed rotation doc - -commit b651096432643d78cdb802a6b5ed5caa3ae1aef2 -Merge: 39759abd2 41c40f417 -Author: Jorge Gonzalez -Date: Mon Feb 7 09:56:08 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit b7c2aa7b5e9aa25752b4749216a66710f8b0ed80 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 09:55:09 2022 -0500 - - replace obsolete gitflow diagram - -commit ef86f0afebd63b6b8fa71f5841d53cad840046ef -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 09:51:15 2022 -0500 - - del obsolete tech docs - -commit 2aa7ebd3b82ffcadfb096cf819f1ee78eb6db32b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 09:48:11 2022 -0500 - - promote database/ docs one level up and del database/ - -commit e0463ab1a986b51f6190a5a4efb013051de0d2f1 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 7 09:45:44 2022 -0500 - - move data-downloads doc into adr013 - -commit 41c40f4172e89cb6058568187a79bd5017a0d9ad -Merge: 4eef5d22f 81e0fd79f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Feb 7 09:27:06 2022 -0500 - - Merge pull request #1615 from raft-tech/feat/1526-tech-doc-readme - - Create README.md - -commit 39759abd2846d04bf220602483197b70014cb483 -Merge: f757f6056 4eef5d22f -Author: Jorge Gonzalez -Date: Fri Feb 4 14:53:51 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1495-organized-first-experience-profile - -commit 81e0fd79facd104f2c280f4476262118c433e873 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 4 15:30:59 2022 -0500 - - Update README.md - -commit 024fe88fe30daa436ef48e05c987d6ee31635142 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 4 15:27:40 2022 -0500 - - Update README.md - -commit 7c5ab9c0a2ffd59aa639c883d3d3094cc0506393 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 4 15:25:05 2022 -0500 - - Create README.md - -commit 4eef5d22f16fcb9f7fdd49448ff96c4dd438ddf6 -Merge: c660b8125 197110a4a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Feb 4 12:09:14 2022 -0500 - - Merge pull request #1506 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 - - refactor(1576): Upgrade react-router packages and refactor related components - -commit 197110a4aff48ac420bf0d5755a5f3f37aa0cbcf -Merge: 72273256c c660b8125 -Author: Jorge Gonzalez -Date: Fri Feb 4 11:53:27 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 - -commit f757f605678c2c30b9899e539e7c6323e4e2b0e5 -Author: Jorge Gonzalez -Date: Fri Feb 4 10:34:03 2022 -0500 - - fix: assign stt when access request is made - -commit e92d3f24800a31b5264b962957f8aecf655f92b4 -Merge: 1a9188586 c660b8125 -Author: Jorge Gonzalez -Date: Thu Feb 3 15:25:04 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit c660b8125163b5419f4d228b70f5c251884ba90d -Merge: 14bc7c248 6f2e9fec2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 3 14:47:16 2022 -0500 - - Merge pull request #1611 from raft-tech/abottoms-coder-patch-1 - - Update 009-git-workflow.md - -commit 6f2e9fec20e53cbd28c31e64a2a5b86742c7d8d2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 3 13:47:52 2022 -0500 - - Update 009-git-workflow.md - -commit 1a91885867d12964a10fb0068b74c7f8a79e9567 -Merge: 2b577dab9 14bc7c248 -Author: Jorge Gonzalez -Date: Thu Feb 3 11:43:31 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1495-organized-first-experience-profile - -commit 72273256ca761dccb6a474e5a657955fd356e390 -Merge: 1790b4022 14bc7c248 -Author: Jorge Gonzalez -Date: Thu Feb 3 11:38:09 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 - -commit 14bc7c248964be28f88e2f61cf5098323a0284a2 -Merge: 47fe9cdf2 27761cd77 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 3 09:36:10 2022 -0500 - - Merge pull request #1608 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.2 - - Bump @testing-library/jest-dom from 5.16.1 to 5.16.2 in /tdrs-frontend - -commit 27761cd773130ec5b43d9c66333e6b22d9e151fb -Merge: bbe731091 47fe9cdf2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 3 09:13:38 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.16.2 - -commit 47fe9cdf2c84d32b3e323988405eb9e8a09aef95 -Merge: d9fbbff98 e24b3b135 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 3 09:13:26 2022 -0500 - - Merge pull request #1583 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 - - Bump axios from 0.24.0 to 0.25.0 in /tdrs-frontend - -commit e24b3b13594c313e6eebf9e9840906f68ad77709 -Merge: 76dd1510b d9fbbff98 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Feb 3 09:07:06 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 - -commit bbe731091a10963f3e519258412680997d5bafa7 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Feb 3 06:14:23 2022 +0000 - - Bump @testing-library/jest-dom from 5.16.1 to 5.16.2 in /tdrs-frontend - - Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.16.1 to 5.16.2. - - [Release notes](https://github.com/testing-library/jest-dom/releases) - - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/jest-dom/compare/v5.16.1...v5.16.2) - - --- - updated-dependencies: - - dependency-name: "@testing-library/jest-dom" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit d9fbbff9841761fda8770e7859c3dd74fb290c54 -Merge: 6f272b6e1 9ab34d96b -Author: Aaron Beavers -Date: Wed Feb 2 16:49:57 2022 -0500 - - Merge pull request #1607 from raft-tech/hotfix/1596-script-name - - 1596 *PROJECT UPDATES* (PROMISE ITS THE LAST ONE GUYS) - -commit 9ab34d96b70f2abddf4acd40aaa7504fb85b5cbe -Author: Aaron Beavers -Date: Wed Feb 2 16:32:37 2022 -0500 - - *PROJECT UPDATES* - -commit 6f272b6e1d4ff830de78e0c5571a73f43720346c -Merge: 22d7118bd 5cef59c00 -Author: Aaron Beavers -Date: Wed Feb 2 16:10:50 2022 -0500 - - Merge pull request #1606 from raft-tech/hotfix/1596-script-name - - Hotfix/1596 script name - -commit 5cef59c00e33a20752e02495f91ff990cce5d2df -Author: Aaron Beavers -Date: Wed Feb 2 15:45:39 2022 -0500 - - use correct script name - -commit 95c18939c6dfd2b640063c341da226d4d178143f -Author: Aaron Beavers -Date: Wed Feb 2 15:45:27 2022 -0500 - - Update script variable names - -commit c12421e4b43af3c48e92dd4a33a130df8f4d25ac -Author: Aaron Beavers -Date: Wed Feb 2 15:44:49 2022 -0500 - - Rename folder - -commit 1790b40221173dd5f54bf4d24c7ed89fa5ba5712 -Merge: 23520fcfb 22d7118bd -Author: Jorge Gonzalez -Date: Wed Feb 2 14:19:26 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 - -commit 23520fcfbfff3a16cdf1bde0ac07bbf2ae32de3c -Author: Jorge Gonzalez -Date: Wed Feb 2 14:18:54 2022 -0500 - - test: fix EditProfile.test.js - -commit 5c54937ae86f591fa565e4243b37e8e9d9e101a0 -Author: Jorge Gonzalez -Date: Wed Feb 2 14:14:29 2022 -0500 - - test: fix LoginCallback.test.js - -commit 22d7118bdf16dcbdded2ebd12e11ebba0d46d852 -Merge: eb399533a e3b26f246 -Author: Aaron Beavers -Date: Wed Feb 2 14:09:38 2022 -0500 - - Merge pull request #1603 from raft-tech/feat/1596-change-product-update-site-domain - - Change domain from live-comms to product-updates - -commit e3b26f246f98df4444092c18919ebe2cab4e0816 -Author: Aaron Beavers -Date: Wed Feb 2 13:15:03 2022 -0500 - - update job name - -commit 347aaf7daccc19cd048bfc7526839e727b424bd9 -Author: Jorge Gonzalez -Date: Wed Feb 2 13:14:47 2022 -0500 - - test: fix SplashPage.test.js - -commit 19ead368f6c5c47c6d85fe625be0fd5cb7ffd492 -Author: Jorge Gonzalez -Date: Wed Feb 2 12:41:29 2022 -0500 - - test: fix privateroute test - -commit 5345c38b8e6e4b9326f85e861e1f5ba8bd92dfb7 -Author: Aaron Beavers -Date: Wed Feb 2 12:46:05 2022 -0500 - - Change domain - -commit 5f53cf31f92cc69f9476abcf36285a6cae90f9d0 -Merge: 2dd8a79d6 eb399533a -Author: Jorge Gonzalez -Date: Wed Feb 2 12:28:55 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-6.2.1 - -commit 76dd1510b9c89d3fb4e3eb22adeeb1a36003c86c -Merge: 389ebad0f eb399533a -Author: Jorge Gonzalez -Date: Wed Feb 2 12:14:42 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 - -commit 2b577dab98dafd963408bbf547bc2e85dac25545 -Merge: 4ce250b63 eb399533a -Author: Jorge Gonzalez -Date: Wed Feb 2 12:13:57 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit eb399533a0499803e1e4bdc13908638fde32cf15 -Merge: 0696b92f2 374ac49e1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Feb 2 12:12:29 2022 -0500 - - Merge pull request #1600 from raft-tech/bug/1170-session-before-login - - Hotfix/1170 Ensure user session is created after email is verified - -commit 374ac49e1159fdddee999314d7feecda293bdd25 -Merge: 1379ed0bc 0696b92f2 -Author: Jorge Gonzalez -Date: Wed Feb 2 11:09:40 2022 -0500 - - Merge branch 'raft-tdp-main' into bug/1170-session-before-login - -commit 4ce250b635a97454efe75769ac1b5928e3e07e61 -Author: Jorge Gonzalez -Date: Wed Feb 2 11:07:53 2022 -0500 - - test: remove dead tests - -commit 1379ed0bc7ed28a5858cac6a173d57ed7b010dd6 -Merge: 63c4f1e03 37296f57c -Author: abottoms-coder -Date: Wed Feb 2 11:01:54 2022 -0500 - - Merge branch 'bug/1170-session-before-login' of github.com:raft-tech/TANF-app into bug/1170-session-before-login - -commit 63c4f1e0350ef19e4a69567b109b8aee8dfaad71 -Author: abottoms-coder -Date: Wed Feb 2 11:01:37 2022 -0500 - - moving login_msg per commentary - -commit 216ee8e286e06ce24712122620f1335931571b06 -Author: Jorge Gonzalez -Date: Wed Feb 2 10:48:21 2022 -0500 - - test: improve expectation - -commit 8780d931f3784029f2f2dae6974076cd40947559 -Merge: 84c1f697e a7f76dd7e -Author: Jorge Gonzalez -Date: Wed Feb 2 10:38:59 2022 -0500 - - Merge remote-tracking branch 'origin/feat/1495-organized-first-experience-profile' into feat/1495-organized-first-experience-profile - -commit 84c1f697eef2d4376ad312e5b50fb28c648f0962 -Author: Jorge Gonzalez -Date: Wed Feb 2 10:38:53 2022 -0500 - - test: revert copy fix - -commit a7f76dd7ebe71483a9c5b345e875b70039ced9f0 -Merge: 5b54e8395 0696b92f2 -Author: Jorge Gonzalez -Date: Wed Feb 2 10:32:06 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 5b54e8395879ca001bfb123021a70a5971bf0641 -Author: Jorge Gonzalez -Date: Wed Feb 2 10:31:53 2022 -0500 - - test: add new Profile tests - -commit b31904998752c2d9b31b8bdc594498932b3095e8 -Author: Jorge Gonzalez -Date: Wed Feb 2 09:26:08 2022 -0500 - - refactor: home and profile components - -commit 66a8416c9f13274968dbfa774448ffb55bafa844 -Author: Jorge Gonzalez -Date: Wed Feb 2 09:20:29 2022 -0500 - - feat: tweak ams user behavior on profile page - -commit 389ebad0f894f80b37803d887716f57d9b03673f -Merge: 5de8e6d77 0696b92f2 -Author: Jorge Gonzalez -Date: Wed Feb 2 09:14:09 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.25.0 - -commit 0696b92f2de1f87e18eae56712bf20a3adb92d04 -Merge: 97560eb39 d4c01a030 -Author: Jorge Gonzalez -Date: Wed Feb 2 09:13:35 2022 -0500 - - Merge pull request #1601 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.7 - -commit 4ff2f798c7adb7473766142703299f16fba22ef1 -Merge: bb7e9bace 97560eb39 -Author: Aaron Beavers -Date: Wed Feb 2 08:50:42 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1387-locations - -commit d4c01a0304f169bca8d08265e931fad49023f469 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Feb 2 06:16:29 2022 +0000 - - Bump sass from 1.49.4 to 1.49.7 in /tdrs-frontend - - Bumps [sass](https://github.com/sass/dart-sass) from 1.49.4 to 1.49.7. - - [Release notes](https://github.com/sass/dart-sass/releases) - - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - - [Commits](https://github.com/sass/dart-sass/compare/1.49.4...1.49.7) - - --- - updated-dependencies: - - dependency-name: sass - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 37296f57cba93017eb8f2ff06daa691e0bfa8916 -Merge: 4d507e653 97560eb39 -Author: Jorge Gonzalez -Date: Tue Feb 1 16:47:39 2022 -0500 - - Merge branch 'raft-tdp-main' into bug/1170-session-before-login - -commit 97560eb39885243e65420ce92f8d2a84b2aa5adc -Merge: 4cefeb444 78c7d3e2a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 16:20:46 2022 -0500 - - Merge pull request #1597 from raft-tech/1595-font-fixes-for-live-comms - - 1595 font fixes for live comms - -commit 78c7d3e2af41641dce0c39254e0d998130f5b20a -Merge: d0dced4fa 4cefeb444 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 15:15:25 2022 -0500 - - Merge branch 'raft-tdp-main' into 1595-font-fixes-for-live-comms - -commit 4cefeb4441901b271ec9b4f2d151f4ec61b3f7cd -Merge: 5bfd97f4d ecccbb332 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 15:15:11 2022 -0500 - - Merge pull request #1598 from raft-tech/valcollignon-patch-1 - - Create sprint-39-summary.md - -commit ecccbb332b583612f4a911ce57e61e70bc40ea01 -Merge: 5d38aa1ee 5bfd97f4d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 15:09:26 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 5bfd97f4d7eed4a952c63264a983d70103b438a2 -Merge: 139bae206 fa5b5403b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 15:09:12 2022 -0500 - - Merge pull request #1599 from raft-tech/valcollignon-patch-2 - - Update team-meetings.md - -commit 4d507e653e3096ca6365aaed416b20cd6518626f -Author: abottoms-coder -Date: Tue Feb 1 15:02:02 2022 -0500 - - Adapting to ensure verify_email() is fired before login_user() by refactoring handle_user() to only call login_user once at the end. - -commit cf078dec3469dfe732c5836efd126d4336b8b4d6 -Author: Jorge Gonzalez -Date: Tue Feb 1 15:00:31 2022 -0500 - - feat: fix profile banner behavior - -commit 511b904640af8d7a2b36e84de4374c98898e0828 -Author: Jorge Gonzalez -Date: Tue Feb 1 14:38:36 2022 -0500 - - test: fix previous Home tests - -commit fa5b5403be4903008e2e041f0900771d4f9c6216 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Feb 1 14:16:55 2022 -0500 - - Update team-meetings.md - -commit 09c8776809f79ec9ab76e1185ca3257549b59749 -Merge: bec15788d 139bae206 -Author: Jorge Gonzalez -Date: Tue Feb 1 13:59:20 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 5d38aa1ee9351bbb55767ad73544ee0f7e748a7c -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Feb 1 13:40:18 2022 -0500 - - Create sprint-39-summary.md - -commit d0dced4fa1c7eefc5e9f2c531cee6c0af407596e -Author: Miles Reiter -Date: Tue Feb 1 12:54:41 2022 -0500 - - Update readme to reflect name/upcoming route changes - -commit 76a930d3a49205a5ee15981a92a5a388d52a9319 -Author: Miles Reiter -Date: Tue Feb 1 12:49:16 2022 -0500 - - Fixes one more link, completes version bump - -commit 544235f00856a6bcb807ee28e67b2fddce02287d -Author: Miles Reiter -Date: Tue Feb 1 12:45:59 2022 -0500 - - Version bumps jqeury - - (Gets us up to 100% on best practices in a lighthouse audit) - -commit 0001944420dd391a3ba270d1b20bbbaeb8182893 -Author: Miles Reiter -Date: Tue Feb 1 12:30:54 2022 -0500 - - Adds missing fonts that cause 404s - -commit 5de8e6d77deb7fd1e5825597af151fa0a24cf26c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Feb 1 17:02:54 2022 +0000 - - Bump axios from 0.24.0 to 0.25.0 in /tdrs-frontend - - Bumps [axios](https://github.com/axios/axios) from 0.24.0 to 0.25.0. - - [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.24.0...v0.25.0) - - --- - updated-dependencies: - - dependency-name: axios - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 139bae2063755eca339900704b4b2e02c455fe28 -Merge: a70a4aa33 6f9bb4c4f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 12:01:44 2022 -0500 - - Merge pull request #1594 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.4 - - Bump sass from 1.49.0 to 1.49.4 in /tdrs-frontend - -commit bec15788dfd1c26fa5bb0502e31fc8faeed24fbe -Merge: 0b11890a0 a70a4aa33 -Author: Jorge Gonzalez -Date: Tue Feb 1 10:32:56 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 6f9bb4c4f88ca0830c2ee60cb6839416703438f9 -Merge: dbddc559d a70a4aa33 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 10:25:25 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/sass-1.49.4 - -commit a70a4aa33806b818bd4be202e10cb6ee878025f7 -Merge: ea0cf3c4d 43fb8400f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Feb 1 10:17:21 2022 -0500 - - Merge pull request #1549 from raft-tech/feat/470-commands - - Feat (470): Script commands for development operations - -commit dbddc559dac3df8616305f78befd988e9e3200dc -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Feb 1 06:13:00 2022 +0000 - - Bump sass from 1.49.0 to 1.49.4 in /tdrs-frontend - - Bumps [sass](https://github.com/sass/dart-sass) from 1.49.0 to 1.49.4. - - [Release notes](https://github.com/sass/dart-sass/releases) - - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - - [Commits](https://github.com/sass/dart-sass/compare/1.49.0...1.49.4) - - --- - updated-dependencies: - - dependency-name: sass - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 0b11890a046e3d0e709256eb9f05acb13f865d22 -Merge: a6c9f900c 5226852bf -Author: abottoms-coder -Date: Mon Jan 31 16:51:06 2022 -0500 - - Merge branch 'feat/1495-organized-first-experience-profile' of github.com:raft-tech/TANF-app into feat/1495-organized-first-experience-profile - -commit a6c9f900c1d29fc17a2696a3e55d4c50f3cc41b1 -Author: abottoms-coder -Date: Mon Jan 31 16:50:54 2022 -0500 - - Fixed broken unit tests by adding new field into reference response object. - - Also added an explicit test for ensuring that the flag will be updated by hitting the new endpoint with a patch request - -commit 5226852bf9a2058c7133dd33820022342ed12d66 -Author: Jorge Gonzalez -Date: Mon Jan 31 15:48:37 2022 -0500 - - fix: refactor and improve various frontend tests - -commit 0f2eab0a1bf132b686bd4e4da0fd0b7c3eae6e58 -Merge: 26132216c ea0cf3c4d -Author: Jorge Gonzalez -Date: Mon Jan 31 14:25:09 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 43fb8400f1e61db7e0a03f60e2a3c1ed0f5e6fe8 -Merge: 3dd53bbb9 ea0cf3c4d -Author: raftmsohani <97037188+raftmsohani@users.noreply.github.com> -Date: Mon Jan 31 14:20:36 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/470-commands - -commit 3dd53bbb9ebc2d5fd6d14fd36ff57357c073ab1a -Author: Mo -Date: Mon Jan 31 14:13:25 2022 -0500 - - resolve conflicts - -commit bb7e9bace13f6a16d4427cfd7c71d5d28061c473 -Author: Aaron Beavers -Date: Mon Jan 31 12:52:59 2022 -0500 - - updated migrations - -commit 5b81431113767f3afdc1c118c5439ce44989fab5 -Author: Aaron Beavers -Date: Mon Jan 31 12:15:06 2022 -0500 - - Remove dev code - -commit ea0cf3c4dd717a665575101525845453042d190b -Merge: af224233c 7e86ce5ce -Author: Jorge Gonzalez -Date: Mon Jan 31 10:44:56 2022 -0500 - - Merge pull request #1584 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.17 - -commit 07e1dac3ad4ec0fbf66cbc6c05925db60a9973d9 -Merge: 7b986e6f5 af224233c -Author: Jorge Gonzalez -Date: Mon Jan 31 10:38:07 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1387-locations - -commit 26132216cd1db269371edbdbbf1f44653dcb522a -Author: Jorge Gonzalez -Date: Mon Jan 31 10:37:11 2022 -0500 - - fix: remove dead pa11y test - -commit fc8bc308b23c9e0f8e8185610ab770dbd7411b44 -Author: Jorge Gonzalez -Date: Mon Jan 31 10:24:42 2022 -0500 - - style: lint - -commit 463b84200970b44dc2585339effd62a5485fb9e5 -Merge: 362deb3c8 af224233c -Author: Jorge Gonzalez -Date: Mon Jan 31 10:10:34 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 362deb3c856c7de8e68d3bcd077f8b4de700a2e7 -Author: Jorge Gonzalez -Date: Mon Jan 31 10:09:37 2022 -0500 - - style: lint - -commit 7e86ce5ce716798cb14c7f404a8cf2c6652d0125 -Merge: e2afa5e2a af224233c -Author: Jorge Gonzalez -Date: Mon Jan 31 09:37:27 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.17 - -commit af224233c81217ece56b4373209104913388c23a -Merge: 832b066e0 2ece0138b -Author: Jorge Gonzalez -Date: Mon Jan 31 08:34:14 2022 -0500 - - Merge pull request #1589 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.8.0 - -commit 2ece0138bb2910697a0b43de4c1285fce84bc23b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jan 31 06:11:06 2022 +0000 - - Bump eslint from 8.7.0 to 8.8.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 8.7.0 to 8.8.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v8.7.0...v8.8.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit e5b8656749dec90eda1c1a9f406985eddd2471e8 -Author: Programming -Date: Fri Jan 28 13:56:13 2022 -0800 - - Added user filter in the admin page in order to filter users based on access_request field - -commit e2afa5e2a1e76b08514a72389c9325d777b20ed0 -Merge: e35f4008a 832b066e0 -Author: Jorge Gonzalez -Date: Fri Jan 28 15:56:59 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.17 - -commit 7b986e6f5b27af518571561dd0ea12a2f31824e6 -Merge: 834ce366a 832b066e0 -Author: Jorge Gonzalez -Date: Fri Jan 28 15:39:52 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1387-locations - -commit 832b066e0226529d069096f7363b72d6ef11bb0c -Merge: f164aeff6 a105ada8b -Author: Jorge Gonzalez -Date: Fri Jan 28 15:32:29 2022 -0500 - - Merge pull request #1588 from raft-tech/hotfix/live-comms-job - -commit a0aef70d39e40d56f41c3605484d780c75c841b1 -Merge: 73c78a2cb f164aeff6 -Author: Jorge Gonzalez -Date: Fri Jan 28 15:28:17 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit a105ada8b1a7c33b484a6fa109f4a0248d6cda78 -Merge: 2bd73c4f6 f164aeff6 -Author: Jorge Gonzalez -Date: Fri Jan 28 15:26:35 2022 -0500 - - Merge branch 'raft-tdp-main' into hotfix/live-comms-job - -commit 2bd73c4f6eb30e6ad04e50493babbbb185f3682c -Author: Aaron Beavers -Date: Fri Jan 28 15:23:54 2022 -0500 - - add pre steps - -commit f164aeff6ab4e2c7ffda308c3e9c7927d610042c -Merge: 2b80fbbcc e1c417ac1 -Author: Jorge Gonzalez -Date: Fri Jan 28 15:20:44 2022 -0500 - - Merge pull request #1587 from raft-tech/hotfix/live-comms-job - -commit e1c417ac1dedf8127297f04c16acebe05abae98b -Merge: 94505a2c8 2b80fbbcc -Author: Jorge Gonzalez -Date: Fri Jan 28 15:15:10 2022 -0500 - - Merge branch 'raft-tdp-main' into hotfix/live-comms-job - -commit 94505a2c8fd43e4565d0225508dbd4fd79d844be -Author: Aaron Beavers -Date: Fri Jan 28 15:13:06 2022 -0500 - - Add parameters - -commit 357316bc235e541e9661bbbfd9d83f881fadb398 -Author: Aaron Beavers -Date: Fri Jan 28 15:06:29 2022 -0500 - - Add new job for live comms deploy - -commit 73c78a2cb8389887812a0eb7037626ffe054a904 -Author: Jorge Gonzalez -Date: Fri Jan 28 14:52:24 2022 -0500 - - feat: fix Home page behavior based on roles - -commit 2b80fbbcc8575892ae8f244ff276d834bed969d9 -Merge: bd7c621c9 e8272b98c -Author: Jorge Gonzalez -Date: Fri Jan 28 14:09:23 2022 -0500 - - Merge pull request #1586 from raft-tech/hotfix/deploy-live-comms-permission - -commit e7d56c34d9171c7660ad43323ed680f6116e50f8 -Author: Jorge Gonzalez -Date: Fri Jan 28 14:08:09 2022 -0500 - - feat: add manage account button and copy to Profile.jsx - -commit e8272b98c8ff67de73a656c7f4550b28621ab50a -Author: Aaron Beavers -Date: Fri Jan 28 14:02:48 2022 -0500 - - Deploy script should be executable - -commit 834ce366a04d8f27187f61e80bb77952fc5464c9 -Merge: 81e4a31ab bd7c621c9 -Author: Jorge Gonzalez -Date: Fri Jan 28 13:50:20 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1387-locations - -commit bd7c621c9f1cdf3d400143cd1e47ade53479f030 -Merge: 2d262297a 166d8e96c -Author: Jorge Gonzalez -Date: Fri Jan 28 13:36:15 2022 -0500 - - Merge pull request #1548 from raft-tech/feat/1545-migrate-live-comms-site - -commit 166d8e96c3dca3e36f14c57a0e942088cfde97a9 -Merge: dc4d27e3c 2d262297a -Author: Jorge Gonzalez -Date: Fri Jan 28 13:29:42 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1545-migrate-live-comms-site - -commit 81e4a31ab3272d4efa71be86cfeb4ea65195bd96 -Author: Aaron Beavers -Date: Fri Jan 28 13:00:03 2022 -0500 - - lint - -commit e35f4008a16b341b90c664a68c56f46d8fe26947 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jan 28 17:59:12 2022 +0000 - - Bump @fortawesome/react-fontawesome in /tdrs-frontend - - Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.16 to 0.1.17. - - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) - - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.16...0.1.17) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/react-fontawesome" - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 2d262297a09ac8df501e882f84e5032b159fd2cb -Merge: b6d4d29bc 3a13dc1b3 -Author: Jorge Gonzalez -Date: Fri Jan 28 12:58:14 2022 -0500 - - Merge pull request #1581 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-7.0.0 - -commit 3a13dc1b3b3f063417de61055b32cfe9f45c6ce9 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jan 28 17:50:32 2022 +0000 - - Bump concurrently from 6.5.1 to 7.0.0 in /tdrs-frontend - - Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 6.5.1 to 7.0.0. - - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - - [Commits](https://github.com/open-cli-tools/concurrently/compare/v6.5.1...v7.0.0) - - --- - updated-dependencies: - - dependency-name: concurrently - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit b6d4d29bc01f0b45d63df48a4fa75995b4f7773a -Merge: 94b3f6dc1 f821b6d7e -Author: Jorge Gonzalez -Date: Fri Jan 28 12:49:11 2022 -0500 - - Merge pull request #1573 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/pa11y-ci-3.0.1 - -commit 55d5130fd330d0cd54927bbca2a9e8cd62a0fc7d -Author: Aaron Beavers -Date: Fri Jan 28 12:43:18 2022 -0500 - - Add form validation - -commit f821b6d7edb9588d287281e5de87a909f07a373e -Author: Aaron Beavers -Date: Fri Jan 28 12:15:00 2022 -0500 - - Revert "update node orb" - - This reverts commit a64e1668ad0da45fc619e1dd12e952a63e62cee8. - -commit b710d25c10a4cf3d103b381058220beb6f989ee2 -Author: Aaron Beavers -Date: Fri Jan 28 11:40:42 2022 -0500 - - Revert "Update docker file for chrome error in pa11y" - - This reverts commit f8d6eb9ba7908e334b76c5b0d33f7e50fa8984be. - -commit dc4d27e3cb73120b653faef2bae1896af453a153 -Merge: 6d45cc044 94b3f6dc1 -Author: Jorge Gonzalez -Date: Fri Jan 28 12:34:13 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1545-migrate-live-comms-site - -commit b2255b4b219d3ba69c5c2432af9b626ec360947f -Merge: db1334904 94b3f6dc1 -Author: Aaron Beavers -Date: Fri Jan 28 12:30:15 2022 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/pa11y-ci-3.0.1 - -commit db1334904d86e4b152dca7223dbf69111ab285f0 -Author: Aaron Beavers -Date: Fri Jan 28 12:21:43 2022 -0500 - - Use sudo - -commit 94b3f6dc17d7849dff11ff3ad444e4102ce74bbb -Merge: c2d0f122e 631fc8c4d -Author: Jorge Gonzalez -Date: Fri Jan 28 12:16:50 2022 -0500 - - Merge pull request #1578 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/node-sass-7.0.1 - -commit 6d45cc044875220620e559fde440347252f6400c -Author: Miles Reiter -Date: Fri Jan 28 12:15:02 2022 -0500 - - Fix mobile nav label inconsistency - -commit a64e1668ad0da45fc619e1dd12e952a63e62cee8 -Author: Aaron Beavers -Date: Fri Jan 28 12:15:00 2022 -0500 - - update node orb - -commit f8d6eb9ba7908e334b76c5b0d33f7e50fa8984be -Author: Aaron Beavers -Date: Fri Jan 28 11:40:42 2022 -0500 - - Update docker file for chrome error in pa11y - -commit 631fc8c4d6dc4a4909f12e0c446a53d081bef318 -Merge: d7bcfd4e0 c2d0f122e -Author: Jorge Gonzalez -Date: Fri Jan 28 10:49:15 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/node-sass-7.0.1 - -commit 10feb518fb59d83fab845ba94987e9bbecfae1ad -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jan 28 15:47:40 2022 +0000 - - Bump pa11y-ci from 2.4.2 to 3.0.1 in /tdrs-frontend - - Bumps [pa11y-ci](https://github.com/pa11y/ci) from 2.4.2 to 3.0.1. - - [Release notes](https://github.com/pa11y/ci/releases) - - [Changelog](https://github.com/pa11y/pa11y-ci/blob/master/CHANGELOG.md) - - [Commits](https://github.com/pa11y/ci/compare/2.4.2...3.0.1) - - --- - updated-dependencies: - - dependency-name: pa11y-ci - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit fce4aa5c30d89237c256e004a8df088c1d7403df -Merge: 4cd2ed014 c2d0f122e -Author: Jorge Gonzalez -Date: Fri Jan 28 10:44:33 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1545-migrate-live-comms-site - -commit c2d0f122e76c8cefa3d9a7df50cf568472b43bd0 -Merge: a205a8e9e afe575848 -Author: Jorge Gonzalez -Date: Fri Jan 28 10:42:44 2022 -0500 - - Merge pull request #1555 from raft-tech/feat/1545-add-site-files - -commit afe575848c0820ac618e4c0462ac05af9084c0f4 -Merge: 0a1e08abe a205a8e9e -Author: Jorge Gonzalez -Date: Fri Jan 28 10:37:01 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1545-add-site-files - -commit d7bcfd4e04f1d0af7a91665bd527322d47bd4db8 -Author: Jorge Gonzalez -Date: Fri Jan 28 10:23:36 2022 -0500 - - chore: replace node-sass with sass - -commit 4cd2ed014190c7166474f48e5b909e38d2f3aada -Author: Miles Reiter -Date: Thu Jan 27 14:28:24 2022 -0500 - - Fixed font-related 404s, fixed broken nav link items - -commit d4b28d3d5a995536637c787e08eb818e20b825fc -Author: Jorge Gonzalez -Date: Thu Jan 27 12:07:32 2022 -0500 - - feat: check access request for navitems - -commit bb3be3e908bd19b1bc0cd10c611553b02de40bb2 -Author: Jorge Gonzalez -Date: Thu Jan 27 10:51:42 2022 -0500 - - feat: add user info to profile page - -commit a840782a0e44ff27ae4bc4e6f1d8d8278df2df37 -Author: Aaron Beavers -Date: Thu Jan 27 10:14:12 2022 -0500 - - lint - -commit 8ce20404239fd3a9a5bc2fc18208b0ba7679e235 -Author: Aaron Beavers -Date: Thu Jan 27 09:23:39 2022 -0500 - - lint - -commit 92cad51cb90c92bcd55acf26fbe032a49bc61c61 -Author: Aaron Beavers -Date: Thu Jan 27 09:23:34 2022 -0500 - - Remove some logs - -commit 6472e9bc27cee10bff5c741d8aca62f01b223f12 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jan 27 06:15:53 2022 +0000 - - Bump node-sass from 6.0.1 to 7.0.1 in /tdrs-frontend - - Bumps [node-sass](https://github.com/sass/node-sass) from 6.0.1 to 7.0.1. - - [Release notes](https://github.com/sass/node-sass/releases) - - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - - [Commits](https://github.com/sass/node-sass/compare/v6.0.1...v7.0.1) - - --- - updated-dependencies: - - dependency-name: node-sass - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 925bd0f9203bbb8637076dc1cd173e045b5ea8ad -Author: Jorge Gonzalez -Date: Wed Jan 26 16:38:49 2022 -0500 - - refactor: Home and Profile pages - -commit c36b1c8efbb61e7cced171e552dc69932ff3ce5c -Author: Aaron Beavers -Date: Wed Jan 26 15:27:17 2022 -0500 - - lint and auto migrations (compress these down) - -commit 9fcc23544b4296cf398089cb3ae81324c986f633 -Author: Aaron Beavers -Date: Wed Jan 26 14:22:02 2022 -0500 - - Update live-comms/June-2021-Update.html - -commit d61cc1979b714d184f494fb4b9bfd3a54eab3c43 -Author: Aaron Beavers -Date: Wed Jan 26 14:21:53 2022 -0500 - - Update live-comms/June-2021-Update.html - -commit 7763c7f3c2ac13f13bc3930a7a218dd7629cb984 -Author: Aaron Beavers -Date: Wed Jan 26 14:21:47 2022 -0500 - - Update live-comms/June-2021-Update.html - -commit 82994cc3ef8b03d04064b0fca0999861ed4b4e5e -Author: Aaron Beavers -Date: Wed Jan 26 14:21:40 2022 -0500 - - Update live-comms/August-2021-Update.html - -commit acdbd6bf1b13aae1e0f4234bd622aa3c27236fe0 -Author: Aaron Beavers -Date: Wed Jan 26 14:21:30 2022 -0500 - - Update live-comms/August-2021-Update.html - -commit f9b9e5dcb3da6d00f716cf0e7f2446e6a15a6aa6 -Author: Miles Reiter -Date: Wed Jan 26 13:49:55 2022 -0500 - - Remove TTS related 'contributing' markdown, add background and review details to 'readme' - -commit 9c3d3a5918bfd73bf03650a18a2424043ca66f14 -Author: Aaron Beavers -Date: Wed Jan 26 10:42:52 2022 -0500 - - lint - -commit 9b9c5df0e6948d17341a4133eed16f701a61af82 -Author: Aaron Beavers -Date: Wed Jan 26 10:01:58 2022 -0500 - - lint - -commit 000a060b1053fb22aaaa3e3c5525aa85b97548a5 -Merge: ef2d6692c a205a8e9e -Author: Jorge Gonzalez -Date: Wed Jan 26 09:29:27 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1495-organized-first-experience-profile - -commit 2dd8a79d6bd9ca30d312598345ef643d3eb0c964 -Author: Jorge Gonzalez -Date: Wed Jan 26 09:28:41 2022 -0500 - - refactor: Header.jsx - -commit 71c3214f0e970948ed15ccf4c8385a55202cbec8 -Author: Aaron Beavers -Date: Wed Jan 26 09:17:55 2022 -0500 - - add migrations - -commit e64bf61bd00e05f362081b7d7f9c430e9e3c57e5 -Author: Aaron Beavers -Date: Tue Jan 25 14:46:15 2022 -0500 - - Validate other roles location - -commit 9591ea89e7ad8fa8416c9e81965be62cfd2ee37a -Author: Jorge Gonzalez -Date: Tue Jan 25 12:55:57 2022 -0500 - - fix: replace connected-react-router - -commit 2cd0f9a249d74cc8c3953b9c4940d3f957dd4878 -Author: Jorge Gonzalez -Date: Tue Jan 25 12:16:04 2022 -0500 - - fix: upgrade Redirect components to Navigate - -commit 9044fee57481cfc40c0fc3320f3b54ae5d83cb8e -Author: Miles Reiter -Date: Tue Jan 25 12:11:50 2022 -0500 - - Migrates remaining imgur links, adds alt text, adds research synthesis link, fixes paragraph width - -commit 1cf516737bb5753f254bea5762b51389673f8896 -Author: Jorge Gonzalez -Date: Tue Jan 25 12:09:31 2022 -0500 - - fix: install latest react-router which should have been done in parallel - -commit fee4a9b96102b17932d1c256ab1abbf894dd5354 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jan 25 17:04:09 2022 +0000 - - Bump react-router-dom from 5.3.0 to 6.2.1 in /tdrs-frontend - - Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 5.3.0 to 6.2.1. - - [Release notes](https://github.com/remix-run/react-router/releases) - - [Commits](https://github.com/remix-run/react-router/commits/v6.2.1/packages/react-router-dom) - - --- - updated-dependencies: - - dependency-name: react-router-dom - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit a205a8e9ebb9e97bfbfc5c9aee6cb27335c9bc55 -Merge: 065054937 cfbd8c773 -Author: Jorge Gonzalez -Date: Tue Jan 25 12:02:56 2022 -0500 - - Merge pull request #1551 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.7.0 - -commit cfbd8c7737766692bbcc17fc2517d8d92bc9d0c6 -Merge: 395e80256 065054937 -Author: Jorge Gonzalez -Date: Tue Jan 25 10:44:06 2022 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-8.7.0 - -commit 395e802568f81d969946d4d5088ffe5c568aecf2 -Author: Jorge Gonzalez -Date: Tue Jan 25 10:05:26 2022 -0500 - - fix: add missing eslint dep - -commit 06505493778c339393ed32ff83ac6cd77c95aef8 -Merge: 96a2ceb21 a4d41bb6a -Author: Jorge Gonzalez -Date: Tue Jan 25 10:10:09 2022 -0500 - - Merge pull request #1516 from raft-tech/feat/1413-tooltip-improvements - -commit a4d41bb6af2137edb6f6cab9d93824434447b0b0 -Merge: 06ba344c8 96a2ceb21 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 25 09:57:53 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1413-tooltip-improvements - -commit 5218c35296bffb30cdef053c65be76469ed72671 -Author: Aaron Beavers -Date: Tue Jan 25 09:53:14 2022 -0500 - - more lint - -commit f0140ace8a5d16e8311cd1573a9f15bfb87a4810 -Author: Aaron Beavers -Date: Tue Jan 25 09:42:29 2022 -0500 - - more lint - -commit 2e4cf881064e06ac994b7210655c0bb3938de9fd -Author: Aaron Beavers -Date: Tue Jan 25 09:37:16 2022 -0500 - - more lint - -commit dda08d5ae03781bfc194b8e361cac94f8171ab67 -Author: Aaron Beavers -Date: Tue Jan 25 09:25:56 2022 -0500 - - lint - -commit 1b69a6a2fc0104a0e8a67646aa4a6c0b9e5ec6cf -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jan 25 14:18:12 2022 +0000 - - Bump eslint from 7.32.0 to 8.7.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.7.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v7.32.0...v8.7.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 96a2ceb213f7d38f9a3d3c142146dbc018057587 -Merge: 6cd5e1a28 c0d2c6853 -Author: Jorge Gonzalez -Date: Tue Jan 25 09:16:48 2022 -0500 - - Merge pull request #1538 from raft-tech/build/854-npm-migration - -commit 549d1c86c0d723ac2cdb72cf00ac33784ac81903 -Merge: 04c6c9603 6cd5e1a28 -Author: Aaron Beavers -Date: Mon Jan 24 19:04:16 2022 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1387-locations - -commit 04c6c9603f5d8ec7ee43999fa4952e621376d08d -Author: Aaron Beavers -Date: Mon Jan 24 19:04:10 2022 -0500 - - all existing tests pass - -commit c0d2c68538b1f1a0d7c6acbdcee913849fa46c73 -Author: Jorge Gonzalez -Date: Mon Jan 24 15:44:59 2022 -0500 - - build: disable audit in ci - -commit ffde074f67fb95e394b5dcbed3cf766a5552c537 -Author: Aaron Beavers -Date: Mon Jan 24 14:48:34 2022 -0500 - - use old non minified css file - -commit 3af5d467ad92390bf45ddb1b78dedcc999185262 -Merge: 405bcff9d 6cd5e1a28 -Author: Jorge Gonzalez -Date: Mon Jan 24 14:22:52 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/470-commands - -commit 9f05efff0262e9380d6509b81dca82329662dee0 -Merge: 70c140566 6cd5e1a28 -Author: Jorge Gonzalez -Date: Mon Jan 24 14:17:26 2022 -0500 - - Merge branch 'raft-tdp-main' into build/854-npm-migration - -commit c6e9cb278c6c313a0dd52ef4c3a43083a39ce9a2 -Author: Aaron Beavers -Date: Mon Jan 24 14:03:03 2022 -0500 - - Update documentation - -commit ad135d92db898170d0cc14b3e8c04076f48e89cb -Merge: 5823f7db9 0a1e08abe -Author: Aaron Beavers -Date: Mon Jan 24 14:02:44 2022 -0500 - - Merge branch 'feat/1545-add-site-files' into feat/1545-migrate-live-comms-site - -commit c2df5c9e3a91aeeea59b93ad722812d7e4d35cb9 -Author: Aaron Beavers -Date: Mon Jan 24 13:30:49 2022 -0500 - - Migrations and models set - -commit 6cd5e1a28458cfb2d1a73ffbfd75921e26be0a2f -Merge: 89e7b6c06 e7c87a866 -Author: Jorge Gonzalez -Date: Mon Jan 24 12:14:44 2022 -0500 - - Merge pull request #1556 from raft-tech/adp/1527-ux-updates - -commit e7c87a866d013d481bb8d429deca27eb70163353 -Merge: 37467b941 89e7b6c06 -Author: Jorge Gonzalez -Date: Mon Jan 24 11:44:35 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1527-ux-updates - -commit 405bcff9d155df0a05e3b343a42fd0e4dc2573c4 -Merge: c3ee613a5 89e7b6c06 -Author: Jorge Gonzalez -Date: Mon Jan 24 10:24:25 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/470-commands - -commit 70c1405667f18fe717194329053bafde6494e16a -Merge: 9ece040b3 89e7b6c06 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 24 10:23:59 2022 -0500 - - Merge branch 'raft-tdp-main' into build/854-npm-migration - -commit ef2d6692cf9586d3ada8314c4fa9f00f8dc3a303 -Merge: d4129c1b6 89e7b6c06 -Author: Jorge Gonzalez -Date: Mon Jan 24 09:51:28 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1495-organized-first-experience-profile - -commit 06ba344c844cb650f871a5af57f94f044e3a4630 -Author: Jorge Gonzalez -Date: Mon Jan 24 09:43:14 2022 -0500 - - fix merge conflicts - -commit 94e3f4de5d9ac4e65cc05c86008b151d4e1f3dfe -Merge: 30d82a3fe 89e7b6c06 -Author: Jorge Gonzalez -Date: Mon Jan 24 09:40:54 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements - -commit 89e7b6c061026fbfefce5ddceeacb473e47654fa -Merge: ff4824b1a 460bfe7cb -Author: Jorge Gonzalez -Date: Mon Jan 24 09:39:20 2022 -0500 - - Merge pull request #1468 from raft-tech/fix/1419 - -commit 460bfe7cb5155a08f82481e4ec1c6dd7b0124563 -Merge: 25c1088d5 ff4824b1a -Author: Jorge Gonzalez -Date: Mon Jan 24 09:28:56 2022 -0500 - - Merge branch 'raft-tdp-main' into fix/1419 - -commit ff4824b1a21d5c57504575592f54f20fbc27361a -Merge: a50fd8531 d0b68110e -Author: Jorge Gonzalez -Date: Mon Jan 24 09:28:03 2022 -0500 - - Merge pull request #1537 from raft-tech/feat/1449-a11y-dependabot-label - -commit 25c1088d5be2eb3cc6eecf81658e49d6ced19919 -Merge: deb3170fa a50fd8531 -Author: Jorge Gonzalez -Date: Mon Jan 24 09:14:04 2022 -0500 - - Merge branch 'raft-tdp-main' into fix/1419 - -commit d0b68110e8bf48975e91e8724a8816ba261e17f8 -Merge: 44ccc62a1 a50fd8531 -Author: Jorge Gonzalez -Date: Mon Jan 24 09:13:57 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label - -commit a50fd8531793617400777bf797f25d8fcd1f460d -Merge: f3bf2c398 7fbc9230e -Author: Jorge Gonzalez -Date: Mon Jan 24 09:13:33 2022 -0500 - - Merge pull request #1565 from raft-tech/issue/1563-django-3.2.11-again - -commit d4129c1b64a42a6caa7a79b1109ba0d55196ba53 -Author: Mo -Date: Sat Jan 22 13:20:41 2022 -0500 - - add background handling function for access request - -commit c3ee613a5e760eb7a65c091d0198cda3d39d5235 -Author: Programming -Date: Sat Jan 22 04:42:50 2022 -0800 - - Changed tdrs-restart: to start backend first - -commit 7334010bb066a0e891ec0480e59f42a21e1d08a1 -Author: Programming -Date: Sat Jan 22 04:32:12 2022 -0800 - - Changed tdrs-start: to start backend first - -commit 7fbc9230e461581238eeaaa5ed102db5e36dcde3 -Merge: dc592f0ca f3bf2c398 -Author: Jorge Gonzalez -Date: Fri Jan 21 15:34:33 2022 -0500 - - Merge branch 'raft-tdp-main' into issue/1563-django-3.2.11-again - -commit deb3170faf2baf30528150cb07dd608631c6d267 -Merge: 2ef559944 f3bf2c398 -Author: Jorge Gonzalez -Date: Fri Jan 21 15:33:35 2022 -0500 - - Merge branch 'raft-tdp-main' into fix/1419 - -commit 30d82a3fe0353570ef3758a33fd79716c312158e -Author: Jorge Gonzalez -Date: Fri Jan 21 14:28:50 2022 -0500 - - fix merge conflicts - -commit 2d7d244442c08d89eaadf022ae338816c813121c -Merge: 5e1bcf74b f3bf2c398 -Author: Jorge Gonzalez -Date: Fri Jan 21 14:26:41 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements - -commit 0a1e08abe06cc709aae053c1c05dc12f2829c34a -Author: Aaron Beavers -Date: Fri Jan 21 14:15:30 2022 -0500 - - Remove a lot of files - -commit f3bf2c3983d976fa5ea73dfaefa5bcc28206ffe5 -Merge: a0ab9a2de f400f16e8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jan 21 14:04:12 2022 -0500 - - Merge pull request #1528 from raft-tech/issues/782-python-latest - - build(782): Upgrade Python to v3.10.1 - -commit 6e9a5493b5ff065eebd4a91822f5a69f2e8c1081 -Author: Programming -Date: Fri Jan 21 10:47:25 2022 -0800 - - corrected lint - -commit 43d0644ebb5806803c94d56fd101c8a57769a648 -Author: Aaron Beavers -Date: Fri Jan 21 12:42:00 2022 -0500 - - confirmed owasp commands work - -commit b6ae5b264014960e81dcc077da2f247833ef5eba -Author: Aaron Beavers -Date: Fri Jan 21 10:57:36 2022 -0500 - - comment tdrs function listing command - -commit 3d6f0ef4b2973aaf8bde89600a864f354e91a8c4 -Author: Aaron Beavers -Date: Fri Jan 21 10:55:38 2022 -0500 - - Converted a few functions to aliases and add/update comments - -commit 680308642eec087f0360c148d751e7edfe4d08ea -Author: Aaron Beavers -Date: Fri Jan 21 10:54:44 2022 -0500 - - Added white space - -commit 7a2ab85f26596971ed4cb2a0ba57b65f4f93916d -Author: Aaron Beavers -Date: Fri Jan 21 10:54:02 2022 -0500 - - remove misleading comment - -commit b1158e4b92e398687fd95ae5b63d430db911b3f1 -Merge: 2a7fa52ab a0ab9a2de -Author: Jorge Gonzalez -Date: Fri Jan 21 10:19:50 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1545-add-site-files - -commit 6adf85c42feecf7555072e4ceffcc638d2411ea3 -Author: Aaron Beavers -Date: Fri Jan 21 10:15:10 2022 -0500 - - use npm - -commit 3ea13e616cdc799721283df62e266e446cc34402 -Author: Aaron Beavers -Date: Fri Jan 21 10:14:56 2022 -0500 - - succeed loudly for lint - -commit 8a526c6803161012357c8d45b521972e12aedb96 -Merge: 4122b8e91 9ece040b3 -Author: Aaron Beavers -Date: Fri Jan 21 10:13:59 2022 -0500 - - Merge branch 'build/854-npm-migration' into feat/470-commands - -commit f400f16e819976780545e816a2485eaf9943c311 -Merge: c50f4ab36 a0ab9a2de -Author: Jorge Gonzalez -Date: Fri Jan 21 09:49:14 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/782-python-latest - -commit 9ece040b3c35176d7771da050a15ceb0d8247f59 -Merge: bbe9b7073 a0ab9a2de -Author: Jorge Gonzalez -Date: Fri Jan 21 09:46:14 2022 -0500 - - Merge branch 'raft-tdp-main' into build/854-npm-migration - -commit 44ccc62a18917a98769fd38c435659fa6ec7594b -Merge: 73398c15b a0ab9a2de -Author: Jorge Gonzalez -Date: Fri Jan 21 09:44:14 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label - -commit a0ab9a2de3f8f3f2a2e9e24cd3c94ca263126ca6 -Merge: df4ce50d1 bad09f9e3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jan 21 09:19:11 2022 -0500 - - Merge pull request #1535 from raft-tech/feat/1353-elastisearch-adr - - Elastisearch Implementation ADR - -commit 4122b8e9162d82722e3fb3fe0b49eccca8345791 -Author: Programming -Date: Thu Jan 20 16:15:29 2022 -0800 - - corrected tdrs-backend-compose - -commit d3e562453aa79af9008ff6730b512f43795c9722 -Author: Programming -Date: Thu Jan 20 14:27:46 2022 -0800 - - corrected backend hard restart command - -commit bad09f9e38072e1dda3b90cc530a8d634549268c -Merge: 05241fbbb df4ce50d1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 20 16:39:34 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1353-elastisearch-adr - -commit df4ce50d1fd257949269b8979bf571469e420ed8 -Merge: 8a95b108c d6e0060d9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 20 16:36:49 2022 -0500 - - Merge pull request #1536 from raft-tech/feat/1170-ams-for-ofa - - feat(1170): Enforce AMS usage for ACF Staff - -commit d6e0060d9f1cb642018cda699293ed66a63b79e9 -Merge: 0334eda95 8a95b108c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 20 16:31:19 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1170-ams-for-ofa - -commit 2ef55994477c841429244c6c882dc2abfd46db1c -Merge: 3ab63f564 8a95b108c -Author: Jorge Gonzalez -Date: Thu Jan 20 15:13:29 2022 -0500 - - Merge branch 'raft-tdp-main' into fix/1419 - -commit dc592f0caf32064de0c0d8e6861302d58037033f -Author: abottoms-coder -Date: Thu Jan 20 14:56:58 2022 -0500 - - Updating pipfile from python3.10 branch, I resolved conflicts wrong - -commit 5e1bcf74bad0cbf27aa056a880f442a2e06c2035 -Merge: cb0f131eb 8a95b108c -Author: Jorge Gonzalez -Date: Thu Jan 20 14:44:10 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1413-tooltip-improvements - -commit 73398c15b78c85955f85b29e1caab5239fdfaf1c -Merge: cd682cb27 8a95b108c -Author: Jorge Gonzalez -Date: Thu Jan 20 14:38:10 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label - -commit 5823f7db93d1093d21d31462ae9e9ce400643b0c -Author: Miles Reiter -Date: Thu Jan 20 14:07:35 2022 -0500 - - Updates content, tweaks css for paragraph text - -commit 05241fbbbd22ea2d7419b6247419298ddf1e47d1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 20 13:43:40 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md - - Co-authored-by: Jorge Gonzalez - -commit d2ecbc5cce41f550839d2ed0eba58941ca9fe270 -Author: Aaron Beavers -Date: Thu Jan 20 13:29:00 2022 -0500 - - update links referencing index - -commit d1b99e783fcb91581b7190532001fb726e3e026f -Author: Aaron Beavers -Date: Thu Jan 20 12:52:43 2022 -0500 - - Apply suggestions from code review - -commit f30a4ef9232643a3ea20ffcc3f3bcceff784678d -Author: Aaron Beavers -Date: Thu Jan 20 12:49:57 2022 -0500 - - Update scripts/deploy-live-comms.sh - -commit 1580801952bb4dd737f85648f5cb789ac3fbd130 -Author: Aaron Beavers -Date: Thu Jan 20 12:38:04 2022 -0500 - - shortened some definitions to aliases and added a new shortcut function - -commit 55986022dc093da62ebda0be042a5bde8dd85fa6 -Author: Aaron Beavers -Date: Thu Jan 20 12:37:17 2022 -0500 - - Added an example - -commit 8a95b108c39863f80bf0d4b11451a847f7cfc333 -Merge: e3f16edc5 1fc7e47d8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 20 11:41:31 2022 -0500 - - Merge pull request #1554 from raft-tech/valcollignon-patch-2 - - Create sprint-38-summary.md - -commit 1fc7e47d807a4f66a07ebc791a339c2889f6a442 -Merge: 5cb9403a6 e3f16edc5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 20 11:35:27 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-2 - -commit 63aa88e94753e6f03d73b796be08f8c469047539 -Author: Aaron Beavers -Date: Thu Jan 20 10:47:31 2022 -0500 - - Update some links - -commit 37467b94127337bb6bf9d92d0309c8a14fba7ce0 -Merge: 4b016c2b4 e3f16edc5 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 20 10:23:21 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1527-ux-updates - -commit 4b016c2b4580c048a09e0b450ab4c5ed69d0b46b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 20 10:08:34 2022 -0500 - - update ref links - -commit 895820c43a0e1ce23a1f17ffae02f5958d59d616 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 20 09:15:05 2022 -0500 - - fix ux ref links in background dir - -commit 9465af6b5a90927673f24b9cb628640c3d9a835b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 19 18:22:29 2022 -0500 - - make design folder apparent with readme - -commit 618525aa07a1fbe1ca68bde80392fa050cbe93b0 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 19 18:02:23 2022 -0500 - - moved and renamed synethesis docs - -commit 9c73f541fc9bf327c93e2efac6d46d8dfa0a9974 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 19 17:57:52 2022 -0500 - - del old docs and folders and move doc content - -commit 23d5b6e45407ec547e234e630e3860160856ff90 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 19 17:43:26 2022 -0500 - - add docs - -commit ba4e65c7833beca23ab4d0f2469d2aee76401036 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 19 17:33:04 2022 -0500 - - add readmes to dir - -commit 939d73f8a8412cc253dbefe2a4b56f79910b3eec -Author: Aaron Beavers -Date: Wed Jan 19 15:10:24 2022 -0500 - - Update commands.sh - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 5b763095974e5c0031afe3929ef56d4ad2d5bf51 -Author: Aaron Beavers -Date: Wed Jan 19 15:00:05 2022 -0500 - - move deployment - -commit 3ab63f5642b1156d699682fb86236fa512c45538 -Author: Aaron Beavers -Date: Wed Jan 19 14:46:45 2022 -0500 - - add authenication garud for sign out removed on accident - -commit 0334eda955c635968f3968963a4c1b810ef9579e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 13:58:56 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/login.py - -commit bc64cd7dd8034a455ae48d9a1457aa5188d4c8f0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 13:51:28 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/login.py - -commit 7c37ed69078b613bed37e96549fd7cd1a65269f3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 13:46:31 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/login.py - -commit 3819ebf7fc9b4950784810137c32de152143e7ec -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 13:46:23 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/login.py - -commit bbe9b70735a3927fdeef3bbd87c12cf1081fbdd3 -Author: Jorge Gonzalez -Date: Wed Jan 19 13:24:06 2022 -0500 - - Update trufflehog-exclude-patterns.txt - -commit c9b8e1c446fb757c16a9a9b962f47dc03d159940 -Merge: 94a080ea3 e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 12:10:15 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1170-ams-for-ofa - -commit cb0f131eb83214fa8dee65514704224a1f46ea2d -Author: Jorge Gonzalez -Date: Wed Jan 19 11:26:02 2022 -0500 - - fix: Pipfile.lock merge conflicts - -commit 95aa58503d7387a680d2fd15b518e236ed1d5c5a -Merge: f5b445fb5 e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:23:14 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements - -commit c50f4ab3641497654d7b7adf0ff167a206415ec3 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:19:12 2022 -0500 - - fix: Pipfile.lock merge conflicts - -commit 588c26fb5fd4f0ea7c746986aef4c02dab8bfce4 -Merge: 2b5856a8f e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:16:52 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into issues/782-python-latest - -commit 292266caf754609c609b5d30cb515a48b11371e0 -Merge: 82d67bbfc e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:09:52 2022 -0500 - - Merge branch 'raft-tdp-main' into fix/1419 - -commit cd682cb27ddc65915181133a092f8ee30baf7092 -Merge: 3a05c8511 e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:06:44 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label - -commit 83fddff8f77f0dbe78c5936bfe3b03ce5dd07815 -Merge: 1d5129a11 e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:05:08 2022 -0500 - - Merge branch 'raft-tdp-main' into build/854-npm-migration - -commit 40d021c92c88ee9eacb8c7b8244c6782059685ef -Merge: 208fa0b89 e3f16edc5 -Author: Jorge Gonzalez -Date: Wed Jan 19 11:01:01 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1353-elastisearch-adr - -commit e3f16edc55ddddca3d0a043fa33958c9cf0aaac0 -Merge: cf951f717 db97039df -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 10:10:23 2022 -0500 - - Merge pull request #1553 from raft-tech/valcollignon-patch-1 - - Update README.md - -commit 76342ac62a755c319db3006f27401959970fc7fb -Author: Aaron Beavers -Date: Wed Jan 19 10:01:45 2022 -0500 - - update references to close.svg - -commit db97039dfbc9a11ba6f3668796789da22b19dadf -Merge: bf068593b cf951f717 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 09:28:07 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit cf951f717de9f206578aae900429015ebfb7ea55 -Merge: 09640db47 70114a4ee -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 09:24:29 2022 -0500 - - Merge pull request #1542 from raft-tech/adp/1522-ps-updates - - Issue 1522: Updating TANF-app/doc/Product-Strategy/ - -commit 5cb9403a6ef81c58a561e31b1448a303c0929156 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Jan 19 09:20:59 2022 -0500 - - Update sprint-38-summary.md - - Moved completed issues to Closed/Merged/Completed section - -commit 70114a4eeaad2a5903f9256831126d6067517f63 -Merge: 802b48f4a 09640db47 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 09:17:50 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1522-ps-updates - -commit 09640db472e31cc2c2f91a5939d69a1bb26d27e7 -Merge: 2253caa4b 4d4b51ef4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 09:17:48 2022 -0500 - - Merge pull request #1547 from raft-tech/adp/1523-hww-updates - - Issue 1523: Updating TANF-app/doc/How-We-Work/ - -commit 4d4b51ef404650603e75aed814d25a3a5672cc22 -Merge: 89dcdc450 2253caa4b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 19 09:04:10 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1523-hww-updates - -commit 94a080ea35af52192d2b6bddca605e3fdbd8fa47 -Merge: a552803f3 2253caa4b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 18 16:42:03 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1170-ams-for-ofa - -commit 2253caa4b91f58fe44aeec5f07cf37d649fbc437 -Merge: 11fd8101f 3fb939900 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 18 16:41:57 2022 -0500 - - Merge pull request #1539 from raft-tech/adp/1521-background-updates - - Issue 1521: Updating TANF-app/doc/Background/ - -commit fc11b3cef56b183eafe7ea6baed516642a22dd72 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Jan 18 14:02:43 2022 -0500 - - Create sprint-38-summary.md - -commit bf068593b7fee35b109c7c133fa9c549a87cb6b6 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Jan 18 13:59:39 2022 -0500 - - Update README.md - - Fixing spelling error - -commit 3fb939900f2d0ee5b231d15d227cba881ed1b6f8 -Merge: 3197922b7 11fd8101f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 18 12:10:51 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1521-background-updates - -commit 11fd8101f1084fcde9ad87c0e7adf7f6e469cf47 -Merge: 2a2cca6cb 52081d665 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 18 12:10:26 2022 -0500 - - Merge pull request #1369 from raft-tech/feat/1136-ams - - feat(1136): Accept AMS OpenID - -commit 52081d6653ee5a81938d49c784d674343e74eb65 -Author: Jorge Gonzalez -Date: Tue Jan 18 10:41:18 2022 -0500 - - build: prevent faulty deploys from missing settings - -commit 95e4db9b15351d00a4e11af011f1aae2bcccdc18 -Author: Jorge Gonzalez -Date: Tue Jan 18 10:23:05 2022 -0500 - - Update tdrs-backend/tdpservice/settings/common.py - -commit 89dcdc4508e32f50b1b5e27ea27f2aa69156f3db -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 18 09:31:03 2022 -0500 - - Update docs/How-We-Work/our-priorities-values-expectations.md - - url fix - -commit 855ccea1cdb8b1275dbe2f754d2120aa2b9b72ef -Merge: 24cf7c18e 2a2cca6cb -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 18 06:20:55 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 6bec2de23e286db22a6a85f83d852309d6c1a8e4 -Author: Aaron Beavers -Date: Fri Jan 14 16:44:23 2022 -0500 - - Add deployment scripts - -commit 08905c0b28819fb417c3e04ff2d5e875d9da0043 -Merge: a79fa7c27 2a2cca6cb -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 16:20:14 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1523-hww-updates - -commit a79fa7c278f50322cb36d2644c1493769b19e400 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 16:13:42 2022 -0500 - - fix priorities md name - -commit 2a2cca6cb3e42fa1bbe51329fe63fb5916d8562e -Merge: d009f7d27 5aa23cca6 -Author: Miles Reiter -Date: Fri Jan 14 15:57:32 2022 -0500 - - Merge pull request #1546 from raft-tech/1269-add-fall-2021-research-synthesis - - 1269 add fall 2021 research synthesis - -commit a552803f393a0887e6176d50cb42fa686414368c -Merge: 24c8d5ecf bd1eeaaf7 -Author: abottoms-coder -Date: Fri Jan 14 15:57:31 2022 -0500 - - Merge branch 'feat/1170-ams-for-ofa' of github.com:raft-tech/TANF-app into feat/1170-ams-for-ofa - -commit 24c8d5ecf2f936df3762245e4803bcb19ffbe115 -Author: abottoms-coder -Date: Fri Jan 14 15:57:20 2022 -0500 - - Minor tweaks after looking at the PR diff - -commit 6c79c781033340441e5908113c6286309311ca86 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:47:49 2022 -0500 - - update PR template links - -commit 823325d3d31fee8bc2ea8e6d2f622e68f0f78d14 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:40:47 2022 -0500 - - update PR template - -commit ac297f744a426b8d7606c4267cd14d5de0011326 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:39:37 2022 -0500 - - updated mtgs md - -commit a6f0cbda6838d344b34a633a2cdb41051176899c -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:37:51 2022 -0500 - - updated team comp - -commit b4c6dd16ae69904faa3b40d0892871b012e26328 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:36:28 2022 -0500 - - del quality md - -commit bfa8b2eb10121d41de57bd31ad883789966f78d4 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:35:40 2022 -0500 - - create priorities md - -commit 94ae59d5c2d3d5a2c94c54d9f7867f66180193fa -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:32:11 2022 -0500 - - del DoD and manual chks md - -commit 64544017f4441e4edb81b05e64b49027616f8eb6 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:28:00 2022 -0500 - - moved mtgs workflow and comm tools md - -commit ad202198cf920f4f85359ce2cca569c14c005d83 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:23:53 2022 -0500 - - del kickoff md - -commit 88f3b92a67511b57f3d759510859a961a9f0d050 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:20:21 2022 -0500 - - del branching md - -commit 9461c3bebd3fa9ffbaa78a4ac90a8d2f6a067cbd -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:19:14 2022 -0500 - - del gov a11y md - -commit eef232a83b9c9ae751054451dd8ff091689f463c -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:17:53 2022 -0500 - - moved heuristics md - -commit 6b516d2cad4a5bb6543e250b144fd3d9603dd550 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jan 14 15:15:23 2022 -0500 - - added ToC to subdir - -commit 5aa23cca61a035e089fb6ab6ee3d3a5bf73a9537 -Author: Miles Reiter -Date: Fri Jan 14 14:25:28 2022 -0500 - - Update README.md - -commit bde7884fcb4c55c0c998fd7158e2ab1e79d00f53 -Author: Miles Reiter -Date: Fri Jan 14 14:17:09 2022 -0500 - - Update 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md - -commit df59304fd0ca80c8722abc0d62d67b7dd73ba6a7 -Author: Miles Reiter -Date: Fri Jan 14 14:16:32 2022 -0500 - - Update 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md - -commit b54e666f5508af54932931561ecc0890771ba6aa -Author: Miles Reiter -Date: Fri Jan 14 14:13:54 2022 -0500 - - Update 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md - -commit 2a7fa52abea9a7fbdf332692b3ed8af7458f422d -Author: Aaron Beavers -Date: Fri Jan 14 14:09:23 2022 -0500 - - initial addition of files from miles repo - -commit bd1eeaaf7279bd9ce2cd9bbf617e902593fa72aa -Merge: 0d3bb5efe 24cf7c18e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jan 14 12:47:14 2022 -0500 - - Merge branch 'feat/1136-ams' into feat/1170-ams-for-ofa - -commit 0d3bb5efeffb9e560bcba8329e9f3f857e459b57 -Author: abottoms-coder -Date: Fri Jan 14 12:15:00 2022 -0500 - - Removing obsolete/dead Login.gov-specific get() - -commit f27d6dd319d9cc3b20a6af1e4cdd022053832f1c -Author: abottoms-coder -Date: Fri Jan 14 12:13:17 2022 -0500 - - Refactoring with Jorge - -commit 9064672ccbc9ea0824e1cd5bfcee5a6ca4c94adb -Author: abottoms-coder -Date: Fri Jan 14 11:51:20 2022 -0500 - - v12 was breaking my ubuntu environment, using latest resolves issues. - -commit aa2c966a330d17b38d4696079702aa089a56ae8c -Author: Aaron Beavers -Date: Fri Jan 14 11:39:18 2022 -0500 - - add owasp commands - -commit 882c81e2f51979b1a3a4e1daf68a534f039caffc -Author: Aaron Beavers -Date: Fri Jan 14 11:36:43 2022 -0500 - - tweaked a few commands and added namespaces - -commit 3a05c8511d086fdd61dcabfd2a5deb4078a3dc59 -Merge: 6cf1d1528 d009f7d27 -Author: Aaron Beavers -Date: Fri Jan 14 09:27:32 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1449-a11y-dependabot-label - -commit 802b48f4ae0a646e4b9f852cea207521e1fae295 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 13 17:15:27 2022 -0500 - - updated roadmap md - -commit b4faace3438a4ba06878ff1f6213ba426a548a78 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 13 17:14:17 2022 -0500 - - updated vision md - -commit 127e9972a2397269f15f3148c86509932d605b80 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 13 17:12:46 2022 -0500 - - updated considerations md - -commit 0f986d5aff13f57e250a44358b3c2223132f56c9 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 13 17:11:10 2022 -0500 - - del prodtastic md bc moved into considerations md - -commit bb88d8ef335c6f7338b505bf58bd3f0b1068ab93 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 13 17:09:13 2022 -0500 - - added readme with TOC - -commit 3197922b7660c2ddf6dd3ed370687cbfa467e913 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 13 13:41:02 2022 -0500 - - Update docs/Background/Current-TDRS.md - -commit 9fe49509d198849d135f41c50ed234d73da42ec9 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 13 13:40:56 2022 -0500 - - Update docs/Background/README.md - -commit 24cf7c18ed3c350e9be82245b427bf882d2bbed2 -Merge: e9855905a d009f7d27 -Author: Jorge Gonzalez -Date: Thu Jan 13 11:08:07 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 2b5856a8f51940fbe349301f4135f18f7f032af2 -Merge: a123bdf77 1857d57a1 -Author: abottoms-coder -Date: Thu Jan 13 10:50:20 2022 -0500 - - Merge branch 'issues/782-python-latest' of github.com:raft-tech/TANF-app into issues/782-python-latest - -commit a123bdf772a39a279653f7bfd7e5d2ae9a967d52 -Author: abottoms-coder -Date: Thu Jan 13 10:50:06 2022 -0500 - - Including patch now, retested locally - -commit 208fa0b89e1498b06cd37fd3fa62f6745bd7d73f -Author: abottoms-coder -Date: Thu Jan 13 10:45:43 2022 -0500 - - Melding Alex's context statement into the doc - -commit 0198b9ddc1ba4a331a5b72b724f708d3a21466ab -Author: abottoms-coder -Date: Thu Jan 13 10:39:10 2022 -0500 - - Feedback from review - -commit bf32f2036ccfd409e1d02cfdf5dd6ed179088be7 -Author: abottoms-coder -Date: Thu Jan 13 10:37:06 2022 -0500 - - Incorporating better pro/con from John's file - -commit e9be5979e0bbee66f3ace8ff62b475f1fc907d72 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 13 10:29:32 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit b87457f084c7a8e5709de36c4c1dc7ec449aa2c0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 13 10:29:26 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit d0e0b57eb87a29b0b481272e709ec239282c7e4c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 13 10:28:35 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 1d5129a11769069f28f8b6421c7edd7bc23c411f -Merge: 581a6bf12 d009f7d27 -Author: Jorge Gonzalez -Date: Thu Jan 13 09:39:54 2022 -0500 - - Merge branch 'raft-tdp-main' into build/854-npm-migration - -commit 17c0d3e4e932036003c109c299b11693787b49b5 -Author: Miles Reiter -Date: Wed Jan 12 22:31:13 2022 -0500 - - Rename 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History to 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History.md - -commit a133a3717e92d2fc093ebee876107d63ce28ddcc -Author: Miles Reiter -Date: Wed Jan 12 22:30:26 2022 -0500 - - Create 2021, Fall - Investigating Partial Submission & Evaluating TDP Submission History - -commit e449c87899cee61617c5c65041935db2fa4f0bf1 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 12 17:27:03 2022 -0500 - - Update docs/Background/Current-TDRS.md - - updated date - -commit b1fbfda3a732557114b90adaa69455050c4f1c41 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 12 17:18:12 2022 -0500 - - Update docs/Background/Current-TDRS.md - - fix link - -commit 99ffd69a7dffccb4c47f7b428453b83d59e8071a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 12 17:00:40 2022 -0500 - - Update docs/Background/Current-TDRS.md - - fixing link - -commit 7788c4cd2097cbd0dac01f11fdeaa16f25259f27 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 12 16:58:43 2022 -0500 - - Update docs/Background/Current-TDRS.md - - fixing link - -commit 127be17d4d487ef9ef8155f2f20b30d7a2adc57b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 12 16:38:44 2022 -0500 - - added TOC, updated tdrs and agency context, del prototype dir - -commit 634df30754c63d0795733a0ebc82a15fd41a778c -Author: abottoms-coder -Date: Wed Jan 12 16:08:30 2022 -0500 - - imperative mood wording fix - -commit 581a6bf12d0116b3e0c3189f838e0de54d74141c -Author: Jorge Gonzalez -Date: Wed Jan 12 14:53:31 2022 -0500 - - build(854): migrate from yarn to build/854-npm-migration - -commit e4d58b2ecd26c781b47fbf3b35997ac24becda9b -Author: abottoms-coder -Date: Wed Jan 12 15:54:48 2022 -0500 - - linter documentation fix - -commit e90fc073a8d09f8f71605a53f36eaa715514eda8 -Author: abottoms-coder -Date: Wed Jan 12 15:47:52 2022 -0500 - - minor pep8 fix - -commit c3ed42a7fc889d11571835bf52f55e59e59f22f5 -Author: abottoms-coder -Date: Wed Jan 12 15:47:14 2022 -0500 - - First sloppy version of handle_email - -commit d009f7d2730264714e5c34f4718690550ff4def4 -Merge: 6a951689f d4cd9d2ec -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 12 15:33:43 2022 -0500 - - Merge pull request #1454 from raft-tech/feat/1425-pa11y - - Fix pa11y screenshots - -commit b7f77d97c187ba3ae4ff3f72fb0e3caaa585ca83 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 12 15:09:54 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md - - Co-authored-by: Jorge Gonzalez - -commit 3874a959f1870040903dd41eaa34173ae59d8d07 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 12 15:09:49 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/017-elastisearch.md - - Co-authored-by: Jorge Gonzalez - -commit e9855905a83c917b589489911015868fdb9e1461 -Author: Jorge Gonzalez -Date: Wed Jan 12 13:21:37 2022 -0500 - - build: fix codecov patch config - -commit d4cd9d2ec62b3a38ccc33ea361f3bf8965176ee2 -Merge: 08e017ae2 6a951689f -Author: Aaron Beavers -Date: Wed Jan 12 13:16:01 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1425-pa11y - -commit cbe12f1a2236ff565ef72309a2b974a1baf94c83 -Author: abottoms-coder -Date: Wed Jan 12 13:14:12 2022 -0500 - - linting fixes as it blocks deployment - -commit 922a95e8820a250cfbe8b29ed79eb68d19d12723 -Author: Jorge Gonzalez -Date: Wed Jan 12 13:01:58 2022 -0500 - - test: missing state nonce tracker case - -commit 82d67bbfcafcf99b0b7f5fd0014cf39758b423ec -Author: Aaron Beavers -Date: Wed Jan 12 12:17:23 2022 -0500 - - Move preventDefault inside condition - -commit 58b26bba4ce2e8b1046bfa73cb637a7cadf8f843 -Author: abottoms-coder -Date: Wed Jan 12 12:16:52 2022 -0500 - - Adding debug logging for looking at requests.META - -commit 901d628d990bbe2d1a753a11b0f29de30f123589 -Author: Jorge Gonzalez -Date: Wed Jan 12 11:38:25 2022 -0500 - - test: tweak customauthentication test - -commit 8344f6eecebbcac378bad941102ab24ff55abce5 -Author: abottoms-coder -Date: Wed Jan 12 11:27:54 2022 -0500 - - First draft, will submit to draft PR for feedback - -commit 813b0545ad3684123b88e1ec86c24ec8f91cc2a9 -Merge: 2e0476a34 6a951689f -Author: Jorge Gonzalez -Date: Wed Jan 12 09:15:17 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 1857d57a17daca23cd7117cc4d9566d4a40e7d64 -Merge: 59adf1523 6a951689f -Author: Jorge Gonzalez -Date: Wed Jan 12 09:13:35 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/782-python-latest - -commit 6a951689ff154e7cd9d5b041c4d8931e1a9d3276 -Merge: 84db84320 141151159 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 12 08:58:11 2022 -0500 - - Merge pull request #1533 from raft-tech/adp/1525-sr-updates - - Issue 1525: added readme to sprint review subdir - -commit a261afdf46a036a1fcfc9575c9bff0f28a0268f7 -Author: abottoms-coder -Date: Tue Jan 11 18:19:02 2022 -0500 - - Tests and code are working, side-stepped an inheritance issue, will need to refactor for cleanliness - -commit 54e630132cdbbb69d4076a6478a4947002128d31 -Author: abottoms-coder -Date: Tue Jan 11 17:00:34 2022 -0500 - - Admin test now uses acf email - -commit 586ec94efdc721c99f44f0322113ce26ca72bcc7 -Author: abottoms-coder -Date: Tue Jan 11 16:49:48 2022 -0500 - - It's messy, but I finally got a successful test on the base case for an admin user w/ acf email. Want to save state - -commit 59adf1523cb5b6577bb9663baa7a4b6bac0ea2ec -Merge: 874110421 84db84320 -Author: Jorge Gonzalez -Date: Tue Jan 11 14:10:01 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/782-python-latest - -commit 14115115906538510c7e42a378c173f71cc9f327 -Merge: cac15baaf 84db84320 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 11 13:37:36 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1525-sr-updates - -commit 84db84320840d105e2d9bece2d9e1a82aa320272 -Merge: a162830fd 0b9749ae7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 11 13:37:02 2022 -0500 - - Merge pull request #1531 from raft-tech/adp/1524-sc-updates - - Issue 1524: security-compliance subdir updates - -commit 0b9749ae70d6cbcb9066e2361ba83c96a27dff51 -Merge: 4e3cbe462 a162830fd -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 11 13:09:41 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/1524-sc-updates - -commit 547f48960be338bd8f3b4dda478ad0b02631c9c8 -Author: abottoms-coder -Date: Tue Jan 11 11:32:37 2022 -0500 - - Adding my tests to latest from 1136 AMS ticket/branch - -commit 2e0476a34f2597704c942f4384686cbeba201816 -Author: Jorge Gonzalez -Date: Tue Jan 11 11:24:20 2022 -0500 - - fix: change backend login_url redirect to frontend url - -commit 2b4391b931176810e01e5895736b7873bdb2ad5e -Merge: fff559de7 64c52406d -Author: abottoms-coder -Date: Tue Jan 11 10:25:45 2022 -0500 - - Merge branch 'feat/1136-ams' of github.com:raft-tech/TANF-app into feat/1136-ams - -commit 8741104218e7ff92f95c6afa12c82e30b9fa0f22 -Merge: 56ae9fb89 a162830fd -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jan 11 10:06:27 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/782-python-latest - -commit a162830fdd3389d72112619b730d8430165e44a3 -Merge: 4eecdc4d5 074ecb9c2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jan 10 17:28:22 2022 -0500 - - Merge pull request #1437 from raft-tech/feat/573-script-docs - - scripts directory README documentation - -commit 56ae9fb893bc007d541d3b84a337da1b30b47de3 -Merge: 5113af6d8 4eecdc4d5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jan 10 17:27:23 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/782-python-latest - -commit 5113af6d8d0bb5b92d0f2225a9f3fa4ff44e3766 -Author: abottoms-coder -Date: Mon Jan 10 17:16:51 2022 -0500 - - messed up my pipfile which is why flake8 wasn't found - -commit 231356f376e86751f3d167f5384177d70cf17795 -Author: abottoms-coder -Date: Mon Jan 10 16:55:59 2022 -0500 - - updating lock file - -commit 68d2c7dcf636321b83f03afebc36f4a2062f6812 -Author: abottoms-coder -Date: Mon Jan 10 16:51:23 2022 -0500 - - typos on these files, 3.10 - -commit 002b87304f79688dd30a42f8199844978b511b5e -Author: abottoms-coder -Date: Mon Jan 10 16:50:43 2022 -0500 - - trying 3.10 - -commit 21ab0539fdaa2d806f7648909810612d52424bf9 -Author: abottoms-coder -Date: Mon Jan 10 16:33:44 2022 -0500 - - Updates per running trufflehog locally - -commit 86d486f9f90393f8e7daef744aa425db5ebb7828 -Author: abottoms-coder -Date: Mon Jan 10 15:38:21 2022 -0500 - - python v3.9.9 instead - -commit 7b17a15ff0fc5a45aabbcb549e5b35ded0c3da43 -Author: abottoms-coder -Date: Mon Jan 10 15:35:55 2022 -0500 - - testing other changes - -commit 64c52406d23226e9c0daed024cce90212c536bc7 -Author: Jorge Gonzalez -Date: Mon Jan 10 15:26:02 2022 -0500 - - refactor: various nits and fixes - -commit cac15baaf64d5773e7a87bae9fd43bfddc8e4f77 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:26:54 2022 -0500 - - added readme to subdir - -commit 4e3cbe4627ca1db1ce19ddb048ad4e7e71e8a4ad -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:15:07 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit d95973e01244ced5e3fd9867bb5119e3f1aac919 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:13:26 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit b5fc0346a0b5c9987d358934246fae51537f8cb6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:12:47 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit 1e24b95172e4f7e21ae860f04361a1523d403a4a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:11:50 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit 900888874851d35e85f420bac2189598981c9656 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:11:08 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit ed10ccc00afb5398025a05302f4325a3b67c2ee8 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:08:41 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit a1a1ee78ea04d605cbd9728ab23c2b4141290794 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:03:41 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit 3fc5298c022158bc3295580536d18f296794dce6 -Author: Jorge Gonzalez -Date: Mon Jan 10 14:01:02 2022 -0500 - - fix: logout uri params - -commit 3fca280eea126727780bdc353686256d81b5451d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 14:00:21 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit 13f15315797ac00e918ab1e2b4e03f682f556601 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 13:59:09 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit 6fbd9bfd61441eeb9d5cdce4e946b11508d6c888 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 13:58:08 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - -commit 2146529293088eea4f3b1e893841a63463fab5ea -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 13:52:40 2022 -0500 - - Update docs/Security-Compliance/Secret-Key-Mgmt.md - - fixed broken link - -commit 033a2c158b62504de6b04325733bb75b3219f355 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 10 13:23:24 2022 -0500 - - updated TOC and secret key md - -commit 6cf1d1528aa6ee73edbd92471b964c1d37888341 -Author: Aaron Beavers -Date: Fri Jan 7 19:53:18 2022 -0500 - - add a11y label to frontend dependabot prs - -commit c38f229197b16f5d68b245babbf95093ade229a8 -Author: Jorge Gonzalez -Date: Fri Jan 7 16:18:09 2022 -0500 - - refactor: re-introduce ci success requirement - -commit 0ea550e81455e1d6a0649c6e11a6df2dadd85792 -Merge: e51a518fe 4eecdc4d5 -Author: Jorge Gonzalez -Date: Fri Jan 7 15:44:44 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit e51a518fe50b64637beb2bc658aa10ed1201c4ca -Author: Jorge Gonzalez -Date: Fri Jan 7 12:01:09 2022 -0500 - - test with ams state factory - -commit 4975b7b796842d6ec9202ab0f1c842b41172e5c7 -Author: Aaron Beavers -Date: Fri Jan 7 15:41:05 2022 -0500 - - name space migration functions - -commit 074ecb9c2a81d393af7763d86fbb286e3f879e11 -Author: Aaron Beavers -Date: Fri Jan 7 14:46:47 2022 -0500 - - Update "where its used" for deploy infrastructure sections - -commit 67eafa53083ff9c9b77a756d342a14b56af1f27a -Merge: cba5ae7e1 4eecdc4d5 -Author: Aaron Beavers -Date: Fri Jan 7 14:39:35 2022 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/573-script-docs - -commit 4eecdc4d5225715dc21de2aadf5f92841b05de66 -Merge: 5da0b91e5 cbe91433a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jan 7 12:11:56 2022 -0500 - - Merge pull request #1515 from raft-tech/adp/repo-doc-structure-update - - Issue 1477: Updated main readme, doc structure, and secret key md - -commit fff559de7013545f825ce8337a01fa4bd41b1c80 -Author: Jorge Gonzalez -Date: Fri Jan 7 12:01:09 2022 -0500 - - test with ams state factory - -commit 143794cd9eec504351090cd1ea21f046a5025330 -Author: Jorge Gonzalez -Date: Fri Jan 7 11:19:13 2022 -0500 - - test 2 - -commit fbf915f2803af2fcd86143073c1a92ec22bd93a4 -Author: Jorge Gonzalez -Date: Fri Jan 7 10:25:28 2022 -0500 - - test 2 - -commit 1ce9ae91ecb13f0b4f520fc87bc789f1bb189c99 -Author: Jorge Gonzalez -Date: Fri Jan 7 09:57:55 2022 -0500 - - test - -commit b70076ccc2db6bfbaff3f941466de133fda875ea -Author: Jorge Gonzalez -Date: Fri Jan 7 09:32:55 2022 -0500 - - style: lint - -commit 99b1174f5c3b5d26ea5726b0b857f9492b0de897 -Author: Aaron Beavers -Date: Thu Jan 6 14:51:41 2022 -0500 - - documented some functions, added several more - -commit 80aff15d1052a8da499055846208be9cb7843f8b -Author: Aaron Beavers -Date: Thu Jan 6 14:20:36 2022 -0500 - - resolve conflict with comments - -commit d1a7ac753c1a451df4847c29380436ab881eaf3e -Author: Jorge Gonzalez -Date: Thu Jan 6 14:18:35 2022 -0500 - - Update tdrs-backend/docs/remote-development.md - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 113a0193a5e0f03a55723d3ac0d69b9b8bafc7ff -Author: Jorge Gonzalez -Date: Thu Jan 6 14:18:28 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/login.py - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 7bb9234f753340f7113375cb53dc0f5e3b75d4c7 -Author: Jorge Gonzalez -Date: Thu Jan 6 14:18:20 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/login_redirect_oidc.py - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 9e7e68ab1744cc3d810de5e474cf617aa3ca825b -Author: Jorge Gonzalez -Date: Thu Jan 6 14:18:13 2022 -0500 - - Update tdrs-backend/tdpservice/users/api/utils.py - - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 30210191e629b4e1f157236e0fca180022d61808 -Merge: 4beb63a35 5da0b91e5 -Author: Jorge Gonzalez -Date: Thu Jan 6 14:14:59 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 9fd24ea2ca0c69562116520fc1c5a4f6f4507af8 -Author: Programming -Date: Thu Jan 6 10:51:34 2022 -0800 - - added commands and shell header - -commit cbe91433aa3083fafa3a4554af334fceb2b2a6f9 -Merge: be5d14346 17a95d7ec -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 6 12:25:04 2022 -0500 - - Merge pull request #1529 from raft-tech/issues/1477-ADR-conflict - - Moving 1082 ADR files into folder rename from 1515 - -commit 17a95d7ec879275f0d605f96f8d097f9b20c3d19 -Author: abottoms-coder -Date: Thu Jan 6 12:10:15 2022 -0500 - - Incorporating new changes from 1515 - -commit fe61d0d161239253531382eeb749fc2aa29a01ab -Author: abottoms-coder -Date: Thu Jan 6 12:06:13 2022 -0500 - - Moving 1082 ADR files into folder rename from 1515 - -commit be5d14346c0d93b4b8544687e819bc73ca5e8646 -Merge: c1c2c4233 5da0b91e5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 6 11:51:57 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/repo-doc-structure-update - -commit 5da0b91e52f9d811c4e73b82afa8af70ae0411cb -Merge: 72c0f9257 62a09c56f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 6 11:51:46 2022 -0500 - - Merge pull request #1488 from raft-tech/issues/1082-ADR-edits - - Issue 1082: Updating ADRs - -commit 4beb63a3530ec6df4fb4ca5f15f78126d77b62c2 -Merge: b3e8833de 72c0f9257 -Author: Jorge Gonzalez -Date: Thu Jan 6 11:24:47 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 62a09c56f6b3aa075d91bfca8e5e156610f7c180 -Merge: 842a7027f 72c0f9257 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jan 6 11:21:36 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/1082-ADR-edits - -commit 011ea0c307dd60b40c3535aed30730229b090c58 -Author: Aaron Beavers -Date: Thu Jan 6 11:08:26 2022 -0500 - - Added a few commands, not working - -commit 842a7027f6f7e3dd30d65a87cade664e87832631 -Author: abottoms-coder -Date: Thu Jan 6 10:41:37 2022 -0500 - - Moved ADRs to Technical Docs per request from ADPennington - -commit c1c2c4233afafb8b3f42b462cdb319e9491629d0 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 6 10:17:55 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/009-git-workflow.md - - spelling! - -commit 60a0f27567890d77124a1a45bf35dc2f9b9c8b85 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Jan 6 10:17:08 2022 -0500 - - Update docs/Technical-Documentation/Architecture-Decision-Record/009-git-workflow.md - - spelling! - -commit 15c10c2999607a326d2d5967025bf5bf4eefed83 -Author: Alexandra Pennington -Date: Thu Jan 6 10:05:48 2022 -0500 - - updated 009ADR with diagram - -commit de78fdc5a6bd01aa6ccbf0e5e002a9eb89ec7acc -Merge: 6a97c84a9 72c0f9257 -Author: Alexandra Pennington -Date: Thu Jan 6 09:47:58 2022 -0500 - - Merge branch 'raft-tdp-main' into adp/repo-doc-structure-update - -commit 6cf442dcd34f24fab6a8e73114d62b12286bc65d -Author: abottoms-coder -Date: Wed Jan 5 17:14:04 2022 -0500 - - Undoing local change for localstack - -commit 7cc45e53e34333c3c871e72a4e6ebbf6ae8f0927 -Author: abottoms-coder -Date: Wed Jan 5 17:13:34 2022 -0500 - - Updating to python3.10 using ppa:deadsnakes - -commit a4c0c5a0afb770fd8a244c11cb651ab407c89a2d -Author: Aaron Beavers -Date: Wed Jan 5 17:05:34 2022 -0500 - - Initial work done on command script - -commit 86833f5771811aa8e1c24075f589fcd505a7fc81 -Author: abottoms-coder -Date: Wed Jan 5 16:59:22 2022 -0500 - - Updated piplock and tested locally - -commit f5b445fb5b08197a5410dd2748019c08d216f807 -Merge: 3402b6837 72c0f9257 -Author: Jorge Gonzalez -Date: Wed Jan 5 16:22:22 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1413-tooltip-improvements - -commit 3402b6837d75339f7c6229b343d53e822d52f2f6 -Author: Jorge Gonzalez -Date: Wed Jan 5 16:22:08 2022 -0500 - - build: update django-admin-508 to 0.1.4 - -commit 72c0f925760d7ea27d4846e0cabc6591ffde7750 -Merge: e1921ef68 cf87ebece -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:43:02 2022 -0500 - - Merge pull request #1517 from raft-tech/valcollignon-patch-3 - - Update Team-Composition.md - -commit cf87ebece53f351de7aa9758ac20b7df210c91fd -Merge: 6e73dde68 e1921ef68 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:23:39 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-3 - -commit e1921ef68504e5dde5864c390e085499f47e351d -Merge: 3b8ac2303 545ae6ca3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:23:28 2022 -0500 - - Merge pull request #1469 from raft-tech/valcollignon-patch-2 - - Update communication-tools.md - -commit 545ae6ca34d216f47c98aef5496fd120479f4891 -Merge: 6cad76843 3b8ac2303 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:14:20 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-2 - -commit 3b8ac23032bdb5a032ae8192cd87a2cbebc58951 -Merge: 56e26e38b b126eb5d0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:14:03 2022 -0500 - - Merge pull request #1519 from raft-tech/lfrohlich-patch-5 - - Update Acquisition.md - -commit b126eb5d0530401c1586b38c705af3516487c723 -Merge: ce5d23552 56e26e38b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:06:02 2022 -0500 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-5 - -commit 56e26e38b6ec256d01894eb73aa99e7e7d5747c2 -Merge: 15cff6046 1656ea945 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 13:05:37 2022 -0500 - - Merge pull request #1382 from raft-tech/lfrohlich-patch-2 - - Update our-workflow.md - -commit 1656ea945834bbd33a903491635909908b60b410 -Merge: 1c288c2bf 15cff6046 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 12:58:04 2022 -0500 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-2 - -commit 15cff6046e2e414d9fec22dcb2fcabb06af0d4a0 -Merge: 61ba4c702 94cccf7a5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 12:57:23 2022 -0500 - - Merge pull request #1518 from raft-tech/valcollignon-patch-4 - - Create sprint-37-summary.md - -commit b3e8833ded300b96e1e9899aa7842ebc0c983dca -Merge: 87a0afbe7 61ba4c702 -Author: Jorge Gonzalez -Date: Wed Jan 5 12:51:31 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit 94cccf7a5f344894ff2a490a0eca135738b2ea01 -Merge: 415647971 61ba4c702 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 12:49:37 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-4 - -commit 61ba4c702f0ef8f99caf5a178187ba586b9662dd -Merge: 837574415 84765103b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jan 5 12:45:41 2022 -0500 - - Merge pull request #1509 from raft-tech/valcollignon-patch-1 - - sprint-36-summary.md - -commit 6cad76843300b76fb7e73e2bd621c3edaf9f239d -Merge: ea40e328f 837574415 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jan 5 09:27:16 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-2 - -commit 84765103bdab28caccd610c9963a23308130289f -Merge: ed487d518 837574415 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 4 17:13:20 2022 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 415647971f95573921311019fdd650d89b4b4e6a -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 4 17:11:03 2022 -0500 - - Update docs/Sprint-Review/sprint-37-summary.md - -commit ed487d518aec57561634b2ffc174659b76a45592 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 4 17:10:18 2022 -0500 - - Update docs/Sprint-Review/sprint-36-summary.md - -commit ce5d23552528b769bc6893e82dcc8f3d924caa23 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 4 17:04:32 2022 -0500 - - Update docs/Acquisition/Acquisition.md - -commit da5a95450480e7d3623899b12ea2fbda6b41767f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 4 16:54:47 2022 -0500 - - Update Acquisition.md - - Added COR delegation letter for Lauren Frohlich - -commit 3415f843ccbd89f689d628ae6c0f2a184332086a -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Jan 4 16:39:26 2022 -0500 - - Create sprint-37-summary.md - -commit 6e73dde68a957442ad2b99f5e7d9b637fc9ac50e -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Jan 4 14:52:36 2022 -0500 - - Update Team-Composition.md - -commit 0cf39591efbabeecbd741885e1ded27a3723d88f -Merge: 9233415d8 837574415 -Author: Aaron Beavers -Date: Tue Jan 4 14:35:35 2022 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1413-tooltip-improvements - -commit 6a97c84a9696c0b3b0a16da152f72e3b05091343 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 4 13:53:43 2022 -0500 - - Update README.md - -commit 3556117d30db4d26c087787ee6019122adc8bc7a -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 4 13:34:02 2022 -0500 - - updated main readme, doc structure, moved secret key md - -commit 824818916190d17e65bda30943c871b1c38fa6c8 -Merge: d9671c41c 837574415 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jan 4 08:31:56 2022 -0500 - - Merge branch 'raft-tdp-main' into issues/1082-ADR-edits - -commit 87a0afbe77897c3c6dec7c361fae3ae9283f9f80 -Author: Jorge Gonzalez -Date: Mon Jan 3 17:18:40 2022 -0500 - - test: fix and refactor login tests - -commit ddf2ac0bac1fabc742fab71c9f140c28ee7d7c99 -Author: Jorge Gonzalez -Date: Mon Jan 3 16:28:37 2022 -0500 - - test: add additional ams test - -commit ad04b8299ef210926e4f1278a6dc332c8f1ab057 -Merge: 1d0c5e78f 837574415 -Author: Jorge Gonzalez -Date: Mon Jan 3 16:00:36 2022 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit 1d0c5e78f198998416f6595f968263f0876f44da -Author: Jorge Gonzalez -Date: Mon Jan 3 11:22:39 2022 -0500 - - test: fix latest AMS tests and refactor fixtures - -commit 837574415af7c57e182684a75bbcf4d942d3b62a -Merge: 8dc8fa34b a559f52f7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jan 3 15:43:54 2022 -0500 - - Merge pull request #1513 from raft-tech/abottoms-coder-patch-1 - - Update 011-buildpacks.md - -commit a559f52f788077d1c5136646282a1488ebc96305 -Merge: 782ba0d63 8dc8fa34b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 3 15:30:43 2022 -0500 - - Merge branch 'raft-tdp-main' into abottoms-coder-patch-1 - -commit 782ba0d6388f2b52418185570cb0ff3595f2c048 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 3 15:30:12 2022 -0500 - - updated w/ ADR format and moved restaging steps into dropdown - -commit 1c288c2bff81735e167e80e315ec955b792038d7 -Merge: 9998253d1 8dc8fa34b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 3 15:06:50 2022 -0500 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-2 - -commit 8dc8fa34ba08458c7423180ff0813586ff6b0c8c -Merge: 069654062 4f4862d8e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jan 3 14:28:57 2022 -0500 - - Merge pull request #1514 from raft-tech/issues/1508-buildpack-update-48 - - Update buildpack-changelog.md - -commit 9998253d150c7b10f2ba55be3c90a5b6bf4d5b6b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 3 13:55:29 2022 -0500 - - Update docs/How-We-Work/team-charter/our-workflow.md - - link to workflows added - -commit d1c2da3935ed3259816babf533dd7dcb088c44e0 -Merge: 75bd068da 069654062 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 3 13:18:13 2022 -0500 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-2 - -commit 75bd068da98ea46e93e54da8f0d19bc25f29a2e5 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jan 3 13:14:26 2022 -0500 - - updated workflow md with diagram - -commit cba5ae7e1736b66e069de49e2ea34e6ae1c1a6ae -Author: Aaron Beavers -Date: Mon Jan 3 11:56:20 2022 -0500 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit d9671c41cda748aa50e0d5529a2cd745578042d7 -Author: abottoms-coder -Date: Mon Jan 3 11:55:38 2022 -0500 - - Updating numbering at the top of those that have been renamed for consistency - -commit 0a73f2c59f349ae901f20161359146c43a192687 -Author: abottoms-coder -Date: Mon Jan 3 11:54:03 2022 -0500 - - Per draft PR discussion, moved tabletop doc and updated numbering. - -commit 4f4862d8e4eb227e80aec9defb2701675ac7e881 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jan 3 11:19:48 2022 -0500 - - Update buildpack-changelog.md - -commit 8042070e898cffbd4ebb17b09cfb2c214cbaf855 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jan 3 11:03:39 2022 -0500 - - Update 011-buildpacks.md - - While following these steps, wanted to update formatting. - -commit 6af381e756e9bf91b77e9f78bb6bc701635cdb57 -Author: Aaron Beavers -Date: Mon Jan 3 10:27:18 2022 -0500 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit ca01dac398e29f007fd693ee19e9ed343cc174d7 -Author: Jorge Gonzalez -Date: Mon Jan 3 10:10:53 2022 -0500 - - fix: lockfile - -commit 39086dce369a43a1ec480feb6c9402fb2c604d1b -Merge: 1bbd391c9 069654062 -Author: Jorge Gonzalez -Date: Mon Jan 3 10:00:56 2022 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - - # Conflicts: - # tdrs-backend/Pipfile.lock - -commit d14e361dd7b7c3f490144b87dcde17a1ba74b5dd -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Dec 29 11:45:28 2021 -0500 - - updating 013,015, and 017 - -commit b5bd7f0319d8b9fb279cfb87a06043361e63ac38 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 28 15:53:20 2021 -0500 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit b2a3dc87d5ad757bed4a120813006f956d6473a4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 28 15:52:24 2021 -0500 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit dffd79adf7a5ae87cf1a93c8adf655c76cf45089 -Merge: 84493288a 0b03e1d5f -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 28 15:39:37 2021 -0500 - - Merge branch 'issues/1082-ADR-edits' of https://github.com/raft-tech/TANF-app into issues/1082-ADR-edits - -commit 84493288af741715b4dd1936bac922ba6e8cdc53 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 28 15:39:09 2021 -0500 - - updating 009,010,011,012, and 014 - -commit 0b03e1d5fcd0223bdb556873fe44dd6b22132684 -Merge: 334e98214 069654062 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Dec 27 14:56:53 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1082-ADR-edits - -commit 334e982141cc3d189fe4ea2026d12ee2c5414b2b -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Dec 27 14:55:32 2021 -0500 - - updating 005, 006, 007, and 008 - -commit 0696540626671600205d746142a42f1f972b15aa -Merge: 0951e65d9 a91493144 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 22 12:03:53 2021 -0500 - - Merge pull request #1503 from raft-tech/update/1502-django-3.2.10 - - update django to version 3.2.10 - -commit 32cc637a639b357f88e25e4da9468bb97ba58f14 -Merge: 099e3df2a 0951e65d9 -Author: Aaron Beavers -Date: Wed Dec 22 12:01:52 2021 -0500 - - Merge branch 'raft-tdp-main' into fix/1419 - -commit 099e3df2a96c2bf14f8e863ae77a2060c2d37cae -Author: Aaron Beavers -Date: Wed Dec 22 11:47:54 2021 -0500 - - remove white space - -commit bc57314031362a5d911725275360d4985f0b28e5 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Dec 22 11:26:59 2021 -0500 - - sprint-36-summary.md - -commit a9149314436b2a24bf7b5d9c28cef095c96fb2c2 -Author: abottoms-coder -Date: Tue Dec 21 13:35:34 2021 -0500 - - updated lockfile - -commit efd774ec780cadc7c8880c1bd633eaa196ba6e5a -Merge: d8908c409 0951e65d9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 21 10:27:23 2021 -0500 - - Merge branch 'raft-tdp-main' into update/1502-django-3.2.10 - -commit 0951e65d92462c6f774314b5ec600b3d47f6397b -Merge: 70fa36bbf fa7cfea21 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 21 10:24:46 2021 -0500 - - Merge pull request #1490 from raft-tech/fix/1143-dac-fonts - - build(1143): Update django-admin-508 with default fonts to address S3 CORS issues - -commit d8908c4098d046708ad9ab006f4b3bc5dcebe4da -Merge: ec09f5a74 70fa36bbf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 21 09:53:45 2021 -0500 - - Merge branch 'raft-tdp-main' into update/1502-django-3.2.10 - -commit fa7cfea213a53eab38bf874d61c90b3a7a65c038 -Merge: d996050b1 70fa36bbf -Author: Jorge Gonzalez -Date: Tue Dec 21 09:45:23 2021 -0500 - - Merge branch 'raft-tdp-main' into fix/1143-dac-fonts - -commit 70fa36bbfaa312a349e27a553727024fa3b80365 -Merge: 9233415d8 696ff9a2e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Dec 20 15:45:07 2021 -0500 - - Merge pull request #1501 from raft-tech/doc/1484-github-mattermost-connect - - Update communication-tools.md - -commit d996050b1d38fdd7107ceb0a7d18bb6a7587547b -Author: Jorge Gonzalez -Date: Mon Dec 20 15:23:48 2021 -0500 - - build: update django-admin-508 to 0.1.3 - -commit 696ff9a2eb6e490339eb0b01a0441f15687c2e02 -Merge: 1a238471a 9233415d8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Dec 20 15:20:10 2021 -0500 - - Merge branch 'raft-tdp-main' into doc/1484-github-mattermost-connect - -commit dd08aa3df74721d467555b7c7677296543c3bcec -Merge: aa7cde12c f9f19dea3 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Dec 20 13:06:38 2021 -0500 - - Merge branch 'issues/1082-ADR-edits' of https://github.com/raft-tech/TANF-app into issues/1082-ADR-edits - -commit aa7cde12cb05d1ce223cb6fecdd60294dfaab568 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Dec 20 13:05:58 2021 -0500 - - updating 001 and 003 - -commit f9f19dea34398ab89337d606f072d9a7b16c6c14 -Author: abottoms-coder -Date: Mon Dec 20 12:21:26 2021 -0500 - - Merged two ADRs in 008 and renamed other ADRs to have sequential numbering. - -commit 3a8a613be50439114a93043d930718269dd4593d -Author: abottoms-coder -Date: Mon Dec 20 11:49:36 2021 -0500 - - Updates to ADRs. Might consider deletion of 008, will discuss with Alex. - -commit 143dbf3d9091e1babc7f6a940db94a75d8997e2a -Author: abottoms-coder -Date: Mon Dec 20 11:10:38 2021 -0500 - - Having VM issues, rebooting partway - -commit 1bbd391c92c20efd20834e9b75744da569be65a1 -Author: Jorge Gonzalez -Date: Fri Dec 17 16:09:20 2021 -0500 - - test: abstract more of TestLoginAMS - -commit 15b8b1b392148baf43fb47d4ea5544f88c308f7c -Author: abottoms-coder -Date: Fri Dec 17 15:23:17 2021 -0500 - - Setting up template for standard formatting across all ADRs - -commit 7a1ccc5defed16ef1123c4b3ee53937eb6aaffa5 -Author: abottoms-coder -Date: Fri Dec 17 14:59:42 2021 -0500 - - final link fix, maybe - -commit 51663ce7e0a35ebfa12e63d070c66df2c881e922 -Author: abottoms-coder -Date: Fri Dec 17 14:58:19 2021 -0500 - - links again - -commit e3472403f3f6b0e5cd23880051c62016b7a0bbf9 -Author: abottoms-coder -Date: Fri Dec 17 14:55:35 2021 -0500 - - links again - -commit 32c74c66797548afb5f663d72e9fe46d4160c663 -Author: abottoms-coder -Date: Fri Dec 17 14:51:10 2021 -0500 - - fixing broken ToC links - -commit f2416b4c86215450353b139b5a83be194f7766da -Merge: 84a0479c4 0ce4e5aa0 -Author: abottoms-coder -Date: Fri Dec 17 14:48:13 2021 -0500 - - Merge branch 'feat/573-script-docs' of github.com:raft-tech/TANF-app into feat/573-script-docs - -commit 84a0479c415b5d76473ae35f816212ae206d7b9e -Author: abottoms-coder -Date: Fri Dec 17 14:48:03 2021 -0500 - - added ToC per Alex - -commit e9ebd98b4248dfac7774e42a85ccbc61e2f7af34 -Author: Jorge Gonzalez -Date: Fri Dec 17 13:21:01 2021 -0500 - - test: add TestLofinAMS class with local mock - -commit c5b0ce911e74318be61a777a7005eb003e708c7b -Author: Jorge Gonzalez -Date: Fri Dec 17 10:12:19 2021 -0500 - - feat: add ams logout handler - -commit 0ce4e5aa065bf8b972cda6fd98ccba0e9299bd6f -Author: abottoms-coder -Date: Thu Dec 16 15:41:25 2021 -0500 - - Added details in the sections for where they're used for the check scripts - -commit 711bb1e763a0c019b823be0d083a24095aff5cab -Author: Jorge Gonzalez -Date: Thu Dec 16 12:28:23 2021 -0500 - - test: add requests_mock and initial ams test - -commit ec09f5a743240f211717e8aa1749c7d00c781c03 -Author: Aaron Beavers -Date: Thu Dec 16 12:29:26 2021 -0500 - - update django to version 3.2.10 - -commit f1aa41869229728096aa48c772f59bd4bda5e82c -Merge: bca61fba3 9233415d8 -Author: Jorge Gonzalez -Date: Wed Dec 15 14:55:13 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit bca61fba3e13a481fdb2ea8043b5bd07a47223e7 -Author: Jorge Gonzalez -Date: Wed Dec 15 14:54:59 2021 -0500 - - docs: add remote development guide - -commit 9233415d830d9facde436e6cc8c768040e1ffe97 -Merge: 97869f4a4 9188b3ddc -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 14:43:56 2021 -0500 - - Merge pull request #1485 from raft-tech/valcollignon-patch-3 - - Create sprint-35-summary.md - -commit b81e107ac41180fab7c719924b56ef9a99aaa35c -Author: Aaron Beavers -Date: Wed Dec 15 14:40:26 2021 -0500 - - add more ignore comments - -commit 833743194d7b4788d6d798e6f459109b1d0f32cd -Merge: 3c9c4e546 97869f4a4 -Author: Aaron Beavers -Date: Wed Dec 15 14:38:48 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into fix/1419 - -commit 9188b3ddcf7013f4bc43c1da383db3a231c69659 -Merge: 87c959d42 97869f4a4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 14:29:47 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-3 - -commit 97869f4a4baf9ab2d9e4b1ae631e07846b223fa7 -Merge: 8cb75e27c e7d95394f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 14:29:36 2021 -0500 - - Merge pull request #1458 from raft-tech/valcollignon-patch-1 - - Create sprint-34-summary.md - -commit e7d95394f7f9ab18238356cf97faeb6bb3e091fc -Merge: 1022ebd4e 8cb75e27c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 14:21:32 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 7365d6c5a47b4f17edeacf5a312d99bddbe057c7 -Author: Aaron Beavers -Date: Wed Dec 15 14:06:35 2021 -0500 - - sync readme - -commit 1a238471ab4f8e5098125faebb072e310d652799 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 12:13:09 2021 -0500 - - Update communication-tools.md - -commit d2bd35d47bdde5a4aa647d676e6405b2a33f7b85 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 12:08:39 2021 -0500 - - Update communication-tools.md - -commit 8cb75e27c962cb972350868039dbf6f1c4330f7b -Merge: ddcf5f96a 989663145 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 15 10:50:00 2021 -0500 - - Merge pull request #1464 from raft-tech/build/1405-django - - build(1405): update django to 3.2.9 - -commit 93796f8a7149e0874aea5ac85f9023c765707b3f -Author: Jorge Gonzalez -Date: Tue Dec 14 16:37:18 2021 -0500 - - fix: auth test - -commit 48ff5130f5d845f4c2a86001a15f539c7d7f681f -Author: Jorge Gonzalez -Date: Tue Dec 14 14:40:02 2021 -0500 - - fix: django admin login url - -commit 712d1c0625d8560237e89f20678a42a5bbc055dd -Author: Jorge Gonzalez -Date: Tue Dec 14 13:33:45 2021 -0500 - - styles: fix lint issues, remove additional logs, remove unused vars, add docstrings - -commit e0c80cc1b920f4196a6fa32c2693dfe0a27bfa4b -Author: Aaron Beavers -Date: Mon Dec 13 15:32:05 2021 -0500 - - Got all existing tests to pass again - -commit 4df654556934ceac51dce23af2491516302721ac -Author: Aaron Beavers -Date: Mon Dec 13 15:31:46 2021 -0500 - - update frontend tests - -commit 3c9c4e546f9ff24be55e06560ab8cfafaaf5f995 -Author: Aaron Beavers -Date: Mon Dec 13 13:19:18 2021 -0500 - - removed some logs, added an ignore comment for jest - -commit 2419cbe6affbc7e9efcb2e8092a46c713820b784 -Author: Aaron Beavers -Date: Fri Dec 10 14:50:39 2021 -0500 - - update several tests - -commit 6265e0fc471d1ee7e8a5019928a41282e507b0f4 -Author: Aaron Beavers -Date: Fri Dec 10 13:54:46 2021 -0500 - - update import names and small url updates - -commit fc4144c672ef0b964983fad13d1b5fb247fccec1 -Author: Aaron Beavers -Date: Fri Dec 10 10:29:27 2021 -0500 - - fix tab key navigation order - -commit 92e8f93425e50bd8fdde69b10f15d60644609f84 -Merge: 9fab24ab4 ddcf5f96a -Author: Aaron Beavers -Date: Thu Dec 9 15:37:21 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into fix/1419 - -commit 8711fed37bfc7c9e16a4bd138542d2c62c769f5a -Merge: 455864bd6 ddcf5f96a -Author: Jorge Gonzalez -Date: Thu Dec 9 12:11:52 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit afacc4800bdb37276a5648b655791d7301f6ca83 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Dec 9 10:35:26 2021 -0500 - - Update 001 ADR template.md - -commit 9896631451455d4fd5bac7dbf93b0219e40227aa -Merge: 030ee3289 ddcf5f96a -Author: Jorge Gonzalez -Date: Thu Dec 9 10:28:20 2021 -0500 - - Merge branch 'raft-tdp-main' into build/1405-django - -commit ddcf5f96abba76b2d38249d0210faa1f3f35386b -Merge: 8fab7892f 1ef4aa465 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Dec 9 10:28:09 2021 -0500 - - Merge pull request #1486 from raft-tech/abottoms-coder-patch-1 - - Update 018-developer-tabletops.md - -commit 1ef4aa46582a3cdd97a38ff645e7601bac30064f -Merge: c758b180f 8fab7892f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Dec 9 09:38:17 2021 -0500 - - Merge branch 'raft-tdp-main' into abottoms-coder-patch-1 - -commit 455864bd6bac6e28a6a3a504e3321daa7b7e2787 -Author: Jorge Gonzalez -Date: Wed Dec 8 17:15:15 2021 -0500 - - feat: log in users via hhs - -commit 030ee3289fcb940db9921493a0f8c6f355fcaf06 -Merge: fe11123c6 8fab7892f -Author: Jorge Gonzalez -Date: Wed Dec 8 16:13:09 2021 -0500 - - Merge branch 'raft-tdp-main' into build/1405-django - -commit 8fab7892f64d330256aacf3c8a71e7c119220ccd -Merge: d96436a64 b521d9cb5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 16:07:02 2021 -0500 - - Merge pull request #1475 from raft-tech/issues/dependabot-security-alerts - - Dependabot security alerts - -commit c758b180f1a5a960e576ef6acfa63ce7326f2445 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 15:41:22 2021 -0500 - - Update 018-developer-tabletops.md - - Minor typo/tweak to formatting - -commit b521d9cb58a15d71ad6ef426f7a769197e79b06a -Merge: 988f6bfb4 d96436a64 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 15:29:47 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts - -commit d96436a641d47195a510dbefe7ce1a37448c94e9 -Merge: 2fa5c7be3 d94dbadc2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 15:29:39 2021 -0500 - - Merge pull request #1467 from raft-tech/fix/1451 - - fix(1451): remove sidenav menu for logged out users - -commit bd7d9eab4328c030d74f136862fcb85cb0e4066b -Author: Jorge Gonzalez -Date: Wed Dec 8 13:51:02 2021 -0500 - - refactor: remove ams client assertion func - -commit 5edd14dae597577b64457e84070156b5f52e970e -Merge: aed8323c7 2fa5c7be3 -Author: Jorge Gonzalez -Date: Wed Dec 8 13:48:43 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - - # Conflicts: - # tdrs-backend/docker-compose.yml - -commit aed8323c702491dcb9bc4bcc068781fcb053ec6d -Author: Jorge Gonzalez -Date: Wed Dec 8 13:47:25 2021 -0500 - - refactor: fix token request shape - -commit 9d64207011529a18ef37ae3586552dd815b17039 -Author: Aaron Beavers -Date: Wed Dec 8 12:31:58 2021 -0500 - - add arguements extracted from cf cli - -commit d94dbadc29da6c8b16fb9409a3da1c4c198a8813 -Merge: 940fec880 2fa5c7be3 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Dec 8 11:24:47 2021 -0500 - - Merge branch 'raft-tdp-main' into fix/1451 - -commit 08e017ae22024e83dae676cc85c46f3522a2a23e -Merge: 33d631809 2fa5c7be3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 11:17:10 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1425-pa11y - -commit 2fa5c7be3114ed8359fccb9482cf46b0175a3bc8 -Merge: e3ef55e45 01db1169b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 11:16:52 2021 -0500 - - Merge pull request #1457 from raft-tech/feat/1036-logging-level-by-env - - Logging level dictated by env var - -commit 4678b1fd74bdff255c9f8736ba0874a518fcbfd9 -Author: Aaron Beavers -Date: Wed Dec 8 11:11:34 2021 -0500 - - Add descriptions to deployment scripts - -commit 998925054a2758b8a58ea773cf00965eb4a74757 -Author: Aaron Beavers -Date: Wed Dec 8 11:08:57 2021 -0500 - - Add usage to deploy-backend fs - -commit fe11123c6eaa8f8b6565fc8f35a96dbe1f7552f5 -Merge: 519e46350 e3ef55e45 -Author: Jorge Gonzalez -Date: Wed Dec 8 10:30:25 2021 -0500 - - Merge branch 'raft-tdp-main' into build/1405-django - -commit 940fec8806e2e0b0d4917289c1d52d8394df964f -Merge: 3db67c6fe e3ef55e45 -Author: Jorge Gonzalez -Date: Wed Dec 8 10:09:30 2021 -0500 - - Merge branch 'raft-tdp-main' into fix/1451 - -commit c205f9ba9498917de0c7602c5f0edd83573d4b9c -Author: Aaron Beavers -Date: Wed Dec 8 09:59:36 2021 -0500 - - update usage - -commit 01db1169b131d3d06b0c18fa601824e3d06d620b -Author: abottoms-coder -Date: Wed Dec 8 09:56:29 2021 -0500 - - reverting localstack version change -- was previously grasping at straws - -commit 67460d27b0155eea65f24375dc37e2593b167ad1 -Merge: 0eecd5803 9167448c4 -Author: Aaron Beavers -Date: Wed Dec 8 09:52:44 2021 -0500 - - Merge remote-tracking branch 'origin/feat/573-script-docs' into feat/573-script-docs - -commit 0eecd58031770b5adbd04f598aaf0b4e750c9559 -Author: Aaron Beavers -Date: Wed Dec 8 09:50:59 2021 -0500 - - add real world examples for zap-scanner.sh - -commit 90db30d868f2e8bdc29e567495469c0166be8c40 -Author: abottoms-coder -Date: Wed Dec 8 09:46:49 2021 -0500 - - Need to tell CircleCI to pull the environment variable into the docker container for TDP/backend - -commit a318fa66511c265f7be1d2b0cf3bebc0cbd88f78 -Merge: 7e70c51e2 e3ef55e45 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Dec 8 09:27:08 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit 988f6bfb4d085762179861329c018c286355d082 -Merge: d6637af46 e3ef55e45 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Dec 8 08:30:55 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts - -commit 87c959d42220acaa7bfa8c08b9a8484de897eaf1 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Dec 7 20:02:02 2021 -0500 - - Create sprint-35-summary.md - -commit 7e70c51e2a25bf5f8c84dc963d44558355fe5025 -Merge: 9dd4358b1 846a4382c -Author: abottoms-coder -Date: Tue Dec 7 17:00:56 2021 -0500 - - Merge branch 'feat/1036-logging-level-by-env' of github.com:raft-tech/TANF-app into feat/1036-logging-level-by-env - -commit 9dd4358b138a1469ebca66457913105cf92702c5 -Author: abottoms-coder -Date: Tue Dec 7 17:00:45 2021 -0500 - - Trying latest localstack version (13.0), resolves issue locally - -commit e3ef55e4584b23f590a9eca97df262c49f0d576e -Merge: ea4df7fa6 2fcaec070 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 14:19:01 2021 -0500 - - Merge pull request #1465 from raft-tech/1406-git-secrets-bug - - git-secrets-check PATH update - -commit d6637af460bf66c1e13717fd9e3987bb3cdb8485 -Merge: 7e11a16e3 ea4df7fa6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 7 11:38:56 2021 -0600 - - Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts - -commit 846a4382c93fd6b6459d856811f650103ab87d98 -Merge: 600260078 ea4df7fa6 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 12:35:48 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit 2fcaec07020be213b20804e34e2968d8f2dc243e -Merge: 52fcc06f3 ea4df7fa6 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 12:35:33 2021 -0500 - - Merge branch 'raft-tdp-main' into 1406-git-secrets-bug - -commit ea4df7fa683e1e95f6d01003884dcf5856343f0d -Merge: cd1a5f699 2d08acb01 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 12:35:09 2021 -0500 - - Merge pull request #1430 from raft-tech/issues/1165-zap-cache-control-header - - Issue 1165: Resolve Cache Control header error by ZAP - -commit 2d08acb01949db70d976268a8396b6659743671b -Merge: 2d9c038a6 cd1a5f699 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 12:25:11 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit 6002600782a828f763e1305e8a9f608c0187ace1 -Merge: 2c96f127c cd1a5f699 -Author: John Willis -Date: Tue Dec 7 12:23:13 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit 33d631809f842f871f8fc1ce095df0716cdfd714 -Author: Aaron Beavers -Date: Tue Dec 7 12:10:56 2021 -0500 - - remove /login test - -commit 52fcc06f355e836f757a4dfc1b8fa6c225858282 -Merge: 2b3caa0eb cd1a5f699 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 7 10:51:20 2021 -0600 - - Merge branch 'raft-tdp-main' into 1406-git-secrets-bug - -commit cd1a5f699c99a00e89adbede1ea1c8da81ac8b79 -Merge: 1b806880c 1e08ef68b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 11:45:56 2021 -0500 - - Merge pull request #1473 from raft-tech/valcollignon-patch-6 - - Delete team-charter.md - -commit 399ac397d1283e2efbe6d97166af510956499b86 -Author: Aaron Beavers -Date: Tue Dec 7 10:26:13 2021 -0500 - - add a list of possible deployment strategies - -commit 7e11a16e3295d11f9690e4adeac37e176edf8da1 -Merge: f39faeb90 1b806880c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 10:20:50 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/dependabot-security-alerts - -commit 606633b0990141e7e992898427a1884b9e8b857c -Merge: 4123cce5a 1b806880c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 7 09:15:43 2021 -0600 - - Merge branch 'raft-tdp-main' into feat/1425-pa11y - -commit 2b3caa0eb685dcf150c5091a8d0ae96fd184ece4 -Merge: 7492e14c7 1b806880c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 7 08:40:04 2021 -0600 - - Merge branch 'raft-tdp-main' into 1406-git-secrets-bug - -commit f39faeb90aeb3e785720758181008c96eec073dd -Author: abottoms-coder -Date: Tue Dec 7 09:29:03 2021 -0500 - - Updates to resolutions per code review - -commit 2c96f127c6817092be9bcf08b658b5d6b9b2009b -Merge: 77fd76538 1b806880c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 7 08:17:38 2021 -0600 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit 2d9c038a637037afd5e22f63250f6c9018ad4d43 -Merge: 3dc4c712d 1b806880c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Dec 7 08:14:55 2021 -0600 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit 1e08ef68ba91eb309ac19b0a002f2dfcc7fb3c18 -Merge: 5fcaa83ef 1b806880c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 09:11:15 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-6 - -commit 1b806880ca07252f1a062200ace73e8503ea0564 -Merge: 81a834ce8 42e68a69d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 09:11:05 2021 -0500 - - Merge pull request #1474 from raft-tech/issues/1427-remove-cypress - - Issue 1427: Remove usage of Cypress in the project - -commit 42e68a69d0c98f88daa5a5d40f2d0b23c5d1a2a3 -Merge: 405981110 81a834ce8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Dec 7 09:00:38 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1427-remove-cypress - -commit 3dc4c712dd1dfc57e86a440a0a026fde16af7ef0 -Merge: 5766da4a4 81a834ce8 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Dec 6 14:49:38 2021 -0600 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit b7fb6b32e62c53aaece245044f3bd3e243e5f88c -Merge: ad0909118 81a834ce8 -Author: Jorge Gonzalez -Date: Mon Dec 6 15:46:55 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit ad0909118020c83bc711c62a17cb473d2acecebb -Author: Jorge Gonzalez -Date: Mon Dec 6 15:35:46 2021 -0500 - - refactor: test new token endpoint payload - -commit 519e463500e5e17cb0ecaf5731817ae34430bc5f -Merge: fbc70e3ba 81a834ce8 -Author: Jorge Gonzalez -Date: Mon Dec 6 15:37:29 2021 -0500 - - Merge branch 'raft-tdp-main' into build/1405-django - -commit 9167448c4857a52c104011b288bd23b7e80fb7bb -Author: Aaron Beavers -Date: Mon Dec 6 11:55:24 2021 -0500 - - Add description to zap scanner and expand usage - -commit 864791434116a8858b883edc401408dbee6be58d -Author: Aaron Beavers -Date: Mon Dec 6 11:39:03 2021 -0500 - - sync with hackmd - -commit 7492e14c7827ca5d107bc930ea1a6cc41398d789 -Merge: a786e8f4a 81a834ce8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Dec 6 11:17:49 2021 -0500 - - Merge branch 'raft-tdp-main' into 1406-git-secrets-bug - -commit 5fcaa83efdf479e7bb3f3c08d46a02779b59f436 -Merge: 15cffafe0 81a834ce8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 16:57:38 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-6 - -commit 81a834ce876374bc2413c96db312aef67a43e6f6 -Merge: e2b34d39e 79de86f3a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 16:56:04 2021 -0500 - - Merge pull request #1470 from raft-tech/valcollignon-patch-3 - - Update team-meetings.md - -commit 5766da4a41c290266e6d44b1bbeaf5d968bbae93 -Merge: 72ce5ca40 e2b34d39e -Author: John Willis -Date: Fri Dec 3 16:21:26 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit 4059811107e5b539633318a0d036c8ab2098d5b2 -Merge: c0d5bcf46 e2b34d39e -Author: John Willis -Date: Fri Dec 3 16:21:07 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1427-remove-cypress - -commit 79de86f3a827e13a73af92f0de975f7eeed50cc1 -Merge: ceca54b74 e2b34d39e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 16:18:07 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-3 - -commit e2b34d39e68bdbe7f40a09ef33920a525ddad341 -Merge: 93f49eff0 dd3b47be0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 16:17:53 2021 -0500 - - Merge pull request #1471 from raft-tech/valcollignon-patch-4 - - Update sprint-schedule.md - -commit dd3b47be0129aeb056ecd1954b463c536fe7240e -Merge: 2398f8065 93f49eff0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 16:05:08 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-4 - -commit 15cffafe02eac95632e60fe556b6c7bbe559b55d -Merge: fdad16776 93f49eff0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 16:04:55 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-6 - -commit ceca54b74967017d4b4b7ac3dcf4685bc9eadf52 -Merge: 3c416f777 93f49eff0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 15:20:10 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-3 - -commit 93f49eff006955a32e60df4c3897fe1064dc0c91 -Merge: 84c4bf76a add68480a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 15:19:51 2021 -0500 - - Merge pull request #1472 from raft-tech/valcollignon-patch-5 - - Update our-team-and-values.md - -commit 4123cce5ac2856521302b2cd50b3d38ca2e3ebfa -Author: Aaron Beavers -Date: Fri Dec 3 12:52:51 2021 -0500 - - Update tdrs-frontend/src/index.js - - Co-authored-by: John Willis - -commit 28f99e1ce471ef2e1115bf813ea4957b963999dd -Merge: ff12e2647 84c4bf76a -Author: Aaron Beavers -Date: Fri Dec 3 12:38:49 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1425-pa11y - -commit 77fd76538af82c13ffbea04b587887f9b6a5b431 -Author: abottoms-coder -Date: Fri Dec 3 11:45:35 2021 -0500 - - Merge conflict linter update - -commit 3c416f777fa4e42ffa802ab159582df493e9b8eb -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Dec 3 11:39:44 2021 -0500 - - Update docs/How-We-Work/team-charter/team-meetings.md - -commit f7e07aadc308a00d83ed2a671e3817c376539df6 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Dec 3 11:39:39 2021 -0500 - - Update docs/How-We-Work/team-charter/team-meetings.md - -commit 25832d0d3438ab5114232a206291dfb081c8c424 -Merge: b4372b58d 84c4bf76a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Dec 3 11:32:32 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit 07df5daf8ab27cf98ef87b2214e804ec648a4333 -Author: abottoms-coder -Date: Fri Dec 3 11:29:38 2021 -0500 - - Updating dependencies per alerts from dependabot - -commit 9fab24ab4b3b21b3bad7ec6311482312a1dd55e5 -Author: Aaron Beavers -Date: Thu Dec 2 16:18:57 2021 -0500 - - Work on tablocking header menu - -commit 97a4fac1b72e138c402ca67ee978c621c4129f4d -Merge: 4f663c2a0 84c4bf76a -Author: Jorge Gonzalez -Date: Thu Dec 2 10:16:10 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 4f663c2a0631d27b7d042a448da11baeb8a18bdc -Author: Jorge Gonzalez -Date: Thu Dec 2 10:16:02 2021 -0500 - - refactor: add temp loggers - -commit a786e8f4ac1ef0e0d10284f49bc32d48c0b09139 -Author: abottoms-coder -Date: Thu Dec 2 10:00:18 2021 -0500 - - prepping for final review - -commit 6de41091b0a6c899281279e9c5efe5ebbc04d524 -Author: abottoms-coder -Date: Thu Dec 2 09:59:09 2021 -0500 - - wanting to prove secrets finds secrets - -commit 016312eddf0ee67534545f4783abf1a3c187c7ca -Author: abottoms-coder -Date: Thu Dec 2 09:56:25 2021 -0500 - - other improvements - -commit 2480c4d581b50779e1339c1da43bfefa60794bb7 -Author: abottoms-coder -Date: Thu Dec 2 09:50:45 2021 -0500 - - seriously? a single period. - -commit bd2c80a7fa5c00a4c02ffdb02f46695bbdb395c7 -Author: abottoms-coder -Date: Thu Dec 2 09:46:36 2021 -0500 - - try 2 - -commit c72fd154284dd940309b36610795c1163e6b5ee6 -Author: abottoms-coder -Date: Thu Dec 2 09:32:26 2021 -0500 - - Trying something discussed in code review - -commit 13d5ced8c136c2a112b233dd9a9c171bca2e5b3a -Author: Jorge Gonzalez -Date: Wed Dec 1 14:53:05 2021 -0500 - - refactor: update ams redirect uris - -commit 72ce5ca40a4644ec5be6db2a3a0904cc435e145b -Merge: 384f39828 84c4bf76a -Author: John Willis -Date: Wed Dec 1 13:25:09 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit c0d5bcf46e9e2f5cab3cdbb9256e275c035f0495 -Author: John Willis -Date: Wed Dec 1 13:20:56 2021 -0500 - - Added missing link to pa11y for frontend README - -commit f99dba82748a769725e97d8ccbfed1e3057fb307 -Author: John Willis -Date: Wed Dec 1 13:18:29 2021 -0500 - - Regenerated yarn.lock - -commit 91061f0ea48d86ba9b0758a313b54a4e5f5c3567 -Author: John Willis -Date: Wed Dec 1 12:54:45 2021 -0500 - - Removed Cypress from the project - -commit fdad167762178e3c284fdd398c7d29e16369ce66 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Dec 1 12:26:24 2021 -0500 - - Delete team-charter.md - -commit add68480a625db7788e9877d5c4bc3d71d5a4da2 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Dec 1 11:36:27 2021 -0500 - - Update our-team-and-values.md - -commit 2398f8065070d53e05d1c9d9089b57178231ef74 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Dec 1 11:32:55 2021 -0500 - - Update sprint-schedule.md - -commit 02852de247491facc264b40cf78f927e0a4f2860 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Dec 1 11:26:14 2021 -0500 - - Update team-meetings.md - -commit ea40e328fefece3bc422037fafc59487e2463bfc -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Dec 1 11:21:48 2021 -0500 - - Update communication-tools.md - -commit f51bc9551e7c496fbf51d4ae3f2b6449972c35ee -Author: Aaron Beavers -Date: Wed Dec 1 10:22:39 2021 -0500 - - Update zap scanner description - -commit f5fac436253cf262ced981a5e0572298a9382b4a -Author: Aaron Beavers -Date: Wed Dec 1 10:22:20 2021 -0500 - - Rewording some of the checks descriptions - -commit 14efedf3339bdbfff06ede15be5091164d9b927c -Author: Jorge Gonzalez -Date: Tue Nov 30 17:16:12 2021 -0500 - - fix: sidenav focus issue with keyboard navigation - -commit 3db67c6fe8abadee48b50b89edb6961015d2ad7e -Author: Jorge Gonzalez -Date: Tue Nov 30 16:19:39 2021 -0500 - - fix: remove sidenav menu for logged out users - -commit fc6f43a99784857603eca1f35c848bf754731952 -Author: abottoms-coder -Date: Tue Nov 30 14:45:58 2021 -0500 - - Found issue with pull request template, the interjection of the word 'issue' was breaking the linking functionality. - -commit 8e0046e5908839f572db46994cbc481ddc99e1a5 -Author: abottoms-coder -Date: Tue Nov 30 14:34:07 2021 -0500 - - Reverting superfluous changes that don't fix bug - -commit 7526ae26ea777f3b033b9c2c8881c468182a258b -Author: abottoms-coder -Date: Tue Nov 30 14:27:44 2021 -0500 - - Was able to recreate git 'secrets' not found in image. Changing path in script there seemed to resolve - -commit 69fd9829281d2df4cc1512be20fe4eb50d18a24f -Author: abottoms-coder -Date: Tue Nov 30 14:15:51 2021 -0500 - - Shell into same image CircleCI use shows the an issue with github not cloning -- recent stackoverflows show to use https which works. - -commit fbc70e3baabc0976f06b12c563091a479f5b9e1b -Author: Jorge Gonzalez -Date: Tue Nov 30 13:55:18 2021 -0500 - - build: update django to 3.2.9 - -commit 78ed07a73f40b43e3c484befd62aa62f1a87f94e -Author: abottoms-coder -Date: Tue Nov 30 13:49:06 2021 -0500 - - Adding some error checks and an explicit bash call vs checking $PATH - -commit 03eda0088f0ea3003411caa8d02644cd8283820a -Author: Aaron Beavers -Date: Tue Nov 30 13:32:11 2021 -0500 - - Mostly moving sections around to make more sense - -commit 614ff5aaa53e6c87181ed39673815fc783ed2ce0 -Author: Aaron Beavers -Date: Tue Nov 30 13:31:49 2021 -0500 - - Remove description - -commit 82fc9f6ea2f184309c82bf31e4522ff744c593dc -Author: Aaron Beavers -Date: Tue Nov 30 13:29:19 2021 -0500 - - Add references to real inputs - -commit 84c4bf76a3a31416c474df63225c8f8d084297de -Merge: ad0c0fb38 d9fb23d0a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 30 13:21:55 2021 -0500 - - Merge pull request #1450 from raft-tech/ops/1447-node - - build(1447): As a developer, I want to use an LTS version of Node in the project - -commit 4dc5ff311ba99534e9550026917ebda5fe2ec8f2 -Merge: 57bb813f0 ad0c0fb38 -Author: Jorge Gonzalez -Date: Tue Nov 30 12:50:04 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit 384f39828e52f17f1c09164686b3a2ccf1c48a79 -Merge: 60f2d4ca1 ad0c0fb38 -Author: John Willis -Date: Tue Nov 30 09:57:59 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit d9fb23d0a03f0d5047bcd818f2989669340f6d71 -Merge: bfa0f4583 ad0c0fb38 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 30 09:56:54 2021 -0500 - - Merge branch 'raft-tdp-main' into ops/1447-node - -commit ad0c0fb38d9d81f6b81e75760a0340bcfadf4fa0 -Merge: 931a9bfc7 fbed5e005 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 30 09:56:37 2021 -0500 - - Merge pull request #1448 from raft-tech/issues/1403-zap-500-errors - - Issue 1403: Fix 500 errors found by ZAP scans - -commit fbed5e005eb04c142c8fc7e850cf3ebabfff18b7 -Merge: ab3337cf8 931a9bfc7 -Author: John Willis -Date: Wed Nov 24 15:43:56 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1403-zap-500-errors - -commit ff12e26470789ead3ff4b37822fc26cd95a7cfb6 -Merge: f0a853086 363c822b2 -Author: Aaron Beavers -Date: Wed Nov 24 11:36:14 2021 -0500 - - Merge remote-tracking branch 'origin/feat/1425-pa11y' into feat/1425-pa11y - -commit f0a853086c83ba24c98d49d3ff77e18464c23115 -Author: Aaron Beavers -Date: Fri Nov 19 13:22:01 2021 -0500 - - Revert "Auto stash before rebase of "origin/raft-tdp-main"" - - This reverts commit 0bcbfe0868d88bd8e7d6c682bb4236198bb06efa. - -commit 363c822b251b3409ee39012536e60cf734e0526e -Merge: a1baf3f01 931a9bfc7 -Author: Aaron Beavers -Date: Wed Nov 24 11:34:34 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1425-pa11y - -commit 57bb813f0e523c33c44a7c61edfe25d1abfedb79 -Author: Jorge Gonzalez -Date: Tue Nov 23 17:10:31 2021 -0500 - - fix: ams request auth scope - -commit 1022ebd4e05ceb72e4c13125c336c37246b7ff31 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Nov 23 16:25:29 2021 -0500 - - Create sprint-34-summary.md - -commit b4372b58dffe54a55f638572c61d2ca09e92cf8b -Author: abottoms-coder -Date: Tue Nov 23 16:07:15 2021 -0500 - - Feedback from PR - -commit 9a0c96ce252023bc91d3d88922bc56c694c41514 -Author: abottoms-coder -Date: Tue Nov 23 11:54:43 2021 -0500 - - Removing unused imports after refactor - -commit 2ed5a15f2fbce43eff617024af7476839e8c52ca -Merge: bf3d70bd6 77552c8e4 -Author: abottoms-coder -Date: Mon Nov 22 15:50:09 2021 -0500 - - Merge branch 'feat/1036-logging-level-by-env' of github.com:raft-tech/TANF-app into feat/1036-logging-level-by-env - -commit bf3d70bd63671e287a5f0c3e284c27163c03cb9e -Author: abottoms-coder -Date: Mon Nov 22 15:50:01 2021 -0500 - - Changes from working with John - -commit 8038971fead62a393660dc34394a10443270e8e0 -Author: Aaron Beavers -Date: Mon Nov 22 15:47:20 2021 -0500 - - Apply suggestions from code review - - Co-authored-by: John Willis - Co-authored-by: Andrew <84722778+abottoms-coder@users.noreply.github.com> - -commit 73302ee5d0c42a7dc0a5dd219b78a5c41b71194f -Merge: dff0627e6 931a9bfc7 -Author: Jorge Gonzalez -Date: Mon Nov 22 15:42:37 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit dff0627e688b4457c55f4e7ca0725e15f655ba3e -Author: Jorge Gonzalez -Date: Mon Nov 22 15:42:26 2021 -0500 - - build: add ams vars to docker-compose - -commit 60f2d4ca16a8b957fffcca382f498b09162e5f80 -Merge: af61b410a 931a9bfc7 -Author: John Willis -Date: Mon Nov 22 14:14:00 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit a1baf3f01ebe4654a549c563388785a54b0367ab -Author: Aaron Beavers -Date: Mon Nov 22 14:11:47 2021 -0500 - - Add to be visible to action statement - -commit 77552c8e440016cf8edd4fa4fe2269a8daf160ff -Merge: 67222fa60 931a9bfc7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 11:12:40 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit 67222fa60491ed204b9b169264a8dcf1585255b4 -Merge: 14091d0d0 00b670e33 -Author: abottoms-coder -Date: Mon Nov 22 11:11:28 2021 -0500 - - Merge branch 'feat/1036-logging-level-by-env' of github.com:raft-tech/TANF-app into feat/1036-logging-level-by-env - -commit 14091d0d04782376aa9739544fdb24e5d2c82143 -Author: abottoms-coder -Date: Mon Nov 22 11:11:22 2021 -0500 - - linter complains about line-length - -commit 931a9bfc7f423c050a2a543ea251a1811c8ec3ae -Merge: e233ed34e 8699b4a6f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 11:08:27 2021 -0500 - - Merge pull request #1407 from raft-tech/spike/1347-shared-cloud-services - - Update to environments to show new databases in RDS service - -commit 00b670e33b78d9958770928f6c90d9c3212b7614 -Merge: a2f59ebc0 e233ed34e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 10:54:22 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1036-logging-level-by-env - -commit a2f59ebc0cfd491a249833e432d5e399a177a2a2 -Author: abottoms-coder -Date: Mon Nov 22 10:45:42 2021 -0500 - - Made the level used almost universally. I did not modify wait_for_postgres as it's not in the django app. - -commit 8699b4a6f1b1737ec8ccefdc5b95249e940166c6 -Merge: 785e9ed80 e233ed34e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 10:41:05 2021 -0500 - - Merge branch 'raft-tdp-main' into spike/1347-shared-cloud-services - -commit e233ed34e25c6af38abfba3be5711f64105a4461 -Merge: 935cbc8ee 82bb05333 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 10:40:56 2021 -0500 - - Merge pull request #1424 from raft-tech/issues/1108-data-files-redux-state - - Issue 1108: Fix state issues with Data Files Download button - -commit 82bb05333e319443deb5ef66771807de59b9d4b8 -Merge: f8eb150b3 935cbc8ee -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 10:09:12 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state - -commit 935cbc8eeb25464c19047a379e3c46842d7dff80 -Merge: eac106ff9 4e3f2614e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 10:09:04 2021 -0500 - - Merge pull request #1453 from raft-tech/ops/1452-buildpacks-restage - - docs(1452): update buildpack-changelog.md after restage updates - -commit 4e3f2614e96baf77db2039b71b890c6f7579f074 -Merge: 162292b30 eac106ff9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 10:00:48 2021 -0500 - - Merge branch 'raft-tdp-main' into ops/1452-buildpacks-restage - -commit f8eb150b3cbb74a582fdf9c993c2ddf0153aebf3 -Merge: 53a3d3018 eac106ff9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 09:42:27 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state - -commit eac106ff9216cac121a522b3f03d4c6f26835560 -Merge: 250db18a2 e0257486e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 22 09:42:14 2021 -0500 - - Merge pull request #1383 from raft-tech/feat/1331-splashpage - - Issue 1331: Change splash page background image - -commit 9283ace23a94a10886d5969e1a28de822bb49a09 -Author: Aaron Beavers -Date: Mon Nov 22 08:48:27 2021 -0500 - - add , lint - -commit a97559687075f5a06442e13a08ecbc8e494e319d -Author: Aaron Beavers -Date: Fri Nov 19 14:15:48 2021 -0500 - - lint and cleanup - -commit 0bcbfe0868d88bd8e7d6c682bb4236198bb06efa -Author: Aaron Beavers -Date: Fri Nov 19 13:22:01 2021 -0500 - - Auto stash before rebase of "origin/raft-tdp-main" - -commit 42fbdfb9c033e1e3c530df7f105ad173ab1438ae -Author: Aaron Beavers -Date: Fri Nov 19 13:17:41 2021 -0500 - - fix dispatch - -commit cf19418edb85fb45fa1cace4754d48ef8191273b -Author: Aaron Beavers -Date: Fri Nov 19 13:17:22 2021 -0500 - - Add logs end pont - -commit dfdd009af6ef4ee73cbdffe40840e44cb50e4fc4 -Author: Aaron Beavers -Date: Fri Nov 19 13:16:12 2021 -0500 - - add pa11y actions - -commit 24e95a8bd53ef69f2eea64324663e73991568c98 -Author: Aaron Beavers -Date: Thu Nov 18 11:33:20 2021 -0500 - - move mirage start call - -commit 2fd8c2d83a40fb7ea72e9f942bd6c8e6c75f7f2b -Author: Jorge Gonzalez -Date: Fri Nov 19 13:05:27 2021 -0500 - - build: tweak for test deployments - -commit f5e4bdef99db181bba02d60d5d83007c31e9e291 -Author: Jorge Gonzalez -Date: Fri Nov 19 12:48:08 2021 -0500 - - fix: add hhs_id to admin.py - -commit 2a0a1a5fa811b2e72e6137054f0003957106af85 -Author: Jorge Gonzalez -Date: Thu Nov 18 11:54:43 2021 -0500 - - refactor: add ams client assertion - -commit af61b410a94ecec8c1e2769780af1c407144eb12 -Merge: 3c39f29ec 250db18a2 -Author: John Willis -Date: Thu Nov 18 11:24:56 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit 53a3d3018123094d36c3945dfc317f8ef8934114 -Merge: 631fae64d 250db18a2 -Author: John Willis -Date: Thu Nov 18 11:24:46 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state - -commit 162292b3062f75d866fd69bd6c5dc7ebfab8aad3 -Author: Jorge Gonzalez -Date: Thu Nov 18 10:02:27 2021 -0500 - - docs: update buildpack-changelog.md - -commit ab3337cf870675217d6aca81c3a6a0d2ef0f9728 -Author: John Willis -Date: Wed Nov 17 17:36:19 2021 -0500 - - Added STTPrimaryKeyRelatedField, fixed test errors, update frontend to send only ID of STT - -commit bfa0f4583bef63b8ba87d4ce4e973ed35367bdd5 -Author: Jorge Gonzalez -Date: Wed Nov 17 14:50:18 2021 -0500 - - build: update all node versions to latest LTS v16.13 - -commit 882f753e88a66069e7ec8194b5b74f095bb1a991 -Author: John Willis -Date: Wed Nov 17 13:53:06 2021 -0500 - - Fix linter errors - -commit 528c60310938c183b2e51e3dc02820e4295bc5a6 -Merge: abc456d6e 250db18a2 -Author: Jorge Gonzalez -Date: Wed Nov 17 13:46:20 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit d8537880e7c69a205c9421a830b1c94b18c6812a -Author: John Willis -Date: Wed Nov 17 13:44:05 2021 -0500 - - Fix 500 errors found by ZAP scans - -commit e0257486eb220fecfbe4b5d191fe9760399ae738 -Merge: 3876396c9 250db18a2 -Author: Jorge Gonzalez -Date: Tue Nov 16 15:26:52 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1331-splashpage - -commit 250db18a2f2659b9907fc540394fe62c27d20fe9 -Merge: fadfc3b9e 08d516549 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 15:22:33 2021 -0500 - - Merge pull request #1435 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.15.0 - - Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /tdrs-frontend - -commit 08d5165493d00de4732ba24fd48be85840942a7e -Merge: 70362d49e fadfc3b9e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 14:45:58 2021 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.15.0 - -commit fadfc3b9ee15aea1e7b993e24a91ebf5803dd98c -Merge: 0ad5b8386 d440d4d5d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 14:45:47 2021 -0500 - - Merge pull request #1432 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/tar-6.1.11 - - Bump tar from 6.1.0 to 6.1.11 in /tdrs-frontend - -commit 3c39f29ec11fa6ba10965d90f1b663161c7fc472 -Merge: dcb2a4756 0ad5b8386 -Author: John Willis -Date: Tue Nov 16 13:42:27 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit dcb2a4756c63213ac07c0e05ebb145a1e128e882 -Author: John Willis -Date: Tue Nov 16 13:06:28 2021 -0500 - - tighten frontend cache-control header - -commit 70362d49ea4a0910802555929251cf1d21b4c685 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Nov 16 18:05:41 2021 +0000 - - Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /tdrs-frontend - - Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.14.1 to 5.15.0. - - [Release notes](https://github.com/testing-library/jest-dom/releases) - - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/jest-dom/compare/v5.14.1...v5.15.0) - - --- - updated-dependencies: - - dependency-name: "@testing-library/jest-dom" - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit d440d4d5d37219bf89c805a0be2e77e6abc64ccb -Merge: 0d86d2acf 0ad5b8386 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 13:01:07 2021 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/tar-6.1.11 - -commit 0ad5b83865d03affaaeee6741faf66517da14980 -Merge: 5b9017346 104792d78 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 13:00:57 2021 -0500 - - Merge pull request #1433 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/tmpl-1.0.5 - - Bump tmpl from 1.0.4 to 1.0.5 in /tdrs-frontend - -commit 104792d78f64f53b38d16567d4f3c4ef3bb30749 -Merge: a833ad8b8 5b9017346 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 12:01:32 2021 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/tmpl-1.0.5 - -commit 5b9017346747d16658b7b6c79ea6997e583d446a -Merge: 9400ec16e b09c34ebd -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 12:01:23 2021 -0500 - - Merge pull request #1428 from raft-tech/lfrohlich-patch-5 - - Update COR delegation - -commit 81b4eb4b8c0a50242c7348372c486d0f52ced354 -Author: John Willis -Date: Tue Nov 16 11:22:23 2021 -0500 - - Added missing semicolon - -commit 10c281d70090cf4846646e6b025dfb0ed75eeffe -Merge: 6770a7609 9400ec16e -Author: John Willis -Date: Tue Nov 16 11:20:26 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit 631fae64db54217bc033101afd31e7ef9f77e79c -Merge: db87da5bf 9400ec16e -Author: John Willis -Date: Tue Nov 16 11:18:19 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state - -commit abc456d6e2aaec0942d9ab99ab49d3d5862b877f -Merge: 66bd8ceaa 9400ec16e -Author: Jorge Gonzalez -Date: Tue Nov 16 10:36:14 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit b09c34ebd86aa03915bdbceb9859da6a74bc846d -Merge: 171f26aea 9400ec16e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 16 10:00:25 2021 -0500 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-5 - -commit c0c9423dcd4d9b87930eb655a74dd8f2701e3dcf -Merge: 1fe8f9c00 9400ec16e -Author: Aaron Beavers -Date: Tue Nov 16 00:31:55 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/573-script-docs - -commit 171f26aeaca5f5ea29faf0f322e6f30cf49183b7 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Nov 15 15:26:38 2021 -0500 - - Update docs/How-We-Work/Team-Composition.md - -commit a8872a377cd7e9eb41bc8f26c4f468adfede2085 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Nov 15 15:23:06 2021 -0500 - - Update docs/How-We-Work/Team-Composition.md - -commit 0c1eb13688c1586b62e2f9471d55f4a9eb2e5d75 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 15 15:13:52 2021 -0500 - - Update docs/How-We-Work/Team-Composition.md - -commit b33a4ee8befb47158a70613f3079f67052869855 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 15 15:13:43 2021 -0500 - - Update docs/How-We-Work/Team-Composition.md - -commit 9400ec16e6350baa0630e6cd5752010fc4b6e0ce -Merge: c4fdaeeb3 85cac12c0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 15 14:52:13 2021 -0500 - - Merge pull request #1431 from raft-tech/valcollignon-patch-1 - - Create sprint-33-summary.md - -commit 85cac12c0a2b5d94d5659f9ecc3b589a21df0a9f -Merge: 20747e2fc c4fdaeeb3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 15 14:45:11 2021 -0500 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 66bd8ceaa8c3aa6eb9f8e554acb3874f24e3c807 -Author: Jorge Gonzalez -Date: Mon Nov 15 13:58:50 2021 -0500 - - nit - -commit 31e5c8ab49052268554822f2df26a0920aff0d84 -Merge: 019990aaf c4fdaeeb3 -Author: Jorge Gonzalez -Date: Mon Nov 15 13:56:13 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 019990aaf6183ae90581964b67c2c89025e2b3f7 -Author: Jorge Gonzalez -Date: Mon Nov 15 13:53:43 2021 -0500 - - split up token oidc handlers for each auth provider - -commit 1fe8f9c0045713e1c55ba7aee234588b7a785e41 -Author: Aaron Beavers -Date: Mon Nov 15 13:22:04 2021 -0500 - - Formatting and trailing whitespace - -commit db35f3fa82df48948d3082bd9c1e79086a155a2e -Author: Aaron Beavers -Date: Mon Nov 15 13:21:37 2021 -0500 - - Update script readme - -commit e033b12f7eb9191dd9f569310a8ff711518d6350 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 15 12:41:55 2021 -0500 - - Update Team-Composition.md - -commit 20747e2fc52d5551aef35f4488355065175e2842 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 15 12:08:59 2021 -0500 - - Update docs/Sprint-Review/sprint-33-summary.md - -commit 0d86d2acf018479dad9018d4a8f1c10305562be2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Nov 15 15:12:13 2021 +0000 - - Bump tar from 6.1.0 to 6.1.11 in /tdrs-frontend - - 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 a833ad8b840d568e64aeb4aced5372b30f9bd016 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Nov 15 15:12:08 2021 +0000 - - Bump tmpl from 1.0.4 to 1.0.5 in /tdrs-frontend - - 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 c4fdaeeb3ca330f2f8437fb3b36792acba575379 -Merge: df507699e 7270e6ab6 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 15 10:10:53 2021 -0500 - - Merge pull request #1423 from raft-tech/hotfix/coa-dependency-resolution - - Force resolution of sub dependency `coa` to prevent security issues - -commit 0f24cde0e03bff10835fbb619172d2f7581e3095 -Merge: 9cec3e350 df507699e -Author: Jorge Gonzalez -Date: Mon Nov 15 10:04:05 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit 7270e6ab6e30e117cb10aa5693177f9d316bf917 -Merge: 9a7e8fc1d df507699e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Nov 12 13:30:41 2021 -0500 - - Merge branch 'raft-tdp-main' into hotfix/coa-dependency-resolution - -commit 6770a76098053c06a21c2edb983c266d99d4db56 -Merge: 2ddd6addf df507699e -Author: John Willis -Date: Wed Nov 10 15:09:53 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1165-zap-cache-control-header - -commit 2ddd6addf75a5dc1abeba8c3c9379bf58c556158 -Author: John Willis -Date: Wed Nov 10 15:05:08 2021 -0500 - - Added NoCacheMiddleware to add Cache-Control headers for Django - -commit db87da5bfcf696d444b452382e9b4b95221b63dc -Merge: e9fded2ed df507699e -Author: John Willis -Date: Wed Nov 10 15:04:13 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state - -commit 9cec3e350f2f6c3af203010f8fe7044ed3b4a032 -Author: Jorge Gonzalez -Date: Wed Nov 10 14:12:08 2021 -0500 - - split up oidc auth handlers for easier testing - -commit 3876396c9beb530b7f3e1d1510490a1d1d593bb2 -Merge: ed7c9b086 df507699e -Author: Jorge Gonzalez -Date: Wed Nov 10 13:25:55 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1331-splashpage - -commit df507699eafeac89f91cd3444309951dffeae6fe -Merge: b19e7e382 2127ee7f2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Nov 10 09:16:05 2021 -0500 - - Merge pull request #1400 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.7.0 - - Bump cypress from 8.6.0 to 8.7.0 in /tdrs-frontend - -commit 2127ee7f259a3c156edd288ace004427f0f72cf4 -Merge: c861a5ede b19e7e382 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Nov 10 09:01:20 2021 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.7.0 - -commit b19e7e38206bb674b2ffab110ed867f76249b5f3 -Merge: 9b823dde9 84b15f32c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Nov 10 09:00:43 2021 -0500 - - Merge pull request #1398 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.24.0 - - Bump axios from 0.23.0 to 0.24.0 in /tdrs-frontend - -commit 802961a78fc66ccfe3e8cc9dab14dce8e73e851d -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Nov 9 17:03:49 2021 -0500 - - Create sprint-33-summary.md - -commit b054af3ce2fbb909bcb5da5666e4ec88001b6826 -Author: John Willis -Date: Tue Nov 9 16:23:17 2021 -0500 - - Add frontend Cache-Control header to buildpack nginx - -commit ed7c9b0865fcbf93ba4a96fb87c1da9009bfb7a9 -Merge: 564682c6a 9b823dde9 -Author: Jorge Gonzalez -Date: Tue Nov 9 13:30:27 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1331-splashpage - -commit 6d3634481dabf8e16ef8941d943b446e7950e299 -Merge: aa87411b6 9b823dde9 -Author: Jorge Gonzalez -Date: Tue Nov 9 13:09:36 2021 -0500 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 564682c6ac002c5f83ac5685fd9b595a8d1a4c63 -Author: Jorge Gonzalez -Date: Tue Nov 9 12:31:40 2021 -0500 - - style: add box-shadow to main splashpage panel - -commit e9fded2ed7252e2d5367ca535bf417a1e8d82c61 -Merge: 712787b7e 9b823dde9 -Author: John Willis -Date: Tue Nov 9 12:18:08 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/1108-data-files-redux-state - -commit 9a7e8fc1d17435da7b2bb09fe39e80870a821292 -Merge: 2a28c6ea7 9b823dde9 -Author: John Willis -Date: Tue Nov 9 12:18:01 2021 -0500 - - Merge branch 'raft-tdp-main' into hotfix/coa-dependency-resolution - -commit 84b15f32cb801c22a53f70a9282fa2d08770dd2c -Merge: 255b1fa05 9b823dde9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 9 12:10:01 2021 -0500 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.24.0 - -commit 9b823dde931eb04281b6413a3d11b01c71d836e7 -Merge: f482b5879 319023dd9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 9 12:09:44 2021 -0500 - - Merge pull request #1404 from raft-tech/hotfix/1013-part-2 - - Issue 1013: Hotfix part 2 - -commit 712787b7efad1575f6530a382363315c16b046b5 -Author: John Willis -Date: Mon Nov 8 17:06:11 2021 -0500 - - Added test case for submission error - -commit 4f34ade5fbe3fd25e425f7ed594379caf2253e8f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 8 17:01:34 2021 -0500 - - Update Team-Composition.md - -commit c290704eebb858f76f86b70599610e2c5e73c487 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 8 16:59:54 2021 -0500 - - Add Lauren Frohlich COR delegation - -commit 078882b47de5a946a14f8cb90a5d3a41d966d58f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 8 16:58:19 2021 -0500 - - Delete COR_Delegation_Dvora_Wilensky.pdf - - Deleting Dvora's COR delegation - -commit 776a8480faf507c6251183b29a489c0f2f5d2d1a -Author: John Willis -Date: Mon Nov 8 16:36:30 2021 -0500 - - Added unit test for submit action - -commit 9e099e4af2770e2005f1416e0cf84168b8d3dade -Author: John Willis -Date: Mon Nov 8 15:18:29 2021 -0500 - - Added unit test for SET_FILE_SUBMITTED reducer - -commit 319023dd93c4cdc1d6ce0180f00eddf02ef1b10c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Nov 8 10:51:16 2021 -0500 - - Update docs/Technical-Documentation/circle-ci.md - - undoing temp change. - -commit d701607634f90759fbbc8717f0779915ca0d1c3b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Nov 8 10:35:23 2021 -0500 - - Update docs/Technical-Documentation/circle-ci.md - - testing. will undo shortly. - -commit 27bfcfe535a3e13b4f470f4b59236eccf4d7df01 -Merge: 2958a5c9b f482b5879 -Author: John Willis -Date: Fri Nov 5 16:54:28 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1013-part-2 - -commit f0f02959d5b21f44e7a49f864038e04ec0e25496 -Author: John Willis -Date: Fri Nov 5 16:40:31 2021 -0400 - - Implemented SET_FILE_SUBMITTED reducer, added setLocalAlertState for errors caught from Data File submissions - -commit 596ff05253d3aef46cfb0abc5c82c4336b2cff5d -Author: abottoms-coder -Date: Fri Nov 5 12:41:46 2021 -0400 - - Changes to first file, will look for other logger settings - -commit 2a28c6ea7cd2393698728389cd2b4c70b5eb1e63 -Author: John Willis -Date: Fri Nov 5 10:48:51 2021 -0400 - - Force resolution of sub dependency coa to prevent security issues - -commit 2b1e877e2f472c4c98a68beda8020b212d3b7f43 -Author: John Willis -Date: Thu Nov 4 18:09:51 2021 -0400 - - Added SET_FILE_SUBMITTED redux reducer - -commit aa87411b6e95731129354fd7879d1d75e403363e -Author: Jorge Gonzalez -Date: Thu Nov 4 16:23:42 2021 -0400 - - Various tweaks - -commit 49a428e88e9d602ceb63efbdaad4fa03e94eaf03 -Merge: 5a9c1d39c f482b5879 -Author: Jorge Gonzalez -Date: Wed Nov 3 10:55:47 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit 2958a5c9bf1306d9bc2df43f39030d614dca4ac0 -Author: abottoms-coder -Date: Wed Nov 3 10:12:34 2021 -0400 - - testing via insignificant doc change (undo) - -commit c8d4144f81b267e42a4601b76fd7be4f6fdeee7c -Author: abottoms-coder -Date: Wed Nov 3 09:51:24 2021 -0400 - - testing via insignificant doc change - -commit f482b5879b108515682e4382b499be679d43dbe7 -Merge: ac5d7fe34 ad9e06f27 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Nov 3 09:28:45 2021 -0400 - - Merge pull request #1384 from raft-tech/feat/1367-zap-scanner-tuning - - Issue 1367: Updated zap-scanner.sh to utilize a different ZAP script based on target - -commit ad9e06f2726a519b7647311720150b21ad685a4f -Merge: 245a8fc95 ac5d7fe34 -Author: John Willis -Date: Tue Nov 2 15:16:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1367-zap-scanner-tuning - -commit 5778801107c3a2493b83a8330a04ef61ea59fc11 -Merge: b7e55ecae ac5d7fe34 -Author: John Willis -Date: Tue Nov 2 13:39:15 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1013-part-2 - -commit b7e55ecaeccd0167af120dd974047796ab28fea7 -Author: John Willis -Date: Tue Nov 2 13:04:39 2021 -0400 - - Remove unused config key - -commit fe5a1fa2cf6ad63720fc7283058d7cc8d3ab3561 -Author: John Willis -Date: Tue Nov 2 12:12:19 2021 -0400 - - Misc cleanup and context additions - -commit 4e7539d43e9ff56f5cb6a12c283f4da6d4bc7be3 -Author: John Willis -Date: Tue Nov 2 11:50:54 2021 -0400 - - Fix typo :/ - -commit 31fe8cbc5c46c41222f02e21c472a57d8c43032c -Author: John Willis -Date: Tue Nov 2 11:45:24 2021 -0400 - - Prevent GitHub Action from running for other label events - -commit d168e0fdf90f7f05db752cda88923554da6593a0 -Merge: 6c3542d3b ac5d7fe34 -Author: Jorge Gonzalez -Date: Tue Nov 2 11:22:33 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1331-splashpage - -commit 6c3542d3bcdc0aad53fef6a4d1c3fefd35d8fc91 -Author: Jorge Gonzalez -Date: Tue Nov 2 11:21:00 2021 -0400 - - Update spash page background image on page refresh - -commit e4e86102507e8fcc4505a7b5a90ef476a73f7665 -Author: John Willis -Date: Tue Nov 2 11:08:27 2021 -0400 - - Debugging - -commit ac5d7fe346f5355781fc738826deae1dbbd219d5 -Merge: 17fd0fd5c a325ccc98 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 2 10:38:17 2021 -0400 - - Merge pull request #1402 from raft-tech/valcollignon-patch-1 - - Create sprint-32-summary.md - -commit a325ccc98af8b5b31080821456bed57ab3a30201 -Merge: ced390353 17fd0fd5c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 2 10:15:01 2021 -0400 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 17fd0fd5cf5434f05944c87b843d3d55e6d8c5f7 -Merge: a4ff39ca3 92cf794b0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Nov 2 10:13:08 2021 -0400 - - Merge pull request #1409 from raft-tech/feat/1408-adr-devops-branch - - 1408: Update to ADR - -commit 3f964ff142134060a459385e740f73d016b6595d -Author: John Willis -Date: Mon Nov 1 17:22:51 2021 -0400 - - Cast comparison for HAS_QASP_LABEL to string for use in conditional - -commit 7d93100f8ab7146b110cb7100d14422f2c5fcf60 -Author: John Willis -Date: Mon Nov 1 17:05:45 2021 -0400 - - Updated documentation to match updated behavior - -commit e8d9905131977802aaf87a191d6a19fca0d54f55 -Author: John Willis -Date: Mon Nov 1 16:40:25 2021 -0400 - - Update wait-for-it step to run from zaproxy to check web container availability - -commit 74e820e84013664e9a88de3f42cdedbbdd180108 -Author: John Willis -Date: Mon Nov 1 16:02:25 2021 -0400 - - Added wait for backend-owasp-scan to allow services to launch before scanning - -commit c944ae75d8151e1b2377d5240d87b50667933817 -Author: John Willis -Date: Mon Nov 1 15:49:00 2021 -0400 - - Test alternate if condition - -commit ff830b99d2218a03ee7c2649e9b4d07ed657bdd3 -Author: John Willis -Date: Mon Nov 1 15:47:55 2021 -0400 - - Test expression syntax - -commit 8972481f51f3b91b7ac52e25cf7466d1a384d115 -Author: John Willis -Date: Mon Nov 1 15:44:54 2021 -0400 - - Remove debugging code from github action - -commit 13442c9897c5cd37d5ad1c69ec0e8e1578cce5d3 -Author: John Willis -Date: Mon Nov 1 15:42:57 2021 -0400 - - Debugging pt 3 - -commit 88961760e1bc74da8ab02edde81611adf1da816c -Author: John Willis -Date: Mon Nov 1 15:42:01 2021 -0400 - - Debugging pt 2 - -commit c78b6691fe968cbe2cd4d99549cfc94be5903aa6 -Author: John Willis -Date: Mon Nov 1 15:41:13 2021 -0400 - - debugging - -commit c3e5c44004b01beaf8367ba4a133cf1a2d64f376 -Author: John Willis -Date: Mon Nov 1 15:38:32 2021 -0400 - - Test different syntax - -commit 17e15a5a93120875ce1fbf66568760990cec47bd -Author: John Willis -Date: Mon Nov 1 15:36:05 2021 -0400 - - Temporarily remove if condition in github action - -commit 8c99832312c4b669b6e428837989ecc150e0176c -Author: John Willis -Date: Mon Nov 1 15:34:36 2021 -0400 - - alternative env var reference - -commit 82343847957a02086169ccd7332614a7a14918f9 -Author: John Willis -Date: Mon Nov 1 15:22:05 2021 -0400 - - Added new owasp-scan workflow and removed OWASP scans from build-and-test jobs. Updated Github Action to only look for the QASP review label and pass the appropriate payload if so - -commit 92cf794b01212ade64bf97aee15c32868039ea3b -Author: abottoms-coder -Date: Mon Nov 1 14:30:38 2021 -0400 - - 1408: Update to ADR - -commit 785e9ed80b468d19487d3b210415c37ab609ef7e -Merge: 81983cea4 a4ff39ca3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Nov 1 11:11:18 2021 -0400 - - Merge branch 'raft-tdp-main' into spike/1347-shared-cloud-services - -commit 81983cea44ad5855d34cb0d3bf1df8222f331674 -Author: abottoms-coder -Date: Mon Nov 1 11:04:28 2021 -0400 - - Renaming file - -commit ef994d2fe4ea2d7952522871d3e2d755ba69de3b -Author: abottoms-coder -Date: Mon Nov 1 10:59:30 2021 -0400 - - Updating png and removing stray arrow - -commit 90941bbe11ab3d9376feaef069af9bd22bb840b6 -Author: abottoms-coder -Date: Mon Nov 1 10:51:52 2021 -0400 - - Update to environments to show new databases in RDS service - -commit 5a9c1d39cfc52810a82fe33cf07544a33074945b -Author: Jorge Gonzalez -Date: Thu Oct 28 15:53:07 2021 -0400 - - Increase max line length for everyone's sanity - -commit 3ac7288d08a93e4b1c626ee60aeef0f0057e1eeb -Author: Jorge Gonzalez -Date: Thu Oct 28 14:52:06 2021 -0400 - - Lint fixes - -commit a061431895ffb0723991b792247ab9c5fc8ea67b -Author: Jorge Gonzalez -Date: Thu Oct 28 14:18:10 2021 -0400 - - Fetch hhsid for authentication - -commit d93386d8ccebace24e2905ebf8306061203762e5 -Author: John Willis -Date: Wed Oct 27 13:08:13 2021 -0400 - - Remove third party action in favor of built in concurrency groups - -commit 9726899e5e2c8c3a98d5adc59b193452fabdbff2 -Author: John Willis -Date: Wed Oct 27 13:01:04 2021 -0400 - - Cancel previous workflow runs for github checks action to prevent duplicate calls to CircleCI - -commit 2a6334ce085e6111461c9e99de20edfa5c451dc3 -Author: John Willis -Date: Wed Oct 27 12:23:55 2021 -0400 - - Trying different syntax - -commit 640ce9831d489869c736cb88f6843d65c01e1e4d -Author: John Willis -Date: Wed Oct 27 12:21:51 2021 -0400 - - Simplify github actions if conditional - -commit ced390353c686e33adbc586d0bf6e4ef43833d17 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Oct 27 12:17:40 2021 -0400 - - Update docs/Sprint-Review/sprint-32-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 9a61f47dd9d856f367a999e60b009793af846d36 -Author: John Willis -Date: Wed Oct 27 12:07:17 2021 -0400 - - Comment out conditional for testing - -commit ed98d76127060e7df14d3b4e34acd6ee2c719701 -Author: John Willis -Date: Wed Oct 27 11:59:43 2021 -0400 - - Prevent GitHub Action from initiating workflows if there are no matching labels found - -commit a18c069c6ca1f761d29c9a688db41f8c983880bc -Author: John Willis -Date: Wed Oct 27 11:47:35 2021 -0400 - - Prevent secrets-check workflow from running twice for open PRs - -commit 02009c8d24831c3ba75d610a512e76b285469657 -Author: John Willis -Date: Wed Oct 27 11:37:23 2021 -0400 - - Remove old workflow from circleci config and split out secrets-check into its own workflow - -commit f1b90921f32209bf85a3fa5cc5eaf0cbe960ab32 -Author: John Willis -Date: Wed Oct 27 11:12:11 2021 -0400 - - Swap out double quotes for single quotes in github workflow - -commit 245a8fc95650c403e188dc6629fe33f7ff4c4354 -Author: John Willis -Date: Tue Oct 26 16:55:42 2021 -0400 - - Put additional alert on WARN - -commit 71bea0e3e399abcfaf4cc3924ad696f87ffb696e -Merge: 60f83f061 a4ff39ca3 -Author: John Willis -Date: Tue Oct 26 16:25:03 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1367-zap-scanner-tuning - -commit 60f83f06170be146348cb954f5ffc097b6ca8d86 -Author: John Willis -Date: Tue Oct 26 16:15:44 2021 -0400 - - Removed unused CSP files, classify new alerts from api scan, utilize zap2docker-stable base image - -commit 74228a050bb2388c3b181931c6592b5b5e0f1e5e -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Tue Oct 26 12:33:12 2021 -0400 - - Create sprint-32-summary.md - -commit 223d38271a2ef5797e067e6779db93f937275dc7 -Merge: d90ebdde9 a4ff39ca3 -Author: Jorge Gonzalez -Date: Tue Oct 26 12:03:51 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit d90ebdde9b6d03285120dde8680422644bd2e17b -Author: Jorge Gonzalez -Date: Tue Oct 26 12:03:40 2021 -0400 - - feat: nits and initial hhsid support - -commit a4ff39ca392591c4c218ad86df3bff5056d73152 -Merge: 6f1d8d367 faf6c8e90 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 26 11:37:37 2021 -0400 - - Merge pull request #1394 from raft-tech/ops/1378-buildpacks - - Issue 1378: Cloud.gov Buildpack Update (10-13-2021) - -commit faf6c8e903e797725a93f723d97dfa471674faa6 -Merge: aedca45b6 6f1d8d367 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 26 10:59:22 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/1378-buildpacks - -commit c861a5ede3b306169a806a00685dbb51debbc9ba -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Oct 26 06:12:38 2021 +0000 - - Bump cypress from 8.6.0 to 8.7.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 8.6.0 to 8.7.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v8.6.0...v8.7.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 255b1fa05f3a364b8ba8c0bad1783e049f6eb3e9 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Oct 26 06:11:41 2021 +0000 - - Bump axios from 0.23.0 to 0.24.0 in /tdrs-frontend - - Bumps [axios](https://github.com/axios/axios) from 0.23.0 to 0.24.0. - - [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.23.0...v0.24.0) - - --- - updated-dependencies: - - dependency-name: axios - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit c6faa77791a186f2f244235d08eb9107aba6842d -Author: John Willis -Date: Mon Oct 25 17:03:47 2021 -0400 - - Import cleanup, linting - -commit df6229cdf16045cb1d23f1a71bafb17328568924 -Author: John Willis -Date: Mon Oct 25 16:57:48 2021 -0400 - - Fixed issue that caused swagger.json to not be appended to the backend URL, enhance openapi spec for data files years list endpoint to fix invalid CSP error - -commit 7f898f78b3dfe6cf60bef0ed6eff8e7ce85865a2 -Merge: 18fc39abb 6f1d8d367 -Author: Jorge Gonzalez -Date: Mon Oct 25 16:36:49 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1331-splashpage - -commit 91defb8c7c0363484b576b659f440433f34e6434 -Merge: 5b086666f 6f1d8d367 -Author: John Willis -Date: Mon Oct 25 12:00:06 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1367-zap-scanner-tuning - -commit 6f1d8d367ee6267bccaf1109b70c6891b7cef3a1 -Merge: a1c243976 092a002e6 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 13:21:28 2021 -0400 - - Merge pull request #1377 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.23.0 - - Bump axios from 0.21.2 to 0.23.0 in /tdrs-frontend - -commit 092a002e6ee00533f1f0bccbd837a300af4650d3 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Oct 21 16:59:16 2021 +0000 - - Bump axios from 0.21.2 to 0.23.0 in /tdrs-frontend - - Bumps [axios](https://github.com/axios/axios) from 0.21.2 to 0.23.0. - - [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.2...v0.23.0) - - --- - updated-dependencies: - - dependency-name: axios - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit a1c24397678febc4726579b6b8a41b25c0d173da -Merge: 2d4b5a778 8e60bf3ed -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 12:53:21 2021 -0400 - - Merge pull request #1388 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.16 - - Bump @fortawesome/react-fontawesome from 0.1.15 to 0.1.16 in /tdrs-frontend - -commit 8e60bf3edb714946c18bf4903720a2050b1a080b -Merge: e13ff24de 2d4b5a778 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 12:03:09 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.16 - -commit 2d4b5a778bd22af6c61e8102fa9712294a8fed19 -Merge: 16e4330aa 7b4fdf289 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 12:03:01 2021 -0400 - - Merge pull request #1390 from raft-tech/ADPennington-patch-1 - - Create WH_CybersecurityEO.md - -commit ba2128c01eae7c84fbfbf43810b175cd3499c74c -Merge: 612e706d2 16e4330aa -Author: Jorge Gonzalez -Date: Thu Oct 21 11:47:01 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/1136-ams - -commit 7b4fdf289d0a9b1b1c34696865b8eed967800840 -Merge: 0c9df0cd9 16e4330aa -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 11:46:05 2021 -0400 - - Merge branch 'raft-tdp-main' into ADPennington-patch-1 - -commit 16e4330aa3ad41e7a897e2728aa8085df370723f -Merge: 1dbce20ee fd693cb93 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 11:45:59 2021 -0400 - - Merge pull request #1393 from raft-tech/valcollignon-patch-1 - - Create sprint-31-summary - -commit fd693cb9347eb689a4fd05b187a8bc82241af6ec -Merge: aa5eb09c1 1dbce20ee -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 11:34:29 2021 -0400 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 1dbce20eec48a8aaa8532e1cad1c0b39bd3fc52c -Merge: b7e00064f aa170b5e0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 11:33:50 2021 -0400 - - Merge pull request #1223 from raft-tech/feat/1054-dac-a11y - - Issue 1054: Update django-admin-508 for a11y fixes (part 2) - -commit aa170b5e050e57c0aeb3ad77338ca81768f55001 -Merge: 59cac0d88 b7e00064f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 11:14:17 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1054-dac-a11y - -commit b7e00064fa7b8c04d7384a4e31a2126cbc9efe10 -Merge: 9470bfa03 55fb89280 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 11:13:46 2021 -0400 - - Merge pull request #1380 from raft-tech/docs/880-ci-audit-template - - Added CI/CD Health Check Document - -commit 55fb89280614a18c6db31e68530093ddf4ce5085 -Merge: 44f6d3cc2 9470bfa03 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 10:28:20 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/880-ci-audit-template - -commit aedca45b6181a989825662416fe9d0b6de537dba -Author: Jorge Gonzalez -Date: Thu Oct 21 09:55:48 2021 -0400 - - docs: Update buildpack-changelog.md - -commit 9470bfa03b5b07ed22c01b0eda99db8228a7abe5 -Merge: c39fbb014 840b4f801 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 21 09:27:24 2021 -0400 - - Merge pull request #1391 from raft-tech/1013-hotfix - - 1013 hotfix - -commit aa5eb09c16f77da056a861fe2253ae3fb83701bf -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Oct 20 16:58:50 2021 -0400 - - Rename sprint-31-summary to sprint-31-summary.md - - added ".md" so will format as a markdown - -commit e8614d4656935fc5ec170cc987820422852f4a49 -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Wed Oct 20 15:47:39 2021 -0400 - - Create sprint-31-summary - -commit 840b4f801d71acb040b09581ea2fd9b4530ff22c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Oct 20 14:51:30 2021 -0400 - - Update .github/workflows/check-on-label.yml - - === for JavaScript? - -commit 44f6d3cc2fbeccf62708e1cf0dd1f9cd0333890c -Merge: 76207fa13 c39fbb014 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Oct 20 13:05:23 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/880-ci-audit-template - -commit e13ff24deeab2c3c1bcacad730fb1901da3cb4d2 -Merge: 296107aef c39fbb014 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Oct 20 11:51:21 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.16 - -commit b88ac3407abc08c13ec81478de26fb2d559d2396 -Author: Aaron Beavers -Date: Tue Oct 19 23:13:37 2021 -0400 - - use project slug from github.repository - -commit 8b908aa34f37b9542ce71afc7a726c9d81eb0765 -Author: Aaron Beavers -Date: Tue Oct 19 23:12:56 2021 -0400 - - Add condition to only run if the repository is from raft or HHS - -commit 0c9df0cd973129ed7b7a616863cd4a418af7a762 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 19:04:36 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit e617e72d91eae33211258c93535ab312dee53839 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 19:03:03 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit 69de413169552e3744fe440d2bafa191e74b2994 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 18:59:59 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit 29749d7cf048a893119368b29fd6fc7f526667dd -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 18:58:44 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit efc2251bb74e0ccdbf1271ff0d32c2551e98f6df -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 18:56:01 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit 18af67438c50f6731f4b67dbead2a6d239bb11a2 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 18:53:14 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit d269c0454a407ae6ce957c5d56946fbe7aa0604d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 18:49:14 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 205947414b77e99274bf543c0f07aa73355d5317 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 15:47:58 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit b910a72e5506de59703f2693349e28b7ef12754e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 15:32:46 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit b681ac66a2300dccc655da56161a14e54fe9f5c6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 15:31:40 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit 1185240f868bbd3609d1491a1c4c803704179c16 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 15:28:41 2021 -0400 - - Update docs/Security-Compliance/WH_CybersecurityEO.md - -commit 0009dff47d27d2a3a5052d93fe7e81ade851010b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 15:26:53 2021 -0400 - - Create WH_CybersecurityEO.md - - Closes #1338 - -commit 612e706d298de062e2a2052e3bb6bbd5c4496f51 -Merge: 3dae31da5 c39fbb014 -Author: Jorge Gonzalez -Date: Tue Oct 19 14:35:32 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 59cac0d88c29ea4791d70d27987f25bc2fef01f1 -Merge: 3611db923 c39fbb014 -Author: Jorge Gonzalez -Date: Tue Oct 19 14:34:56 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1054-dac-a11y - -commit 3611db9238a9b427c32383af03132234395bda68 -Author: Jorge Gonzalez -Date: Tue Oct 19 14:32:57 2021 -0400 - - fix: bump django-admin-508 - -commit a49ad0fd8a93aadb3d8908e491a673d3ec7d8661 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Oct 19 14:23:07 2021 -0400 - - Update docs/How-We-Work/team-charter/our-workflow.md - -commit 80f67d30d55aa6cf0cbe4c8d31b83b77f6c59d40 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Oct 19 14:20:45 2021 -0400 - - Update our-workflow.md - -commit c39fbb014c42cf0ba34be9b1d3822a25c04713bd -Merge: ee8991b64 2d63f0405 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 12:00:15 2021 -0400 - - Merge pull request #1366 from raft-tech/feat/1013-revised - - Feat/1013 revised - -commit 2d63f0405740eca67892c0a5048e6fff686698b8 -Merge: 497955bb6 ee8991b64 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 11:39:44 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1013-revised - -commit ee8991b6482302164f98533a5405d18a4531750c -Merge: f37a17642 e5811e67b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 11:39:37 2021 -0400 - - Merge pull request #1386 from raft-tech/valcollignon-patch-1 - - Update Team-Composition.md - -commit e5811e67b6256cc8c310528a446c94ded681af40 -Merge: f28e207cb f37a17642 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 10:46:12 2021 -0400 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 296107aefb9901e3c95209ab644214a90f61bb6d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Oct 19 14:42:44 2021 +0000 - - Bump @fortawesome/react-fontawesome in /tdrs-frontend - - Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.15 to 0.1.16. - - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) - - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.15...0.1.16) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/react-fontawesome" - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit f37a1764266c89dcab8f1477995fafcb4c03f002 -Merge: 204b54a4e a90bdbf3c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 10:38:29 2021 -0400 - - Merge pull request #1375 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.6.0 - - Bump cypress from 8.5.0 to 8.6.0 in /tdrs-frontend - -commit f28e207cb122e48af4406de109e275792fe8f7fb -Merge: 168cc866c 204b54a4e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 10:25:30 2021 -0400 - - Merge branch 'raft-tdp-main' into valcollignon-patch-1 - -commit 497955bb6925ae3bfdd6ce3e68d34423a59d9ae5 -Merge: 55975253f 204b54a4e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 09:43:39 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1013-revised - -commit a90bdbf3ce2d893b859803dc889aa1e74278d8f7 -Merge: 120315a20 204b54a4e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 09:41:48 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.6.0 - -commit 204b54a4ea23caa0d738d5b5acd2f2d099f13d86 -Merge: 1dcb6fcc7 ba5c8e909 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 09:41:42 2021 -0400 - - Merge pull request #1339 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 - - build(deps): bump miragejs from 0.1.41 to 0.1.42 in /tdrs-frontend - -commit ba5c8e9091fc727fc4a7a7453e608b887dd47752 -Merge: 70fbdf923 1dcb6fcc7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 09:11:07 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 - -commit 55975253f6b146712bccad1d615a72d6c6bbf78c -Merge: 9898696b9 1dcb6fcc7 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 19 09:08:59 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1013-revised - -commit 120315a201efe06fe303ea0ba7dcba7c4920d904 -Merge: 2ced93cbf 1dcb6fcc7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 09:04:34 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.6.0 - -commit 1dcb6fcc7ace845a1b880dc56808778f8e6d4885 -Merge: ad53f1353 420efa354 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 19 09:02:24 2021 -0400 - - Merge pull request #1286 from raft-tech/backend/1052/regional-staff - - Backend/1052/regional staff - -commit 420efa35411cf94c798d28e4796c516fec031584 -Author: Aaron Beavers -Date: Mon Oct 18 11:17:56 2021 -0400 - - add merge file - -commit 168cc866c6a035e128c736a35555787ce66dd951 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Oct 18 11:07:21 2021 -0400 - - Update Team-Composition.md - -commit 078a6e40d225482f0766f1a8a6020ff2749f02b7 -Author: Aaron Beavers -Date: Mon Oct 18 10:42:42 2021 -0400 - - updated migration name index - -commit eca73beeca92c3c87cfb843a4c2e7dfaf63d0ed0 -Merge: aa9b8047b ad53f1353 -Author: Jorge Gonzalez -Date: Mon Oct 18 10:34:01 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1054-dac-a11y - -commit 2d5ea193deb253ba40aacd7028505d74dd317abe -Author: Valerie Collignon <91133798+valcollignon@users.noreply.github.com> -Date: Mon Oct 18 10:23:01 2021 -0400 - - Update Team-Composition.md - -commit ed5c220ce43a8c3fd6dfd846c879b2a38ae4a580 -Merge: ce04a0d95 ad53f1353 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Oct 18 09:02:15 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1052/regional-staff - -commit 70fbdf92333b8d64abaae1e25e077da442864c1e -Merge: bff65b269 ad53f1353 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Oct 18 09:01:13 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 - -commit 18fc39abb5397fec562261843e61bbb01450c225 -Author: Jorge Gonzalez -Date: Fri Oct 15 15:09:04 2021 -0400 - - test: new SplashPage background updates - -commit 9898696b9895294fe6d5a86ce646585690144571 -Author: Aaron Beavers -Date: Fri Oct 15 14:53:38 2021 -0400 - - Add temporary build-and-test - -commit 08759cb9b1517902af9cf8b0f1fb579a4d18bf5e -Author: Aaron Beavers -Date: Fri Oct 15 14:53:28 2021 -0400 - - add documentation for labels - -commit ce04a0d95f56697d2b41ace8d0176ed95d87991e -Author: Aaron Beavers -Date: Thu Oct 14 22:03:01 2021 -0400 - - Update tdrs-backend/tdpservice/users/migrations/0023_add_regional_staff_group.py - - Co-authored-by: John Willis - -commit 5b086666f47b19598c899bfeed54c748d4a24d85 -Author: John Willis -Date: Thu Oct 14 17:40:54 2021 -0400 - - Updated zap-scanner.sh to utilize a different ZAP script based on target - -commit efca693d40c7c37e30a443968b32f4e42c134a08 -Author: Jorge Gonzalez -Date: Thu Oct 14 17:13:32 2021 -0400 - - fix: Bump interval - -commit 0006a6c2cc2069cb74e1ecc07d243e7afd47ba43 -Author: Jorge Gonzalez -Date: Thu Oct 14 17:09:53 2021 -0400 - - feat/1331: Change splash page background image - -commit c9cb2dc39c356a6db47498669459acd1d5485afa -Merge: b334a7d2f ad53f1353 -Author: Aaron Beavers -Date: Thu Oct 14 14:13:07 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1013-revised - -commit 8419cab8932e603ad1634967a93d20a592ce78ad -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Oct 14 10:27:07 2021 -0400 - - Update our-workflow.md - -commit b334a7d2f3b697fc3b1397422810f83ef9ac775c -Author: Aaron Beavers -Date: Wed Oct 13 18:09:29 2021 -0400 - - Add qasp pipeline - -commit 76207fa130e25b5baf83988c2546fef4bd4f7ba9 -Merge: 5167f5854 ad53f1353 -Author: John Willis -Date: Wed Oct 13 17:03:55 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/880-ci-audit-template - -commit 5167f58541bd81acbad983854e4ab41793abe2d3 -Author: John Willis -Date: Wed Oct 13 16:44:35 2021 -0400 - - Added CI/CD Health Check Document - -commit ad53f13537b42222bca51fc2668d1badb64bb488 -Merge: be2f649c9 471ac2748 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Oct 13 15:56:17 2021 -0400 - - Merge pull request #1364 from raft-tech/doc/1004-key-rotation-adr - - Creating ADR addendum to note our management of the Cloud.gov platform - -commit bff65b269fa7949693fb95046415a70ee160ff74 -Merge: 543b7ffdd be2f649c9 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Oct 13 15:35:52 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/miragejs-0.1.42 - -commit 471ac274848f957519e31573a441837e5ac7e4e4 -Merge: 76d7e55be be2f649c9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Oct 13 15:30:24 2021 -0400 - - Merge branch 'raft-tdp-main' into doc/1004-key-rotation-adr - -commit 76d7e55be546f18a51547ac85a24f30f25b9a542 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Oct 13 15:17:48 2021 -0400 - - Update docs/Architecture Decision Record/003 Application hosting.md - - Co-authored-by: John Willis - -commit aa9b8047bcd24eb38221e38b2af9c4f0e7ffe681 -Merge: a08879fa4 be2f649c9 -Author: Jorge Gonzalez -Date: Wed Oct 13 14:20:13 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1054-dac-a11y - -commit 41a46aa273f03b582e6f8433676e3f11f0943c7c -Author: Aaron Beavers -Date: Tue Oct 12 13:44:53 2021 -0400 - - Add frontend and backend flags - -commit 2ced93cbf7a464ab7d572723a1e8ed77cb3cd16b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Oct 12 16:09:33 2021 +0000 - - Bump cypress from 8.5.0 to 8.6.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 8.5.0 to 8.6.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v8.5.0...v8.6.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit be2f649c9ba0027812c5b0f0a8a4539ec9f5e169 -Merge: d5bdaeab8 10ab4149b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 12 12:00:46 2021 -0400 - - Merge pull request #1365 from raft-tech/feat/1258-disable-ignored-owasp-rules - - Issue 1258: Reduce false positives in OWASP ZAP reports - -commit f38430644dade153a77bdcd10998e3419ed8e43c -Merge: cccbae792 d5bdaeab8 -Author: Aaron Beavers -Date: Tue Oct 12 10:33:33 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1013-revised - -commit 10ab4149bc1064d4ade01ff9aeb5d4876a891a54 -Merge: 01888b70a d5bdaeab8 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 12 09:07:20 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1258-disable-ignored-owasp-rules - -commit 543b7ffdd771f8d1c1f8f14b1ab61e18ae4d8c2b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Oct 8 15:29:47 2021 +0000 - - build(deps): bump miragejs from 0.1.41 to 0.1.42 in /tdrs-frontend - - Bumps [miragejs](https://github.com/miragejs/miragejs) from 0.1.41 to 0.1.42. - - [Release notes](https://github.com/miragejs/miragejs/releases) - - [Changelog](https://github.com/miragejs/miragejs/blob/master/CHANGELOG.md) - - [Commits](https://github.com/miragejs/miragejs/compare/v0.1.41...v0.1.42) - - --- - updated-dependencies: - - dependency-name: miragejs - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit d5bdaeab820a76e523e5312b0ed545d212b14a24 -Merge: 0a3c29da4 7b3a6c88f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Oct 8 11:24:56 2021 -0400 - - Merge pull request #1371 from raft-tech/feat/remove-immutable-dep - - Removing 'immutable' dep - -commit 7b3a6c88fd3516b17fb75046867c7c4dae4a80f2 -Merge: b2198d10f 0a3c29da4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Oct 8 11:06:31 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/remove-immutable-dep - -commit 0a3c29da4569509e7f7e30427f0c9cd7f66d5d06 -Merge: 30810a5fc 1e4816763 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Oct 8 11:06:23 2021 -0400 - - Merge pull request #1318 from raft-tech/feat/1135-auth-source - - Issue 1135: Allow user to choose their authentication source - -commit 01888b70a4418904f92fc05913bdfee8633fc643 -Merge: 0c8b68865 30810a5fc -Author: John Willis -Date: Fri Oct 8 10:50:24 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1258-disable-ignored-owasp-rules - -commit 1e4816763eec79cde2bf581473753703ac76f427 -Merge: 1c0e44539 30810a5fc -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Oct 8 10:12:17 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1135-auth-source - -commit a08879fa4b977a3a3189dac98d02328b9f49b1a6 -Author: Jorge Gonzalez -Date: Thu Oct 7 16:16:41 2021 -0400 - - fix(1054): Update django-admin-508 to v0.1.1 - -commit 30810a5fc7c8c16848689d043c9fe433550942a0 -Merge: a19c65540 3e6bebaf9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 7 15:42:03 2021 -0400 - - Merge pull request #1327 from raft-tech/tech-deep-dives - - Added additional technical documentation from deep dive sessions - -commit 3e6bebaf9624ca516694cb7136d08b90f5dfcaae -Merge: 078d10c78 a19c65540 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Oct 7 15:01:57 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit b2198d10fccaf90891e2629b84140807a8b2d916 -Author: Jorge Gonzalez -Date: Thu Oct 7 11:54:11 2021 -0400 - - Update yarn.lock - -commit 5a28cda4230e47c4f7a413bd67526de12e79c5dc -Author: abottoms-coder -Date: Thu Oct 7 11:22:42 2021 -0400 - - Removing dep - -commit 3dae31da5a9e92cd4c087ebdff7fbf01a4931a4b -Author: Jorge Gonzalez -Date: Thu Oct 7 10:31:05 2021 -0400 - - Minor fixes - -commit e07b4bdf17be34342474ece0919f145791e6bdd7 -Merge: 05fcf33e8 a19c65540 -Author: Jorge Gonzalez -Date: Thu Oct 7 10:27:57 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 05fcf33e880ba6a3f34fa7e8923553f0936fcb8e -Author: Jorge Gonzalez -Date: Thu Oct 7 09:51:04 2021 -0400 - - Minor refactor - -commit fd249c3998209d95cf9ed59941258369fdb8810e -Author: Jorge Gonzalez -Date: Thu Oct 7 09:37:28 2021 -0400 - - update token params request - -commit a19c6554046194648c39663a6f81546ef9e9fbdf -Merge: c51f6ce01 fdc0015c9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Oct 7 09:34:14 2021 -0400 - - Merge pull request #1343 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.5.0 - - Bump cypress from 8.3.1 to 8.5.0 in /tdrs-frontend - -commit 1b62fa29f84f365b3fc8e79d8752c392dfa705c6 -Merge: e1c21cb17 c51f6ce01 -Author: Jorge Gonzalez -Date: Thu Oct 7 09:19:31 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit d44dfa974c217fc5384dc85520dc605e4a9d6792 -Author: Aaron Beavers -Date: Wed Oct 6 23:30:21 2021 -0400 - - Fix typo in doc string - -commit 6c79925e27eafe7d7c8f7c836ae4d4116c0a3570 -Author: Aaron Beavers -Date: Wed Oct 6 21:57:55 2021 -0400 - - Add doc string to tests - -commit ee37c87e85698eaad1a9c9daf8877f06a1fe5daf -Author: Aaron Beavers -Date: Wed Oct 6 21:57:48 2021 -0400 - - remove unused import - -commit e1c21cb179a0fa4e918df53c8e5bc7078f4f24c6 -Author: Jorge Gonzalez -Date: Wed Oct 6 14:27:06 2021 -0400 - - refactor and generalize views - -commit cccbae79283fef8ad76636045a59d188d9f224f6 -Author: Aaron Beavers -Date: Wed Oct 6 15:00:26 2021 -0400 - - Add unlabeled event type - -commit 078d10c780a44e9a80aac3ff6b36c69459de9cb9 -Author: John Willis -Date: Wed Oct 6 13:55:08 2021 -0400 - - Address QASP feedback - -commit b337cf7a8586217bb17ac62fa5b1a3c6e2a4ef15 -Author: Aaron Beavers -Date: Wed Oct 6 13:44:25 2021 -0400 - - Removed backend and frontend flags - -commit c4f015cd7eeeb1eded9fcc11fd6345ee11c42c28 -Author: Aaron Beavers -Date: Wed Oct 6 12:24:07 2021 -0400 - - remove quotes for values that now guarantee a value - -commit e57c19a8e6602ab3f8bff8ac70320375e53079eb -Author: Aaron Beavers -Date: Wed Oct 6 12:18:11 2021 -0400 - - remove typo - -commit 8ae08ab0462a0e9f6441b581032a70fa0a6f7301 -Author: Aaron Beavers -Date: Wed Oct 6 12:11:31 2021 -0400 - - missing single quote - -commit 5a17d84729d66d5f0bd18a0b8b434a42da2329b9 -Author: Aaron Beavers -Date: Wed Oct 6 12:02:48 2021 -0400 - - Add white space for readability - -commit d8808beee3d34a7f5aa7d8dc2377f295cef6e4f3 -Author: Aaron Beavers -Date: Wed Oct 6 12:00:17 2021 -0400 - - Use result of contains and remove ifs - -commit 443eb9f3888d16d2da9b8a419bc381f0f2d3ef3c -Author: Aaron Beavers -Date: Wed Oct 6 11:54:00 2021 -0400 - - Add initial values to outputs - -commit bd5a44f8c2ac7f5037cde8f8b14b1d712abb054b -Merge: 812f81c89 c51f6ce01 -Author: Aaron Beavers -Date: Wed Oct 6 11:45:59 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into feat/1013-revised - -commit 812f81c89d440c317a4dbdbc97e76aa1cf9e9613 -Author: Aaron Beavers -Date: Wed Oct 6 11:42:18 2021 -0400 - - Remove extra whitespace - -commit c44dd4876446b432b20bcb63d82d5799a1ea963b -Author: Aaron Beavers -Date: Wed Oct 6 10:53:33 2021 -0400 - - remove comment - -commit 351817502ca868666dc790a46bcec12b9b85d213 -Author: Aaron Beavers -Date: Wed Oct 6 10:01:19 2021 -0400 - - update name of job - -commit 630b018a22d2b7a86087fad436a987889e8ab6e9 -Author: Aaron Beavers -Date: Wed Oct 6 02:38:49 2021 -0400 - - add pull request type - -commit 7911bfb7ff0876de59ca45b41f50d65b87df1eed -Author: Aaron Beavers -Date: Wed Oct 6 02:24:44 2021 -0400 - - Remove status checks - -commit d7b539f13ac915dfddee98f59731605200d35b22 -Author: Aaron Beavers -Date: Wed Oct 6 02:14:37 2021 -0400 - - update qasp label - -commit 1c9757a7ce65dad7dac3d5d0ce0e18ef952c9562 -Author: Aaron Beavers -Date: Wed Oct 6 02:13:51 2021 -0400 - - update step ids - -commit 6c2a30d68796ed27e886572445a092f773c1a018 -Author: Aaron Beavers -Date: Wed Oct 6 02:10:43 2021 -0400 - - Add push event type - -commit c85c4811cdf4a9300f5dc1bf7562aaf4a8e83741 -Author: Aaron Beavers -Date: Wed Oct 6 01:57:01 2021 -0400 - - remove labeled event type - -commit 44f14d2ff8ce28d45ff126b4e97ca971d4e80110 -Author: Aaron Beavers -Date: Wed Oct 6 01:43:39 2021 -0400 - - add qasp parameters to backend - -commit 6cc0e78e5ecb6aa1c48d5b2cbcd5e89d830f8a45 -Author: Aaron Beavers -Date: Wed Oct 6 01:40:15 2021 -0400 - - add parameters and condition for frontend - -commit ee352f3a523adc7b730a5c5febe4c13cf6197d6e -Author: Aaron Beavers -Date: Wed Oct 6 00:41:28 2021 -0400 - - Add owasp pipeline parameter - -commit 905b93eb07912cf4ab61f37e27cf6859089ecb10 -Author: Aaron Beavers -Date: Wed Oct 6 00:12:10 2021 -0400 - - add github action - -commit 50b6c93eb5fb330f7d9ec43f0194ccefa889a3d8 -Author: Aaron Beavers -Date: Tue Oct 5 19:50:00 2021 -0400 - - fix owasp parameter type - -commit 7da264b3e3251fe6c6bd5885bed286b8fab8cb36 -Author: Aaron Beavers -Date: Tue Oct 5 19:08:14 2021 -0400 - - modify owasp to run only if parameter present - -commit 0c8b688650c21a01aecd057c381c92fa7f56777d -Author: John Willis -Date: Tue Oct 5 17:57:24 2021 -0400 - - Mount zap-hook in a different directory to prevent conflicts with reports dir - -commit 3e180c39bac9a01ac0b46bacd4b2390597b09036 -Author: John Willis -Date: Tue Oct 5 17:37:23 2021 -0400 - - Fix interpretation errors in git secrets config - -commit 9fcc678b3ce2a8dc66a5456e5b57cc75e679e29f -Author: John Willis -Date: Tue Oct 5 17:34:47 2021 -0400 - - Update git secrets config to reflect changes in docker-compose - -commit 588511f03f41b2df7f2b8fb9a45ac28764615d22 -Merge: cc06b3cbc c51f6ce01 -Author: John Willis -Date: Tue Oct 5 17:28:42 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit cf30e889b911618c260f3465db0186fc12110484 -Merge: 5c475ac71 c51f6ce01 -Author: John Willis -Date: Tue Oct 5 17:27:16 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1258-disable-ignored-owasp-rules - -commit 5c475ac7186f712356b81651a955823b18c7ac3b -Author: John Willis -Date: Tue Oct 5 17:07:02 2021 -0400 - - Issue 1258: Reduce false positives in OWASP ZAP reports - -commit fdc0015c98bae34c0650302f28aa49c09e4c8ce6 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Oct 5 19:58:41 2021 +0000 - - Bump cypress from 8.3.1 to 8.5.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 8.3.1 to 8.5.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v8.3.1...v8.5.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit c51f6ce010bc7efb287ce3b11661a6bff9d3d346 -Merge: 7f7c82278 fec5a9a24 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Oct 5 15:55:15 2021 -0400 - - Merge pull request #1340 from raft-tech/feat/1161-owasp-scan-logs - - Issue 1161: Implement storage of nightly OWASP ZAP scan results - -commit fec5a9a243209e99f3cc9960109a3295d0b8738a -Author: John Willis -Date: Tue Oct 5 15:09:49 2021 -0400 - - Reverted QASP review change that didn't get carried over right from suggestions - -commit 6e5ca3b180a8cfea39e6798d9ee217ae33b82bf2 -Author: John Willis -Date: Tue Oct 5 15:07:11 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 37081a93917dbde72bf715a031a7eb31e318680c -Author: Aaron Beavers -Date: Tue Oct 5 13:29:04 2021 -0400 - - Update tests - -commit 70e5c8d572385a454b60ebef6cd398c67c2e89ec -Author: Aaron Beavers -Date: Tue Oct 5 13:28:45 2021 -0400 - - uncache group membership properties - -commit 1c0e44539783dc4b9a471660f74c53ebbdaaa1bf -Merge: 25b64ca93 7f7c82278 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Oct 5 11:23:15 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1135-auth-source - -commit 0e84505526f722cee1a276d2989e1ba1fa2ea316 -Author: abottoms-coder -Date: Tue Oct 5 09:56:24 2021 -0400 - - Creating ADR addendum to note our management of the Cloud.gov platform - -commit 9b4ee32574f6a44e5ce64f478b7e55e208481e7c -Author: Alexandra Pennington -Date: Tue Oct 5 09:02:29 2021 -0400 - - qasping 1161 - -commit 6840d474b518506beda205fa44a216281187bb7a -Author: Jorge Gonzalez -Date: Mon Oct 4 15:37:28 2021 -0400 - - tweak initial ams auth request - -commit 5fd0a3cbb7bc2af0e6c99ef3bb6979c7b3074afe -Merge: c6ffc0007 7f7c82278 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Oct 4 14:50:58 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs - -commit 7f7c822787e06117e946fa7b5d063ef7d76bf5d2 -Merge: 255fa39cd 695c067db -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 11:55:50 2021 -0400 - - Merge pull request #1360 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.2 - - Bump @testing-library/react from 12.1.0 to 12.1.2 in /tdrs-frontend - -commit 695c067db098fdabba29750baeb2c3ee03f55606 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Oct 4 15:26:32 2021 +0000 - - Bump @testing-library/react from 12.1.0 to 12.1.2 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.0 to 12.1.2. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.0...v12.1.2) - - --- - updated-dependencies: - - dependency-name: "@testing-library/react" - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 255fa39cd64b5e3c85a95cb78682eaa74a00648b -Merge: c8775a313 826f3d8e3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 11:22:43 2021 -0400 - - Merge pull request #1359 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.3.0 - - Bump concurrently from 6.2.1 to 6.3.0 in /tdrs-frontend - -commit 826f3d8e3b061dc9c5bb90a8eca0a5a83c7aa097 -Merge: b03127df7 c8775a313 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 11:05:06 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.3.0 - -commit c8775a3131a0fc945f2e9b1f0810c4fbf21f528e -Merge: b6d357f01 7cce86508 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 10:49:51 2021 -0400 - - Merge pull request #1341 from raft-tech/feat/deps-spam-reduction - - Reduce dependabot spam - -commit b03127df7232a83c2c57febeb3eff480e9854f88 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Oct 4 14:35:47 2021 +0000 - - Bump concurrently from 6.2.1 to 6.3.0 in /tdrs-frontend - - Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 6.2.1 to 6.3.0. - - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - - [Commits](https://github.com/open-cli-tools/concurrently/compare/v6.2.1...v6.3.0) - - --- - updated-dependencies: - - dependency-name: concurrently - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 7cce8650819ebc2c9e69521aac236e26de571584 -Merge: fb2a2d953 b6d357f01 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 10:32:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/deps-spam-reduction - -commit b6d357f0157c78ee74e97b44369f3cce3261afd5 -Merge: abee56462 4d1776d80 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 10:32:08 2021 -0400 - - Merge pull request #1324 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.1 - - Bump prettier from 2.4.0 to 2.4.1 in /tdrs-frontend - -commit 4d1776d80d2341fdd4fc28b906177e3b27d6c212 -Merge: 05ac26bca abee56462 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 10:15:53 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.1 - -commit abee5646289342be1d181bc6af23ce539f37fd90 -Merge: 1a134fbd9 723feb986 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 10:15:47 2021 -0400 - - Merge pull request #1322 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-cypress-2.12.1 - - Bump eslint-plugin-cypress from 2.11.3 to 2.12.1 in /tdrs-frontend - -commit 723feb9866c1c24df44380f36ab9e480103f56dc -Merge: 8484fc4a5 1a134fbd9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Oct 4 09:39:31 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-cypress-2.12.1 - -commit fb2a2d953b693b941d1baea4684f6de1ee4a73fc -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Oct 1 16:09:17 2021 -0400 - - Update docs/Architecture Decision Record/016-dependabot-dependency-management.md - -commit 4b8e8f723b328a798d118845ddfe7fb8b10264c8 -Merge: 5109614fd 1a134fbd9 -Author: Jorge Gonzalez -Date: Fri Oct 1 15:44:54 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1136-ams - -commit 5109614fdaf765ffc2bd53a0c855e0732bf39535 -Author: Jorge Gonzalez -Date: Fri Oct 1 15:44:41 2021 -0400 - - init - -commit c6ffc00071677929ca66e55cc58b9e2dd4c5e120 -Author: John Willis -Date: Fri Oct 1 15:22:52 2021 -0400 - - Added markdown document for Django Admin logging - -commit 252e19772e68a94779ffbd817911d010b4b64cde -Author: John Willis -Date: Fri Oct 1 15:01:04 2021 -0400 - - Reverted testing changes - -commit 87478ecb90ef68863bd9a63e7b327bad3d4e39ed -Author: abottoms-coder -Date: Fri Oct 1 10:52:05 2021 -0400 - - Updating ADR - -commit 25b64ca93c330c93de35519fffafaabb528f951d -Merge: 93a800fee 1a134fbd9 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Oct 1 09:24:20 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1135-auth-source - -commit 4e72b295ed38cc4831502ed9d1593e15a78ca520 -Author: John Willis -Date: Thu Sep 30 13:37:36 2021 -0400 - - Temporarily comment out waiting for status checks for deployment; due to the on hold nightly workflow preventing checks from completing - -commit 7c53f382f5a5deef864683d0cb81ed7fc1ab84d4 -Author: John Willis -Date: Thu Sep 30 13:18:55 2021 -0400 - - Temp changes to circleci config for tabletop demo - -commit 55e6c0f9fd2ba40879d35736f58b4187d9d3b950 -Merge: 058b70292 1a134fbd9 -Author: John Willis -Date: Thu Sep 30 11:11:28 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs - -commit cc06b3cbc6fe329947b598a916e8fdb6d40adb97 -Merge: 519e7a973 1a134fbd9 -Author: John Willis -Date: Thu Sep 30 11:11:13 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit 4522b6f273468eeb6a6b1617d91c80e3f966d5c8 -Author: Aaron Beavers -Date: Thu Sep 30 10:49:05 2021 -0400 - - test that exceptions are raised if a groups null fields are assigned values - -commit 17ff2d2c3e531fec9c42424f652241871a879041 -Author: Aaron Beavers -Date: Thu Sep 30 10:48:39 2021 -0400 - - remove debugging print - -commit 1a134fbd9067f44dc4707d1ff0cf0314c94742cf -Merge: 834ef7d82 0a5be07cc -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 30 10:34:21 2021 -0400 - - Merge pull request #1344 from raft-tech/lfrohlich-patch-3 - - Update links Current-TDRS.md - -commit 0a5be07ccc5f406b093c399e2556db95799be790 -Merge: 768d19eb7 834ef7d82 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 30 09:12:15 2021 -0400 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-3 - -commit 834ef7d82dadca6c7d9cf4518fe282ed181724ed -Merge: 92fe84ca3 203973595 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 30 09:12:08 2021 -0400 - - Merge pull request #1342 from raft-tech/lfrohlich-patch-2 - - Update Roadmap-and-Backlog.md - -commit a33c5ebff1ce141ee663f1edd74cad3641da9b28 -Merge: 66a2fd760 a52a3c053 -Author: abottoms-coder -Date: Wed Sep 29 11:59:32 2021 -0400 - - Merge branch 'feat/deps-spam-reduction' of github.com:raft-tech/TANF-app into feat/deps-spam-reduction - -commit 66a2fd76003714a329cec13b1f0f64923915ed82 -Author: abottoms-coder -Date: Wed Sep 29 11:59:23 2021 -0400 - - Adding comment to provide documentation on new keyword used - -commit 519e7a973d49b9413818d71028cc8c78a9991ba9 -Merge: fbd5699bd 92fe84ca3 -Author: John Willis -Date: Wed Sep 29 11:18:00 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit 2039735955bfb98907c063481e279c2c4639b2f5 -Merge: 15644ecad 92fe84ca3 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Sep 29 09:51:32 2021 -0400 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-2 - -commit 15644ecad3f2597a039cc02d41eb1c8cd8ed80b5 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Sep 29 09:50:50 2021 -0400 - - Update Roadmap-and-Backlog.md - -commit eee2ec2cfaf06ce79aed4c0d727d89de1fb2dfdc -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Sep 29 09:49:15 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 94412dbdb2110c4e3d269619d39c0f28ba15b8de -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Sep 29 09:46:02 2021 -0400 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 058b70292061d7375105243fffc7be3c181541fa -Author: John Willis -Date: Tue Sep 28 16:01:37 2021 -0400 - - linter fixes - -commit 85b04efd3da89207632e7f1e4f19469f8d7d7412 -Author: John Willis -Date: Tue Sep 28 15:50:59 2021 -0400 - - Code coverage improvements - -commit a52a3c053b27c5f1428ac6061dd2d5d814a8baa0 -Merge: 7b04b9124 92fe84ca3 -Author: John Willis -Date: Tue Sep 28 12:20:50 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/deps-spam-reduction - -commit 506fb4de7533e49acd4616b08b7d47517b98cc37 -Merge: c77e321b6 92fe84ca3 -Author: John Willis -Date: Tue Sep 28 12:12:02 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs - -commit 92fe84ca3e656f44e77cfd7f573b34e0628fcfe6 -Merge: 4ebd15de7 0711c09df -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Sep 28 12:05:18 2021 -0400 - - Merge pull request #1332 from raft-tech/ops/1191-codecov - - fix(1191) Codecov: Frontend uploads fail to find coverage report - -commit 0711c09df9680d341af24a53593efc86f039015e -Merge: 7aa6a70c4 4ebd15de7 -Author: John Willis -Date: Tue Sep 28 11:43:46 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/1191-codecov - -commit 7b04b9124ff004566c6536e1ab5deb17f0e13ee8 -Merge: 0329a259f b3a321649 -Author: abottoms-coder -Date: Tue Sep 28 10:59:29 2021 -0400 - - Merge branch 'feat/deps-spam-reduction' of github.com:raft-tech/TANF-app into feat/deps-spam-reduction - -commit 0329a259f36bd469cbe6525eab444e97271d26a7 -Author: abottoms-coder -Date: Tue Sep 28 10:58:37 2021 -0400 - - Update per Jorge - -commit 768d19eb7c8e9ec50db2544b4d363634c5804558 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Sep 28 10:53:16 2021 -0400 - - Update Current-TDRS.md - -commit 67ae5413bf5bd5979bea9e2bd1839a45354715a7 -Author: Aaron Beavers -Date: Tue Sep 28 10:28:05 2021 -0400 - - Remove extra new line after doc string - -commit b3a3216491d8192c4aa8bd862082f645d231ea33 -Merge: e087dd4e8 4ebd15de7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Sep 28 09:01:45 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/deps-spam-reduction - -commit 8ffec2d966005709887bcf5b2cd1ebfcbf47188c -Author: Aaron Beavers -Date: Mon Sep 27 20:42:32 2021 -0400 - - update migration - -commit 2eaf40d171dc66cf1f01420ea93b4a3422b5b939 -Merge: a0c31d8c5 4ebd15de7 -Author: Aaron Beavers -Date: Mon Sep 27 18:45:30 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1052/regional-staff - -commit a0c31d8c520d4c8492617555cfd69da8acbbc622 -Author: Aaron Beavers -Date: Mon Sep 27 15:22:00 2021 -0400 - - remove single use variable - -commit 0f3b137dd7f3b366a9bb6e71b6160a34ef58e782 -Author: Aaron Beavers -Date: Mon Sep 27 13:49:41 2021 -0400 - - Add doc strings for new functions - -commit 146a3b2c89cafcce5b2601c366518ef2e805808b -Author: Aaron Beavers -Date: Mon Sep 27 12:45:08 2021 -0400 - - All tests passing - -commit 27532bfa095dc46e1044ceeaef23316dff3aecbf -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Sep 27 10:39:20 2021 -0400 - - Update Roadmap-and-Backlog.md - -commit ff8d9d2a5d7515048170f0b2130ace67ecb3201d -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Sep 27 10:33:31 2021 -0400 - - Update Roadmap-and-Backlog.md - -commit 7aa6a70c4a190de4e35b12eee0abac3e17a92e6a -Author: Jorge Gonzalez -Date: Mon Sep 27 10:12:52 2021 -0400 - - Update codecov.yml - -commit c77e321b6bcb61c8706275356bb989e5b49d4470 -Author: John Willis -Date: Fri Sep 24 16:59:49 2021 -0400 - - Revert testing steps - -commit b111905b1b5b31dace7bdab48126d64432c42639 -Author: John Willis -Date: Fri Sep 24 16:29:49 2021 -0400 - - Fix CF run-task command interpolation - -commit d85e6bbf768dc3b26ca4ab4b5869b8ca3c7ee3b5 -Author: John Willis -Date: Fri Sep 24 16:01:03 2021 -0400 - - Call cf-check script with sudo to support machine-executors as well - -commit edaf6481c8a78d0c881a4ffb03ae031859219248 -Author: John Willis -Date: Fri Sep 24 15:58:44 2021 -0400 - - Update permissions tests - -commit f2d20643f793eb6dbc87fa65ef6f074cdfc031d3 -Author: John Willis -Date: Fri Sep 24 15:55:52 2021 -0400 - - Revert executor change - -commit 3cfdfd7b3431654f4f9cf2306b0d5361a313aaeb -Author: John Willis -Date: Fri Sep 24 15:46:35 2021 -0400 - - Test docker-executor for CF CLI - -commit f85cdbce7b6cf3f17f9ede257f8d640e5dbcd7ea -Author: John Willis -Date: Fri Sep 24 15:43:53 2021 -0400 - - Added cf-check step to nightly-owasp-scan so CF CLI will be available; linter fixes - -commit e3ddb1435b2c3dda9bff99c5bb5b815db320eea3 -Author: John Willis -Date: Fri Sep 24 15:18:10 2021 -0400 - - Testing modifications to CircleCI config - -commit e087dd4e8a88d21a5f927af15b4a4bc7fced08ee -Author: abottoms-coder -Date: Fri Sep 24 14:23:30 2021 -0400 - - Per talking with Alex, splitting more precisely into front/backend deps - - As an aside, about half the frontend packages targetted here are devDependencies - -commit a88facc8eefa9a61230d88c5df70e2ec735ebcb9 -Merge: c401e82cb 4ebd15de7 -Author: John Willis -Date: Fri Sep 24 13:56:59 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1161-owasp-scan-logs - -commit 22d2410f411d80a5e718d12f16f6995735dffc94 -Author: Aaron Beavers -Date: Fri Sep 24 12:38:32 2021 -0400 - - update logic to look directly for a users region - -commit 4ebd15de7a9b1e39323a809d9ef3b0e608f3f334 -Merge: 49c7736f1 fc56e17ab -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Sep 24 12:37:05 2021 -0400 - - Merge pull request #1242 from raft-tech/amilash-patch-3 - - create sprint-27-summary.md - -commit eb9df18f96e26a25f1fcc8064c118952ffb7baec -Author: Aaron Beavers -Date: Fri Sep 24 12:15:53 2021 -0400 - - add test for regional user stt assignment exception - -commit dff63bcd3cc0d91b3b5f770519bfff9d74f587c5 -Author: Aaron Beavers -Date: Fri Sep 24 12:15:10 2021 -0400 - - update existing tests to accept region/user exclusivity - -commit fc56e17ab7c51c16648a40c3f8676f84c06f2263 -Merge: 763b2f38d 49c7736f1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Sep 24 12:06:24 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-3 - -commit fbd5699bd2357fd29804ad6c6f46490afd837406 -Merge: ad1fb6808 49c7736f1 -Author: John Willis -Date: Fri Sep 24 11:43:15 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit b3aa9c4d6d2db931a9b947e45f79bd299e19008e -Author: Aaron Beavers -Date: Fri Sep 24 11:41:49 2021 -0400 - - Override save method for stt and region assignment - -commit 49c7736f1454d24629acd94ffea5e6594d41f3c3 -Merge: 81e21503e 92cf09e4a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Sep 24 10:38:28 2021 -0400 - - Merge pull request #1321 from raft-tech/backend/1291-clam-av-scan-logs - - Issue 1291: Implement storage of ClamAV scan results - -commit 92cf09e4a1d300dd597094ccbc1d71a3c3591ac7 -Author: John Willis -Date: Fri Sep 24 10:01:50 2021 -0400 - - Update tdrs-backend/tdpservice/security/models.py - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 2182e9cf55c4865ba547ced3581b7953c280b480 -Author: abottoms-coder -Date: Fri Sep 24 09:20:03 2021 -0400 - - Pushing first try, might try their dry run script - -commit ad1fb6808bce3cab80ff5647f6483c12910e1c95 -Merge: 22301d33b 81e21503e -Author: John Willis -Date: Fri Sep 24 08:57:11 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit 2a45e0d3414411b1aacd2c7b0d5659e5da705d19 -Merge: 1cda44e06 81e21503e -Author: John Willis -Date: Fri Sep 24 08:46:53 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs - -commit 34a52d0c15a35e5d7c495c164c045867b9c18dec -Merge: 4df9dae88 81e21503e -Author: Jorge Gonzalez -Date: Thu Sep 23 10:42:13 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/1191-codecov - -commit 4df9dae88056634a35a797ab156f8513899b8cce -Author: Jorge Gonzalez -Date: Wed Sep 22 13:21:06 2021 -0400 - - ci: test custom codecov config - -commit c401e82cbcbcb2ab626a3d90894b0a3bb7961cf6 -Author: John Willis -Date: Wed Sep 22 18:36:14 2021 -0400 - - Fix ValueError from referencing temporary file outside of context manager - -commit 4ca4b68bee1f826b9f85e74a918dda5650938356 -Author: John Willis -Date: Wed Sep 22 18:23:34 2021 -0400 - - Most of the way there, need to add tests and misc clean up - -commit 93a800fee468742d0c5c9cfe1789a4ea62cfa19e -Merge: 31b96bb7f 81e21503e -Author: Jorge Gonzalez -Date: Wed Sep 22 10:33:41 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1135-auth-source - -commit 31b96bb7f93fefca7af1d1a00824e453380dafc3 -Author: Jorge Gonzalez -Date: Wed Sep 22 10:33:33 2021 -0400 - - fix: button line height - -commit 1bff043bdca5e90b511cf38f2be439eb508d1fe7 -Author: Aaron Beavers -Date: Wed Sep 22 10:01:16 2021 -0400 - - Update tdrs-backend/tdpservice/conftest.py - - Co-authored-by: John Willis - -commit 946957634707051a2f66af473348db72aaf5a331 -Author: Aaron Beavers -Date: Wed Sep 22 10:01:08 2021 -0400 - - Update tdrs-backend/tdpservice/users/migrations/0022_add_regional_staff_group.py - - Co-authored-by: John Willis - -commit eb140edec6ce8e165387c19d3f20c718d2a04fe3 -Author: John Willis -Date: Tue Sep 21 17:44:34 2021 -0400 - - Updates to zap scanner script, added model for OwaspZapScan - -commit 81e21503edda70dd5d8dffa06776a460d3681535 -Merge: 6c7a66074 df5d481ef -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Sep 21 15:20:03 2021 -0400 - - Merge pull request #1328 from raft-tech/ops/1308-buildpacks - - Issue: 1308 Cloud.gov Buildpack Update (9-9-2021) - -commit df5d481ef6d3b4b4aaf0b1ece28c655aa52b3f01 -Merge: 767a86ad6 6c7a66074 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Sep 21 14:59:58 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/1308-buildpacks - -commit ba0029d155d2736a9cec6634803960a001182b5c -Author: John Willis -Date: Mon Sep 20 17:41:14 2021 -0400 - - Added start of management command to process OWASP ZAP scans - -commit 22301d33b9448cdebcf6696fbe45e0e7ef0fcc4c -Merge: caee22c8f 6c7a66074 -Author: John Willis -Date: Mon Sep 20 12:03:45 2021 -0400 - - Merge branch 'raft-tdp-main' into tech-deep-dives - -commit 1cda44e06782c20d5af5c13e8f205eff2ae21fc7 -Merge: 772cbe43e 6c7a66074 -Author: John Willis -Date: Mon Sep 20 12:03:38 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs - -commit ac797ef2b27e7d82282c31267ce10780ee557d58 -Author: Jorge Gonzalez -Date: Mon Sep 20 11:07:33 2021 -0400 - - fix(codecov): correct path in frontend converage upload script - -commit 6c7a66074d81437d6697e98acff319701e0921e2 -Merge: 3794506d9 ff2ddaa53 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 20 10:32:32 2021 -0400 - - Merge pull request #1317 from raft-tech/feat/1152 - - Issue 1152: Remove upper "Sign In" link - -commit ff2ddaa53b23206d0c0105832a46605f79114b57 -Merge: a1faf5b40 3794506d9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 20 10:09:37 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1152 - -commit 3794506d98de73c1ee39a638f13a6aaf3ccb45f8 -Merge: 3e9a3116d 2e60ff100 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 20 10:09:19 2021 -0400 - - Merge pull request #1306 from raft-tech/fix/1257-login-button - - Issue 1257: Fix Broken Sign In button on Home page - -commit 2e60ff100ee242f533575170d1bf3e7b3ab16aaf -Merge: 37bb606f5 3e9a3116d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 20 09:45:59 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/1257-login-button - -commit 3e9a3116d1b005f109b97edeefb2a91c837acb97 -Merge: 1cb27c3d5 7cf4351cf -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 20 09:39:39 2021 -0400 - - Merge pull request #1311 from raft-tech/docs/1208-csp-inline-waiver - - New ADR for resolving 1208 and 907. - -commit 7cf4351cfa52eaba62e2fa8783ba21bf7f71afd4 -Merge: 934d50b74 1cb27c3d5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 20 09:10:40 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/1208-csp-inline-waiver - -commit 767a86ad6d1598d9a6034cfe4d7073c129fb71f3 -Author: Jorge Gonzalez -Date: Fri Sep 17 15:59:17 2021 -0400 - - docs: Update buildpack-changelog.md - -commit caee22c8f3c7aff4319ac5b1b387f1550bc33119 -Author: John Willis -Date: Fri Sep 17 15:10:08 2021 -0400 - - Added additional technical documentation from deep dive sessions - -commit 934d50b74d1246b8d5ee0c4f89e0e75a977195f8 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Sep 17 13:38:34 2021 -0400 - - Update docs/Architecture Decision Record/019-zap-waiver.md - -commit 772cbe43e5b99aa2f8a2ae3c256f1db128971b0b -Author: John Willis -Date: Fri Sep 17 12:47:53 2021 -0400 - - Cast AV scan settings to integer - -commit 22b0f33c36d8ab812d33d2436d961988fe68ccd3 -Merge: b7a534b1e 1cb27c3d5 -Author: John Willis -Date: Fri Sep 17 12:36:47 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs - -commit a1faf5b406850415f97a7446574e02a3141b529a -Author: Jorge Gonzalez -Date: Fri Sep 17 11:00:46 2021 -0400 - - Minor style fix - -commit b834f8eedda49aa89dc1a0032886673c0ea502d3 -Merge: 43a5e0ef8 37bb606f5 -Author: Jorge Gonzalez -Date: Fri Sep 17 10:59:31 2021 -0400 - - Merge branch 'fix/1257-login-button' into feat/1152 - -commit 3df8d6f02476149cd7fe05e49d7febfefc44a13c -Merge: cbd9fb6b6 37bb606f5 -Author: Jorge Gonzalez -Date: Fri Sep 17 10:58:41 2021 -0400 - - Merge branch 'fix/1257-login-button' into feat/1135-auth-source - -commit cbd9fb6b671c4c93b9ca085f1ef3f494ea0def9e -Merge: 26eeaf1a4 1cb27c3d5 -Author: Jorge Gonzalez -Date: Fri Sep 17 10:56:50 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1135-auth-source - -commit 37bb606f58ff32ea3a06041f084d25ddde8f7a64 -Merge: 99f3ecb79 1cb27c3d5 -Author: Jorge Gonzalez -Date: Fri Sep 17 10:56:35 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/1257-login-button - -commit 43a5e0ef87a0defb26fabbcdba432f139506ca00 -Merge: 49f8dc695 1cb27c3d5 -Author: Jorge Gonzalez -Date: Fri Sep 17 10:56:13 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1152 - -commit 49f8dc695aa831893d890f08e1e1cdc52635ab54 -Author: Jorge Gonzalez -Date: Mon Sep 13 10:37:36 2021 -0400 - - refactor: remove upper "Sign In" link - -commit 0114ef68545e8e95268e99bb792b093579b41121 -Author: abottoms-coder -Date: Fri Sep 17 10:10:21 2021 -0400 - - Updates per PR, also switching status to 'accepted' - -commit 1cb27c3d5f647a4b57660d30fccd490d5a066219 -Merge: 07c709718 37d54bbae -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Sep 17 09:25:11 2021 -0400 - - Merge pull request #1294 from raft-tech/feat/928-404-page - - Issue 928: Implement 404 page - -commit 463373c8b675ad79fd96550dd93b6cff73307991 -Author: Aaron Beavers -Date: Thu Sep 16 14:06:52 2021 -0400 - - Add tests for regional user update permissions - -commit 26eeaf1a4d58619856558cc956619ff393c45fa0 -Author: Jorge Gonzalez -Date: Thu Sep 16 10:56:28 2021 -0400 - - fix: splashpage tests - -commit 81c3e58a7664fb887883bc6cc4b4dfd9130270f0 -Author: Aaron Beavers -Date: Thu Sep 16 09:52:03 2021 -0400 - - Remove lint - -commit 09311b42d192d2c206f8ca0982fc59ff7cdd7979 -Author: Aaron Beavers -Date: Thu Sep 16 09:40:54 2021 -0400 - - Update tdrs-backend/tdpservice/stts/models.py - - Co-authored-by: John Willis - -commit 6d833e7cc4ecc2300a39508fee61430e336723bf -Author: Aaron Beavers -Date: Thu Sep 16 09:35:46 2021 -0400 - - Removed lint around doc string - -commit 05ac26bcab51e11ff504418e49246ebb8b4e4cbb -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 16 06:13:14 2021 +0000 - - Bump prettier from 2.4.0 to 2.4.1 in /tdrs-frontend - - Bumps [prettier](https://github.com/prettier/prettier) from 2.4.0 to 2.4.1. - - [Release notes](https://github.com/prettier/prettier/releases) - - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/prettier/compare/2.4.0...2.4.1) - - --- - updated-dependencies: - - dependency-name: prettier - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit b7a534b1ec4085b8c66fa8e7b27f6018a62498d0 -Author: John Willis -Date: Wed Sep 15 17:26:11 2021 -0400 - - More code coverage - -commit 5bc46a6f66c15c155eb06bda2a87ac509b6b5e30 -Author: John Willis -Date: Wed Sep 15 15:29:28 2021 -0400 - - More code coverage - -commit 4e1e545fe88545162c34e52eeb5ce176a75ccf83 -Author: John Willis -Date: Wed Sep 15 13:36:44 2021 -0400 - - Code coverage - -commit 8acb8bcaa9b02414443082745413297e125add87 -Author: John Willis -Date: Wed Sep 15 12:29:24 2021 -0400 - - Additional code coverage, linter fixes - -commit 47bdc15c99c644f67a4f76c6637f572791182856 -Author: John Willis -Date: Wed Sep 15 11:50:08 2021 -0400 - - Increased code coverage - -commit e776054c4b858d2e30e6678963f9f38884c936a2 -Author: Aaron Beavers -Date: Wed Sep 15 11:19:13 2021 -0400 - - Remove lint - -commit 37d54bbaee8e5d5bb256e9c60b2e5d6f32225f86 -Merge: c774ccde0 07c709718 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Sep 15 09:31:20 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/928-404-page - -commit 8484fc4a5fa8682f59d0cbbd532849e6762644d6 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Sep 15 06:16:43 2021 +0000 - - Bump eslint-plugin-cypress from 2.11.3 to 2.12.1 in /tdrs-frontend - - Bumps [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) from 2.11.3 to 2.12.1. - - [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases) - - [Commits](https://github.com/cypress-io/eslint-plugin-cypress/compare/v2.11.3...v2.12.1) - - --- - updated-dependencies: - - dependency-name: eslint-plugin-cypress - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit b6437921fc67231f8bc8dab98fe7e373cf54ac45 -Author: John Willis -Date: Tue Sep 14 16:51:22 2021 -0400 - - Fix tests - -commit a95300f5908239467e8507b795c3b5a138f6b0b9 -Author: John Willis -Date: Tue Sep 14 15:22:51 2021 -0400 - - Linter fixes - -commit bfc04f83971a686df898d1677757ccb92283dd3a -Merge: 121d8c82d 07c709718 -Author: John Willis -Date: Tue Sep 14 15:11:21 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1291-clam-av-scan-logs - -commit 121d8c82db520af6e9c4a0199f050072d5734ff2 -Author: John Willis -Date: Tue Sep 14 13:50:01 2021 -0400 - - Handle uncaught exceptions, linting/comment fixes - -commit 300a3fc40eb0a1eff616104af6e286460ae0ae15 -Merge: fd4cabe8e 07c709718 -Author: Aaron Beavers -Date: Tue Sep 14 11:52:32 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1052/regional-staff - -commit fd4cabe8e3831d75a8643f49d10b3bc0f5ff4a6e -Author: Aaron Beavers -Date: Tue Sep 14 11:51:36 2021 -0400 - - Implement negative test - -commit 647de7ddc14dc8f87f59649877f2139bfffe8c25 -Author: John Willis -Date: Mon Sep 13 17:12:18 2021 -0400 - - Updated ClamAVClient to log scan results for infected and error states, added permissions for ClamAVFileScan model - -commit 7471e0729fdd84e41221f4ed736bd0c9817ea96d -Author: John Willis -Date: Mon Sep 13 16:09:40 2021 -0400 - - Fix TypeError raised by permissions for regional staff data file downloads - -commit e7f9633fc2c9b77119e73ddb8231432b84e9f25b -Author: John Willis -Date: Mon Sep 13 15:36:16 2021 -0400 - - Added ClamAVFileScan model to track all file scans performed by ClamAV, added new security app to house auditing models - -commit 7dc94ae649af1534cdb3cd84997dc196d92af125 -Author: Aaron Beavers -Date: Mon Sep 13 15:26:23 2021 -0400 - - cleaned up lint - -commit a63c42672fdbac341083beb3e70d759487ab884d -Author: Aaron Beavers -Date: Mon Sep 13 15:19:03 2021 -0400 - - create new stt/region for fixtures - -commit 8d9731a33007562f1f5c75dc41bbae436ad420aa -Merge: 827bce0bb 07c709718 -Author: Jorge Gonzalez -Date: Mon Sep 13 14:51:40 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1135-auth-source - -commit 827bce0bbe036552490cc097a2591a0aaf9f159a -Merge: 979e308ae 99f3ecb79 -Author: Jorge Gonzalez -Date: Mon Sep 13 14:49:56 2021 -0400 - - Merge branch 'fix/1257-login-button' into feat/1135-auth-source - - # Conflicts: - # tdrs-frontend/src/components/SplashPage/SplashPage.jsx - -commit 979e308aed947a73941842376eae2c7d45ccc32a -Author: Jorge Gonzalez -Date: Mon Sep 13 13:59:21 2021 -0400 - - feat: add login with ACF AMS button to SplashPage - -commit 2c46719426dd37df65c1e933c2310ad02b58017d -Author: Aaron Beavers -Date: Mon Sep 13 12:35:24 2021 -0400 - - Start adding test - -commit 07c709718e32f68a6cb3c826169e765301f06006 -Merge: e435c1309 d2a71c666 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 11:51:08 2021 -0400 - - Merge pull request #1316 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.40 - - Bump awscli from 1.20.38 to 1.20.40 in /tdrs-backend - -commit d2a71c6667996a571f3bceb22ec5c43880f3b158 -Merge: d5ffbd3e1 e435c1309 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 11:32:04 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.40 - -commit e435c1309a06a578a2a80b55dcf954d81a3be7d3 -Merge: a7c7b23d8 a3b521f6d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 11:31:28 2021 -0400 - - Merge pull request #1315 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.0 - - Bump @testing-library/react from 12.0.0 to 12.1.0 in /tdrs-frontend - -commit d5ffbd3e1aebc540f808ba1a2879b690df925963 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Sep 13 14:52:09 2021 +0000 - - Bump awscli from 1.20.38 to 1.20.40 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.38 to 1.20.40. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.38...1.20.40) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit a3b521f6dcbab8247d98b8713d495f1410a1974c -Merge: 879a03b7b a7c7b23d8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 10:46:22 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/react-12.1.0 - -commit a7c7b23d8a7025dca976f6a1c0dbe660dca1f692 -Merge: 75aa73d42 c2d8e2915 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 10:46:04 2021 -0400 - - Merge pull request #1312 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.0 - - Bump prettier from 2.3.2 to 2.4.0 in /tdrs-frontend - -commit 879a03b7be6c7051e0454ec53110759f9554930f -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Sep 13 14:30:11 2021 +0000 - - Bump @testing-library/react from 12.0.0 to 12.1.0 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.0.0 to 12.1.0. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v12.0.0...v12.1.0) - - --- - updated-dependencies: - - dependency-name: "@testing-library/react" - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 99f3ecb79bb08f38a6c28a021fb1dcd588f1c7c5 -Merge: 21e16f574 75aa73d42 -Author: Jorge Gonzalez -Date: Mon Sep 13 10:28:19 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/1257-login-button - -commit c2d8e29157726966a4b3dde02115e1ba4fef2a4c -Merge: 2f4a7ce96 75aa73d42 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 10:25:04 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/prettier-2.4.0 - -commit 75aa73d4217b80d3a5fd0356df66cffd356ada91 -Merge: 7ed1b4c5b 882024c7f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 10:24:55 2021 -0400 - - Merge pull request #1300 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-5.3.0 - - Bump react-router-dom from 5.2.0 to 5.3.0 in /tdrs-frontend - -commit 2f4a7ce96e3aabee49440cebb0cd9cd56cd6a117 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Sep 13 14:10:01 2021 +0000 - - Bump prettier from 2.3.2 to 2.4.0 in /tdrs-frontend - - Bumps [prettier](https://github.com/prettier/prettier) from 2.3.2 to 2.4.0. - - [Release notes](https://github.com/prettier/prettier/releases) - - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/prettier/compare/2.3.2...2.4.0) - - --- - updated-dependencies: - - dependency-name: prettier - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 882024c7f1b9b51faf41f43693f289209dd29559 -Merge: f22e49e1f 7ed1b4c5b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 10:05:11 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-router-dom-5.3.0 - -commit 7ed1b4c5b73383e81bebb0961d5517e244a2fc4f -Merge: 0ccc592df eb330ba77 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 10:05:04 2021 -0400 - - Merge pull request #1298 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-redux-7.2.5 - - Bump react-redux from 7.2.4 to 7.2.5 in /tdrs-frontend - -commit eb330ba779eb9ef3e16c206b82f14d47540c640d -Merge: e627491cf 0ccc592df -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Sep 13 09:36:02 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/react-redux-7.2.5 - -commit 21e16f574c10bf461c671d287c8accec43e2f26e -Author: Jorge Gonzalez -Date: Fri Sep 10 14:20:09 2021 -0400 - - fix: test coverage - -commit 3cefaf532b64832a68ab9338779a1c8ea32ee235 -Merge: d7a3d96ce 0ccc592df -Author: Jorge Gonzalez -Date: Fri Sep 10 14:12:06 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/1257-login-button - -commit c774ccde067752843eaee3edaa7e75f8f4123cc7 -Merge: e2655c101 0ccc592df -Author: John Willis -Date: Fri Sep 10 10:12:14 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/928-404-page - -commit 0ccc592dfba320efcaa7a2351f8210e049b136ad -Merge: fd234f6fb ef0f26e38 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Sep 10 09:14:43 2021 -0400 - - Merge pull request #1266 from raft-tech/devops/1260-circle-ci-api-v2 - - Issue 1260: Migrate Dev Deployments to Circle CI API V2 - -commit 763b2f38ddec4e6080c6df03c27c9403e8760143 -Author: John Willis -Date: Thu Sep 9 16:24:09 2021 -0400 - - Update docs/Sprint-Review/sprint-27-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit ef0f26e38c00b6971e9c4aa3644721f14343459c -Merge: 35c32294a fd234f6fb -Author: John Willis -Date: Thu Sep 9 15:03:03 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 - -commit 09f27803906ecf223a69622ee53d5cebfd2b9ac8 -Author: Aaron Beavers -Date: Thu Sep 9 14:20:38 2021 -0400 - - Update permissions - -commit 694f4fb4f62ea944b7b7298879ffe1d956df33b6 -Author: Aaron Beavers -Date: Thu Sep 9 14:20:12 2021 -0400 - - refactor ownership check call points - -commit 41b3185e336be95dab2fb899397612128cdd626a -Author: Aaron Beavers -Date: Thu Sep 9 14:13:58 2021 -0400 - - Refactor is_ calls - -commit 18a7c86583a27bb51f32cf48b4545dc807def97f -Merge: ccd6155cc 3447b340e -Author: Aaron Beavers -Date: Thu Sep 9 13:54:29 2021 -0400 - - Merge remote-tracking branch 'origin/backend/1052/regional-staff' into backend/1052/regional-staff - -commit 3447b340e6f7ff7cbcef013412a103e03d31b294 -Merge: efb47cb36 2aa1fa93e -Author: Aaron Beavers -Date: Thu Sep 9 13:54:05 2021 -0400 - - Merge remote-tracking branch 'origin/backend/1052/regional-staff' into backend/1052/regional-staff - -commit efb47cb362a91e7fb44708eb5cf3af2c86eb11bb -Merge: aff72fcb9 fd234f6fb -Author: Aaron Beavers -Date: Thu Sep 9 13:32:10 2021 -0400 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into backend/1052/regional-staff - merging tests - -commit fd234f6fbfaa929cee6f3c9f3cce83129f903e08 -Merge: abb7826d1 1e72ceb8b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 9 12:55:14 2021 -0400 - - Merge pull request #1228 from raft-tech/backend/1065/sysadmin-group - - [Backend] Add sys admin (1065) - -commit e2655c10183d28c483ff3b3c583073b936e48242 -Author: Jorge Gonzalez -Date: Thu Sep 9 12:26:09 2021 -0400 - - Fix typo - -commit 0cc0fa1bae31b683c3c80134b027c42f00c7b7c8 -Author: Jorge Gonzalez -Date: Thu Sep 9 12:15:12 2021 -0400 - - Remove invalid test - -commit 7c32639c0bbc9ca4c310a0040673f4425be1f04c -Author: Jorge Gonzalez -Date: Thu Sep 9 12:10:05 2021 -0400 - - Fix active nav item issue in certain cases - -commit e627491cfdfb8a15f4eddfa49460c587c1143737 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 9 15:55:23 2021 +0000 - - Bump react-redux from 7.2.4 to 7.2.5 in /tdrs-frontend - - Bumps [react-redux](https://github.com/reduxjs/react-redux) from 7.2.4 to 7.2.5. - - [Release notes](https://github.com/reduxjs/react-redux/releases) - - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) - - [Commits](https://github.com/reduxjs/react-redux/compare/v7.2.4...v7.2.5) - - --- - updated-dependencies: - - dependency-name: react-redux - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit f22e49e1f4d2d83420458c5de26bd9246ba9acdd -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 9 15:54:53 2021 +0000 - - Bump react-router-dom from 5.2.0 to 5.3.0 in /tdrs-frontend - - Bumps [react-router-dom](https://github.com/ReactTraining/react-router) from 5.2.0 to 5.3.0. - - [Release notes](https://github.com/ReactTraining/react-router/releases) - - [Changelog](https://github.com/remix-run/react-router/blob/main/CHANGELOG.md) - - [Commits](https://github.com/ReactTraining/react-router/compare/v5.2.0...v5.3.0) - - --- - updated-dependencies: - - dependency-name: react-router-dom - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 486d207294a3b8df38f37df5f295a14386b3faee -Merge: e232b4046 abb7826d1 -Author: Jorge Gonzalez -Date: Thu Sep 9 11:53:55 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/928-404-page - -commit e232b40466c5d403cdd76b3ad1a7ce5dba1f7ff4 -Author: Jorge Gonzalez -Date: Thu Sep 9 11:53:04 2021 -0400 - - Apply tabIndex tweak to 404-page header - -commit 1e72ceb8b08b654a9b400d948e00a03013b7f650 -Merge: 13922cbe0 abb7826d1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 9 11:50:48 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1065/sysadmin-group - -commit abb7826d161a3ec88d3e7352567d3f2dd0e65c57 -Merge: a175de73d 514045b26 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 9 11:50:22 2021 -0400 - - Merge pull request #1310 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.21.2 - - build(deps): bump axios from 0.21.1 to 0.21.2 in /tdrs-frontend - -commit 444f0a7686d9d01c8dae2c9db348339f30250865 -Author: abottoms-coder -Date: Thu Sep 9 11:48:36 2021 -0400 - - New ADR for resolving 1208 and 907. - -commit 514045b26dd75004f163f3f9f80d1e9aa5b6ca2d -Merge: e636e2c70 a175de73d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 9 11:32:56 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/axios-0.21.2 - -commit a175de73d058d0d132d2f59f8bdea2010aac439b -Merge: 27506fabc 63c0bd249 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 9 11:32:43 2021 -0400 - - Merge pull request #1264 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.12.1 - - Bump uswds from 2.12.0 to 2.12.1 in /tdrs-frontend - -commit ccd6155cc2a94bc84f627a55f40d35d99d5ab83a -Author: Aaron Beavers -Date: Thu Sep 9 11:30:01 2021 -0400 - - Add is_regional_staff cached property to User model - -commit 8763438f3087b6b37c9961df54000e7aadce3404 -Author: Aaron Beavers -Date: Thu Sep 9 11:28:39 2021 -0400 - - Update permissions given to regional staff - -commit 13922cbe03167aa6f06155b2dca0104ddd2ce137 -Merge: a54f9500b 27506fabc -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Sep 9 10:59:22 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1065/sysadmin-group - -commit 63c0bd249d93392a2ec665702e6744597e8b37e2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 9 13:22:37 2021 +0000 - - Bump uswds from 2.12.0 to 2.12.1 in /tdrs-frontend - - Bumps [uswds](https://github.com/uswds/uswds) from 2.12.0 to 2.12.1. - - [Release notes](https://github.com/uswds/uswds/releases) - - [Commits](https://github.com/uswds/uswds/compare/v2.12.0...v2.12.1) - - --- - updated-dependencies: - - dependency-name: uswds - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit e636e2c702bc502f792521e7b490eaaa4c758447 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 9 13:18:10 2021 +0000 - - build(deps): bump axios from 0.21.1 to 0.21.2 in /tdrs-frontend - - 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 - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 27506fabcd24d7f305b829b948ea865f735d1d56 -Merge: 4c6b6c4f4 cfebbc7f5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 9 09:13:27 2021 -0400 - - Merge pull request #1307 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.38 - - build(deps-dev): bump awscli from 1.20.30 to 1.20.38 in /tdrs-backend - -commit cfebbc7f57afd3addf8336bac21dde50ae995f65 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 9 06:22:23 2021 +0000 - - build(deps-dev): bump awscli from 1.20.30 to 1.20.38 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.30 to 1.20.38. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.30...1.20.38) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 2bd22ff3dd4222dfeef65d44448e854131fb8cc8 -Author: Aaron Beavers -Date: Wed Sep 8 14:36:44 2021 -0400 - - Import permission query helpers - -commit 20e250ca008aa2616baad84384294627d047be54 -Author: Jorge Gonzalez -Date: Wed Sep 8 13:52:07 2021 -0400 - - Remove phone number and add hhs email to contact us button - -commit d7a3d96cee4e6e02f3a4601cb13fd6dc3224ab2e -Author: Jorge Gonzalez -Date: Wed Sep 8 13:25:17 2021 -0400 - - fix(1257): Broken Sign In button on Home page - -commit 9d0ce5720ee37797694fdca36dd53f4d0fe143c7 -Merge: e17e62963 4c6b6c4f4 -Author: Jorge Gonzalez -Date: Wed Sep 8 09:50:52 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/928-404-page - -commit 35c32294aa3f2ade04da94d682ec05c6657d879d -Author: John Willis -Date: Tue Sep 7 16:59:50 2021 -0400 - - Remove unnecessary default for deploy-dev job - -commit d1df9a48492178c2a8b1ccd6b0f1ffcab48ea3c6 -Merge: 373d73d40 4c6b6c4f4 -Author: John Willis -Date: Tue Sep 7 16:56:52 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 - -commit 2aa1fa93ed1db07aaadae762ada0a6adbb79688d -Author: Aaron Beavers -Date: Tue Sep 7 14:08:13 2021 -0400 - - Deal with conflict chunk - -commit 4116a542f22dcda8c537841f7cee96964185214b -Author: Aaron Beavers -Date: Tue Sep 7 14:08:00 2021 -0400 - - Update migration for permissions - -commit 79e087a19be97a2c4b701c9b984cb92b803b59b2 -Author: Aaron Beavers -Date: Tue Sep 7 13:19:48 2021 -0400 - - Remove unnessisary changes to spacing - -commit 4c6b6c4f4c046a4d52013498fc4b261199ae76f3 -Merge: 5d05520ef a441efef3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Sep 7 12:36:12 2021 -0400 - - Merge pull request #1303 from raft-tech/hotfix/trufflehog - - Issue 1296: Fix Trufflehog scan - -commit ac03737f1eaebb3b3208e5e59252cfcf6e898b5f -Author: Aaron Beavers -Date: Tue Sep 7 11:09:08 2021 -0400 - - Update tdrs-backend/tdpservice/users/permissions.py - - Co-authored-by: John Willis - -commit a441efef3a81c8abac2c098b1b44f09b17f2970d -Merge: fc22e464a 5d05520ef -Author: Jorge Gonzalez -Date: Tue Sep 7 10:03:29 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/trufflehog - -commit fc22e464a65bca70ec4c8575a5f68e1a09ddd3e9 -Author: Jorge Gonzalez -Date: Tue Sep 7 09:40:37 2021 -0400 - - hotfix: fix trufflehog scans in upstream merges - -commit 5d05520efa8464c57c00b0dc30876d0cd1b7cb3a -Merge: 981d87cdc 5ebf67655 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Sep 3 13:00:42 2021 -0400 - - Merge pull request #1295 from raft-tech/hotfix/trufflehog - - Issue 1296 [hotfix]: fix trufflehog scans in upstream repos - -commit 5ebf67655fa2badf689660797abe09a00ee18817 -Author: Jorge Gonzalez -Date: Thu Sep 2 15:42:07 2021 -0400 - - hotfix: fix trufflehog scans in upstream repos - -commit 981d87cdca7be8a831b4554c059eb68e7d59a83d -Merge: 3a25764cb ece5377ec -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 14:26:34 2021 -0400 - - Merge pull request #1284 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-4.0.0 - - Bump eslint-plugin-prettier from 3.4.1 to 4.0.0 in /tdrs-frontend - -commit e17e62963287570a4f0ebe2a592ce50ad0dcb38f -Merge: 510d3ea14 3a25764cb -Author: Jorge Gonzalez -Date: Thu Sep 2 12:14:51 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/928-404-page - -commit ece5377ec017945808d295a7726852047506ba93 -Merge: ac13b293e 3a25764cb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 11:57:54 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-4.0.0 - -commit 3a25764cb946a53ad4ecc9e64798a96e8debf8d5 -Merge: 2168af7a4 6a659385d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 11:57:40 2021 -0400 - - Merge pull request #1279 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.1 - - Bump cypress from 8.3.0 to 8.3.1 in /tdrs-frontend - -commit 6a659385dcd590a7c8d7ceb97dffb5dd46772052 -Merge: 8f39b8b27 2168af7a4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 11:27:36 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.1 - -commit 2168af7a48064d8fcefaa88f1ea5844b7c58086f -Merge: a40810ca5 6c39eef7e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 11:27:05 2021 -0400 - - Merge pull request #1243 from raft-tech/devops/969-dynamic-jwt-tests - - Dynamic jwt_cert_key for unit tests - -commit ac13b293eef6777b68219b18f3c5b98880f778e5 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 2 15:13:29 2021 +0000 - - Bump eslint-plugin-prettier from 3.4.1 to 4.0.0 in /tdrs-frontend - - Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.4.1 to 4.0.0. - - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits/v4.0.0) - - --- - updated-dependencies: - - dependency-name: eslint-plugin-prettier - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 8f39b8b279126efa8cb09797093fa0cbfc6f2cb1 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Sep 2 15:13:21 2021 +0000 - - Bump cypress from 8.3.0 to 8.3.1 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 8.3.0 to 8.3.1. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v8.3.0...v8.3.1) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 6c39eef7e4b42c9460127b27b683af671e4ec3f3 -Merge: 8d4b05fed a40810ca5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 11:10:43 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests - -commit a40810ca5f27636a9503db9057d4e97b13cfc502 -Merge: ee8f75939 60bd7b847 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Sep 2 11:10:27 2021 -0400 - - Merge pull request #1234 from raft-tech/ci/966-trufflehog - - Issue 966: Add a Circle CI testing step that confirms no secret keys have been committed - -commit 60bd7b84701c7a6e0331228c223e689df08e88f5 -Merge: 0fbf7f5be ee8f75939 -Author: Jorge Gonzalez -Date: Thu Sep 2 10:44:23 2021 -0400 - - Merge branch 'raft-tdp-main' into ci/966-trufflehog - -commit 510d3ea1402f59557986985bb33a820f6ae5d923 -Author: Jorge Gonzalez -Date: Thu Sep 2 10:02:23 2021 -0400 - - feat: implement 404 page - -commit 8d4b05fed765d7e86ea4963423062ff40fd7f4f3 -Merge: da985804e ee8f75939 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Sep 1 16:43:08 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests - -commit ee8f75939de0ba8b1f0851363c98d9fbe9c171cf -Merge: 1f27023c9 9bb520aa5 -Author: Miles Reiter -Date: Wed Sep 1 15:56:02 2021 -0400 - - Merge pull request #1283 from raft-tech/round-7-docs - - Round 7 docs - -commit aff72fcb931d7a91b115e50b5bd91fc084c4d70a -Merge: e6ef64c26 1f27023c9 -Author: Aaron Beavers -Date: Wed Sep 1 12:48:13 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1052/regional-staff - -commit 9bb520aa582c85e478630f2b5209cc6d521995fe -Author: Miles Reiter -Date: Wed Sep 1 12:03:55 2021 -0400 - - Update 2021, Summer - Communicating Errors in TDP & Validations With Regional Staff.md - -commit eec56cba12e27c3dce0caebff57f7769e7e421a4 -Merge: 70d8930a3 1f27023c9 -Author: Miles Reiter -Date: Wed Sep 1 11:58:40 2021 -0400 - - Merge branch 'raft-tdp-main' into round-7-docs - -commit 70d8930a3d37070b28c0fd23cc57337d3c6281f8 -Author: Miles Reiter -Date: Wed Sep 1 11:54:05 2021 -0400 - - Update docs/User-Research/2021, Summer - Communicating Errors in TDP & Validations With Regional Staff.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit a54f9500bc2692fb4486b3ea009ebb5348b4817e -Author: Aaron Beavers -Date: Wed Sep 1 11:46:00 2021 -0400 - - Removed migrations - -commit da985804e15929eb5d77fa6e25fc8e055bdbff40 -Merge: d9ee150c1 1f27023c9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Sep 1 11:02:36 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests - -commit 1f27023c917cb7aefd90fee2a0a6d4e2c18ace9b -Merge: 07e47df3d fcfe0e581 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Sep 1 09:44:32 2021 -0400 - - Merge pull request #1244 from raft-tech/feat/1012-welcome-page - - Issue 1012: Implement welcome page for logged-in users - -commit fcfe0e58132230dbe405124d739f65c934be63fa -Merge: 57eaf62ce 07e47df3d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Sep 1 09:23:50 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1012-welcome-page - -commit 07e47df3d88d088307a9f3ada34e16eef8090011 -Merge: 7187b4a58 181f971d2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Sep 1 09:23:42 2021 -0400 - - Merge pull request #1250 from raft-tech/backend/900/dev-group - - Backend/900/dev group - -commit 0fbf7f5be2f2054ef90a12bc925b4668e0cd7425 -Author: Jorge Gonzalez -Date: Tue Aug 31 13:21:28 2021 -0400 - - ci: add step to scan for secrets with trufflehog - -commit 181f971d294e43486c1e34e354910bb950b5f2c9 -Merge: d172721f9 7187b4a58 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Aug 31 13:15:40 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/900/dev-group - -commit d172721f9ff98474e8c7767d77121142d9a233c8 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Aug 31 12:58:01 2021 -0400 - - Update tdrs-backend/tdpservice/settings/common.py - - undoing testing step. - -commit 373d73d40befe9eaa7490b2db02f71ab65e9d9ca -Merge: bf8b7e830 7187b4a58 -Author: John Willis -Date: Tue Aug 31 12:56:41 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 - -commit 7187b4a58ee04608547a97220e30ed9c80e96c9c -Merge: c5a6df168 5804dcb15 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 31 12:28:05 2021 -0400 - - Merge pull request #1253 from raft-tech/docs/808-pr-template-update - - PR template update - -commit ae09bb520814368e5113a6c5980f9d8517671bc4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Aug 31 12:00:08 2021 -0400 - - Update tdrs-backend/tdpservice/settings/common.py - - for testing - -commit d9ee150c102747ff36cba7403f0b0ca878280b38 -Merge: e7e7da4ea c5a6df168 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 31 11:48:31 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/969-dynamic-jwt-tests - -commit 4f9c8f90f76c080ea610bdd11c8136c1720ffad2 -Merge: cfe62ae30 c5a6df168 -Author: Aaron Beavers -Date: Tue Aug 31 11:46:35 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1065/sysadmin-group - -commit 5804dcb154ce997b7ab99ce3d50d05519c97dc91 -Merge: fbd270c70 c5a6df168 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 31 10:56:34 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/808-pr-template-update - -commit fbd270c707b8698a6cb0739170b2f7ce084970e8 -Author: abottoms-coder -Date: Tue Aug 31 10:56:12 2021 -0400 - - Fixing broken link - -commit e6ef64c263d1a697405747734b7814f769199e80 -Author: Aaron Beavers -Date: Tue Aug 31 09:26:26 2021 -0400 - - Update white space lint - -commit dd503449f07dfcb88f03c6539545c4ed3a64a045 -Author: Aaron Beavers -Date: Tue Aug 31 09:13:29 2021 -0400 - - Add logic for restriting regional staff to their region - -commit ff3a27d539414c6475c783b1465d44e00acb4cad -Merge: 5faf1b6c1 c5a6df168 -Author: Miles Reiter -Date: Mon Aug 30 18:25:16 2021 -0400 - - Merge branch 'raft-tdp-main' into round-7-docs - -commit 5faf1b6c16212acc0baf54c9e242532d388d81b7 -Author: Miles Reiter -Date: Mon Aug 30 18:21:28 2021 -0400 - - Fix/update linking - -commit 089e93975de11b4eb2ed9598779b5753e4862cd0 -Author: Miles Reiter -Date: Mon Aug 30 18:14:05 2021 -0400 - - Create 2021, Summer - Communicating Errors in TDP & Validations With Regional Staff.md - -commit bf8b7e830681bfc30e1bed418c04c7b65b9e947e -Merge: 8870c560a c5a6df168 -Author: John Willis -Date: Mon Aug 30 16:53:37 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1260-circle-ci-api-v2 - -commit 8870c560a73151857fab25939ceaa1d184d88076 -Author: John Willis -Date: Mon Aug 30 16:52:37 2021 -0400 - - Updated documentation in deploy-on-label and restored previously commented out status checks - -commit 62765db535537efeeca97637c65db082a412f817 -Author: John Willis -Date: Mon Aug 30 16:35:29 2021 -0400 - - Removed now unused jobs - -commit 803b0e0890019070b2b72052873034baa77c7c37 -Author: John Willis -Date: Mon Aug 30 16:28:46 2021 -0400 - - the quote is in the right place now... - -commit 57eaf62ce4ace708ca022b2ed882ba519ef80260 -Merge: 08a99b79a c5a6df168 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Aug 30 16:27:52 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1012-welcome-page - -commit 6da505adf92dd4904badf1ea3cef334f93205b0e -Author: John Willis -Date: Mon Aug 30 16:26:51 2021 -0400 - - Add missing quotes - -commit 89211372a3814b18f28aaedc3e622b3a12853782 -Merge: 7f002a543 c5a6df168 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 30 16:26:14 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/900/dev-group - -commit 669a3666e762a52f7e7925003b3837d81576a228 -Author: John Willis -Date: Mon Aug 30 16:24:12 2021 -0400 - - fix variable not getting replaced - -commit c5a6df168cfd54a83e361c4b85dbbd2b2eb11e95 -Merge: a294aab50 78d359c44 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 30 16:22:05 2021 -0400 - - Merge pull request #1230 from raft-tech/backend/901-model-permissions - - Issue 901: Remove usage of is_superuser in favor of Model and object level permissions - -commit d778ef13e1a33776603ba2016d215fa674330cec -Author: John Willis -Date: Mon Aug 30 16:20:33 2021 -0400 - - Testing single deploy-dev job with parameters - -commit 38cda9c9ac62cb0dfd3286f282e35962bfb4b8ba -Author: John Willis -Date: Mon Aug 30 16:11:44 2021 -0400 - - Testing nesting conditionals - -commit 7c3f226b763077a3ff448a5d384f83b2b64dcb95 -Author: John Willis -Date: Mon Aug 30 16:08:38 2021 -0400 - - Testing deploy env in job name - -commit 3519910846d011d9f1f6d79c89f887e37e31f211 -Author: John Willis -Date: Mon Aug 30 15:58:32 2021 -0400 - - Testing different API token - -commit 7230bd09b2ddb689aea8efcfede4bd5e17d704f3 -Author: Miles Reiter -Date: Mon Aug 30 15:54:55 2021 -0400 - - Adds Readme changes - -commit 08a99b79aa956d57fe95d224f2404ae24db7163b -Merge: 078c5a51e a294aab50 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Aug 30 15:46:24 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1012-welcome-page - -commit 78d359c44c76fcfa784cddb8d45c6b92d8377a12 -Merge: 26d2e18fe a294aab50 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Aug 30 09:32:14 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 9ae8e39ba2ec85170b68c5b2ebe1044ea9d2776e -Author: abottoms-coder -Date: Fri Aug 27 17:05:20 2021 -0400 - - Updating this to closes leverages zenhub's auto-linking feature so now all PRs will come pre-linked to their parent ticket - - https://help.zenhub.com/support/solutions/articles/43000615530-zenhub-issue-and-pr-connections - -commit a294aab50cd2ba6f4264b3ef996df0e1e92710c0 -Merge: 1a92f0c3c 6551e6d6d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Aug 27 15:33:15 2021 -0400 - - Merge pull request #1268 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.30 - - Bump awscli from 1.20.28 to 1.20.30 in /tdrs-backend - -commit e7e7da4eaa3049e27e333b566e5425b84f40bdbf -Author: abottoms-coder -Date: Fri Aug 27 13:27:59 2021 -0400 - - Updating per nits from PR - -commit 8fffdfa66ab2852e034a5ec89b393524721c1d76 -Author: abottoms-coder -Date: Fri Aug 27 13:18:06 2021 -0400 - - Updates to documentation per the tabletop discussion - -commit 6551e6d6d4843b01142a439194f06cdbae506b28 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Aug 27 06:22:59 2021 +0000 - - Bump awscli from 1.20.28 to 1.20.30 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.28 to 1.20.30. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.28...1.20.30) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 26d2e18fe102112368fc4e4b72b80d24084aec4a -Merge: 0e7d66d8a 1a92f0c3c -Author: John Willis -Date: Thu Aug 26 15:27:33 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 0e7d66d8ae2c255cd91a7091e1d204786d09892b -Author: John Willis -Date: Thu Aug 26 15:26:59 2021 -0400 - - Added version to Data Files admin - -commit 1a92f0c3c6716e58a0046a6b480d9abb3155d914 -Merge: 3d91f5396 23f84c357 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 26 12:00:50 2021 -0400 - - Merge pull request #1220 from raft-tech/backend/795-postgres-volume - - Issue 795: Persist database contents over docker restarts - -commit 23f84c35738982c6b4d5a1d2707c1cb610261aef -Merge: 86f18c464 3d91f5396 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 26 10:28:29 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit 3d91f539640db70068b76efd5b7e4c2314f0f60a -Merge: 0239d0e47 60b75e71f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 26 10:16:15 2021 -0400 - - Merge pull request #1265 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.0 - - Bump cypress from 8.2.0 to 8.3.0 in /tdrs-frontend - -commit 60b75e71f16ece6867b1be30e6133184e287db2d -Merge: be44b4028 0239d0e47 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 26 09:47:39 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.3.0 - -commit 0239d0e47da20519ceaf5340507dd6dd0781a095 -Merge: 29ff5f7f6 b262fa798 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 26 09:47:06 2021 -0400 - - Merge pull request #1255 from raft-tech/hotfix/1254-csp-fix - - Issue 1254 (hotfix): DAC Styling changed by CSP header changes - -commit 6351f1548fa14fc3fc8e91d5c08343b6bde00fb9 -Author: John Willis -Date: Wed Aug 25 17:42:15 2021 -0400 - - test simpler payload - -commit a0685d946af4241588d26ce4cb8972967de62294 -Author: John Willis -Date: Wed Aug 25 17:39:56 2021 -0400 - - Version mismatch again... - -commit 39ece3ea3dcab75df9e430c7ff5978ce0c868b46 -Author: John Willis -Date: Wed Aug 25 17:38:10 2021 -0400 - - Use exact version number, since latest tag isn't set up for circleci-trigger-action - -commit 576f8b6bc04670c115619fcb1da78a2ed7e01165 -Author: John Willis -Date: Wed Aug 25 17:36:40 2021 -0400 - - Temporarily commented out preventing deployments until PR checks pass for quicker testing - -commit 9b33b6a90b32ec8e7bb648f2fde1b6b7af88ccd0 -Author: John Willis -Date: Wed Aug 25 17:29:45 2021 -0400 - - WIP: Use alternate GH action to trigger pipeline build with CircleCI API v2 - -commit 214bcf332b46751786515545c86356665d15a883 -Merge: 67a92bd32 066218f02 -Author: John Willis -Date: Wed Aug 25 14:43:46 2021 -0400 - - Merge remote-tracking branch 'origin/hotfix/1254-csp-fix' into backend/901-model-permissions - -commit b262fa798ac35defc9b75e5b8c4bcb1905164366 -Merge: 066218f02 29ff5f7f6 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 14:30:35 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix - -commit be44b40286c7fb0d57a1611a1458c24c0483ee4c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Aug 25 16:32:53 2021 +0000 - - Bump cypress from 8.2.0 to 8.3.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 8.2.0 to 8.3.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v8.2.0...v8.3.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 29ff5f7f63f7565ba3ec02bb523854e85056f266 -Merge: 5c32d78e4 6fefde1bd -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 12:28:16 2021 -0400 - - Merge pull request #1263 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-3.4.1 - - Bump eslint-plugin-prettier from 3.4.0 to 3.4.1 in /tdrs-frontend - -commit 6fefde1bd4d7b2f8a3fadf4b871830e6c97153ae -Merge: 47681f9e4 5c32d78e4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 12:11:26 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-plugin-prettier-3.4.1 - -commit 5c32d78e4711f644969b4b34629343f4a82d419a -Merge: c49b74d49 ef5dd6119 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 12:11:17 2021 -0400 - - Merge pull request #1262 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.2.1 - - Bump concurrently from 6.2.0 to 6.2.1 in /tdrs-frontend - -commit 47681f9e4eb4ccf28b3e9596432ccd8d73703072 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Aug 25 15:57:45 2021 +0000 - - Bump eslint-plugin-prettier from 3.4.0 to 3.4.1 in /tdrs-frontend - - Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.4.0 to 3.4.1. - - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits) - - --- - updated-dependencies: - - dependency-name: eslint-plugin-prettier - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit ef5dd6119b18a4aa7d74f120f3d154c55d4e5396 -Merge: d36e1d077 c49b74d49 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 11:54:03 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/concurrently-6.2.1 - -commit 066218f02ed83874cfca3860285c5e9c63ae6908 -Merge: f516720b1 c49b74d49 -Author: Jorge Gonzalez -Date: Wed Aug 25 11:53:15 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix - -commit c49b74d497f04738f18fabee28ef99e64223ae36 -Merge: b5278e780 6cfb62ddb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 11:53:14 2021 -0400 - - Merge pull request #1225 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 - - Bump @fortawesome/fontawesome-svg-core from 1.2.35 to 1.2.36 in /tdrs-frontend - -commit d36e1d077f23b401adbdf95744dee96fe3a0b590 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Aug 25 15:42:15 2021 +0000 - - Bump concurrently from 6.2.0 to 6.2.1 in /tdrs-frontend - - Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 6.2.0 to 6.2.1. - - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - - [Commits](https://github.com/open-cli-tools/concurrently/compare/v6.2.0...v6.2.1) - - --- - updated-dependencies: - - dependency-name: concurrently - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 6cfb62ddb02136185921bc1f1b85cdbd620eb715 -Merge: 4e621a46b b5278e780 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 11:38:29 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 - -commit b5278e7804e1f64e5a79d4574f5d327e5d8b337d -Merge: 69effd0ce 6f056f034 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 11:37:28 2021 -0400 - - Merge pull request #1261 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.28 - - Bump awscli from 1.20.27 to 1.20.28 in /tdrs-backend - -commit cfe62ae30b83d4d3c3466bc0eef92e4dda757c70 -Author: Aaron Beavers -Date: Wed Aug 25 11:30:26 2021 -0400 - - remove zap doc - -commit 6f056f034a832a2020a7484768e0a5c90c482e68 -Merge: 3576715bf 69effd0ce -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 11:05:50 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.28 - -commit 69effd0ceabf066daca626f827db9a27635c1a2f -Merge: 0c5539c7a 023f28e7f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 11:05:30 2021 -0400 - - Merge pull request #1206 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-5.15.4 - - Bump @fortawesome/free-solid-svg-icons from 5.15.3 to 5.15.4 in /tdrs-frontend - -commit f516720b1b2f78e0fd322e830f4be073c3478be2 -Merge: 2d6633557 0c5539c7a -Author: Jorge Gonzalez -Date: Wed Aug 25 10:59:43 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix - -commit 3576715bfa6326559f884fad8b913572b8d399ed -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Aug 25 14:59:29 2021 +0000 - - Bump awscli from 1.20.27 to 1.20.28 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.27 to 1.20.28. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.27...1.20.28) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 2d66335578c839b41576b245dd510bba3e00a05d -Author: Jorge Gonzalez -Date: Wed Aug 25 09:41:52 2021 -0400 - - fix: add s3 resources to csp header - -commit 023f28e7fa701d827a29442f11c853fa465f8273 -Merge: 236cd7ba0 0c5539c7a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 10:45:42 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/free-solid-svg-icons-5.15.4 - -commit 0c5539c7ad479b1be623801bf7a0749247d45940 -Merge: 62fd5e292 c85706486 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 10:45:35 2021 -0400 - - Merge pull request #1189 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/file-type-16.5.3 - - Bump file-type from 16.5.2 to 16.5.3 in /tdrs-frontend - -commit 236cd7ba0429f4bd208808019705aab2ec366082 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Aug 25 14:34:26 2021 +0000 - - Bump @fortawesome/free-solid-svg-icons in /tdrs-frontend - - Bumps [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) from 5.15.3 to 5.15.4. - - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/5.15.3...5.15.4) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/free-solid-svg-icons" - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit c857064864a35fe108e0a846386f34142d6bb4d7 -Merge: dc4a8d054 62fd5e292 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 10:29:30 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/file-type-16.5.3 - -commit 62fd5e292007deef1840de0d32bdb306c9a38598 -Merge: 93e9b4895 5544ea493 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 10:29:23 2021 -0400 - - Merge pull request #1188 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/redux-4.1.1 - - Bump redux from 4.1.0 to 4.1.1 in /tdrs-frontend - -commit c2c03395c658e6e5e9a9cd22b12d1c28950f54b4 -Merge: 605c74464 32c178935 -Author: Aaron Beavers -Date: Wed Aug 25 10:23:00 2021 -0400 - - Merge remote-tracking branch 'origin/hotfix/1254-csp-fix' into backend/1052/regional-staff - -commit 32c178935d1dc0731ce063d9e37937e0b0d0a29d -Merge: 09e68b2eb 93e9b4895 -Author: Jorge Gonzalez -Date: Wed Aug 25 10:20:48 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix - -commit dc4a8d0549eda7bfb96d80043b324be50a1abee7 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Aug 25 14:16:31 2021 +0000 - - Bump file-type from 16.5.2 to 16.5.3 in /tdrs-frontend - - Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.5.2 to 16.5.3. - - [Release notes](https://github.com/sindresorhus/file-type/releases) - - [Commits](https://github.com/sindresorhus/file-type/compare/v16.5.2...v16.5.3) - - --- - updated-dependencies: - - dependency-name: file-type - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 5544ea49322b13daa82b61be9c39cd53e3172afc -Merge: bdaeaf7e4 93e9b4895 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 10:10:03 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/redux-4.1.1 - -commit 93e9b4895c50786b0bf18e158ea8d2e99c8891de -Merge: c7d84cad5 a993107ae -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 10:09:57 2021 -0400 - - Merge pull request #1187 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.15 - - Bump @fortawesome/react-fontawesome from 0.1.14 to 0.1.15 in /tdrs-frontend - -commit a993107ae55e59ef32d6d8a08e830ce6c0ec581b -Merge: 38132d3c4 c7d84cad5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 09:51:30 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/react-fontawesome-0.1.15 - -commit c7d84cad5c7480b2d11270def1ac5652fb7db441 -Merge: 7dcb0bd6a 9791c9213 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 09:51:22 2021 -0400 - - Merge pull request #1148 from raft-tech/amilash-patch-1 - - update sprint-schedule.md - -commit 09e68b2eb2b149de6be9b41580c12f7e988faba3 -Author: Jorge Gonzalez -Date: Wed Aug 25 09:41:52 2021 -0400 - - fix: add s3 resources to csp header - -commit 9791c9213655a827a1c84bdca3f62fefde1a564b -Merge: 8c28ac9f1 7dcb0bd6a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 25 09:36:40 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit 089aac6e133302f7d5e1c0b464cc1a4c7c2217c5 -Author: abottoms-coder -Date: Wed Aug 25 09:35:38 2021 -0400 - - Update as requested in PR - -commit 67a92bd3246c16d6e6fcdd9e3a53d897f35404ab -Author: John Willis -Date: Tue Aug 24 16:14:21 2021 -0400 - - Added tests to ensure Groups have the correct permissions after migration - -commit 06fdb56b04900e88a1f297b9fb20a2e2aabbb0f3 -Merge: 559feb122 7dcb0bd6a -Author: John Willis -Date: Tue Aug 24 15:46:27 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1254-csp-fix - -commit 605c74464d76e06ee99b03c02538063d316ac451 -Merge: 7dcb0bd6a d9725a13d -Author: Aaron Beavers -Date: Tue Aug 24 11:45:02 2021 -0400 - - Merge remote-tracking branch 'origin/backend/901-model-permissions' into backend/1052/regional-staff - -commit d9725a13dc41e32cac40053ed883ca8a8ffbedf8 -Merge: b0b66e615 7dcb0bd6a -Author: John Willis -Date: Tue Aug 24 10:58:25 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 7f002a543b0ff36d126b2f1af79009c1a2c879a2 -Author: Aaron Beavers -Date: Tue Aug 24 10:27:45 2021 -0400 - - Update tdrs-backend/tdpservice/users/migrations/0021_add_dev_group.py - - Co-authored-by: John Willis - -commit 4e621a46be3ae929e96ff66378ac90dc084262e4 -Merge: aef6099e2 7dcb0bd6a -Author: John Willis -Date: Tue Aug 24 10:19:08 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 - -commit 078c5a51e0283f663530fc71dcca874b87c846c6 -Author: Jorge Gonzalez -Date: Tue Aug 24 10:11:10 2021 -0400 - - refactor: generic signOut util - -commit 45312ae879d945fce413c6453b580bf78cd1aa55 -Author: Jorge Gonzalez -Date: Tue Aug 24 09:45:23 2021 -0400 - - Update tdrs-frontend/src/components/Welcome/Welcome.jsx - - Co-authored-by: John Willis - -commit d579105ab20444ad21cf53f0b336c29678275271 -Author: Jorge Gonzalez -Date: Tue Aug 24 09:44:24 2021 -0400 - - fix: tweak button styles - -commit 3e8153f75afffaad5132cd025195495a6f267c9e -Merge: 7009bb70e 7dcb0bd6a -Author: Jorge Gonzalez -Date: Tue Aug 24 09:39:00 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/1012-welcome-page - -commit 38132d3c4e46b352642ed201d5e9d0e5bb9dadae -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Aug 24 13:14:49 2021 +0000 - - Bump @fortawesome/react-fontawesome in /tdrs-frontend - - Bumps [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) from 0.1.14 to 0.1.15. - - [Release notes](https://github.com/FortAwesome/react-fontawesome/releases) - - [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/react-fontawesome/compare/0.1.14...0.1.15) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/react-fontawesome" - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit bdaeaf7e4fd7ce36fc9a428b3f57dcfbdac77c1e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Aug 24 13:14:07 2021 +0000 - - Bump redux from 4.1.0 to 4.1.1 in /tdrs-frontend - - Bumps [redux](https://github.com/reduxjs/redux) from 4.1.0 to 4.1.1. - - [Release notes](https://github.com/reduxjs/redux/releases) - - [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md) - - [Commits](https://github.com/reduxjs/redux/compare/v4.1.0...v4.1.1) - - --- - updated-dependencies: - - dependency-name: redux - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 7dcb0bd6acb416ac2119a82031d4fad0ec6f3800 -Merge: 50b23220a 76eddf611 -Author: John Willis -Date: Tue Aug 24 09:10:15 2021 -0400 - - Merge pull request #1256 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.27 - - Bump awscli from 1.20.25 to 1.20.27 in /tdrs-backend - -commit 8c28ac9f188fd538c6d8025c226e45fa6a52ec71 -Merge: 592b0d8c4 50b23220a -Author: John Willis -Date: Tue Aug 24 09:09:45 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit 76eddf6113729c8dd974cbd783ab318af1c41c3f -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Aug 24 06:14:59 2021 +0000 - - Bump awscli from 1.20.25 to 1.20.27 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.25 to 1.20.27. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.25...1.20.27) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 7009bb70e1db939999ed64fc67bb4c45518041de -Author: Jorge Gonzalez -Date: Mon Aug 23 14:29:52 2021 -0400 - - feat: Implement welcome page for logged-in users - -commit 559feb122ca773284e5ae44a6abd476e952b55a7 -Author: Jorge Gonzalez -Date: Mon Aug 23 12:22:19 2021 -0400 - - fix: csp style-src and form-action headers breaking DAC resources - -commit b0b66e6159a0e7efe8cac07f5fe552dbb4efaebd -Author: John Willis -Date: Mon Aug 23 12:00:11 2021 -0400 - - Code coverage - -commit caf2463664ecb5737ba34af1691d8f99b1b86ebe -Author: John Willis -Date: Mon Aug 23 11:02:17 2021 -0400 - - Code coverage - -commit ba8432f7964e6ac9b63621820d92cb20e04b7f37 -Author: abottoms-coder -Date: Mon Aug 23 10:46:48 2021 -0400 - - Well, symlinks no longer work right in git and qasp is missing some headers found in the previous PR template. Have also added significant updates to fulfill the ACs of 808 - -commit 3f69ef6855919246b86c66c8697c5d34ef422063 -Author: abottoms-coder -Date: Mon Aug 23 10:07:07 2021 -0400 - - Symlink for PR template - -commit a21bfc54649e4ece170fb7b0ab4d40fa3b2fe794 -Merge: be82f2e98 50b23220a -Author: John Willis -Date: Mon Aug 23 09:18:33 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 50b23220a2a25873954bf32d19d13a8db4cced5e -Merge: aed92bfde f881f867c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 23 09:18:26 2021 -0400 - - Merge pull request #1137 from raft-tech/feat/1053-dac-a11y - - Issue 1053: Update django-admin-508 for a11y fixes - -commit 86f18c4642800f0c40a7487cfc31dc6a8f51f44c -Merge: 0bb8ee6a2 aed92bfde -Author: John Willis -Date: Mon Aug 23 09:15:18 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit 904500951d52f1c7feb384529466a413d0924b19 -Author: Aaron Beavers -Date: Fri Aug 20 15:30:33 2021 -0400 - - Update migration - -commit 4ab34c545fcc367a35d119efd38ebe6af3cbd8d8 -Author: Aaron Beavers -Date: Fri Aug 20 15:25:39 2021 -0400 - - Update failing test - -commit 0ad75912eba5804615e9c3bf3ac90faa8cfb9954 -Author: Aaron Beavers -Date: Fri Aug 20 13:03:22 2021 -0400 - - Add migration to create developer only when setting is true - -commit 1bb4d950d1f38e9d7a96e0b9c72832af771ad274 -Author: Aaron Beavers -Date: Fri Aug 20 13:02:56 2021 -0400 - - Add developer group flag to settings - -commit f881f867c297796303ddc8ecdf8d7eae6abea09c -Author: Jorge Gonzalez -Date: Fri Aug 20 11:32:07 2021 -0400 - - feat(a11y): Update django-admin-508 for django-admin fixes - -commit be82f2e9800545e06a1f2149386443bda33e59c5 -Merge: b656f8b87 aed92bfde -Author: John Willis -Date: Thu Aug 19 16:30:08 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit b656f8b87ba68b2babcddf10c198f8364a29dbb0 -Author: John Willis -Date: Thu Aug 19 16:25:24 2021 -0400 - - Refactored the rest of the permission clasess to be backed by Django Model Permissions and implement custom object_permission where needed - -commit aed92bfde7ab51efcf3ab180514bc78143b4e091 -Merge: d35110ef2 01f91b57b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 19 16:19:22 2021 -0400 - - Merge pull request #1222 from raft-tech/backend/1192/set-csp-header - - Backend/1192/set csp header - -commit 01f91b57ba8cd17e1848e9e7635dd2a758eccffa -Merge: a99b44043 d35110ef2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 19 16:05:05 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1192/set-csp-header - -commit d35110ef262a49abf7995f92c9ddfd4c9a18542d -Merge: 7f463d189 eeacfd62a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 19 16:04:57 2021 -0400 - - Merge pull request #1236 from raft-tech/hotfix/1235-pdfs-showing-modified - - Gitattributes update for silencing "modified" pdfs - -commit eeacfd62a20106a2923888ed1f8f5656f61a373a -Merge: cc67e132c 7f463d189 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 19 11:44:01 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1235-pdfs-showing-modified - -commit a99b44043f893a23d41390eae84fadf90f75a46f -Merge: a01914046 7f463d189 -Author: Aaron Beavers -Date: Thu Aug 19 10:25:49 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1192/set-csp-header - -commit 7f463d189daf9bf237d605146407c9b856917840 -Merge: 9aea06b06 1cbb8b276 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 19 10:04:10 2021 -0400 - - Merge pull request #1184 from raft-tech/amilash-patch-2 - - create sprint-26-summary.md - -commit 1cbb8b2768b56771020f820f66010e8f80d567ef -Merge: c14f640a5 9aea06b06 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 19 09:49:43 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-2 - -commit 2905f0452755198ba90fc94090417dca711d47bb -Author: John Willis -Date: Wed Aug 18 17:45:09 2021 -0400 - - Updated DataFilePermissions to use DjangoModelPermissions; fixed issue where migrations wouldn't assign permissions on a clean database - -commit 0bb8ee6a26e1133abcb37d70685b24d7c3be4c16 -Merge: 446ed0601 9aea06b06 -Author: John Willis -Date: Wed Aug 18 14:46:23 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit b6b1ac6647a0d8c87690314ac8db2bfe6bd31c6d -Merge: 4040edee8 9aea06b06 -Author: John Willis -Date: Wed Aug 18 14:40:49 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 9aea06b06a9b6ceaa56bcfb54dcc4509ac7e153d -Merge: 17b02304f 2ac3b1797 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 18 12:15:20 2021 -0400 - - Merge pull request #1227 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 - - Bump awscli from 1.20.18 to 1.20.21 in /tdrs-backend - -commit c14f640a56a22a4d8b42f8464c9788cddbfa1de6 -Merge: 581fbfdc3 17b02304f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 18 11:39:12 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-2 - -commit 2ac3b179704a4fdcb57ac315a1c9e8b775edb659 -Merge: a2fc62207 17b02304f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Aug 18 11:38:47 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 - -commit 0106b8e2b293044987dcdcfb3c0561aa7c61627c -Author: abottoms-coder -Date: Wed Aug 18 11:36:31 2021 -0400 - - Flake8 updates, thanks CircleCI - -commit b25d67a9bfdd271a5247a52fd803e8d3073397ed -Author: abottoms-coder -Date: Wed Aug 18 10:57:46 2021 -0400 - - Updates from flake8 styling and minor improvements - -commit 38f32568e97de290a878084d50eb61e849aee57f -Author: abottoms-coder -Date: Wed Aug 18 09:45:36 2021 -0400 - - Tests complete successfully with new private_key - -commit 4040edee88bbce75c7acccc028761236f16d0805 -Author: John Willis -Date: Tue Aug 17 17:51:40 2021 -0400 - - Fixed migration for OFA Admin permissions and added migrations for Data Analyst and OFA System Admin - -commit 3d0625e6556b1f8790695543a3af63126cc53070 -Author: Angela Milash -Date: Tue Aug 17 11:24:32 2021 -0700 - - Update sprint-27-summary.md - - updated summary description to be more explicit. - -commit 581fbfdc3b554a5d2ded6142715bc76bf3a08b98 -Author: Angela Milash -Date: Tue Aug 17 10:58:23 2021 -0700 - - Update docs/Sprint-Review/sprint-26-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 2085bcabe3bc139c84c8c0cd7274ad329c20ef3d -Author: Angela Milash -Date: Tue Aug 17 10:55:43 2021 -0700 - - create sprint-27-summary.md - - Ready for review - -commit cc67e132c6f50f816dcdd9768bb7deb1fd09450a -Merge: 0d5850fd7 17b02304f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Aug 17 12:34:17 2021 -0400 - - Merge branch 'raft-tdp-main' into hotfix/1235-pdfs-showing-modified - -commit 446ed060142707b11652adf31095f83e928af1af -Merge: 5cb2f5810 17b02304f -Author: John Willis -Date: Tue Aug 17 12:24:38 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit 1581768a6e31e93d01aad6b6b35685492fc56e5c -Author: John Willis -Date: Tue Aug 17 12:22:15 2021 -0400 - - Fixed improper arguments to permissions.add by spreading queryset - -commit 336c0f103d8a1194c19b5685af873af27585a461 -Merge: 8cfb59e23 17b02304f -Author: John Willis -Date: Tue Aug 17 12:21:07 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 17b02304f8477ab62769ae0837be67344799c05a -Merge: c36edb9d2 1606c1ca7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 17 12:02:05 2021 -0400 - - Merge pull request #1160 from raft-tech/backend/755/rename_reports - - Backend/755/rename reports - -commit a2fc622075ee890929a23603d86b8ec4512a97a5 -Merge: c89f70016 c36edb9d2 -Author: John Willis -Date: Tue Aug 17 11:56:37 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 - -commit 5cb2f5810392ad3cfbfa7f2c94b81fad41c042b9 -Merge: 296f04c8f c36edb9d2 -Author: John Willis -Date: Tue Aug 17 11:55:35 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit 1606c1ca74961598d1406b00e7666306c04de144 -Merge: a8895b7a5 c36edb9d2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 17 10:46:30 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/755/rename_reports - -commit c36edb9d2a3f5861728b50f5c217b38135f7d966 -Merge: 55289dbf5 3ae296375 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 17 10:46:21 2021 -0400 - - Merge pull request #1179 from raft-tech/backend/970-django-settings-cg-envs - - Issue 970: Refactor environment variable usage to utilize Django settings - -commit 0d5850fd73e0a78f2b0453c0223fb51848fa2788 -Author: abottoms-coder -Date: Tue Aug 17 10:45:52 2021 -0400 - - Changing to ignore pdf changes as this has been causing issues of late - -commit 8cfb59e233f1c1d3188e369799b25f19ac42d55e -Merge: 28a0289ee 55289dbf5 -Author: John Willis -Date: Tue Aug 17 10:29:44 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/901-model-permissions - -commit 3ae29637565247251f17442f9001dc8a3919089a -Merge: ea26a8f1d 55289dbf5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 17 10:25:33 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs - -commit 28a0289ee0385d5783f036b2d9b95c211b589520 -Author: John Willis -Date: Mon Aug 16 17:10:34 2021 -0400 - - Added migration to add permissions to OFA Admin Group - -commit a01914046fb8f31d318ec740fc017f26a202c549 -Author: Aaron Beavers -Date: Mon Aug 16 13:40:43 2021 -0400 - - Add comment to explain future work - -commit f43aad18efb786f9d3dd1911ec4867d71ea33a64 -Author: Aaron Beavers -Date: Mon Aug 16 13:40:19 2021 -0400 - - Add original static back - -commit 0676f00b9fbe520e95989b5e91336c6694228468 -Author: Aaron Beavers -Date: Mon Aug 16 13:40:00 2021 -0400 - - Import settings - -commit a8895b7a55cfa36f4e4ed75109a7a57a7876bb8c -Author: Aaron Beavers -Date: Mon Aug 16 13:18:01 2021 -0400 - - Update tdrs-backend/tdpservice/data_files/migrations/0009_update_log_entry_content_type.py - - Co-authored-by: John Willis - -commit ea26a8f1dd5c916d86239353111414a46c20a498 -Author: John Willis -Date: Mon Aug 16 12:30:58 2021 -0400 - - Fix decryption issues when DJANGO_SECRET_KEY is not set due to regenerated values in settings - -commit b973d49a6685f60536285fa3c28b204c6bd87a87 -Author: Aaron Beavers -Date: Mon Aug 16 10:46:44 2021 -0400 - - Remove work comment - -commit 5491eb93d3172f59c8d6543d1f02fa8a8c917350 -Merge: c5bd868ea 55289dbf5 -Author: Aaron Beavers -Date: Mon Aug 16 10:36:04 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/1192/set-csp-header - -commit c89f70016e28d7f342d16ea2d7fb172abc49e4d4 -Merge: 350fae8af 55289dbf5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 16 09:55:32 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.21 - -commit 55289dbf5fa2381eede096b03287ebd3aba8a587 -Merge: dd309a5d8 5fcc88b5c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 16 09:55:12 2021 -0400 - - Merge pull request #1205 from raft-tech/fix-line-endings-zap-doc - - Fix line ending inconsistencies for Zap Scan HTML Report markdown - -commit 5fcc88b5c40e41dcd869366f60771fe2538fc5c7 -Merge: 431a09270 dd309a5d8 -Author: John Willis -Date: Mon Aug 16 09:12:07 2021 -0400 - - Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc - -commit 0a3f5fc3243701d7a767068916a778a31ba303de -Merge: 52debeb77 dd309a5d8 -Author: John Willis -Date: Mon Aug 16 09:12:04 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs - -commit 296f04c8fffde64f66eb21e8d69512d559b5fc01 -Merge: c70897414 dd309a5d8 -Author: John Willis -Date: Mon Aug 16 09:12:00 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit 350fae8aff6a606470adb58c34161a4a5b3671fc -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Aug 16 06:28:37 2021 +0000 - - Bump awscli from 1.20.18 to 1.20.21 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.18 to 1.20.21. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.18...1.20.21) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit de98f626471ea1a6aec3f17d21b4e1056a14f604 -Author: John Willis -Date: Fri Aug 13 16:58:36 2021 -0400 - - WIP: Added migration to remove is_superuser flag from all users except initial super user configured via environment variable - -commit f1173b2c92c91ee4fd94a4881be92bded36dd716 -Author: abottoms-coder -Date: Fri Aug 13 16:40:03 2021 -0400 - - ensuring these tutorial steps are saved - -commit 415613b9fd1dfcd9e238851ca8e205bacc9125fb -Author: abottoms-coder -Date: Fri Aug 13 08:38:26 2021 -0400 - - 11/11 of the TestLogin tests pass using the new fixtures and methods - -commit bc3578dd7a75a082b7134e8aabe473acc0b757cf -Author: abottoms-coder -Date: Thu Aug 12 17:34:26 2021 -0400 - - Have a formula for refactoring that seems to be working well. 5/11 done - -commit c5bd868ea78f462437896e40127eb8a507998acd -Author: Aaron Beavers -Date: Thu Aug 12 12:02:30 2021 -0400 - - Delete index.html - -commit aef6099e28ba9778119edec6e43f6aa7539a0d57 -Merge: bd4df67f3 dd309a5d8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 12 11:38:56 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/fortawesome/fontawesome-svg-core-1.2.36 - -commit dd309a5d8b8faf6c5ab9cc300c4526c7ca64d1ba -Merge: 22f800c3f 4ae9e8de9 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 12 11:38:25 2021 -0400 - - Merge pull request #1142 from raft-tech/feat/907-csp-xss - - Issue 907: Add client-side Content Security Policy to mitigate XSS - -commit 4ae9e8de93122590214e88b30b84fcfcb7936fc7 -Merge: a3df27be0 22f800c3f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 12 11:01:45 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/907-csp-xss - -commit bd4df67f35d7ed375baa6a0f738569ed8d599163 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Aug 12 14:49:06 2021 +0000 - - Bump @fortawesome/fontawesome-svg-core in /tdrs-frontend - - Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 1.2.35 to 1.2.36. - - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md) - - [Commits](https://github.com/FortAwesome/Font-Awesome/commits) - - --- - updated-dependencies: - - dependency-name: "@fortawesome/fontawesome-svg-core" - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 22f800c3fa346ba62ba6e6c46db5fe89dee5d540 -Merge: cef6a474c 7cd580a44 -Author: John Willis -Date: Thu Aug 12 10:43:18 2021 -0400 - - Merge pull request #1203 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.2.0 - - Bump cypress from 8.0.0 to 8.2.0 in /tdrs-frontend - -commit a3df27be0435680e0b151771bae7953463f874b2 -Merge: 7552bbdb9 cef6a474c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Aug 12 08:28:44 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/907-csp-xss - -commit c11da42352fb051dd8a66ed2e74f6c05a79b6fbd -Author: abottoms-coder -Date: Wed Aug 11 17:43:30 2021 -0400 - - Stopping point for today, reading docs on fixtures/marks -- may need to rewrite tests as parametrize() is for iteration on a data list - -commit 7cd580a44cbc961c1e787afda6403d99d9b8cac8 -Merge: 7fbd1d32e cef6a474c -Author: John Willis -Date: Wed Aug 11 15:52:10 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/cypress-8.2.0 - -commit cef6a474cefaf269fc89cb6826e92fef3f4eef8e -Merge: dd26582ea adf27e9b5 -Author: John Willis -Date: Wed Aug 11 15:51:59 2021 -0400 - - Merge pull request #1219 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.18 - - Bump awscli from 1.20.16 to 1.20.18 in /tdrs-backend - -commit f3c0bf93ab8e9c8a19473672d35a068218648735 -Merge: 6e2e90106 dd26582ea -Author: Aaron Beavers -Date: Wed Aug 11 14:44:18 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/1192/set-csp-header - -commit 6e2e9010636ccc5d9a86aade0d10eae45930196b -Author: Aaron Beavers -Date: Wed Aug 11 13:23:23 2021 -0400 - - remove style src from csp settings - -commit 3cb9164d46bcd0c836ca755d2504148e7ba0f235 -Author: Aaron Beavers -Date: Wed Aug 11 12:15:05 2021 -0400 - - Add space after class doc string - -commit 8ddf5ecde28c33f26d695e2ce9d1500fa2d7d3e1 -Author: Aaron Beavers -Date: Wed Aug 11 11:53:01 2021 -0400 - - Add docstring for index template - -commit 7552bbdb9918eb51446090279dea7bac0717abcd -Merge: 7e28b12fd dd26582ea -Author: John Willis -Date: Wed Aug 11 13:33:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/907-csp-xss - -commit feb0d153e49e75b21f42c4d9c9bafc0dff48e4c7 -Author: abottoms-coder -Date: Wed Aug 11 11:53:41 2021 -0400 - - Split up fixture into multiple and have two successful tests - - Will start propogating changes to other tests and see what refactoring is needed - -commit d6f3b2dabbe8551c6e32dc2ba8e11a2b0700815e -Author: Aaron Beavers -Date: Wed Aug 11 11:41:10 2021 -0400 - - Add index html template - -commit 2579001386e5bac0256a4400a2c33571e6a03d97 -Author: Aaron Beavers -Date: Wed Aug 11 10:52:52 2021 -0400 - - remove unused import - -commit 76a2e1300c50cc13bc9b3f96a7eb64aaeb5dab78 -Merge: 8fb4e659a dd26582ea -Author: Aaron Beavers -Date: Wed Aug 11 10:16:45 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/755/rename_reports - -commit 8fb4e659a41e70753c3b2efe6812174090621fc5 -Author: Aaron Beavers -Date: Wed Aug 11 09:41:01 2021 -0400 - - Make log entry content type migration null safe - -commit 52debeb772b75bc116f2681b3fbd0e771a3c0309 -Merge: 880ade384 dd26582ea -Author: John Willis -Date: Tue Aug 10 16:30:59 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs - -commit 431a092708535d14b64be4e90556034a1ebb83d7 -Merge: c3a655154 dd26582ea -Author: John Willis -Date: Tue Aug 10 16:30:42 2021 -0400 - - Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc - -commit c708974148d4ded42e50aa588ded08d6174745f6 -Merge: 241b7592d dd26582ea -Author: John Willis -Date: Tue Aug 10 16:28:16 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/795-postgres-volume - -commit 241b7592d549c945df0da7f3384f27cd3034fe3e -Author: John Willis -Date: Tue Aug 10 16:28:09 2021 -0400 - - update README - -commit 8be35d2822d91f3300fdf788bbe6888a352d35bd -Author: John Willis -Date: Tue Aug 10 16:12:27 2021 -0400 - - Issue 795: Persist database contents over docker restarts - -commit 4bdfb19515c82fe8324e061e74a9ac68ddad1a38 -Author: Aaron Beavers -Date: Tue Aug 10 15:48:41 2021 -0400 - - Add new migration for log entries content type - -commit 0fcd13c8b776b6bce410d9ada33d4317cde41829 -Author: Aaron Beavers -Date: Tue Aug 10 15:48:23 2021 -0400 - - Remove extra line - -commit adf27e9b5b91eb4bc54873fc9ea7309463b8850e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Aug 10 19:36:56 2021 +0000 - - Bump awscli from 1.20.16 to 1.20.18 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.16 to 1.20.18. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.16...1.20.18) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 7fbd1d32edf59c4c3076310dd1cd1623c34d32ab -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Aug 10 19:34:02 2021 +0000 - - Bump cypress from 8.0.0 to 8.2.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 8.0.0 to 8.2.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v8.0.0...v8.2.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit dd26582eac29b28222b92d737746c95bd9a70a51 -Merge: 2be644dc2 ff1f1407a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 10 15:30:39 2021 -0400 - - Merge pull request #1080 from raft-tech/devops/1044/pally-auth - - Devops/1044/pally auth - -commit ff1f1407aac807fa67ff87de7180dc66d2a39c15 -Merge: c195bca51 2be644dc2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 10 15:14:55 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1044/pally-auth - -commit 2be644dc2bac5e1267ee01f2e51142dbc72880fe -Merge: 95901472a faaaaa666 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Aug 10 12:09:31 2021 -0400 - - Merge pull request #1167 from raft-tech/feat/965-git-secrets-hooks - - Issue 965: Automatic secrets checking - -commit b692eb0ae91bc4addbac435a4570245def0b547f -Merge: f677d69e0 95901472a -Author: Aaron Beavers -Date: Tue Aug 10 11:56:43 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/755/rename_reports - -commit a2fc21be970e03446ff8e6afbcad8e08ef5b4622 -Author: Aaron Beavers -Date: Tue Aug 10 11:18:07 2021 -0400 - - Add index view - -commit b0b86a605d24a4fb9bb67dac15ff98bc5d0d08d7 -Merge: ac1bd96a7 880ade384 -Author: abottoms-coder -Date: Mon Aug 9 17:44:51 2021 -0400 - - Merge for #970 and starting over with smaller fixtures - -commit 880ade384283a19ee87932525869b5ed0fef99ce -Author: John Willis -Date: Mon Aug 9 13:16:25 2021 -0400 - - Enforce DJANGO_SU_NAME requirement for local dev - -commit ac1bd96a7eb99c1ae865f1da4a2ad39686532fc0 -Author: abottoms-coder -Date: Mon Aug 9 12:53:42 2021 -0400 - - First commit, still need to propagate to relevant functions but believe this works with some of the tests - -commit 2bd426479e65ee5c5ce78e28dc3e5ae08547000d -Author: John Willis -Date: Mon Aug 9 11:28:10 2021 -0400 - - Added test case for JWT_KEY not set - -commit faaaaa6663bb6c62b416612adaecb7815c453962 -Merge: 60708b743 95901472a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 9 10:21:48 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks - -commit 0babad353b4d05081a47b1690279ca8d27d866c0 -Author: Aaron Beavers -Date: Mon Aug 9 10:14:44 2021 -0400 - - WIP - -commit 60708b7439c91dbb34684b11faca4a5de30eaf8b -Author: abottoms-coder -Date: Mon Aug 9 09:59:48 2021 -0400 - - Update per PR feedback - -commit 1ed2642efdc23b497c303cf6d5d4948f7ba19829 -Merge: 5bd2bb4fb 95901472a -Author: John Willis -Date: Mon Aug 9 09:45:03 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs - -commit c3a6551547e2fd2325333563f4888c1cca332172 -Merge: 222047b34 95901472a -Author: John Willis -Date: Mon Aug 9 09:40:55 2021 -0400 - - Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc - -commit 95901472ac5fa0fe21d4bc5af54ed228ee03dece -Merge: 06ab6011b 53889d0eb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 9 09:32:19 2021 -0400 - - Merge pull request #1171 from raft-tech/dependabot-dev-deps-adr-update - - Updated ADRs to reflect process for merging devDependencies - -commit 53889d0eb9d4175bf8fc336bbe463afdcb441169 -Merge: 2d7a34a4b 06ab6011b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 9 09:12:10 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-dev-deps-adr-update - -commit 06ab6011bcfea23cc620ec6e7e73250048835c2a -Merge: 829257b9c f6e1cd935 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Aug 9 09:11:32 2021 -0400 - - Merge pull request #1211 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.16 - - Bump awscli from 1.20.15 to 1.20.16 in /tdrs-backend - -commit f6e1cd9355b448527ccfbc78e795d7a72bdb6714 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Aug 9 06:40:18 2021 +0000 - - Bump awscli from 1.20.15 to 1.20.16 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.15 to 1.20.16. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.15...1.20.16) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 547d68a7707e490e84ad838eb527398d7815ab23 -Merge: 0753eb3fd 829257b9c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Aug 6 14:40:08 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks - -commit 829257b9c4f40c2d426e7a2b029b69ebd02a4177 -Merge: 4b296fac7 51870c36e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Aug 6 14:22:15 2021 -0400 - - Merge pull request #1207 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.15 - - Bump awscli from 1.20.9 to 1.20.15 in /tdrs-backend - -commit 7e28b12fd3a493af3a433ca69c8c254d9e2e5f2d -Merge: afa5d240a 4b296fac7 -Author: Jorge Gonzalez -Date: Fri Aug 6 13:45:32 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/907-csp-xss - -commit 0753eb3fd7424c6084a63ff36722302d368061db -Author: abottoms-coder -Date: Fri Aug 6 11:57:29 2021 -0400 - - Re-learning circleCI syntax - -commit 861784999a79aae0e00249174d22792d815183bd -Author: abottoms-coder -Date: Fri Aug 6 11:55:16 2021 -0400 - - Changing up CI architecture for this check per PR request - -commit a76044f8203b104d2fd256da2a71520686195981 -Merge: cbb6fdd92 4b296fac7 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Aug 6 10:20:14 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks - -commit 51870c36ef9af8a0208311166a224a27ac870f5b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Aug 6 06:22:03 2021 +0000 - - Bump awscli from 1.20.9 to 1.20.15 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.9 to 1.20.15. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.9...1.20.15) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 5bd2bb4fbe03d462efe018c981b5ffb07ff95b48 -Author: John Willis -Date: Thu Aug 5 16:06:23 2021 -0400 - - Fix linter errors - -commit a7bb61112b9cf7b624892139ed09be89dc64b5ed -Author: John Willis -Date: Thu Aug 5 16:05:25 2021 -0400 - - Remove all direct usage of env vars in favor of Django settings - -commit f677d69e0163181c21b543dee7a6596ac86fa2b9 -Author: Aaron Beavers -Date: Thu Aug 5 15:24:07 2021 -0400 - - Update report urls frontend - -commit 34c9506b0ee16c649b3d144adcf55fab4f07bcce -Author: Aaron Beavers -Date: Thu Aug 5 15:23:39 2021 -0400 - - Add auto generated migration file - -commit fe1704ab686c244d3496a454f75cb79ceaf4a202 -Author: Angela Milash -Date: Thu Aug 5 12:12:00 2021 -0700 - - Update docs/Sprint-Review/sprint-26-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 2de279a3d7a078c432e89bf24f76b84f259df81c -Author: Angela Milash -Date: Thu Aug 5 12:11:54 2021 -0700 - - Update docs/Sprint-Review/sprint-26-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 592b0d8c45d27059c25d8e9bfb892bfe8ba7cf14 -Author: Angela Milash -Date: Thu Aug 5 12:10:58 2021 -0700 - - update sprint-schedule.md - - updated with new times - -commit 041f3cba1a7ec274d3b6cfaebbe36c4fece062ab -Author: Angela Milash -Date: Thu Aug 5 12:06:37 2021 -0700 - - Update docs/How-We-Work/team-charter/sprint-schedule.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 35b2b1296142db3fe3270a33b403bb6f6cfd9418 -Merge: b55015d23 4b296fac7 -Author: John Willis -Date: Thu Aug 5 13:47:52 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/970-django-settings-cg-envs - -commit 222047b3464624273eb5dcc5b7b31c1561b8da6f -Merge: f80f93c5f 4b296fac7 -Author: John Willis -Date: Thu Aug 5 13:47:46 2021 -0400 - - Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc - -commit 2d7a34a4b0fce44fd1971ac017b6cd0a11a99944 -Merge: ca24fd2ed 4b296fac7 -Author: John Willis -Date: Thu Aug 5 13:38:03 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-dev-deps-adr-update - -commit f758be5d12d99fefdc2d45ee600dbae4bb0072e7 -Merge: 968accea4 4b296fac7 -Author: Aaron Beavers -Date: Thu Aug 5 12:29:08 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/755/rename_reports - -commit 4b296fac79d5a34db4a631763c6abbcfffb48bb0 -Merge: f6e23ee11 f4c220994 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 5 11:41:15 2021 -0400 - - Merge pull request #1172 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-7.32.0 - - Bump eslint from 7.31.0 to 7.32.0 in /tdrs-frontend - -commit ca24fd2edf244c1181b2c37403819b99a51af78f -Merge: 467e52910 f6e23ee11 -Author: John Willis -Date: Thu Aug 5 10:53:46 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-dev-deps-adr-update - -commit f80f93c5f405311b11eb437175eeb16fe2567499 -Merge: ef3e9a7f2 f6e23ee11 -Author: John Willis -Date: Thu Aug 5 10:51:05 2021 -0400 - - Merge branch 'raft-tdp-main' into fix-line-endings-zap-doc - -commit f4c2209942b5f07124ca44b6436f98c18ab15f68 -Merge: 8241ff79d f6e23ee11 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 5 10:44:03 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/eslint-7.32.0 - -commit f6e23ee11d6760b7dbb2a5af2640c739e9db55ed -Merge: 5bb6d9a47 30c57ef51 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Aug 5 10:43:55 2021 -0400 - - Merge pull request #1151 from raft-tech/devops/967-django-secret-key-generation - - Issue 967: Dynamically generate DJANGO_SECRET_KEY for initial deployments - -commit ef3e9a7f2dd644b02249c0a6867248a2c7fecd48 -Author: John Willis -Date: Thu Aug 5 10:26:20 2021 -0400 - - Fix line ending inconsistencies for Zap Scan HTML Report markdown - -commit c195bca5166859ef15eaff2cd392278f5a522f97 -Author: Aaron Beavers -Date: Wed Aug 4 23:02:10 2021 -0400 - - Ignore untestable mirage logic - -commit afa5d240aa2bb00791daccc72d16d6c9896624e6 -Author: Jorge Gonzalez -Date: Wed Aug 4 18:26:00 2021 -0400 - - Remove cloud.gov from circleci nginx - -commit a60f40c607a8ea328de003b1c76a3b80d2d9fd78 -Author: Jorge Gonzalez -Date: Wed Aug 4 18:24:13 2021 -0400 - - Add INLINE_RUNTIME_CHUNK to .env - -commit 7f499c5c32e57b732173df57d2e443cfa3256b10 -Author: Jorge Gonzalez -Date: Wed Aug 4 15:03:08 2021 -0400 - - Add various fixes to CSP headers - -commit 791b6462c7c9baf0105e40b478e1b41d77e8cd05 -Author: Aaron Beavers -Date: Wed Aug 4 11:48:38 2021 -0400 - - Update yarn lock file - -commit 968accea455d72b935284b059562d9681dbf0e0c -Author: Aaron Beavers -Date: Wed Aug 4 10:21:19 2021 -0400 - - rename report to data files in merged model file - -commit 6222433b3a8ed5f12c0ca145d80a1d24896455c8 -Merge: 2b240e642 5bb6d9a47 -Author: Aaron Beavers -Date: Wed Aug 4 10:13:01 2021 -0400 - - Merge with issues remote-tracking branch 'origin/raft-tdp-main' into backend/755/rename_reports - -commit 2b240e642fc43161e119575bb0cf7142e0d4c074 -Author: Aaron Beavers -Date: Wed Aug 4 10:06:56 2021 -0400 - - Update tdrs-backend/tdpservice/conftest.py - - Co-authored-by: John Willis - -commit eb47ebf07fd33a9b12dff1a5a204b8497e5fd28b -Author: Jorge Gonzalez -Date: Wed Aug 4 10:02:46 2021 -0400 - - fix: Add client-side CSP policy to nginx - -commit cbb6fdd923f71d96f24ce01b6b3ec2465f0071f5 -Merge: 3d3b82c47 5bb6d9a47 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Aug 4 09:36:11 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks - -commit e9319c7e9c9e733e82a3e47db13cf8cf86a291ae -Merge: 691e2dc2b 5bb6d9a47 -Author: Aaron Beavers -Date: Tue Aug 3 22:50:19 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1044/pally-auth - -commit 0b94d9b5b7c8a6ee7834f0195b8cd3bfea569d78 -Author: Angela Milash -Date: Tue Aug 3 10:40:10 2021 -0700 - - Update docs/Sprint-Review/sprint-26-summary.md - - You beat me to it, thanks Alex - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 0c50409dcb7712d5d60be714883cf1e6c6eb7444 -Author: Angela Milash -Date: Tue Aug 3 10:22:05 2021 -0700 - - create sprint-26-summary.md - - create sprint-26-summary.md and populate based on status as of 08032021 10:21am PST - -commit b55015d230567b844d7eb924bb28e438080cca60 -Author: John Willis -Date: Mon Aug 2 16:51:43 2021 -0400 - - WIP: Migrating environment variable usage to settings - -commit 30c57ef51aa3104b65224db523e1588e7fe272b4 -Merge: 2d41b2c70 5bb6d9a47 -Author: John Willis -Date: Mon Aug 2 15:58:52 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation - -commit 2d41b2c708c7ff692e407d239aa32c8bad0ad631 -Author: John Willis -Date: Mon Aug 2 15:57:45 2021 -0400 - - Prevent parse error on nested JSON - -commit 8241ff79de8c176dc9b43517fe4d42944aed22ef -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Aug 2 06:15:45 2021 +0000 - - Bump eslint from 7.31.0 to 7.32.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 7.31.0 to 7.32.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v7.31.0...v7.32.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 467e52910761b6e03543961ec78b36aaf8e28a13 -Author: John Willis -Date: Fri Jul 30 17:02:03 2021 -0400 - - Update docs/Architecture Decision Record/016-dependabot-dependency-management.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit b5735ff268d486a9ea5c58be824b0b403152da30 -Author: John Willis -Date: Fri Jul 30 14:26:43 2021 -0400 - - Updated ADRs to reflect process for merging devDependencies - -commit 5bb6d9a471f3606f4d2d54a6610f15ee3180da21 -Merge: e238031c0 e20c64858 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 30 10:12:17 2021 -0400 - - Merge pull request #1164 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 - - Bump awscli from 1.20.3 to 1.20.9 in /tdrs-backend - -commit 3d3b82c47f219ec7c95bf2a3faf5092bcf20a3a9 -Merge: 2a1d4b925 e238031c0 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 15:45:35 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/965-git-secrets-hooks - -commit 2a1d4b92592328c0d3e4044deb0b9eaab5de61a0 -Author: abottoms-coder -Date: Thu Jul 29 15:39:54 2021 -0400 - - Minor tweak to config file - -commit 9c45973df9d54ecd12502c9729e522ae6adbf401 -Author: Aaron Beavers -Date: Thu Jul 29 15:20:46 2021 -0400 - - clean up long lines - -commit 11018c5ffbe8f8d1adc99ae2e522b2ef23a7fc9a -Author: Aaron Beavers -Date: Thu Jul 29 15:09:57 2021 -0400 - - update migrations - -commit b78db4bc5f794a8e2cfef9f8c73639309f31e4e9 -Author: abottoms-coder -Date: Thu Jul 29 15:00:42 2021 -0400 - - Whoops, missed the config with the regexs - -commit 7f10150fa9e9d361473d00231e12da0ce83654c1 -Author: abottoms-coder -Date: Thu Jul 29 14:53:42 2021 -0400 - - Minor tweaks to script for verbosity - -commit eaab3c31b3ccae9c2777897e9e060723814e69b3 -Author: abottoms-coder -Date: Thu Jul 29 14:44:07 2021 -0400 - - Accidently removed a line from this file - -commit 28f4281ebea1aee9037d77ef9b45ca9ae72913dd -Author: abottoms-coder -Date: Thu Jul 29 14:36:50 2021 -0400 - - Trying tweak to path for clone - -commit 8f695ae49d6eb74eb9d0ec33ab08318657098575 -Author: abottoms-coder -Date: Thu Jul 29 14:32:08 2021 -0400 - - After digging, it's just a shellscript, no make necessary? Also trying to move it to tmp - -commit 70feb4eae11e792adef9a7c98977ab864cc6a8ff -Author: abottoms-coder -Date: Thu Jul 29 13:58:31 2021 -0400 - - There should be a better way to test CI...anyway, hoping we can bypass the previous permissions block - -commit d57746606a5e2678f52d4b6d3503ce30a2397d7d -Author: abottoms-coder -Date: Thu Jul 29 13:53:54 2021 -0400 - - If clause was wrong, checking that install now works - -commit e54e44cd78076a4ac1236866cd09c3961a097d2a -Author: abottoms-coder -Date: Thu Jul 29 13:50:06 2021 -0400 - - CI couldn't find gs bin via alias, hoping a correct name will fix + some debugging. - -commit 21e8e89f3e275f5c01e930711de11b59a6daef9b -Author: Aaron Beavers -Date: Thu Jul 29 13:33:51 2021 -0400 - - Get passing tests - -commit e20c64858a70fee0734dae9036e18be9cfeed6d3 -Merge: aceb2b660 e238031c0 -Author: John Willis -Date: Thu Jul 29 13:21:16 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 - -commit 1116716e6741147852cf9b4309999121af37642c -Author: abottoms-coder -Date: Thu Jul 29 12:13:42 2021 -0400 - - Adding CircleCI automation checks after testing - -commit 437339ca5a32aac32116a6ef32f391f7baad59d8 -Merge: 705cd51a7 e238031c0 -Author: John Willis -Date: Thu Jul 29 11:52:53 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation - -commit e238031c06ab689354551edaae8c4cc0c4380d58 -Merge: eb28b367f 34e77c79e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:50:35 2021 -0400 - - Merge pull request #1031 from raft-tech/adp/usermgmt-updates - - Issue 962: update user mgmt docs - -commit 705cd51a7b86aeaaeafdcf27050664f71cc51369 -Merge: b22b39123 eb28b367f -Author: John Willis -Date: Thu Jul 29 11:40:31 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation - -commit aceb2b66086596462c8f35d2daef7bbbf67c5e13 -Merge: b02f7b61d eb28b367f -Author: John Willis -Date: Thu Jul 29 11:38:22 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 - -commit 34e77c79ef4cc48c9d6c128c31c2d114b1a30fdf -Merge: 0b2bc0ce3 eb28b367f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:31:52 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/usermgmt-updates - -commit eb28b367f52f798df1b831d911022e61db1c419c -Merge: c3c33ac6b a641a1c72 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:31:36 2021 -0400 - - Merge pull request #1123 from raft-tech/backend/971-s3-deployed-settings - - Issue 971: Fix S3 settings usage for deployed environments - -commit b02f7b61d18a7c97b2bf14ce9a322896ab68a64c -Merge: fbaa7d67e c3c33ac6b -Author: John Willis -Date: Thu Jul 29 11:24:22 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/awscli-1.20.9 - -commit a641a1c72cbdb837af48ad590d670f046f38ebdd -Merge: de8b6839f c3c33ac6b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:16:59 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings - -commit c3c33ac6bcede8651dfff8a7ccc8aba8f35f4e0a -Merge: f53256fb2 a5de66b15 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:16:32 2021 -0400 - - Merge pull request #1103 from raft-tech/devops/1032/scheduled-owasp - - Devops/1032/scheduled owasp - -commit a5de66b15d746ba4e8573e30dd4d102440b7bed4 -Merge: 00503b016 f53256fb2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:01:37 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp - -commit f53256fb288e1022a0096053a7a6eb3072d69d0f -Merge: 636e72184 eb75daf61 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 29 11:00:26 2021 -0400 - - Merge pull request #1149 from raft-tech/devops/968-codecov-validation - - Issue 968: Codecov Uploader update and validation - -commit de8b6839f25adcd9cd32f0db21871a7cac44fa4f -Author: John Willis -Date: Thu Jul 29 10:28:29 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 1481606cec91d02b08e31f3a0a6c12f70db722ba -Author: abottoms-coder -Date: Thu Jul 29 09:56:40 2021 -0400 - - Testing again - -commit 00503b01634688d377b7800f614e07a459b09896 -Author: Aaron Beavers -Date: Thu Jul 29 09:54:30 2021 -0400 - - Remove old zap scan scripts - -commit c4382f3eee72922715af6f7974c086f7ff2be24b -Author: Aaron Beavers -Date: Thu Jul 29 09:53:40 2021 -0400 - - Remove unnessisary code - -commit a51072a25ab11b7b652545fb30e3be487589c2c1 -Author: Aaron Beavers -Date: Thu Jul 29 09:16:56 2021 -0400 - - Update .circleci/config.yml - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 3441c2d718c6b661a6e79ec9887143d24b626940 -Author: Aaron Beavers -Date: Thu Jul 29 09:16:24 2021 -0400 - - Update .circleci/config.yml - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit fbaa7d67e5e7e8e8fd11f6b7ed878a1b7dc0c25e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jul 29 06:22:34 2021 +0000 - - Bump awscli from 1.20.3 to 1.20.9 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.3 to 1.20.9. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.3...1.20.9) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 0a07972801488786449bb47dec3b5cdacfbc102b -Author: Aaron Beavers -Date: Wed Jul 28 16:28:07 2021 -0400 - - Create new model and begin debugging tests - -commit 6ffd8fc9b443fcfcff1a9ed475804b66a271a8ec -Author: Aaron Beavers -Date: Wed Jul 28 13:46:39 2021 -0400 - - Auto stash before merge of "backend/755/rename_reports" and "origin/backend/755/rename_reports" - -commit 275bea09d3b5a0ca04ee5c9553253185dffb06a3 -Merge: 9a5cd7039 9e2b293d2 -Author: Aaron Beavers -Date: Wed Jul 28 13:45:51 2021 -0400 - - Merge remote-tracking branch 'origin/backend/755/rename_reports' into backend/755/rename_reports - -commit def843d4ed1a6fc147bbce49b88982f6b8095e08 -Merge: ec622fdef 636e72184 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jul 28 13:38:55 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp - -commit 9a5cd70391a1a228500202a263bb61e80349625a -Author: Aaron Beavers -Date: Wed Jul 28 13:35:05 2021 -0400 - - Replace all migration dependency references to reports - -commit 9e2b293d2397da40b7de44cc41fd0f42c69c5588 -Author: Aaron Beavers -Date: Wed Jul 28 12:38:52 2021 -0400 - - Add dependencies to migration - -commit 8af869de94432156769787e107a4051acde183a0 -Author: Aaron Beavers -Date: Wed Jul 28 12:38:38 2021 -0400 - - Rename migration files that contain references to report - -commit df3cd49b8f846b727f2d2fc3cb776fbf96d4d30f -Author: Aaron Beavers -Date: Wed Jul 28 12:27:45 2021 -0400 - - Replace all migration dependency references to reports - -commit c93299f3aff5e2b881df7f5a66f76c4979d018fb -Author: Aaron Beavers -Date: Wed Jul 28 12:26:57 2021 -0400 - - Replace all migration model name references. - -commit 2719ac4635d73abe5c0e9962828fd23c7b7aa8bb -Author: Aaron Beavers -Date: Wed Jul 28 12:26:06 2021 -0400 - - Replace all instances of report with data file in non migration files - -commit eb75daf61a775f8a49884016ea30099cf12d7ef4 -Author: John Willis -Date: Wed Jul 28 12:04:22 2021 -0400 - - Remove now unnecessary if block - -commit 82eea30e09d8d54754243c4eb9e9da9aec3c40df -Merge: 655814cfc 636e72184 -Author: John Willis -Date: Wed Jul 28 11:58:14 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/968-codecov-validation - -commit b22b391239c0dc2b77be44d2bce2c842652966c5 -Merge: dc9a6a0d5 636e72184 -Author: John Willis -Date: Wed Jul 28 11:57:57 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/967-django-secret-key-generation - -commit 5654c0b3a5dd7e4db200a1f47533c20780957423 -Merge: 5c495ca12 636e72184 -Author: John Willis -Date: Wed Jul 28 11:57:47 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings - -commit 655814cfc65f6222476cffb10700e2e6ec585e4f -Author: Jorge Gonzalez -Date: Wed Jul 28 11:35:59 2021 -0400 - - Remove branch name check from current flag step - -commit 636e72184857f74650d061e4b9bc42fec0d90b9f -Merge: 1d5aaeb17 eeded0d1d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jul 28 10:37:29 2021 -0400 - - Merge pull request #1145 from raft-tech/adp/stt_updates - - Updated STT attributes - -commit ec622fdef7cb2a3f6090c34ed406fce09ee3b74b -Merge: 3b2c290fb 1d5aaeb17 -Author: Aaron Beavers -Date: Wed Jul 28 09:53:51 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1032/scheduled-owasp - -commit eeded0d1def273e65fd609417029c9dd6efbc4a7 -Merge: fc8af6c7b 1d5aaeb17 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jul 28 09:42:01 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/stt_updates - -commit 3b2c290fbbe4e6bdd506378ef9a073c9da0141e3 -Author: Aaron Beavers -Date: Wed Jul 28 09:30:40 2021 -0400 - - add docker compose step for frontend - -commit f24ed58be97fd1b5890604339085c3b720e827db -Author: Aaron Beavers -Date: Wed Jul 28 08:37:46 2021 -0400 - - Fix syntax error - -commit b35e457fb72b511523fa43eb137dede9b5e5c3d6 -Author: Aaron Beavers -Date: Wed Jul 28 08:29:52 2021 -0400 - - Add more fine grain control of variables - -commit 0b2bc0ce3b8ada4ea70c6b4e8f887da946592600 -Merge: e892636d6 1d5aaeb17 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 17:11:24 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/usermgmt-updates - -commit e892636d67ec60826dabc2fdfeef00bd2e43718a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 17:11:17 2021 -0400 - - Update docs/Technical-Documentation/user_role_management.md - -commit 6161d112277a9ab1c4e6d63b08a82a645e4cae33 -Author: Aaron Beavers -Date: Tue Jul 27 16:19:59 2021 -0400 - - rename typo in arguement - -commit bbc3dddde51e834ca7cb0a4db52fd8efc972bfd7 -Author: Aaron Beavers -Date: Tue Jul 27 16:06:06 2021 -0400 - - fix permissions minor tweaks, working script - -commit 491a213d6f0b3ebe1f4fcb7a176a4b27f9e45589 -Author: Aaron Beavers -Date: Tue Jul 27 15:03:41 2021 -0400 - - Add extension to zap scanner call - -commit b9ffe90bd02ce7a0c5704507b86c53974fc48701 -Author: Aaron Beavers -Date: Tue Jul 27 14:45:59 2021 -0400 - - update all calls to zap-scanner to use more general script - -commit 1d5aaeb17c263833e7073653705cfafd7790a023 -Merge: b541ab1e7 be4194c7f -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jul 27 14:43:06 2021 -0400 - - Merge pull request #1061 from raft-tech/feat/834-upload-download-connect-real-endpoints - - Issue 834: Connect frontend to real API endpoints for download & upload - -commit 32465d2f57d275d1035c49ddb23d5fbe707fc72d -Author: Aaron Beavers -Date: Tue Jul 27 14:40:54 2021 -0400 - - update paths - -commit 172055d609d30f51155cd4c44519ea43a2a04f01 -Author: Aaron Beavers -Date: Tue Jul 27 13:12:55 2021 -0400 - - Be more specific in description of target_dir location - -commit cd0b0e5e73a24db7283b91b2ac19764d1117548c -Author: Aaron Beavers -Date: Tue Jul 27 12:59:30 2021 -0400 - - Refer to TARGET_DIR - -commit 780fa364cf389ffb3c91f6a99aef6fa2884bc777 -Merge: 119cf6fdc b541ab1e7 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 12:53:16 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/usermgmt-updates - -commit fc8af6c7b642542384eff3e8ecf8e1ed6c697d90 -Merge: 337a67712 b541ab1e7 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 12:40:23 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/stt_updates - -commit 119cf6fdc6995b2a53f90c21bbb18b6657d550af -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 12:37:38 2021 -0400 - - updated screenshots - -commit dc9a6a0d5bff34059495f7e3a89a8e198e178d1b -Author: John Willis -Date: Tue Jul 27 12:33:17 2021 -0400 - - Remove unneeded DJANGO_SECRET_KEY declaration in docker-compose.yml - -commit 2110129b4e039073edd9358cb673389b5ee5c0fa -Author: John Willis -Date: Tue Jul 27 12:30:01 2021 -0400 - - Dynamically generate DJANGO_SECRET_KEY for initial deployments - -commit 9e7961d6b1301afca8ae69f3f16b65b1b39655a9 -Author: Aaron Beavers -Date: Tue Jul 27 12:11:40 2021 -0400 - - Add unified zap scan script - -commit 5c495ca1281e02df9d403b345883fe004c60acc3 -Author: John Willis -Date: Tue Jul 27 11:10:22 2021 -0400 - - Fix space name for prod - -commit be4194c7f2ae3d502e06fa0db949e9763e57a6f0 -Merge: 4cf699cac b541ab1e7 -Author: John Willis -Date: Tue Jul 27 11:08:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit 51b344ba2a1a726589160f65bba6bcdb6b0bd9a6 -Merge: 5d3d0c3de b541ab1e7 -Author: John Willis -Date: Tue Jul 27 11:03:37 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/968-codecov-validation - -commit b541ab1e76ce72d2f44380f02218490b8eafc404 -Merge: 5bc722d3b d4ada0139 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jul 27 10:54:04 2021 -0400 - - Merge pull request #1077 from raft-tech/docs/1045-restaging-for-buildpack-updates - - Updated buildpack documentation for restaging process - -commit 0c65d1be45dffebca1dec071e5a5ca79eb89b680 -Merge: 379a9e2c8 5bc722d3b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jul 27 10:24:00 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings - -commit 5d3d0c3de520a3cd37cc35435b94b88839d599cb -Author: John Willis -Date: Tue Jul 27 10:19:32 2021 -0400 - - Revert branch change for testing codecov uploads - -commit f830e4ef15416cb87e9d318fd9571532ed8dc2a3 -Merge: 45f100a59 5bc722d3b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 10:17:31 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/usermgmt-updates - -commit 337a67712ca6419c0b687a3c6fc7c209335087b9 -Merge: e34a2dcd2 5bc722d3b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 09:32:19 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/stt_updates - -commit e34a2dcd2a16abddb1a5038e6df68ac68c2f216e -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 27 09:17:04 2021 -0400 - - updated tribe in test_commands - -commit 86ac35a55c3dafe68199989ffd11554848064ff8 -Author: John Willis -Date: Mon Jul 26 19:01:12 2021 -0400 - - Fix coverage report path - -commit 764dd9c573e07370c7ccda9d68a2c1efde3ebf5a -Author: John Willis -Date: Mon Jul 26 18:51:13 2021 -0400 - - Remove old upload step - -commit ca1884e5984384c42383598de978baf10a0a83a6 -Author: John Willis -Date: Mon Jul 26 18:43:34 2021 -0400 - - Updated Codecov uploader to new version and added file integrity checks - -commit d4ada013900da2ba1d028cf97e3984db17f4cb8f -Merge: ecea405e5 5bc722d3b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 15:16:26 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/1045-restaging-for-buildpack-updates - -commit ecea405e54e5d602204f3d02706c16ee0f846369 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 15:15:21 2021 -0400 - - Update docs/Architecture Decision Record/011-buildpacks.md - - including link to issue. - -commit 8aa7cd80c0478a53afc1f8e49ed7843b37fc2de5 -Author: Angela Milash -Date: Mon Jul 26 12:14:35 2021 -0700 - - update sprint-schedule.md - - updated with our current meetings and reoccurring meetings - -commit 5bc722d3b67835e672e39579fb7ffd888eceb640 -Merge: db68f9032 504e0750d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jul 26 15:02:15 2021 -0400 - - Merge pull request #1128 from raft-tech/amilash-patch-1 - - create sprint-25-summary.md - -commit 4dcf39a42ce931b5e7b4eab638a01da6ec1db8ac -Merge: 10baed234 db68f9032 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 14:53:41 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/1045-restaging-for-buildpack-updates - -commit 10baed234060770a5a4c4697475c96052274382b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 14:52:09 2021 -0400 - - Update 011-buildpacks.md - - added ADR update date - -commit 504e0750d6b8863de0f5506ab6541400a110ce0e -Merge: 414d8254f db68f9032 -Author: Angela Milash -Date: Mon Jul 26 11:44:40 2021 -0700 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit 3611847e301fb2a6fddd942db168c61c0cd634e5 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 14:18:37 2021 -0400 - - Update .circleci/config.yml - -commit 00ef716e8c5b4d44bdeb624d4ed3b88015ab535d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 14:17:34 2021 -0400 - - Update .circleci/config.yml - -commit f5024d3acd7e2f12c4fc3d0506db2b584b66dd22 -Author: Aaron Beavers -Date: Mon Jul 26 13:59:33 2021 -0400 - - Add backend scan, correct store artifacts directive - -commit 89ec7a8e439f3f588c2d164a8ba72b8be85084fc -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 12:24:25 2021 -0400 - - Update .circleci/config.yml - - for testing - -commit d6c84bd94121c0ce4a0ab14462d60ec29240bdd7 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 12:24:15 2021 -0400 - - Update .circleci/config.yml - - for testing - -commit 4cf699cac931a00fe274fd982a897a921ee3db59 -Merge: 191c6ea90 db68f9032 -Author: John Willis -Date: Mon Jul 26 11:39:34 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit 414d8254f4fcde200eb6c80e88df446f2cd54cc3 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jul 26 10:41:55 2021 -0400 - - Update docs/Sprint-Review/sprint-25-summary.md - -commit a1c5002ab10beb4eff428107753ac60393c4faa0 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jul 26 10:41:41 2021 -0400 - - Update docs/Sprint-Review/sprint-25-summary.md - -commit 63f36c6f2ed6e7c773133158e24805eaa5a81128 -Merge: e3f8a1929 db68f9032 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 09:45:53 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp - -commit db68f9032160525bd6d596effa89f8c6c089fe9e -Merge: 357c7b335 8538f1302 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jul 26 09:42:13 2021 -0400 - - Merge pull request #1124 from raft-tech/backend/755/rename-data-prepper-role - - Replace every instance of data prepper with data analyst - -commit e3f8a19296116b3e99a7546cf4b3a0f8931e832d -Merge: 6bd2df550 357c7b335 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 09:41:29 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1032/scheduled-owasp - -commit 8538f1302e74461a08488daf9b58d589e7af4659 -Merge: fa88db6a4 357c7b335 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jul 26 08:27:17 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/755/rename-data-prepper-role - -commit af005348c151ed3279b9ab86cb6d7638c5129aae -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jul 23 17:06:43 2021 -0400 - - updated stt attribues - -commit 691e2dc2bdc48f0c4038423ac70fe095c192ceb9 -Author: Aaron Beavers -Date: Fri Jul 23 15:44:37 2021 -0400 - - Split up a long comment - -commit 4d6647ef4645630a87c58f6b76222bacb36aefd7 -Author: Aaron Beavers -Date: Fri Jul 23 15:44:25 2021 -0400 - - Integrate login state update action to splash page login button - -commit b9cb21cab731c18fd87b74d41936327704a490a5 -Author: Aaron Beavers -Date: Fri Jul 23 15:43:59 2021 -0400 - - Add condition to not follow mock flags if the url matches a production pattern - -commit 8c1da0ab0efaa7d3fd57a3e2745281673fd4480e -Author: Aaron Beavers -Date: Fri Jul 23 15:33:02 2021 -0400 - - Replace inline logic with dispatch to action setMockLoginState - -commit 0c47197505d64c7ab7a942238bffafc79725dd34 -Author: Aaron Beavers -Date: Fri Jul 23 15:31:00 2021 -0400 - - Break long comment into two line - -commit 0283cb13d19235d45a89f98f730946ff8a7e5fe8 -Author: Aaron Beavers -Date: Fri Jul 23 15:30:26 2021 -0400 - - Remove unused import - -commit 3703285ccc42e7f008562fee3c27d04dab56cd0f -Author: Aaron Beavers -Date: Fri Jul 23 15:29:30 2021 -0400 - - Add setMockLoginStates action - -commit 379a9e2c813df95b0e210c4c0d7ea1830945ea6d -Merge: 9d18ab93b 357c7b335 -Author: John Willis -Date: Thu Jul 22 16:52:55 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/971-s3-deployed-settings - -commit 191c6ea900032b08fd2e2ae63e63d7a4d77f6133 -Author: John Willis -Date: Thu Jul 22 16:48:22 2021 -0400 - - Fix linter errors - -commit 9d18ab93b8bb7a17a0cc682fd379ce9e56157645 -Author: John Willis -Date: Thu Jul 22 16:35:24 2021 -0400 - - Update service plans for Terraform provisioned S3 services - -commit 040ed4073d141ba16c9d070e767a1730e6fa695e -Merge: 6f64d6ebf 357c7b335 -Author: John Willis -Date: Thu Jul 22 16:19:10 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit 357c7b335e94ad62e6d18a3b06a038e030ce8317 -Merge: 6b60b7f89 595eeca8e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 22 14:29:11 2021 -0400 - - Merge pull request #1096 from raft-tech/dependabot-mass-merge - - 1023: Dependabot Mass Merge - -commit 0b4da3715c0993c341a7c1df49f45b5bdacdaf2e -Author: Aaron Beavers -Date: Thu Jul 22 14:27:30 2021 -0400 - - Remove lint - -commit a073635c28045eeef5d5c24381e6d3ad34ae8d3a -Author: Aaron Beavers -Date: Thu Jul 22 13:59:13 2021 -0400 - - Remove IIFE - -commit 93b54a219930926710f53b9135b6c31e7ec976e4 -Merge: 2e2103708 e0c0a25c6 -Author: Aaron Beavers -Date: Thu Jul 22 13:55:09 2021 -0400 - - Merge remote-tracking branch 'origin/devops/1044/pally-auth' into devops/1044/pally-auth - -commit 2e2103708bf2fc136952197f592e368dc1fe5691 -Author: Aaron Beavers -Date: Thu Jul 22 13:54:23 2021 -0400 - - Use ternary expression for readability - -commit e0c0a25c63acd56cd5e6e58556a393496035258a -Author: Aaron Beavers -Date: Thu Jul 22 13:51:39 2021 -0400 - - Update tdrs-frontend/src/components/SplashPage/SplashPage.jsx - - Co-authored-by: Jorge Gonzalez - -commit 0fe2dac9eb370f7a88cee21986f0c2d5c7c61e1e -Author: Aaron Beavers -Date: Thu Jul 22 13:50:19 2021 -0400 - - Fixed misnamed env variable reference - -commit 9f380583dbe56335e55882f4800e6b009f0707a6 -Author: John Willis -Date: Wed Jul 21 19:03:01 2021 -0400 - - Fix error in MEDIA_URL for deployed environments; Refactor USE_LOCALSTACK to be a string yes or no instead of integer to prevent boolean coercion errors. - -commit 7aa6a53c409b629ef35757c22562b4523e6f5d99 -Author: John Willis -Date: Wed Jul 21 17:36:57 2021 -0400 - - Fix typo in staticfiles service reference and allow setting USE_LOCALSTACK without modifying docker-compose.yml (via .env or CircleCI project settings) - -commit 6c3e3d39cdd73651a66496b0a4c920467b0a2192 -Author: Angela Milash -Date: Wed Jul 21 13:53:00 2021 -0700 - - Update sprint-25-summary.md - - added 1059 as per @lfrohlich request - -commit bd935fdf7f87457dadef0450a189bee647e857fa -Author: Angela Milash -Date: Wed Jul 21 13:51:34 2021 -0700 - - Update docs/Sprint-Review/sprint-25-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 9c9e113f2da26462cf242790328a4f12082561a7 -Author: Angela Milash -Date: Wed Jul 21 13:51:22 2021 -0700 - - Update docs/Sprint-Review/sprint-25-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit d3cb094c20c2f8201590f4dbe2ed526f65bd3dee -Author: Angela Milash -Date: Wed Jul 21 13:51:13 2021 -0700 - - Update docs/Sprint-Review/sprint-25-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 7aea1dd41bf6907efc17128620ab0a11d0564da2 -Author: Angela Milash -Date: Wed Jul 21 13:51:03 2021 -0700 - - Update docs/Sprint-Review/sprint-25-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit bba070da931204376570a750a2c3e206ba8e1418 -Author: Angela Milash -Date: Wed Jul 21 13:49:52 2021 -0700 - - Update docs/Sprint-Review/sprint-25-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 3a9cdc9959e785ef36323f58be918171a2c45bca -Author: abottoms-coder -Date: Wed Jul 21 15:24:06 2021 -0400 - - Updates from comments in PR - -commit 5536133beef101020a799c61dac7d8a09aeadece -Merge: 8cab3b2b0 6b60b7f89 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jul 21 15:14:10 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/1044/pally-auth - -commit 59c2884043febb237838de6c76b588616ebeb464 -Author: abottoms-coder -Date: Wed Jul 21 15:12:43 2021 -0400 - - Added changelog initial commit - -commit 6bd2df550825cf9fca426dff0061b79ce0e496d1 -Author: Aaron Beavers -Date: Wed Jul 21 13:48:33 2021 -0400 - - Redid time commit without extra noise - -commit 5f6bfe94796d0ab6042103e10c6e44139720bee4 -Author: Aaron Beavers -Date: Mon Jul 19 17:13:08 2021 -0400 - - Revert "update time" - - This reverts commit 7473e53b1ac106ccca04fd36b5d04944bc9d1fb0. - -commit ac0aef2379e3acbe4cf986cb7b427fcb54a3bfd2 -Merge: 48e149fb7 6b60b7f89 -Author: Aaron Beavers -Date: Wed Jul 21 13:43:51 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1032/scheduled-owasp - -commit 2f9ea1d55f8338bbd5a91ed202269ab9e4f7dab5 -Author: John Willis -Date: Wed Jul 21 13:38:27 2021 -0400 - - linter errors - -commit b06a240042b03231a72115c734f559f2895e7111 -Author: John Willis -Date: Wed Jul 21 13:21:31 2021 -0400 - - Fix backend tests & removed unused, outdated code - -commit 595eeca8ec826ba646bb308cba64e3358410e96f -Merge: 375383736 f984bf4ea -Author: John Willis -Date: Wed Jul 21 11:53:20 2021 -0400 - - Merge pull request #1129 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/file-type-16.5.2 - - Bump file-type from 16.5.1 to 16.5.2 in /tdrs-frontend - -commit 375383736fcdf319e0130740f36947db7ce66709 -Merge: f81233e0a 3fc523669 -Author: John Willis -Date: Wed Jul 21 11:53:07 2021 -0400 - - Merge pull request #1130 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.3 - - Bump awscli from 1.20.2 to 1.20.3 in /tdrs-backend - -commit 3fc523669f3c3431712f7a82081594224d0839c3 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 21 06:21:25 2021 +0000 - - Bump awscli from 1.20.2 to 1.20.3 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.2 to 1.20.3. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.2...1.20.3) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit f984bf4ea857d537d1ce772b7a8a78c60cf877ed -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 21 06:16:04 2021 +0000 - - Bump file-type from 16.5.1 to 16.5.2 in /tdrs-frontend - - Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.5.1 to 16.5.2. - - [Release notes](https://github.com/sindresorhus/file-type/releases) - - [Commits](https://github.com/sindresorhus/file-type/compare/v16.5.1...v16.5.2) - - --- - updated-dependencies: - - dependency-name: file-type - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 8949bb3beb0ca698e008afb35d87a82b89309d10 -Author: John Willis -Date: Tue Jul 20 18:46:59 2021 -0400 - - Fix linter errors and remove unused settings modules - -commit 9b15fc3eccfefdf76522c84f67f4a655b91984f4 -Author: John Willis -Date: Tue Jul 20 18:19:13 2021 -0400 - - Allow environment variable configuration in common settings for when running locally with USE_LOCALSTACK set to False - -commit 2e733706b97c2e0268b96a4bdb22ff85caaa6633 -Author: John Willis -Date: Tue Jul 20 18:06:23 2021 -0400 - - Implemented base class for storage to override settings, created cloudgov settings module to store settings configurations for Cloud.gov deployments, updated CG settings to use VCAP_SERVICES, removed usages of the old AWS environment variables - -commit 825058c75d24169dd91da04e0f9ee0e6969fa167 -Author: Angela Milash -Date: Tue Jul 20 11:17:44 2021 -0700 - - update sprint-25-summary.md - - - updated link to sprint milestone - - added 2 items to blocked - - added next gen ticket and moved to sprint backlog since it is not blocked. - - updated next sprint goals to include UX line item. - - added 'pre qasp' to a few line items in the sprint demo - -commit bdcaf818b59d5b810d89babf9e186db49c301a21 -Author: Angela Milash -Date: Tue Jul 20 10:49:48 2021 -0700 - - create sprint-25-summary.md - -commit 8cab3b2b0a47ba080e966cded8d2dc8258dbbbd4 -Author: Aaron Beavers -Date: Tue Jul 20 13:24:26 2021 -0400 - - update config - -commit 07d274769332d7f1a7f7f06c8362f11897c177e0 -Author: Aaron Beavers -Date: Tue Jul 20 12:59:42 2021 -0400 - - update circleci config - -commit fa88db6a40660d31416262cfc0bc24a506ba6aa7 -Author: Aaron Beavers -Date: Tue Jul 20 12:05:21 2021 -0400 - - update migrations - -commit f81233e0adff452c5e7d13204b3d4bfd969a58e1 -Merge: b2704c7f1 e5ea3cc6c -Author: John Willis -Date: Tue Jul 20 09:53:23 2021 -0400 - - Merge pull request #1125 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/cypress-8.0.0 - - Bump cypress from 7.7.0 to 8.0.0 in /tdrs-frontend - -commit b2704c7f113cd4609dd83f5b71045a6d0b94a331 -Merge: 7dfd188a8 6de452a98 -Author: John Willis -Date: Tue Jul 20 09:53:08 2021 -0400 - - Merge pull request #1126 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.2 - - Bump awscli from 1.20.1 to 1.20.2 in /tdrs-backend - -commit 6de452a9836055da7fce64e60ea9e591e253e020 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jul 20 06:37:06 2021 +0000 - - Bump awscli from 1.20.1 to 1.20.2 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.1 to 1.20.2. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.1...1.20.2) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit e5ea3cc6c3ff62cc5d8d554d839ef8772a09ad34 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jul 20 06:19:44 2021 +0000 - - Bump cypress from 7.7.0 to 8.0.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 7.7.0 to 8.0.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v7.7.0...v8.0.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 48e149fb7ef3a2637130683e74d711bc660d898b -Author: Aaron Beavers -Date: Mon Jul 19 17:13:56 2021 -0400 - - Update filter - -commit 04f93c7c6636806c3be8ecd124865abb090cc728 -Author: Aaron Beavers -Date: Mon Jul 19 17:13:21 2021 -0400 - - store artifacts - -commit 7473e53b1ac106ccca04fd36b5d04944bc9d1fb0 -Author: Aaron Beavers -Date: Mon Jul 19 17:13:08 2021 -0400 - - update time - -commit 5cf687c7552a475088f7b21adc2401586ae54775 -Author: Aaron Beavers -Date: Mon Jul 19 16:37:29 2021 -0400 - - Replace ever instance of data prepper with data analyst - -commit 798a38679c54f00af28caa8b387c0f9b45334ee5 -Author: John Willis -Date: Mon Jul 19 15:55:06 2021 -0400 - - Added explicit storage class for staticfiles - -commit 6f64d6ebff9ff1871799736a4eae0c8d54a8428b -Merge: e02d90809 6b60b7f89 -Author: John Willis -Date: Mon Jul 19 15:39:00 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit 7dfd188a834b36839cfc8d11e359085b657627db -Merge: 8b77c29c7 6b60b7f89 -Author: John Willis -Date: Mon Jul 19 15:38:42 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-mass-merge - -commit 4f7b3f925c131048c8a0966ba1b606bf06430fa0 -Author: Aaron Beavers -Date: Mon Jul 19 13:16:44 2021 -0400 - - update time, update flag on scan script - -commit 24f42acab3f659e6135be838f906860fdabaf2b5 -Author: Aaron Beavers -Date: Mon Jul 19 12:19:05 2021 -0400 - - update time - -commit 933407dd679e6e2dbabf40c2216e219f9cccce6f -Author: Aaron Beavers -Date: Mon Jul 19 12:18:20 2021 -0400 - - update time - -commit 9274aea68de5e9b15ddc98f8d46d241833d53c25 -Author: Aaron Beavers -Date: Mon Jul 19 11:56:26 2021 -0400 - - update time - -commit 4d48b9c7ed42f76fb020e1dda51e8252c21407a4 -Author: Aaron Beavers -Date: Mon Jul 19 11:53:41 2021 -0400 - - Move jobs declaration - -commit 0a603bbef89258b3f8d5fecfbc7359e1b81ff821 -Author: Aaron Beavers -Date: Mon Jul 19 11:49:33 2021 -0400 - - re entered time - -commit 163bdd7358e1c23afd2ee91c400d30ad2f81d085 -Author: Aaron Beavers -Date: Mon Jul 19 11:02:16 2021 -0400 - - made change to test scheduled job - -commit 6b60b7f89207955c8c30e31edb4e46913de80151 -Merge: dc815b30f 7f9562e17 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jul 19 10:39:16 2021 -0400 - - Merge pull request #1070 from raft-tech/docs/1051-tdp-environments - - Issue 1051: Add current environment docs and diagrams - -commit 8b77c29c77d2e538b72fa2e9c6b5790dd608ae61 -Merge: 037cc7e0b 73fa5301b -Author: John Willis -Date: Mon Jul 19 09:24:32 2021 -0400 - - Merge pull request #1105 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/eslint-7.31.0 - - Bump eslint from 7.30.0 to 7.31.0 in /tdrs-frontend - -commit 037cc7e0b9de7681019880287d5e08541bd23fde -Merge: 9732d8db1 212ba6815 -Author: John Willis -Date: Mon Jul 19 09:24:21 2021 -0400 - - Merge pull request #1106 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.1 - - Bump awscli from 1.20.0 to 1.20.1 in /tdrs-backend - -commit 212ba681534fa62c137d115badbc6a4423e1160c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 19 06:19:27 2021 +0000 - - Bump awscli from 1.20.0 to 1.20.1 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.20.0 to 1.20.1. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.20.0...1.20.1) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 73fa5301bb13b0dfca1421a16ec9ea02efdb50f7 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 19 06:15:30 2021 +0000 - - Bump eslint from 7.30.0 to 7.31.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 7.30.0 to 7.31.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v7.30.0...v7.31.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 7f9562e17fe9a3530c7b46fa515bbb1408d1434d -Author: Jorge Gonzalez -Date: Fri Jul 16 15:57:47 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 3354fce5f5222051388f437a253cfa057b6c4560 -Merge: c1d086507 f8cd187db -Author: Jorge Gonzalez -Date: Fri Jul 16 15:41:14 2021 -0400 - - Merge branch 'docs/1051-tdp-environments' of https://github.com/raft-tech/TANF-app into docs/1051-tdp-environments - -commit c1d086507634286418c64256017e04eec2e068f3 -Author: Jorge Gonzalez -Date: Fri Jul 16 15:40:17 2021 -0400 - - docs: Update dependency descriptions - -commit e02d90809712e94712f891a79b93fdfc50be40e8 -Author: John Willis -Date: Fri Jul 16 15:23:13 2021 -0400 - - Add missing AWS setting for django-storages - -commit f8cd187db4b71c15cf8fa539fdb7542892ded343 -Merge: f64554064 dc815b30f -Author: Jorge Gonzalez -Date: Fri Jul 16 13:38:21 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/1051-tdp-environments - -commit f6455406459fc53562b6e1983ab118aee687d976 -Merge: b72404fd3 05d00d14e -Author: Jorge Gonzalez -Date: Fri Jul 16 13:37:42 2021 -0400 - - Merge remote-tracking branch 'origin/docs/1051-tdp-environments' into docs/1051-tdp-environments - -commit b72404fd3e8c65f28af44cc31f99f7a4812f4e18 -Author: Jorge Gonzalez -Date: Fri Jul 16 13:36:05 2021 -0400 - - docs: Add note and diagram tweak to clarify developer env access - -commit 201fffde7becec6659a8e271ebe15202a266efd4 -Author: Aaron Beavers -Date: Fri Jul 16 13:35:52 2021 -0400 - - Add nightly owasp scan job - -commit 22e20ecd15cdb039c4b0f95b31e39d327a40ccd3 -Author: Aaron Beavers -Date: Fri Jul 16 13:33:57 2021 -0400 - - update zap scanner with condition to allow nightly production scans - -commit 9732d8db1637c7919299e8339405ecdb793d19a1 -Merge: e3c5b6b52 1aaf6a0b9 -Author: John Willis -Date: Fri Jul 16 09:08:14 2021 -0400 - - Merge pull request #1102 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.20.0 - - Bump awscli from 1.19.112 to 1.20.0 in /tdrs-backend - -commit 1aaf6a0b945a8321196f8727d6a597818812d406 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jul 16 06:20:27 2021 +0000 - - Bump awscli from 1.19.112 to 1.20.0 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.19.112 to 1.20.0. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.19.112...1.20.0) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 5db86561819a0b64ee7bbfda8d83db1ea3bda326 -Author: abottoms-coder -Date: Thu Jul 15 15:05:46 2021 -0400 - - Updates to commands for dev restaging steps - -commit 7ea732c73fa00796239d0541ad9614a2ba9910b3 -Merge: babe942ec dc815b30f -Author: John Willis -Date: Thu Jul 15 14:28:45 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit e3c5b6b527ed10ab53f0209ab2c2c2758e852c43 -Merge: 3b53a3e63 dc815b30f -Author: John Willis -Date: Thu Jul 15 13:45:21 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-mass-merge - -commit 3b53a3e63f05420fa13460b1c006aba83eb3fcda -Author: John Willis -Date: Thu Jul 15 12:00:42 2021 -0400 - - Try using sudo for installing libgbm-dev - -commit 15fe344abf410c92a37ec49b67fd1a551dfb54b4 -Author: abottoms-coder -Date: Thu Jul 15 11:35:07 2021 -0400 - - Fleshing out of process - -commit 6d6b16fddc019f49aac11c4ed7f24dc8bab2431c -Author: John Willis -Date: Thu Jul 15 11:29:35 2021 -0400 - - Install lib bindings needed for Cypress in CircleCI - -commit a3148a6f35df379446df91ad3274796975f31d68 -Merge: be23cc78d dc815b30f -Author: Aaron Beavers -Date: Thu Jul 15 10:34:15 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/1044/pally-auth - -commit dc815b30f13d5415d63825eb1e27fd2056d60065 -Merge: a73e4505d a06f046db -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 15 10:28:13 2021 -0400 - - Merge pull request #931 from raft-tech/user-role-edits - - Update user_role_management.md - -commit ac47fa27729d000c3ae6f4b16743c1eb118c3b04 -Merge: e00088681 a73e4505d -Author: John Willis -Date: Thu Jul 15 10:24:40 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-mass-merge - -commit e000886812632f14964bcda330dfc8ab3ffaf9e5 -Author: John Willis -Date: Thu Jul 15 10:22:56 2021 -0400 - - Update Pipfile.lock - -commit a802d01824b173d9acefd21e659e47a555f796a7 -Merge: 6cfa51c72 fef12bb12 -Author: John Willis -Date: Thu Jul 15 10:19:35 2021 -0400 - - Merge pull request #1100 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/ipython-7.25.0 - - Bump ipython from 7.24.1 to 7.25.0 in /tdrs-backend - -commit fef12bb128b3f2acf2808de00fd1297c026e0e91 -Merge: 750adfa50 6cfa51c72 -Author: John Willis -Date: Thu Jul 15 10:19:28 2021 -0400 - - Merge branch 'dependabot-mass-merge' into dependabot/pip/tdrs-backend/dependabot-mass-merge/ipython-7.25.0 - -commit 6cfa51c72232e970bd173cce247fa2819b5992df -Merge: e5dedfa63 f107d3c3b -Author: John Willis -Date: Thu Jul 15 10:19:09 2021 -0400 - - Merge pull request #1099 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/psycopg2-binary-2.9.1 - - Bump psycopg2-binary from 2.8.6 to 2.9.1 in /tdrs-backend - -commit a06f046db192304022fd192745b16b49a874e5fa -Merge: 4fdba7aa4 a73e4505d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 15 10:07:27 2021 -0400 - - Merge branch 'raft-tdp-main' into user-role-edits - -commit 750adfa50c5945124989a01603ba15fa54184a56 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jul 15 14:00:57 2021 +0000 - - Bump ipython from 7.24.1 to 7.25.0 in /tdrs-backend - - Bumps [ipython](https://github.com/ipython/ipython) from 7.24.1 to 7.25.0. - - [Release notes](https://github.com/ipython/ipython/releases) - - [Commits](https://github.com/ipython/ipython/compare/7.24.1...7.25.0) - - --- - updated-dependencies: - - dependency-name: ipython - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit f107d3c3b6c5287d7123058aeff20bde7f6309df -Merge: 4b5e2d6e4 e5dedfa63 -Author: John Willis -Date: Thu Jul 15 09:52:54 2021 -0400 - - Merge branch 'dependabot-mass-merge' into dependabot/pip/tdrs-backend/dependabot-mass-merge/psycopg2-binary-2.9.1 - -commit e5dedfa6359b296a4d3017e7b0abb63dbb57fd38 -Merge: f8366635d 2c3df8276 -Author: John Willis -Date: Thu Jul 15 09:52:36 2021 -0400 - - Merge pull request #1098 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/boto3-1.17.112 - - Bump boto3 from 1.17.103 to 1.17.112 in /tdrs-backend - -commit 2c3df82768183e41b2f71a0d6d6c558fe1810e7a -Merge: 18268deac f8366635d -Author: John Willis -Date: Thu Jul 15 09:52:29 2021 -0400 - - Merge branch 'dependabot-mass-merge' into dependabot/pip/tdrs-backend/dependabot-mass-merge/boto3-1.17.112 - -commit f8366635dbd985b0530539715d6b0b7e4f900be3 -Merge: 4e6d19cd4 2a3a37f5f -Author: John Willis -Date: Thu Jul 15 09:49:38 2021 -0400 - - Merge pull request #1097 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/requests-2.26.0 - - Bump requests from 2.25.1 to 2.26.0 in /tdrs-backend - -commit 4b5e2d6e47915423af8de9027a9a83dcfe37f12a -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jul 15 06:24:34 2021 +0000 - - Bump psycopg2-binary from 2.8.6 to 2.9.1 in /tdrs-backend - - Bumps [psycopg2-binary](https://github.com/psycopg/psycopg2) from 2.8.6 to 2.9.1. - - [Release notes](https://github.com/psycopg/psycopg2/releases) - - [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS) - - [Commits](https://github.com/psycopg/psycopg2/commits) - - --- - updated-dependencies: - - dependency-name: psycopg2-binary - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 18268deacfaeac0ce0a1bdce530a26f2e7793a9c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jul 15 06:22:24 2021 +0000 - - Bump boto3 from 1.17.103 to 1.17.112 in /tdrs-backend - - Bumps [boto3](https://github.com/boto/boto3) from 1.17.103 to 1.17.112. - - [Release notes](https://github.com/boto/boto3/releases) - - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/boto/boto3/compare/1.17.103...1.17.112) - - --- - updated-dependencies: - - dependency-name: boto3 - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 2a3a37f5f5ee586cc818a65db5e5483abe943677 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jul 15 06:20:07 2021 +0000 - - Bump requests from 2.25.1 to 2.26.0 in /tdrs-backend - - Bumps [requests](https://github.com/psf/requests) from 2.25.1 to 2.26.0. - - [Release notes](https://github.com/psf/requests/releases) - - [Changelog](https://github.com/psf/requests/blob/master/HISTORY.md) - - [Commits](https://github.com/psf/requests/compare/v2.25.1...v2.26.0) - - --- - updated-dependencies: - - dependency-name: requests - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit a73e4505d8e057b2c0ebcb99446bd1c6a879ddaa -Merge: 654c41e22 61b8b83fb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jul 14 18:27:07 2021 -0400 - - Merge pull request #1068 from raft-tech/amilash-patch-1 - - create sprint-24-summary.md - -commit 4e6d19cd49afafb7d4e089b317dcf8f232298fdb -Author: John Willis -Date: Wed Jul 14 17:38:00 2021 -0400 - - Use strict equality for package versions in Pipfile to prevent unintended upgrades to unrelated packages - -commit e04299408db60b766cfaa1d0b872c2e2571a2d0b -Author: John Willis -Date: Wed Jul 14 17:27:56 2021 -0400 - - Revert dependabot config change - -commit aab1b4d8c532fe030a3b086eea7471ead48ec222 -Author: John Willis -Date: Wed Jul 14 17:24:31 2021 -0400 - - Ran yarn upgrade to force generation of a new yarn.lock with all changes merged in - -commit 81e4b7c80d5c3e8d50b0f2437b7007710a8af2f6 -Merge: f578ed94a 654c41e22 -Author: John Willis -Date: Wed Jul 14 17:16:12 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot-mass-merge - -commit f578ed94abbc808db7712857be1cb0ebecd08bab -Author: John Willis -Date: Wed Jul 14 17:12:22 2021 -0400 - - Fixed frontend linter errors - -commit 404616be6d62a1b0d8fa1ec83f4c261be55857e2 -Merge: ca2c4e55d 7a461cac2 -Author: John Willis -Date: Wed Jul 14 16:59:51 2021 -0400 - - Merge pull request #1089 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/prettier-2.3.2 - - Bump prettier from 2.2.1 to 2.3.2 in /tdrs-frontend - -commit 7a461cac2081eab57932c5f5546dae54db0bbd33 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:58:43 2021 +0000 - - Bump prettier from 2.2.1 to 2.3.2 in /tdrs-frontend - - Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.2. - - [Release notes](https://github.com/prettier/prettier/releases) - - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/prettier/compare/2.2.1...2.3.2) - - --- - updated-dependencies: - - dependency-name: prettier - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit ca2c4e55de36e78a7c3951e703c68ab2fc73c6bd -Merge: 8975912b5 fc340470f -Author: John Willis -Date: Wed Jul 14 16:57:13 2021 -0400 - - Merge pull request #1090 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/cypress-7.7.0 - - Bump cypress from 4.12.1 to 7.7.0 in /tdrs-frontend - -commit fc340470f747b385b30ff1cc661423cf87917182 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:56:53 2021 +0000 - - Bump cypress from 4.12.1 to 7.7.0 in /tdrs-frontend - - Bumps [cypress](https://github.com/cypress-io/cypress) from 4.12.1 to 7.7.0. - - [Release notes](https://github.com/cypress-io/cypress/releases) - - [Changelog](https://github.com/cypress-io/cypress/blob/develop/.releaserc.base.js) - - [Commits](https://github.com/cypress-io/cypress/compare/v4.12.1...v7.7.0) - - --- - updated-dependencies: - - dependency-name: cypress - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 8975912b57dd82c48e1ebd3036c3898f74634300 -Merge: f0853e391 39627fcc8 -Author: John Willis -Date: Wed Jul 14 16:55:04 2021 -0400 - - Merge pull request #1092 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/react-redux-7.2.4 - - Bump react-redux from 7.2.3 to 7.2.4 in /tdrs-frontend - -commit f0853e391aeb079db68513533cc18b4d08e97ccd -Merge: a3552873b 9110f45a4 -Author: John Willis -Date: Wed Jul 14 16:54:24 2021 -0400 - - Merge pull request #1095 from raft-tech/dependabot/pip/tdrs-backend/dependabot-mass-merge/awscli-1.19.112 - - Bump awscli from 1.19.103 to 1.19.112 in /tdrs-backend - -commit a3552873b2432488ff9c2838f7f69ecd783476ff -Merge: bca805185 0c043f9b9 -Author: John Willis -Date: Wed Jul 14 16:53:56 2021 -0400 - - Merge pull request #1025 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.14.1 - - Bump @testing-library/jest-dom from 4.2.4 to 5.14.1 in /tdrs-frontend - -commit 0c043f9b9b8282c999414de9d6b14f08cdb130f0 -Merge: 36ac75a09 bca805185 -Author: John Willis -Date: Wed Jul 14 16:53:46 2021 -0400 - - Merge branch 'dependabot-mass-merge' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/testing-library/jest-dom-5.14.1 - -commit 39627fcc8ea525aeeb34c5dd2c89c2bb589ee4f8 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:53:04 2021 +0000 - - Bump react-redux from 7.2.3 to 7.2.4 in /tdrs-frontend - - Bumps [react-redux](https://github.com/reduxjs/react-redux) from 7.2.3 to 7.2.4. - - [Release notes](https://github.com/reduxjs/react-redux/releases) - - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) - - [Commits](https://github.com/reduxjs/react-redux/compare/v7.2.3...v7.2.4) - - --- - updated-dependencies: - - dependency-name: react-redux - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit bca8051855d62e676e3f5c1f1d2389bd338c1c9e -Merge: 206d86146 68c9058a4 -Author: John Willis -Date: Wed Jul 14 16:52:59 2021 -0400 - - Merge pull request #1000 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/include-media-1.4.10 - - Bump include-media from 1.4.9 to 1.4.10 in /tdrs-frontend - -commit 68c9058a45801c4a919a4ec362979d10e93d90e4 -Merge: ce89b39c1 206d86146 -Author: John Willis -Date: Wed Jul 14 16:52:48 2021 -0400 - - Merge branch 'dependabot-mass-merge' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/include-media-1.4.10 - -commit ce89b39c1466dea986584a4a95d3918083b4a0fd -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:51:53 2021 +0000 - - Bump include-media from 1.4.9 to 1.4.10 in /tdrs-frontend - - Bumps [include-media](https://github.com/eduardoboucas/include-media) from 1.4.9 to 1.4.10. - - [Release notes](https://github.com/eduardoboucas/include-media/releases) - - [Commits](https://github.com/eduardoboucas/include-media/compare/v1.4.9...v1.4.10) - - --- - updated-dependencies: - - dependency-name: include-media - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 206d86146bdb395ed01f9943181accc641ff7f9e -Merge: fb2e08373 02a10efa6 -Author: John Willis -Date: Wed Jul 14 16:51:35 2021 -0400 - - Merge pull request #1038 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/uswds-2.12.0 - - Bump uswds from 2.11.1 to 2.12.0 in /tdrs-frontend - -commit fb2e083736d63b57c53cfdff04b3ba10758a2750 -Merge: 330b922af cb6eb36b0 -Author: John Willis -Date: Wed Jul 14 16:51:18 2021 -0400 - - Merge pull request #1075 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/file-type-16.5.1 - - Bump file-type from 16.3.0 to 16.5.1 in /tdrs-frontend - -commit 36ac75a096bab36317df9c50a1f9317e52042411 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:51:09 2021 +0000 - - Bump @testing-library/jest-dom from 4.2.4 to 5.14.1 in /tdrs-frontend - - Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 4.2.4 to 5.14.1. - - [Release notes](https://github.com/testing-library/jest-dom/releases) - - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/jest-dom/compare/v4.2.4...v5.14.1) - - --- - updated-dependencies: - - dependency-name: "@testing-library/jest-dom" - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 330b922af54430163d41510d238a370312ee1f0c -Merge: 25ef83be4 757476ea5 -Author: John Willis -Date: Wed Jul 14 16:50:46 2021 -0400 - - Merge pull request #1085 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/testing-library/react-12.0.0 - - Bump @testing-library/react from 11.2.7 to 12.0.0 in /tdrs-frontend - -commit 25ef83be4215b7ed7b1d5d0c865e03cbd28ae898 -Merge: be4b19a95 5770bfff2 -Author: John Willis -Date: Wed Jul 14 16:50:05 2021 -0400 - - Merge pull request #1088 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/pa11y-ci-2.4.2 - - Bump pa11y-ci from 2.4.1 to 2.4.2 in /tdrs-frontend - -commit be4b19a95964b131ba5b467dfd9c65c4be7ee756 -Merge: 55b29f3b4 a2f008c02 -Author: John Willis -Date: Wed Jul 14 16:48:17 2021 -0400 - - Merge pull request #1086 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/wait-on-6.0.0 - - Bump wait-on from 5.3.0 to 6.0.0 in /tdrs-frontend - -commit 55b29f3b4c1b92ab9cd286808dad8ba9c58d903b -Merge: 12dba66d7 262a0460b -Author: John Willis -Date: Wed Jul 14 16:48:05 2021 -0400 - - Merge pull request #1087 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/eslint-plugin-prettier-3.4.0 - - Bump eslint-plugin-prettier from 3.3.1 to 3.4.0 in /tdrs-frontend - -commit 12dba66d7b8a7b483273402571e013c440c85fc9 -Merge: 2dcee5df6 2431785e2 -Author: John Willis -Date: Wed Jul 14 16:47:47 2021 -0400 - - Merge pull request #1093 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/react-idle-timer-4.6.4 - - Bump react-idle-timer from 4.5.6 to 4.6.4 in /tdrs-frontend - -commit 2dcee5df64bb5f427ffad2ae40981402ef0554da -Merge: b5714bbab 5144e3c99 -Author: John Willis -Date: Wed Jul 14 16:47:33 2021 -0400 - - Merge pull request #1091 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/eslint-7.30.0 - - Bump eslint from 7.22.0 to 7.30.0 in /tdrs-frontend - -commit b5714bbabfdd79a5cf4cf13eb9e8c794b5fe362c -Merge: 2c2edcb57 c174cac13 -Author: John Willis -Date: Wed Jul 14 16:47:09 2021 -0400 - - Merge pull request #1094 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/dependabot-mass-merge/immutable-4.0.0-rc.14 - - Bump immutable from 4.0.0-rc.12 to 4.0.0-rc.14 in /tdrs-frontend - -commit 2c2edcb57083ecb39e65a237b3809cd7c424eb04 -Merge: 4643dab1e 03ea97655 -Author: John Willis -Date: Wed Jul 14 16:46:26 2021 -0400 - - Merge pull request #957 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/redux-4.1.0 - - Bump redux from 4.0.5 to 4.1.0 in /tdrs-frontend - -commit 9110f45a482903f5dcf6db9c2a9c7496155ca6df -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:38:11 2021 +0000 - - Bump awscli from 1.19.103 to 1.19.112 in /tdrs-backend - - Bumps [awscli](https://github.com/aws/aws-cli) from 1.19.103 to 1.19.112. - - [Release notes](https://github.com/aws/aws-cli/releases) - - [Changelog](https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/aws/aws-cli/compare/1.19.103...1.19.112) - - --- - updated-dependencies: - - dependency-name: awscli - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit c174cac135235fae43eff82028080b7d50fe047e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:33:40 2021 +0000 - - Bump immutable from 4.0.0-rc.12 to 4.0.0-rc.14 in /tdrs-frontend - - Bumps [immutable](https://github.com/immutable-js/immutable-js) from 4.0.0-rc.12 to 4.0.0-rc.14. - - [Release notes](https://github.com/immutable-js/immutable-js/releases) - - [Commits](https://github.com/immutable-js/immutable-js/compare/v4.0.0-rc.12...v4.0.0-rc.14) - - --- - updated-dependencies: - - dependency-name: immutable - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 2431785e2926aca45f692f296631cf461f51c15c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:33:30 2021 +0000 - - Bump react-idle-timer from 4.5.6 to 4.6.4 in /tdrs-frontend - - Bumps [react-idle-timer](https://github.com/supremetechnopriest/react-idle-timer) from 4.5.6 to 4.6.4. - - [Release notes](https://github.com/supremetechnopriest/react-idle-timer/releases) - - [Changelog](https://github.com/SupremeTechnopriest/react-idle-timer/blob/master/CHANGELOG.md) - - [Commits](https://github.com/supremetechnopriest/react-idle-timer/compare/4.5.6...4.6.4) - - --- - updated-dependencies: - - dependency-name: react-idle-timer - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 5144e3c99198d6fc552767100e91598ee53904a2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:33:06 2021 +0000 - - Bump eslint from 7.22.0 to 7.30.0 in /tdrs-frontend - - Bumps [eslint](https://github.com/eslint/eslint) from 7.22.0 to 7.30.0. - - [Release notes](https://github.com/eslint/eslint/releases) - - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - - [Commits](https://github.com/eslint/eslint/compare/v7.22.0...v7.30.0) - - --- - updated-dependencies: - - dependency-name: eslint - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 5770bfff2fe3e4a6cadc1513a465432f5eff639a -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:32:06 2021 +0000 - - Bump pa11y-ci from 2.4.1 to 2.4.2 in /tdrs-frontend - - Bumps [pa11y-ci](https://github.com/pa11y/ci) from 2.4.1 to 2.4.2. - - [Release notes](https://github.com/pa11y/ci/releases) - - [Changelog](https://github.com/pa11y/pa11y-ci/blob/master/CHANGELOG.md) - - [Commits](https://github.com/pa11y/ci/compare/2.4.1...2.4.2) - - --- - updated-dependencies: - - dependency-name: pa11y-ci - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 262a0460be70f4101809d1d0b884647a6e05aef8 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:31:26 2021 +0000 - - Bump eslint-plugin-prettier from 3.3.1 to 3.4.0 in /tdrs-frontend - - Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.3.1 to 3.4.0. - - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits) - - --- - updated-dependencies: - - dependency-name: eslint-plugin-prettier - dependency-type: direct:development - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit a2f008c02b8130865e47ecec4fd8e4d1aa8ec61c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:31:01 2021 +0000 - - Bump wait-on from 5.3.0 to 6.0.0 in /tdrs-frontend - - Bumps [wait-on](https://github.com/jeffbski/wait-on) from 5.3.0 to 6.0.0. - - [Release notes](https://github.com/jeffbski/wait-on/releases) - - [Commits](https://github.com/jeffbski/wait-on/compare/v5.3.0...v6.0.0) - - --- - updated-dependencies: - - dependency-name: wait-on - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 757476ea5deab744cea4f5dccbd42ab27c14a4ed -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jul 14 20:30:47 2021 +0000 - - Bump @testing-library/react from 11.2.7 to 12.0.0 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.7 to 12.0.0. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.7...v12.0.0) - - --- - updated-dependencies: - - dependency-name: "@testing-library/react" - dependency-type: direct:development - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 61b8b83fbb8acbe96a20fb2a1ce7b9d1bf43d939 -Merge: 494e03b5f 654c41e22 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jul 14 16:25:56 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit 654c41e221df07650a09d340e3cd662d8290e5f3 -Merge: 4643dab1e 0a351ec77 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jul 14 16:25:29 2021 -0400 - - Merge pull request #1084 from raft-tech/deps/1023-mass-dependabot-config - - 1023: Update dependabot config to use mass merge target branch - -commit 0a351ec77937d26cb6288a0ed011142d1c8b7972 -Author: John Willis -Date: Wed Jul 14 13:52:21 2021 -0400 - - 1023: Update dependabot config to use mass merge target branch - -commit be23cc78d1907ca5a1501c6bbaf8604a37cb7668 -Author: Aaron Beavers -Date: Wed Jul 14 13:50:22 2021 -0400 - - Use mirage flag - -commit 494e03b5ff621dc6ecd0c67cd41a58461e1924d5 -Author: Angela Milash -Date: Wed Jul 14 10:35:57 2021 -0700 - - Update sprint-24-summary.md - -commit 469e306033e41d9ebce3657bdb3242404087556a -Author: Angela Milash -Date: Wed Jul 14 10:34:26 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 35d5fc09ef8714f1ae7b209da05010836f5da1df -Author: Angela Milash -Date: Wed Jul 14 10:34:16 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit f57aeb3acab1dc5174b64a3b3228f3c0df38f021 -Author: Aaron Beavers -Date: Wed Jul 14 11:27:48 2021 -0400 - - Use mock data from separate file for cleaner routeing logic - -commit 06a58acd12d07e3f18234a81abd4637f9d2892b3 -Author: Aaron Beavers -Date: Wed Jul 14 11:27:10 2021 -0400 - - Import mock data - -commit 865a5385bcd6e9f16018eb2d0cafd8af49901da4 -Author: Aaron Beavers -Date: Wed Jul 14 11:26:55 2021 -0400 - - Add mock data - -commit 7c7cbadc1e0d1ec430048727c0c615993db515b3 -Author: Aaron Beavers -Date: Wed Jul 14 11:26:39 2021 -0400 - - Add mirage mock data - -commit babe942ec59a7b5018ad1255c2a176f1b5e9829e -Author: John Willis -Date: Tue Jul 13 17:06:09 2021 -0400 - - Fixed frontend tests - -commit b15acbf019f83d58ac6365af46e67fe65d83b43b -Author: Aaron Beavers -Date: Tue Jul 13 16:22:27 2021 -0400 - - update call to pa11y in yarn script with flag - -commit b927e94facf9f620c9a18c50f0d80c96fbc873ff -Author: John Willis -Date: Tue Jul 13 15:10:27 2021 -0400 - - Fix backend tests & linter errors - -commit 6448e9f9878d30cd77f91be1aca34a4a0b5e501b -Author: Aaron Beavers -Date: Tue Jul 13 14:58:14 2021 -0400 - - Add faker - -commit 7bc38ca11ab0f6f896aaf1a8134e245da78544be -Author: Aaron Beavers -Date: Tue Jul 13 14:53:08 2021 -0400 - - add logic so homepage displays when pa11y scan is running - -commit 13988b07d461ef37739e025b98e66fbbc4439f48 -Author: Aaron Beavers -Date: Tue Jul 13 14:52:18 2021 -0400 - - add mirage routes - -commit 05d00d14e79311563c989f126bc0b3bf1c287e68 -Author: Jorge Gonzalez -Date: Tue Jul 13 12:49:36 2021 -0400 - - Update docs/Technical-Documentation/TDP-environments-README.md - -commit 3e64d2d4d27542b18b032773c6988198f4b5be73 -Author: Jorge Gonzalez -Date: Tue Jul 13 12:48:19 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 4b8640285fc9bd4134aabf904ba1241e3d28f1f4 -Merge: 9936fafce 4643dab1e -Author: John Willis -Date: Tue Jul 13 12:19:35 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit 4fdba7aa4c5f485531d66d65f2fc3d319def6b0d -Merge: bd7eab980 4643dab1e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jul 13 10:15:13 2021 -0400 - - Merge branch 'raft-tdp-main' into user-role-edits - -commit a99455cf6ebf9a574f588ccfc5d376d7a5d104d7 -Author: abottoms-coder -Date: Mon Jul 12 15:57:03 2021 -0400 - - Updated buildpack documentation for restaging process [draft] - -commit 2856f92f0dafe02e1f05b1fb7e17259e49d754f4 -Author: Angela Milash -Date: Mon Jul 12 12:47:49 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 4babe731d5a67379cd49d3113f58f1db6b647839 -Merge: 54e5a6224 4643dab1e -Author: Jorge Gonzalez -Date: Mon Jul 12 14:37:41 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/1051-tdp-environments - -commit 54e5a62245e831f6616c7255a1e540d926400178 -Author: Jorge Gonzalez -Date: Mon Jul 12 14:10:05 2021 -0400 - - docs: update line endings - -commit 377c3640c13bb2aff147d7bc992a0cc8ffd9ab4e -Author: Jorge Gonzalez -Date: Mon Jul 12 14:09:12 2021 -0400 - - docs: tweak connections to clamav-rest - -commit 03ea976550f7ab94c5ea037f2d3f5d560acf8b16 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 12 16:04:57 2021 +0000 - - Bump redux from 4.0.5 to 4.1.0 in /tdrs-frontend - - Bumps [redux](https://github.com/reduxjs/redux) from 4.0.5 to 4.1.0. - - [Release notes](https://github.com/reduxjs/redux/releases) - - [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md) - - [Commits](https://github.com/reduxjs/redux/compare/v4.0.5...v4.1.0) - - Signed-off-by: dependabot[bot] - -commit 02a10efa6c7aa364896cba2d9aa10290ed20308f -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 12 16:04:05 2021 +0000 - - Bump uswds from 2.11.1 to 2.12.0 in /tdrs-frontend - - Bumps [uswds](https://github.com/uswds/uswds) from 2.11.1 to 2.12.0. - - [Release notes](https://github.com/uswds/uswds/releases) - - [Commits](https://github.com/uswds/uswds/compare/v2.11.1...v2.12.0) - - --- - updated-dependencies: - - dependency-name: uswds - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit cb6eb36b039bf047b9545e62418f833071855ede -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 12 16:03:07 2021 +0000 - - Bump file-type from 16.3.0 to 16.5.1 in /tdrs-frontend - - Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.3.0 to 16.5.1. - - [Release notes](https://github.com/sindresorhus/file-type/releases) - - [Commits](https://github.com/sindresorhus/file-type/compare/v16.3.0...v16.5.1) - - --- - updated-dependencies: - - dependency-name: file-type - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 4643dab1e5c271a7a70835a9a9700724163c6888 -Merge: 130ab620c c4de0f804 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jul 12 11:58:50 2021 -0400 - - Merge pull request #1063 from raft-tech/feat/973-django-admin-508 - - Issue 973: Add initial Django Admin A11y Fixes - -commit ecc3a85807b92020bf9ae8ae74271dd8d07b9d30 -Author: Jorge Gonzalez -Date: Mon Jul 12 11:44:57 2021 -0400 - - fix: Update diagram and docs with clamav and circleci details - -commit 9936fafcec253c03539f617ed37018418dda9b0d -Author: John Willis -Date: Fri Jul 9 19:24:34 2021 -0400 - - Endpoint filtering improvements; fix ability to select different STT for OFA Admin - -commit 418c792b0a70724cb1dbe69c69870ae4649dff51 -Merge: 38d1908b1 130ab620c -Author: John Willis -Date: Fri Jul 9 17:33:12 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit c4de0f80452b918beafa031a25c8c8ea11ccaf1d -Merge: 429d24369 130ab620c -Author: John Willis -Date: Fri Jul 9 17:24:40 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit 130ab620c4f8d934d1ed184be9cf752aba13c998 -Merge: 34944d110 354a789f3 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 9 13:25:32 2021 -0400 - - Merge pull request #1074 from raft-tech/hotfix/847-deploy-staging - - Issue 847: Fix deploy backend script - -commit 429d24369cbbccd0bf4ba80ec56de921ac0d1304 -Merge: 049e20c08 34944d110 -Author: Jorge Gonzalez -Date: Fri Jul 9 12:11:34 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit 354a789f3f79911a8cf5d138613d5b78ce7f8f49 -Author: Jorge Gonzalez -Date: Fri Jul 9 12:04:03 2021 -0400 - - lint: make posix sh compliant - -commit 32c8148fa985290f7599cea4c81593b9a73f0827 -Author: Jorge Gonzalez -Date: Fri Jul 9 11:23:40 2021 -0400 - - hotfix: fix error getting env in deploy-backend script - -commit 34944d1107197462453e25f590d1bfb2f8f4356f -Merge: 1dafa63c1 d02225804 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 9 10:38:42 2021 -0400 - - Merge pull request #977 from raft-tech/ops/609-terraform - - Issue 609, 847: Add Terraform for automated service provisioning - -commit 049e20c0821568f5d26cb1ce1867215c6abeb128 -Merge: 598250044 1dafa63c1 -Author: Jorge Gonzalez -Date: Fri Jul 9 10:25:50 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit 661a086d7702af3390d80ee99d51c7f0610901ca -Author: Jorge Gonzalez -Date: Wed Jul 7 11:59:33 2021 -0400 - - docs: Add current environment docs and diagrams - -commit d022258040b56cdedc60c10b93f0209ae913a7ba -Merge: e08975915 1dafa63c1 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 9 09:52:12 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 38d1908b1b054c76a90c9dc6f5300156a6192990 -Author: John Willis -Date: Thu Jul 8 18:32:14 2021 -0400 - - All endpoints now connected and functional, needs some cleanup and test fixes - -commit cce146df2bda626dfd2205fa430b4f5b6c45d75f -Author: Angela Milash -Date: Thu Jul 8 15:13:42 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 6ca68e01513dbcbcd84a1e6f55de86e97c657b55 -Author: Angela Milash -Date: Thu Jul 8 15:13:16 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 292e59f45e1a33f17f595db05f12cda7bbc819d2 -Author: Angela Milash -Date: Thu Jul 8 15:12:55 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 5bd01b40c102a42c76d50e01a8abc181a7bb0e26 -Author: Angela Milash -Date: Thu Jul 8 15:12:44 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 67ea3340bd5d19efde748156bdfdca2790c8e49d -Author: Angela Milash -Date: Thu Jul 8 15:11:37 2021 -0700 - - Update docs/Sprint-Review/sprint-24-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit e08975915f5511b9b5409d0f15ce09ebb70786c2 -Author: Jorge Gonzalez -Date: Thu Jul 8 12:17:14 2021 -0400 - - fix staging deploy scripts - -commit b63a87c8bdfede52597de08cb1be892b3b15ef5e -Merge: 395d97f16 1dafa63c1 -Author: John Willis -Date: Thu Jul 8 09:28:28 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/834-upload-download-connect-real-endpoints - -commit 1dafa63c133751a67760fe70aae45ea063c7a2e4 -Merge: fb2dd9cef c6f86b318 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 8 09:26:24 2021 -0400 - - Merge pull request #859 from raft-tech/epics/89/issues/416/download-files-frontend - - Issue 416: [Frontend] Add a download button to the Data Files view - -commit 395d97f16bd3b9dc6ac519581f5c8da3959bb628 -Author: John Willis -Date: Wed Jul 7 18:18:51 2021 -0400 - - Hooked up download endpoint to the frontend; implemented CLEAR_FILE_LIST reducer to fix a bug where reports would show for the wrong years - -commit d00b1847c440e1c80f25f25344112c9a7b33c063 -Author: Jorge Gonzalez -Date: Wed Jul 7 16:43:12 2021 -0400 - - Update docs/Architecture Decision Record/017-terraform-service-provisioning.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit c6f86b3188963bd22b1539729f98b35a0633057f -Merge: e5a67807b fb2dd9cef -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jul 7 16:17:30 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit f90f8e03680d608d816bd7e997d3a7e044fbc770 -Merge: e28afcaef fb2dd9cef -Author: Jorge Gonzalez -Date: Wed Jul 7 13:59:37 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit e28afcaef4d9ff2bb715703cd8ee43ad00ebe7f8 -Author: Jorge Gonzalez -Date: Wed Jul 7 12:21:45 2021 -0400 - - docs: Add jq and circleci install instructions - -commit 59825004434ec8405ed9e4406650840caffe22c7 -Merge: 543a6c894 fb2dd9cef -Author: Jorge Gonzalez -Date: Wed Jul 7 12:13:28 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit a10b139b851731ef14df17f35ff3baa4f3a0317d -Author: Jorge Gonzalez -Date: Wed Jul 7 09:45:28 2021 -0400 - - Update terraform/README.md - -commit 3005883e6af079c73d4c2310462f4a7d002519e8 -Author: Jorge Gonzalez -Date: Wed Jul 7 09:43:41 2021 -0400 - - Update terraform/README.md - -commit 066f7069456c459308ceb438dc46b1f841f9074e -Merge: fcd6c61de e5a67807b -Author: John Willis -Date: Tue Jul 6 17:21:16 2021 -0400 - - Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints - -commit fcd6c61dee4fefd10ce5ff9a7c4538329b06aac8 -Author: John Willis -Date: Tue Jul 6 17:21:02 2021 -0400 - - Implemented filtering for ReportFile viewset; update redux reducer for SET_FILE_LIST to correctly rename API fields to frontend expected state variable names - -commit 46ecf6dbb53d80bbd5eac18dcdc129d3c296e2d7 -Author: Angela Milash -Date: Tue Jul 6 14:20:00 2021 -0700 - - create sprint-24-summary.md - -commit fb2dd9cef37e46a17ab80c01ac3f3416220f9533 -Merge: 706b3fd37 993043699 -Author: Angela Milash -Date: Tue Jul 6 10:52:00 2021 -0700 - - Merge pull request #1043 from raft-tech/amilash-patch-1 - - create sprint-23-summary.md - -commit e5a67807b04e59c9157a1d9be136dd32bb5ccd0d -Author: Aaron Beavers -Date: Tue Jul 6 13:21:59 2021 -0400 - - Add section number to download button - -commit 993043699d38293e9add8edbcbea1e2c323c2353 -Merge: 834c24959 706b3fd37 -Author: Angela Milash -Date: Tue Jul 6 09:53:02 2021 -0700 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit 834c24959760ba57d8c14f487b541910bae751bc -Author: Angela Milash -Date: Tue Jul 6 09:52:41 2021 -0700 - - Update docs/Sprint-Review/sprint-23-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 263dd84421240d0a3e67dba4d6f31b7037ade17a -Author: Angela Milash -Date: Tue Jul 6 09:52:33 2021 -0700 - - Update docs/Sprint-Review/sprint-23-summary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 1698c5a2307d759d90cbdbf06feb002b4421c7b5 -Merge: 0834d3a78 21b21885d -Author: John Willis -Date: Tue Jul 6 10:24:54 2021 -0400 - - Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints - -commit 543a6c894085404de69e7914dec2dbd78cfe2f03 -Merge: 53503203b 706b3fd37 -Author: Jorge Gonzalez -Date: Tue Jul 6 10:22:37 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit 21b21885d86ec49b65d0134d67d6fa484d13e967 -Merge: d9438a9fc 706b3fd37 -Author: John Willis -Date: Tue Jul 6 10:20:35 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 1f3133fea826521a7e9e740d664128d92696ab4e -Merge: 321aa2bad 706b3fd37 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jul 6 09:52:28 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 706b3fd370fe55af0f175337406ce0879acff57d -Merge: 14f85ac9c fb2ca56b2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jul 6 09:51:45 2021 -0400 - - Merge pull request #1066 from raft-tech/docs/round-6-synthesis - - [Issue 993] Docs/round 6 synthesis - -commit fb2ca56b2fac7b77f5e19c80f423cd1b8c9ea3b6 -Merge: ba479556c 14f85ac9c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jul 6 09:35:57 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/round-6-synthesis - -commit 0834d3a78833fc1a18921a13c16fdc0251ba6968 -Merge: 6a5aa687d d9438a9fc -Author: John Willis -Date: Fri Jul 2 17:30:53 2021 -0400 - - Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints - -commit d9438a9fc7508071366e4e2ad605283c1d50cb1e -Merge: 7983e0c0e 14f85ac9c -Author: John Willis -Date: Fri Jul 2 17:30:00 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 6a5aa687d30a5fa2ba2dbf24b4fedc26cd5b6ba4 -Author: John Willis -Date: Fri Jul 2 17:29:30 2021 -0400 - - Submit data files to actual API, started on updating retrieval - -commit ba479556c7c0efd88770157ca92c48dba0493023 -Author: Miles Reiter -Date: Fri Jul 2 16:18:47 2021 -0400 - - Update 2021, Spring - Evil User Journeys & TANF Data Errors (Round 6).md - -commit 2a0051814367a81ea33e60e2822ae048fc598315 -Author: Miles Reiter -Date: Fri Jul 2 16:10:02 2021 -0400 - - Update mural links - -commit 53503203b1bf92b715f8929939fe7d62dfec85c0 -Merge: aebb57911 14f85ac9c -Author: Jorge Gonzalez -Date: Fri Jul 2 15:58:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit aa184008542cbc16a57ca84e13c6106e48d3d0d8 -Author: Miles Reiter -Date: Fri Jul 2 15:40:26 2021 -0400 - - Adds further fix for quick nav - -commit 5c4dea7c34ac0006d9bc79c06439a7ab530d0c57 -Author: Miles Reiter -Date: Fri Jul 2 15:39:20 2021 -0400 - - Adds fix for quick nav - -commit 2f2099b49df55adbfcf306a1844882be4afa792e -Author: Miles Reiter -Date: Fri Jul 2 15:36:39 2021 -0400 - - Create 2021, Spring - Evil User Journeys & TANF Data Errors (Round 6).md - -commit 14f85ac9c4f7dfbf7d56d93cd69ea1f39fc325f2 -Merge: e31930912 5379b8249 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 2 15:35:57 2021 -0400 - - Merge pull request #1026 from raft-tech/backend/833/download-file-endpoint - - Backend/833/download file endpoint - -commit 5379b8249e3ffbe60f000d5727a7f82a5ab6dac0 -Merge: 5530dfe63 e31930912 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 2 15:18:15 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint - -commit e319309120cd43754f59dd2d6490661546b38e04 -Merge: 5ca65c039 fb8b67ade -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 2 15:06:36 2021 -0400 - - Merge pull request #1037 from raft-tech/feature/1023-ADR-edits - - Dependabot mass-merge process proposal - -commit fb8b67ade526259f62d05da4b828e2a0b8ae922c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Jul 2 14:48:22 2021 -0400 - - Update docs/Architecture Decision Record/016-dependabot-dependency-management.md - -commit 47192dbcdd4ce8a0ea35fa73a32c0692047af840 -Merge: a98f4246f 5ca65c039 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 2 14:47:04 2021 -0400 - - Merge branch 'raft-tdp-main' into feature/1023-ADR-edits - -commit 321aa2bad5abcd86f3f0e1bad9fead3b09c1125e -Author: Jorge Gonzalez -Date: Fri Jul 2 13:45:18 2021 -0400 - - fix: Remove old service binding during deploy - -commit 665865bb2315a2d7be223dcba497933c34ca57c8 -Author: Jorge Gonzalez -Date: Fri Jul 2 13:41:15 2021 -0400 - - fix: Update S3 instance name text with `staticfiles` and `datafiles` - -commit aebb57911ca19b678b15b243fcb4b0f38ce2e531 -Merge: 987319e95 5ca65c039 -Author: Jorge Gonzalez -Date: Fri Jul 2 12:06:38 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/973-django-admin-508 - -commit 2590b70494643ecb0fff78bc08640c6d6e4256b8 -Merge: baac2cf3a 7983e0c0e -Author: John Willis -Date: Fri Jul 2 11:27:35 2021 -0400 - - Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints - -commit baac2cf3a3d11b170f00b3ec8d1ec4613d861716 -Merge: 7f05899a7 5530dfe63 -Author: John Willis -Date: Fri Jul 2 11:27:19 2021 -0400 - - Merge branch 'backend/833/download-file-endpoint' into feat/834-upload-download-connect-real-endpoints - -commit 332dcdda0fd03df0816ef04ddb19421316701294 -Merge: 947915bda 5ca65c039 -Author: John Willis -Date: Fri Jul 2 10:36:04 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 5530dfe63d015a747e98ff47352681eec3d1631b -Merge: 61ec41f68 5ca65c039 -Author: Aaron Beavers -Date: Fri Jul 2 09:52:21 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint - -commit 7983e0c0e38dd9d2c905e6af9f9050ab66e26479 -Merge: 92d237e79 5ca65c039 -Author: Aaron Beavers -Date: Fri Jul 2 09:32:34 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 5ca65c0396ef458b41a17edef47deb5d9f0e69e4 -Merge: 069976526 5c0e51fca -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jul 2 09:18:33 2021 -0400 - - Merge pull request #1056 from raft-tech/devops/848/setup-new-dev-env - - Update github action for multiple deployment targets - -commit 947915bda685c304ebe0d9dc0ec1914625bba719 -Author: John Willis -Date: Thu Jul 1 18:07:22 2021 -0400 - - Update terraform/README.md - -commit 61ec41f68bc35fe18e8e9086428389605b7102c7 -Author: John Willis -Date: Thu Jul 1 17:49:15 2021 -0400 - - Added additional test cases; fixed issue with permissions discovered by tests - -commit 92d237e7976370d5bd0c3bd86113fb5e13671d1c -Author: John Willis -Date: Thu Jul 1 15:19:34 2021 -0400 - - Review feedback - -commit 987319e959b328f52a8089958103007c3d2d60f2 -Author: Jorge Gonzalez -Date: Thu Jul 1 14:57:45 2021 -0400 - - Add django-admin-508 - -commit 5c0e51fcafdb51d4f3c4a8e1b84b10747fb8dc6e -Author: John Willis -Date: Thu Jul 1 14:45:10 2021 -0400 - - Additional ADR clarification - -commit dd5597b9802d09c3bddc74613a1b069f5c784af9 -Author: John Willis -Date: Thu Jul 1 12:04:01 2021 -0400 - - Updated ADR - -commit a98f4246f010194254fee45b322a5af3894da39e -Merge: dc1582207 069976526 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Thu Jul 1 10:46:58 2021 -0400 - - Merge branch 'raft-tdp-main' into feature/1023-ADR-edits - -commit dc1582207cdb54888cc5571165186b49a7feee32 -Author: abottoms-coder -Date: Thu Jul 1 10:46:38 2021 -0400 - - Updated ADR per PR feedback - -commit 237b49999ed609cc9aa70e628e3dfba80acedc70 -Author: Jorge Gonzalez -Date: Thu Jul 1 10:30:09 2021 -0400 - - Remove touch variables.tfvars - -commit 7f05899a7489dfff86a52659b544c59c63c6d5c9 -Merge: 4b0d4aa21 9dd7d008a -Author: John Willis -Date: Wed Jun 30 17:29:51 2021 -0400 - - Merge branch 'epics/89/issues/416/download-files-frontend' into feat/834-upload-download-connect-real-endpoints - -commit d364b79f5b4bdb2cc49c4379253ba2e4836c2211 -Author: Jorge Gonzalez -Date: Wed Jun 30 13:57:17 2021 -0400 - - Remove deploy-infrastructure-dev from build-and-test workflow - -commit b7ea650a2e7b879b826934e8790a383cbb24e27e -Author: Aaron Beavers -Date: Wed Jun 30 11:45:00 2021 -0400 - - remove scratch script - -commit 794824d4959d614ba9c784116e6fad5204a25377 -Merge: 56dc86922 b2886271e -Author: Jorge Gonzalez -Date: Wed Jun 30 11:25:27 2021 -0400 - - Merge remote-tracking branch 'origin/ops/609-terraform' into ops/609-terraform - - # Conflicts: - # docs/Architecture Decision Record/017-terraform-service-provisioning.md - -commit 56dc869225976b8ae5630b10872fea81ee9b65cb -Author: Jorge Gonzalez -Date: Wed Jun 30 11:17:14 2021 -0400 - - Add ADR for Terraform - -commit 8e55d73deea67733a6572cba8b90291eaba5e682 -Author: Aaron Beavers -Date: Wed Jun 30 11:19:38 2021 -0400 - - Bash Array syntax - -commit b2886271e95842103ef6f8834631a488c9abca12 -Merge: 86f07e829 069976526 -Author: Jorge Gonzalez -Date: Wed Jun 30 11:17:39 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 86f07e829b83a21c88d4ecfa47486c282ded78c2 -Author: Jorge Gonzalez -Date: Wed Jun 30 11:17:14 2021 -0400 - - Add ADR for Terraform - -commit d1c95bc7ff8b5a93b514bee0e7a51f6231da116f -Merge: 0f030cf6b 069976526 -Author: Aaron Beavers -Date: Wed Jun 30 11:01:07 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/848/setup-new-dev-env - -commit 0f030cf6bab0ad5a5df062bbfa98dcb5f36850ac -Author: Aaron Beavers -Date: Wed Jun 30 10:49:54 2021 -0400 - - Proper array access - -commit 6d5364fe76518df970cb07b4366194637cdbcbd9 -Author: Aaron Beavers -Date: Wed Jun 30 10:29:14 2021 -0400 - - Bash array stuff - -commit 47ce9c43076061b2a857017a216e4e2407c8edb6 -Author: Aaron Beavers -Date: Wed Jun 30 10:10:04 2021 -0400 - - Access index 2 - -commit 9dd7d008a31569df3292ae49ce8078bfbafff902 -Merge: 09a8aa93d 069976526 -Author: John Willis -Date: Wed Jun 30 09:49:39 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 4b0d4aa21de8e33cf8dc74c95983204578c62ba7 -Merge: 22f9f7a31 069976526 -Author: John Willis -Date: Wed Jun 30 09:48:11 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint - -commit 069976526249a76f3d8cd8d81405b1dee36d1510 -Merge: b7e8d6d23 7274aaa16 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jun 30 09:44:56 2021 -0400 - - Merge pull request #861 from raft-tech/backend/818-scan-and-upload-data-files - - Issue 818 (PR #2): Add endpoint to scan and upload a Data File to S3 - -commit 42ad64ac57785b418dde694a88055dc5cfae466b -Author: Aaron Beavers -Date: Wed Jun 30 09:11:10 2021 -0400 - - Syntax Error - -commit 7274aaa1660ff03f2ede539ca647e9bb11424752 -Author: John Willis -Date: Tue Jun 29 17:20:53 2021 -0400 - - Removed extra content_type validation due to inconsistent results - -commit 81d1f9a25780afaf8fd3b698dca2fdd5823f3be4 -Author: Aaron Beavers -Date: Tue Jun 29 16:59:10 2021 -0400 - - Extract env name from label - -commit cde3f15662e3a2e33fd09b5fc4e446dd39793098 -Author: Aaron Beavers -Date: Tue Jun 29 16:30:32 2021 -0400 - - Echo output setter statement - -commit 6524c1e8e66fd819fdea94580f2c2323c387ece0 -Author: Aaron Beavers -Date: Tue Jun 29 15:57:26 2021 -0400 - - White space and test logs - -commit 9ac7a44d055c9e26c44504d7fff4a2210e20d445 -Author: Aaron Beavers -Date: Tue Jun 29 15:27:00 2021 -0400 - - Add white space - -commit 35ce8edee5c689494cc52c99d6eb55bfd46277a4 -Author: Aaron Beavers -Date: Tue Jun 29 15:08:24 2021 -0400 - - Insert quotes - -commit c378ff8ac79faa8fc7b2185362b71ebba463e3ec -Author: Jorge Gonzalez -Date: Tue Jun 29 14:53:23 2021 -0400 - - Fix infra job - -commit adda3b4f241acb393bae213c0faab02da4760ffd -Author: Jorge Gonzalez -Date: Tue Jun 29 14:49:31 2021 -0400 - - Fix whitespace - -commit 8a8a6e242ff6192c1edfee8fd3c50d8ba9fb4bed -Author: Jorge Gonzalez -Date: Tue Jun 29 14:46:51 2021 -0400 - - Remove test job - -commit a8ccb54c95d21db220002642e558eb6f185f9ac9 -Author: Aaron Beavers -Date: Tue Jun 29 14:46:05 2021 -0400 - - Simplify names - -commit 1199cf9698ce48af817c1f47953a7dedc21a318d -Author: Aaron Beavers -Date: Tue Jun 29 14:17:32 2021 -0400 - - Using default for new jobs credentials - -commit 6da2032c864bc433e1947149ac51b258fc92256e -Author: Aaron Beavers -Date: Tue Jun 29 14:09:18 2021 -0400 - - Add new jobs for github action - -commit 09a8aa93dc7c1e6da4e6d47be45a0a7793624b72 -Merge: e8df3943a b7e8d6d23 -Author: John Willis -Date: Tue Jun 29 12:01:23 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 981c75a75ff917c42fe10c1e4e96fcfbd9767817 -Author: Aaron Beavers -Date: Tue Jun 29 11:42:35 2021 -0400 - - Update github action for multiple deployment targets - -commit 3ca21675cfd97c41fcb0704e5efd840b93ab651e -Merge: 7e65d1c3a b7e8d6d23 -Author: Jorge Gonzalez -Date: Tue Jun 29 11:21:24 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 9ce9f71721bdaf4067e344e44df719c1b1cf6615 -Merge: 3499c8c13 b7e8d6d23 -Author: John Willis -Date: Tue Jun 29 09:49:38 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 3499c8c13f1805f339bef3f1aab152fb05ed66b3 -Author: John Willis -Date: Tue Jun 29 09:47:03 2021 -0400 - - Expanded regex to reject similar but invalid file extensions, moved validation tests to test_serializers - -commit d2765d5badb7ed9666988cd8510f39e5c7f18c5a -Merge: bd750dc5d b7e8d6d23 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 29 09:38:06 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit b7e8d6d23bfd384158ea1e75b7fe052bcbe4ce0a -Merge: 661793181 da7077e51 -Author: Aaron Beavers -Date: Tue Jun 29 09:21:13 2021 -0400 - - Merge pull request #941 from raft-tech/devops/879/owasp-ignore-false-positives - - Add zap configs to ignore false positives - -commit bd750dc5dcc11d25a4ac45689975fb99202b55e6 -Merge: e3ffa330e 661793181 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 29 09:11:40 2021 -0400 - - Merge branch 'raft-tdp-main' into amilash-patch-1 - -commit 41b5cb003b2af54a7470d8d48fd0536f17cb6fc0 -Author: John Willis -Date: Mon Jun 28 18:48:56 2021 -0400 - - Expanded file extension validator to support file naming conventions without extensions - -commit 88e4e79fef716d57e263446826246c88b3b67560 -Author: John Willis -Date: Mon Jun 28 13:55:29 2021 -0400 - - Clear CircleCI dependency cache - -commit da7077e51f80e6c67b3bcdc3f17085fa44d8961b -Merge: c66a8cb57 661793181 -Author: Aaron Beavers -Date: Mon Jun 28 12:58:15 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 7e65d1c3a63bd738cb287d5f9055822489e8f7b8 -Author: Jorge Gonzalez -Date: Mon Jun 28 12:13:18 2021 -0400 - - Improve instructions for local runs - -commit 31b2b3da9cd4bab7a871e4623074709781a65514 -Merge: b3b830f5f 661793181 -Author: John Willis -Date: Mon Jun 28 12:04:06 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 7987b615c2d60d4ee0bf3aab034c7866746cd5cb -Merge: 488d5e56f 6843f88c1 -Author: Jorge Gonzalez -Date: Mon Jun 28 11:37:53 2021 -0400 - - Merge remote-tracking branch 'origin/ops/609-terraform' into ops/609-terraform - -commit 488d5e56f8abe90b7be70ebe7c3ece51e07f5466 -Author: Jorge Gonzalez -Date: Mon Jun 28 11:37:36 2021 -0400 - - Fix typo and whitespace - -commit 6843f88c13a5e61c93cc1590ed218d0790cf8af5 -Merge: 6a18f4b34 661793181 -Author: Jorge Gonzalez -Date: Mon Jun 28 11:35:50 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 6617931811dad4f16b5fdba21ee1293a84de334a -Merge: f35b9fbad 43bc823cf -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 25 15:21:19 2021 -0400 - - Merge pull request #930 from raft-tech/feat/829-inactive-user - - Issue 829: Communicate to user if they are inactive - -commit 43bc823cf8f48cc1b698e1d83125692b255710cd -Merge: d10f5006d f35b9fbad -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 25 13:48:48 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit f35b9fbad3bc105194d9f71f2c728b8f16d3f365 -Merge: 5699631cf df079cd77 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 25 13:48:12 2021 -0400 - - Merge pull request #1041 from raft-tech/devops/872/update-pa11y-config - - Devops/872/update pa11y config - -commit b3b830f5fa0edd13863934671cdca55683c0ebfd -Merge: 364c1c60a 5699631cf -Author: Jorge Gonzalez -Date: Tue Jun 22 17:14:47 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 6a18f4b34b588f2a4815c4c05ccf1cfb2409c548 -Merge: 6961570dd 5699631cf -Author: Jorge Gonzalez -Date: Tue Jun 22 17:08:44 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit e3ffa330eaae2a10330d6e805577bf7e185ac3bf -Author: Angela Milash -Date: Tue Jun 22 10:59:13 2021 -0700 - - create sprint-23-summary.md - - create and add sprint 23 report information - -commit df079cd779b074535c54db6839c289eaef7e0614 -Merge: 82ddb429c 5699631cf -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 22 13:54:38 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/872/update-pa11y-config - -commit 5699631cfc7c326ab55738cbc9cbf4c9d3aa23cd -Merge: 4aa23511b aec7defd8 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 22 13:54:31 2021 -0400 - - Merge pull request #1022 from raft-tech/update-with-GitNotify - - Update 009-git-workflow.md - -commit 82ddb429cdab6e845c9ebc81a88d5d91b94fd03f -Merge: 0bfae9a8b 4aa23511b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 22 13:49:13 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/872/update-pa11y-config - -commit aec7defd81c98dad8d73b93e803588a7f97686a5 -Merge: 52c8b1f6c 4aa23511b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 22 13:37:03 2021 -0400 - - Merge branch 'raft-tdp-main' into update-with-GitNotify - -commit e8df3943afc3347043f306fdd0ab4fa8dcdab395 -Author: Aaron Beavers -Date: Tue Jun 22 12:42:17 2021 -0400 - - Remove blank import - -commit 49975d9bbefd8a68c3aca61f9e528a570f7f3fe6 -Author: Aaron Beavers -Date: Tue Jun 22 11:51:32 2021 -0400 - - Remove unused import - -commit 3b45379f1cf738afb9b990bcec1b43a17a415bf0 -Author: Aaron Beavers -Date: Tue Jun 22 11:50:33 2021 -0400 - - remove extra new line for linter - -commit 879304a4d97a1008c6b54c5a53d1454b78d74212 -Merge: 6570ba5ec 4aa23511b -Author: Aaron Beavers -Date: Tue Jun 22 11:22:32 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 6961570dd0bd1db5794572b1a3e0d469b995ea1f -Merge: 24314a5ea 4aa23511b -Author: Jorge Gonzalez -Date: Mon Jun 21 14:17:53 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 364c1c60ab6fe293323b6d752aaca413ee831154 -Merge: 2d58b7c66 4aa23511b -Author: Jorge Gonzalez -Date: Mon Jun 21 14:17:32 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 0bfae9a8b278f314b3bbbd1f97d4a8cbbb6fbb89 -Author: Aaron Beavers -Date: Mon Jun 21 13:43:26 2021 -0400 - - create directory for pa11y screenshots - -commit 9a31bcdfa574648a12e19b70d011f7ed140fe40d -Author: Aaron Beavers -Date: Mon Jun 21 13:14:57 2021 -0400 - - Add store artifact directives to circle ci config - -commit 7878f14092502a2c4e79aeaeccf0991f97d0feec -Author: Aaron Beavers -Date: Mon Jun 21 13:14:35 2021 -0400 - - scan all frontend views with pa11y - -commit 24314a5ea718002fa4af2b9eb1b389698c61eb7b -Merge: 4754f1694 907050ec6 -Author: Jorge Gonzalez -Date: Mon Jun 21 11:56:23 2021 -0400 - - Merge remote-tracking branch 'origin/ops/609-terraform' into ops/609-terraform - -commit 4754f169458a65ddf14731cbffd244c48e487b27 -Author: Jorge Gonzalez -Date: Mon Jun 21 11:56:17 2021 -0400 - - Added note on security - -commit 4aa23511bd5f7b4ae9e720a3eee7068c7fbd51bb -Merge: 6eb0fc1d4 21a9c5fce -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jun 21 11:52:25 2021 -0400 - - Merge pull request #1009 from raft-tech/issues/1008-unused-dockerfiles - - Removed Unused Dockerfiles - -commit 907050ec6fbbabcb3fe8a0460497b796f4db325a -Merge: 8aa3cc9cd 6eb0fc1d4 -Author: Jorge Gonzalez -Date: Mon Jun 21 11:49:45 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit d10f5006d6fe54713ab76df0484ccc4e6f62127d -Merge: 4077cec68 6eb0fc1d4 -Author: Jorge Gonzalez -Date: Mon Jun 21 11:45:54 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 21a9c5fce6a553b216e7164449f3f85bc85a492f -Merge: f651305c2 6eb0fc1d4 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jun 21 11:38:39 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles - -commit 6eb0fc1d432cd9173f8247b3fac2789ccfbab149 -Merge: 8afc879dc a83117472 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jun 21 11:35:39 2021 -0400 - - Merge pull request #1034 from raft-tech/kniz-raft-patch-2 - - Update 009-git-workflow.md - -commit a831174728f517c1b54157117068e2c41beaf8c2 -Merge: 51d543be5 8afc879dc -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jun 21 11:22:58 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit 8afc879dca375ad98336c3088d087b8aed155878 -Merge: bc25c3e40 3db4ec39b -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Mon Jun 21 11:22:46 2021 -0400 - - Merge pull request #1033 from raft-tech/kniz-raft-patch-1 - - Update Team-Composition.md - -commit c66a8cb57e26b5c7cb8d217d78a26a7214e9f7fd -Author: John Willis -Date: Thu Jun 17 17:41:39 2021 -0400 - - Actually fix tabbing - -commit 26ef049da2136d536a85cdf7e4ca0be78aad53e2 -Author: John Willis -Date: Thu Jun 17 17:39:06 2021 -0400 - - Fix tabbing in zap conf - -commit 2d58b7c66f38b16226fb5c04844e3f407d8dd605 -Author: John Willis -Date: Thu Jun 17 17:14:40 2021 -0400 - - Moved localstack-setup to /scripts - -commit 6570ba5ecfbbd97f14de01307b5d5a9453d01e33 -Author: Aaron Beavers -Date: Thu Jun 17 15:34:16 2021 -0400 - - Move call to removeOldPreviews to after guard clause - -commit 3db4ec39b22ccc3687db2ba9d63bad182a974cf7 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jun 17 14:37:44 2021 -0400 - - Update docs/How-We-Work/Team-Composition.md - -commit 151443d7722d80ae064cd30b14fe935adba5b866 -Author: Aaron Beavers -Date: Thu Jun 17 12:52:31 2021 -0400 - - lint - -commit c6ae76045b622e1fe47420036f4477b3885b2d87 -Author: Aaron Beavers -Date: Thu Jun 17 12:52:15 2021 -0400 - - Add code to remove old previews - -commit 05710a6885e2768e3e49487c52ef1a476de40b49 -Author: Aaron Beavers -Date: Thu Jun 17 12:52:01 2021 -0400 - - Fix bad comments - -commit 8aa3cc9cd671885afc1c05bbe027fb91bce28699 -Author: Jorge Gonzalez -Date: Thu Jun 17 11:51:04 2021 -0400 - - Update docs and vars script - -commit 22f9f7a311aed5452ea4e92521356fbd482e42ce -Author: Aaron Beavers -Date: Thu Jun 17 09:26:12 2021 -0400 - - Add period to end of doc string - -commit 694800ba4ff6f34736cb05f61a935bfecaafc55f -Merge: 56fdc8c15 a9b937126 -Author: Aaron Beavers -Date: Wed Jun 16 16:48:33 2021 -0400 - - Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/833/download-file-endpoint - -commit 07f468cbb89fbe4dcd4d32fb8204965f9eece2d6 -Merge: b17a88a27 bc25c3e40 -Author: Aaron Beavers -Date: Wed Jun 16 16:46:24 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 00b91a8a0fa19f6a2aaddddbd9792f05f8f928a8 -Author: abottoms-coder -Date: Wed Jun 16 16:32:44 2021 -0400 - - Added line break - -commit 9b45bad40d250fe8e7453b377dcc4d677e3b4d06 -Author: abottoms-coder -Date: Wed Jun 16 16:30:05 2021 -0400 - - Revision from feedback - -commit 56fdc8c156712e66a77de1a6e5f2d1ed3855dba9 -Author: Aaron Beavers -Date: Wed Jun 16 16:29:03 2021 -0400 - - Update import statement to support suggested changes - -commit bcf003ceae867697b324df0bf546a3d3172fca91 -Author: Aaron Beavers -Date: Wed Jun 16 16:28:22 2021 -0400 - - Add test confirming content of downloaded file - -commit 32de8ea3528c7f7151293afa515c5a2470d0c562 -Author: Aaron Beavers -Date: Wed Jun 16 16:26:53 2021 -0400 - - Remove unnessariy serializer - -commit 981ea2f226865314921599807216f6e7a3c15607 -Merge: 297b980a6 bc25c3e40 -Author: Aaron Beavers -Date: Wed Jun 16 16:23:10 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/833/download-file-endpoint - -commit b17a88a278be4a699f4904b56dc6ca7b3abe2091 -Author: Aaron Beavers -Date: Wed Jun 16 16:02:18 2021 -0400 - - Add new rule for false positive discovered in prod scan - -commit 4246627414dde661fc73ac7b972de370f63a77b9 -Author: Aaron Beavers -Date: Wed Jun 16 15:53:58 2021 -0400 - - Remove trailing new lines - -commit 297b980a6601146d67f0ff0e3881f71143ff8e2a -Author: Aaron Beavers -Date: Wed Jun 16 15:50:38 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: John Willis - -commit 33324477b9baa29a02ac82549303b97299a50a87 -Author: Aaron Beavers -Date: Wed Jun 16 14:07:22 2021 -0400 - - Remove rule fixed by another issue - -commit 2033e65b08f9526985c0d49526155946ebc2ea5a -Author: Aaron Beavers -Date: Wed Jun 16 14:06:06 2021 -0400 - - Remove rules we've already solved for - -commit 18be1d10548576006f7f3240b7d9e4bdd9fde532 -Author: abottoms-coder -Date: Wed Jun 16 13:46:09 2021 -0400 - - Initial edit for dependabot mass-merge - -commit 51d543be5b227f55621f7d6fc32c6089be8bad31 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Jun 16 11:54:04 2021 -0500 - - Update 009-git-workflow.md - -commit 18003eeb133bbc0d90e38a4a6cfca1c946a11eba -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Jun 16 11:48:21 2021 -0500 - - Update Team-Composition.md - -commit f1d2061b20c8b6b4aea165b013024eb6426f509d -Merge: c73dddb21 e1b3cb69c -Author: Aaron Beavers -Date: Wed Jun 16 12:16:04 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 45f100a595bd2a5090dbe2ff81659b5cde0fef7e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 16 10:23:36 2021 -0400 - - Update user_role_management.md - -commit 427f7c1bd9686049f833a52eb2c6b43c31dc75f9 -Merge: 9e0da0e9b bc25c3e40 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 16 10:12:22 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/usermgmt-updates - -commit 9e0da0e9be43767148402a0ec651ab9d89ea8758 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Jun 16 09:59:47 2021 -0400 - - updated docs per issue 962 - -commit 4077cec68ea47fad2bfe0a727c9bf6f7d4fdb458 -Merge: 4028c59ef bc25c3e40 -Author: Jorge Gonzalez -Date: Tue Jun 15 18:51:56 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 3f69ad38cbc3b274b8c005dc588257ab9d6cfee4 -Author: Jorge Gonzalez -Date: Tue Jun 15 18:40:28 2021 -0400 - - Update docs - -commit ce29d672ec46732fbaca3a263a81b89ce93783b7 -Author: Jorge Gonzalez -Date: Tue Jun 15 18:40:01 2021 -0400 - - Add env postfix to bind-service args - -commit a9b93712697c9ceca02a205ba82a89b9cf9bf76c -Merge: d7396cdd8 bc25c3e40 -Author: John Willis -Date: Tue Jun 15 15:53:43 2021 -0400 - - Merged in raft-tdp-main and fixed conflicts - -commit f651305c29f5bd778324eb86458877f6bf47924a -Merge: f2db2da3b bc25c3e40 -Author: John Willis -Date: Tue Jun 15 15:50:05 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles - -commit 39ba8a5d1b666abadaf4f2b6053218055ccc337d -Author: Jorge Gonzalez -Date: Tue Jun 15 15:32:46 2021 -0400 - - Delete unused file - -commit f85e93c14ba4b66ab5b89a2a7aaa293ce023ef54 -Author: Jorge Gonzalez -Date: Tue Jun 15 15:20:57 2021 -0400 - - Add test deploy script - -commit 73eca8b83daf5c82f78aab96d8fdcb58fb0f32a8 -Author: Jorge Gonzalez -Date: Tue Jun 15 15:02:55 2021 -0400 - - Minor tweak - -commit 035213c8fe2ac257944d8f1691dafcea0d09a6ba -Merge: 2ca602e4e bc25c3e40 -Author: Jorge Gonzalez -Date: Tue Jun 15 14:58:44 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/609-terraform - -commit 2ca602e4e509b62314c3ae4c91bd526e17688e9a -Author: Jorge Gonzalez -Date: Tue Jun 15 14:51:24 2021 -0400 - - Fix staging config - -commit 90b8e7fff8bf6515284043065b130f687159239b -Author: Jorge Gonzalez -Date: Tue Jun 15 14:31:40 2021 -0400 - - Add various improvements - -commit 9375913ca9e68bca4b814f28f20167c529ca45dc -Author: Jorge Gonzalez -Date: Tue Jun 15 14:31:16 2021 -0400 - - Fix terraform backend for staging - -commit bc25c3e40fe31765c0ad5afe67ba38c535a11ff9 -Merge: 8b7fc0b29 b25a2459d -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 15 13:37:45 2021 -0400 - - Merge pull request #994 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/ipython-7.24.1 - - Bump ipython from 7.19.0 to 7.24.1 in /tdrs-backend - -commit b25a2459d179016cf78deae26567566d070cbccc -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jun 15 16:10:23 2021 +0000 - - Bump ipython from 7.19.0 to 7.24.1 in /tdrs-backend - - Bumps [ipython](https://github.com/ipython/ipython) from 7.19.0 to 7.24.1. - - [Release notes](https://github.com/ipython/ipython/releases) - - [Commits](https://github.com/ipython/ipython/compare/7.19.0...7.24.1) - - --- - updated-dependencies: - - dependency-name: ipython - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 4028c59ef9eeba402a1e8e44d0a8dfe6b39688f5 -Merge: 3575f419e 8b7fc0b29 -Author: Jorge Gonzalez -Date: Tue Jun 15 11:29:42 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 8b7fc0b29114274ea8027d72222681739f9d8bdd -Merge: e1b3cb69c f04a491da -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 15 11:28:48 2021 -0400 - - Merge pull request #995 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/ipdb-0.13.9 - - Bump ipdb from 0.13.7 to 0.13.9 in /tdrs-backend - -commit f04a491da836581daf745bfcdf64e6ad82815762 -Merge: c52aeb438 e1b3cb69c -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Tue Jun 15 11:13:52 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/ipdb-0.13.9 - -commit 3575f419e3aeec627e8ccf0bf94a85b5f39b2f26 -Merge: d235d13d7 e1b3cb69c -Author: Jorge Gonzalez -Date: Tue Jun 15 10:19:02 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 5c79b2297cdea69ce3e6e20acae1b5cbb8494bd2 -Author: Jorge Gonzalez -Date: Mon Jun 14 16:15:31 2021 -0400 - - ops(609, 847): Add Terraform for automated service provisioning - -commit c265e56be6bf9f9f06e375364ef8b04ab4465f22 -Author: Aaron Beavers -Date: Mon Jun 14 14:30:57 2021 -0400 - - Remove lint - -commit 15f443c29cbcc6161d611286c94c3dce52a74dc6 -Author: Aaron Beavers -Date: Mon Jun 14 13:39:48 2021 -0400 - - Tests pass - -commit b1bc242dba34355c03854d90fca5265bb0c74b77 -Author: Aaron Beavers -Date: Mon Jun 14 13:39:37 2021 -0400 - - Add new tests - -commit dcbe2c2ccd2af1ed7ba7300a7fba5ee3b7ede746 -Author: Aaron Beavers -Date: Mon Jun 14 13:39:30 2021 -0400 - - Add test helpers - -commit df0a979b73f9237f97a42ad9b37cf2b267758c6d -Author: Aaron Beavers -Date: Mon Jun 14 13:39:01 2021 -0400 - - years are numbers - -commit f2db2da3bbd361acf52c7a433e7b49cfed5d003b -Merge: 34e8eb204 e1b3cb69c -Author: John Willis -Date: Mon Jun 14 10:56:56 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles - -commit d7396cdd87bd69942e48a41f1d0e6f713e302b6e -Author: John Willis -Date: Mon Jun 14 10:43:16 2021 -0400 - - Updated README for test command - -commit ab20a887e8a657de4e81633051d4f99b5a7ea125 -Author: John Willis -Date: Mon Jun 14 10:18:54 2021 -0400 - - Call wait_for_services.sh in test command instead of using a separate step for Circle CI - -commit 170aaabedb59d0fafb27900ddf9be700f980b2f3 -Merge: 9a8b9979c e1b3cb69c -Author: John Willis -Date: Mon Jun 14 10:07:52 2021 -0400 - - Merged in raft-tdp-main and fixed conflicts - -commit 52c8b1f6c0e7ff18a2bbf34f917073df4ef398d6 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 14 09:06:56 2021 -0400 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit db4bbcdc41be92a753dace2c88cb6da28c0bdd2c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 14 09:06:50 2021 -0400 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit e1b3cb69c246b8411e2e94ca3ee7205c07513a68 -Merge: 81028cb6a 06bbb5b70 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 18:26:28 2021 -0400 - - Merge pull request #991 from raft-tech/kniz-raft-patch-1 - - Update Roadmap-and-Backlog.md - -commit 06bbb5b703d015af1149448667f72bf89e7fef77 -Merge: 637c17f9b 81028cb6a -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 17:38:26 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 81028cb6a1ca30ddce02fcfe749a01b0ed248d7e -Merge: be6128874 1b768f651 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 17:38:09 2021 -0400 - - Merge pull request #1005 from raft-tech/kniz-raft-patch-2 - - Create sprint-22-summary.md - -commit 1b768f6512418ac660058e20b4e3d6f8b8e7616b -Merge: 6bfa0558d be6128874 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 16:39:09 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit be61288740afbbeae272667eaf90aada9f3912d9 -Merge: 28928be31 b225cba9e -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 16:38:46 2021 -0400 - - Merge pull request #1006 from raft-tech/kniz-raft-patch-3 - - Create sprint-21-summary.md - -commit b225cba9e1c33cad55851a2b6d73ad42a2c8db4e -Merge: 00db6c305 28928be31 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 16:04:20 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-3 - -commit 28928be31fe96a7a44a3e895ad3da3c8f7ed708d -Merge: 98bafded5 a9e11c1c2 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 15:42:46 2021 -0400 - - Merge pull request #985 from raft-tech/adp/secret-keys-doc - - Secret key prevention doc - -commit 637c17f9b96969550a5c13088cf263b7480aa5d9 -Merge: 371dc797f 98bafded5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 15:42:13 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 6bfa0558d9b3bcd2ffe3f28ad0cf9d44a817c56e -Merge: 60fc8403c 98bafded5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 15:41:53 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit 00db6c305fe4e8d90037310df96ffd7c88325299 -Merge: 80baa97be 98bafded5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 15:41:39 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-3 - -commit 07ce7963d82895ee93240cff13c433f61968378f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jun 11 11:55:26 2021 -0400 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit 4e291ff6619a05c59e71dbd07e5b6e40911838f4 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jun 11 11:30:23 2021 -0400 - - Update 009-git-workflow.md - -commit d235d13d7d6d06b0c29a36763d95399508472b25 -Merge: a0f901dde 98bafded5 -Author: Jorge Gonzalez -Date: Fri Jun 11 11:00:02 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit a9e11c1c2c4ad68cc96fff48f03dbe9379c1be02 -Merge: 7f8da5fc6 98bafded5 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 09:38:37 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/secret-keys-doc - -commit c52aeb43877d863b2eefa56abbd4f22dfb63301d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri Jun 11 13:23:21 2021 +0000 - - Bump ipdb from 0.13.7 to 0.13.9 in /tdrs-backend - - Bumps [ipdb](https://github.com/gotcha/ipdb) from 0.13.7 to 0.13.9. - - [Release notes](https://github.com/gotcha/ipdb/releases) - - [Changelog](https://github.com/gotcha/ipdb/blob/master/HISTORY.txt) - - [Commits](https://github.com/gotcha/ipdb/compare/0.13.7...0.13.9) - - --- - updated-dependencies: - - dependency-name: ipdb - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 98bafded58561dc2ab7e0c74928fd10001dfb9fc -Merge: 04fd64f06 9b35f1adb -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Fri Jun 11 09:17:42 2021 -0400 - - Merge pull request #1016 from raft-tech/dependabot/pip/tdrs-backend/django-3.2.4 - - Bump django from 3.2.3 to 3.2.4 in /tdrs-backend - -commit c73dddb21e22715e19da7bc65f4f34a48c4a7c46 -Merge: c2736a4cd 04fd64f06 -Author: John Willis -Date: Thu Jun 10 16:13:59 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 9a8b9979cfc4e6eb602ed7f2faba1b1e0954813f -Author: John Willis -Date: Thu Jun 10 15:47:59 2021 -0400 - - Add localstack step back to CI because wait_for_services.sh doesn't affect the docker-compose run command - -commit d3bd8060020bccd576e1a807a75fd46bffff0982 -Author: John Willis -Date: Thu Jun 10 15:40:53 2021 -0400 - - Move S3 bucket check from CI to wait_for_services - -commit 9b35f1adb66aacba78e79fec2b2f7b4e9c2ebab3 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu Jun 10 18:40:23 2021 +0000 - - Bump django from 3.2.3 to 3.2.4 in /tdrs-backend - - Bumps [django](https://github.com/django/django) from 3.2.3 to 3.2.4. - - [Release notes](https://github.com/django/django/releases) - - [Commits](https://github.com/django/django/compare/3.2.3...3.2.4) - - --- - updated-dependencies: - - dependency-name: django - dependency-type: direct:production - ... - - Signed-off-by: dependabot[bot] - -commit 9b5c4cea6c68522eecca0e8ac39fa3e0be090dc7 -Merge: 61981ede7 dc394c05e -Author: Aaron Beavers -Date: Thu Jun 10 12:01:47 2021 -0400 - - Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/833/download-file-endpoint - -commit 61981ede7ac1b215fb7a14504c825f513478aac6 -Merge: cb493fb20 04fd64f06 -Author: Aaron Beavers -Date: Thu Jun 10 12:01:44 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/833/download-file-endpoint - -commit cb493fb20d3cf7258bbc7a18275cd91464e2619d -Author: Aaron Beavers -Date: Thu Jun 10 11:13:13 2021 -0400 - - Remove extraneous white space - -commit 4b3f31f7575231f0d693457189996384328a18bb -Author: Aaron Beavers -Date: Thu Jun 10 11:13:01 2021 -0400 - - Fix long line - -commit 279b7ed1b187470f55ae76caabf30572e24e8cc4 -Author: Aaron Beavers -Date: Thu Jun 10 11:12:31 2021 -0400 - - remove duplicate permission resulting from merge - -commit 34e8eb2047161be13cfa6bca1729ce564add17b4 -Merge: ffed2ada8 04fd64f06 -Author: John Willis -Date: Wed Jun 9 18:21:03 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/1008-unused-dockerfiles - -commit dc394c05e94b41183e6daa0a31850a3e70d5dc8c -Merge: eafcc428c 04fd64f06 -Author: John Willis -Date: Wed Jun 9 18:17:33 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 04fd64f0612c71f48fa1646991e85b7d28471129 -Merge: 8edb04f6c 42ae5e859 -Author: Andrew <84722778+abottoms-coder@users.noreply.github.com> -Date: Wed Jun 9 17:13:17 2021 -0400 - - Merge pull request #866 from raft-tech/issues/865 - - Issue 865: Add 404 routes to nginx config file - -commit 91be1a787c1db4336876697f9709530b2191ec9e -Merge: d537c3ea3 eafcc428c -Author: Aaron Beavers -Date: Wed Jun 9 15:40:28 2021 -0400 - - Merge branch 'backend/818-scan-and-upload-data-files' into backend/833/download-file-endpoint - -commit ffed2ada867f4b5d921ab472cd871595f961c0de -Author: John Willis -Date: Wed Jun 9 12:47:06 2021 -0400 - - Upgrade image used for CircleCI machine executor - -commit eb7e9c85b43228acea38fe45b7acf7154e239f94 -Author: John Willis -Date: Tue Jun 8 18:21:42 2021 -0400 - - Removed unnecessary dockerfiles in favor of leveraging multi-stage builds - -commit c2736a4cd4c6c0097484e0db435e2ae95283684b -Merge: b0ecd08e2 8edb04f6c -Author: John Willis -Date: Tue Jun 8 17:08:30 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 85b3911a8826d4f843e3944feafa7d2ae5991574 -Merge: 8be2003f6 8edb04f6c -Author: John Willis -Date: Tue Jun 8 17:04:55 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit d537c3ea3c9d45dae6cd32b92d6f91d8bc45da7e -Author: Aaron Beavers -Date: Tue Jun 8 15:57:00 2021 -0500 - - Before my puter crashed I did this, recovering - -commit 7f8da5fc675a4ed0de75e227c5e77042ec95ccb9 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 16:18:54 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit fd104268ba9d3984a2a0240c97cf8a8641dbe3f5 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 16:16:30 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit a34d29c5b066a26879afc9142b0ced15c1207045 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 16:14:45 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 42ae5e859f60df15c5107885a959f169213f62bb -Author: Aaron Beavers -Date: Tue Jun 8 16:05:03 2021 -0400 - - Reintroduce root public - -commit 80baa97bef3a7a326c6ef5913099280dcbc278f2 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Jun 8 14:37:08 2021 -0500 - - Create sprint-21-summary.md - -commit 60fc8403c004199a396244241fdb9cab8c884fe6 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Jun 8 14:32:55 2021 -0500 - - Create sprint-22-summary.md - -commit 498af8413b99e30d3d5d9980200038a4fa737a45 -Author: Aaron Beavers -Date: Tue Jun 8 12:58:09 2021 -0400 - - typo - -commit c1d66037fa030199f116b231de9c0088e587c9dc -Author: Aaron Beavers -Date: Tue Jun 8 12:39:16 2021 -0400 - - typo - -commit f8bd6033634272d091c718b60e0f736e29cd5bc1 -Author: Aaron Beavers -Date: Tue Jun 8 12:16:16 2021 -0400 - - Using include with correct docker copy - -commit a0f901ddef7e3a3201353ffb2219da4a045f6341 -Author: Jorge Gonzalez -Date: Tue Jun 8 11:13:33 2021 -0400 - - guard effect with active state - -commit a3a63b91d5d84fbf612af3fb7a625f98a66a27b2 -Author: Jorge Gonzalez -Date: Tue Jun 8 11:09:13 2021 -0400 - - Make email a link - -commit 376fd35e77f6cc76f41c4ecbc1551784ab9fa996 -Author: Jorge Gonzalez -Date: Tue Jun 8 11:06:07 2021 -0400 - - Remove is_active from django admin - -commit a449f1854753d7974a5dc7de2b7381d30c2dd35d -Author: Aaron Beavers -Date: Tue Jun 8 10:31:10 2021 -0400 - - Update buildpack conf - -commit d538a262350015bb76fe5ca5af594b42f0a9e013 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 09:25:11 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit b3ed26ca0e1424d8fceafb651cc0ccdff723aed4 -Merge: 16ca2aadc 1237fb2d7 -Author: Jorge Gonzalez -Date: Tue Jun 8 09:18:28 2021 -0400 - - Merge remote-tracking branch 'origin/feat/829-inactive-user' into feat/829-inactive-user - -commit 16ca2aadcc3131d4e0827537c9178d9af18c81be -Author: Jorge Gonzalez -Date: Mon Jun 7 15:55:54 2021 -0400 - - Update tabIndex and add minor tweak - -commit 255406b60cf79f5408da2809b104b8661bccdd6e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 09:10:53 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 01679f799351241fe2e514c94df984008640577b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:35:48 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit b4b9c56d8200faaeeadf97e78a5cdcceb62860b3 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:35:16 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit ed81b21421ec45f8a6f315e5f278621e7ade5a61 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:34:23 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 2ccbd81e9e007a0698eaa258f7929513c1a05546 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:33:58 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit fdd0079c4311d8caf904a2055e42692b26e4530b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:33:24 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit c1ae3e6e7df508903c8c9826313ff89780dd4488 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:32:53 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 06a818818a25114d3327ed9983b4e234189f4dd3 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:31:45 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 5984b6cca00edbabc524826b954e74d6e8dcfce4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:29:27 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 33e08058aef20f5a1190669ee9d69116a4e2c5f1 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:29:03 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 7bd25964f5388c23e9775e4103b25cc9b77432f3 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 8 08:27:54 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 7f53a85ae3544b56537444a9fa8460fb2aa46814 -Author: Aaron Beavers -Date: Mon Jun 7 16:42:27 2021 -0400 - - fix nginx config - -commit eafcc428c5b798258312a9c0595d07604e1ff482 -Author: John Willis -Date: Mon Jun 7 16:26:31 2021 -0400 - - Fix error in zap scanner script - -commit a43ff26512c65dc613384caa2353b7bfc0bff83e -Author: John Willis -Date: Mon Jun 7 16:16:32 2021 -0400 - - Remove unnecessary down/build/up steps in zap-scanner to account for increased web startup time - -commit 7c685a234339ca3708e8515056f7049f0485f156 -Author: John Willis -Date: Mon Jun 7 15:58:09 2021 -0400 - - Ensure zaproxy waits on web now that web is waiting longer to start for localstack - -commit 1237fb2d7674a904f4d68390f9a8d31e6cb76cfd -Author: Jorge Gonzalez -Date: Mon Jun 7 15:55:54 2021 -0400 - - Update tabIndex - -commit 96b0f54babee40a65d99c26ec2a071e30d90db9d -Author: John Willis -Date: Mon Jun 7 15:49:18 2021 -0400 - - Fix path issue in localstack check - -commit 71a934f8cd4f1128ae99014acc48c29da77e7915 -Author: John Willis -Date: Mon Jun 7 15:32:49 2021 -0400 - - Add a test step to wait for localstack to finish initializing bucket - -commit e99eae020de33bf32988a4d07103a3a8b4db8cc3 -Author: John Willis -Date: Mon Jun 7 14:31:04 2021 -0400 - - Fix permissions - -commit 821cdbdbda6b6356a94f67c9ec8c1bacb73d9625 -Merge: 16656ea71 8edb04f6c -Author: John Willis -Date: Mon Jun 7 14:17:10 2021 -0400 - - Merged in raft-tdp-main and fixed conflicts - -commit c584f8467065aadcb67d9411f526d91d0b1f03a1 -Author: Jorge Gonzalez -Date: Mon Jun 7 13:53:03 2021 -0400 - - Make label a span - -commit 4b0492cd7173bc7dc321312055cefb1a30ee010e -Author: Jorge Gonzalez -Date: Mon Jun 7 13:23:13 2021 -0400 - - Fix a11y issue with error alert - -commit 0c18907b5fe81690f4281925252a061e244756ab -Author: Aaron Beavers -Date: Mon Jun 7 13:07:13 2021 -0400 - - Remove quotes from include and add semi colon - -commit 21e16fc89f64425f0894c3f5b27b1c7b4d090fb2 -Author: Aaron Beavers -Date: Mon Jun 7 12:47:58 2021 -0400 - - Typo - -commit 3cdaeee143d34bc4d2bb760a454f771d5c2b8e2d -Author: Aaron Beavers -Date: Mon Jun 7 11:45:34 2021 -0400 - - typo - -commit c26309d3063b66d32052ae05784c8b91c3805a8e -Author: Aaron Beavers -Date: Mon Jun 7 11:37:56 2021 -0400 - - Add location conf to dockerfile - -commit 0df011e53a373a5af2afc65d4b697106b17f4cd6 -Merge: 3b97bac03 8edb04f6c -Author: Jorge Gonzalez -Date: Mon Jun 7 10:36:29 2021 -0400 - - Merge - -commit 93a857aa95b0f8a952f67f739384542f3b1f6a8c -Author: Aaron Beavers -Date: Mon Jun 7 10:16:25 2021 -0400 - - add locations to the frontend deployment script - -commit b51328ce6eb9141fa228980648f4e96dedd25a8c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 7 08:40:43 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - - Co-authored-by: John Willis - -commit a8f862702cca03701c95c18ac0e315acba966830 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 7 08:40:07 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - - Co-authored-by: John Willis - -commit 5b582bc75bf803be5e6f77c44a9defda5d034e8d -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Mon Jun 7 08:39:25 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - - Co-authored-by: John Willis - -commit 14d900b5502a74a87d7bedec7a86cb46f803f907 -Author: Aaron Beavers -Date: Fri Jun 4 11:57:59 2021 -0400 - - set nginx configs to use an include for locations - -commit 54dec68dc3f672117c34c45aef6c1f1d1761f067 -Merge: 4c308a419 8edb04f6c -Author: Aaron Beavers -Date: Fri Jun 4 11:57:28 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 - -commit 8edb04f6cb4eff7311463bf8f5936dd4b8026b83 -Merge: dbd1a52d7 092b64dfd -Author: John Willis -Date: Fri Jun 4 11:49:44 2021 -0400 - - Merge pull request #664 from raft-tech/epics/398/backend/643/list-years - - Issue 643: Endpoint for retrieving a list of years reports are available - -commit 8be2003f6d18a963d529356beea90a47f46828d2 -Author: Aaron Beavers -Date: Fri Jun 4 10:13:36 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: John Willis - -commit 3b97bac0392fa6d02f8b7ff5553a7b3b1bd496b3 -Merge: 201b30135 dbd1a52d7 -Author: Jorge Gonzalez -Date: Fri Jun 4 10:01:39 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 16656ea715c89eb3ad8397bee1cc0f979657650a -Author: John Willis -Date: Thu Jun 3 17:56:39 2021 -0400 - - Revert zap changes that didn't do anything - -commit b44e6a613d63719b93ae8b4ccd4ad58571350129 -Author: John Willis -Date: Thu Jun 3 17:48:15 2021 -0400 - - Remove docker compose change that didn't work - -commit d1eb8d165b8ac76910c7cdac1b17145a3e1ab2fc -Author: John Willis -Date: Thu Jun 3 17:42:40 2021 -0400 - - Remove unnecessary down/build/up steps in zap-scanner to account for increased web startup time - -commit d42a75b6225b42ab288ecac91bb7bd48fc77ad15 -Author: John Willis -Date: Thu Jun 3 17:33:53 2021 -0400 - - Ensure zaproxy waits on web now that web is waiting longer to start for localstack - -commit 597756c8bd7568aca0104f9b5139c21421612b4a -Merge: 4b5f68b7c dbd1a52d7 -Author: John Willis -Date: Thu Jun 3 17:33:19 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 092b64dfdf41d0a69e42925e436febce82d13803 -Author: John Willis -Date: Thu Jun 3 17:31:44 2021 -0400 - - Remove unintentional change to docker compose - -commit 6fdab0e364c178e9316e9ead0f4930fb04ac0056 -Author: John Willis -Date: Thu Jun 3 17:28:56 2021 -0400 - - Fix error that could occur if user doesn't have STT set - -commit 7cdd13531ee41dc4f988c2375851b0bdbcf3f108 -Author: John Willis -Date: Thu Jun 3 17:18:37 2021 -0400 - - Ensure zaproxy waits on web now that web is waiting longer to start for localstack - -commit 4b5f68b7c38bfcc2280bccfccde73c7b12039800 -Author: John Willis -Date: Thu Jun 3 17:08:29 2021 -0400 - - Reset docker compose change - -commit e479794d1020e81e13987e4f7bc3a374ab06a05a -Merge: 7b383eab3 dbd1a52d7 -Author: John Willis -Date: Thu Jun 3 16:45:47 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 204cfa2de399f8fe95714c26ab13331ddff969eb -Author: John Willis -Date: Thu Jun 3 16:02:09 2021 -0400 - - Update wait-for-it to point to health endpoint, which doesn't return 200 until services are initialized - -commit dbd1a52d7cd3b5ae51ee7a4a01de07d21c5302c1 -Merge: ddb6feb7a 94b0e8272 -Author: John Willis -Date: Thu Jun 3 15:36:10 2021 -0400 - - Merge pull request #988 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/pytest-cov-2.12.1 - - Bump pytest-cov from 2.12.0 to 2.12.1 in /tdrs-backend - -commit 7b383eab3bddcf72402d1d6d96e68e3d67d37cfb -Author: John Willis -Date: Thu Jun 3 15:35:26 2021 -0400 - - Fix linter error - -commit 8ef9cb94e97cc0bf448fe3f1f454a011f79ae06c -Author: John Willis -Date: Thu Jun 3 15:20:25 2021 -0400 - - Remove commented out code - -commit 0964d019a910e87cc70b15a3ad4825ac11b14312 -Author: Aaron Beavers -Date: Thu Jun 3 15:11:54 2021 -0400 - - Implement suggested change from john - -commit f56b0337bd7141566a92e35cb0094b109e1b9461 -Author: Aaron Beavers -Date: Thu Jun 3 15:11:20 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: John Willis - -commit b2f4c8c49d1e0e5799e33b3cf556f694decaf088 -Author: John Willis -Date: Thu Jun 3 15:11:02 2021 -0400 - - Only attach localstack volume for persistent storage in local docker-compose environments - -commit 371dc797f30db527db11baa6eafaa61dd46952a2 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Jun 3 14:05:51 2021 -0500 - - Update Roadmap-and-Backlog.md - -commit 201b301352a6072bbe4cbf2938ff1e7bfe6da22a -Author: Jorge Gonzalez -Date: Thu Jun 3 13:17:25 2021 -0400 - - Remove dev setting - -commit c69b29e6619a4aa352a9cb50638d537abf61ef78 -Author: Jorge Gonzalez -Date: Thu Jun 3 13:16:02 2021 -0400 - - Update copy to Deactivated - -commit b0ecd08e2a76f76440500264fdd33fe2212282df -Merge: 5aa740f80 ddb6feb7a -Author: Aaron Beavers -Date: Thu Jun 3 12:27:08 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 9fab304119e2e393062a9954367cef561ed441e2 -Author: Jorge Gonzalez -Date: Thu Jun 3 11:32:41 2021 -0400 - - Fix migration - -commit 5667c7803043a72a4949b2e41d348a2f2706048d -Author: Aaron Beavers -Date: Thu Jun 3 11:26:04 2021 -0400 - - Add ofa admin factory with no default stt - -commit 12e564b26f75c0020bef2115480ff67eaecbc548 -Author: Aaron Beavers -Date: Thu Jun 3 11:25:33 2021 -0400 - - Refactor controller to avoid accessing non existant value when no stt - -commit 9422723be07780d2f99c644fab3a31f08eef5b00 -Author: Aaron Beavers -Date: Thu Jun 3 11:07:57 2021 -0400 - - Add new test to capture ofa admin with out stt - -commit c106bcb0719183c3f69b3a96677705c38a59eeb9 -Author: Aaron Beavers -Date: Thu Jun 3 11:07:39 2021 -0400 - - Update report years tests to use new utility - -commit 3af663b1ba5ae164bf4d8cda547017491445d86e -Author: Aaron Beavers -Date: Thu Jun 3 10:59:08 2021 -0400 - - Add utility for creating a list of reports for testing - -commit 885c4aee6ada23bace2592c241518ea7333eac8d -Merge: b5481999e ddb6feb7a -Author: Jorge Gonzalez -Date: Thu Jun 3 10:26:21 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - - # Conflicts: - # tdrs-backend/tdpservice/users/admin.py - # tdrs-backend/tdpservice/users/api/login.py - # tdrs-backend/tdpservice/users/models.py - # tdrs-backend/tdpservice/users/test/factories.py - # tdrs-frontend/src/components/EditProfile/EditProfile.test.js - -commit 94b0e82723a4905df6ccb9d51a49f394f51ced93 -Merge: 416fd8102 ddb6feb7a -Author: John Willis -Date: Wed Jun 2 19:11:51 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/pytest-cov-2.12.1 - -commit 4c308a419a647bf2a5189d59926e401b7af5fe5c -Merge: f14a7e874 ddb6feb7a -Author: John Willis -Date: Wed Jun 2 19:11:29 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit f9de1bbd9dac079336298b52893ceb391b8df56d -Merge: c74b23cfb ddb6feb7a -Author: John Willis -Date: Wed Jun 2 16:41:57 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit a20de281ad694c3a770dea47fb841eeb70736e18 -Merge: 21f17a96d ddb6feb7a -Author: John Willis -Date: Wed Jun 2 16:40:12 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit ddb6feb7aa30ccced8e1ef30e2ca97168ad686b4 -Merge: b191b5ef4 7458d0ed7 -Author: John Willis -Date: Wed Jun 2 16:38:31 2021 -0400 - - Merge pull request #916 from raft-tech/fix/858-part-2 - - Issue 858: Upload functionality improvements - -commit 7458d0ed7426e71c23e0ec7e230ee15f21e58d7e -Merge: 6a28a703f b191b5ef4 -Author: Jorge Gonzalez -Date: Wed Jun 2 16:25:22 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit 21f17a96d819d8e2e5b448493c13326c3e5f224b -Merge: c8fa81b10 b191b5ef4 -Author: John Willis -Date: Wed Jun 2 15:21:49 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit b191b5ef440cff1bece7979ef7e31aae3bd40f60 -Merge: f47c6c28c 5e9967c07 -Author: John Willis -Date: Wed Jun 2 15:14:45 2021 -0400 - - Merge pull request #894 from raft-tech/feat/374-uuids - - Issue 374: Capture UUID during login.gov setup - -commit b5481999e77d3dc11cb463464fac6fc909d28f63 -Author: Jorge Gonzalez -Date: Wed Jun 2 13:56:21 2021 -0400 - - Deactivated - -commit f488a97ddf735e3914ceafc49dd74c05265973a0 -Merge: 20e4d0439 f47c6c28c -Author: Jorge Gonzalez -Date: Wed Jun 2 13:42:57 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 6a28a703fc476a75328d63faae1c89a8a1a6d870 -Merge: 0c43e1da1 f47c6c28c -Author: John Willis -Date: Wed Jun 2 13:31:56 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit 5e9967c07b950761e8fbe6f032b3fcec4fdc8c6e -Merge: 8f235f362 f47c6c28c -Author: John Willis -Date: Wed Jun 2 11:48:36 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit f47c6c28cb4050fa244550ac4cdce22b61d79252 -Merge: 04c70a6a5 110f2964b -Author: John Willis -Date: Wed Jun 2 11:48:22 2021 -0400 - - Merge pull request #986 from raft-tech/hotfix/pyjwt-decode-change - - Hotfix: Resolve breaking change in PyJWT upgrade - -commit 20e4d0439936a50f602f0f3b836989a5f8d9535a -Author: Jorge Gonzalez -Date: Wed Jun 2 10:41:32 2021 -0400 - - Update tdrs-backend/tdpservice/users/api/authorization_check.py - -commit dac194bba852890e3837880eca26150db26ed82a -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Jun 2 09:22:40 2021 -0500 - - Update Roadmap-and-Backlog.md - -commit 416fd8102fa707eba1056edeb04e1f84f16061b3 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Wed Jun 2 06:52:47 2021 +0000 - - Bump pytest-cov from 2.12.0 to 2.12.1 in /tdrs-backend - - Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.12.0 to 2.12.1. - - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) - - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v2.12.0...v2.12.1) - - --- - updated-dependencies: - - dependency-name: pytest-cov - dependency-type: direct:development - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit c74b23cfbadcc741932f5bb91494cf280aa02f4e -Merge: 94553be06 04c70a6a5 -Author: John Willis -Date: Tue Jun 1 17:44:53 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 0c43e1da1fb02e936dfb6339d7dfaf6eb55684fd -Merge: dbedeffc4 04c70a6a5 -Author: John Willis -Date: Tue Jun 1 15:43:47 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit f14a7e874de9ca0593a44f2a9f34d90a844af2da -Merge: d20e8d35a 04c70a6a5 -Author: John Willis -Date: Tue Jun 1 15:40:58 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit 110f2964b8a5ca3a3334d728a2b078f17f668103 -Author: John Willis -Date: Tue Jun 1 14:52:35 2021 -0400 - - Fix linter errors - -commit 86bae562066670d9ed6865a21fd5612da17911b4 -Author: John Willis -Date: Tue Jun 1 14:38:20 2021 -0400 - - Hotfix: Resolve breaking change in PyJWT upgrade - -commit cbabf0e63c0e75125183980d0f94472acc2b07a8 -Author: Jorge Gonzalez -Date: Tue Jun 1 11:32:54 2021 -0400 - - Minor fixes - -commit 78f78b4b9e692befe6395e668e00c86095a61829 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 12:29:19 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 931adf7a7be600bbd558cb90c6642fa6d8cfdd4f -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 12:27:05 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 3a3823781f69e4d1c19793e34ff3a115af72a805 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 12:23:13 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 3217ad312ce9027a3fa7c0599b846cd7c0125b0c -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 11:04:34 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 94634e597602491934f186458ea07622e60ed255 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 11:02:25 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 22ace1e3c7a1c85998b4b5e7701b09dc73dd2ad4 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:58:21 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 60167b32af844b8d8ca19b2e825398cd60276883 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:52:47 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 4231e7d0d45e9987f0a2eaf0cee01a76d836c0a2 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:45:09 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 15ba06df4b0d7ec98a75b76b8cd6d78f9ba3a844 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:43:32 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit ebc7aa5cf700472de8fed60a22f84e134a222043 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:41:03 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 5a8c6d91cf87ddf7333b0a3d8230fbd45ee7dbaf -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:34:36 2021 -0400 - - Update docs/How-We-Work/Secrey-Key-Mgmt.md - -commit 89795ee80abc82157670f067330d92ea20a7fb4f -Author: Jorge Gonzalez -Date: Tue Jun 1 10:19:38 2021 -0400 - - Lint - -commit 5118c3807123f07a02cd25c23bdf0a454e624a06 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Tue Jun 1 10:24:13 2021 -0400 - - secret key prevention doc - -commit eb9707b8276d3e16aaee5881e42bb8e78d8cba7d -Author: Jorge Gonzalez -Date: Tue Jun 1 10:05:14 2021 -0400 - - Add test for inactive account auth check - -commit 5aa740f8064c7ce1cb6e72de7ceb080231f9cb03 -Merge: 9205bad24 04c70a6a5 -Author: John Willis -Date: Fri May 28 16:26:09 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 38895be2b62193de41f8b12f40bfeb8eba861fd4 -Merge: 90b730dc1 04c70a6a5 -Author: Aaron Beavers -Date: Fri May 28 16:18:33 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/643/list-years - -commit fd9193c37a8be6ea20de72e818640ffa31b90aa1 -Merge: b327fa6d9 04c70a6a5 -Author: Jorge Gonzalez -Date: Fri May 28 10:27:00 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 8f235f362de8fee376557d8c449778b295eed306 -Merge: cadefb38b 04c70a6a5 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri May 28 08:24:06 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit 04c70a6a5b5637d0dca16ec093745d0b9c00e81e -Merge: ddec308f3 753c77509 -Author: John Willis -Date: Thu May 27 13:32:56 2021 -0400 - - Merge pull request #933 from raft-tech/dependabot/pip/tdrs-backend/pyjwt-2.1.0 - - Bump pyjwt from 1.7.1 to 2.1.0 in /tdrs-backend - -commit 753c7750936066b4ef2b07a8449da52fd4e394df -Merge: 17b1fa721 ddec308f3 -Author: John Willis -Date: Thu May 27 12:55:40 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/pyjwt-2.1.0 - -commit ddec308f37c42098a366c25fc6b7502d7ad64964 -Merge: f27773507 c2a5e3baa -Author: John Willis -Date: Thu May 27 12:55:15 2021 -0400 - - Merge pull request #918 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 - - Bump eslint-plugin-cypress from 2.11.2 to 2.11.3 in /tdrs-frontend - -commit c2a5e3baa1087f2d2d71ef4d9140cc4e7edd39a8 -Merge: 238ec8b35 f27773507 -Author: John Willis -Date: Thu May 27 12:09:45 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 - -commit f277735079065fafe47471a2750601cd5bd4ab4a -Merge: 65263bd58 9f7a3bdbc -Author: John Willis -Date: Thu May 27 12:08:59 2021 -0400 - - Merge pull request #905 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 - - [Security] Bump hosted-git-info from 2.8.8 to 2.8.9 in /tdrs-frontend - -commit 9f7a3bdbce5710690db1a446e0facc1e92442a11 -Merge: 254acd528 65263bd58 -Author: John Willis -Date: Thu May 27 10:32:50 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 - -commit 65263bd58d1e3e05df1cf2cd7fe1d78b9bdba0d0 -Merge: 0d85b5410 2e3a124f9 -Author: John Willis -Date: Thu May 27 10:26:59 2021 -0400 - - Merge pull request #920 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 - - Bump eslint-config-prettier from 6.15.0 to 8.3.0 in /tdrs-frontend - -commit 2e3a124f906cbd8bd8238fa140a63f53f5a28bf4 -Merge: 23ced5cdd 0d85b5410 -Author: John Willis -Date: Wed May 26 17:35:37 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 - -commit cadefb38bc34de1f65592e1a3aff988ffb871528 -Merge: 3d0853ddc 0d85b5410 -Author: Jorge Gonzalez -Date: Wed May 26 17:15:49 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit dbedeffc4a0b240efb6a85881e0d3fdbd42c4f02 -Merge: 94eaf757a 0d85b5410 -Author: Jorge Gonzalez -Date: Wed May 26 17:15:47 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit 9205bad2430162d68c5a2363ce0fcbd05af2d4ec -Author: John Willis -Date: Wed May 26 13:44:40 2021 -0400 - - Tabs vs spaces - zap.conf requires tab delimiting - -commit 813ee7cee6c91d7b5812f3a61fac09d7347a4f8e -Author: Aaron Beavers -Date: Wed May 26 13:14:24 2021 -0400 - - adjust backend spacing - -commit 4372e771798d3fa02da7b60ad75327348d29a323 -Author: Aaron Beavers -Date: Wed May 26 11:42:33 2021 -0400 - - Update zapscan - -commit c8fa81b1000ba5aaef0a438e2b02d4b87ba19880 -Author: John Willis -Date: Tue May 25 18:10:18 2021 -0400 - - Fix linter errors - -commit 97f2ffd2dd2b883049ffdf603f638afad0360872 -Merge: 73f9491cd 0d85b5410 -Author: John Willis -Date: Tue May 25 17:51:43 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 17b1fa721700eb802a11acda3b4dab74fd6f3fac -Merge: f0bb70aec 0d85b5410 -Author: John Willis -Date: Tue May 25 17:20:16 2021 -0400 - - Merged in raft-tdp-main, fixed conflicts & removed now broken decode call on the return from jwt.encode - -commit 0d85b5410e67e93cc2942351e170dbbc153f1cb8 -Merge: 0a1eacb43 edb369796 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue May 25 20:54:01 2021 +0000 - - Merge pull request #934 from raft-tech/dependabot/pip/tdrs-backend/django-storages-1.11.1 - -commit edb369796d736a3bba2ba30c7d41ed1b1e535043 -Merge: c51cb84ee 0a1eacb43 -Author: John Willis -Date: Tue May 25 16:41:30 2021 -0400 - - Merged in raft-tdp-main, fixed conflicts - -commit 0a1eacb43e6a2fe6b9d848c398639ca643393060 -Merge: 10c2e02fb 2e59246e3 -Author: John Willis -Date: Tue May 25 16:36:58 2021 -0400 - - Merge pull request #936 from raft-tech/dependabot/pip/tdrs-backend/django-cors-headers-3.7.0 - - Bump django-cors-headers from 3.6.0 to 3.7.0 in /tdrs-backend - -commit 2e59246e3ec2da7dd41fd18bced57aca3bde80ed -Merge: 72b4a269f 10c2e02fb -Author: John Willis -Date: Tue May 25 14:25:05 2021 -0400 - - Merged in raft-tdp-main, fixed conflicts - -commit 10c2e02fb7930f537d0b871c364686cb3b076a4d -Merge: 2b92a41ae d862bb041 -Author: John Willis -Date: Tue May 25 12:50:52 2021 -0400 - - Merge pull request #945 from raft-tech/dependabot/pip/tdrs-backend/cryptography-3.4.7 - - Bump cryptography from 3.3.2 to 3.4.7 in /tdrs-backend - -commit b327fa6d97cfe9e17441cb81333c16892e82ee6f -Merge: fcec39cab 2b92a41ae -Author: Jorge Gonzalez -Date: Tue May 25 12:07:40 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit d862bb041678827fd4c78359b87eb22988ac7f2e -Author: John Willis -Date: Tue May 25 12:07:19 2021 -0400 - - Updated Pipfile.lock - -commit 38a1a5363a725f976e3460c19f34bde28e8ba6da -Author: Aaron Beavers -Date: Tue May 25 12:05:24 2021 -0400 - - Use single equal - -commit b08282990d7f7e1c93156e36545ebecd542603b2 -Merge: cf649521b 2b92a41ae -Author: John Willis -Date: Tue May 25 12:05:05 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/cryptography-3.4.7 - -commit 2b92a41ae6803d496e08530d592007a9055dab4d -Merge: b3c1ffb78 4788c6990 -Author: John Willis -Date: Tue May 25 12:03:57 2021 -0400 - - Merge pull request #956 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/concurrently-6.2.0 - - Bump concurrently from 6.0.0 to 6.2.0 in /tdrs-frontend - -commit d684cbd28235f513db014261f7dcb819846e1739 -Author: Aaron Beavers -Date: Tue May 25 11:52:08 2021 -0400 - - Update zap scans to run with config file in CI - -commit fcec39cab1c2bbc4827c291c8b51e0fe5cad808f -Author: Jorge Gonzalez -Date: Tue May 25 11:29:20 2021 -0400 - - Tweak test - -commit 72c9fe580842328dcb423ec8ee0859ed35b729c0 -Merge: f4acaf8e5 b3c1ffb78 -Author: Jorge Gonzalez -Date: Tue May 25 11:18:58 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit f4acaf8e5cb76fb5f9f14da879ec1cc884020425 -Author: Jorge Gonzalez -Date: Mon May 24 18:12:59 2021 -0400 - - Remove inactive field from serializer - -commit 4788c699028a8346a07e108da09011491c57560b -Merge: 33a9adab2 b3c1ffb78 -Author: John Willis -Date: Tue May 25 10:41:06 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/concurrently-6.2.0 - -commit b3c1ffb78ffb2ea24f38dff8c15aa4a52d09c12e -Merge: bfb24428f 94510d1d4 -Author: John Willis -Date: Tue May 25 10:25:55 2021 -0400 - - Merge pull request #959 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/boto3-1.17.79 - - Bump boto3 from 1.16.63 to 1.17.79 in /tdrs-backend - -commit 72b4a269f5865b4cd551b094f6c718daf454f8d3 -Merge: 23c5593d6 bfb24428f -Author: John Willis -Date: Mon May 24 18:32:30 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/django-cors-headers-3.7.0 - -commit 238ec8b35ca90a8af45b274dad69d1e71885f95a -Merge: e243ba68e bfb24428f -Author: John Willis -Date: Mon May 24 18:29:23 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 - -commit 254acd528ee4ed20e693deecb4ede96c156a8b13 -Merge: 5aef27af3 bfb24428f -Author: John Willis -Date: Mon May 24 18:28:35 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 - -commit 73f9491cd150a2ea9ee0a27fd412eca9103cde6d -Author: John Willis -Date: Mon May 24 18:21:42 2021 -0400 - - Test adding linting step first to give more time to localstack setup - -commit cf649521b1debb46779a317a572847490ca4dced -Merge: ceb68ed3a bfb24428f -Author: John Willis -Date: Mon May 24 18:08:59 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/cryptography-3.4.7 - -commit 33a9adab26a9712e1e6e54643818bc4a32d2209f -Merge: 1f141bb12 bfb24428f -Author: John Willis -Date: Mon May 24 18:04:02 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/concurrently-6.2.0 - -commit 94553be064bf9f4053d8c26e83ac2babd02b0791 -Merge: e7c5afc50 bfb24428f -Author: John Willis -Date: Mon May 24 18:01:34 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 41a3010e6c48ab1fb2ec97eb412c0dc1602f23ed -Merge: 434b8e311 bfb24428f -Author: Jorge Gonzalez -Date: Mon May 24 17:57:43 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 23ced5cdd1c35fbaa1dff0fa1b7e6691a1d75f42 -Merge: 36e9294ae bfb24428f -Author: Jorge Gonzalez -Date: Mon May 24 17:56:19 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 - -commit 94eaf757af940c47d1af76533e63a03a67eb8407 -Merge: f9d465f86 bfb24428f -Author: Jorge Gonzalez -Date: Mon May 24 17:55:21 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit 3d0853ddc451fb496853a19a383d8cccdf558c48 -Merge: c11d2987a bfb24428f -Author: Jorge Gonzalez -Date: Mon May 24 17:54:44 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit 434b8e311f01d9bc996f3422782f11219fc923a9 -Author: Jorge Gonzalez -Date: Mon May 24 17:53:54 2021 -0400 - - Address frontend tests - -commit 94510d1d49435885ff95a02ea4117739c6c82a33 -Merge: 13fdd69b8 bfb24428f -Author: John Willis -Date: Mon May 24 17:51:55 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/boto3-1.17.79 - -commit 0ab1ddd57667afba639cf5176869802adca18a1f -Author: John Willis -Date: Mon May 24 17:50:05 2021 -0400 - - Increased timeout for wait-for-services.sh to account for longer startup times for clamav and localstack in CI - -commit c51cb84eeb17021bac47dbf8f2eda849174f19e5 -Merge: eee2ef210 bfb24428f -Author: John Willis -Date: Mon May 24 17:39:37 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/django-storages-1.11.1 - -commit 6421355442b2ee4eea806373d8badf59119b53d8 -Author: John Willis -Date: Mon May 24 17:02:43 2021 -0400 - - Fix localstack settings - -commit 7c035bdc9d75f399a4e461ea34a0a4df41e6de78 -Author: John Willis -Date: Mon May 24 16:40:29 2021 -0400 - - Added missing environment variables to base docker compose for CI - -commit a73b2b676882ae5741a77d3c90a7bd00ef3862fd -Merge: 4a6cefc94 bfb24428f -Author: John Willis -Date: Mon May 24 16:16:15 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit bfb24428f15fa5ee6ac77b0e34381ad8b5998ad8 -Merge: 55b0b3eb4 4b6b78c02 -Author: John Willis -Date: Mon May 24 16:04:21 2021 -0400 - - Merge pull request #955 from raft-tech/make-round-5-research-md - - Rename 2021, Spring - Tribal MVP (Release 2) Design Sprint to 2021, S… - -commit 13fdd69b802731ec566ff7f620c2b6b8396424c5 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 24 19:54:05 2021 +0000 - - Bump boto3 from 1.16.63 to 1.17.79 in /tdrs-backend - - Bumps [boto3](https://github.com/boto/boto3) from 1.16.63 to 1.17.79. - - [Release notes](https://github.com/boto/boto3/releases) - - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - - [Commits](https://github.com/boto/boto3/compare/1.16.63...1.17.79) - - Signed-off-by: dependabot[bot] - -commit 319fd970049ba47225681430cfa989809913ba4d -Author: Jorge Gonzalez -Date: Mon May 24 15:51:17 2021 -0400 - - Whitespace - -commit 4a6cefc945cd9449c425e7559cef556fe9aac8d3 -Merge: 4cfb9154e 55b0b3eb4 -Author: John Willis -Date: Mon May 24 15:51:16 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 4b6b78c02cfc7e6f1f3d8ff4a389555b17ed3ffe -Merge: efdfd16e4 55b0b3eb4 -Author: John Willis -Date: Mon May 24 15:49:01 2021 -0400 - - Merge branch 'raft-tdp-main' into make-round-5-research-md - -commit 233951e9bbdb8d7f8f2fffc4decee4f79ff2c31d -Merge: 02c8afc12 55b0b3eb4 -Author: Jorge Gonzalez -Date: Mon May 24 15:48:53 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/829-inactive-user - -commit 55b0b3eb4f3fae87ad9a4d22882778079b5b5050 -Merge: b0dec4ebf e26c935a1 -Author: John Willis -Date: Mon May 24 15:48:41 2021 -0400 - - Merge pull request #944 from raft-tech/issues/932-dependabot-config - - Issue 932: Prevent Dependabot version updates from running on HHS:main - -commit 02c8afc121f9bb5e491ff32ae2d22d9060f58c64 -Author: Jorge Gonzalez -Date: Mon May 24 15:47:39 2021 -0400 - - Check for inactive users during auth_check - -commit e26c935a1157584c783488e4fef5d1da3fd04cd4 -Author: John Willis -Date: Mon May 24 15:18:00 2021 -0400 - - Update docs/Architecture Decision Record/016-dependabot-dependency-management.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 6fea73e92c8915308e19ac8e575fc8c264cedab0 -Author: John Willis -Date: Mon May 24 15:16:03 2021 -0400 - - Added ADR for Dependabot migration - -commit 4cfb9154eda57d23fd6f5ff54ab36503e74de2a4 -Author: John Willis -Date: Mon May 24 15:07:39 2021 -0400 - - Fixed test and added separate storage class for S3 Data Files - -commit 68fc275070147e49ddbf7af7f1686c7c6765ef41 -Merge: 8dba240cf b0dec4ebf -Author: John Willis -Date: Mon May 24 15:04:37 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/932-dependabot-config - -commit efdfd16e43b891f4149ba42ac4629839b7ec706c -Merge: 20fcefcc8 b0dec4ebf -Author: John Willis -Date: Mon May 24 15:00:40 2021 -0400 - - Merge branch 'raft-tdp-main' into make-round-5-research-md - -commit 1f141bb1250ab1e1e5564fccd428aa2d970cfb2e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 24 18:42:19 2021 +0000 - - Bump concurrently from 6.0.0 to 6.2.0 in /tdrs-frontend - - Bumps [concurrently](https://github.com/kimmobrunfeldt/concurrently) from 6.0.0 to 6.2.0. - - [Release notes](https://github.com/kimmobrunfeldt/concurrently/releases) - - [Commits](https://github.com/kimmobrunfeldt/concurrently/compare/v6.0.0...v6.2.0) - - Signed-off-by: dependabot[bot] - -commit 23c5593d66445f765fad3d03fd8589282a67d207 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 24 18:41:47 2021 +0000 - - Bump django-cors-headers from 3.6.0 to 3.7.0 in /tdrs-backend - - Bumps [django-cors-headers](https://github.com/adamchainz/django-cors-headers) from 3.6.0 to 3.7.0. - - [Release notes](https://github.com/adamchainz/django-cors-headers/releases) - - [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/HISTORY.rst) - - [Commits](https://github.com/adamchainz/django-cors-headers/compare/3.6.0...3.7.0) - - Signed-off-by: dependabot[bot] - -commit eee2ef21078e97efc29873cd77074e474986c12b -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 24 18:41:43 2021 +0000 - - Bump django-storages from 1.10.1 to 1.11.1 in /tdrs-backend - - Bumps [django-storages](https://github.com/jschneier/django-storages) from 1.10.1 to 1.11.1. - - [Release notes](https://github.com/jschneier/django-storages/releases) - - [Changelog](https://github.com/jschneier/django-storages/blob/master/CHANGELOG.rst) - - [Commits](https://github.com/jschneier/django-storages/compare/1.10.1...1.11.1) - - Signed-off-by: dependabot[bot] - -commit ceb68ed3a00926c170248a38b833eb04dee44973 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 24 18:41:37 2021 +0000 - - Bump cryptography from 3.3.2 to 3.4.7 in /tdrs-backend - - Bumps [cryptography](https://github.com/pyca/cryptography) from 3.3.2 to 3.4.7. - - [Release notes](https://github.com/pyca/cryptography/releases) - - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - - [Commits](https://github.com/pyca/cryptography/compare/3.3.2...3.4.7) - - Signed-off-by: dependabot[bot] - -commit b0dec4ebfcea027f403015ebb44de3b5cc6281a7 -Merge: b5ee0e063 46453aeb9 -Author: John Willis -Date: Mon May 24 14:36:05 2021 -0400 - - Merge pull request #922 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 - - Bump @testing-library/react from 11.2.6 to 11.2.7 in /tdrs-frontend - -commit 46453aeb9d6f37c519c35517e2a09adb8d733e2d -Merge: 3b8987b31 b5ee0e063 -Author: John Willis -Date: Mon May 24 14:05:39 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 - -commit b5ee0e063fa94fa7ac6a204051569a9b6d74cf77 -Merge: a2d8cc96b 8ff5a5898 -Author: John Willis -Date: Mon May 24 14:04:24 2021 -0400 - - Merge pull request #926 from raft-tech/frontend/925-remove-testing-library-user-event - - [Dependencies] Remove @testing-library/user-event - -commit 90b730dc1a383635c58bcc33df4600d19a23ac1e -Merge: 32d6e55c6 a2d8cc96b -Author: John Willis -Date: Mon May 24 14:03:25 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 4cfc5596085a5360b42e2050ac861ab72a08d891 -Author: Aaron Beavers -Date: Mon May 24 13:56:18 2021 -0400 - - Add fi - -commit 20fcefcc892769edaa148ab8be6ffc10ac78ce71 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon May 24 13:52:10 2021 -0400 - - Rename 2021, Spring - Tribal MVP (Release 2) Design Sprint to 2021, Spring - Tribal MVP (Release 2) Design Sprint.md - -commit 8ff5a58985c0e1fb686e9928aabc3b72632dd3df -Merge: 457be9ba3 a2d8cc96b -Author: Jorge Gonzalez -Date: Mon May 24 12:35:50 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/925-remove-testing-library-user-event - -commit ecfa13db7cf7baa69c6f0aacdf4f8d97ca1093ba -Merge: 0c9e7661b a2d8cc96b -Author: Jorge Gonzalez -Date: Mon May 24 12:02:01 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/829-inactive-user - -commit 3b8987b31cacc6e20d0e9cd04e21c39ec60bf71e -Merge: 2ced4477a a2d8cc96b -Author: Jorge Gonzalez -Date: Mon May 24 11:49:52 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 - -commit 38fd5517332546163e739ed76626556484e9f22d -Merge: 846fd1b4f a2d8cc96b -Author: Aaron Beavers -Date: Mon May 24 11:43:25 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/879/owasp-ignore-false-positives - -commit 846fd1b4f336c61e3ffeb379645aeaef97e039fe -Author: Aaron Beavers -Date: Mon May 24 11:43:05 2021 -0400 - - Update zap syntax - -commit d20e8d35a098abf25720aee555b6c4ef198895c3 -Author: Aaron Beavers -Date: Fri May 21 10:57:20 2021 -0400 - - Update buildpacks nginx file - -commit c11d2987aa7bd82a97ce35c5169921730d1500f3 -Author: Jorge Gonzalez -Date: Fri May 21 09:31:12 2021 -0400 - - Add new field to django admin - -commit 8dba240cfe1a89017eb3465289b81c430283c90a -Author: John Willis -Date: Thu May 20 18:55:29 2021 -0400 - - Issue 932: Prevent Dependabot version updates from running on HHS:main - -commit 1ece9df8c21adf1ef22f97159b5371133887fcf4 -Merge: ed714347b a2d8cc96b -Author: John Willis -Date: Thu May 20 18:49:21 2021 -0400 - - Merged in raft-tdp-main, fixed conflicts - -commit f0bb70aecf3fec01a6c1561b49596f2b73ecaa61 -Merge: 48da83d39 a2d8cc96b -Author: John Willis -Date: Thu May 20 18:37:30 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/pyjwt-2.1.0 - -commit fa023161d3e43fa1a1b764a6835d8cf6c72bfecb -Merge: 0cef701fa a2d8cc96b -Author: Jorge Gonzalez -Date: Thu May 20 18:03:28 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit a724d4c6818dc90d825744ae88cd6f0f1191e19a -Merge: c3b3820f9 a2d8cc96b -Author: John Willis -Date: Thu May 20 17:50:54 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit a2d8cc96bcff10f015dde560e6e2f0a476ee28d5 -Merge: 1b4937d1d 450fead5e -Author: John Willis -Date: Thu May 20 17:49:34 2021 -0400 - - Merge pull request #881 from raft-tech/devops/844-buildpacks-ci-deploy - - Buildpacks CI/CD Implementation - -commit 0c9e7661b2322cc3355b60256dbbe9e0d4f0457b -Merge: b89651adb 1b4937d1d -Author: Jorge Gonzalez -Date: Thu May 20 16:38:12 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/829-inactive-user - -commit b89651adb69073639a0d02cb9b9addb4aa7070c6 -Author: Jorge Gonzalez -Date: Thu May 20 16:10:10 2021 -0400 - - Add new inactive_account field, separate from the django is_active - -commit 450fead5ebea6c9ebd76fb85d11ef2b32c708841 -Author: John Willis -Date: Thu May 20 16:11:17 2021 -0400 - - Removed reference to .env.production and added instructions to retrieve environment variables to the README - -commit ba442b158e3b3bf7d36e1e11c1ce4ba32306695b -Author: Aaron Beavers -Date: Thu May 20 15:27:44 2021 -0400 - - Update frontend zap scanner to only run in CI - -commit 6ed418a339e9f15221cdcce84418b7322d093e5d -Author: Aaron Beavers -Date: Thu May 20 15:27:11 2021 -0400 - - Update backend zap scanner to use config file - -commit 597dedb5fd956caea91bade66747758f4676007b -Author: Aaron Beavers -Date: Thu May 20 15:26:51 2021 -0400 - - Add backend zaproxy configs - -commit 9fc0afaa2c36928de324e1afeb0239822bc40a6f -Author: Aaron Beavers -Date: Thu May 20 13:44:06 2021 -0400 - - Update zap conf formatting - -commit 2aa5fa6f8560b6968b17c91283904f52cd916988 -Author: Aaron Beavers -Date: Thu May 20 13:29:56 2021 -0400 - - Add zap frontend config to ignore false positives - -commit b7683943abbb5f013368aa4985cc9156865f9635 -Merge: 0a9138f6e 1b4937d1d -Author: John Willis -Date: Thu May 20 11:14:09 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit 1b4937d1dfeac456ef8fffca6e6c4495b94257da -Merge: c583d97e5 8286d0d11 -Author: John Willis -Date: Thu May 20 10:55:46 2021 -0400 - - Merge pull request #915 from raft-tech/documentation/round-5-synthesis - - Adds Round 5 research synthesis to code docs - -commit 48da83d39acfc57374a1c9ee3beddd9e38865650 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Thu May 20 14:20:00 2021 +0000 - - Bump pyjwt from 1.7.1 to 2.1.0 in /tdrs-backend - - Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 1.7.1 to 2.1.0. - - [Release notes](https://github.com/jpadilla/pyjwt/releases) - - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) - - [Commits](https://github.com/jpadilla/pyjwt/compare/1.7.1...2.1.0) - - Signed-off-by: dependabot[bot] - -commit 8286d0d11068739a7c9ae64cbe2c4adf75aa3721 -Merge: 243ea3ab1 c583d97e5 -Author: John Willis -Date: Thu May 20 10:16:03 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/round-5-synthesis - -commit 0a9138f6ec9e550b3e6ceae8c4f90a6393c5808b -Merge: a5933456e c583d97e5 -Author: John Willis -Date: Thu May 20 10:14:59 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit c583d97e5b45caf902ff1e33f1cb05fd81acc1c8 -Merge: f9c632db3 acf766bec -Author: John Willis -Date: Thu May 20 10:14:45 2021 -0400 - - Merge pull request #924 from raft-tech/backend/923-remove-black - - Issue 923: [Dependencies] Remove Black formatter from project - -commit a5933456ea3779192ee5aca7ae9bf728ca2cb22f -Author: John Willis -Date: Wed May 19 15:42:40 2021 -0400 - - Add missing DJANGO_CONFIGURATION variable to set-backend-env-vars.sh - -commit 0cef701fabaf7eaadb2e31639580952a2201577c -Author: Jorge Gonzalez -Date: Wed May 19 15:26:32 2021 -0400 - - lint - -commit 3b294bf107580def33eddfb19f823dab9b364550 -Author: Jorge Gonzalez -Date: Wed May 19 15:18:01 2021 -0400 - - Rename sub to login_gov_uuid - -commit f9d465f86c77de8bcef28e1ac72331fad8a697c0 -Author: Jorge Gonzalez -Date: Wed May 19 15:10:00 2021 -0400 - - Fix tests - -commit ecf0822880e624be422345bf401fb3bca101eb81 -Author: Jorge Gonzalez -Date: Wed May 19 14:50:49 2021 -0400 - - Fix issue with stale submitted form state - -commit 24bf2c6b37315302b199b8b3aac81430aed9c008 -Merge: b5d045934 f9c632db3 -Author: John Willis -Date: Wed May 19 13:58:56 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit e7c5afc50411777c9f6716e796c8f8bb53f02f3b -Merge: 16811c54a f9c632db3 -Author: John Willis -Date: Tue May 18 16:25:25 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit bd7eab980724b0af9d046cc1530e14fd15431137 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue May 18 15:48:01 2021 -0400 - - Update user_role_management.md - -commit ac62832e35c047031c2d93cce07fe002a6d027ab -Author: Jorge Gonzalez -Date: Tue May 18 13:49:03 2021 -0400 - - Add inactive banner and auth state - -commit 92b4f3ef43ba6814775ee8cc70360a0fa449b465 -Author: Jorge Gonzalez -Date: Tue May 18 12:05:49 2021 -0400 - - Add is_active to User serializer and auth action - -commit 32d6e55c68b5a65a7496f40f30bf3aa90be61857 -Merge: ff60ddbdc f9c632db3 -Author: John Willis -Date: Tue May 18 12:05:46 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 231cfe1f3252590e61a07f2e905003e9ea4c4ebc -Merge: 0f6fc78a5 f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 10:47:14 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit 457be9ba37cd8a61b6c2941f3694abdb80db8494 -Author: John Willis -Date: Tue May 18 10:22:27 2021 -0400 - - [Dependencies] Remove @testing-library/user-event - -commit c3b3820f97c3687a986f7560dd6312e4b3f844da -Merge: aee283b36 f9c632db3 -Author: John Willis -Date: Tue May 18 09:55:16 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit 5aef27af30f12703093222f8fc8ac0354964f418 -Merge: a09c67e62 f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 09:53:19 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/hosted-git-info-2.8.9 - -commit 36e9294ae22d5a106ad36ff929a41eb1a2d4a92c -Merge: 8befec363 f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 09:52:49 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-config-prettier-8.3.0 - -commit e243ba68ed776b09be7207e992a1f4c8c55e7f2b -Merge: 27e550e8d f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 09:51:29 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/eslint-plugin-cypress-2.11.3 - -commit 2ced4477a0fda7fa126123399de979b5f4114a29 -Merge: 30bb30757 f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 09:48:40 2021 -0400 - - Merge branch 'raft-tdp-main' into dependabot/npm_and_yarn/tdrs-frontend/testing-library/react-11.2.7 - -commit 6d6c94ef97e0568a80a2bf8aa70755648f6771e1 -Author: Jorge Gonzalez -Date: Tue May 18 09:37:01 2021 -0400 - - Fix tests - -commit fbf295ba6d5c3c1ae4cbefd7dfe1bdcc1eea1773 -Merge: a5fadd5b2 f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 09:27:38 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit acf766bec0b7e00d4e3930da15df112418d8ed24 -Merge: b922ed8ad f9c632db3 -Author: Jorge Gonzalez -Date: Tue May 18 09:19:24 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/923-remove-black - -commit f9c632db36ae7663660c05223476ea0be398b6c6 -Merge: 6e3862dac f48f7edd7 -Author: John Willis -Date: Mon May 17 17:45:39 2021 -0400 - - Merge pull request #912 from raft-tech/fix/858 - - Issue 858 (PR 1): Hotfix issue with file input header - -commit f48f7edd7c260ea374e818b24060eb50646944bb -Merge: a4a8b2ed1 6e3862dac -Author: John Willis -Date: Mon May 17 17:30:17 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858 - -commit b922ed8ade73c5a31bb336d188471ad59a818b22 -Author: John Willis -Date: Mon May 17 17:20:40 2021 -0400 - - Removed black and ptpython from project dependencies - -commit ed714347ba14ceb344465d77141692260d922431 -Author: John Willis -Date: Mon May 17 16:24:44 2021 -0400 - - Ensure that data files are stored in a distinct bucket from Django Admin static files in production environments - -commit 30bb3075723b9c6916a3e0961ddab7ff5ecd307f -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 17 19:57:38 2021 +0000 - - Bump @testing-library/react from 11.2.6 to 11.2.7 in /tdrs-frontend - - Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.6 to 11.2.7. - - [Release notes](https://github.com/testing-library/react-testing-library/releases) - - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.6...v11.2.7) - - Signed-off-by: dependabot[bot] - -commit 8befec363b3b270dabc1461ed6e5d0e063be8185 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 17 19:57:05 2021 +0000 - - Bump eslint-config-prettier from 6.15.0 to 8.3.0 in /tdrs-frontend - - Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.15.0 to 8.3.0. - - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v6.15.0...v8.3.0) - - Signed-off-by: dependabot[bot] - -commit 27e550e8d30889a6d5000955030b3ee97dabd697 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 17 19:56:34 2021 +0000 - - Bump eslint-plugin-cypress from 2.11.2 to 2.11.3 in /tdrs-frontend - - Bumps [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) from 2.11.2 to 2.11.3. - - [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases) - - [Commits](https://github.com/cypress-io/eslint-plugin-cypress/compare/v2.11.2...v2.11.3) - - Signed-off-by: dependabot[bot] - -commit 6e3862dac3a750957021ceb28242686340c1e0d9 -Merge: bebb093f6 9480bd565 -Author: John Willis -Date: Mon May 17 15:49:32 2021 -0400 - - Merge pull request #917 from raft-tech/add-github-native-dependabot - - Migrate to GitHub Native Dependabot - -commit 9480bd5657496b2b23e6d085d6de45b96a1b07c6 -Author: John Willis -Date: Mon May 17 15:22:04 2021 -0400 - - Update tdrs-backend/docs/github_readme_status_badges.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit b5d0459344263a9bbd969bd6f5ee658b89432e7c -Author: John Willis -Date: Fri May 14 19:46:21 2021 -0400 - - Fixed variable references that weren't updated and add missing DJANGO_SETTINGS_MODULE environment variable - -commit 5bdee4d8e497c2892219e393de2f7a70f00bd6ec -Merge: 0c07c26df bebb093f6 -Author: John Willis -Date: Fri May 14 19:37:48 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit f0bbb5860bb84f0a5003e947ff5920793073b73b -Merge: 27f81a7e6 bebb093f6 -Author: John Willis -Date: Fri May 14 19:19:02 2021 -0400 - - Merged in raft-tdp-main, fixed conflicts - -commit 329af91a53f394197f28b8df1b5edf81b1513fe7 -Author: John Willis -Date: Fri May 14 18:54:08 2021 -0400 - - Update all documentation to reflect usage of Dependabot instead of Snyk, remove snyk from packages installed for the frontend - -commit aee283b363e70696cdac26c0a3566d04c2d09b37 -Merge: 58f59733d bebb093f6 -Author: Jorge Gonzalez -Date: Fri May 14 16:46:51 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit ff60ddbdc5828630fefe36e50243f3d9a712de64 -Merge: 0d67cd5a0 bebb093f6 -Author: Jorge Gonzalez -Date: Fri May 14 16:46:41 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 0f6fc78a5dc820692fcdd5010e18d2474c85fd51 -Merge: dd5920d07 bebb093f6 -Author: Jorge Gonzalez -Date: Fri May 14 16:46:27 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit a5fadd5b298e56ca00c1edffedbbf91aeffe1cc5 -Author: Jorge Gonzalez -Date: Fri May 14 16:38:44 2021 -0400 - - Remove log - -commit b526fac5cefb3d1a2b4e4c0e6e52d099bc8f26e0 -Merge: 14de95553 a4a8b2ed1 -Author: Jorge Gonzalez -Date: Fri May 14 16:37:22 2021 -0400 - - Merge branch 'fix/858' into fix/858-part-2 - -commit 14de9555331cc6c0f1b6a8981b2eef05c5f1181c -Merge: 6599c9110 bebb093f6 -Author: Jorge Gonzalez -Date: Fri May 14 16:36:01 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858-part-2 - -commit a4a8b2ed11f0b3a2852679f2d78327cfaaf68105 -Merge: 7a04eeecc bebb093f6 -Author: Jorge Gonzalez -Date: Fri May 14 16:31:58 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858 - -commit 6599c9110a0ed1e198200cce4fc4da172871c368 -Author: Jorge Gonzalez -Date: Fri May 14 16:29:10 2021 -0400 - - On error state, shift focus to error summary whenever "Search" is clicked - -commit af941e1357cc4c5da6ced83baf2cc272cc36f37f -Author: John Willis -Date: Fri May 14 16:01:28 2021 -0400 - - Migrate to GitHub Native Dependabot - - https://github.blog/2021-04-29-goodbye-dependabot-preview-hello-dependabot/ - -commit 2671e002d4c5d5345d01b488944b96be2cdb0783 -Author: Jorge Gonzalez -Date: Fri May 14 15:43:49 2021 -0400 - - Prevent file input section from changing until search is clicked - -commit a09c67e620cec44fb6afc8677a3416b36f2408b9 -Author: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> -Date: Fri May 14 19:43:55 2021 +0000 - - [Security] Bump hosted-git-info from 2.8.8 to 2.8.9 in /tdrs-frontend - - Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. **This update includes a security fix.** - - [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) - - Signed-off-by: dependabot-preview[bot] - -commit bebb093f6e953b7b4954a5da54b2f0080725d5cf -Merge: 9e2555697 6d5bc0166 -Author: Carl Smith -Date: Fri May 14 15:42:28 2021 -0400 - - Merge pull request #860 from raft-tech/feat/762-logging-uploads - - Issue 762: Logging upload activity - -commit 48d0d0544b574180a442ec61809af4b0b2d2de10 -Author: Jorge Gonzalez -Date: Fri May 14 15:19:10 2021 -0400 - - Fix STT Combobox selection on the Profile page - -commit f8898cf25dc80017c89034fefce66c00e5ca7ec4 -Author: Jorge Gonzalez -Date: Fri May 14 15:08:48 2021 -0400 - - Add missing stt error message - -commit c1a02c40cf11b5f78eef0e3f102cb1c9bbcaaad5 -Author: Jorge Gonzalez -Date: Thu May 13 16:36:52 2021 -0400 - - Remove unneeded sttlist call - -commit 243ea3ab1b7fa46ae1cc6d47d292c780491f022d -Author: Miles Reiter -Date: Fri May 14 14:39:04 2021 -0400 - - Create 2021, Spring - Tribal MVP (Release 2) Design Sprint - -commit 6d5bc01664d54e5987091a33922a645c876de694 -Merge: c42ec2ad6 9e2555697 -Author: Jorge Gonzalez -Date: Fri May 14 14:16:23 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/762-logging-uploads - -commit 999cf1b5d2386cc192092793dd903c2f3ddccd68 -Merge: 70a28a8d0 42189db82 -Author: Aaron Beavers -Date: Fri May 14 13:52:05 2021 -0400 - - Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/818-scan-and-upload-data-files - -commit 27f81a7e6d8d543360df34d5a4147bea7a03d3fb -Author: John Willis -Date: Fri May 14 13:51:33 2021 -0400 - - Fixed migration files - -commit 42189db82bcc38ea46e6662cb1e64c74318bde0f -Merge: d86149163 9e2555697 -Author: John Willis -Date: Fri May 14 13:37:56 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 70a28a8d05d7f5ccbdd53d5a922cbf03e80add95 -Merge: db71f7eba d86149163 -Author: Aaron Beavers -Date: Fri May 14 13:19:02 2021 -0400 - - Merge remote-tracking branch 'origin/backend/818-scan-and-upload-data-files' into backend/818-scan-and-upload-data-files - -commit 16811c54a05d782efdf26ef4b379a20d69aaa891 -Author: Aaron Beavers -Date: Fri May 14 12:38:20 2021 -0400 - - Lint - -commit b36c038ad7b78eb0f6f3daa23f9f6053fd750bf6 -Author: Aaron Beavers -Date: Fri May 14 12:35:42 2021 -0400 - - Revert accidentally changed files - -commit 0c07c26df871b7bc8d61f1983b4dd3b6dffcf76b -Merge: 40abd32f8 9e2555697 -Author: John Willis -Date: Fri May 14 11:58:20 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit 40abd32f88fb14c52e8bd690b0950d50675c2434 -Author: John Willis -Date: Fri May 14 11:56:49 2021 -0400 - - Added some logic to prevent deploying with localhost environment variables - -commit 9e2555697fe60cd054767cc1d6ab1d10abd647c6 -Merge: 0c465e58e 06201fcd8 -Author: Carl Smith -Date: Fri May 14 11:54:26 2021 -0400 - - Merge pull request #913 from raft-tech/kniz-raft-patch-1 - - Create sprint-20-summary.md - -commit a36c0b705783279cc1d436dfffe9fb1267eabf4b -Author: Aaron Beavers -Date: Fri May 14 10:53:29 2021 -0400 - - delint - -commit e4470127f0483226a296413789bf767274331f3c -Merge: 25dfba600 0c465e58e -Author: Aaron Beavers -Date: Fri May 14 10:44:05 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 06201fcd89e9ef0cf2b24bb175483517e1130077 -Merge: 915356572 0c465e58e -Author: Carl Smith -Date: Fri May 14 10:33:33 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 09c22a17f1756d58f9fa66f2559275c2ea0df423 -Author: Aaron Beavers -Date: Mon May 3 15:36:16 2021 -0400 - - Revert "changing something to check if deploy happens" - - This reverts commit 73b1d60685e029cb78141e014394bc9657741db7. - -commit b1d5895d66f055832b87ebf80599dd39c1596f5f -Author: John Willis -Date: Thu May 13 16:45:08 2021 -0400 - - Don't expose generated JWT cert in script output - -commit d02c449517971a4f1101ed726743661f876b4dd7 -Author: John Willis -Date: Thu May 13 16:39:42 2021 -0400 - - Add names for deploy commands - -commit 58f59733df5fc74d53347f03981b91697a86da89 -Author: Aaron Beavers -Date: Thu May 13 15:14:00 2021 -0400 - - removed prettier lint - -commit c42ec2ad620c42274e5d6579b549a5cc03e46a71 -Author: Jorge Gonzalez -Date: Thu May 13 15:02:59 2021 -0400 - - Improve system log formatting for file upload submissions - -commit 00cdcfeaefdd5c30db28f86695b2c2621e45dff8 -Author: Aaron Beavers -Date: Thu May 13 13:13:30 2021 -0400 - - Remove lint - -commit 64edf3ad7b60379483065cb083198a97d915cd12 -Author: Aaron Beavers -Date: Thu May 13 13:06:30 2021 -0400 - - Add Test for invalid routes producing no match - -commit db71f7ebac7c3eb34ea89aa2b0304df61cd405f8 -Author: Aaron Beavers -Date: Thu May 13 12:47:43 2021 -0400 - - initial work on file download - -commit 0a8218f7ec008bbc3c6c3b4081b5c0932d1c3ec7 -Author: John Willis -Date: Thu May 13 12:19:16 2021 -0400 - - Fix deployment CI issues - -commit 7a04eeecc8b39ae901e9719c1ecdc813e16d7cd8 -Merge: 2a804cbfe 0c465e58e -Author: Jorge Gonzalez -Date: Thu May 13 11:12:47 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/858 - -commit 13f47fb453a004f3e8b9e8b07109d68e091e57d1 -Merge: c4a3318d4 0c465e58e -Author: Carl Smith -Date: Thu May 13 10:49:43 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit 95d719e4f4b68535a7cb4c13621e4df15a511fad -Author: John Willis -Date: Wed May 12 21:37:31 2021 -0400 - - Remove erroneous semicolon usage - -commit fdf4c5f3366ee2d90d4b224285a620305d4d66ef -Author: John Willis -Date: Wed May 12 18:38:11 2021 -0400 - - Prevent early exit due to use of pipefail - -commit 75422a2cdb75d6ed1a15815a508fcfbb9c631bdb -Author: John Willis -Date: Wed May 12 18:13:07 2021 -0400 - - Explicitly assign exit code to prevent early termination - -commit a0d769068ca819ab846ba52dd0fc18981cdc1790 -Author: John Willis -Date: Wed May 12 17:30:02 2021 -0400 - - fix typo in appname parameter - -commit 2ceaf4b2171126de0a45f816703a5f0caac1c66e -Author: John Willis -Date: Wed May 12 17:27:13 2021 -0400 - - Dynamically pass deploy strategy of initial if target app does not exist - -commit 5a1983f9283c14c9eb5662c729a1006c60c606f8 -Author: John Willis -Date: Wed May 12 16:32:26 2021 -0400 - - switch back to docker executor - -commit 6fadb3c1ac4913713bb6dcc048bf0c9dc9cd59c6 -Author: John Willis -Date: Wed May 12 15:43:44 2021 -0400 - - Fix typo on parameter reference - -commit 2a3996fd18df183571ddc711e8bfe0dfab570cd4 -Author: John Willis -Date: Wed May 12 15:39:42 2021 -0400 - - Fix typo on command usage - -commit 4eb00a6b04bd16a3b913cfade0859a89c04cbf74 -Author: John Willis -Date: Wed May 12 15:34:51 2021 -0400 - - Added back clamav-rest deployment in newer command format - -commit bd7b177eff75294b05b8fb273818f7cb9238cfcc -Merge: 5149d4eea 0c465e58e -Author: Jorge Gonzalez -Date: Wed May 12 14:38:55 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/762-logging-uploads - -commit 2122ad19f315e06739772c0e3f59bec43b9abfc5 -Merge: 4641b289e 0c465e58e -Author: John Willis -Date: Wed May 12 14:30:13 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit d86149163ad1032f103476aab9cfdeb3981d987c -Merge: b65811d36 0c465e58e -Author: John Willis -Date: Wed May 12 14:28:29 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 0c465e58ee398a21bd5be5a7a8de0802bfe5a383 -Merge: 9b565b548 231ab3496 -Author: John Willis -Date: Wed May 12 14:16:46 2021 -0400 - - Merge pull request #849 from raft-tech/documentation/jwt-rotation - - Documentation: JWT Key Rotation - -commit 231ab3496bad7d231127967444c198290593dabd -Merge: fda26c516 9b565b548 -Author: John Willis -Date: Wed May 12 14:03:48 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/jwt-rotation - -commit 9b565b5484a36276b99d3bb5944fba8b9f1e59ef -Merge: f51bbf0c7 0b8b3e8f0 -Author: John Willis -Date: Wed May 12 14:03:25 2021 -0400 - - Merge pull request #893 from raft-tech/backend/818-1-clamav-client - - Issue 818 (PR #1): Implement ClamAV Client for use with uploads - -commit 0b8b3e8f0a462ff9fad54d38974207d1faf1dbd9 -Merge: b882d2eb5 f51bbf0c7 -Author: John Willis -Date: Wed May 12 13:43:44 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-1-clamav-client - -commit fda26c516b8b28a9c290838dbaa376014e8d3937 -Author: Carl Smith -Date: Wed May 12 13:25:59 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 2c0f5349d097dcebe3649dc607a8f3c882f4e3e2 -Author: Carl Smith -Date: Wed May 12 12:52:53 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 58841145326aeb9d501a8f4dc55e3be0aab36c8a -Author: Carl Smith -Date: Wed May 12 12:52:45 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 9aca0a77736ec35d2077baf85209efc0129c49b1 -Author: Carl Smith -Date: Wed May 12 12:02:25 2021 -0400 - - Update jwt-key-rotation.md - -commit 2527c6b5875349d381558e7f9880a399e4adf699 -Author: Carl Smith -Date: Wed May 12 09:51:03 2021 -0400 - - Update jwt-key-rotation.md - -commit 9d49a30a11d2c756e12a9b75ebe3a29297282c4d -Merge: c1204b8ca f51bbf0c7 -Author: Carl Smith -Date: Wed May 12 09:48:25 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/jwt-rotation - -commit c1204b8ca0b467d1c5666f34441147baadaef3a0 -Author: Carl Smith -Date: Wed May 12 09:45:54 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 3f166fde1cf372cf921a5cb5089a1044206e2014 -Author: Carl Smith -Date: Wed May 12 09:45:44 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 385721eee847d3eb5f6ca28a7e6b62c3127669c8 -Author: Carl Smith -Date: Wed May 12 09:45:33 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit bdce1e60c141cffac93c41dabda418ed8b90de3d -Author: Carl Smith -Date: Wed May 12 09:45:16 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit ed55d8a5be1534182e44a06dde722864a1651c48 -Author: Carl Smith -Date: Wed May 12 09:44:44 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 25dfba6002c20befad9a26af7c845181acd08c69 -Author: Aaron Beavers -Date: Tue May 11 16:42:58 2021 -0400 - - Remove dead test - -commit 5a2d6c79b3b13a5412c8ed86e1661cfc2c7b349b -Author: Aaron Beavers -Date: Tue May 11 16:42:46 2021 -0400 - - Remove duplicate property - -commit a56e6404c19e171abbf41e04fe8c88e46e58b89a -Author: Aaron Beavers -Date: Tue May 11 16:42:36 2021 -0400 - - Add dependencies to useEffect call - -commit eec70f180e07e93e2abc2d435b397b8278ac6a13 -Author: Aaron Beavers -Date: Tue May 11 16:42:19 2021 -0400 - - Remove dead code - -commit ce3085053b34ccb9fc6d4e7705e5463674f6c9b5 -Author: Aaron Beavers -Date: Tue May 11 16:35:50 2021 -0400 - - Revert accidental CSS linting - -commit 915356572ef7059aa9675586073c813b406fe96a -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue May 11 15:12:11 2021 -0500 - - Create sprint-20-summary.md - -commit 5149d4eeab8f6a9730ac230a0d35a1671f02f6e8 -Merge: a7e9cda43 f51bbf0c7 -Author: Carl Smith -Date: Tue May 11 13:51:36 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/762-logging-uploads - -commit 2a804cbfeed6f6f62caa04630762d1770e129349 -Author: Jorge Gonzalez -Date: Tue May 11 12:55:23 2021 -0400 - - Hotfix header STT name - -commit 38db2730ba0283829e13f97838fe32bdfe583879 -Merge: 389eb1181 f51bbf0c7 -Author: Jorge Gonzalez -Date: Tue May 11 12:56:23 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 389eb11819394e3b47a93929a8fcf38bbaf5a636 -Author: Jorge Gonzalez -Date: Tue May 11 12:55:23 2021 -0400 - - Hotfix header STT name - -commit f51bbf0c70d621c07125fb8bfed4a375277f1ed7 -Merge: e5bec974e 509303451 -Author: Carl Smith -Date: Tue May 11 12:06:26 2021 -0400 - - Merge pull request #911 from raft-tech/kniz-raft-patch-1 - - Update index.md - -commit 0d67cd5a01556288f2e746326c8dfebc1bd5e348 -Author: Aaron Beavers -Date: Tue May 11 12:03:24 2021 -0400 - - Use first instead of bracket lookup - -commit 33963f66126455daa3c701671dd4c71d419f4649 -Author: Aaron Beavers -Date: Tue May 11 12:02:11 2021 -0400 - - Remove lint - -commit 8a2843e43153902a0c2b7e8a4b6cce3f0466c919 -Author: Aaron Beavers -Date: Tue May 11 11:59:51 2021 -0400 - - Test paths that do not contain an STT - -commit cfb419618ea4ec8565f40ddd9c3f511077c99460 -Merge: e03d9a0e5 e94ed4e94 -Author: Aaron Beavers -Date: Tue May 11 11:32:06 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/643/list-years - -commit 1079ce3c2007c6b13ca0f2d7d06484be0a7f5737 -Merge: 834f5ac16 e5bec974e -Author: John Willis -Date: Tue May 11 11:28:44 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/jwt-rotation - -commit 834f5ac1636ab70599ac801df5f637bfdb8c80d0 -Author: John Willis -Date: Tue May 11 11:28:03 2021 -0400 - - Updated docs to note Linux difference for openssl command - -commit 4641b289e8d75a823df278163a77ce41ddad5784 -Author: John Willis -Date: Tue May 11 11:24:07 2021 -0400 - - Use machine executor and expose node orb command inside other commands - -commit b65811d36dd7f0fe9f200386cb1f3ecd30556fca -Merge: 0bb22796c b882d2eb5 -Author: John Willis -Date: Tue May 11 11:21:40 2021 -0400 - - Merge branch 'backend/818-1-clamav-client' into backend/818-scan-and-upload-data-files - -commit b882d2eb59c94530ea36136c24695b4aa01226d9 -Merge: 13e86d9d7 e5bec974e -Author: John Willis -Date: Tue May 11 11:17:41 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-1-clamav-client - -commit 509303451c2849de5e264eda502df59246196c33 -Author: Carl Smith -Date: Tue May 11 11:07:44 2021 -0400 - - Update index.md - - linking to the markdown instead of the directory - -commit 2fd38f9df6c747c97a2fbfaf6a53862b0bb38208 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue May 11 09:48:11 2021 -0500 - - Update index.md - -commit e5bec974ea87d15896d7776d4aef9051b84bdb8e -Merge: 18545c6d7 ecdab0a6b -Author: Carl Smith -Date: Tue May 11 10:23:18 2021 -0400 - - Merge pull request #887 from raft-tech/kniz-raft-patch-1 - - Update Roadmap-and-Backlog.md - -commit c4a3318d4c403bcca48315f12dc5f59b972fa1b5 -Author: Aaron Beavers -Date: Mon May 10 16:52:21 2021 -0400 - - Works - -commit fb7314ceeed409a14037bf22b0f03d40b1b45770 -Author: John Willis -Date: Mon May 10 16:38:58 2021 -0400 - - Updated config.yml - -commit 91af0456d8dee68083d4afe6bf93f6b25a77f433 -Author: John Willis -Date: Mon May 10 16:09:06 2021 -0400 - - Use non-legacy docker executor - -commit dd5920d0708282c2fb51fd58454a9cb8e8dec121 -Author: Jorge Gonzalez -Date: Mon May 10 16:05:12 2021 -0400 - - Nit: remove dev setting - -commit 3bf592cd0391e7385675349e296cd749c4594c9c -Merge: bf40cfdc5 18545c6d7 -Author: John Willis -Date: Mon May 10 16:00:42 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit 8deb25c9bfbaf31e91bd3d0af0194bec56200500 -Merge: 52760e95d 1e00451e9 -Author: Jorge Gonzalez -Date: Mon May 10 15:46:40 2021 -0400 - - Merge branch 'feat/374-uuids' of https://github.com/raft-tech/TANF-app into feat/374-uuids - -commit 52760e95d69a8b7c0472a4203ae90890efad73aa -Merge: c3eea0faf 18545c6d7 -Author: Jorge Gonzalez -Date: Mon May 10 15:45:40 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/374-uuids - -commit 1e00451e9e7040bb998e000603a3974cdc51aece -Merge: c3eea0faf 18545c6d7 -Author: Jorge Gonzalez -Date: Mon May 10 15:45:12 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/374-uuids - -commit c3eea0fafaf3fc3776b61a2cc7834006412c92bf -Author: Jorge Gonzalez -Date: Mon May 10 15:40:29 2021 -0400 - - Add tests and tweaks - -commit a7e9cda431d93b507162186c27df1ac2180028c4 -Merge: c27803ce3 18545c6d7 -Author: Jorge Gonzalez -Date: Mon May 10 15:39:54 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/762-logging-uploads - -commit ecdab0a6bb2b96f4bd48274f8e231bd45a7dfaea -Merge: baa24102f 18545c6d7 -Author: Carl Smith -Date: Mon May 10 15:38:14 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit c2587e38a1c2dd4315d94ac9cda35af3942f7ee6 -Merge: 9b4b5a18b 18545c6d7 -Author: Aaron Beavers -Date: Mon May 10 15:19:21 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 - -commit 18545c6d72d2500efe308c83a0e658a8a188da9a -Merge: e94ed4e94 0436f8f1b -Author: Carl Smith -Date: Mon May 10 14:59:37 2021 -0400 - - Merge pull request #836 from raft-tech/feat/767-logging - - Issue 767: Logging Client Alerts and Errors - -commit 9b4b5a18b373544f14be33132a9d017262cfa44d -Author: Aaron Beavers -Date: Mon May 10 14:47:20 2021 -0400 - - update nginx 404 error page - -commit 7e0de58d0e1c46e5000eaa7a6ce1658c9de91a6c -Author: Aaron Beavers -Date: Mon May 10 14:22:33 2021 -0400 - - more specific nginx locations - -commit baa24102fd91ce5924022a41acaf772a4b675ae7 -Merge: f70978701 e94ed4e94 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon May 10 13:22:21 2021 -0500 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit d13522992178b87d177ab01e173405f8dd83167e -Merge: e88032a76 352ddff0d -Author: Aaron Beavers -Date: Mon May 10 13:34:41 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 - -commit 352ddff0d5f66d92b25b2253ee1e17cd206c4a5e -Merge: e94ed4e94 e88032a76 -Author: Aaron Beavers -Date: Mon May 10 13:34:29 2021 -0400 - - Merge branch 'issues/865' into origin/raft-tdp-main - -commit 144f19ee265851e58b07c291efd8e1e3debf9886 -Author: Aaron Beavers -Date: Mon May 10 13:27:09 2021 -0400 - - Lint - -commit 54e6af9f61484c80bdc06a4a669d384153b1d0ee -Author: Jorge Gonzalez -Date: Mon May 10 12:40:17 2021 -0400 - - Fix tests - -commit f6b3f517fa7089b02ca79b15ace1ca258e4252ed -Author: Jorge Gonzalez -Date: Mon May 10 12:02:43 2021 -0400 - - Fix typo - -commit 76e12edbb56fc3261a572aa60f28d34bf65b9db1 -Author: Jorge Gonzalez -Date: Mon May 10 11:54:04 2021 -0400 - - Create and auth users with login.gov uuid - -commit e88032a763ba9fe8afe442e50727a2a14f79329e -Merge: 8cf59e482 e94ed4e94 -Author: John Willis -Date: Mon May 10 11:22:44 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit 8e2eac8cf4702e9a0595c4c9c00e5223f8af847a -Author: Aaron Beavers -Date: Mon May 10 11:07:14 2021 -0400 - - Fix test failiures after merge conflict resolution - -commit 8110676986e77d5a3cb09cc86a91ef03864411fd -Merge: 10df05609 e94ed4e94 -Author: Aaron Beavers -Date: Mon May 10 10:34:21 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 10df0560989c87f2d0f89b3157c413a6792c6e56 -Author: Aaron Beavers -Date: Mon May 10 10:28:37 2021 -0400 - - Fix lint - -commit 8edb851c13686ae64b937cd4a8e9205c7848bfa2 -Author: Aaron Beavers -Date: Mon May 10 09:57:19 2021 -0400 - - Delint - -commit 17e408a217736c0c1bd102e2746778afde5cbc90 -Author: Aaron Beavers -Date: Fri May 7 14:02:16 2021 -0400 - - Over 90% test coverage - -commit 059df39bcb2d86f6de5ec6850fc29bb1416ed92e -Author: Aaron Beavers -Date: Fri May 7 13:47:57 2021 -0400 - - Work on tests - -commit 2bd2158a0d7764d5362d6d96a614c552004d91d6 -Author: Aaron Beavers -Date: Fri May 7 13:47:21 2021 -0400 - - Update error payload for test - -commit c0afefedd001e659289b73172f78d284412b88e2 -Author: Aaron Beavers -Date: Fri May 7 13:46:57 2021 -0400 - - Add test for SET_FILE_LIST - -commit 56944c8f9e5ea58d5573f12a7d7f2afef73e2334 -Author: Aaron Beavers -Date: Fri May 7 13:45:24 2021 -0400 - - Mock axios get method for tests - -commit 4f8eb1fff11933b131714c590d85c9511d2204f5 -Author: Aaron Beavers -Date: Fri May 7 13:43:52 2021 -0400 - - Remove console logs - -commit bf40cfdc57b2d09f47384cac40791607e5a5828d -Author: John Willis -Date: Thu May 6 18:35:47 2021 -0400 - - Added deploy-cloud-dot-gov command that reuses other commands - -commit eecd48c7e0f76f89160bdc10c528d6331da62115 -Author: John Willis -Date: Thu May 6 18:11:15 2021 -0400 - - Fix node version type error - -commit e77e3c3d73f4a7a50230a832aaee04f1e0481080 -Author: John Willis -Date: Thu May 6 18:05:21 2021 -0400 - - Trying a different route for installing nodeJS because of different executor - -commit 2124ac361e903d2a82d796d47f02bce739885353 -Author: John Willis -Date: Thu May 6 16:54:11 2021 -0400 - - Install nodeJS and Yarn for frontend deploy - -commit 44b419c95c7867a8be305ff9ffe463ac1a6e1d81 -Author: John Willis -Date: Thu May 6 15:04:03 2021 -0400 - - Allow set-environment command to persist environment variables between deploy steps - -commit f00da3423e65213f0a222184bb449e0a8e36b519 -Merge: e6a92e9e4 e94ed4e94 -Author: John Willis -Date: Thu May 6 14:44:34 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit 7ca265a46580786cfdd1442872050e4655ea7e50 -Merge: f7eb3a063 c0a1dd2f6 -Author: Aaron Beavers -Date: Thu May 6 13:36:45 2021 -0400 - - Merge branch 'epics/89/issues/416/download-files-frontend' of github.com:raft-tech/TANF-app into epics/89/issues/416/download-files-frontend - -commit f7eb3a063a83a064718c5a6f4d3fc7b1be3cebef -Author: Aaron Beavers -Date: Thu May 6 13:36:02 2021 -0400 - - test set_file_list - -commit a3c595136cee84ee7801b7e284be9ff22827c1a8 -Author: Aaron Beavers -Date: Thu May 6 13:35:49 2021 -0400 - - Remove unnessisary reducer logic - -commit f8e0454cd364a14a42b9c02c77f8791e9a5606b5 -Author: Aaron Beavers -Date: Thu May 6 13:35:24 2021 -0400 - - Add preview test - -commit 5c58fa71d7a2333a81f7e9af6a0f1b6834e016fb -Author: Aaron Beavers -Date: Thu May 6 13:35:12 2021 -0400 - - remove downloaded file trigger after moving download logic - -commit b33b966e782ca7e0aeb5710bbbe6052ecb0d6199 -Author: Aaron Beavers -Date: Thu May 6 13:34:57 2021 -0400 - - update call count - -commit 6afdf2228d0b4d8b17079a4e8c2fee0c24607631 -Author: Aaron Beavers -Date: Thu May 6 13:34:48 2021 -0400 - - Fix section names - -commit 5064b535ad963c5e00ea4dfaf066b9b90ba3ab81 -Author: Aaron Beavers -Date: Thu May 6 13:34:33 2021 -0400 - - Use files over file list - -commit f8a9b5a700541181ad6978beff5ef24e5569d582 -Author: Aaron Beavers -Date: Thu May 6 13:33:59 2021 -0400 - - Add reports action tests - -commit 0440dbc96e7393daa8ed5169ee9b5369d6b072a2 -Author: Aaron Beavers -Date: Thu May 6 13:33:47 2021 -0400 - - Move download logic - -commit 0436f8f1b566a8f711741be606299313a64f115e -Author: Jorge Gonzalez -Date: Thu May 6 13:10:36 2021 -0400 - - Apply suggestions from code review - -commit f8a9644bde3bdfb392d173a3c1535c482e28a874 -Merge: 6480d32d4 e94ed4e94 -Author: Jorge Gonzalez -Date: Thu May 6 13:05:04 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 13e86d9d77a5156ba2e13901d263339cd708c50b -Author: John Willis -Date: Wed May 5 18:27:16 2021 -0400 - - More PEP8 fixes - -commit 6874efbff3d827546447fdbc8b5d062856ef073f -Author: John Willis -Date: Wed May 5 18:16:59 2021 -0400 - - More PEP8 fixes - -commit d36b42c5bfaafe551215d2b9ddbbcc1f93d216d7 -Author: John Willis -Date: Wed May 5 18:03:52 2021 -0400 - - Add docstrings for PEP8 - -commit 64e0c33e2acc541930f6a8dcefdb2159cf2a4e4b -Author: John Willis -Date: Wed May 5 17:23:06 2021 -0400 - - Added wait-for-it to confirm all services are up before starting web docker container - -commit 53005a4b33b5b05023f59c8a9a3fbae18b93cce4 -Author: John Willis -Date: Wed May 5 16:39:16 2021 -0400 - - Issue 818 (PR #1): Implement ClamAV Client for use with uploads - -commit 0bb22796cbb1f9ceadea5e2e79b9c1c94939d4cb -Merge: 9d72a159e e94ed4e94 -Author: John Willis -Date: Wed May 5 15:16:30 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit e94ed4e94daf791431728f393ec6118a8ac92c76 -Merge: 8f7f9868f 8b156cc6e -Author: John Willis -Date: Wed May 5 15:14:03 2021 -0400 - - Merge pull request #787 from raft-tech/feat/738-quarters-select - - Issue 738: Add Dropdown for Quarters Selection - -commit 6480d32d45c3ee34cd11d7301707dfad2c5aac03 -Merge: 46cfac102 8f7f9868f -Author: Jorge Gonzalez -Date: Wed May 5 14:28:21 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit bdda5078b414cce1d8232040f08b48eade649db2 -Author: Aaron Beavers -Date: Wed May 5 14:21:16 2021 -0400 - - Add uuid to mirage outputs - -commit f70978701a8331f7f81167df2314c3fa59e4c011 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:53:45 2021 -0500 - - Update Roadmap-and-Backlog.md - -commit 11179cc7a3eb13bcd96852c060684c907f424096 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:52:12 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit a1f6b3fa7c9c4124d54b93b42e92d06aac1a9003 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:52:04 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 48e2569d9ec1c40611cab0086c9e71b8235d017a -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:51:52 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit a00b5a99bec6ea021ba726cbb487f78e3117694a -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:51:35 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 147788a4fdd8c16bb4738459d28477d107865c38 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:51:26 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 05c29a1d79da7a6d182e9f936a22e19a728d0cbd -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:51:16 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit b03979afb51d5faa328ad6607a40dce73fd3e29c -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed May 5 12:50:58 2021 -0500 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 9a07163093ac4ee498a62b9a8b1a20dfce46937b -Author: Aaron Beavers -Date: Wed May 5 13:50:29 2021 -0400 - - Remove year and quarter from end file download action - -commit e6a92e9e4fd5ec852ce1b748a71504fb25bc3a7a -Merge: ff129c230 8f7f9868f -Author: Aaron Beavers -Date: Wed May 5 13:48:50 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit ff129c230414ca36f925e9989bcce8f25652a7e6 -Author: Aaron Beavers -Date: Wed May 5 11:55:37 2021 -0400 - - Revert "Restore django version" - - This reverts commit a7a019e4b8e359e035b402b0ada9ddc8a9fd906d. - -commit 8b156cc6e17ea9cf6175d5396415c995873748ad -Merge: 9b0b040b4 8f7f9868f -Author: John Willis -Date: Wed May 5 13:33:50 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 8f7f9868fe9496fbb1101e3171d540fb87dc3e00 -Merge: e95b3b690 6e1967486 -Author: John Willis -Date: Wed May 5 13:33:22 2021 -0400 - - Merge pull request #852 from raft-tech/features/850/windows-optimize - - Issue 850: Optimize for Windows - -commit 9d72a159e7af579b0ec7bee8e38cc5992ca5585f -Merge: 34457754b e95b3b690 -Author: John Willis -Date: Wed May 5 13:28:52 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit c5c4622bef4a23de14ee3557bfa160ac8518e295 -Merge: 5b3730af8 e95b3b690 -Author: Carl Smith -Date: Wed May 5 13:25:13 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 0ed788b2be91503aa4c1d5ffe0aeec3b25e8358f -Merge: dfa393a9b e95b3b690 -Author: Carl Smith -Date: Wed May 5 13:24:47 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit c0a1dd2f67d1dbc6a40e16b77dcaabe67f8393d3 -Merge: 647760768 e95b3b690 -Author: Carl Smith -Date: Wed May 5 13:23:56 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 8cf59e482505242023152138e8ecc6a300c86a31 -Merge: 112cbebd3 da4a9d5fe -Author: Aaron Beavers -Date: Wed May 5 13:23:13 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 - -commit 9b0b040b4c7663e63e2b50fbf0cc072a97c30fd1 -Merge: 66e5b1579 e95b3b690 -Author: Jorge Gonzalez -Date: Wed May 5 13:22:19 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 46cfac102c8affe29d46bc240aa5ade05a81f24b -Merge: 758ef743f e95b3b690 -Author: Jorge Gonzalez -Date: Wed May 5 13:22:03 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 6e196748665c1f8307fd17960205a0156c22c518 -Merge: 0ae2bb64c e95b3b690 -Author: John Willis -Date: Wed May 5 13:21:21 2021 -0400 - - Merge branch 'raft-tdp-main' into features/850/windows-optimize - -commit e95b3b690d572570f6e348dd2d4c65204fc3c5ba -Merge: da4a9d5fe d34bf0c06 -Author: John Willis -Date: Wed May 5 13:21:00 2021 -0400 - - Merge pull request #891 from raft-tech/hotfix/circle-ci-pytest-failures - - [Hotfix] Update backend Dockerfiles to use fixed version of Python - -commit d34bf0c066229097a0e694f20f813c2048d61c27 -Author: John Willis -Date: Wed May 5 12:36:05 2021 -0400 - - Update backend Dockerfiles to use fixed version of Python to resolve CI issues - -commit dfa393a9b3b911698b20778fee9110069075216d -Author: John Willis -Date: Wed May 5 12:22:52 2021 -0400 - - Test pinning Dockerfile to previous python version - -commit 758ef743fc9a53f4a8fd1a95b15a1c26942bf4bd -Merge: d202e8ce6 da4a9d5fe -Author: Jorge Gonzalez -Date: Wed May 5 12:08:10 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit e4c747ddae61d13644ea691d930d1e307b19fe2e -Merge: a7a019e4b 48842e12c -Author: Aaron Beavers -Date: Wed May 5 11:56:29 2021 -0400 - - q:qxMerge branch 'devops/844-buildpacks-ci-deploy' of github.com:raft-tech/TANF-app into devops/844-buildpacks-ci-deploy - -commit a7a019e4b8e359e035b402b0ada9ddc8a9fd906d -Author: Aaron Beavers -Date: Wed May 5 11:55:37 2021 -0400 - - Restore django version - -commit 0ae2bb64ce54926d4bbc81dddc84411dcbb56fb0 -Merge: ebeb9f309 da4a9d5fe -Author: Carl Smith -Date: Wed May 5 11:44:34 2021 -0400 - - Merge branch 'raft-tdp-main' into features/850/windows-optimize - -commit 34457754b922e54142f4709629375fe3eed9432b -Author: John Willis -Date: Wed May 5 11:16:32 2021 -0400 - - Working on updating ReportFileFactory - -commit 48842e12c9e720f08a3281890ae8ffbf2cd496f8 -Author: John Willis -Date: Wed May 5 10:42:41 2021 -0400 - - Reset bash change - -commit 4f8c5430e6dd5d9bb9bf299e1c6f3d0f70613867 -Author: John Willis -Date: Wed May 5 10:36:20 2021 -0400 - - Test using sh instead of Bash to run tests - -commit e0ec08515fec7489712d07b6606490f3986cf435 -Author: John Willis -Date: Tue May 4 18:42:41 2021 -0400 - - Fixed tests for API; need to fix serializers - -commit e87554314fd84a8b3e1285b2507b979f3e3c777a -Author: Aaron Beavers -Date: Tue May 4 16:23:50 2021 -0400 - - Added test to setup-environment - -commit 6a0e7c512b93c3f538b47331470df4f2635c706e -Author: Aaron Beavers -Date: Tue May 4 16:05:54 2021 -0400 - - export environment - -commit e208129e6ecc505482e8c09092ff10158d13b7fa -Author: Aaron Beavers -Date: Tue May 4 15:28:12 2021 -0400 - - move steps - -commit 66e5b1579da0f9d66d3eeb75b0f2a7606a4c1458 -Merge: 94548cf00 da4a9d5fe -Author: Jorge Gonzalez -Date: Tue May 4 15:21:07 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 4696d208aaee31530665833f324c80695c53f60e -Merge: f5263d5b7 da4a9d5fe -Author: John Willis -Date: Tue May 4 14:27:09 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit a4ce9b3c29225eb0d1843c1c33ae7492bd6be657 -Author: Aaron Beavers -Date: Tue May 4 13:54:06 2021 -0400 - - move login - -commit 1a29526e3deed6aba0497a6e0d686708c9bb07e7 -Author: Aaron Beavers -Date: Tue May 4 13:29:29 2021 -0400 - - Change filter - -commit 64276c2bc1904a597ebb0564f1ac48bb57f6d0d4 -Author: Aaron Beavers -Date: Tue May 4 13:15:43 2021 -0400 - - Change deploy on label command - -commit 7034bf659c1e3ddff6a19b7e74af3800d5091483 -Merge: 30e9fef19 da4a9d5fe -Author: Aaron Beavers -Date: Tue May 4 13:09:19 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into devops/844-buildpacks-ci-deploy - -commit 112cbebd37973b1c7f49801efcaed15636416d8d -Author: Aaron Beavers -Date: Tue May 4 12:39:30 2021 -0400 - - Uncomment changes - -commit 9ec969eaa8876bda54e3f89d0c4725f8ea855400 -Merge: 87e7e011b 80cc0e26e -Author: Aaron Beavers -Date: Tue May 4 12:31:52 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into issues/865 - -commit 87e7e011b8bbb2dd3c6236fcf6e9db5dd4df3dc3 -Author: Aaron Beavers -Date: Tue May 4 12:23:59 2021 -0400 - - comment nginx routes out to test pally ci issue - -commit 7c2e78cd82edb9b41bad445840c3f8674a700db2 -Author: Aaron Beavers -Date: Tue May 4 12:18:57 2021 -0400 - - Remove error page directive - -commit 93f042dd96626a8ddd9190b9013b5f3b80953d52 -Author: Aaron Beavers -Date: Tue May 4 11:59:15 2021 -0400 - - missing semicolon - -commit cdf643e29a88e32b91f3f1b499d117ac7954e40a -Author: Aaron Beavers -Date: Tue May 4 11:52:26 2021 -0400 - - typo - -commit c27803ce30656f50b174a5069ab4dff2570b1b76 -Author: Jorge Gonzalez -Date: Tue May 4 11:41:01 2021 -0400 - - Lint - -commit 4db179a0a7eed32e6f08d2e8256ebd1f871d16cf -Author: Aaron Beavers -Date: Tue May 4 11:46:41 2021 -0400 - - Update nginx conf - -commit 331021a9815117f180572369d8d6c162a1f4b964 -Author: Jorge Gonzalez -Date: Tue May 4 11:28:06 2021 -0400 - - Add admin test - -commit b9fb6b5d3272a9c842fcdd3ad3bae63f35c8c0d4 -Author: Jorge Gonzalez -Date: Tue May 4 11:10:40 2021 -0400 - - Add LogEntries creation test - -commit 5b3730af83af877b8568681dfc8a8b78a27822ac -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue May 4 09:55:54 2021 -0500 - - Update Roadmap-and-Backlog.md - -commit 5787a1a8e78e47b7d5d95b21230bff9dffef7d16 -Author: Jorge Gonzalez -Date: Tue May 4 10:23:48 2021 -0400 - - Add filenames to LogEntries - -commit f5263d5b72225a085be2361cf81e856a51eea5ec -Author: John Willis -Date: Mon May 3 19:13:31 2021 -0400 - - Got validation working correctly with ClamAV - -commit e7dde2c75e6dfbba8433f944061734e3db6d9747 -Author: Jorge Gonzalez -Date: Mon May 3 18:03:52 2021 -0400 - - Improve object representation in Django Admin, and remove dead branch - -commit 30e9fef19cb4edf3fd0de7e318c27e053da819ba -Author: Aaron Beavers -Date: Mon May 3 15:56:18 2021 -0400 - - Add staging environment - -commit 86ed35a284c0a68f8ad025e645919f5a865e76f4 -Author: Aaron Beavers -Date: Mon May 3 15:56:04 2021 -0400 - - rename hostname var to appname - -commit 73b1d60685e029cb78141e014394bc9657741db7 -Author: Aaron Beavers -Date: Mon May 3 15:36:16 2021 -0400 - - changing something to check if deploy happens - -commit 0a08f0efd763e38b09004df3e2ff4a5324f084a7 -Author: Aaron Beavers -Date: Mon May 3 13:00:15 2021 -0400 - - Add deploy-prod job - -commit b50f533d1a4d9f646f9f1c490a2aaa48b7301cbd -Author: Aaron Beavers -Date: Mon May 3 12:59:56 2021 -0400 - - update app/hostname in parameters - -commit da4a9d5fe1e306f13bc0d149755e34fac82234f2 -Merge: 80cc0e26e 1c3d483e5 -Author: Carl Smith -Date: Mon May 3 11:14:01 2021 -0400 - - Merge pull request #863 from raft-tech/snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 - - [Snyk] Upgrade classnames from 2.2.6 to 2.3.0 - -commit d202e8ce634a5e3200436c443f15b593bae403fa -Merge: 2a5a1158a 80cc0e26e -Author: Jorge Gonzalez -Date: Mon May 3 10:52:14 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 1c3d483e57e26ebdba40cb4716bcbcd99924c22b -Merge: 82dd1076c 80cc0e26e -Author: Jorge Gonzalez -Date: Mon May 3 10:48:34 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 - -commit ced703e43a4cd6323bb2064033b40e5e006d6a2d -Author: John Willis -Date: Fri Apr 30 19:04:32 2021 -0400 - - Added ClamAVClient and update tests to use it instead of direct requests call; implement file scanning with django file validation - -commit 0a3583fbfa0fedb3ef63e532226ad03de8b80fd2 -Merge: 52afc7e58 80cc0e26e -Author: John Willis -Date: Fri Apr 30 16:46:05 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit 80cc0e26e7413103cd6042d0ca176f2bda89fcec -Merge: f88d1dcc2 92caa2b38 -Author: Carl Smith -Date: Fri Apr 30 14:53:11 2021 -0400 - - Merge pull request #846 from raft-tech/snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - - [Snyk] Upgrade uswds from 2.9.0 to 2.11.1 - -commit 52afc7e5827ec2864ebe9218b16ee72e400a71b6 -Merge: c59a28859 f88d1dcc2 -Author: John Willis -Date: Fri Apr 30 14:40:58 2021 -0400 - - Merge branch 'raft-tdp-main' into backend/818-scan-and-upload-data-files - -commit eb7abdae7b04b334e72eee98ca084d60fe5767e2 -Author: Aaron Beavers -Date: Fri Apr 30 13:47:53 2021 -0400 - - Add type to parameter - -commit b2a2f140493d9cfc849fd6105458bdea8eb33a22 -Author: Aaron Beavers -Date: Fri Apr 30 13:46:42 2021 -0400 - - Fix schema on login command - -commit 4d1e2f5c3337f4f104bc6afac45cf71843690632 -Author: Aaron Beavers -Date: Fri Apr 30 13:46:14 2021 -0400 - - Add docker back - -commit c6f0673e5fe097b2d5070c690eb3b7f9064bd333 -Author: Aaron Beavers -Date: Fri Apr 30 13:13:36 2021 -0400 - - Fix Typo - -commit 0da9bf8f54850bec55e402b67394541c7a76589a -Author: Aaron Beavers -Date: Fri Apr 30 13:11:18 2021 -0400 - - Remove duplicate parameter key - -commit 05aabb3ffde117c359e0a136eff9e125d6ecb86f -Author: Aaron Beavers -Date: Fri Apr 30 13:09:06 2021 -0400 - - YAML error - -commit 92caa2b383c12f29338d511f61c67d6c85d7bc9e -Merge: 9126cfe07 f88d1dcc2 -Author: Carl Smith -Date: Fri Apr 30 13:02:49 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit 7e8baf4166e84cc00134f35152403ebe3d240f6f -Author: Aaron Beavers -Date: Fri Apr 30 11:57:01 2021 -0400 - - Fix syntax error in yaml file - -commit f88d1dcc2fa6d3b956f468c8204cb9be9d5b3c65 -Merge: 0122a66a9 ff1d648bb -Author: Carl Smith -Date: Fri Apr 30 11:55:19 2021 -0400 - - Merge pull request #878 from raft-tech/carltonsmith-patch-4 - - Security Controls: AC-02(07) update link to migration - -commit ffb6cd35ed8bba7de5e7f499406dd28e315908cb -Author: Aaron Beavers -Date: Fri Apr 30 11:44:39 2021 -0400 - - formatting - -commit ff1d648bbf0628ecc2229c9f889abe91d0f9b50c -Merge: c66643092 0122a66a9 -Author: Carl Smith -Date: Fri Apr 30 11:29:21 2021 -0400 - - Merge branch 'raft-tdp-main' into carltonsmith-patch-4 - -commit 0122a66a98eeb6b39675bf9fe4f04e374bcb5ad3 -Merge: 2a376a74a 5ea50d228 -Author: Carl Smith -Date: Fri Apr 30 11:27:51 2021 -0400 - - Merge pull request #827 from raft-tech/snyk-fix-02af83d9d2ab980c36f5fb54f5f7b20e - - [Snyk] Security upgrade django from 3.1.7 to 3.1.8 - -commit 5ea50d228b3dea8d93107cdf2c3c00a2acaf165a -Merge: ab6d5e7cd 2a376a74a -Author: Carl Smith -Date: Fri Apr 30 10:25:21 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-fix-02af83d9d2ab980c36f5fb54f5f7b20e - -commit 2a376a74ac3b35a3f1c2dcca0906a8d4cf68f8b1 -Merge: dae6e4531 39a9f0add -Author: Carl Smith -Date: Fri Apr 30 10:23:57 2021 -0400 - - Merge pull request #884 from raft-tech/hotfix/817-handle-different-app-names - - Hotfix: Resolve vendor staging deployment issue introduced by clamav-rest - -commit 7df5294c64d99cb2436704bb10151ebfa21db2e1 -Author: Aaron Beavers -Date: Fri Apr 30 10:23:05 2021 -0400 - - formatting - -commit 736ec1fb60deeb90ef80148ed786be18906040b1 -Author: Aaron Beavers -Date: Fri Apr 30 10:22:48 2021 -0400 - - Use proper variable access - -commit 8b3c3971314ece8dd39091c5d4729c7aeb426f7f -Author: Jorge Gonzalez -Date: Thu Apr 29 16:53:19 2021 -0400 - - Lint - -commit 8bb566260f8537c687cac80d9a47e821cba9013e -Author: Aaron Beavers -Date: Thu Apr 29 15:51:51 2021 -0400 - - remove docker deployment ci path - -commit 0979504b559fa35f2b2d4665089de64ce6ad1e12 -Author: Jorge Gonzalez -Date: Thu Apr 29 15:19:53 2021 -0400 - - Nit - -commit 39a9f0addfc2f6bb3436ce6a051a98e65e50107e -Author: John Willis -Date: Thu Apr 29 15:28:31 2021 -0400 - - Hotfix: Resolve vendor staging deployment issue introduced by clamav-rest - -commit 90fd503a8b3ecc9aa89b5dd51ea6de5b2ca9cb8d -Author: Aaron Beavers -Date: Thu Apr 29 14:56:50 2021 -0400 - - add deploy dev flow - -commit 62068e3b0e2e01c1386f364c9f8ab906371f84f1 -Author: Jorge Gonzalez -Date: Thu Apr 29 14:50:34 2021 -0400 - - Nit - -commit 4473bec9919f9160bf6f32fe6878efac166fc8c6 -Author: Aaron Beavers -Date: Thu Apr 29 14:37:20 2021 -0400 - - Canabalising original deployment command - -commit 834c4f86c0cc604ae583896c140860c938ab35f2 -Author: Aaron Beavers -Date: Thu Apr 29 14:36:15 2021 -0400 - - add reusable commands for deployment - -commit d80806f34dd68feed18ca8673e99460b45391fdf -Author: Jorge Gonzalez -Date: Thu Apr 29 14:14:55 2021 -0400 - - Lint - -commit 482956d553751c5880f7d287514f1d7e651def34 -Merge: 395e10f95 2a5a1158a -Author: Jorge Gonzalez -Date: Thu Apr 29 14:13:20 2021 -0400 - - Merge branch 'feat/767-logging' into feat/762-logging-uploads - -commit 94548cf00a61f476987acb2708ec0743d7781804 -Merge: 774ca556c 9c4205bdb -Author: Jorge Gonzalez -Date: Thu Apr 29 14:11:37 2021 -0400 - - Merge remote-tracking branch 'origin/feat/738-quarters-select' into feat/738-quarters-select - -commit 774ca556c2c8ebdb77a8c7669761682d323f811a -Author: Jorge Gonzalez -Date: Thu Apr 29 14:11:29 2021 -0400 - - Use mock endpoint - -commit 2a5a1158a9021c66cff2bca032c271b2bb8e4b28 -Merge: 3781052f6 dae6e4531 -Author: Jorge Gonzalez -Date: Thu Apr 29 14:09:32 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 9c4205bdb8dedcb64e3ddc3a77b3c5bcface0a1b -Merge: 61be62064 dae6e4531 -Author: Jorge Gonzalez -Date: Thu Apr 29 14:09:06 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit dae6e4531d1236d79d7f01c0badb2c5dce6cb825 -Merge: 6367e6f00 f5d931eb2 -Author: Carl Smith -Date: Thu Apr 29 14:05:03 2021 -0400 - - Merge pull request #819 from raft-tech/devops/817-add-clamav - - Issue 817: Add clamav to local and cloud.gov environments for virus scanning - -commit f5d931eb266471aa6e758142d05071f39d8451da -Merge: fc0729ac0 6367e6f00 -Author: John Willis -Date: Thu Apr 29 13:23:46 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 6367e6f00804242fceb0edead13d6f544162ca03 -Merge: a2794998c 0e6908edd -Author: Carl Smith -Date: Thu Apr 29 13:10:38 2021 -0400 - - Merge pull request #875 from raft-tech/kniz-raft-patch-2 - - Update communication-tools.md - -commit 0e6908edd6b45c6aa6524ed8f63c0b2e0b2cae25 -Merge: aa890c76c a2794998c -Author: Carl Smith -Date: Thu Apr 29 12:57:06 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit a2794998c58e4e9df4a276e8b87864ecca5f6ad0 -Merge: c3862d1e4 3e3d7263c -Author: Carl Smith -Date: Thu Apr 29 12:55:43 2021 -0400 - - Merge pull request #876 from raft-tech/kniz-raft-patch-3 - - Update our-team-and-values.md - -commit 3e3d7263c6d88ac69314eab96ae747a679a289ae -Merge: 63c958b95 c3862d1e4 -Author: Carl Smith -Date: Thu Apr 29 12:34:24 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-3 - -commit c3862d1e4521cd5a39cfc8dcfcc1780e0f0efce2 -Merge: ea40cc48d f7df6ad1b -Author: Carl Smith -Date: Thu Apr 29 12:33:09 2021 -0400 - - Merge pull request #874 from raft-tech/kniz-raft-patch-1 - - Create sprint-19-summary.md - -commit 395e10f9586d8c241b80ee6d25134f9679383d40 -Author: Jorge Gonzalez -Date: Thu Apr 29 12:26:19 2021 -0400 - - Add docstrings - -commit 61be620647b35fb2f10fa7e8fc81685d0cd1b34e -Merge: d6bd71ec1 ea40cc48d -Author: Jorge Gonzalez -Date: Thu Apr 29 12:20:19 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit d6bd71ec1f0dc61010e0e31cf478ed751261d062 -Author: Jorge Gonzalez -Date: Thu Apr 29 11:49:55 2021 -0400 - - Fix default stt issue - -commit f7df6ad1b0922ed2d969d6898deee77aaf980a6b -Merge: 35f5cc93f ea40cc48d -Author: Carl Smith -Date: Thu Apr 29 12:19:06 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit ea40cc48d2914ad5510684ac937868b73c912dd0 -Merge: 0b4eb2e2a 2b1f64958 -Author: Carl Smith -Date: Thu Apr 29 12:16:21 2021 -0400 - - Merge pull request #868 from raft-tech/documentation/personas-and-stakeholders - - [Documentation] Update to personas and stakeholders for Issue #804 - -commit 4156dc2971b8f9ace4ce2f9fa16e75939ecd561e -Merge: 83d4f31a1 3781052f6 -Author: Jorge Gonzalez -Date: Thu Apr 29 11:06:46 2021 -0400 - - Merge branch 'feat/767-logging' into feat/762-logging-uploads - -commit 83d4f31a13c056288c2a803b4b5819c50b79c0d5 -Author: Jorge Gonzalez -Date: Thu Apr 29 10:57:22 2021 -0400 - - Tweak permissions - -commit 394283cbc23dceba9926af908bc3be4d9efda0f1 -Merge: 9e91866f0 0b4eb2e2a -Author: Jorge Gonzalez -Date: Thu Apr 29 09:58:01 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/762-logging-uploads - -commit d0524b1aaf8dcdae445d787572e8ed3c6dcefac2 -Merge: 98a06f90a 0b4eb2e2a -Author: Jorge Gonzalez -Date: Thu Apr 29 09:20:35 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 98a06f90aa996612899f4bd2817c6d7166662e41 -Author: Jorge Gonzalez -Date: Thu Apr 29 09:20:30 2021 -0400 - - Update tdrs-frontend/src/components/Reports/Reports.jsx - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit fc0729ac0d5065c338d37b92d9be90ba5645580f -Author: John Willis -Date: Thu Apr 29 00:50:13 2021 -0400 - - Utilize raw string for EICAR test file - -commit 647760768dbd862d53571d1548a64e6adeb596b4 -Merge: 4a9243cf5 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:13:00 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit c6664309255407ddd490cd6f177fe546a2ba1bbd -Merge: 30b150921 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:12:33 2021 -0400 - - Merge branch 'raft-tdp-main' into carltonsmith-patch-4 - -commit 82dd1076c23822f4825782fe055f07ff51699c8c -Merge: c700b82e8 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:11:37 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 - -commit aa890c76c9ec5891ce2314e37da5e03ec5d484bb -Merge: 1ad901b44 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:02:19 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit 35f5cc93fb980e5301f0c616753fc17aed5e896e -Merge: b3b6b4abf 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:02:14 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 63c958b952e66d3bc4edbb0ce22c78d7542fdbcf -Merge: 1f8d42322 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:02:10 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-3 - -commit 2b1f649582fa003c9e0c1a27ab5ac8e4b1f6c891 -Merge: ac0294092 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 18:01:23 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/personas-and-stakeholders - -commit 31d6a052a04c07f638872260d7e28a3f8e435849 -Merge: 8f914c7c3 77b1b79e6 -Author: John Willis -Date: Wed Apr 28 17:47:29 2021 -0400 - - Merge pull request #809 from raft-tech/epics/783/issues/781/frontend-buildpacks - - Issue 781: [Frontend] Implement Buildpacks - -commit 8f914c7c339dcf973964099d3373d4bcd2c0b1dd -Merge: 0b4eb2e2a 4b4140ca4 -Author: John Willis -Date: Wed Apr 28 17:45:59 2021 -0400 - - Merge pull request #810 from raft-tech/epics/783/issues/735/backend-buildpacks - - Issue 735: [Backend] Implement buildpacks - -commit ab6d5e7cd5d866656e941edf8f716964436f15af -Merge: c82e6d565 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 17:42:23 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-fix-02af83d9d2ab980c36f5fb54f5f7b20e - -commit 3781052f6665146b29a82b6ead88ee290e01c4b4 -Merge: bd1092dc9 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 17:41:42 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit f084641c870b421b5464aa7f3044bbbb5fbb31ab -Author: John Willis -Date: Wed Apr 28 16:53:58 2021 -0400 - - Remove unnecessary tear down step - -commit 9e91866f0a719953363af5ce694b325a3aee90a5 -Author: Jorge Gonzalez -Date: Wed Apr 28 16:38:14 2021 -0400 - - Fix api tests - -commit 41530d70cb9785c6ce936c3982943c4d2a27167a -Merge: fb824b28e 0b4eb2e2a -Author: John Willis -Date: Wed Apr 28 16:34:53 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 0b4eb2e2ac5a5cef3351b86ed37dc4b10d388129 -Merge: 64d7ad311 899992c44 -Author: John Willis -Date: Wed Apr 28 16:33:23 2021 -0400 - - Merge pull request #871 from raft-tech/hotfix/870-pa11y-connection-errors - - Issue 870: Fix Pa11y Connection Errors - -commit 30b150921f0fb483e71634bcf95d75f84bd74a7f -Author: Carl Smith -Date: Wed Apr 28 16:13:24 2021 -0400 - - update link to migration - -commit fb824b28edb43115dc4770216bebbe16d8e9b935 -Author: John Willis -Date: Wed Apr 28 15:58:35 2021 -0400 - - Revert intentional test failure to restore passing state - -commit 98497e2f14f5f856ed79fdc6b591f7041e746248 -Author: John Willis -Date: Wed Apr 28 15:48:33 2021 -0400 - - Test that failing tests don't cause a false positive - -commit c0057b1768d7dc57d8f4f3c32316da15dbc430da -Author: Jorge Gonzalez -Date: Wed Apr 28 15:32:46 2021 -0400 - - Fix user reference - -commit 655689140219fe74e05da497856212f5c73ae6cb -Author: John Willis -Date: Wed Apr 28 15:25:26 2021 -0400 - - Prevent false positives for test success - -commit 4a9243cf5fa7feb25ca944177172998069f763a9 -Author: Aaron Beavers -Date: Wed Apr 28 13:32:20 2021 -0400 - - refactor file download reducer - -commit e2558c31f4b67b98b093faf42e8b1b799ef711fb -Author: Aaron Beavers -Date: Wed Apr 28 13:32:08 2021 -0400 - - Add test expectation of there being two buttons - -commit 3ed20a98e8f63951080f6468ca7d2818da8b7e52 -Author: Aaron Beavers -Date: Wed Apr 28 13:30:57 2021 -0400 - - update button class for test - -commit 25427cf162961c053f817f99032f57c57c09fc7e -Author: Aaron Beavers -Date: Wed Apr 28 11:36:53 2021 -0400 - - Move logic from file upload component to a seperate utility file - -commit bd1092dc9416f0fb83dedcc75fe3fe0ab1d32f7a -Author: Jorge Gonzalez -Date: Wed Apr 28 10:40:39 2021 -0400 - - Remove dead comment - -commit 1f8d423221e6a90710185468198097967b623e31 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Apr 28 08:31:30 2021 -0500 - - Update our-team-and-values.md - -commit 1ad901b445529df619993fcfecb08b437ccff68e -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Apr 28 08:25:41 2021 -0500 - - Update communication-tools.md - -commit b3b6b4abf4b43ded8709c61577b6d4f36a7b2919 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Apr 28 08:14:17 2021 -0500 - - Create sprint-19-summary.md - -commit d14391739e5858c562782b79d2331ddd43585a87 -Author: John Willis -Date: Tue Apr 27 17:39:12 2021 -0400 - - Fix linter error - -commit e34a1c32744b4b6007a51a7748db9f5f352923d5 -Author: John Willis -Date: Tue Apr 27 17:29:28 2021 -0400 - - Fix linter error - -commit 181095998f85cdf727ee6e347ad2abf3b4c45582 -Author: John Willis -Date: Tue Apr 27 17:18:20 2021 -0400 - - Add test for infected files using an EICAR test file - -commit d716d54dad6b92e79213accd345ae538d1f8bc43 -Author: Jorge Gonzalez -Date: Tue Apr 27 16:54:12 2021 -0400 - - bad import - -commit 899992c4436439b0dd01518b8c8564709a6b915a -Author: John Willis -Date: Tue Apr 27 16:34:30 2021 -0400 - - Reset Circle CI config changes - -commit d554cec401ac3698c81a408b173f5c5ba9d52757 -Author: John Willis -Date: Tue Apr 27 16:29:48 2021 -0400 - - Fix path for node modules - -commit 4d384b008eb24c3e04537f090c3ce00d8dc8fd75 -Author: John Willis -Date: Tue Apr 27 16:25:29 2021 -0400 - - Test manually installing chromium from puppeteer revision - -commit 974426b04f144fb621fc9d281c8240467e59769a -Author: John Willis -Date: Tue Apr 27 16:18:15 2021 -0400 - - Force Puppeteer to use packaged google chrome - -commit c0213cdcd105a13502dfd85cf886c2fe502aa43a -Author: John Willis -Date: Tue Apr 27 16:11:40 2021 -0400 - - Test manually installing chromium - -commit cadd002db09bbbe701fe0576564463c4a3568178 -Author: John Willis -Date: Tue Apr 27 15:45:42 2021 -0400 - - Upgraded pa11y version - -commit f4c3d17f48e83d2c3f7e5fc9e266e2e056c19e89 -Author: John Willis -Date: Tue Apr 27 15:27:34 2021 -0400 - - Issue 870: Fix Pa11y Connection Errors - -commit ac02940926ee03d8ec634428861473d9f0bbc868 -Merge: 40a360eeb 64d7ad311 -Author: Carl Smith -Date: Tue Apr 27 13:21:36 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/personas-and-stakeholders - -commit c700b82e8e7942cc2822e97863abfc3e172592b7 -Merge: 05f7356ef 64d7ad311 -Author: Jorge Gonzalez -Date: Tue Apr 27 09:43:12 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 - -commit 46538ae4ae934c284fc2fe019646116c302e698e -Author: Jorge Gonzalez -Date: Tue Apr 27 09:29:50 2021 -0400 - - Nits - -commit 2f2a3b9029b9821a1a042cdd472aedb9f2f7f41d -Merge: 31b397614 ae05060f6 -Author: Jorge Gonzalez -Date: Tue Apr 27 09:27:51 2021 -0400 - - Merge branch 'feat/767-logging' into feat/762-logging-uploads - - # Conflicts: - # tdrs-backend/tdpservice/core/views.py - -commit 40a360eeb85b47c27cebb2e7b9e71c299869cd11 -Author: Miles Reiter -Date: Mon Apr 26 23:06:32 2021 -0400 - - Update Stakeholders-and-Personas.md - - Final tweaks - -commit 9efe130f92878ebdd13edc157a64642b326c6921 -Merge: f403bc5fc 64d7ad311 -Author: John Willis -Date: Mon Apr 26 18:08:04 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit b11b1abfead6bb591acc091ee72025fcaf7d3a05 -Author: Jorge Gonzalez -Date: Mon Apr 26 17:12:28 2021 -0400 - - Update tdrs-frontend/nginx/nginx.conf - -commit ae05060f64e8bb9c9987bd4bb52aeb5e0d0ed2ad -Author: Jorge Gonzalez -Date: Mon Apr 26 16:55:02 2021 -0400 - - Add test for log output - -commit 5019fd4be293cd22823bbb7ef8b31e2d02ae3fad -Author: Jorge Gonzalez -Date: Mon Apr 26 16:31:32 2021 -0400 - - lint - -commit 9997ff2bfbba1de7a15e9ada01b1b62851fccf5c -Author: Jorge Gonzalez -Date: Mon Apr 26 15:01:02 2021 -0400 - - fix test - -commit b439e4e76acdc4620ad7d2e46ab0ddc52ca57fd6 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:36:39 2021 -0400 - - various fixes and improve logging statement - -commit 31b3976147313a58900946800e7e57cf17550d7e -Merge: e0def7031 743d5217a -Author: Jorge Gonzalez -Date: Mon Apr 26 14:40:42 2021 -0400 - - Merge branch 'feat/767-logging' into feat/762-logging-uploads - - # Conflicts: - # tdrs-backend/tdpservice/core/views.py - # tdrs-frontend/src/components/UploadReport/UploadReport.jsx - # tdrs-frontend/src/utils/eventLogger.js - -commit 6315322854b426929dcea2f3517208d25d5a8107 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:37:43 2021 -0400 - - typo - -commit 8b307eafde0d4bb4cc87d321e3e1d5fa81e0d4f7 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:37:31 2021 -0400 - - lint - -commit 743d5217aa2ddb58d3f111c391b0727905a205f9 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:36:39 2021 -0400 - - various fixes and improve logging statement - -commit 9126cfe0707a8d1aeeb9f6e0ae9e160c6bd5759b -Merge: b65356ab2 64d7ad311 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:15:15 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit f799fdccc77506f65ca6412ff49a30b5107a26c9 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:13:55 2021 -0400 - - Apply suggestions from code review - -commit 5c3a7cfce9db9e1c1fe674a1ac53d2b5b0967052 -Merge: c1cb03354 64d7ad311 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:12:43 2021 -0400 - - Merge branch 'raft-tdp-main' into issues/865 - -commit c1cb0335406b20b0dc8bccfaea92b64f6e55861c -Merge: 02b47e353 e37beef91 -Author: Jorge Gonzalez -Date: Mon Apr 26 14:12:27 2021 -0400 - - Merge branch 'main' into issues/865 - -commit 7d5ec8c9992ff05809a0719ccd9ec6f948d2d177 -Merge: b6842044d 64d7ad311 -Author: Jorge Gonzalez -Date: Mon Apr 26 12:04:07 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 83c8f68883cf42f07837b5da2657da172aa0f7c7 -Merge: 2b89b2f69 64d7ad311 -Author: Jorge Gonzalez -Date: Mon Apr 26 10:58:01 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 2b89b2f69a5974e4dc14b396cc5465ce7c1f22ed -Author: Jorge Gonzalez -Date: Mon Apr 26 10:48:55 2021 -0400 - - various tweaks - -commit 64d7ad31192065679b46a9d1bacd812092db9878 -Merge: 2374c2621 9342b7969 -Author: Carl Smith -Date: Mon Apr 26 10:38:58 2021 -0400 - - Merge pull request #862 from raft-tech/adp/updates-gov-a11y-review - - updated docs re: gov a11y review - -commit 9342b7969a8d7dcc85708db29c4e4f0204cb5c9b -Merge: b15861a91 2374c2621 -Author: Carl Smith -Date: Mon Apr 26 10:26:26 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/updates-gov-a11y-review - -commit 2374c262129085322403b9c6c9e0f5062b04b355 -Merge: a848714ae e14f8829f -Author: Carl Smith -Date: Mon Apr 26 10:24:36 2021 -0400 - - Merge pull request #837 from raft-tech/features/828/active-users - - Issue 828: Do not allow inactive users to log in - -commit e14f8829f61a3762a3276d9b41ea300151f0e29a -Merge: 1c6014d0f a848714ae -Author: Carl Smith -Date: Mon Apr 26 10:10:15 2021 -0400 - - Merge branch 'raft-tdp-main' into features/828/active-users - -commit 608be9586838ab52d686a597dbfade8b2b35fae0 -Merge: 33602a2ec a848714ae -Author: Jorge Gonzalez -Date: Mon Apr 26 10:09:47 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit a848714ae4dcf73a308e9e335fad86c3bce6a017 -Merge: 71a794165 6c0e7a9f6 -Author: Carl Smith -Date: Mon Apr 26 10:07:35 2021 -0400 - - Merge pull request #864 from raft-tech/hotfix/730-owasp-report-cypress-failure - - Hotfix: Remove usage of Cypress orb - -commit 02b47e3534ad7b2b8c20dfc8fc410e8bc6594058 -Author: Aaron Beavers -Date: Sat Apr 24 15:05:16 2021 -0400 - - Added a catch all route to show an error message on undefined paths - -commit 12da59172da937e1135e0b6c6671fe70b807a1f3 -Author: Aaron Beavers -Date: Sat Apr 24 15:04:06 2021 -0400 - - added explicit locations for each react route - -commit b15861a915478c5b391afdd1397bc609614b56dc -Merge: 0ace2927c 71a794165 -Author: Carl Smith -Date: Fri Apr 23 15:35:44 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/updates-gov-a11y-review - -commit c59a28859c908d1ff6d40cc57d1f4062c318d447 -Author: John Willis -Date: Fri Apr 23 15:33:06 2021 -0400 - - Added setup script to configure bucket in Localstack; Added validators for content type and file extension to ReportFile file field - -commit ba5bc0f1fdcec6ec0f546503e4770948f16006f2 -Merge: 2f15e73f9 f403bc5fc -Author: John Willis -Date: Fri Apr 23 14:40:30 2021 -0400 - - Merge branch 'devops/817-add-clamav' into backend/818-scan-and-upload-data-files - -commit f403bc5fcb82ef1bb7a1ce070d25f323456060c3 -Merge: b62a487f7 71a794165 -Author: John Willis -Date: Fri Apr 23 14:30:29 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 6c0e7a9f6b5921240b88feea093bf905c4d8646d -Author: John Willis -Date: Fri Apr 23 13:42:17 2021 -0400 - - Remove usage of Cypress orb - -commit 0ace2927cd9304e66b340cf906c998095e0c05d9 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 23 11:49:21 2021 -0400 - - updated timing of gov a11y review - -commit 0b12dbe1173d9539a271cedd0ad608d2bb50e90a -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 23 11:43:07 2021 -0400 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit b6842044daf42292f8b120c10b45ce04c8121eaa -Merge: 05d260489 71a794165 -Author: Jorge Gonzalez -Date: Fri Apr 23 11:42:22 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit b65356ab2bda62a4b26230a7bd61949266a81fe4 -Merge: ab5709fdf 71a794165 -Author: Jorge Gonzalez -Date: Fri Apr 23 11:41:58 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit 05f7356ef353856287afd74474ec87033322e1a5 -Merge: b992a959a 71a794165 -Author: Jorge Gonzalez -Date: Fri Apr 23 11:41:25 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-a2af7e4a59b6965127b3697bf4af0a15 - -commit 71a7941653d2ccfd0065ad8e8c619cd8836c8cec -Merge: 14e483bdc dc97c9b9e -Author: Carl Smith -Date: Fri Apr 23 10:40:51 2021 -0400 - - Merge pull request #857 from raft-tech/features/owasp-html - - Issue 730: Generate OWASP ZAP report as part of the automated CI/CD process - -commit 6133c43eedc6268138a964ab77c6d8d2ce54fe6b -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 23 10:06:31 2021 -0400 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit e53164cc24e763ef7022f6902422fab920ec833e -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 23 09:59:40 2021 -0400 - - Update docs/Architecture Decision Record/009-git-workflow.md - -commit dc97c9b9e3a65031629683318ad3256d04f79d1a -Author: Carl Smith -Date: Fri Apr 23 08:15:33 2021 -0400 - - Update docs/Technical-Documentation/Zap-Scan-HTML-Report.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 2f15e73f9525b6b42765063147444d608a4d910b -Author: John Willis -Date: Thu Apr 22 18:33:51 2021 -0400 - - Accept file through Report viewset - -commit b992a959a8c4c49f7a449efb7fac70d74ecda3e2 -Author: snyk-bot -Date: Thu Apr 22 22:13:47 2021 +0000 - - fix: upgrade classnames from 2.2.6 to 2.3.0 - - Snyk has created this PR to upgrade classnames from 2.2.6 to 2.3.0. - - See this package in npm: - - - See this project in Snyk: - https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr - -commit aacf8296c2d8c48e7055bb3c714e3430db538950 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Thu Apr 22 17:53:37 2021 -0400 - - Update docs/Technical-Documentation/qasp-operational-checklist.md - -commit e7f221c07f212f70c324e6990034ddd54ee3d0f3 -Author: John Willis -Date: Thu Apr 22 17:43:48 2021 -0400 - - Added migration - -commit 0ec626f953924a5f8e8706bfa52422c57f8ed0b4 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Apr 22 17:26:45 2021 -0400 - - updated docs re: gov a11y review - -commit e0def7031416364c397c3ca1ed0db8c4721d8911 -Author: Jorge Gonzalez -Date: Thu Apr 22 16:51:21 2021 -0400 - - Log file uploads and add to django admin - -commit deaaa6397459b21e52d62ee1bbebfd897bad9d6d -Author: Carl Smith -Date: Thu Apr 22 13:03:29 2021 -0400 - - Update Zap-Scan-HTML-Report.md - -commit fceb4094d2aceeb65d68ae7ecd17406e31a4230f -Author: Carl Smith -Date: Thu Apr 22 13:03:07 2021 -0400 - - Update Zap-Scan-HTML-Report.md - -commit 70d5bf90fdcd84acd5f2b064f53603fa500cf036 -Author: Carl Smith -Date: Thu Apr 22 13:02:35 2021 -0400 - - Add files via upload - -commit c4da37b48c1af08adeb1c81b4abf09d62dc7a0d6 -Author: Carl Smith -Date: Thu Apr 22 13:02:13 2021 -0400 - - Update Zap-Scan-HTML-Report.md - -commit b6bcb3084387f04645567015a3f97adc13179836 -Author: Carl Smith -Date: Thu Apr 22 12:59:27 2021 -0400 - - Add files via upload - -commit 5898344c0be3e39ca6ae259272f67f404e90fe8a -Author: Carl Smith -Date: Thu Apr 22 12:59:04 2021 -0400 - - Update Zap-Scan-HTML-Report.md - -commit f96cfa22b62f9ba84ec42f4d696caf5f17ebf05b -Author: Carl Smith -Date: Thu Apr 22 12:56:45 2021 -0400 - - Add files via upload - -commit 9a314afe1925e417889b53fee28f3816e4fb4aeb -Author: Carl Smith -Date: Thu Apr 22 12:55:06 2021 -0400 - - Add files via upload - -commit 91d5ff02de00a41febd563144fd3c6759a312f73 -Author: Carl Smith -Date: Thu Apr 22 12:54:25 2021 -0400 - - Update Zap-Scan-HTML-Report.md - -commit c3f613382492bfcc0cac89ea79eb7eb27b3cac37 -Author: Carl Smith -Date: Thu Apr 22 12:39:44 2021 -0400 - - Add files via upload - -commit 351e5ee2be55d4f391d2e2a34323e0d3cf0499be -Author: Carl Smith -Date: Thu Apr 22 12:39:01 2021 -0400 - - Update Zap-Scan-HTML-Report.md - -commit 4a0ab295d6bfec5d4251ca45fb064e06f8ce19dd -Author: Aaron Beavers -Date: Thu Apr 22 12:17:17 2021 -0400 - - remove additional mirage start call after conflict resolution - -commit 7d53cba6f6a3818e29a756f093d1eb08c0641068 -Author: Aaron Beavers -Date: Thu Apr 22 12:12:49 2021 -0400 - - Start adding logic for faux preview of previously uploaded file - -commit f9320341085e4b4a9ab2764a8e4e483f702d2d8f -Merge: 572c5d61b c94761e53 -Author: Carlton Smith -Date: Thu Apr 22 11:24:42 2021 -0400 - - Merge branch 'features/owasp-html' of github.com:raft-tech/TANF-app into features/owasp-html - -commit 572c5d61bacbe7560467c00fb056355fea554ac5 -Author: Carlton Smith -Date: Thu Apr 22 11:24:22 2021 -0400 - - add docs - -commit c94761e53b7b6555869edfa692afa192262fd0e7 -Author: John Willis -Date: Thu Apr 22 11:21:53 2021 -0400 - - Update zap-scanner.sh - -commit f4c25de3e608cdbb3da572029bd9ff037add0612 -Author: Aaron Beavers -Date: Thu Apr 22 10:53:16 2021 -0400 - - Auto stash before merge of "epics/89/issues/416/download-files-frontend" and "origin/raft-tdp-main" - -commit 8e0589a8fb60492473a2c903990ade7b2a0e6308 -Merge: 535c0f42e 14e483bdc -Author: Aaron Beavers -Date: Thu Apr 22 10:51:24 2021 -0400 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/89/issues/416/download-files-frontend - -commit 2c5267483752ab9ab3cc87f28f84ea023b41db54 -Merge: 65b283fe3 33602a2ec -Author: Jorge Gonzalez -Date: Thu Apr 22 09:32:47 2021 -0400 - - Merge branch 'feat/767-logging' into feat/762-logging-uploads - -commit 33602a2ecafb3ccb420bc0c5f73e5ee2dd059d08 -Merge: 6f7667365 14e483bdc -Author: Jorge Gonzalez -Date: Thu Apr 22 09:32:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 072e32d2d042fdbcfddcc338ea2ac383122aefee -Merge: 6cd7f62a4 14e483bdc -Author: John Willis -Date: Wed Apr 21 17:33:58 2021 -0400 - - Merge branch 'raft-tdp-main' into features/owasp-html - -commit 05d260489098410c9ef105052bc1d950a65319e9 -Author: Jorge Gonzalez -Date: Wed Apr 21 17:18:34 2021 -0400 - - Fix error state bug - -commit 6cd7f62a4e2a4b68f216466a3dd2cafb911b6047 -Author: John Willis -Date: Wed Apr 21 17:09:23 2021 -0400 - - Updated cache key to use the appropriate checksum - -commit 9c8a6bafa1ad47a70a59332dfd6ac256451563ea -Author: John Willis -Date: Wed Apr 21 17:00:26 2021 -0400 - - Update config.yml - -commit a3094a7cf27da4977c1f045dc28aaccf612d1c1c -Author: John Willis -Date: Wed Apr 21 16:58:40 2021 -0400 - - Update config.yml - -commit 97751b7ba07307855c37d861f418c47f1cff287f -Author: John Willis -Date: Wed Apr 21 16:51:15 2021 -0400 - - Update config.yml - -commit ef70e55470b34bb7da708080cbc336d65c5dbdf7 -Author: John Willis -Date: Wed Apr 21 16:37:46 2021 -0400 - - Update config.yml - -commit 147c25210ce734fdf868391e5d33224fdee51ef9 -Author: Carl Smith -Date: Wed Apr 21 16:14:31 2021 -0400 - - Update zap-scanner.sh - -commit db9048be6694b4488e9f67c420ce4495337eaee8 -Author: Carlton Smith -Date: Wed Apr 21 16:08:30 2021 -0400 - - swap out gitignore files - -commit 95812fd0dfcd18fc6ecf84c24cb0df1c78f6d4f8 -Author: John Willis -Date: Wed Apr 21 15:02:40 2021 -0400 - - Use node orb to install yarn and packages - -commit 1f853d5853b03374ac2f91d5a6d8420496a21560 -Author: John Willis -Date: Wed Apr 21 14:49:15 2021 -0400 - - Update config.yml - -commit 0ed1fe82ea926e6411a7aaa3ddfce79db5244199 -Author: John Willis -Date: Wed Apr 21 14:48:34 2021 -0400 - - Update config.yml - -commit 1634aed2d0f3c30aa9eedeff7f28460d249c7855 -Author: John Willis -Date: Wed Apr 21 14:38:54 2021 -0400 - - Added Node orb to install yarn on machine executor - - https://circleci.com/developer/orbs/orb/circleci/node - -commit b55869143d4cdab09395d61573fbe478bb57a369 -Author: John Willis -Date: Wed Apr 21 14:23:53 2021 -0400 - - Update config.yml - -commit b62a487f7cedfc2992fc3cf434c616cfdd9144ab -Merge: 4cd55b1bb 14e483bdc -Author: John Willis -Date: Wed Apr 21 14:19:56 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 4522f33a3aa76203787d4d8748df1f6e5bad1b1d -Author: Carlton Smith -Date: Wed Apr 21 14:12:28 2021 -0400 - - add machine - -commit 65b283fe3c0797cfd42ada5e877e84a391e9b964 -Merge: 6f9a66798 6f7667365 -Author: Jorge Gonzalez -Date: Wed Apr 21 13:55:14 2021 -0400 - - Merge branch 'feat/767-logging' into feat/762-logging-uploads - -commit ab5709fdfd196087337c36209456891bcc6d479d -Author: Jorge Gonzalez -Date: Wed Apr 21 13:37:15 2021 -0400 - - Minor test fixes - -commit 4d808db7fd39f10c9dc419aab172f08e8fca118d -Author: Carlton Smith -Date: Wed Apr 21 12:34:51 2021 -0400 - - add docker back - -commit e917c9a3339afbe997d08c428a7de75825858440 -Author: Carlton Smith -Date: Wed Apr 21 12:21:50 2021 -0400 - - use machine to mount - -commit e160d61fd97839e1d45e77dae115bc51e80db4d1 -Merge: e4c8720ef 14e483bdc -Author: Jorge Gonzalez -Date: Wed Apr 21 12:08:18 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit 5d79d7936dbddcda22c8a2ee2a638844123b9c27 -Merge: 636127de0 14e483bdc -Author: Jorge Gonzalez -Date: Wed Apr 21 12:07:52 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 14e483bdcc87971782be750f74d4d974be8ba711 -Merge: 35b05716e babe98221 -Author: Carl Smith -Date: Wed Apr 21 11:16:17 2021 -0400 - - Merge pull request #821 from raft-tech/documentation/adr-download-strategy - - ADR: Download Strategy - -commit 6f9a667985f09f7ac5c85312b4787e4843bcdcf3 -Author: Jorge Gonzalez -Date: Wed Apr 21 10:12:15 2021 -0400 - - lint - -commit e4c8720efbb22f242c1656b3b1d5a478415db852 -Author: Jorge Gonzalez -Date: Wed Apr 21 10:10:33 2021 -0400 - - Fix typo in package.json - -commit 636127de0cded486dcc06a595e020cb68f8acf82 -Author: Jorge Gonzalez -Date: Wed Apr 21 09:55:36 2021 -0400 - - Add additional test - -commit babe982216ecb091d761f2b55637244b84a017cc -Merge: 2e932fb1d 35b05716e -Author: Carl Smith -Date: Wed Apr 21 09:54:35 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-download-strategy - -commit 3ce6a94d3d6993d4db7ae08ef1e332e0dfbfa58b -Author: John Willis -Date: Wed Apr 21 01:55:10 2021 -0400 - - Update settings to always use django storages so localstack can be used locally - -commit 31b6fe17f5eedb9ec6509ae1a763bb5c866645fe -Author: Miles Reiter -Date: Wed Apr 21 00:58:30 2021 -0400 - - Update Stakeholders-and-Personas.md - -commit 7000d259bede6c2429f9e59ad42d1f56c81a14a7 -Merge: 8e3afb25e 35b05716e -Author: Jorge Gonzalez -Date: Tue Apr 20 17:05:43 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit a7c88fec5f52957c60e997082198f807bdbb32b5 -Merge: 4e94d4f53 35b05716e -Author: Jorge Gonzalez -Date: Tue Apr 20 17:04:15 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/738-quarters-select - -commit 6f766736517133876b1da646262f82a906727231 -Author: Jorge Gonzalez -Date: Tue Apr 20 17:00:19 2021 -0400 - - fix test - -commit 83ce65e5f3425303d2ea84b37385d0237dead9f5 -Author: Jorge Gonzalez -Date: Tue Apr 20 16:59:27 2021 -0400 - - lint - -commit 4cd55b1bb8ca450ebc9253e38d9e2dff1f8d9687 -Author: John Willis -Date: Tue Apr 20 16:58:54 2021 -0400 - - Fix typo in environment variable name - -commit 3d38ebc398fdc3c6b1ee29e6fd1d38a5e97f5c7f -Merge: 9554cfe0f 35b05716e -Author: Jorge Gonzalez -Date: Tue Apr 20 16:58:48 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - - # Conflicts: - # tdrs-frontend/src/components/EditProfile/EditProfile.jsx - # tdrs-frontend/src/components/EditProfile/EditProfile.test.js - -commit 865ffe123d42324203761dbda38eb3fa7b4658cf -Merge: ab40fe711 35b05716e -Author: John Willis -Date: Tue Apr 20 16:57:56 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 4e94d4f53832659f5cd1bf049ae8063756033ca3 -Author: Jorge Gonzalez -Date: Tue Apr 20 16:56:47 2021 -0400 - - Fix tests - -commit 0d0cc33860b599a8031e4337e563e805d8932397 -Merge: 4db3e1121 b8936b00e -Author: Jorge Gonzalez -Date: Tue Apr 20 16:52:01 2021 -0400 - - Merge branch 'feat/530-select-stt' into feat/738-quarters-select - - # Conflicts: - # tdrs-frontend/src/components/Reports/Reports.test.js - # tdrs-frontend/src/components/UploadReport/UploadReport.test.js - # tdrs-frontend/src/reducers/reports.test.js - -commit 35b05716e2741945e670c8e24d369184e5b5699b -Merge: 8a96f2557 b8936b00e -Author: Carl Smith -Date: Tue Apr 20 16:48:28 2021 -0400 - - Merge pull request #774 from raft-tech/feat/530-select-stt - - Issue 530: Add STT ComboBox for OFA Admin Selection - -commit b8936b00e75d441a6aec0dcf2cf1ef2d4f3f8b33 -Author: Jorge Gonzalez -Date: Tue Apr 20 16:38:56 2021 -0400 - - Fix tests - -commit ab40fe711841cb6710f04cf2fd18e8693383c51b -Merge: a1623efc9 8a96f2557 -Author: John Willis -Date: Tue Apr 20 16:36:40 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit fdfdc13a5f725839f816f412e66648dc3d2f4d85 -Author: Jorge Gonzalez -Date: Tue Apr 20 16:32:24 2021 -0400 - - lint - -commit a1623efc923fb6d9166f422fa77a3e81f97a3860 -Author: John Willis -Date: Tue Apr 20 16:29:54 2021 -0400 - - Add network policy to enable Cloud.gov communication over internal route between backend and clamav-rest - -commit 9554cfe0f43f7a84c53a222fca29fd6766ec1d83 -Merge: 4fba2e1b1 8a96f2557 -Author: Jorge Gonzalez -Date: Tue Apr 20 16:27:59 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 6fd215b393c2859111c5b8960567acad44214866 -Merge: abb3cf5bc 8a96f2557 -Author: Jorge Gonzalez -Date: Tue Apr 20 16:18:22 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - - # Conflicts: - # tdrs-frontend/src/actions/reports.test.js - # tdrs-frontend/src/components/Reports/Reports.test.js - # tdrs-frontend/src/components/UploadReport/UploadReport.jsx - -commit 8a96f2557a3fae1f3d84af76b77bceaf0b904237 -Merge: 559b54914 e2f19c354 -Author: Carl Smith -Date: Tue Apr 20 16:10:53 2021 -0400 - - Merge pull request #732 from raft-tech/feat/430-submit-report - - Issue 430: Add Submit Files button to upload files - -commit c17e7a6e63b2ac4a7c26b8af49df2faf4aa47aaa -Author: Carlton Smith -Date: Tue Apr 20 16:09:27 2021 -0400 - - use weekly - -commit 6d249bf203a88977cd9d6259018ba53ada9583fb -Author: Carlton Smith -Date: Tue Apr 20 15:52:38 2021 -0400 - - add folders - -commit dde067f5dbda6f4b520996b3240b6dfa4a630b1a -Author: Carlton Smith -Date: Tue Apr 20 15:44:35 2021 -0400 - - adjust indentation - -commit e2537b0cf9fef21084c770f0420f81124ff0f7cb -Author: John Willis -Date: Tue Apr 20 15:37:41 2021 -0400 - - Increase memory quota for backend container - -commit 1cb1ca5c3aae7c7d5f49062e0e3c6e1239bbe627 -Author: Carlton Smith -Date: Tue Apr 20 15:33:59 2021 -0400 - - change back - -commit 4fba2e1b1575108e9e9c9a1e5cc0e528ac502c86 -Merge: bf837585d 3abdff772 -Author: Jorge Gonzalez -Date: Tue Apr 20 15:32:18 2021 -0400 - - Merge branch 'feat/430-submit-report' into feat/762-logging-uploads - - # Conflicts: - # tdrs-frontend/src/actions/reports.js - # tdrs-frontend/src/components/UploadReport/UploadReport.jsx - # tdrs-frontend/src/components/UploadReport/UploadReport.test.js - -commit 214057faaa8873016c7c9378ad155a23be4b3247 -Author: Carlton Smith -Date: Tue Apr 20 15:23:33 2021 -0400 - - produce html - -commit 8e3afb25e4d7b8c02e1fb2b65157234bd5d5f408 -Merge: e1f46a232 559b54914 -Author: Jorge Gonzalez -Date: Tue Apr 20 10:47:31 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit bf837585d05cd19f215f0dd6dee969356e8bc12d -Author: Jorge Gonzalez -Date: Tue Apr 20 10:39:14 2021 -0400 - - lint - -commit 7ab5694f34b92aee63a6d70aa36751ebcdbaa1dc -Author: Jorge Gonzalez -Date: Tue Apr 20 10:16:36 2021 -0400 - - Add basic test for logging endpoint - -commit 42446054bceb974856e4b9ba3eba03301aa856d1 -Author: John Willis -Date: Tue Apr 20 00:56:41 2021 -0400 - - Move deployment steps back to a single step to fix missing environment variables issue - -commit e29b0a178e83230b748b8a8dca49d79a936a3d99 -Author: John Willis -Date: Mon Apr 19 16:54:01 2021 -0400 - - Add -f flag to cf delete command - -commit aa4b7bfeee5b7c7304bd37948562f1971c6095d5 -Author: John Willis -Date: Mon Apr 19 16:15:41 2021 -0400 - - Updated clamav deployment step to first delete the existing app and route - to prevent memory quota exhaustion - -commit 31ce11d6cb972cacf3238291ec789d65eca76dd9 -Author: Jorge Gonzalez -Date: Mon Apr 19 16:10:06 2021 -0400 - - Refactor and improve event logger - -commit 943bb948c5748f75f7a1dd3f8cf86823ce97778b -Author: John Willis -Date: Mon Apr 19 15:44:26 2021 -0400 - - Increase memory quota for clamav-rest - -commit ccc7f8abe1bd87ab38bfb3ae15e5ddc9e5fefbe4 -Merge: 5356c5ff4 559b54914 -Author: Jorge Gonzalez -Date: Mon Apr 19 13:01:04 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 2e932fb1d1784d0c3876f97bb89f8350d656a1e5 -Merge: 2a7cbd7bf 559b54914 -Author: John Willis -Date: Mon Apr 19 12:16:52 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-download-strategy - -commit 9d6b6d22162f39f93c26503f7de10ca925216890 -Author: John Willis -Date: Mon Apr 19 11:39:54 2021 -0400 - - Pass CF_SPACE to deploy script - -commit c99ee4d49814ed60accefcab56e3f8bb89370769 -Author: John Willis -Date: Mon Apr 19 11:37:38 2021 -0400 - - Add back teardown step that was removed for testing - -commit 77b1b79e6bfd6c3000ab862aa64b9f0045747331 -Merge: 063c8d65c 559b54914 -Author: Carl Smith -Date: Mon Apr 19 11:31:31 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/783/issues/781/frontend-buildpacks - -commit 7a2f01e1c7fcd332a7fce6a97ebf5c84ca7907d6 -Merge: 637d3dd13 559b54914 -Author: John Willis -Date: Mon Apr 19 11:22:34 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 637d3dd1374b507b57a75aff6f72b577fd916668 -Author: John Willis -Date: Mon Apr 19 11:12:54 2021 -0400 - - Updated to use forked image of clamav-rest that has been updated to ClamAV 0.103.2 - -commit abb3cf5bc4f36203f10ca591a4ed17e3cbb37360 -Merge: 8b6c532ed 559b54914 -Author: Jorge Gonzalez -Date: Mon Apr 19 11:06:11 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit e2f19c354110a47ee829055dd37311525abf54de -Merge: 3abdff772 559b54914 -Author: Jorge Gonzalez -Date: Mon Apr 19 11:06:00 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/430-submit-report - -commit 2a7cbd7bf89a625a582f11fe65070a56e9bf386f -Author: Carl Smith -Date: Mon Apr 19 10:21:05 2021 -0400 - - Update data-file-downloads.md - - just a small update to the language - -commit 559b54914bef742e928bf3d8ed17b55ed15e844e -Merge: c2bc2c85b dc1ab5c48 -Author: Carl Smith -Date: Mon Apr 19 09:49:38 2021 -0400 - - Merge pull request #855 from raft-tech/adp/bd-update-antispell - - fixed spelling of antivirus in bd - -commit dc1ab5c481637e2b68caa3bc757f4cb22d14bbc8 -Merge: f278c2479 c2bc2c85b -Author: Carl Smith -Date: Mon Apr 19 09:22:33 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/bd-update-antispell - -commit ec5b0f362ece775032a5859b507f165d2a5a56c1 -Merge: f98d77257 c2bc2c85b -Author: John Willis -Date: Sun Apr 18 23:49:19 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit 4db3e1121b556f54bc0ec070365a6f5cc4b4fb09 -Author: Jorge Gonzalez -Date: Fri Apr 16 15:59:45 2021 -0400 - - Fix test - -commit f28e7e090300a0dda3acac3e224cdf245decaa98 -Author: Jorge Gonzalez -Date: Fri Apr 16 15:49:24 2021 -0400 - - Fix voiceover issue with error labels - -commit ad847c908ceadbfec5ce4802ba4b6ee194d75632 -Author: Jorge Gonzalez -Date: Fri Apr 16 15:19:17 2021 -0400 - - Improve validation styles - -commit c2bc2c85b2a725db7e7353d501df528d0be87b47 -Merge: d28204cdf 5efeccab3 -Author: John Willis -Date: Fri Apr 16 14:05:34 2021 -0400 - - Merge pull request #845 from raft-tech/shubhi-raft-patch-9 - - Create sprint-18-summary.md - -commit 5efeccab375c4a579080412c395d7f32c1413079 -Merge: 719284740 d28204cdf -Author: John Willis -Date: Fri Apr 16 13:52:57 2021 -0400 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 - -commit d28204cdfc5bf54a212df75116ed2ae412120980 -Merge: 93352d15f 5dd4d1623 -Author: John Willis -Date: Fri Apr 16 13:51:24 2021 -0400 - - Merge pull request #839 from raft-tech/documentation/security-toc - - Security TOC - -commit 14d78ad962a49d2f0c801a4f3ae9f447501d5b63 -Merge: 26b926fee 93352d15f -Author: John Willis -Date: Fri Apr 16 13:49:10 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/jwt-rotation - -commit 5dd4d16237f87648f5f836a5f8e54a50a5f77d75 -Merge: 24e3013af 93352d15f -Author: John Willis -Date: Fri Apr 16 13:41:20 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/security-toc - -commit 93352d15f4378d77a61ba6ecf4ebe9a2ecc6936f -Merge: aa8b17e79 013d2e9c1 -Author: John Willis -Date: Fri Apr 16 13:40:40 2021 -0400 - - Merge pull request #794 from raft-tech/documentation/access-controls-sc-28 - - Security Controls SC-28 - -commit 24e3013afc2a52ebe5204954dfd1fe2e6b912518 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Apr 16 13:00:12 2021 -0400 - - Update docs/Security-Compliance/Security-Controls/README.md - -commit 201490f9455581af43ee64aad71168ad1d3c9d13 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Apr 16 13:00:08 2021 -0400 - - Update docs/Security-Compliance/Security-Controls/README.md - -commit 013d2e9c1bc9eec5b103c53194f2c222c5d18517 -Merge: 1803d58b8 aa8b17e79 -Author: John Willis -Date: Fri Apr 16 12:57:32 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28 - -commit f278c2479e0197428dd3d035b2e4a1bd2701cb81 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Apr 16 12:51:28 2021 -0400 - - fixed spelling of antivirus in bd - -commit b0509588781ec9ce4f836e143430425688a31b39 -Merge: 935b0ccda aa8b17e79 -Author: John Willis -Date: Fri Apr 16 12:50:43 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-download-strategy - -commit 935b0ccda2ca526153c09857d3dd7ef1e652a30e -Author: John Willis -Date: Fri Apr 16 12:50:26 2021 -0400 - - Added technical documentation for download streaming strategy - -commit 535c0f42ec5e66a0cf1cb7e95c9d1f883fe8bd45 -Author: Aaron Beavers -Date: Fri Apr 16 12:14:19 2021 -0400 - - add mirage - -commit e0a295473146446e1713bbb86bd6e568911610f4 -Author: Aaron Beavers -Date: Fri Apr 16 12:03:36 2021 -0400 - - Add initial test - -commit d96f7ccd1a56a1f512fa5968fd70a669ad5e2007 -Author: Aaron Beavers -Date: Fri Apr 16 12:03:15 2021 -0400 - - Add hooks to get list of available files - -commit f2b86d42d05d30824ffbcddc4c985658222feeb4 -Author: Aaron Beavers -Date: Fri Apr 16 12:00:34 2021 -0400 - - Add download button - -commit 2b297d35e97507749fd0c0e5e99732f7bbb60b8a -Author: Aaron Beavers -Date: Fri Apr 16 11:59:12 2021 -0400 - - Possible change comment - -commit 3abdff7723bc72d1e984f2fe2762a92a7e68f79a -Author: Jorge Gonzalez -Date: Fri Apr 16 11:16:12 2021 -0400 - - document file signature types in validator - -commit 73e3fff1e6a8a540fb293411a6e6f59e7854b3d8 -Author: Aaron Beavers -Date: Fri Apr 16 11:00:00 2021 -0400 - - Add download actions - -commit 719284740dc19a7472442a026349e87031378f6f -Merge: 951d7d7a4 aa8b17e79 -Author: Carl Smith -Date: Thu Apr 15 16:45:41 2021 -0400 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 - -commit 951d7d7a4248497c74ec5492bb7dbddbf73585af -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Apr 15 16:29:44 2021 -0400 - - Update docs/Sprint-Review/sprint-18-summary.md - -commit 8b6c532ed0c5c29fce839d7b43eaf02111a88c4b -Merge: 86f7a36da aa8b17e79 -Author: Jorge Gonzalez -Date: Thu Apr 15 14:53:13 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 5356c5ff44339099f4eb933b23ac133a9175f4ac -Merge: f311d9390 aa8b17e79 -Author: Jorge Gonzalez -Date: Thu Apr 15 14:41:29 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 1e926263b24c98bddf8746c63dfbcc784290f59f -Author: Jorge Gonzalez -Date: Thu Apr 15 14:04:48 2021 -0400 - - tweak comments and fix error state - -commit 063c8d65cf2396d6fd320f5c9f319dd3c0a99a91 -Author: Aaron Beavers -Date: Thu Apr 15 13:05:38 2021 -0400 - - update copy target for nginx conf file - -commit ca12e625fe765069df2bb3403dcc21cf099f097c -Author: Jorge Gonzalez -Date: Thu Apr 15 13:05:16 2021 -0400 - - Fix yarn.lock - -commit 0160856d16e7e2704f5ee1340e696695e1c674d2 -Author: Aaron Beavers -Date: Thu Apr 15 13:05:16 2021 -0400 - - add buildpack specific nginx conf file - -commit e1723273a5e9dd0328c0ec6fbff7dd7ef06b6aa9 -Author: Aaron Beavers -Date: Tue Apr 13 11:59:31 2021 -0400 - - Revert "Updated nginx.conf for buildpacks" - - This reverts commit 91c21b083fd7d8b085998234d1627a4faf160396. - -commit 899118bb1b25dccf8a59ab20d67bfc7ba4bdc105 -Merge: 9db29a4fa aa8b17e79 -Author: Jorge Gonzalez -Date: Thu Apr 15 13:02:31 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/430-submit-report - - # Conflicts: - # tdrs-frontend/package.json - # tdrs-frontend/yarn.lock - -commit e1f46a232c271572d6cbde0a3feb69131c25d285 -Merge: d44cec223 aa8b17e79 -Author: Carl Smith -Date: Thu Apr 15 12:29:55 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit 26b926fee5e08846c2b26147549af0117b2a660a -Merge: 30a99766a aa8b17e79 -Author: Carl Smith -Date: Thu Apr 15 12:26:34 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/jwt-rotation - -commit 30a99766a2d01c985da3976b04a55d69b0560da1 -Author: Carl Smith -Date: Thu Apr 15 12:22:14 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: John Willis - -commit aa8b17e797d58095fb74cd76c2e64037ac9282b7 -Merge: 1f80e3771 c60d844b3 -Author: Carl Smith -Date: Thu Apr 15 12:10:27 2021 -0400 - - Merge pull request #853 from raft-tech/adp/update-bd - - updated boundary diagram md png and drawio - -commit c60d844b3526c5687909e3a2ff62cce7313afe79 -Merge: 37434ad31 1f80e3771 -Author: Carl Smith -Date: Thu Apr 15 11:49:36 2021 -0400 - - Merge branch 'raft-tdp-main' into adp/update-bd - -commit f998b93d0ac13136bf40152ae8f8e29a29f61292 -Author: Jorge Gonzalez -Date: Thu Apr 15 11:43:45 2021 -0400 - - Tweak validation - -commit d658a939b4285d8ed35a0fbba9fa874901c9828c -Merge: 79d75d09d 1f80e3771 -Author: Carl Smith -Date: Thu Apr 15 10:51:13 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/jwt-rotation - -commit 79d75d09d480f0d1203d55de40e0db196aba1808 -Author: Carl Smith -Date: Thu Apr 15 10:50:41 2021 -0400 - - Update jwt-key-rotation.md - -commit 4ee54d9cb576437a77169abe94782f54006ad9dd -Author: Carl Smith -Date: Thu Apr 15 10:38:47 2021 -0400 - - Update jwt-key-rotation.md - -commit 9346744748da94564dc80756d59c9c36720f40be -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Apr 15 10:33:46 2021 -0400 - - Update README.md - - Added si-12 and cm-07-02 - -commit 69a36d05de3018d5cf533d95d9d2de0e2918da32 -Author: Carl Smith -Date: Thu Apr 15 10:31:26 2021 -0400 - - Update docs/Technical-Documentation/jwt-key-rotation.md - - Co-authored-by: John Willis - -commit f311d9390986374f875803e3e55eedd3f80ae5a3 -Merge: 1ef52472a 1f80e3771 -Author: Jorge Gonzalez -Date: Thu Apr 15 09:18:47 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit d44cec223f901180e8b46a6418431ecf896e4259 -Merge: 12e75d818 1f80e3771 -Author: Jorge Gonzalez -Date: Thu Apr 15 09:18:32 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-upgrade-1189ad1a5d3953319230b5a85492d3fc - -commit ebeb9f3096244d1636f585370bc489cf6457b106 -Merge: 44aaefffd 1f80e3771 -Author: Jorge Gonzalez -Date: Thu Apr 15 09:17:42 2021 -0400 - - Merge branch 'raft-tdp-main' into features/850/windows-optimize - -commit 37434ad31efe4dc03d9a3880ff1f281d979ffd9f -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Apr 14 16:17:12 2021 -0400 - - updated boundary diagram md png and drawio - -commit 1f80e37710f2930fac97c8282966e55f0df6ac2c -Merge: 989339ed4 5e858e950 -Author: Carl Smith -Date: Wed Apr 14 15:37:43 2021 -0400 - - Merge pull request #816 from raft-tech/documentation/access-controls-cm-07-2 - - Security Control: CM-07(02) - -commit 5e858e9507b1247b0d76b49af913735df042c0a3 -Merge: b90d1a365 989339ed4 -Author: Carl Smith -Date: Wed Apr 14 15:08:21 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-cm-07-2 - -commit 68b8b6fed08c7d92cc11c685e298c96ebe475a9b -Author: Shubhi Mishra -Date: Wed Apr 14 13:50:59 2021 -0400 - - Update sprint-18-summary.md - -commit 44aaefffd65cec07a114a75dbbf67411c8108816 -Author: Carlton Smith -Date: Wed Apr 14 13:49:19 2021 -0400 - - add .gitattributes - -commit c984b64121f2b4c2f90fa66f8cf67eb07774dd39 -Merge: 160b064ee 989339ed4 -Author: Carl Smith -Date: Wed Apr 14 11:52:24 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-download-strategy - -commit 160b064ee2157c31a88a4cae31e67a0bfc2ea4a4 -Author: Carl Smith -Date: Wed Apr 14 11:52:19 2021 -0400 - - Update docs/Architecture Decision Record/013-download-strategy.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 989339ed40474d792cc49237b957cd8fab5f530f -Merge: 419bcd4a6 9d8e0c79c -Author: Carl Smith -Date: Wed Apr 14 11:31:39 2021 -0400 - - Merge pull request #820 from raft-tech/lfrohlich-patch-3 - - Security Control: SI-12 - -commit 9d8e0c79c6dc26393aef7d7416e75db0269fddea -Merge: abe39d378 419bcd4a6 -Author: Carl Smith -Date: Wed Apr 14 11:08:45 2021 -0400 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-3 - -commit 13fa159e9686c0a22f86d5a8607f22704c81490a -Author: Carl Smith -Date: Wed Apr 14 10:29:46 2021 -0400 - - Create jwt-key-rotation.md - -commit 12e75d81828bf17643f8d1f4388c8341498f35f1 -Author: snyk-bot -Date: Wed Apr 14 03:45:01 2021 +0000 - - fix: upgrade uswds from 2.9.0 to 2.11.1 - - Snyk has created this PR to upgrade uswds from 2.9.0 to 2.11.1. - - See this package in npm: - - - See this project in Snyk: - https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr - -commit be2541358a1c800f86ece444974ee4d8b083a91c -Author: Shubhi Mishra -Date: Tue Apr 13 17:42:36 2021 -0400 - - Create sprint-18-summary.md - -commit 1ef52472ae6ec7b7ca4243edf340921d65cbeee8 -Author: Jorge Gonzalez -Date: Tue Apr 13 17:06:00 2021 -0400 - - Fix import - -commit 3c0528a27b4f88ad867caf041dd332608b4d12a1 -Merge: ca9388b1f 48dc388e7 -Author: Jorge Gonzalez -Date: Tue Apr 13 16:57:58 2021 -0400 - - Merge remote-tracking branch 'origin/feat/767-logging' into feat/767-logging - -commit ca9388b1f0d139c2801ba8939942d110486f8edd -Author: Jorge Gonzalez -Date: Tue Apr 13 16:03:03 2021 -0400 - - Nit - -commit 48dc388e7d6a923d8242da14a88680e91d0cb93c -Merge: 7dc16f21d 419bcd4a6 -Author: Jorge Gonzalez -Date: Tue Apr 13 16:52:49 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 7dc16f21d9b37e0224f01befcd441726ba23bdfa -Author: Jorge Gonzalez -Date: Tue Apr 13 16:03:03 2021 -0400 - - Nit - -commit 1c6014d0fa9954ee1aae6aee27e8069e2d6c4894 -Merge: 25e854f2e 419bcd4a6 -Author: John Willis -Date: Tue Apr 13 15:47:47 2021 -0400 - - Merge branch 'raft-tdp-main' into features/828/active-users - -commit a828c746ebb047f6c50cf590fe026c95f4f13585 -Merge: d72048c3e 419bcd4a6 -Author: Carl Smith -Date: Tue Apr 13 15:40:12 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-download-strategy - -commit 4b4140ca4a8c2c5480bb722d143ec0a6830ef3a4 -Merge: f3c5fb503 419bcd4a6 -Author: John Willis -Date: Tue Apr 13 15:31:17 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/783/issues/735/backend-buildpacks - -commit 419bcd4a65c79480ac16e6870e8e7dc6393bca52 -Merge: a6c24cc7a f20b74c6b -Author: Carl Smith -Date: Tue Apr 13 15:30:14 2021 -0400 - - Merge pull request #825 from raft-tech/documentation/adr-dev-environment - - ADR: Development Environments - -commit f3c5fb503eac573181b6fcd3d784fa37c0f1f31f -Author: John Willis -Date: Tue Apr 13 15:22:28 2021 -0400 - - Fix linter error in settings - -commit f20b74c6b8bc3099281d9bd87618aac22f81b106 -Merge: 68795d68e a6c24cc7a -Author: Carl Smith -Date: Tue Apr 13 15:16:33 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-dev-environment - -commit 19f56232ea434921d68ed512ca0efd1dbfb083c0 -Author: Jorge Gonzalez -Date: Tue Apr 13 14:23:52 2021 -0400 - - Fix bad reference and tweak log message - -commit f5d3362a9068db7e803ed7e0f522e5b80b22ddfe -Merge: 44703c76d a6c24cc7a -Author: John Willis -Date: Tue Apr 13 14:24:44 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/783/issues/735/backend-buildpacks - -commit e222372b8ab4ffa88599fb8847b4f1385826caad -Merge: 8f5f00325 a6c24cc7a -Author: Jorge Gonzalez -Date: Tue Apr 13 12:51:19 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 8f5f0032593e3255a165447e7bdfe796d5c1119e -Author: Jorge Gonzalez -Date: Tue Apr 13 12:28:08 2021 -0400 - - Fix tests - -commit a6c24cc7a27dd666798fb3dff46412e3eb813a3e -Merge: a895c3844 4e0863fa0 -Author: Carl Smith -Date: Tue Apr 13 12:04:39 2021 -0400 - - Merge pull request #823 from raft-tech/documentation/adr-deploy-strategy - - ADR: Deploy Strategy Change - -commit 633cf38c3cef5d3af716559b2adac84961ba693b -Author: Aaron Beavers -Date: Tue Apr 13 12:01:02 2021 -0400 - - Update copy target - -commit 3806daddf21d75b5dae27593dad4eb9903774883 -Author: Aaron Beavers -Date: Tue Apr 13 12:00:09 2021 -0400 - - Updated all references to manifest - -commit 91c21b083fd7d8b085998234d1627a4faf160396 -Author: Aaron Beavers -Date: Tue Apr 13 11:59:31 2021 -0400 - - Updated nginx.conf for buildpacks - -commit 45904d3e36b41d40d5e8b1e20565791277f299ee -Author: Aaron Beavers -Date: Tue Apr 13 11:58:59 2021 -0400 - - Added mime.types file required by nginx buildpack - -commit c313131fa42f437a0ba156ef8e368876721c3d28 -Author: Aaron Beavers -Date: Tue Apr 13 11:58:47 2021 -0400 - - Add new manifest for buildpack deployment - -commit 1ccbadee3b9a4322cffdb52f8b95ebcb95793329 -Author: Aaron Beavers -Date: Tue Apr 13 11:58:31 2021 -0400 - - Add deploy script for frontend - -commit 44703c76d5ac015ba988c7484f0d1fe021785801 -Author: Aaron Beavers -Date: Tue Apr 13 11:52:35 2021 -0400 - - Update name of manifest file to be used - -commit 617e9581c7842d39647ee673a1221c3911dd3193 -Author: Aaron Beavers -Date: Tue Apr 13 11:51:25 2021 -0400 - - Add urls to CSRF_TRUSTED_ORIGINS - -commit 431ac279f94735db8e2cb2ff595406661ac3d3ce -Author: Aaron Beavers -Date: Tue Apr 13 11:50:56 2021 -0400 - - Add new manifest for buildpack deploy - -commit 050ed64fa4b0cfc3115e8293b4228740cb11b2ba -Author: Aaron Beavers -Date: Tue Apr 13 11:50:42 2021 -0400 - - Add helper script to set up env vars - -commit 04baf44cc0233a0a73124704ed8ea888c136b456 -Author: Aaron Beavers -Date: Tue Apr 13 11:50:28 2021 -0400 - - Add deployment script - -commit 4e0863fa08b15f38049a467e86b742decba64254 -Merge: 8797b5811 a895c3844 -Author: Carl Smith -Date: Tue Apr 13 11:37:21 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-deploy-strategy - -commit 8797b5811705502476709565fbb2ea059afb1cdc -Author: Carl Smith -Date: Tue Apr 13 11:37:15 2021 -0400 - - Update docs/Architecture Decision Record/014-deploy-strategy.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit ccb650007c06f506deb1ce623800f26a3a1ddb09 -Merge: 913fd669e a895c3844 -Author: Jorge Gonzalez -Date: Tue Apr 13 11:00:04 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit a895c3844bce30d7fb7cd7bc9a598b21e70ae7d1 -Merge: f8b8a8bee 088eafe4a -Author: Carl Smith -Date: Tue Apr 13 10:52:32 2021 -0400 - - Merge pull request #768 from raft-tech/frontend/548/local-build-improvements - - Issue 548: As a frontend developer, I want fast local builds with no unused packages installed - -commit 913fd669edc88ccb0c61e5d8804ebf34f8633d82 -Author: Jorge Gonzalez -Date: Tue Apr 13 10:17:38 2021 -0400 - - Add basic client-side logging - -commit f98d7725780a8526a38d0cc0ad082779295519f8 -Author: John Willis -Date: Mon Apr 12 19:07:45 2021 -0400 - - Use explicit map-route command for clamav-rest to allow passing in variables to the hostname - -commit a7c251f707309ba645ddcb40311043fde53fda48 -Author: Carl Smith -Date: Mon Apr 12 15:26:15 2021 -0400 - - Update docs/Security-Compliance/README.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 517e6c1cab4e4ade98d3ae45ebf2f0b139f4b58f -Author: Jorge Gonzalez -Date: Mon Apr 12 14:38:27 2021 -0400 - - Remove dead comment - -commit ae3e702b6e5f4518f8aee31c63587d112f69c59b -Author: Jorge Gonzalez -Date: Mon Apr 12 14:21:36 2021 -0400 - - Fix more tests - -commit d6d1d233cc5add667e2abd456f59371d3bb77013 -Author: Jorge Gonzalez -Date: Mon Apr 12 14:13:38 2021 -0400 - - Eslint nits - -commit 564103a0bd5e3f330c16ac284f648fcbd761fc26 -Author: Jorge Gonzalez -Date: Mon Apr 12 14:03:44 2021 -0400 - - Fix tests - -commit 242718298698ac5521cf9fdb1a0964a54a0a2841 -Author: Jorge Gonzalez -Date: Mon Apr 12 13:10:06 2021 -0400 - - Tweak styles - -commit 68795d68e584ff7aabe0eef87e9d265039574e79 -Author: Carl Smith -Date: Mon Apr 12 10:22:45 2021 -0400 - - Update 015-development-environments.md - -commit ee25bad88c470c582608b7e0565169800188dd46 -Merge: b987b24e0 f8b8a8bee -Author: Carl Smith -Date: Mon Apr 12 10:14:08 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-dev-environment - -commit ec47d743bce4f67f42bc58b4d73d4f4fe8c13af4 -Merge: f863ebf91 f8b8a8bee -Author: Carl Smith -Date: Mon Apr 12 10:11:14 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-deploy-strategy - -commit 2ffff58d341deca44915e404eb1a51ac6c1b951e -Merge: 20c56e994 75f31faba -Author: Jorge Gonzalez -Date: Mon Apr 12 10:10:19 2021 -0400 - - Merge remote-tracking branch 'origin/feat/738-quarters-select' into feat/738-quarters-select - - # Conflicts: - # tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx - -commit f863ebf910065333bb6ee894893fa0196bb55961 -Author: Carl Smith -Date: Mon Apr 12 10:08:16 2021 -0400 - - Update boundary-diagram.md - -commit ed8f5a7279a87758fed04bcde0a9a894128b4871 -Author: Carl Smith -Date: Mon Apr 12 10:06:26 2021 -0400 - - Update boundary-diagram.md - -commit d72048c3ec370787a20159e433d6d8c3ae614a44 -Merge: 2ee1db937 f8b8a8bee -Author: Carl Smith -Date: Mon Apr 12 10:03:09 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/adr-download-strategy - -commit 2ee1db937d7fd2ac54d51bdafd79bf4646421c61 -Author: Carl Smith -Date: Mon Apr 12 09:45:09 2021 -0400 - - Update 013-download-strategy.md - -commit 25e854f2e02c88e8d393da362873071a6e8f484f -Author: Carlton Smith -Date: Mon Apr 12 09:02:38 2021 -0400 - - linting issue - -commit 4351e0bd76861d33143d4078c4de4882687de056 -Author: Carlton Smith -Date: Mon Apr 12 08:51:27 2021 -0400 - - update test for text change - -commit bf39525c90fd72bea8adb5f5b94f656df71a69ce -Author: Carl Smith -Date: Mon Apr 12 08:39:03 2021 -0400 - - Update tdrs-backend/tdpservice/users/api/login.py - - Co-authored-by: John Willis - -commit 305223cd3edea13b0fda823b5c7ebb95e7f319d5 -Author: Carl Smith -Date: Mon Apr 12 08:36:42 2021 -0400 - - Update .gitignore - -commit d357927c90854a8f6586c1bafbd7ecaa0605bc8c -Merge: d61d3c8c2 f8b8a8bee -Author: John Willis -Date: Fri Apr 9 18:48:44 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit d61d3c8c2768ef76444ef6489e62392c0eb5fb51 -Author: John Willis -Date: Fri Apr 9 17:51:52 2021 -0400 - - Temp: comment out docker teardown - -commit 4c2c285006f86b2b5844672a634b8a675ec021ca -Author: John Willis -Date: Fri Apr 9 17:05:53 2021 -0400 - - Comment out teardown to test race condition theory - -commit 20c56e994958dfbf2f71bcd7de011dbd7d9c344f -Author: Jorge Gonzalez -Date: Fri Apr 9 16:06:21 2021 -0400 - - Prevent search before required selections are made - -commit 75f31faba3973169eee0dd3b3c3606d908392f64 -Author: Jorge Gonzalez -Date: Fri Apr 9 16:06:21 2021 -0400 - - Prevent search before required selections are made - -commit 6bf9bc146446c384427340217e8637967346730c -Author: John Willis -Date: Fri Apr 9 15:47:02 2021 -0400 - - Added docstring needed for linter - -commit 586812f1bf791e9e5520431023f9774979a5d757 -Author: John Willis -Date: Fri Apr 9 15:41:06 2021 -0400 - - Added test for ClamAV accessibility - -commit 42325f223c11f2b1ebf351d98d8f256d6cb8f7fb -Author: Carl Smith -Date: Fri Apr 9 15:21:13 2021 -0400 - - Update README.md - -commit 974094a876ec8ffe1dc02e59ab6113582d278e5c -Author: Carl Smith -Date: Fri Apr 9 15:20:17 2021 -0400 - - Update README.md - -commit c8b8c508871b0be97f3d6c55fc7a827c1e2ec0f2 -Author: Carl Smith -Date: Fri Apr 9 15:06:01 2021 -0400 - - Create README.md - -commit 1f249fdd60715cc362a3698ec8dce4000988b869 -Author: Carl Smith -Date: Fri Apr 9 15:04:26 2021 -0400 - - Update README.md - -commit 9b2dcce765cca0eaf35db7fbea08c77687408db4 -Author: Carl Smith -Date: Fri Apr 9 15:02:31 2021 -0400 - - Create README.md - -commit b147cc772855e0d14b837ac21d22b76901149c59 -Author: John Willis -Date: Fri Apr 9 14:59:07 2021 -0400 - - Add depends_on for clamav-rest to web container - -commit c3264d7d4c3db6a48e6e02b50679999c8e00d241 -Author: John Willis -Date: Fri Apr 9 14:38:23 2021 -0400 - - Move clamav-rest outside of deploy script - -commit 088eafe4a3abb81c0f2682bd5e1e73723a7cb295 -Merge: 32953d220 f8b8a8bee -Author: John Willis -Date: Fri Apr 9 14:23:52 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements - -commit 604f1e14054e2299b014962d64c71c2f4d3ee9ee -Author: Jorge Gonzalez -Date: Fri Apr 9 14:19:42 2021 -0400 - - whitespace - -commit 02686338844342c8b9dd92301487773ca04f2e79 -Author: John Willis -Date: Fri Apr 9 14:19:29 2021 -0400 - - Add echo statement for troubleshooting - -commit b1546f66f53b2ab07b6022bb0e3e7d9096669290 -Merge: 94522d783 86f7a36da -Author: Jorge Gonzalez -Date: Fri Apr 9 14:15:13 2021 -0400 - - Merge branch 'feat/530-select-stt' into feat/738-quarters-select - - # Conflicts: - # tdrs-frontend/src/actions/reports.test.js - # tdrs-frontend/src/components/Reports/Reports.jsx - # tdrs-frontend/src/reducers/reports.js - # tdrs-frontend/src/reducers/reports.test.js - -commit c6a7384bc37c0b72e1acc49d3e100b13bac254a6 -Merge: 0372804f4 db587ae9b -Author: Carlton Smith -Date: Fri Apr 9 13:59:33 2021 -0400 - - Merge branch 'features/828/active-users' of github.com:raft-tech/TANF-app into features/828/active-users - -commit 0372804f49b9370a81eaf40ae79c8cae7df3f694 -Author: Carlton Smith -Date: Fri Apr 9 13:59:08 2021 -0400 - - add test - -commit db587ae9b5af57c929af0e415b70d1c7b5d3c12a -Merge: c4a814fe9 f8b8a8bee -Author: Carl Smith -Date: Fri Apr 9 12:32:13 2021 -0400 - - Merge branch 'raft-tdp-main' into features/828/active-users - -commit b90d1a365e58e2929bf0f552bc1b65d6c167065f -Author: John Willis -Date: Fri Apr 9 11:52:44 2021 -0400 - - Add line about preventing known malicious files - -commit c4a814fe901a017be7d80b4a9aba8628328c29fd -Author: Carlton Smith -Date: Fri Apr 9 11:39:50 2021 -0400 - - remove unneeded - -commit ef6e0875ceb651cc633fcf9384182cef731178ce -Author: Carlton Smith -Date: Fri Apr 9 11:33:49 2021 -0400 - - handle inactive user - -commit 571c67c16d95ffb42f25d1fa67df51eceecd8fb2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Apr 9 11:09:18 2021 -0400 - - Update docs/Security-Compliance/Security-Controls/cm-7-2/index.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit bd3b43ca5b35cdd8e5fbe444f47b287624b20cea -Author: Jorge Gonzalez -Date: Fri Apr 9 10:43:58 2021 -0400 - - Fix linter - -commit 86f7a36daaa0bdf4a4647222dac5c0c5081bd5ce -Merge: 2585d6ab7 f8b8a8bee -Author: Jorge Gonzalez -Date: Fri Apr 9 10:30:40 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit b07478cfb19af8fe689f87c3bffe625c3e977a25 -Merge: 70b055a06 f8b8a8bee -Author: Jorge Gonzalez -Date: Fri Apr 9 10:22:56 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/767-logging - -commit 70b055a063d9ac9cfd6d1fdb8c93d35d2ad89d3d -Author: Jorge Gonzalez -Date: Fri Apr 9 10:21:55 2021 -0400 - - Create abstract event logger and endpoint - -commit 48f6b0e2c28901194ef419cc34ee6de16ddc064f -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 29 13:21:40 2021 -0500 - - Update index.md - -commit ab05fa0fd555474e8a8d0bb58c776eb96e509ec8 -Author: Carl Smith -Date: Mon Mar 29 13:11:36 2021 -0400 - - Create index.md - -commit 029474bf75a3bb7352f560491d185039305be4b1 -Author: John Willis -Date: Wed Apr 7 15:09:47 2021 -0400 - - Issue 699: Updated AV ADR to include AV signature updates - -commit 72f93d299e92f1f216001e2b4470a4e959adf231 -Author: Jorge Gonzalez -Date: Wed Apr 7 14:07:16 2021 -0400 - - Create logging endpoint - -commit 2585d6ab7028e8d4c99e840a442d20a2ad7c5f25 -Author: Jorge Gonzalez -Date: Fri Apr 9 09:23:13 2021 -0400 - - Minor fixes - -commit f8b8a8beee89c28d46b696efafe60da1c7dbe8f2 -Merge: 6a5a19946 405a59867 -Author: Carl Smith -Date: Fri Apr 9 09:15:55 2021 -0400 - - Merge pull request #832 from raft-tech/docs/699-av-adr-update - - Issue 699: Updated AV ADR to include AV signature updates - -commit 405a598676e557e86a5216ca4782603545a24869 -Merge: 79a2b39b6 6a5a19946 -Author: John Willis -Date: Thu Apr 8 17:09:57 2021 -0400 - - Merge branch 'raft-tdp-main' into docs/699-av-adr-update - -commit 82588a19105877ef5194aa28269399a5d3a1ddaf -Merge: 47152a56f d33c4121f -Author: Jorge Gonzalez -Date: Thu Apr 8 11:23:18 2021 -0400 - - Merge remote-tracking branch 'origin/feat/530-select-stt' into feat/530-select-stt - -commit 47152a56f4039aaa9ba397429853fad6716a4040 -Author: Jorge Gonzalez -Date: Thu Apr 8 11:23:10 2021 -0400 - - Add comments - -commit d33c4121fc8ec012fdb328aa02747c0e7b9c3c34 -Merge: 752991d30 6a5a19946 -Author: Jorge Gonzalez -Date: Thu Apr 8 11:20:23 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 6a5a199461100e6e8fb3e4286500abb395697c68 -Merge: 75e4d54cf 64108b9f5 -Author: Carl Smith -Date: Thu Apr 8 09:52:55 2021 -0400 - - Merge pull request #801 from raft-tech/documentation/access-controls-7 - - Security controls: AC-07 - -commit 64108b9f5ab16ebd859b43a3bcc2fbd07831c53b -Merge: aa765f722 75e4d54cf -Author: Carl Smith -Date: Thu Apr 8 09:30:51 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-7 - -commit 1803d58b8d043128929d004904701cc37c571df5 -Merge: 6624af052 75e4d54cf -Author: Carl Smith -Date: Thu Apr 8 09:29:36 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28 - -commit 6624af052fb16caeecc27ee9a16faa84d74bc1d4 -Author: Carl Smith -Date: Thu Apr 8 09:28:08 2021 -0400 - - Update index.md - -commit 9db29a4fa2c733e7f24501556d69cd502a7b76ef -Author: Jorge Gonzalez -Date: Wed Apr 7 16:33:08 2021 -0400 - - Fix alert style and prevent submission when there are no changes - -commit cece54c5477c56043cc8942d59532ffb5b808d07 -Author: Jorge Gonzalez -Date: Wed Apr 7 16:10:44 2021 -0400 - - Fix error message label - -commit 79a2b39b61e0dbf15bcdb043ea84866ce26734d1 -Author: John Willis -Date: Wed Apr 7 15:09:47 2021 -0400 - - Issue 699: Updated AV ADR to include AV signature updates - -commit 0f6f4bb508bfffeb260f8d84b8dfeb67a7e97aa7 -Merge: 791c7dab8 75e4d54cf -Author: John Willis -Date: Wed Apr 7 14:23:21 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/817-add-clamav - -commit b987b24e03031337e3f22268d8cbd3ae8c0469db -Author: John Willis -Date: Wed Apr 7 11:52:38 2021 -0400 - - Add time estimate - -commit 32953d220b90add08fb5daf83d97589d851555a4 -Merge: 662e0f9b4 75e4d54cf -Author: John Willis -Date: Wed Apr 7 11:26:27 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements - -commit c82e6d565ffdc210fb8d214ea34e364f68058f8e -Author: snyk-bot -Date: Wed Apr 7 05:54:03 2021 +0000 - - fix: tdrs-backend/requirements.txt to reduce vulnerabilities - - - The following vulnerabilities are fixed by pinning transitive dependencies: - - https://snyk.io/vuln/SNYK-PYTHON-DJANGO-1090612 - -commit 07e0a26c3092c87d00c18b8b635366c3c312540a -Author: Jorge Gonzalez -Date: Tue Apr 6 15:58:43 2021 -0400 - - whitespace - -commit 3d28c12ebc88bcffbf0aeb3e360bfa0426a0516e -Merge: 9d08caac9 75e4d54cf -Author: Jorge Gonzalez -Date: Tue Apr 6 11:20:20 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/430-submit-report - -commit 42b1d9ddc9c861b7acf34bc9b59cf57478878e6e -Author: Carl Smith -Date: Tue Apr 6 14:06:12 2021 -0400 - - Create 015-development-environments.md - -commit 35af26bb0af63c56f6a853835abbe58e9cf77d1e -Author: Carl Smith -Date: Tue Apr 6 12:45:12 2021 -0400 - - Create 014-deploy-strategy.md - -commit 752991d306e3c680c1c3ab97f9a6f9e13ea1e09d -Merge: 8fab9f621 75e4d54cf -Author: Jorge Gonzalez -Date: Tue Apr 6 12:28:54 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 846af331c7cb3a5ea08f48f59e62a207c1e49364 -Author: Carl Smith -Date: Tue Apr 6 11:55:59 2021 -0400 - - Create 013-download-strategy.md - -commit 9d08caac948b37e298f08fd6eb4058e7bb69faf1 -Author: Jorge Gonzalez -Date: Tue Apr 6 11:03:37 2021 -0400 - - nits - -commit 75e4d54cf58b306202a7705c564d6c1f3273ab4f -Merge: aef626595 fd65bde40 -Author: Carl Smith -Date: Tue Apr 6 11:01:48 2021 -0400 - - Merge pull request #814 from raft-tech/fix/773-header-menu - - Issue 773: As a logged out user, I should not see the header menu with Welcome, Reports, Profile, Admin links - -commit 5ee66463bff08fc1a145068b6b30f41c3cd40e19 -Author: Jorge Gonzalez -Date: Tue Apr 6 10:08:52 2021 -0400 - - resolve ssri - -commit 1a4b0eef8cd0fa329c81b77552c2adc2b7328492 -Author: Jorge Gonzalez -Date: Mon Apr 5 17:57:59 2021 -0400 - - Fix backend tests - -commit b666fcc542671476b59e2bbc68f3661b83619852 -Author: Jorge Gonzalez -Date: Mon Apr 5 12:07:36 2021 -0400 - - Fix file validation and upload tests - -commit abe39d37866f350121f6c0360882c56adb8a33be -Author: Carl Smith -Date: Mon Apr 5 16:51:42 2021 -0400 - - Update index.md - -commit 5128fde54ce4a7ea5946f98fda0850c18cac037d -Author: Carl Smith -Date: Mon Apr 5 16:50:32 2021 -0400 - - Rename si-12 to docs/Security-Compliance/Security-Controls/si-12/index.md - - updated path and filename - -commit 2f8387f071aac4ba4dc645823030d8e5b109385e -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Apr 5 15:26:42 2021 -0400 - - Create si-12 - -commit aeb27a568bee4ab4cb6861d3eb67f27386bcdd0a -Author: Carl Smith -Date: Mon Apr 5 12:34:28 2021 -0400 - - Rename docs/Security-Compliance/Security-Controls/index.md to docs/Security-Compliance/Security-Controls/cm-7-2/index.md - - move to folder - -commit 791c7dab8a742ae355091e7b21f078c7126b5914 -Author: John Willis -Date: Fri Apr 2 18:31:14 2021 -0400 - - Fix typo in manifest - -commit 7a0737665bcd172dc202de58bf25cff7a32d4d9b -Author: John Willis -Date: Fri Apr 2 18:28:20 2021 -0400 - - Add clamav-rest to docker and Cloud.gov configs - -commit d266a7176493870377c12ad3297a23c06b2dc4b3 -Author: Jorge Gonzalez -Date: Fri Apr 2 15:44:54 2021 -0400 - - Minor fixes - -commit 6448d7fb803dbca52450e48060836940cb6a882d -Author: Carlton Smith -Date: Fri Apr 2 14:57:21 2021 -0400 - - add documentation - -commit fd65bde408573b6ca520dcd36ef60f6fc3cfac28 -Author: Jorge Gonzalez -Date: Fri Apr 2 14:11:43 2021 -0400 - - Update invalid cypress test - -commit c15e00dc248678c670f45636efdd143a2a808343 -Merge: 5219a6fc9 aef626595 -Author: Jorge Gonzalez -Date: Fri Apr 2 14:04:38 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/773-header-menu - -commit f5b00d4bcea0e039068ddafd51939b54e808c36d -Author: Jorge Gonzalez -Date: Fri Apr 2 13:19:26 2021 -0400 - - Update actions in validation - -commit dd67f66894ed1d44afb6f7c56f265fe7c6be8d95 -Merge: 5646eb8d5 aef626595 -Author: Jorge Gonzalez -Date: Fri Apr 2 12:55:36 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/430-submit-report - -commit 5646eb8d56c1c3a2c9e29f595da26ea2929124e3 -Author: Jorge Gonzalez -Date: Wed Mar 31 18:38:33 2021 -0400 - - Fix file input validation - -commit aef626595398ee59f673a4efbfd76ef2f90eb538 -Merge: 9e5489ebb 202d2f6d1 -Author: Carl Smith -Date: Fri Apr 2 12:45:27 2021 -0400 - - Merge pull request #776 from raft-tech/documentation/access-controls-sc-20 - - Security Controls SC-20 - -commit 202d2f6d1fd88e2d1e0e8640b2a7116daa0c7e57 -Merge: 090dbb385 9e5489ebb -Author: Carl Smith -Date: Fri Apr 2 12:34:59 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-20 - -commit 9e5489ebb4d344fccfd4ccf76794531e8c82d6b7 -Merge: 7a16c0b9d 5bcf115bc -Author: Carl Smith -Date: Fri Apr 2 12:09:09 2021 -0400 - - Merge pull request #800 from raft-tech/documentation/access-controls-sc-28(1) - - Security Controls: SC-28(1) - -commit 5bcf115bcf6f5398e2e14e0caec3979f34c67183 -Merge: 5d6820348 7a16c0b9d -Author: Carl Smith -Date: Fri Apr 2 11:57:47 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28(1) - -commit 7a16c0b9d93ac9b132fed7918fd68b33338c0b15 -Merge: 71a5bc791 d8bb3a4dc -Author: Carl Smith -Date: Fri Apr 2 11:36:20 2021 -0400 - - Merge pull request #678 from raft-tech/documentation/audit-and-accountability-au-02 - - Security Controls AU-02 - -commit d8bb3a4dc9d5e76490d1d990fc7e18e150172cf7 -Merge: 6abfc317a 71a5bc791 -Author: Carl Smith -Date: Fri Apr 2 10:59:27 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit e03d9a0e5efa4a06a893141a81eb6e992753168c -Merge: a90ba23c5 71a5bc791 -Author: John Willis -Date: Fri Apr 2 10:51:08 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 8fab9f621dea19dd97eacafce8f66fa6823cea98 -Merge: 82403c96b 71a5bc791 -Author: Jorge Gonzalez -Date: Fri Apr 2 10:27:45 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 5219a6fc9bc59082b6e099a6978962317fc3689d -Merge: 7c2a372c6 71a5bc791 -Author: Jorge Gonzalez -Date: Fri Apr 2 10:27:28 2021 -0400 - - Merge branch 'raft-tdp-main' into fix/773-header-menu - -commit 7c2a372c60a80502c10b32c0b5f280c690f01119 -Author: Jorge Gonzalez -Date: Fri Apr 2 10:22:11 2021 -0400 - - Hide the Navigation menu for logged out users - -commit 71a5bc7912bfa2d382d1003c844795023103faf6 -Merge: e514abb35 dce9940db -Author: Carl Smith -Date: Fri Apr 2 10:17:40 2021 -0400 - - Merge pull request #802 from raft-tech/documentation/access-controls-ia-8 - - Security Controls: IA-08 - -commit dce9940db9f778c0570320b1e755c40740f67bc6 -Merge: 778548482 e514abb35 -Author: Carl Smith -Date: Fri Apr 2 10:04:57 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ia-8 - -commit 82403c96b59f997336ca8f4f4b7d64e166d303fb -Merge: b3de91671 e514abb35 -Author: Jorge Gonzalez -Date: Fri Apr 2 09:58:35 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit b3de91671a78b5840e15d416b114c3bd6156cff0 -Merge: 1d803148c 2c543b274 -Author: Jorge Gonzalez -Date: Fri Apr 2 09:37:51 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit e514abb35f5280e0f149c9e5cb715c08d221c1ff -Merge: 2c543b274 0e92afda5 -Author: Carl Smith -Date: Fri Apr 2 09:42:41 2021 -0400 - - Merge pull request #812 from raft-tech/feat/511-privacy-policy - - Issue 511: Add Privacy Policy link to website - -commit 1d803148cfd9d1bd4e98d849ae18246ef0ea2338 -Merge: 5518e6701 b752a8538 -Author: Jorge Gonzalez -Date: Fri Apr 2 09:34:14 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - - # Conflicts: - # tdrs-frontend/src/actions/reports.js - # tdrs-frontend/src/actions/reports.test.js - # tdrs-frontend/src/components/Reports/Reports.jsx - # tdrs-frontend/src/components/Reports/Reports.test.js - # tdrs-frontend/src/index.scss - # tdrs-frontend/src/reducers/reports.js - # tdrs-frontend/src/reducers/reports.test.js - -commit 0e92afda5c6f97ecd009c06fdaf46dd5c49bdf04 -Merge: 164a3c7f7 2c543b274 -Author: Carl Smith -Date: Thu Apr 1 16:31:18 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/511-privacy-policy - -commit 6abfc317ab2af7cbfad4d6ac66e78794ac90f757 -Merge: 39a5ebe23 2c543b274 -Author: Carl Smith -Date: Thu Apr 1 16:28:53 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit 2c543b274b5a5f12ef48d517b03fa1b15d82713c -Merge: b752a8538 fc8606cbb -Author: Carl Smith -Date: Thu Apr 1 16:23:00 2021 -0400 - - Merge pull request #813 from raft-tech/documentation/antivirus-adr - - Documentation: ADR for Antivirus Strategy - -commit 164a3c7f7e0821320797c99083ea17812d7427c9 -Author: Jorge Gonzalez -Date: Thu Apr 1 15:50:52 2021 -0400 - - add target="_blank" - -commit 39a5ebe236c553a448627372b96c924657163a93 -Merge: 78ab6550c b752a8538 -Author: Carl Smith -Date: Thu Apr 1 15:48:09 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit fc8606cbb4e535985c5ae9eb3c85a4949fa187db -Author: Carl Smith -Date: Thu Apr 1 14:59:48 2021 -0400 - - Create 012-antivirus-strategy.md - -commit a90ba23c5f692eaf7c7e8c1fbf5a1189d5623743 -Merge: cdd9e4da1 b752a8538 -Author: Carl Smith -Date: Thu Apr 1 12:23:47 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 688351af3311196706c307e8e2cf2c45ec5f5309 -Merge: 2274e70be b752a8538 -Author: Jorge Gonzalez -Date: Thu Apr 1 11:51:20 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/511-privacy-policy - -commit b752a8538eded10d0b1ff01cc0c80fdce768b44b -Merge: dfce3c94c 0fa2c8a06 -Author: Carl Smith -Date: Thu Apr 1 11:47:17 2021 -0400 - - Merge pull request #807 from raft-tech/kniz-raft-patch-1 - - Create sprint-17-summary.md - -commit 0fa2c8a06bd4a6136c826847aa2647d7f75ac0ab -Merge: e110678c1 dfce3c94c -Author: Carl Smith -Date: Thu Apr 1 11:37:20 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 2274e70be76501d18e6dbec999bfb5b4c3367857 -Merge: a927491b5 dfce3c94c -Author: Jorge Gonzalez -Date: Wed Mar 31 19:07:50 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/511-privacy-policy - -commit a927491b547f51fbff3e9a8ebb279324f1adf3d9 -Author: Jorge Gonzalez -Date: Wed Mar 31 18:58:18 2021 -0400 - - Add privacy policy to Footer and add test - -commit dfce3c94c08f14b54e48e0dfe9f31b97b771017f -Merge: 827748a9a 7143f565f -Author: Carl Smith -Date: Wed Mar 31 17:01:19 2021 -0400 - - Merge pull request #757 from raft-tech/feat/429-upload-with-data-files - - Issue 429-2: Change Reports to Data Files - -commit 7143f565f8480eb7015c87780f343dd8091e97e7 -Merge: 99168d2ed 827748a9a -Author: Jorge Gonzalez -Date: Wed Mar 31 13:28:00 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload-with-data-files - -commit 827748a9a60f94f6d2f05ad98100844f4f86bd57 -Merge: e7b38a1bb 69a5551f6 -Author: Carl Smith -Date: Wed Mar 31 12:57:42 2021 -0400 - - Merge pull request #805 from raft-tech/devops/793-localstack-s3 - - Issue 793: As a dev, I want to use a simulated AWS environment during tests and local dev - -commit e110678c1962c754b53856e96bd6e7055b12d90b -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Mar 31 09:13:40 2021 -0500 - - Create sprint-17-summary.md - -commit 69a5551f6028f78fcaf91a70976dc9ed39377933 -Merge: da05c722e e7b38a1bb -Author: Carl Smith -Date: Wed Mar 31 10:10:16 2021 -0400 - - Merge branch 'raft-tdp-main' into devops/793-localstack-s3 - -commit 99168d2edb3962403fb3a11fed543604eec6e13f -Merge: 8e8909e0a e7b38a1bb -Author: Carl Smith -Date: Tue Mar 30 15:38:41 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload-with-data-files - -commit e7b38a1bbe2afd9fbb8207bf3a431078e253316f -Merge: ab86273cb 89120ac36 -Author: Carl Smith -Date: Tue Mar 30 15:34:48 2021 -0400 - - Merge pull request #705 from raft-tech/feat/429-upload - - Issue 429: Add component to input single file - -commit f4323e8f92b736c5a4fd963ee19e23423fc0eb27 -Author: Jorge Gonzalez -Date: Tue Mar 30 14:21:13 2021 -0400 - - add upload report submission with mock backend server - -commit 3bce4af9182e4f96bf8f001232d855769aeeb52d -Merge: 89120ac36 8e8909e0a -Author: Jorge Gonzalez -Date: Tue Mar 30 13:30:19 2021 -0400 - - Merge branch 'feat/429-upload-with-data-files' into feat/430-no-backend - -commit 5518e670169d5bbcf29836758b225c71400f31b0 -Merge: 10433e7cd ab86273cb -Author: Jorge Gonzalez -Date: Tue Mar 30 09:29:48 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 662e0f9b4f0a3960631752b34eeb777b0a797c30 -Merge: f9f963e37 ab86273cb -Author: John Willis -Date: Mon Mar 29 18:00:27 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements - -commit da05c722e312409b9a3ed24ffaf44a7be0fbb92c -Author: John Willis -Date: Mon Mar 29 17:39:56 2021 -0400 - - Fix PEP8 errors - -commit 3c1a21979812218c38c367b9b8586f96b1460175 -Author: John Willis -Date: Mon Mar 29 17:31:13 2021 -0400 - - Add documentation for localstack usage - -commit 2784b9e9f2f48817847dd796bec26da23bc0b7fb -Author: John Willis -Date: Mon Mar 29 17:21:48 2021 -0400 - - Fix PEP8 errors - -commit 0481b099d5dcc38809cff50272b54e4d83bb1bb6 -Author: John Willis -Date: Mon Mar 29 16:57:31 2021 -0400 - - Added support for localstack in local/CI environments - -commit 5d6820348b6fb2229e80f996ece4e800fe8d276f -Merge: e55414ac9 ab86273cb -Author: Carl Smith -Date: Mon Mar 29 15:38:55 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28(1) - -commit 778548482b903f05e3863598983653f90f0411e7 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 29 13:34:18 2021 -0500 - - Update index.md - -commit aa765f722890ab12d5814472aec69bbf8c33531e -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 29 13:21:40 2021 -0500 - - Update index.md - -commit e55414ac9f4449c825b0d1123abe1d5cc8fa08f8 -Author: Carl Smith -Date: Mon Mar 29 13:22:59 2021 -0400 - - Update index.md - -commit 89120ac36f8e8e44bbb2849d92f64d4bdd9df155 -Merge: 239b062ee ab86273cb -Author: Jorge Gonzalez -Date: Mon Mar 29 13:21:48 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit a27b0b22200d8333c6ce0623935a14362556f955 -Author: Carl Smith -Date: Mon Mar 29 13:17:15 2021 -0400 - - Create index.md - -commit 9779d4cf6c6d1c7802e2d6bab98e87afd389b7a0 -Author: Carl Smith -Date: Mon Mar 29 13:14:08 2021 -0400 - - Create index.md - -commit 6cd6c022d386f5d53e52fce46d00e15cbdd50deb -Author: Carl Smith -Date: Mon Mar 29 13:11:36 2021 -0400 - - Create index.md - -commit ab86273cb1c4f74e306f72ce579a605757f8bfa1 -Merge: 9ae6d0c84 e39e67f5f -Author: Carl Smith -Date: Mon Mar 29 13:05:01 2021 -0400 - - Merge pull request #777 from raft-tech/snyk-fix-d301a73c0acbe83327a1fd1269be946b - - [Snyk] Fix for 2 vulnerabilities - -commit 090dbb3855a5a350743952e2e9de625697a3ee16 -Merge: 8785d1537 9ae6d0c84 -Author: Carl Smith -Date: Fri Mar 26 16:19:14 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-20 - -commit e39e67f5f1a834a9e5406127bd24ef248b77830b -Merge: b9a9b0101 9ae6d0c84 -Author: John Willis -Date: Fri Mar 26 15:53:09 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-fix-d301a73c0acbe83327a1fd1269be946b - -commit f9f963e3791afa3a373c35caae0baf5bddfc0e85 -Author: John Willis -Date: Fri Mar 26 15:45:41 2021 -0400 - - Added @testing-library/user-event back - -commit d71cca6cb6ab09ac6c43d27343dfdc5ce95d9bcf -Merge: fc2218f11 9ae6d0c84 -Author: John Willis -Date: Fri Mar 26 15:41:20 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements - -commit 239b062ee3a7d7c2dafd0a043690361a325a469d -Author: Jorge Gonzalez -Date: Fri Mar 26 14:48:51 2021 -0400 - - improve aria descriptions for file inputs - -commit 8d4a2d358a6a73b7b2475758320ecf15c2f70f11 -Merge: e002c98c3 9ae6d0c84 -Author: Carl Smith -Date: Fri Mar 26 14:05:36 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/access-controls-sc-28 - -commit e002c98c35e2aea7a64a1c9cad348051dfcb162a -Author: Carl Smith -Date: Fri Mar 26 14:02:09 2021 -0400 - - Update index.md - -commit 8785d15375f95c8442ae8c7ae51b28bd6091386a -Author: Carl Smith -Date: Fri Mar 26 11:53:07 2021 -0400 - - Update index.md - -commit 94522d783a8227c1809b82f0071f693a7fddd364 -Merge: a053f58c2 10433e7cd -Author: Jorge Gonzalez -Date: Fri Mar 26 11:34:36 2021 -0400 - - Merge branch 'feat/530-select-stt' into feat/738-quarters-select - -commit a053f58c238386fd12e5a6c20aedcfb6bd29748c -Author: Jorge Gonzalez -Date: Fri Mar 26 11:02:50 2021 -0400 - - remove unused import - -commit 10433e7cdad6328931482ac87b0f7c958670a8c2 -Author: Jorge Gonzalez -Date: Thu Mar 25 15:55:24 2021 -0400 - - Tweak header, fix test - -commit b1503e02f87641d49809401e4bb26b3419c49c8c -Author: Jorge Gonzalez -Date: Thu Mar 25 15:45:50 2021 -0400 - - fix test - -commit 396d0b73397970bfb53b23577d9d713ea8573a64 -Merge: 71d435376 0819f84a1 -Author: Jorge Gonzalez -Date: Thu Mar 25 15:43:24 2021 -0400 - - Merge branch 'feat/530-select-stt' into feat/738-quarters-select - - # Conflicts: - # tdrs-frontend/src/assets/Reports.scss - -commit 0819f84a18f0d6b494ba7c926549cc6766988db5 -Author: Jorge Gonzalez -Date: Thu Mar 25 15:42:09 2021 -0400 - - refactor and improve some tests; fix styles - -commit dca681b1b58e0f09b138b92492348c22d68b8709 -Merge: f5e90ccc5 9ae6d0c84 -Author: Jorge Gonzalez -Date: Thu Mar 25 14:48:24 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 8cca66fc3938eec4fec6fcab29943243d60302bf -Merge: 6bd75b8fc 9ae6d0c84 -Author: Jorge Gonzalez -Date: Thu Mar 25 14:26:16 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit 9ae6d0c84097622a7204aa8025d30d0670947a79 -Merge: f6ec2869b 2cf78988e -Author: Carl Smith -Date: Thu Mar 25 14:20:12 2021 -0400 - - Merge pull request #791 from raft-tech/reduce-frontend-memory - - 792: Failing deploys to development environment - -commit 2cf78988e4901a6004c257635d9513e6b969215c -Merge: b72fe57dd f6ec2869b -Author: Carl Smith -Date: Thu Mar 25 12:25:08 2021 -0400 - - Merge branch 'raft-tdp-main' into reduce-frontend-memory - -commit b72fe57dd5fdb6ae7284eb380a49ac76a78cffcc -Author: Aaron Beavers -Date: Thu Mar 25 11:59:55 2021 -0400 - - Reduce the amount of memory allocated to frontend - -commit f5e90ccc5f472f5dc2b9079dbdd4443b095e2985 -Merge: 56268a93f f6ec2869b -Author: Jorge Gonzalez -Date: Thu Mar 25 10:34:04 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/530-select-stt - -commit 6bd75b8fcfd8bf3a50a9902dab5313f2f41ba6ff -Merge: a7bd21845 f6ec2869b -Author: Jorge Gonzalez -Date: Thu Mar 25 10:33:34 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit f6ec2869b3bec0368171eaad093fce4dc2434fec -Merge: f2ef9a62e dcb03d1f2 -Author: Carl Smith -Date: Thu Mar 25 10:04:45 2021 -0400 - - Merge pull request #650 from raft-tech/front/639/hide-admin - - Issue 639: As an OFA Admin, I need to be able to access the admin functions in TDP - -commit 71d4353760c543c92588a3c94d9efc74119cf931 -Author: Jorge Gonzalez -Date: Wed Mar 24 10:58:14 2021 -0400 - - add action test - -commit dcb03d1f27b0cd989c33fae60a6b94bb8520f923 -Merge: 133b300aa f2ef9a62e -Author: Jorge Gonzalez -Date: Tue Mar 23 16:57:33 2021 -0400 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit 133b300aaa62967ab97fffc1e4302ce0928c88e3 -Author: Jorge Gonzalez -Date: Tue Mar 23 16:41:06 2021 -0400 - - add aria-current - -commit bcee6c08225cc3bccebd887a07a7f913ff3b2312 -Author: Jorge Gonzalez -Date: Tue Mar 23 15:50:51 2021 -0400 - - Fix tests - -commit fc2218f11d190c0dbd9d456dfa9baa9da96ae462 -Author: John Willis -Date: Tue Mar 23 15:50:49 2021 -0400 - - Skip creating yarn lock file in Docker - -commit 21d531c5f872c61d4b4c9c58aa741c292fb649ee -Author: John Willis -Date: Tue Mar 23 15:39:12 2021 -0400 - - Revert yarn install order change - -commit a7bd2184546434626fe2355d233f724cd8489065 -Merge: 5532ed8a3 f2ef9a62e -Author: Jorge Gonzalez -Date: Tue Mar 23 15:32:21 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit 61ca7b61c5fceff1abb90620f829d82897ade45b -Author: Jorge Gonzalez -Date: Tue Mar 23 15:31:31 2021 -0400 - - Add Dropdown for Quarters Selection - -commit 1a89a53402ea78e6341d66099af0a4dfef4ecb13 -Author: John Willis -Date: Tue Mar 23 15:26:24 2021 -0400 - - Dockerfile.local refactor to remove overlapping commands and copy everything before yarn install - -commit 56268a93f3bd571e2548d1f15eb7ddbc8e516ca5 -Author: Jorge Gonzalez -Date: Tue Mar 23 14:14:48 2021 -0400 - - Build STTComboBox abstraction - -commit c083838238337b31c6b49a51e131e9a38c337a6d -Author: John Willis -Date: Tue Mar 23 14:11:55 2021 -0400 - - Update yarn.lock - -commit 5dc380117b69fa81abd3db0dad75c228655c82f0 -Author: John Willis -Date: Tue Mar 23 11:51:34 2021 -0400 - - Remove manually installed jest, since it conflicts with react-scripts - -commit 9cd78cdd2a056b9eb990d97b4333824bce06520e -Merge: 8d44321bd f2ef9a62e -Author: Jorge Gonzalez -Date: Tue Mar 23 11:44:40 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/530-select-stt - -commit 8d44321bd77c65abf4d99fffb830df2367bfa9a1 -Author: Jorge Gonzalez -Date: Tue Mar 23 11:11:58 2021 -0400 - - tweak styles - -commit 5b02fe523ad39af73e07a15dbd82f7614714ddda -Author: John Willis -Date: Tue Mar 23 11:30:27 2021 -0400 - - Update yarn.lock - -commit 58a452287ccf0e020564936001f4e80799e95d9f -Merge: c728ab056 f2ef9a62e -Author: John Willis -Date: Tue Mar 23 11:28:22 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements - -commit f2ef9a62e492cb4f48e30558a4a0e628222a99c2 -Merge: 290359538 205210bb9 -Author: John Willis -Date: Tue Mar 23 11:24:13 2021 -0400 - - Merge pull request #784 from raft-tech/lfrohlich-patch-2 - - Update Project-Glossary.md - -commit c728ab05651f657e8d77738a8d20450859087e62 -Author: John Willis -Date: Tue Mar 23 11:23:22 2021 -0400 - - Explicitly add jest to silence yarn warning - -commit 205210bb95fde9c6fff9b6ffd26d966fa19dde09 -Merge: fd4172cad 290359538 -Author: John Willis -Date: Tue Mar 23 11:13:16 2021 -0400 - - Merge branch 'raft-tdp-main' into lfrohlich-patch-2 - -commit 290359538518063b2a82edebb5ce6719c3352f46 -Merge: 38cf9c3da 2fb524f86 -Author: John Willis -Date: Tue Mar 23 11:13:04 2021 -0400 - - Merge pull request #765 from raft-tech/jenewingpierce-patch-1 - - Issue 669: Research Synthesis for Round 4 - -commit 92b091f9d310fc821d22bfd175d3a956cb147d6f -Author: John Willis -Date: Tue Mar 23 11:10:25 2021 -0400 - - eslint config tweaks - -commit c5c4e056aaea35d0d33cb61f5ca28f3b3b5ddba7 -Merge: a456f0beb 38cf9c3da -Author: John Willis -Date: Tue Mar 23 11:10:00 2021 -0400 - - Merge branch 'raft-tdp-main' into frontend/548/local-build-improvements - -commit 655fac2d0ae77ad463e4e1f2db17c165ef0a34c0 -Merge: 0758d6ed8 a9e62ad8f -Author: Jorge Gonzalez -Date: Tue Mar 23 11:04:19 2021 -0400 - - Merge branch 'feat/530-select-stt' of https://github.com/raft-tech/TANF-app into feat/530-select-stt - -commit 0758d6ed8f6db21a07a867942f35cf447334d61d -Merge: aa83cbd60 38cf9c3da -Author: Jorge Gonzalez -Date: Tue Mar 23 11:04:00 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/530-select-stt - -commit 2fb524f86154923de0b2bd0e3ececbfefe656dc0 -Author: John Willis -Date: Tue Mar 23 11:01:24 2021 -0400 - - Apply suggestions from code review - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 86d07cddaac9ea877e3c5b308a8d91794192a590 -Merge: 2dcf42cc3 38cf9c3da -Author: John Willis -Date: Tue Mar 23 10:57:42 2021 -0400 - - Merge branch 'raft-tdp-main' into jenewingpierce-patch-1 - -commit 38cf9c3da71f693dbe577bde512f43147b7357c7 -Merge: a1c15059b 577b79985 -Author: John Willis -Date: Tue Mar 23 10:57:00 2021 -0400 - - Merge pull request #741 from raft-tech/ops/691-docker-hot-reload - - Issue 691: As a developer, I would like the app to hot reload when running locally - -commit 577b7998535d2ef51aaa3e11148d3d2de9504924 -Merge: dc2bd6570 a1c15059b -Author: John Willis -Date: Tue Mar 23 10:45:15 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload - -commit a1c15059b1a601c42d7214a993ac841cf0ffa7f6 -Merge: 1c1c1bb07 6049c5018 -Author: John Willis -Date: Tue Mar 23 10:44:51 2021 -0400 - - Merge pull request #780 from raft-tech/carltonsmith-patch-3 - - update bug report - -commit aa83cbd605bab6a9d781e88edb5797a5bcc3215f -Author: Jorge Gonzalez -Date: Tue Mar 23 10:36:08 2021 -0400 - - add more tests - -commit a9e62ad8f779050715c6661c9f808524789086af -Author: Jorge Gonzalez -Date: Tue Mar 23 10:36:08 2021 -0400 - - add more tests - -commit ef04623dfad753907d140aba64e52075eb28401a -Author: Jorge Gonzalez -Date: Tue Mar 23 10:19:06 2021 -0400 - - restrict to OFA Admins - -commit fd4172cadf26c8a12e8a3f3dbc5c09f48decb898 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Mar 23 10:03:48 2021 -0400 - - Update docs/Background/Project-Glossary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit b991a738b625e6ff82f1e6443a2403802bc043fa -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Mar 23 09:37:48 2021 -0400 - - Update docs/Background/Project-Glossary.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 033ab1c332ad8810fbd2793089661ec4320d2239 -Author: Jorge Gonzalez -Date: Mon Mar 22 16:21:04 2021 -0400 - - Fix existing tests - -commit bc8999c2cc520d528d4068bb40c577fc2e18aec9 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Mar 22 16:12:42 2021 -0400 - - Update Project-Glossary.md - - Updated some glossary items and deleted a few. Could use more revisiting at some point. - -commit 987b459252a3b5a8ccbf725a66258c1bf8274361 -Merge: 5be1fb332 1c1c1bb07 -Author: Jorge Gonzalez -Date: Mon Mar 22 14:34:15 2021 -0400 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/530-select-stt - -commit 5532ed8a3fc1528f6d62ca9266e363fe7621190b -Merge: eb6905ccb 1c1c1bb07 -Author: Jorge Gonzalez -Date: Mon Mar 22 10:45:22 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit dc2bd6570ba13014bf7333670d6579b8e3a6b9a4 -Merge: 8d4b5c293 1c1c1bb07 -Author: Jorge Gonzalez -Date: Mon Mar 22 10:23:03 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload - -commit 6049c5018d1e6cb0b4ec02136d04266edd754bc7 -Merge: bfe758f95 1c1c1bb07 -Author: Carl Smith -Date: Fri Mar 19 15:51:43 2021 -0400 - - Merge branch 'raft-tdp-main' into carltonsmith-patch-3 - -commit a456f0beb359cf2bdb14d1fe66d191ee52ac64f5 -Author: Jorge Gonzalez -Date: Fri Mar 19 15:24:30 2021 -0400 - - move concurrently - -commit 1c1c1bb07947638eab16253063c40dbf866c0de7 -Merge: 2736d0e6d 82c0d0c61 -Author: Carl Smith -Date: Fri Mar 19 15:18:04 2021 -0400 - - Merge pull request #769 from raft-tech/snyk-fix-64e384806c6e14248492bb18564add6c - - [Snyk] Security upgrade urllib3 from 1.26.2 to 1.26.4 - -commit 67906a7201bb1fa15982254c93692a0d03058709 -Author: Jorge Gonzalez -Date: Fri Mar 19 15:11:08 2021 -0400 - - resolve ssri - -commit 82c0d0c618a5710c51b8c3aa0a1b3ff02be54cdc -Merge: 7b24af199 2736d0e6d -Author: Carl Smith -Date: Fri Mar 19 15:09:00 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-fix-64e384806c6e14248492bb18564add6c - -commit a16d0d55654ed177b8104027657870a8cade85d0 -Author: Jorge Gonzalez -Date: Fri Mar 19 13:55:01 2021 -0400 - - reinstall - -commit bfe758f953e39500ce2ca7a775686e722cadfe32 -Author: Carl Smith -Date: Fri Mar 19 13:52:50 2021 -0400 - - update bug report - -commit 2dcf42cc3a378937cd1a6d5fcaab9c030ee291fc -Merge: 42f020e56 2736d0e6d -Author: Carl Smith -Date: Fri Mar 19 13:34:00 2021 -0400 - - Merge branch 'raft-tdp-main' into jenewingpierce-patch-1 - -commit 2736d0e6d426df0082357c71392b5160fd271180 -Merge: 889f42ca0 e5d18aae6 -Author: Carl Smith -Date: Fri Mar 19 11:56:51 2021 -0400 - - Merge pull request #775 from raft-tech/documentation/bug-template - - Create bug-template.md - -commit 3f47b3ad0c24b31b44f53c8d7c32fadafdb328aa -Author: Jorge Gonzalez -Date: Fri Mar 19 11:19:22 2021 -0400 - - add new env to dockerfiles - -commit 8d4b5c293174d7f5e6f4f6cc9ecc5892ecf2a1b1 -Merge: bae6d3bb9 889f42ca0 -Author: John Willis -Date: Fri Mar 19 11:08:23 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload - -commit e5d18aae623e18041a399e318dc1340155e2b909 -Author: Carl Smith -Date: Fri Mar 19 10:09:24 2021 -0400 - - Update bug-template.md - -commit 867cff8aca69bfaa6fbcc31ab1568b02952e1645 -Author: Carl Smith -Date: Fri Mar 19 10:08:26 2021 -0400 - - Update .github/ISSUE_TEMPLATE/bug-template.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit eb6905ccb5010d7cf44d2a864f7b61ba1d0e792d -Author: Jorge Gonzalez -Date: Fri Mar 19 09:30:12 2021 -0400 - - update copy - -commit e5ac0c8467b75dab688a7982863147d2ee002da0 -Merge: 5f0b2c2f3 889f42ca0 -Author: Carl Smith -Date: Fri Mar 19 09:21:54 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit b9a9b0101b6859ed36f010d9fd9da9cbbd7e8d03 -Author: snyk-bot -Date: Fri Mar 19 05:53:48 2021 +0000 - - fix: tdrs-backend/requirements.txt to reduce vulnerabilities - - - The following vulnerabilities are fixed by pinning transitive dependencies: - - https://snyk.io/vuln/SNYK-PYTHON-PYGMENTS-1086606 - - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-1085966 - -commit 5ad9cc9939d8c78a7af28902a81dea0611c18c73 -Author: Carl Smith -Date: Thu Mar 18 17:33:37 2021 -0400 - - Create index.md - -commit 62b253b915edc3b05574cda10ee0f278f074cd5e -Merge: 6b3898b13 889f42ca0 -Author: Carl Smith -Date: Thu Mar 18 17:31:49 2021 -0400 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit cdd9e4da17ef5d503ecab102f2439e3ad545416f -Merge: 363e0c0c9 889f42ca0 -Author: Carl Smith -Date: Thu Mar 18 11:55:00 2021 -0400 - - Merge branch 'raft-tdp-main' into epics/398/backend/643/list-years - -commit 7b24af1995b2ac96d4b72bbca11c1d92d5c57392 -Merge: 677587459 889f42ca0 -Author: Carl Smith -Date: Thu Mar 18 09:26:19 2021 -0400 - - Merge branch 'raft-tdp-main' into snyk-fix-64e384806c6e14248492bb18564add6c - -commit 2fe68ed0d9192cb14bc850a4b97d0a8dc0f64f5c -Author: Carl Smith -Date: Thu Mar 18 09:17:13 2021 -0400 - - Create index.md - -commit 8323ae72a7e8caeda8013af5c2693fc44791ea6a -Author: Carl Smith -Date: Thu Mar 18 08:49:42 2021 -0400 - - Update bug-template.md - -commit c0c743f04f43393ca42b7028a1c02cba2b3616df -Merge: fe7ba61d2 889f42ca0 -Author: Carl Smith -Date: Thu Mar 18 08:47:50 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/bug-template - -commit fe7ba61d2917b1ca3e64b0f40aa502fa5c455bd1 -Author: Carl Smith -Date: Wed Mar 17 16:54:12 2021 -0400 - - Update bug-template.md - -commit ced47f16f1f70101ebdde6d73095ab8cf769b36b -Author: Carl Smith -Date: Wed Mar 17 16:51:55 2021 -0400 - - Update bug-template.md - -commit 09e4da3fed4c7917ae3f1d95142dbfbe83a36806 -Author: John Willis -Date: Wed Mar 17 16:50:02 2021 -0400 - - Update tdrs-frontend/package.json - - Co-authored-by: Jorge Gonzalez - -commit 6bada5cf4ca5b75f91549ed2f3e4ea2c2212524d -Author: John Willis -Date: Wed Mar 17 16:49:24 2021 -0400 - - Fix .eslintrc.json - -commit 889f42ca0e68d6c77bef3ed64b802e37a1db8ad2 -Merge: a5279dd46 038507855 -Author: Carl Smith -Date: Wed Mar 17 16:44:13 2021 -0400 - - Merge pull request #746 from raft-tech/kniz-raft-patch-1 - - Update sprint-schedule.md - -commit 7c4eb12c6add365b2d051008d6fdb10007e04986 -Merge: dee1c270a a5279dd46 -Author: Carl Smith -Date: Wed Mar 17 16:36:46 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/bug-template - -commit 03850785529f3ea6040cc9060d8bbf76583da5f8 -Merge: ac9203f80 a5279dd46 -Author: Carl Smith -Date: Wed Mar 17 16:34:10 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit dee1c270a0db2d593682b129a3e660650f10a01d -Author: Carl Smith -Date: Wed Mar 17 16:10:15 2021 -0400 - - Create bug-template.md - -commit a5279dd462dd89e460bea3f1325702b1c60baa64 -Merge: 416bd1745 a71ca2c01 -Author: Carl Smith -Date: Wed Mar 17 15:28:57 2021 -0400 - - Merge pull request #766 from raft-tech/kniz-raft-patch-3 - - Create sprint-16-summary.md - -commit a71ca2c01f4d912931d0baefec00b89e287db6ee -Merge: 0908aba9e 416bd1745 -Author: Carl Smith -Date: Wed Mar 17 14:39:39 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-3 - -commit 6b3898b13887ec00193c0e22fa4c990e4ae3215f -Merge: 49dcbcdd1 416bd1745 -Author: Carl Smith -Date: Wed Mar 17 13:56:21 2021 -0400 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit 5be1fb332928454140c49273f5b5668839efd8eb -Author: Jorge Gonzalez -Date: Wed Mar 17 13:42:11 2021 -0400 - - Add STT ComboBox to Reports page - -commit 0908aba9e284eaaf48c8bcf134dc6653ab77cc1c -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Mar 17 11:43:23 2021 -0500 - - Update sprint-16-summary.md - -commit 6775874599199cf95a5eea0c8769900a5c7f0fc2 -Author: snyk-bot -Date: Wed Mar 17 02:10:34 2021 +0000 - - fix: tdrs-backend/requirements.txt to reduce vulnerabilities - - - The following vulnerabilities are fixed by pinning transitive dependencies: - - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-1085966 - -commit 50d7abfe1241b1a4251fef4121cef7b3c175de3c -Author: John Willis -Date: Tue Mar 16 17:37:05 2021 -0400 - - 548: Local Build Improvements - -commit bae6d3bb90216a7f65c35419c7686406ccd9611e -Merge: ad49847c6 416bd1745 -Author: John Willis -Date: Tue Mar 16 15:05:09 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload - -commit 78ab6550c9cb3a49b4f951bfc334ed92cdea8084 -Author: Carl Smith -Date: Tue Mar 16 12:56:19 2021 -0400 - - Update index.md - -commit c22c3c0c76c571a4bf1855efe96c3e803942522b -Author: Carl Smith -Date: Tue Mar 16 12:48:43 2021 -0400 - - Update index.md - -commit bf1243ca9e9357934ed2b776462d00cfcbc3ebd2 -Author: Carl Smith -Date: Tue Mar 16 12:48:05 2021 -0400 - - Update index.md - -commit 5f0b2c2f3dbe9d9e58f66cf2638426ed65a01613 -Merge: 72c74835a 416bd1745 -Author: Jorge Gonzalez -Date: Tue Mar 16 12:44:51 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit 639bcb09bf68724b3ab130b776553ce2fa94c725 -Merge: 6709606ca 416bd1745 -Author: Carl Smith -Date: Tue Mar 16 12:43:09 2021 -0400 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit 6709606ca82a621abd9528d32e6f5580fcaaf6a0 -Author: Carlton Smith -Date: Tue Mar 16 12:42:39 2021 -0400 - - move file - -commit 25e713cee59f81847f40cd2024ef09f43a89e882 -Author: Carl Smith -Date: Tue Mar 16 12:36:18 2021 -0400 - - Create placeholder.md - -commit ceee26cb880af0fbdc8bbbe425c47e95fe67079c -Author: Carl Smith -Date: Tue Mar 16 12:34:50 2021 -0400 - - Add files via upload - -commit 921134e938214b172972ac8f4b6f8d0adafc29af -Author: Carl Smith -Date: Tue Mar 16 12:31:43 2021 -0400 - - Update index.md - -commit 416bd1745d713403920ef620b89a702024991593 -Merge: 640be6d80 9eaca1cfe -Author: Carl Smith -Date: Tue Mar 16 11:28:04 2021 -0400 - - Merge pull request #758 from raft-tech/kniz-raft-patch-2 - - Update Roadmap-and-Backlog.md - -commit 9eaca1cfeeceec698912f91fd1933da70f0ab01f -Merge: d0c22b6cb 640be6d80 -Author: Carl Smith -Date: Tue Mar 16 11:11:40 2021 -0400 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit 8d51b325d9325baa0f8ce67d1e2d82c3459357f8 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Mar 16 10:07:51 2021 -0500 - - Create sprint-16-summary.md - -commit 42f020e560c231a5f606f648d69ca6f10af6f937 -Author: Jen Pierce <74320484+jenewingpierce@users.noreply.github.com> -Date: Tue Mar 16 10:58:24 2021 -0400 - - Add files via upload - -commit ad49847c65f983e4c418b0e8cc6db6860c94b3fb -Merge: 001aafe35 640be6d80 -Author: Jorge Gonzalez -Date: Mon Mar 15 17:25:43 2021 -0400 - - Merge branch 'raft-tdp-main' into ops/691-docker-hot-reload - -commit 001aafe359a0b4225be91f9d1a62a18d979407b8 -Author: Jorge Gonzalez -Date: Wed Mar 10 10:22:53 2021 -0500 - - Update docker files to support local frontend builds - -commit ac9203f80dfcde36d2afc5d18093a1c11e93964c -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 15 16:20:31 2021 -0500 - - Update docs/How-We-Work/team-charter/sprint-schedule.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 72c74835a362155f83af7ed74e74735af559f53b -Author: Jorge Gonzalez -Date: Mon Mar 15 16:30:18 2021 -0400 - - trim section header from aria description - -commit 0293259eadb6036348f636ac443aa0f7b69c59f6 -Author: Jorge Gonzalez -Date: Mon Mar 15 15:09:34 2021 -0400 - - try aria-describedby fix - -commit b005d385a5ba22bf50e4ba80b09bbb7e6c2aa0e0 -Author: Carl Smith -Date: Mon Mar 15 13:06:22 2021 -0400 - - Rename docs/Security-Compliance/Security-Controls/index.md to docs/Security-Compliance/Security-Controls/au-2/index.md - -commit 47ef2a7f0ffd08ed81cc1d54754c5817b4e05c50 -Merge: dee7f226b 640be6d80 -Author: Jorge Gonzalez -Date: Mon Mar 15 10:01:35 2021 -0400 - - Merge branch 'raft-tdp-main' into feat/429-upload - -commit dee7f226b9cd2f0af7e98f73ad5509819ad37bb5 -Author: Jorge Gonzalez -Date: Mon Mar 15 09:52:40 2021 -0400 - - minor style fixes - -commit 640be6d80e591243507065288dcc4f8454d240eb -Merge: 17e99bbe3 8d90148e3 -Author: Carl Smith -Date: Fri Mar 12 15:13:04 2021 -0500 - - Merge pull request #742 from raft-tech/issues/devops/720 - - Add GitHub Action to trigger deploys on PR label assignment [720] - -commit 8d90148e379bc56c3fe0ed73a15a42ee4ebd2660 -Merge: b69775095 17e99bbe3 -Author: Carl Smith -Date: Fri Mar 12 14:57:45 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit d8ead7b5ba7c13852bbd5c042b9ffb6c4340d186 -Merge: f9ed243e6 17e99bbe3 -Author: Jorge Gonzalez -Date: Fri Mar 12 13:01:37 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/429-upload - -commit 5da5043dd81f015a3968eaa784c69403a7a3b977 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 12 11:47:20 2021 -0600 - - Update sprint-schedule.md - -commit 17e99bbe3b059f9509ac8a0911fccc6d900d4996 -Merge: e4bc4b1da 8c82fc682 -Author: Carl Smith -Date: Fri Mar 12 11:58:22 2021 -0500 - - Merge pull request #745 from raft-tech/documentation/sc-08 - - Security Controls: SC-08 - -commit d0c22b6cb75a5075f6ff523e90faef3f6304f32e -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 12 10:58:11 2021 -0600 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit af2541f6ad3f04f5434609b34797f03fc9cd1572 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 12 10:58:01 2021 -0600 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 19a490792ea47481a5ef0f0c0063574f3e8196b3 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 12 10:57:54 2021 -0600 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 231cbf81320c7f4d558be9e65bb6ddc2370ad439 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 12 10:57:46 2021 -0600 - - Update docs/Product-Strategy/Roadmap-and-Backlog.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit f9ed243e687a83f6f4428e8f714c71a25f7ea3cf -Merge: f36f21de8 e4bc4b1da -Author: Jorge Gonzalez -Date: Fri Mar 12 11:57:04 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/429-upload - -commit 8c82fc682d3fa00db013767549081f415dcfade4 -Merge: 7d56e4013 e4bc4b1da -Author: Carl Smith -Date: Fri Mar 12 11:47:58 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/sc-08 - -commit e4bc4b1da11922977df19195812db661cab00a89 -Merge: 218877e37 e8fb1eec7 -Author: Carl Smith -Date: Fri Mar 12 11:41:49 2021 -0500 - - Merge pull request #739 from raft-tech/documentation/sc-04 - - SC-04 - Information in Shared Resources - -commit f36f21de87aba61f1f3fdb9bcd66f859493ff4a1 -Merge: 3b2bbb356 218877e37 -Author: Jorge Gonzalez -Date: Fri Mar 12 11:40:20 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into feat/429-upload - -commit 7d56e4013f8ce5f04359528987c81df1eb703ce4 -Author: Carl Smith -Date: Fri Mar 12 11:39:40 2021 -0500 - - Update index.md - -commit 3b2bbb35667dbc90fe892c2d0cbce1f273544fd8 -Author: Jorge Gonzalez -Date: Fri Mar 12 11:39:18 2021 -0500 - - add focus to header element - -commit ab00f54034549c53cb1ee7014c79a097d92b9853 -Merge: 79f817e66 218877e37 -Author: Carl Smith -Date: Fri Mar 12 11:34:33 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/sc-08 - -commit e8fb1eec75e4c8a06e0a5fbb4a38aa3ac185b572 -Merge: 765eb746e 218877e37 -Author: Carl Smith -Date: Fri Mar 12 11:27:20 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/sc-04 - -commit 4c598f3c1b03bd88de16c0645d86dc0ea9cf84ff -Author: Jorge Gonzalez -Date: Fri Mar 12 11:07:37 2021 -0500 - - add aria-live to UploadReport.jsx - -commit b69775095ff83c73c2b72e9f725819be4083dae3 -Merge: 016a58591 218877e37 -Author: Alex P <63075587+ADPennington@users.noreply.github.com> -Date: Fri Mar 12 10:59:12 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit 218877e377af0009fa11cd7515ce727acd5df549 -Merge: 019d2a171 2cfd0c8c2 -Author: Carl Smith -Date: Fri Mar 12 10:15:37 2021 -0500 - - Merge pull request #567 from raft-tech/snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - - [Snyk] Upgrade eslint from 7.16.0 to 7.17.0 - -commit 2cfd0c8c224c25a5b46f23e90109607b05186d88 -Merge: e7c1a8f87 019d2a171 -Author: Carl Smith -Date: Fri Mar 12 10:06:08 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - -commit 019d2a1715acd96f8ad024d388fd357c526f51d1 -Merge: e78bbe97c 9f676940c -Author: Carl Smith -Date: Fri Mar 12 10:01:34 2021 -0500 - - Merge pull request #593 from raft-tech/564-generated-api-docs - - Automatic Generation of OpenAPI documentation - -commit 9f676940c7a17ec4ba68290ec8e6cbf6e81283d3 -Merge: f56b12725 e78bbe97c -Author: Carl Smith -Date: Fri Mar 12 09:51:57 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit e78bbe97cec4a53a8170a2759bb0288d126be3e8 -Merge: d07b23026 a0df65040 -Author: Carl Smith -Date: Fri Mar 12 09:45:36 2021 -0500 - - Merge pull request #642 from raft-tech/snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b - - [Snyk] Upgrade: @fortawesome/fontawesome-svg-core, @fortawesome/free-solid-svg-icons - -commit a0df6504057141244a4fcb47da88bba8bcb6eaa3 -Merge: f58127906 d07b23026 -Author: Carl Smith -Date: Fri Mar 12 09:37:41 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b - -commit 016a5859105f89c58084c26f412fe9e13d73f2fd -Author: John Willis -Date: Thu Mar 11 16:09:31 2021 -0500 - - Add documentation and use github context for repo owner - -commit 156171b4fcc227189172ad3b7b8c5d1c4e1befdf -Author: John Willis -Date: Thu Mar 11 15:34:14 2021 -0500 - - Use set-output for PR state - -commit 45832e0424189af71715e69ff0e39bc73a57dcc8 -Author: John Willis -Date: Thu Mar 11 15:30:33 2021 -0500 - - Only deploy if state is success - -commit 7c7c3a7efacf07cd805814514ec516dd5f659245 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Mar 11 14:07:56 2021 -0600 - - Update Roadmap-and-Backlog.md - -commit 86334d1fb9d3aaa7fc73945c4db0c4dbf310faa3 -Author: John Willis -Date: Thu Mar 11 14:44:23 2021 -0500 - - Get only current PR status checks state - -commit 049220d9fa4f92a663de2292509dbd61493d8a7a -Author: John Willis -Date: Thu Mar 11 14:41:28 2021 -0500 - - Temporarily comment out deploy step; testing PR Status API call - -commit 363e0c0c98833e57be11683b9b3362068d663059 -Author: Aaron Beavers -Date: Thu Mar 11 11:52:03 2021 -0500 - - Remove code meant for other ticket - -commit 98cfd444cdcb11535a9cc33fa1c2cb8f61adc078 -Author: Jorge Gonzalez -Date: Thu Mar 11 11:23:30 2021 -0500 - - Fix eslint warning - -commit 887715d365cc343591d78577ac6cbf195836de09 -Author: Aaron Beavers -Date: Thu Mar 11 11:14:45 2021 -0500 - - Add white space for readability - -commit 8b1057827c060a2756a9e468ab80ea88e40a733e -Author: Aaron Beavers -Date: Thu Mar 11 11:14:33 2021 -0500 - - Update docstring for test - -commit 043804b5f3f3af0a0aaec18fb5031c97e49fea93 -Author: Aaron Beavers -Date: Thu Mar 11 11:06:20 2021 -0500 - - Request.kwargs does not exist, use view.kwargs instead - -commit 851078e9a338bfaba35a141194c73b09b8471144 -Author: Aaron Beavers -Date: Thu Mar 11 11:05:50 2021 -0500 - - Change name of view to better describe intention - -commit 9148edfb086e95b9aa4adcb1360f570aae8ea5e8 -Author: Aaron Beavers -Date: Thu Mar 11 11:05:35 2021 -0500 - - Update name of view and explicitly declare route for data prepper path - -commit da9ee4cb82a2f15bd836a0e958aa742996c6a681 -Author: Aaron Beavers -Date: Thu Mar 11 11:04:06 2021 -0500 - - Add test for getting years for OFA admin - -commit 2a8077ba5be3c74f345648c1587f1c1e9831382f -Merge: bbae5b835 d07b23026 -Author: Carl Smith -Date: Thu Mar 11 10:44:29 2021 -0500 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 8e8909e0a1f4266624779b50a155a8a68e448d63 -Author: Jorge Gonzalez -Date: Thu Mar 11 10:40:05 2021 -0500 - - Update Reports tab and route to Data Files - -commit 5ceaa192b1e4c8699ee5aab41ea2a26fcf4c4712 -Author: Spencer Hilvitz -Date: Wed Mar 10 10:46:37 2021 -0500 - - frontend/429 Add components and actions for file upload - - Co-authored-by: Jorge Gonzalez - Co-authored-by: Spencer Hilvitz - -commit 49dcbcdd13031f4f66f8b818d345e7eb676c5c13 -Merge: b6984e473 d07b23026 -Author: Jorge Gonzalez -Date: Wed Mar 10 12:21:34 2021 -0500 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit 79f817e66a60271124e9c61f131604d4ad6faf4d -Merge: fcb0efacb d07b23026 -Author: Carl Smith -Date: Wed Mar 10 09:17:11 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/sc-08 - -commit 92a5d5b9809e643f78334f252375a045ee81ab9d -Merge: adc593811 d07b23026 -Author: John Willis -Date: Tue Mar 9 16:42:51 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit adc593811d8be0f2c6016c24997c57f3422be090 -Author: John Willis -Date: Tue Mar 9 16:27:34 2021 -0500 - - Add documentation in README for manually triggered deployments - -commit f56b12725c48f31f35e62d35ca52716b6f5476ca -Merge: 129cc9aea d07b23026 -Author: Carl Smith -Date: Tue Mar 9 15:13:33 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit d07b2302694364003ba755a1247a2fb98d23c65a -Merge: 6ede27b10 184b4e1e9 -Author: Carl Smith -Date: Tue Mar 9 15:04:08 2021 -0500 - - Merge pull request #719 from raft-tech/snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b - - [Snyk] Upgrade react-scripts from 4.0.0 to 4.0.3 - -commit 7c6aa9332e053d3bea5cbe50152f2e84ac702074 -Author: John Willis -Date: Tue Mar 9 14:40:40 2021 -0500 - - Generalize label since deployment environment will be based on the branch name as with regular CI workflows - -commit 184b4e1e9d6cef2cd5b80a313d817aef8c9388a9 -Merge: 71a0d5663 6ede27b10 -Author: Carl Smith -Date: Tue Mar 9 14:18:39 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b - -commit c924dc3f4dc3e322088a0d0dc321ca596b6e7d8f -Merge: 74be18fd5 6ede27b10 -Author: John Willis -Date: Tue Mar 9 13:49:52 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit 129cc9aea358461bd7a371a5345323cade109646 -Author: John Willis -Date: Tue Mar 9 12:49:44 2021 -0500 - - move to drf-yasg as original package is being maintained again - -commit 0429187bd9eea30b5ed8bac4f8b11176164aa4be -Merge: f32d18770 6ede27b10 -Author: John Willis -Date: Tue Mar 9 12:25:38 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit a7a5702875f04199d94fdafcc227f71217be2461 -Merge: 12cff248f 6ede27b10 -Author: Carl Smith -Date: Tue Mar 9 11:55:49 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit fcb0efacba7ed860d2d640241c31502ad8e82434 -Merge: bdb34eef1 6ede27b10 -Author: John Willis -Date: Mon Mar 8 17:21:30 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/sc-08 - -commit 6ede27b10ed4ffed1f0b76d013bdea51b68e7bbc -Merge: 89e5ef136 2c65720c2 -Author: Carl Smith -Date: Mon Mar 8 17:08:36 2021 -0500 - - Merge pull request #686 from raft-tech/snyk-fix-1dafab6cbd91d267288baf2bf65cd82e - - [Snyk] Security upgrade django from 3.1.4 to 3.1.7 - -commit 74be18fd5b034ae22123671630051d967c88d4cf -Merge: c89c7025e 89e5ef136 -Author: John Willis -Date: Mon Mar 8 17:06:25 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit 2c65720c25fa0f5bc73c96cb5ba13bcad4fe1298 -Merge: 750eb41cf 89e5ef136 -Author: Carl Smith -Date: Mon Mar 8 16:58:31 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-1dafab6cbd91d267288baf2bf65cd82e - -commit 89e5ef136e358481b81b80e4052495c0838fc39c -Merge: afa0b0e23 e3b44da89 -Author: Carl Smith -Date: Mon Mar 8 16:33:13 2021 -0500 - - Merge pull request #718 from raft-tech/spike/645/buildpacks - - Add initial doc for buildpack ADR - -commit 750eb41cf2d42c6004d4571d4d091d7ca6dccd0b -Merge: 994387f72 afa0b0e23 -Author: Carl Smith -Date: Mon Mar 8 16:27:18 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-1dafab6cbd91d267288baf2bf65cd82e - -commit e3b44da89217cc8e50d2f47f4d5ae4d74211dc27 -Merge: 05576a093 afa0b0e23 -Author: Carl Smith -Date: Mon Mar 8 16:21:51 2021 -0500 - - Merge branch 'raft-tdp-main' into spike/645/buildpacks - -commit 05576a0934969518336e907da80a69f2881b4920 -Author: Carl Smith -Date: Mon Mar 8 16:21:46 2021 -0500 - - Update docs/Architecture Decision Record/011-buildpacks.md - - Co-authored-by: Alex P. <63075587+ADPennington@users.noreply.github.com> - -commit 12cff248f1ef64bf97d994029da9c958713848b9 -Merge: b6dc3691c afa0b0e23 -Author: Carl Smith -Date: Mon Mar 8 16:05:10 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit c89c7025e7daa03f5cde5a32da07fd2107440b63 -Author: John Willis -Date: Mon Mar 8 15:50:00 2021 -0500 - - Refine response output - -commit afa0b0e23edbce320c4afa45dd129e2f9d341776 -Merge: 13a0c55d0 766fb3e33 -Author: Carl Smith -Date: Mon Mar 8 15:46:17 2021 -0500 - - Merge pull request #749 from raft-tech/revert-748-revert-623-epics/398/backend/431-4-7 - - Revert "Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint"" - -commit 766fb3e3379f2914da58e5e7ab0fe4c74b1edff2 -Author: Carl Smith -Date: Mon Mar 8 15:36:03 2021 -0500 - - Revert "Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint"" - -commit 13a0c55d0f3cb835199285124e9a79a7cdde61b4 -Merge: 199669601 500cb9783 -Author: Carl Smith -Date: Mon Mar 8 15:33:35 2021 -0500 - - Merge pull request #748 from raft-tech/revert-623-epics/398/backend/431-4-7 - - Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint" - -commit 105fbab70bbd86723acc765b8eff1690f8861f75 -Author: John Willis -Date: Mon Mar 8 15:26:09 2021 -0500 - - Add DOCKER_TAG variable declaration to prevent issues with malformed docker tags - -commit 500cb978317dd65cf3d1904c85613d3a5519ef3c -Author: Carl Smith -Date: Mon Mar 8 15:25:00 2021 -0500 - - Revert "Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint" - -commit 19966960114970871f6c5f2d27cc973362da0ed2 -Merge: 0b170bd7a 34d523534 -Author: Carl Smith -Date: Mon Mar 8 15:22:13 2021 -0500 - - Merge pull request #623 from raft-tech/epics/398/backend/431-4-7 - - Epics/398/backend/431-4 Add views, routes, and documentation for file upload meta data endpoint - -commit cf23a43d661d47ae7f02fbdd5766b159f3d5a836 -Author: John Willis -Date: Mon Mar 8 14:55:35 2021 -0500 - - Fix label name comparison in if directive - -commit 51efb051870e99ab559eaefb89b7f3955bab10ae -Author: John Willis -Date: Mon Mar 8 14:53:07 2021 -0500 - - Test: Print label name - -commit 34d5235345639eb8e7b2c559f43a4c0f528564ba -Merge: fc2829157 0b170bd7a -Author: Carl Smith -Date: Mon Mar 8 14:51:14 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit 505092cbd84729d70c915ce0f99ad6cb161b7729 -Merge: 5e9602307 0b170bd7a -Author: John Willis -Date: Mon Mar 8 14:49:04 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit bbae5b8350ccfc495d145aaa801962070391dab1 -Author: Carl Smith -Date: Mon Mar 8 14:17:39 2021 -0500 - - Update sprint-schedule.md - - Add dev sync meetings - -commit 7e51d1de211d342ab1a3d7a6fa468b204f1de094 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 8 13:03:25 2021 -0600 - - Update sprint-schedule.md - -commit 0b170bd7aae605815687f1ebca0770d307d9985d -Merge: 8c27b8bd4 af6d7102f -Author: Carl Smith -Date: Mon Mar 8 13:38:21 2021 -0500 - - Merge pull request #740 from raft-tech/kniz-raft-patch-1 - - Update our-workflow.md - -commit bdb34eef1da7c2f5ca16a93afa3f74472f2fe357 -Author: Carlton Smith -Date: Mon Mar 8 13:19:58 2021 -0500 - - add documentation - -commit af6d7102fb3b6559b5f34c370423061fe50f73d4 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 8 12:01:48 2021 -0600 - - Update our-workflow.md - -commit 62e0af44142fae36a184a1dd8477c7040c3a6382 -Author: Aaron Beavers -Date: Mon Mar 8 12:37:03 2021 -0500 - - Remove duplicated import name - -commit f037f957ecf22d46a7b7f7926ef339b3a5fb76ea -Merge: bb90a36ff 8c27b8bd4 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 8 11:36:23 2021 -0600 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 8c27b8bd463afdec841b8af696d6487556745fed -Merge: e7ccf270f a2fa3cfd9 -Author: Carl Smith -Date: Mon Mar 8 12:10:45 2021 -0500 - - Merge pull request #679 from raft-tech/documentation/access-control-ac-2(9) - - Create ac-2(9).md - -commit a2fa3cfd9f39a21ddf2388e5148d03614f1e5cd2 -Merge: 364952b0d e7ccf270f -Author: Carl Smith -Date: Mon Mar 8 11:53:20 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(9) - -commit bb90a36ff48e4bef150240700e6707cd3d35adfb -Merge: 5ffe73160 e7ccf270f -Author: Carl Smith -Date: Mon Mar 8 11:46:03 2021 -0500 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit 5ffe7316046a3adde167f7911348f6460ee22ca2 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 8 10:36:30 2021 -0600 - - Update our-workflow.md - -commit b6984e4731f3f302f66a094a686774112a6cbc1d -Merge: a9997d911 e7ccf270f -Author: Carl Smith -Date: Mon Mar 8 11:21:12 2021 -0500 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit 765eb746eddc52b56e655a78e24c80ec08329c1e -Merge: de931debb e7ccf270f -Author: Carl Smith -Date: Fri Mar 5 17:29:25 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/sc-04 - -commit e7ccf270fed60841085f93f0413154bd7365884f -Merge: d9a81e878 1a4233316 -Author: Carl Smith -Date: Fri Mar 5 17:27:03 2021 -0500 - - Merge pull request #676 from raft-tech/documentation/access-control-ac-2(7) - - Documentation/access control ac 2(7) - -commit 1a4233316ac3c294d40955590545d937a8ecb82e -Merge: 1f3c5709d d9a81e878 -Author: Carl Smith -Date: Fri Mar 5 17:16:23 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) - -commit d9a81e878f6dae4e05c119b43d943dcfa124a38e -Merge: 3eaea6fd6 4feac7fa3 -Author: Carl Smith -Date: Fri Mar 5 17:15:00 2021 -0500 - - Merge pull request #677 from raft-tech/documentation/access-control-ac-2(10) - - Create ac-2(10).md - -commit 4feac7fa3295ef0574ee93e4b0fe01292cad1b71 -Merge: 1c1b7814d 3eaea6fd6 -Author: Carl Smith -Date: Fri Mar 5 16:27:02 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(10) - -commit 3eaea6fd6a8e83c0ca6dd2c9ec22e0e61954979d -Merge: 8bea6ec71 20c312dd3 -Author: Carl Smith -Date: Fri Mar 5 16:23:45 2021 -0500 - - Merge pull request #675 from raft-tech/documentation/access-controls-ac-2(3) - - Documentation/access controls ac 2(3) - -commit cef45a8e033dc178dac94f4f8b12ff210ca899a1 -Merge: 7c806ea2b fc2829157 -Author: Aaron Beavers -Date: Fri Mar 5 16:21:32 2021 -0500 - - Merge branch 'epics/398/backend/431-4-7' into epics/398/backend/643/list-years - -commit 5e960230706bdc70d90918297123e48377b59973 -Author: John Willis -Date: Fri Mar 5 16:20:29 2021 -0500 - - Fix error in GH Action workflow yaml - -commit 5576a3feb5aab0e70c808a64de41b526ab9e965b -Merge: ae692aa7b 8bea6ec71 -Author: John Willis -Date: Fri Mar 5 16:17:09 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/devops/720 - -commit 20c312dd374821844ac580d25f733f0ff2c1618d -Merge: 479140af3 8bea6ec71 -Author: Carl Smith -Date: Fri Mar 5 16:12:43 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) - -commit fc2829157c6d4808461f9261e50f072b936d8ecf -Author: Aaron Beavers -Date: Fri Mar 5 15:41:15 2021 -0500 - - Add migration for years to use integers. - -commit 640bd21649cb7120f1a3356b0952b7bd36575d80 -Author: Aaron Beavers -Date: Mon Feb 8 18:05:15 2021 -0500 - - Revert "Use an integer for years" - - This reverts commit 1f4ee6f10ef12cd7062914c7ee1848cc0c75d9ed. - -commit ae692aa7b9261ff6b5372fbfad314789d9b96ac4 -Author: John Willis -Date: Fri Mar 5 15:29:30 2021 -0500 - - Add GitHub Action to trigger deploys on PR label assignment - -commit c35df8134a03214891e717fbbc7e2a4ab3683c3b -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 5 12:18:24 2021 -0600 - - Update our-workflow.md - -commit 1f3c5709d8bb9eead8a7a4e62252164006b1dd44 -Author: Carl Smith -Date: Fri Mar 5 13:03:39 2021 -0500 - - Update index.md - -commit b56e4e71a1361c93de8dfef69a8c9dda57d7337c -Author: Carl Smith -Date: Fri Mar 5 13:02:52 2021 -0500 - - Update index.md - -commit 6d00ba91dfd30a354077ddad9b0bcfa4aa69d85a -Merge: d3a912750 8bea6ec71 -Author: Carl Smith -Date: Fri Mar 5 13:00:24 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) - -commit 0ad172b61498675552d9f8c4a39623135040662e -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Mar 5 11:56:55 2021 -0600 - - Update our-workflow.md - -commit de931debb0405ce609b652fe708e8bad1abe75ef -Author: Carlton Smith -Date: Fri Mar 5 12:56:39 2021 -0500 - - add user information - -commit 66bde78ae82c31306e71d0e2f6854a0b2dfc611c -Author: Carlton Smith -Date: Fri Mar 5 12:40:11 2021 -0500 - - add sc-4 documentation - -commit ae78ac82d39f1ebc054fdb9bb51bceb8d5408a48 -Merge: 0fa39a619 8bea6ec71 -Author: Carl Smith -Date: Fri Mar 5 11:51:29 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit 8bea6ec713c15eddd8e3e6dbf014de7a921bfcf1 -Merge: 4d29de4a0 9dc6ff8ac -Author: Carl Smith -Date: Fri Mar 5 11:48:53 2021 -0500 - - Merge pull request #725 from raft-tech/bh-update-diagram - - Update boundary diagram - -commit 9dc6ff8ac791786066b632be98a302494a6d7e00 -Merge: 3ec21be18 4d29de4a0 -Author: Carl Smith -Date: Fri Mar 5 11:39:24 2021 -0500 - - Merge branch 'raft-tdp-main' into bh-update-diagram - -commit 0fa39a619f58ee555221e87d6c910db48c8d95e1 -Merge: c5786373a 4d29de4a0 -Author: Carl Smith -Date: Fri Mar 5 11:38:42 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit 1c1b7814d5664f99d08a71bb553dd0e59b3c6968 -Merge: 5ce2a8750 4d29de4a0 -Author: Carl Smith -Date: Fri Mar 5 11:36:02 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(10) - -commit 4d29de4a0301c331d3fa40b43e527801a7977d51 -Merge: 3b88d61b7 eb5a55df2 -Author: Carl Smith -Date: Fri Mar 5 10:26:21 2021 -0500 - - Merge pull request #581 from raft-tech/issues/backend/519 - - [issues/519/backend] Allow creating super users through admin panel - -commit c5786373ad38d67db14ac569961a93d48e25c02e -Author: Carl Smith -Date: Thu Mar 4 15:43:21 2021 -0500 - - Update test_api.py - -commit eb5a55df29a4231b9333a154870c9ceac87b487d -Author: Carl Smith -Date: Thu Mar 4 15:27:59 2021 -0500 - - Update test_admin.py - -commit 00b8c672582472c905604d68231a4921105b814f -Merge: 770bf39f3 3b88d61b7 -Author: Carl Smith -Date: Thu Mar 4 15:12:19 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/backend/519 - -commit 6fe851f4f0c267c0304235caeba2621af7a18de6 -Merge: e284d6b92 3b88d61b7 -Author: Carl Smith -Date: Thu Mar 4 15:02:38 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit e284d6b92e7123c2598d9e40a948310de475b9d4 -Author: Carl Smith -Date: Thu Mar 4 13:55:03 2021 -0500 - - Update report.md - -commit 92f57b994988bb152d856430dddee8e21794631b -Merge: e01bacb5c 0d646757b -Author: Aaron Beavers -Date: Thu Mar 4 13:09:08 2021 -0500 - - Merge remote-tracking branch 'origin/epics/398/backend/431-4-7' into epics/398/backend/431-4-7 - -commit e01bacb5c02fc269021c49fecb2fdb22dc0397c2 -Author: Aaron Beavers -Date: Thu Mar 4 13:02:35 2021 -0500 - - Update doc strings on tests - -commit 6547cfb484491441450b31ae0002a2e48282ca91 -Author: Aaron Beavers -Date: Thu Mar 4 13:02:19 2021 -0500 - - Remove unnecessary comment. - -commit 0d646757b77236cabf99c94f7ccbe8319c75f55d -Author: Aaron Beavers -Date: Thu Mar 4 12:49:48 2021 -0500 - - Update tdrs-backend/tdpservice/users/test/factories.py - - Co-authored-by: John Willis - -commit 330e91fe9d96d2e1a0ed96215f9d176944436192 -Merge: 1a442b198 3b88d61b7 -Author: John Willis -Date: Thu Mar 4 12:08:16 2021 -0500 - - Merge branch 'raft-tdp-main' into spike/645/buildpacks - -commit 3b88d61b77ae34a57e199da5b11610f0cf9d3b6b -Merge: af8a43829 bef1112be -Author: Carl Smith -Date: Thu Mar 4 11:54:15 2021 -0500 - - Merge pull request #736 from raft-tech/lfrohlich-patch-2 - - Move Sprint 3 Summary.md to Sprint-Review subfolder - -commit bef1112be1673d58d81c8a36e167d3b06a479909 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Mar 4 11:38:55 2021 -0500 - - Rename docs/Sprint 3 Summary.md to docs/Sprint-Review/Sprint 3 Summary.md - - Moved to Sprint-Review subfolder - -commit 71a0d566369d3a0d021e3b55d8624f26b1b64ac6 -Merge: 56e276fca af8a43829 -Author: John Willis -Date: Thu Mar 4 11:35:20 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b - -commit 56e276fca7e0f1811ca724029ec28d1d99f90ead -Author: John Willis -Date: Thu Mar 4 11:33:32 2021 -0500 - - Update react-scripts to 4.0.3 - -commit 1a442b19803c587b5762ca4648588d684705074d -Author: Carl Smith -Date: Thu Mar 4 11:21:18 2021 -0500 - - Update 011-buildpacks.md - -commit a91079f78727cb495390508383149438270bd3c9 -Author: Carl Smith -Date: Thu Mar 4 11:17:49 2021 -0500 - - Update 011-buildpacks.md - -commit 9d5afdee460d5423549ea20cc0e8bd75920acf13 -Author: Carl Smith -Date: Thu Mar 4 11:03:18 2021 -0500 - - Update 011-buildpacks.md - -commit 8c79bfeb13383731edfa55bfa0e80f5446a76b31 -Author: Carl Smith -Date: Thu Mar 4 11:02:13 2021 -0500 - - Update docs/Architecture Decision Record/011-buildpacks.md - - Co-authored-by: John Willis - -commit ca8ef65485f43937d3085ca7d0cfc29b324e8a87 -Author: Carl Smith -Date: Thu Mar 4 11:01:52 2021 -0500 - - Update docs/Architecture Decision Record/011-buildpacks.md - - Co-authored-by: John Willis - -commit 083fb2d6199756c04648eb1ccd669a51419789e2 -Author: Carl Smith -Date: Thu Mar 4 11:00:58 2021 -0500 - - Update docs/Architecture Decision Record/011-buildpacks.md - - Co-authored-by: John Willis - -commit 479140af365097dba76e3b61d8abe216cf509348 -Merge: 12a98b5c9 af8a43829 -Author: Carl Smith -Date: Thu Mar 4 10:41:01 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) - -commit 94684b9a7f2c4ae2281ccfcf6dd605d9ddb253d2 -Merge: 4a8ad8904 af8a43829 -Author: Carl Smith -Date: Thu Mar 4 10:26:22 2021 -0500 - - Merge branch 'raft-tdp-main' into spike/645/buildpacks - -commit 4a8ad890415897b2860b8905b286c5957aa4d7d1 -Author: Carl Smith -Date: Thu Mar 4 10:23:55 2021 -0500 - - Update 011-buildpacks.md - -commit d046f8b7b90a50bfb07e0ed8706398fd30f75919 -Author: Carl Smith -Date: Thu Mar 4 10:21:09 2021 -0500 - - Update 011-buildpacks.md - -commit d3a912750139c7f65e261b95fd2aaa507f599214 -Merge: 819e2b930 af8a43829 -Author: Carl Smith -Date: Wed Mar 3 17:27:32 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) - -commit b21fb94f6afdd56f93fbd94bbcd8f34b5637c0a0 -Merge: 55a72bfe3 af8a43829 -Author: Carl Smith -Date: Wed Mar 3 13:58:40 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit af8a4382954c70ebf1fc5f1b5c81592afd5da430 -Merge: 2a3bfc67d ce8591b4c -Author: Carl Smith -Date: Wed Mar 3 13:35:07 2021 -0500 - - Merge pull request #733 from raft-tech/revert-731-revert-701-raft-staging - - Revert "Revert "673: Utilize distinct Dockerfiles for deployment environments"" - -commit 3ec21be181ca4b2a1ff313d5083b7ad5f9009dfd -Merge: 4a08ee149 2a3bfc67d -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Mar 3 12:55:18 2021 -0500 - - Merge branch 'raft-tdp-main' into bh-update-diagram - -commit ce8591b4cbc723bc365dbac141725961eba238d4 -Author: Carl Smith -Date: Wed Mar 3 12:48:50 2021 -0500 - - Revert "Revert "673: Utilize distinct Dockerfiles for deployment environments"" - -commit 2a3bfc67d764dd613a95d70462c0d4a4f1e46b29 -Merge: 13b628dc2 670c0ce54 -Author: Carl Smith -Date: Wed Mar 3 12:42:06 2021 -0500 - - Merge pull request #731 from raft-tech/revert-701-raft-staging - - Revert "673: Utilize distinct Dockerfiles for deployment environments" - -commit 670c0ce54d491d3271f8f83384b55c2a64ef4df2 -Author: Carl Smith -Date: Wed Mar 3 12:32:26 2021 -0500 - - Revert "673: Utilize distinct Dockerfiles for deployment environments" - -commit a9997d911f114625e2bdc1f740b420fecf05e53a -Merge: 52cab6072 13b628dc2 -Author: Jorge Gonzalez -Date: Wed Mar 3 12:27:00 2021 -0500 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit 55a72bfe361660dc2d26ea19c98d9e3e4c44bdf5 -Merge: 49d9d5db5 13b628dc2 -Author: Carl Smith -Date: Wed Mar 3 11:50:39 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit 776d24935e89c9e30ed23ae7edb82025352bec7f -Merge: 238a97ab9 13b628dc2 -Author: Carl Smith -Date: Wed Mar 3 11:50:08 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b - -commit 13b628dc29fff06acc467920e607e3df65b39a3d -Merge: 4b7c570ae 6c2c2ab9d -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Mar 3 11:45:25 2021 -0500 - - Merge pull request #701 from raft-tech/raft-staging - - 673: Utilize distinct Dockerfiles for deployment environments - -commit 819e2b93031e7d4ec591826c6cfd6f69b460379e -Author: Carl Smith -Date: Wed Mar 3 11:37:42 2021 -0500 - - Rename docs/Security-Compliance/Security-Controls/index.md to docs/Security-Compliance/Security-Controls/ac-2-7/index.md - -commit 932dca9b92c07a38a1b9a7df67707eef1f56278d -Merge: 5afa6eec6 4b7c570ae -Author: Carl Smith -Date: Wed Mar 3 11:37:00 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) - -commit 770bf39f33349d82bba2945249d18e3cae7dd8e5 -Merge: 5187fd441 4b7c570ae -Author: Carl Smith -Date: Wed Mar 3 10:59:11 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/backend/519 - -commit 52cab6072c94525fcd7563670dde397cb830cd93 -Merge: c562ad2e7 4b7c570ae -Author: Jorge Gonzalez -Date: Wed Mar 3 10:43:32 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin - -commit f32d18770c98c35316d0e4523ff6121514bcd30d -Merge: 5126834c3 4b7c570ae -Author: John Willis -Date: Tue Mar 2 17:24:14 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit 6c2c2ab9db2626a14876478cd80f8269fa9f2ac4 -Merge: bf8dd84cc 4b7c570ae -Author: John Willis -Date: Tue Mar 2 17:19:33 2021 -0500 - - Merge branch 'raft-tdp-main' into raft-staging - -commit 238a97ab9302795b702d2da9c21c3da4feec38e0 -Merge: dae3b4789 4b7c570ae -Author: John Willis -Date: Tue Mar 2 16:39:01 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-6991ef0bd14a41da6482a82a84d7483b - -commit 4b7c570ae35c0f657894534dd2fe032ef0d47dcc -Merge: 6b1f280cc 0fb446499 -Author: Carl Smith -Date: Tue Mar 2 16:26:52 2021 -0500 - - Merge pull request #727 from raft-tech/kniz-raft-patch-1 - - Create sprint-15-summary.md - -commit 0fb446499d5e999b40cf56cd8861dac5c540672a -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Mar 2 14:53:16 2021 -0600 - - Create sprint-15-summary.md - -commit 5126834c3987d4860b76374c2749d2b31fa52aa4 -Author: John Willis -Date: Tue Mar 2 14:02:19 2021 -0500 - - Remove broken ToS link - -commit ae8b81900d6e6d7deefb021b69c9ca2a5d64c2c3 -Author: Carl Smith -Date: Tue Mar 2 13:58:01 2021 -0500 - - Update urls.py - - update todo - -commit 12a98b5c9521c4cc9cbe3e48d790b211db04d2c5 -Merge: 0c748244e 6b1f280cc -Author: Carl Smith -Date: Tue Mar 2 12:42:07 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) - -commit 0c748244efabce1aec8a6598f0b241982d639ba1 -Author: Carl Smith -Date: Tue Mar 2 12:41:39 2021 -0500 - - Update index.md - - add screenshot - -commit d82fbbc93a09fba2c147e55a3eb67ff0ee3a485e -Merge: 9ece7e2d2 0b6a5f892 -Author: Carlton Smith -Date: Tue Mar 2 12:40:12 2021 -0500 - - Merge branch 'documentation/access-controls-ac-2(3)' of github.com:raft-tech/TANF-app into documentation/access-controls-ac-2(3) - -commit 9ece7e2d2a8aad3b6a0016a843c17cbc92070632 -Author: Carlton Smith -Date: Tue Mar 2 12:40:01 2021 -0500 - - add screenshot - -commit 5187fd44192c2b1d61c4d5051c0d9191d55c326c -Merge: e1d0bc6c3 0425488a7 -Author: Carlton Smith -Date: Tue Mar 2 12:38:40 2021 -0500 - - Merge branch 'issues/backend/519' of github.com:raft-tech/TANF-app into issues/backend/519 - -commit e1d0bc6c36f7f966376bfd1cb7c0e9da7c777ccf -Author: Carlton Smith -Date: Tue Mar 2 12:38:18 2021 -0500 - - throw error - -commit 0b6a5f892aafc6f689b0c8de3faa1336d14226fb -Author: Carl Smith -Date: Tue Mar 2 12:08:36 2021 -0500 - - Include Django Admin - -commit b458e46942071476a0ccf05ec98648dc2f7116c8 -Author: Carl Smith -Date: Tue Mar 2 11:54:49 2021 -0500 - - Update index.md - - keeping OCIO language in the Access Control portion - Adding TDP requirements for 180 days - -commit 4a08ee149adf694a80d3211175e0760d869c6b83 -Author: Brian Hurst -Date: Tue Mar 2 11:49:29 2021 -0500 - - Update boundary diagram - -commit c562ad2e7af700e01ee1467b75c92ad1c136589a -Merge: afede7f0d 6b1f280cc -Author: Jorge Gonzalez -Date: Tue Mar 2 11:03:15 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin - -commit 0425488a75db816976ed94c26216856cbc570cfd -Merge: 7e5aec428 6b1f280cc -Author: Carl Smith -Date: Tue Mar 2 09:37:23 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/backend/519 - -commit a763ffac50a259188d2cc18e9b3bd1cf00dc1089 -Merge: 06c6963f7 6b1f280cc -Author: John Willis -Date: Mon Mar 1 17:11:38 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit bf8dd84cc46987c2bbde54343b55b82ac123b926 -Merge: 08c798277 6b1f280cc -Author: John Willis -Date: Mon Mar 1 17:11:07 2021 -0500 - - Merge branch 'raft-tdp-main' into raft-staging - -commit 49d9d5db56a0f03c0e143387e439eb7696984352 -Merge: 45f53b519 6b1f280cc -Author: Aaron Beavers -Date: Mon Mar 1 16:46:16 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 - -commit 7c806ea2b1e85b20d507d91c0baa6e0c65e1414d -Merge: a17785fa1 45f53b519 -Author: Aaron Beavers -Date: Mon Mar 1 16:16:32 2021 -0500 - - Merge branch 'epics/398/backend/431-4-7' into epics/398/backend/643/list-years - -commit 45f53b51936a34e8b8b50617df7e2db3050238b7 -Author: Aaron Beavers -Date: Mon Mar 1 16:14:07 2021 -0500 - - remove conflict chunks - -commit 7e5aec4280ffef80330c023c27c9666be567c2b5 -Author: Carlton Smith -Date: Mon Mar 1 15:42:57 2021 -0500 - - add assertion - -commit 6b1f280ccd35c10f2fac639068a90c767c3d6d36 -Merge: 688a5e69a 808476322 -Author: Carl Smith -Date: Mon Mar 1 15:38:49 2021 -0500 - - Merge pull request #711 from raft-tech/documentation/move-folders - - move folders - -commit a17785fa15fc522aaada692038839f4d238e042b -Author: Aaron Beavers -Date: Mon Mar 1 15:25:50 2021 -0500 - - changes (re build git branch) - -commit 80847632234c4a5c350681dcdd90aa809ac503c9 -Merge: 5442441fc 688a5e69a -Author: Carl Smith -Date: Mon Mar 1 15:25:49 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/move-folders - -commit 3f1f3d13494a72d0bb704d232406156a0653af31 -Author: Aaron Beavers -Date: Mon Mar 1 15:25:23 2021 -0500 - - Add new routes - -commit e7fe9c3c1e80a81dc71171713ff48eaa74495ed9 -Author: Aaron Beavers -Date: Mon Mar 1 15:22:00 2021 -0500 - - Add integration tests - -commit 688a5e69a0573ba3f0447df442d2341d5d87a1e5 -Merge: c0987de52 b220efd56 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 1 14:12:32 2021 -0600 - - Merge pull request #713 from raft-tech/kniz-raft-patch-1 - - Update definition-of-done.md - -commit 74c1367f33c42817eb859f25c21c16f0e31c0c8c -Author: Carlton Smith -Date: Mon Mar 1 15:08:48 2021 -0500 - - add to docker-compose - -commit 688c8d26678eb682c390e7dd074f65c7e1375841 -Merge: cca161448 c0987de52 -Author: Aaron Beavers -Date: Mon Mar 1 14:45:01 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 - -commit c2aab5bc6ce453a1dd1e3a009abec8f87bbfa36d -Author: Carlton Smith -Date: Mon Mar 1 14:17:48 2021 -0500 - - remove the default - -commit b220efd561676073ac66799cd121a81e26c88e2c -Merge: cff81ef7f c0987de52 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 1 13:07:47 2021 -0600 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit c0987de5283e7ed73bebcf28ffb646ae2931e136 -Merge: 8461da721 80618ae4f -Author: Carl Smith -Date: Mon Mar 1 14:05:30 2021 -0500 - - Merge pull request #715 from raft-tech/kniz-raft-patch-2 - - Update Team-Composition.md - -commit cff81ef7f72dc7a7cfa176f5f4c6e711dc5393f5 -Merge: 385574d1d 8461da721 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Mar 1 13:01:24 2021 -0600 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-1 - -commit dacd484a8befb23fd2f66b784e167d262f73823c -Author: Carlton Smith -Date: Mon Mar 1 13:45:56 2021 -0500 - - add test - -commit 6bc89490881e93d880df3dcfcd8cc0743ec1939a -Author: Carlton Smith -Date: Mon Mar 1 13:23:55 2021 -0500 - - add var to docker - -commit cca1614483da8ea9cf3d934bdab11f5eb11af93f -Merge: 5d782d17f 8461da721 -Author: Aaron Beavers -Date: Mon Mar 1 13:22:59 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit 5442441fc60869826d844ab2012a015aba9c3251 -Merge: bfc1adc96 8461da721 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Mar 1 13:22:31 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/move-folders - -commit 80618ae4ffd2214683d16a93f386f53524c4efcc -Merge: eef266235 8461da721 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Mar 1 13:20:52 2021 -0500 - - Merge branch 'raft-tdp-main' into kniz-raft-patch-2 - -commit d0e4f7c507a68bb62f9ae034d0809da9d821d445 -Author: Carlton Smith -Date: Mon Mar 1 12:57:09 2021 -0500 - - add reverse - -commit 706159aee212a461c07b8860239cba146b2f60b5 -Author: Carlton Smith -Date: Mon Mar 1 12:20:08 2021 -0500 - - change logging statement - -commit eeb3a9e6eb2b4067bb3704905fbccf01413c8c1c -Author: Carlton Smith -Date: Mon Mar 1 11:53:24 2021 -0500 - - fix error - -commit c8f1ebd754e1191ec46212046a6a876f29743823 -Author: Carlton Smith -Date: Mon Mar 1 11:11:41 2021 -0500 - - add comment - -commit afede7f0dcf417a916281962789ee0197464499f -Merge: c27ac96da 8461da721 -Author: Jorge Gonzalez -Date: Mon Mar 1 10:55:08 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin - -commit 65530883d5e556cea8bd0e916f6614f288668f1e -Author: Carlton Smith -Date: Mon Mar 1 10:44:53 2021 -0500 - - update migration - -commit 915ba52e5c083d96ca9900624b4f642a5a703a5f -Merge: 344de901b 8461da721 -Author: Carl Smith -Date: Mon Mar 1 09:43:40 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/backend/519 - -commit d4a851d0c1c31ea130b0bc406de3f34481590e81 -Author: Aaron Beavers -Date: Mon Mar 1 09:38:35 2021 -0500 - - Renam ADR for build packs - -commit 08c798277445ecbf41f4fd29acccd4940c3da0c6 -Author: John Willis -Date: Fri Feb 26 17:15:32 2021 -0500 - - Update deployment flow to match raft-review -> development, raft-tdp-main -> vendor staging - -commit d48a8a83db53b77e032899cc0f3a54af62e0eb36 -Merge: dda963c33 8461da721 -Author: John Willis -Date: Fri Feb 26 17:08:18 2021 -0500 - - Merge branch 'raft-tdp-main' into raft-staging - -commit 8461da721d97d50105437d63a48fd48419d96f45 -Merge: 29177c456 4f3eb6171 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Fri Feb 26 16:41:26 2021 -0500 - - Merge pull request #537 from raft-tech/backend/517/admin-mfa - - Backend/517/admin mfa - -commit dae3b47893fbe60a988c12ebc981bc6e6f376dce -Author: snyk-bot -Date: Fri Feb 26 21:36:41 2021 +0000 - - fix: upgrade react-scripts from 4.0.1 to 4.0.2 - - Snyk has created this PR to upgrade react-scripts from 4.0.1 to 4.0.2. - - See this package in npm: - https://www.npmjs.com/package/react-scripts - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit 97279547a6668c1f65c6608238d8bbafd51263db -Author: Aaron Beavers -Date: Fri Feb 26 13:19:16 2021 -0500 - - Add rough estimate and tasks - -commit 10a309ee21bead1c158f11867a201854152f8401 -Author: Aaron Beavers -Date: Fri Feb 26 12:40:21 2021 -0500 - - Add initial doc for buildpack ADR - -commit 4f3eb61711ecdbc28ff930c644efdd148855095a -Author: Carlton Smith -Date: Fri Feb 26 11:24:58 2021 -0500 - - update file - -commit 9eeeeb4ba137e27dd820ec85bc43b465f62ec242 -Author: Carlton Smith -Date: Fri Feb 26 11:02:35 2021 -0500 - - remove from branch - -commit 3820d473af72f6fdfc8dae78ec126319d78f91e1 -Merge: 7bc1343a9 29177c456 -Author: Carlton Smith -Date: Fri Feb 26 10:58:43 2021 -0500 - - resolve conflicts - -commit c27ac96dabdd4e8fe217b05cd951af898bb6d901 -Merge: 4c6f3d5c6 4bb5e7475 -Author: Jorge Gonzalez -Date: Fri Feb 26 10:35:48 2021 -0500 - - Merge remote-tracking branch 'origin/front/639/hide-admin' into front/639/hide-admin - - # Conflicts: - # tdrs-frontend/.env - -commit 4c6f3d5c61805526cfa327c94cc5bdfff69a4499 -Author: Jorge Gonzalez -Date: Fri Feb 26 10:34:10 2021 -0500 - - commit .env - -commit 4bb5e7475f9c169daef4cf3072cd48e5a8f6ed03 -Merge: bc40cea9c 29177c456 -Author: John Willis -Date: Fri Feb 26 10:22:01 2021 -0500 - - Merge branch 'raft-tdp-main' into front/639/hide-admin - -commit 06c6963f702e84258aa44043c60f3fc5af93b867 -Merge: f98cafcc4 29177c456 -Author: John Willis -Date: Fri Feb 26 09:53:27 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit eef266235b3cb9b25e7ae9fcf8048697aeeeac57 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Feb 26 08:42:56 2021 -0600 - - Update Team-Composition.md - -commit 29177c456272efd8ca581e61ca11d6530e9783c6 -Merge: 9c9b184bc 50db6e106 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Thu Feb 25 17:15:23 2021 -0500 - - Merge pull request #660 from raft-tech/frontend/issue-510-dotenv - - Issue 510: Frontend local environment fixes/documentation - -commit bc40cea9c8736bd4207efb35e5b5ec4911ac8c27 -Author: Jorge Gonzalez -Date: Thu Feb 25 16:06:32 2021 -0500 - - add hostname env var and fix admin tab link - -commit 3c21eb4263378a3e76c072527b28f2d317137e79 -Author: Jorge Gonzalez -Date: Thu Feb 25 15:49:23 2021 -0500 - - fix admin tab URL - -commit dda963c3350bf74f0a0be1b718044dbb4cb67cf0 -Author: John Willis -Date: Thu Feb 25 15:33:32 2021 -0500 - - Address PR feedback - -commit f98cafcc4ca564b8a52464b86a32aa61eb4e67d3 -Merge: 6afe4a1c8 9c9b184bc -Author: John Willis -Date: Thu Feb 25 15:28:45 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit 58ae2f31aad3a00da1a2f6ed73cc3194f6bc9157 -Merge: 3756ce30b 9c9b184bc -Author: John Willis -Date: Thu Feb 25 15:09:29 2021 -0500 - - Merge branch 'raft-tdp-main' into raft-staging - -commit 46af734a66740316f373d32bf453b6ed8cbb9998 -Author: Jorge Gonzalez -Date: Thu Feb 25 15:04:00 2021 -0500 - - Update tdrs-frontend/src/components/Header/Header.test.js - - Co-authored-by: John Willis - -commit 67595668be3d10a85cbcdd962fd042c3c9ee362c -Author: Jorge Gonzalez -Date: Thu Feb 25 14:57:20 2021 -0500 - - revert gitignore change - -commit 0ea8b715ce8a75a07f49197cf61fb8d2f0ad8dd3 -Merge: fcebcf3f7 bfbee5ccf -Author: Jorge Gonzalez -Date: Thu Feb 25 14:44:00 2021 -0500 - - Merge branch 'front/639/hide-admin-safe' into front/639/hide-admin - -commit e7c1a8f870426773bc70df786f7de0082f5366bb -Merge: b894402e6 9c9b184bc -Author: Carl Smith -Date: Thu Feb 25 14:39:04 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - -commit f581279069c642b54c58537d55ff2f1a046c3e8c -Merge: 104893749 9c9b184bc -Author: Carl Smith -Date: Thu Feb 25 14:36:09 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b - -commit fcebcf3f7d678dc36384bda24968cf06cb4cfecd -Merge: 9c9b184bc 3fec09e1e -Author: Jorge Gonzalez -Date: Thu Feb 25 14:29:27 2021 -0500 - - Merge branch 'feat/639-hide-admin' into front/639/hide-admin - -commit 50db6e106d7ff36f4999dc2e40fca809729389aa -Merge: 2ebe6d288 9c9b184bc -Author: Carl Smith -Date: Thu Feb 25 14:00:12 2021 -0500 - - Merge branch 'raft-tdp-main' into frontend/issue-510-dotenv - -commit 344de901b7b59b6abbdb0ea3436c7116779bfdc3 -Author: Carl Smith -Date: Thu Feb 25 13:39:47 2021 -0500 - - Update and rename 009-assign-superuser.md to 010-assign-superuser.md - - update ADR number - -commit 7bc1343a97cdf6a65274598128c2e0298cc3860e -Merge: f271c233e 9c9b184bc -Author: Carl Smith -Date: Thu Feb 25 13:36:22 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 2e85953ced96fb2e44b6b776b10e31205ff53f7d -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Feb 25 12:34:53 2021 -0600 - - Update Team-Composition.md - -commit f2caf89a2e2db397dded886df85667838045e653 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Feb 25 12:32:35 2021 -0600 - - Update Team-Composition.md - -commit 9c9b184bc38b64552190d69649b74dec330b8f9f -Merge: 084d4f5a9 a4860bdea -Author: Carl Smith -Date: Thu Feb 25 13:10:57 2021 -0500 - - Merge pull request #692 from raft-tech/documentation/adr-9-git-workflow - - ADR #9 Git Workflow - First PR using this process! - -commit a4860bdeadea6f4ebfdc8d3888c57a93b6354b90 -Merge: 3b3bc06f9 084d4f5a9 -Author: Carl Smith -Date: Thu Feb 25 13:01:21 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/adr-9-git-workflow - -commit 084d4f5a94cbddbfd6e5f948f970e6e3b91c694c -Merge: 0018ce17d bfb0ad696 -Author: Carl Smith -Date: Thu Feb 25 13:00:04 2021 -0500 - - Merge pull request #714 from raft-tech/final-rebase-with-hhs - - Final rebase with hhs - -commit 385574d1d4ef9c609a29aa1e858a166fc786a072 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Feb 25 11:39:07 2021 -0600 - - Update definition-of-done.md - -commit 666dad53cc53b92eb28aa8b1d51e463a3ac243fd -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Feb 25 11:37:01 2021 -0600 - - Update definition-of-done.md - -commit d695199819045d04a436525412488bf5efcaeb4c -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Feb 25 11:35:25 2021 -0600 - - Update definition-of-done.md - -commit 3b3bc06f9f927c7f1941ae55fcf9e55977d9333a -Author: Carl Smith -Date: Thu Feb 25 12:16:02 2021 -0500 - - Update docs/How-We-Work/Branching-Strategy.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 20c9db30ab40793c4ffb73a876172433fe8f34ac -Author: Carl Smith -Date: Thu Feb 25 12:07:49 2021 -0500 - - Update docs/Architecture Decision Record/009-git-workflow.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 22528dd6f220fea08e2425ec11c7e7cf08e28b2f -Author: Carl Smith -Date: Thu Feb 25 12:06:24 2021 -0500 - - Update 009-git-workflow.md - - add Thomas and fix spelling typo - -commit 7b735cc3f45194dcebc7c914fe464be0d3dcbde2 -Merge: 417613883 0018ce17d -Author: Carl Smith -Date: Thu Feb 25 11:53:34 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/adr-9-git-workflow - -commit bfc1adc96ea18a05d7500c6a6e50eb9f81eba341 -Author: Carlton Smith -Date: Thu Feb 25 11:40:14 2021 -0500 - - move folders - -commit 6af7d8b6254ab55262e8da98de55b4245eeb9aee -Author: Carlton Smith -Date: Thu Feb 25 11:31:25 2021 -0500 - - move folder - -commit ca0af2547e2fd9c55effb180d545217ecf087f06 -Merge: 796b810a1 0018ce17d -Author: Carl Smith -Date: Thu Feb 25 11:28:43 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2(3) - -commit 5afa6eec6539903dc6b0f31cb9862b7659224394 -Author: Carlton Smith -Date: Thu Feb 25 11:28:03 2021 -0500 - - move folder - -commit 7521853175070d16663e20917c0594cf17f7fdd1 -Merge: 081e9d056 0018ce17d -Author: Carl Smith -Date: Thu Feb 25 11:26:50 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(7) - -commit 5ce2a875058b4ce9caf9332cc209da8ad7178c9e -Author: Carlton Smith -Date: Thu Feb 25 11:25:06 2021 -0500 - - move folder - -commit 18f293d18019ec093ef0b7a8bee8ea0d360ca764 -Merge: 065538580 0018ce17d -Author: Carl Smith -Date: Thu Feb 25 11:22:26 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(10) - -commit b6dc3691c74623acbc0c03be5c7dc2169c174ad0 -Merge: 0972c9c14 0018ce17d -Author: Carl Smith -Date: Thu Feb 25 11:21:02 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit 0972c9c146f68ef40a8d7f3229991b2e493b2b7a -Author: Carlton Smith -Date: Thu Feb 25 11:20:44 2021 -0500 - - move to folder - -commit 364952b0d50483a0b2b93883e441a494b24ce7fd -Author: Carlton Smith -Date: Thu Feb 25 11:17:15 2021 -0500 - - move to correct folder - -commit 820d34d93e516c14a7f999eb81c687c9fba7fcd9 -Merge: ccd0f6312 0018ce17d -Author: Carl Smith -Date: Thu Feb 25 11:13:06 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-control-ac-2(9) - -commit 2ebe6d288973ed9b7b61e6acf8f29fd6f81880fc -Author: John Willis -Date: Wed Feb 24 17:05:36 2021 -0500 - - Update tdrs-frontend/README.md - - Co-authored-by: Jorge Gonzalez - -commit 4176138830840369b3cb180f816bac589f4d8d59 -Author: Carl Smith -Date: Wed Feb 24 17:03:41 2021 -0500 - - Update 009-git-workflow.md - - Change "Pending" to "Approved" based on @ADPennington 's note on teams indicating we did want to go through with this method. Of course, final approval will be the approval of this pull request. - -commit 4ca3c3857fa9904a3bc3df61f3f32a2b8fb7b3e1 -Merge: 92e3034bb 0018ce17d -Author: John Willis -Date: Wed Feb 24 16:49:30 2021 -0500 - - Merge branch 'raft-tdp-main' into frontend/issue-510-dotenv - -commit 5d782d17f2805679b7d8f45d66654847c32454f9 -Merge: f620d7bea 0018ce17d -Author: Carl Smith -Date: Wed Feb 24 16:48:30 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-4-7 - -commit 3756ce30bddec0b21f0fce4b1702784561e2d875 -Merge: cba726bf2 0018ce17d -Author: John Willis -Date: Wed Feb 24 16:01:27 2021 -0500 - - Merge branch 'raft-tdp-main' into raft-staging - -commit cba726bf2f0594b91270af098275c651247b324f -Author: John Willis -Date: Wed Feb 24 15:44:55 2021 -0500 - - Doc changes as discussed in closed PR https://github.com/HHS/TANF-app/pull/171 - -commit b894402e6d05b38c470aaf70468da6c5cf00e8da -Merge: 0cfb98339 5d869cd6d -Author: Carlton Smith -Date: Wed Feb 24 15:42:29 2021 -0500 - - Merge branch 'snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b' of github.com:raft-tech/TANF-app into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - -commit 0cfb98339ad3a8ce7a8d35e91d430db4424f3117 -Merge: 09670a854 bfb0ad696 -Author: Carlton Smith -Date: Wed Feb 24 15:41:40 2021 -0500 - - Merge branch 'main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - -commit 5d869cd6d36d09f9ded783e8591468764298652a -Merge: 09670a854 0018ce17d -Author: Carl Smith -Date: Wed Feb 24 15:41:01 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - -commit f271c233ea66998371cc7fe4071b5d22adc6ccae -Merge: 4983c1a46 a1caee5d8 -Author: Carlton Smith -Date: Wed Feb 24 15:33:41 2021 -0500 - - Merge branch 'backend/517/admin-mfa' of github.com:raft-tech/TANF-app into backend/517/admin-mfa - -commit 4983c1a4656645bdf187a996ab34211b4e6d9879 -Merge: ce9ccc0dc bfb0ad696 -Author: Carlton Smith -Date: Wed Feb 24 15:33:08 2021 -0500 - - Merge branch 'main' into backend/517/admin-mfa - -commit a1caee5d8b04c69468f9d9be6f9dc453702dd4f3 -Merge: a6a226b4d 0018ce17d -Author: Carl Smith -Date: Wed Feb 24 15:30:00 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 5256ed4c0e22d35cac576234e4d57c866b68f023 -Author: Carl Smith -Date: Wed Feb 24 15:25:31 2021 -0500 - - Update 009-git-workflow.md - - add notes section - -commit 191855897a4d2047b29b1c45992d945455cb3344 -Author: Carlton Smith -Date: Wed Feb 24 15:05:53 2021 -0500 - - update branching strategy docs - -commit 91b3f907cd32024ab5e5496d56db6f47fff5e100 -Merge: 4dbc1c38a e431e0694 -Author: Carlton Smith -Date: Wed Feb 24 14:54:12 2021 -0500 - - Merge branch 'documentation/adr-9-git-workflow' of github.com:raft-tech/TANF-app into documentation/adr-9-git-workflow - -commit 4dbc1c38a43952f0973e4dcc91c543c609a17804 -Author: Carlton Smith -Date: Wed Feb 24 14:53:31 2021 -0500 - - update image - -commit e431e0694bd6689fc70a259d11febbe3a45e31df -Author: Carl Smith -Date: Wed Feb 24 14:47:03 2021 -0500 - - Update 009-git-workflow.md - - requested revisions - -commit f620d7bea003fd2282951757fb1f2c64f3a584fe -Author: Aaron Beavers -Date: Wed Feb 24 14:05:50 2021 -0500 - - Remove lint - -commit bfb0ad696fe3161d3d2fa16139748ac55d89a13c -Merge: 9ef8afd05 f4b390b81 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Wed Feb 24 12:49:50 2021 -0500 - - Merge pull request #198 from raft-tech/catchup-hhs-raft - - Catchup hhs raft - -commit 35f5f03f11018ccb26cf3f6e619561a8c9aa6b7b -Author: Aaron Beavers -Date: Wed Feb 24 12:22:21 2021 -0500 - - Add comment explaining STT User Factory - -commit f4b390b814af7f7ccd8cd0f437078c5a3fe9bb82 -Merge: 9ef8afd05 0018ce17d -Author: Carlton Smith -Date: Wed Feb 24 12:19:38 2021 -0500 - - Merge branch 'raft-tdp-main' into main - -commit 0018ce17db522ac1b4fd812376160e6d175b9625 -Merge: 4d0f37d67 a5dd4631c -Author: Carl Smith -Date: Wed Feb 24 11:31:44 2021 -0500 - - Merge pull request #697 from raft-tech/shubhi-raft-patch-9 - - update verbiage for clarity - -commit a5dd4631c52a552d2f6fbebe0b1cc9acb31c7e6e -Merge: de195e36c 4d0f37d67 -Author: Carl Smith -Date: Wed Feb 24 11:13:14 2021 -0500 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 - -commit 4d0f37d67df8a750ff7614c8562174991ad3b0ff -Merge: 92f156cd3 a7d7be93c -Author: Carl Smith -Date: Wed Feb 24 11:13:03 2021 -0500 - - Merge pull request #617 from raft-tech/documentation/access-controls-ac-06 - - Documentation/access controls ac 06 - -commit de195e36cc5f3bc9aa0f83c97335ca8068461e31 -Merge: 92634f7b4 92f156cd3 -Author: Carl Smith -Date: Wed Feb 24 11:01:32 2021 -0500 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 - -commit a7d7be93c8b690f5f481b28bc9d78f08f4f0f720 -Merge: 16148ed99 92f156cd3 -Author: Carl Smith -Date: Wed Feb 24 11:01:23 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-06 - -commit 92f156cd386bcf4e2481e7b944d812765cf9b540 -Merge: 3d55734ff f4029bca9 -Author: Carl Smith -Date: Wed Feb 24 11:00:55 2021 -0500 - - Merge pull request #607 from raft-tech/documentation/risk-assessment-ra-5 - - Documentation/risk assessment ra 5 - -commit 92634f7b457a878a2adcf2cded1f5f0f33c1e01c -Merge: 6c18cbdac 3d55734ff -Author: Carl Smith -Date: Wed Feb 24 11:00:45 2021 -0500 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 - -commit f4029bca921a6d3f6b7f528ff2f2638fc29f7ad4 -Merge: 9606e3064 3d55734ff -Author: Carl Smith -Date: Wed Feb 24 10:29:44 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/risk-assessment-ra-5 - -commit 16148ed99fc03512cb944f991ded7f450a20fee9 -Merge: 5ea591e38 3d55734ff -Author: Carl Smith -Date: Wed Feb 24 10:29:26 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-06 - -commit 3d55734ff246a956088efe5955b26e4d4a8a9adb -Merge: 75a674bc5 a1999a2ae -Author: Carl Smith -Date: Wed Feb 24 10:28:50 2021 -0500 - - Merge pull request #622 from raft-tech/documentation/access-controls-ac-2 - - Documentation/access controls ac 2 - -commit a1999a2ae219cc3d490a62a93a9015b4d0ffee90 -Merge: 33473e36f 75a674bc5 -Author: Carl Smith -Date: Wed Feb 24 10:02:21 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 - -commit 9ef8afd05763f30d4c4d3d8b0ac13508f35d9409 -Merge: 7a272cb33 33473e36f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 24 09:55:58 2021 -0500 - - Merge pull request #181 from raft-tech/documentation/access-controls-ac-2 - - Documentation/access controls ac 2 - -commit 33473e36fa68cdf2d4f1c23ca2f1bb075e0d2885 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 24 09:55:14 2021 -0500 - - Update docs/controls/access_control/ac-02.md - -commit 7a272cb3302ba6e7d16a79fbe8ff46ea69eb075c -Merge: fae6682d6 9606e3064 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 24 09:53:47 2021 -0500 - - Merge pull request #180 from raft-tech/documentation/risk-assessment-ra-5 - - Documentation/risk assessment ra 5 Looks good to me! - -commit fae6682d6678f66415a459cb06237181d11f4e75 -Merge: 992b93fdf 5ea591e38 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 24 09:52:38 2021 -0500 - - Merge pull request #175 from raft-tech/documentation/access-controls-ac-06 - - Documentation/access controls ac 06 Thanks all! - -commit 6c18cbdacc8f80c4908938e45e347553111ac7de -Author: Carlton Smith -Date: Wed Feb 24 09:45:47 2021 -0500 - - update verbiage for clarity - -commit 9a0ce0d6b3806edbb3a6b8231daa3103bfe39447 -Author: Carl Smith -Date: Tue Feb 23 15:18:42 2021 -0500 - - Update 009-git-workflow.md - - added con - -commit 5a999b83463a5d39e9cb5212cef7643bdcfa3a25 -Author: Carl Smith -Date: Tue Feb 23 14:55:07 2021 -0500 - - Update 009-git-workflow.md - - update reviewers - -commit 23d5443426bee7aa36039e26682a17376d18a5c1 -Author: Carl Smith -Date: Tue Feb 23 14:03:15 2021 -0500 - - Update 009-git-workflow.md - - fix typo - -commit 992b93fdf94a3c4ee50ef8d5f86487b0388a3037 -Merge: 6ff2cf3f2 1fb4d30ee -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 23 13:53:43 2021 -0500 - - Merge pull request #189 from kniz-raft/patch-12 - - Update communication-tools.md - -commit 6ff2cf3f26bd99a04638b8176ca3b0bd91a4af61 -Merge: db6daceda e2becad57 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 23 12:50:18 2021 -0500 - - Merge pull request #187 from shubhi-raft/patch-25 - - Create ST Workshop Facilitation Guide.md - -commit e2becad57d26d600b39e0dcd0baf8846c7bc0cd6 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 23 12:48:16 2021 -0500 - - Update docs/User-Research/2020, Winter - User Flow Validation/ST Workshop Facilitation Guide.md - -commit 596974f0c693edb128fae584998a4800939aaee5 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 23 12:47:05 2021 -0500 - - Update docs/User-Research/2020, Winter - User Flow Validation/ST Workshop Facilitation Guide.md - - it was decided not to include OFA in this workshop - -commit 7e95e0e2b4fa51f1ba5c5caa0be526c64c95f08e -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 23 12:46:49 2021 -0500 - - Update docs/User-Research/2020, Winter - User Flow Validation/ST Workshop Facilitation Guide.md - -commit db6dacedab5f98d198a544ce86b9dab0079030c9 -Merge: efad22c73 a038c5d16 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 23 12:44:10 2021 -0500 - - Merge pull request #188 from kniz-raft/patch-11 - - Create Sprint-14-Summary.md - -commit cfa5b6aaada057eb4b7187bc3779a6b941d8f73d -Author: Carl Smith -Date: Tue Feb 23 11:39:33 2021 -0500 - - Update 009-git-workflow.md - - documentation should be reviewed by Kati in raft review - PRs opened against dependent branches should be tagged `blocked` - -commit 65ad207cbbe34b9d6fa31053360907d0fd412937 -Author: Carlton Smith -Date: Tue Feb 23 10:55:38 2021 -0500 - - add ADR - -commit 75a674bc53f3dc0ef320b7169150f5844f4ed857 -Merge: 164c08066 35c8aa584 -Author: Carl Smith -Date: Mon Feb 22 15:00:16 2021 -0500 - - Merge pull request #689 from raft-tech/sprint-summary-13 - - add sprint 13 summary - -commit 35c8aa584ad556896c690181d6a836ea8e4b25bf -Author: Carlton Smith -Date: Mon Feb 22 14:50:48 2021 -0500 - - add sprint 13 summary - -commit bfbee5ccff432b898b040c729a4242b6ef8111b3 -Merge: 948ef2136 164c08066 -Author: Jorge Gonzalez -Date: Mon Feb 22 14:08:59 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin - -commit a6a226b4d08847e00dad23c1116007fb9eb5f819 -Merge: dc166aa02 164c08066 -Author: Carl Smith -Date: Mon Feb 22 14:05:56 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 164c0806651ba288746ad923993633a677663a81 -Merge: c80b20113 26fe90683 -Author: Carl Smith -Date: Mon Feb 22 14:05:33 2021 -0500 - - Merge pull request #688 from raft-tech/505-update-design-guide - - Update design guide - -commit 26fe90683ee54c4d18dacb402ede345648fccd76 -Author: Miles Reiter -Date: Mon Feb 22 13:49:26 2021 -0500 - - Update design guide - -commit efad22c73085328ebd5d761dc2b927809f71efc4 -Merge: 4215343c9 a8d448dd8 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Feb 22 13:32:45 2021 -0500 - - Merge pull request #190 from HHS/revert-184-ars/un-hardcode-dev-site-in-frontend-env - - Revert "Allow for correct logout behavior in staging env" - -commit 3fec09e1ebb3a22a3d6ade042aec5eae6aac455f -Merge: c80b20113 77f8ea34a -Author: Jorge Gonzalez -Date: Mon Feb 22 13:31:08 2021 -0500 - - Merge branch 'raft-review' of https://github.com/raft-tech/TANF-app into feat/639-hide-admin - -commit 948ef2136cad55d889d78b43b91eff75ce7c598a -Merge: 42f651213 77f8ea34a -Author: Carl Smith -Date: Mon Feb 22 12:53:51 2021 -0500 - - Merge branch 'raft-review' into front/639/hide-admin - -commit dc166aa025890da33795abdbe146bd25f8a1ac5a -Merge: 2b5641873 4215343c9 -Author: Aaron Beavers -Date: Mon Feb 22 12:48:44 2021 -0500 - - Merge remote-tracking branch 'HHS/main' into backend/517/admin-mfa - -commit 42f651213ac6d7b7991fbc5addbe8582ec13e910 -Merge: e165e08f9 739b70749 -Author: Jorge Gonzalez -Date: Mon Feb 22 12:41:07 2021 -0500 - - Merge branch 'feat/639-hide-admin' into front/639/hide-admin - - # Conflicts: - # tdrs-frontend/.env.development - # tdrs-frontend/.env.test - -commit 739b70749e377b2665b20b9022859fdbf1a29a5d -Merge: d36bad6f2 c80b20113 -Author: Jorge Gonzalez -Date: Mon Feb 22 12:34:30 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin - -commit e165e08f9b933d07852e49560fcf0c91bcc70048 -Merge: d36bad6f2 c80b20113 -Author: Jorge Gonzalez -Date: Mon Feb 22 12:34:30 2021 -0500 - - Merge branch 'raft-tdp-main' of https://github.com/raft-tech/TANF-app into front/639/hide-admin - -commit 4215343c954d3020715700e431bf5f695b6e69c1 -Merge: b49d68126 acabd6a2c -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Feb 22 12:10:24 2021 -0500 - - Merge pull request #194 from HHS/ADPennington-patch-1 - - Use TDP terminology - -commit d6dcae14848fb3d090377c4de1adc30ba2074035 -Merge: f707be397 c80b20113 -Author: Carl Smith -Date: Mon Feb 22 10:33:53 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit acabd6a2c2e254335391e157f053fa2f5da74902 -Author: ADPennington <63075587+ADPennington@users.noreply.github.com> -Date: Mon Feb 22 10:26:23 2021 -0500 - - Use TDP terminology - - Updated New TDRS to TANF Data Portal. - -commit 796b810a1c46e3ec34e480c70ad40160d60e855c -Author: Carl Smith -Date: Mon Feb 22 09:53:06 2021 -0500 - - Update ac-2(3).md - - 180 days for inactive - -commit 994387f721bc575cc2f9cd2774be40e6f08f7f3f -Author: snyk-bot -Date: Sat Feb 20 02:10:37 2021 +0000 - - fix: tdrs-backend/requirements.txt to reduce vulnerabilities - - - The following vulnerabilities are fixed by pinning transitive dependencies: - - https://snyk.io/vuln/SNYK-PYTHON-DJANGO-1076802 - -commit a0b07aca7216ce430d114c2541af6e511d5eaa28 -Author: John Willis -Date: Fri Feb 19 17:36:37 2021 -0500 - - Update tdrs-backend/tdpservice/users/permissions.py - -commit 09670a85483babb8400e73d19e7528fc042f7364 -Merge: bf95432af c80b20113 -Author: John Willis -Date: Fri Feb 19 17:20:04 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-d3c82afc01e50b7e3081bff3214add7b - -commit ccefb0ace97716e5556504a7c8a966ab0e8fc8a8 -Merge: 71481decf 460971a48 -Author: Carl Smith -Date: Fri Feb 19 17:04:53 2021 -0500 - - Merge pull request #685 from raft-tech/hotfix/support-staging-cf-app - - Ensure staging points to the correct app in Cloud.gov - -commit 460971a48f75d4f5bf4befc558b128156f5f4aec -Author: John Willis -Date: Fri Feb 19 16:55:59 2021 -0500 - - Ensure staging points to the correct app in Cloud.gov - -commit 2b56418737b265ecded9b67fa7869997ba16f238 -Merge: a5a0bd3b5 c80b20113 -Author: Carl Smith -Date: Fri Feb 19 16:23:52 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit c80b20113ac5ca3b0f5fb6b3123959bfd093dfc0 -Merge: b5ee82f23 401e492b2 -Author: Carl Smith -Date: Fri Feb 19 16:23:24 2021 -0500 - - Merge pull request #684 from raft-tech/rebase/hhs_main_20210219 - - Rebase/hhs main 20210219 - -commit 401e492b2b6cf33d4f584ce3b8d1c9c2010c230b -Merge: bb4f74d9a b5ee82f23 -Author: Carl Smith -Date: Fri Feb 19 16:14:25 2021 -0500 - - Merge branch 'raft-tdp-main' into rebase/hhs_main_20210219 - -commit bb4f74d9a7cebaaae14441474e1f0b7667aefd6a -Author: John Willis -Date: Fri Feb 19 15:21:27 2021 -0500 - - Add note about Deployed deliverable - -commit 7b9765196d517417c78c5e13f45411087278c731 -Author: Carl Smith -Date: Fri Feb 19 09:35:54 2021 -0500 - - Revert "Catchup hhs" - -commit 83bd2fe47ae915a170cfa7a1e40cdcd1f83f94ba -Author: Shubhi Mishra -Date: Fri Feb 19 13:52:43 2021 -0500 - - Update pull_request_template.md - - updated. - -commit 68344557708af811584818a6c6cc047c700c971f -Author: Shubhi Mishra -Date: Thu Feb 18 20:48:33 2021 -0500 - - Update pull_request_template.md - - updated PR checklist w/ qasp review checklist - -commit 6f05b82d959de3f20d7cb43879579c2fa37c1721 -Author: Carl Smith -Date: Thu Feb 18 11:52:14 2021 -0500 - - Revert "Catchup hhs main" - -commit aff448e3425e8ac3723a304fa6b0cccf93c2b23b -Author: Aaron Beavers -Date: Fri Feb 19 15:48:06 2021 -0500 - - Update migration so it does not use `create_superuser` - -commit cc4555193e33083e3c97ad52bd19deca58748f69 -Author: Aaron Beavers -Date: Fri Feb 19 15:45:30 2021 -0500 - - Simplify Permission logic - -commit b5ee82f23bc515b135ea14c57c89edc1d0edf95f -Merge: 67d6c493d 3f0665cd0 -Author: Carl Smith -Date: Fri Feb 19 15:31:39 2021 -0500 - - Merge pull request #682 from raft-tech/shubhi-raft-patch-9 - - Usually we wait for Merge to HHS, but since this is our workflow we would like to begin using it immediately - -commit 3f0665cd04761ea0673097aecf62cb0b5683baa0 -Author: John Willis -Date: Fri Feb 19 15:21:27 2021 -0500 - - Add note about Deployed deliverable - -commit 55fd0d59f305ded3e3689e50f1f318c9c0fe6c1d -Merge: 832bfd255 67d6c493d -Author: Shubhi Mishra -Date: Fri Feb 19 13:53:05 2021 -0500 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-9 - -commit 832bfd2553800a0b6dd6b7487fea3f74345058da -Author: Shubhi Mishra -Date: Fri Feb 19 13:52:43 2021 -0500 - - Update pull_request_template.md - - updated. - -commit b49d6812667095bce4312de69a3685b11418577d -Merge: 5e82aad7c 491bd3edf -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Feb 19 11:23:51 2021 -0500 - - Merge pull request #191 from HHS/bh-organize-controls - - Organize security control folder - -commit 491bd3edf1d794cd02f41cacbff5beb341e21e27 -Author: Brian Hurst -Date: Fri Feb 19 11:15:25 2021 -0500 - - Organize security control folder - -commit a5a0bd3b5fd0148f825d729c35fd0cd15b5298fa -Merge: ce9ccc0dc 67d6c493d -Author: Carl Smith -Date: Fri Feb 19 10:48:00 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 67d6c493d4493be53d80da5331ff44e54b2f4983 -Merge: f0e227dfa 2a08f52c6 -Author: Carl Smith -Date: Fri Feb 19 10:46:36 2021 -0500 - - Merge pull request #683 from raft-tech/revert-646-catchup-hhs - - Revert "Catchup hhs" - -commit 71481decff4731917a41ab1e15c01665b055fabd -Merge: f0e227dfa 05ef33dcb -Author: Carl Smith -Date: Fri Feb 19 10:29:22 2021 -0500 - - Merge pull request #681 from raft-tech/frontend/673-staging-dockerfile - - 673: Utilize distinct Dockerfiles for deployment environments - -commit e95d8e59a0238639d75cb7823da4aeb650dbfd17 -Author: Carl Smith -Date: Fri Feb 19 09:51:06 2021 -0500 - - Update tdrs-backend/tdpservice/users/migrations/0012_add_initial_super_user.py - - Co-authored-by: John Willis - -commit 2a08f52c624cc93f77dcf0929a1f6ed3f9fc6af7 -Author: Carl Smith -Date: Fri Feb 19 09:35:54 2021 -0500 - - Revert "Catchup hhs" - -commit 081e9d0569d08b602c21955f0b5db438530a986e -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Feb 19 08:50:26 2021 -0500 - - Update ac-2(7).md - - Updated line 29 to "This will only be allowed for the most privileged role System Admin." - -commit c3e65970c3f7d8fe91b1bf44f81436c79e7111ea -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Feb 19 08:48:11 2021 -0500 - - Update ac-2(7).md - - Updated line 16 to state that there is only one endpoint that is used for reading existing roles and permissions. - -commit f5a0b8dc5fb6c93ff9d6fbd3419482e6c8d0d027 -Author: Shubhi Mishra -Date: Thu Feb 18 20:48:33 2021 -0500 - - Update pull_request_template.md - - updated PR checklist w/ qasp review checklist - -commit 1048937493da0c2d6a4418f93d13c0098832a4f8 -Merge: e36a011f5 f0e227dfa -Author: John Willis -Date: Thu Feb 18 18:22:10 2021 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-bf8c8835917bbf1c76bd3139cfc8d11b - -commit 05ef33dcbe5ff6b541eb490d23093981d56301ae -Author: John Willis -Date: Thu Feb 18 17:21:58 2021 -0500 - - 673: Utilize distinct Dockerfiles for deployment environments - -commit 75535cb3a25566ceed6c468bb53f469c3ae98ee7 -Merge: 50d828e7a f0e227dfa -Author: Aaron Beavers -Date: Thu Feb 18 14:22:47 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 - -commit ce9ccc0dc2f37dd5c18b399d037f2f7245df0dd5 -Merge: eb156fd91 f0e227dfa -Author: Carl Smith -Date: Thu Feb 18 12:44:06 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit f0e227dfab5f82f4a6ce3fbaf4c65c8d26e08ca9 -Merge: 76dff4dc3 6ed4c9a3c -Author: Carl Smith -Date: Thu Feb 18 12:39:57 2021 -0500 - - Merge pull request #680 from raft-tech/revert-663-catchup-hhs-main - - Revert "Catchup hhs main" - -commit 50d828e7a7772e6c04814100317e8201995cadca -Author: Aaron Beavers -Date: Thu Feb 18 11:52:47 2021 -0500 - - remove lint - -commit 6ed4c9a3cb03dfed907dc50ba2ecb8260eb5b1f0 -Author: Carl Smith -Date: Thu Feb 18 11:52:14 2021 -0500 - - Revert "Catchup hhs main" - -commit ccd0f6312e8ed6c057e54bdcfbe7aea6ee2f7478 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 18 11:34:39 2021 -0500 - - Create ac-2(9).md - -commit f707be3973594229cee5ce94057bc59e11dddb8f -Merge: 02bd17e27 76dff4dc3 -Author: Carl Smith -Date: Thu Feb 18 11:27:14 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/audit-and-accountability-au-02 - -commit ef4c5443832899c46e8b9280042616f59bff7f99 -Merge: 447d87f92 76dff4dc3 -Author: Aaron Beavers -Date: Thu Feb 18 11:06:45 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 - -commit 02bd17e27d474e7142ef3c490701d67e16938213 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 18 11:06:31 2021 -0500 - - Update au-02.md - -commit 06553858081bb04e186f2a99d46c84a25352cd03 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 18 10:55:24 2021 -0500 - - Create ac-2(10).md - -commit e27e0a5488d0115f790c05346c51f718cb060fb7 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 18 10:49:29 2021 -0500 - - Update ac-2(7).md - -commit 089314d271732168e0b3e0c3386c538b09a04056 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 18 10:31:32 2021 -0500 - - Update ac-2(3).md - -commit 447d87f92b385f1f73131459dbacc10ac3b80f34 -Author: Aaron Beavers -Date: Wed Feb 10 13:45:40 2021 -0500 - - Test needed stt fixture - -commit fd39a489a6e5b4462709def0c88c25d0b3838339 -Author: Aaron Beavers -Date: Tue Feb 9 14:55:25 2021 -0500 - - Add fixture for stt test - -commit 6fc33fbe382bdcc75fcb24d66e0279c5c4fcb57c -Author: Aaron Beavers -Date: Tue Feb 9 14:55:14 2021 -0500 - - Update user fixtures for stt tests - -commit 5e82aad7c56f245267ff378d1ef763ece9e65529 -Merge: 0b8f520d2 513462886 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 17 14:37:03 2021 -0500 - - Merge pull request #174 from raft-tech/documentation/access-controls-ac_5 - - Documentation/access controls ac 5 - -commit a8d448dd8692179358b81b8ec50831c6eada6813 -Author: Alex Soble -Date: Wed Feb 17 13:19:25 2021 -0600 - - Revert "Allow for correct logout behavior in staging env" - -commit 1fb4d30ee358583d3f84c3f458637f62051c0df7 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Feb 17 12:49:27 2021 -0600 - - Update communication-tools.md - -commit a038c5d166aa48dab05b0761955a5695ac0d9c59 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Feb 17 12:32:01 2021 -0600 - - Create Sprint-14-Summary.md - -commit 6da31d64b72eee50cc13bd6a80566651691e8d1e -Merge: 581aaad00 4d34ab24e -Author: Aaron Beavers -Date: Wed Feb 17 12:34:19 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-4-7 - -commit 5ea591e3873a5c1fe13a3b0ca3c4ca10ab4bb611 -Author: Brian Hurst -Date: Wed Feb 17 12:31:33 2021 -0500 - - Update docs/controls/access_control/ac-06.md - -commit 581aaad0082798e3b885dbfb136ff18b20858e32 -Merge: 19de07cfe 8f62883af -Author: Aaron Beavers -Date: Wed Feb 17 12:24:04 2021 -0500 - - Merge remote-tracking branch 'origin/epics/398/backend/431-3' into epics/398/backend/431-4-7 - -commit 19de07cfeac490326e63cab834264357632e0333 -Author: Aaron Beavers -Date: Wed Feb 17 12:22:45 2021 -0500 - - Add created at to serializer - -commit 9a86a042e1590442efbbd049aa0105cae609fc64 -Author: Aaron Beavers -Date: Wed Feb 17 12:22:33 2021 -0500 - - Add test for serializer created_at - -commit 908168d8c2d7812dd2948576bf8f660ede1173fe -Author: Aaron Beavers -Date: Wed Feb 17 12:22:23 2021 -0500 - - Remove commented debugging code - -commit 0ae0ac7669abfad1a529744bcb87e6f36ff7f31f -Author: Aaron Beavers -Date: Wed Feb 17 12:22:10 2021 -0500 - - Add assertion that versions have changed - -commit a4c45402e8acb52407cff1a4b49dfed116b51ab1 -Author: Aaron Beavers -Date: Wed Feb 17 12:21:55 2021 -0500 - - Remove debug prints - -commit 36e63cbbab5a3a1e83fcc46366fbc7945e4c2940 -Author: Aaron Beavers -Date: Wed Feb 17 12:17:54 2021 -0500 - - added created at field to model and serializer - -commit 9af235ebc68e4b700a4d4ae474d8c6bed926cedb -Author: Aaron Beavers -Date: Wed Feb 17 12:07:42 2021 -0500 - - Remove unnecessary fixture - -commit 0b306b782731ca2e49290ee50d7f10a82ba55cc1 -Author: Aaron Beavers -Date: Wed Feb 17 12:07:25 2021 -0500 - - Update tests - -commit 9606e30640749df11a8a1a4af7d7cb29a04eb76d -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 17 11:50:09 2021 -0500 - - Update ra-05.md - - Updated filename and relative link to screenshot - -commit c466ce124bf3c0bcc2a870a51241df1f1c3de14b -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 17 11:48:39 2021 -0500 - - Add files via upload - - adding screenshot with updated filename. - -commit cd40cbce920c0d799259d3ba090c8febd723d636 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 17 11:01:49 2021 -0500 - - Update ra-05.md - -commit 0add75b48f0a66d6ce792813d511a17d78a66644 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 17 11:01:20 2021 -0500 - - Update ra-05.md - - updated relative link - -commit 639956bc6fe245da9c515aeebb000952109e1f18 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 17 10:57:04 2021 -0500 - - Update ra-05.md - - Updated relative link. - -commit eb156fd91dd866b1a480a5d4547496794bef60a8 -Author: Carlton Smith -Date: Wed Feb 17 10:53:47 2021 -0500 - - add .env file - -commit 5991580b2cc8ca2745f84d1e0c355060bdd6d517 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 17 10:40:08 2021 -0500 - - Update ra-05.md - - updated the relative link. - -commit 0b8f520d25e7ddeaf05d9ca970e24f834f686eed -Merge: 366a4e00f 9f8a04c78 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 16 16:50:13 2021 -0500 - - Merge pull request #186 from raft-tech/backend/issue/518 - - Backend/issue/518 - -commit 92e3034bb5e86d1ccde16c98b466a6ec078011dd -Merge: 2ec0ee7f0 76dff4dc3 -Author: John Willis -Date: Tue Feb 16 15:21:20 2021 -0500 - - Merge branch 'raft-tdp-main' into frontend/issue-510-dotenv - -commit 76dff4dc3fdfb4670aa747f30967ad2953e52d91 -Merge: 4d34ab24e 0e4098f0f -Author: Carl Smith -Date: Tue Feb 16 14:03:52 2021 -0500 - - Merge pull request #551 from raft-tech/epics/398/backend/431-3 - - [epics/398/backend/431-3] Add reports serializer - -commit 0e4098f0fbd9007c6bb0e564af22b17264bd83a0 -Merge: 8f62883af 4d34ab24e -Author: Carl Smith -Date: Tue Feb 16 13:53:16 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-3 - -commit 366a4e00f2127821079ef0ed6e15922b0f3b2e6f -Merge: 46998c0a4 8f62883af -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 16 13:51:47 2021 -0500 - - Merge pull request #183 from raft-tech/epics/398/backend/431-3 - - 431 part 3 - Thanks! - -commit f56cab420e783171e0dae9a891b34d67a649feed -Author: Carlton Smith -Date: Tue Feb 16 13:46:47 2021 -0500 - - remove from branch - -commit fddc5ccbb4cb2f516333a75a9ab859f127559a2b -Author: Carlton Smith -Date: Tue Feb 16 13:38:16 2021 -0500 - - remove from branch - -commit d36bad6f250ff62dcc8ce2bfd5241b2d333c4734 -Author: Spencer Hilvitz -Date: Tue Feb 16 09:49:55 2021 -0800 - - change isOFAAdmin to isSystemAdmin in the Header and update tests - -commit a059c8b9c8824d77140ac8da16d373644220e177 -Merge: 5501874c2 7d9cad269 -Author: Carlton Smith -Date: Tue Feb 16 12:40:05 2021 -0500 - - Merge branch 'backend/517/admin-mfa' of github.com:raft-tech/TANF-app into backend/517/admin-mfa - -commit 9f8a04c7888aff564c295142bef46564ac7bc5a7 -Merge: 0f76c0f32 4d34ab24e -Author: Carl Smith -Date: Tue Feb 16 12:08:43 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/issue/518 - -commit 7d9cad26932f2eef896787111fc9aed29de3ac77 -Merge: 8e5f3425a 4d34ab24e -Author: Carl Smith -Date: Tue Feb 16 12:07:45 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 179034f70a3344e323758b136d552e93f217b0f7 -Merge: c20ddb7df 4d34ab24e -Author: Carl Smith -Date: Tue Feb 16 12:06:42 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/backend/519 - -commit 4d34ab24e5afd8819c4377c691f8963d99f617cb -Merge: 7ddbb42ae ca6045ab7 -Author: Carl Smith -Date: Tue Feb 16 12:05:26 2021 -0500 - - Merge pull request #663 from raft-tech/catchup-hhs-main - - Catchup hhs main - -commit aa8dec2607aadf628f09dd374c845a14c3e8e98e -Author: Shubhi Mishra -Date: Tue Feb 16 11:30:24 2021 -0500 - - Create ST Workshop Facilitation Guide.md - - Add facilitation guide used to conduct round 4 research workshop with states and territories. - -commit 76cff82a2a6edf22f86f1a030782d39d30f93c80 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 11:21:49 2021 -0500 - - Update ac-02.md - - Updated Part j. from annually to 180 days. - -commit 8aba3906e62dee1c8847d6c89810dccfa51b182d -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 11:18:27 2021 -0500 - - Update ac-02.md - - Updated part h. to state that this is done through a manual process for this mvp. - -commit ca6045ab7cedfff2cd07722cb319f5ea35f0ddd6 -Merge: 7ddbb42ae 46998c0a4 -Author: Carlton Smith -Date: Tue Feb 16 11:15:35 2021 -0500 - - Merge branch 'main' into catchup-hhs-main - -commit 065584fb42f455a0b9f513b200ef8c0cead39cbd -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 11:14:05 2021 -0500 - - Update ac-02.md - - Updated OFA Admin to System Admin (where applicable) and updated Part g. to include Django Admin and Cloud.gov auditing - -commit 7f9949660738105a7b716ca3084d3e160df116b3 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 11:10:55 2021 -0500 - - Update ac-02.md - - Updated Part e. - * changed OFA Admin to System Admin - * Added that System Admin approves github/cloud.gov accounts. - -commit 2b1c6f8bbb3f4f78be5ba07fd2937388e06ae4f9 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 11:08:09 2021 -0500 - - Update ac-02.md - - Updated Part d. to include Developers and updated links to relative links. - -commit 513462886d79de24016008ba3f4e56bf330c1c08 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 11:05:41 2021 -0500 - - Update ac-05.md - - Removed mention of Product Owner and HHS Lead, per our discussion on Friday. - -commit ceb302a00d26a5a0d0a412a300ed2d7fde238450 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 10:59:56 2021 -0500 - - Update ac-02.md - - Updated Part c. to include System Admin. - -commit 4c4a43864f2a1545e871b9121dd119823720ccbf -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 10:57:20 2021 -0500 - - Update ac-02.md - - Updated Part a. and b. - -commit 03906eadd724190ba252478232f78ebb1c0cb038 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 10:45:02 2021 -0500 - - Delete screenshot - -commit 098c42b87d6a7e561ed28b6da3e4a4813ca94894 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 10:44:03 2021 -0500 - - Update ra-05.md - - Line 26: changed link to relative link (this may change once we identify the correct directory structure). - -commit eaca05c5ae01f2f1619e4274ecd8113ee931da80 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 16 10:39:05 2021 -0500 - - Update ac-05.md - - Updated implementation statement to include the System Admin and remove the mention of the flags, as discussed during our AC clarification meeting. - -commit c20ddb7dfd34a2b71a55962e53121309b934087e -Author: Carlton Smith -Date: Tue Feb 16 10:18:29 2021 -0500 - - update docs - -commit f4719738cb489e8d9f99e3eaa27572025700b129 -Author: Carlton Smith -Date: Mon Feb 15 18:01:09 2021 -0500 - - add ADR - -commit 0f76c0f32ed04c4820ed5b9d99146f239bf52bed -Author: Carlton Smith -Date: Mon Feb 15 16:09:20 2021 -0500 - - add test to make sure endpoing is gone - -commit fa0eb325671ef95062979b996318c72c696ba941 -Author: Carlton Smith -Date: Mon Feb 15 15:50:49 2021 -0500 - - test for added keys - -commit 03fd274373440ff9b24e03f67868964ddaef69b7 -Author: Carlton Smith -Date: Mon Feb 15 15:37:17 2021 -0500 - - include 517 changes for testing - -commit 891991069c25418dc23d5778093a2f5cda42a146 -Author: Carlton Smith -Date: Mon Feb 15 15:16:46 2021 -0500 - - include build so environment variables are loaded in migrations - -commit 7b68f797f2bfe550e043dd961248d816338195a6 -Author: Aaron Beavers -Date: Mon Feb 15 14:24:31 2021 -0500 - - remove lint - -commit 67edde5977cb055cb7d734e2be5c8a906872f165 -Author: Carlton Smith -Date: Mon Feb 15 14:02:54 2021 -0500 - - remove frontend .env from this branch - -commit a04114217b32a47ecafcfd77e4b225ac7a6a332f -Author: Carlton Smith -Date: Mon Feb 15 13:54:58 2021 -0500 - - only use username - -commit 64cf50845ccf15e7531ab5bfb50f3f2441b0e3a5 -Merge: 03bc332ab 7ddbb42ae -Author: Carl Smith -Date: Mon Feb 15 13:37:19 2021 -0500 - - Merge branch 'raft-tdp-main' into issues/backend/519 - -commit cf116c635cd8e1ea2241cb9e4564601c0af1634e -Merge: 73bc06f4a 7ddbb42ae -Author: Carl Smith -Date: Mon Feb 15 13:02:34 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/issue/518 - -commit 2ec0ee7f043e8dee3f0a9165f2eef6d98d87daa7 -Author: John Willis -Date: Fri Feb 12 15:29:59 2021 -0500 - - README clarification - -commit 380b7c8830d22cb08029881d36e63ce4760146eb -Author: John Willis -Date: Fri Feb 12 15:24:47 2021 -0500 - - Issue 510: Frontend local environment fix/documentation - -commit 46998c0a455e2d8774fbaa9712ad19566d9427f8 -Merge: cd2aeb63b b30b275f1 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Feb 12 15:23:00 2021 -0500 - - Merge pull request #184 from HHS/ars/un-hardcode-dev-site-in-frontend-env - - Allow for correct logout behavior in staging env - -commit 5501874c26a2b1ebb8231c6e8d4bc31f13d17f84 -Author: Carlton Smith -Date: Fri Feb 12 13:17:00 2021 -0500 - - add in frontend files - -commit 8e5f3425a492eb8d93fd31a910054be9ef194910 -Merge: 97f73e5df 7ddbb42ae -Author: Carl Smith -Date: Fri Feb 12 13:15:14 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 8f62883afcfe9534c7c41be3f8b373fab9291e85 -Author: Aaron Beavers -Date: Fri Feb 12 12:35:54 2021 -0500 - - Update test name - -commit 8f630e939d468889ec233e8c11c146b5fdda54ff -Author: Aaron Beavers -Date: Fri Feb 12 12:33:53 2021 -0500 - - Use integer for year - -commit 54a62247224d5a14eff33237b7e84ca4c4cdd05d -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Feb 12 11:42:00 2021 -0500 - - Update ra-05.md - - Removed links to files for now. These references will be placed back in when this is moved to the HHS branch - -commit be31589d9bcb8ca9692eb8e64a12886ee8e289d5 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Feb 12 11:39:33 2021 -0500 - - Update ra-05.md - - Updated line 22 to include "failed OWASP Zap scans prevent the code from being deployed if vulnerabilities are found." - -commit 7ddbb42ae77c39726d8f62887a4da85f19a0f14e -Merge: 9416f861f a6136bbb0 -Author: Carl Smith -Date: Fri Feb 12 10:40:16 2021 -0500 - - Merge pull request #566 from raft-tech/issue/510-dotenv-backend-only - - Issue 510: Backend only changes to support local env vars - -commit eb10a62c728761e05c745313368180b3670026f8 -Author: Aaron Beavers -Date: Thu Feb 11 17:44:14 2021 -0500 - - cleared lint issues - -commit 16862efcba182ca1c0daade09e34acf0285119fc -Author: Aaron Beavers -Date: Thu Feb 11 17:03:40 2021 -0500 - - Refactor update guard to throw immutability exception - -commit e5e09e1e5370cdc83d25d1473c5eb8d1f2926d48 -Author: Aaron Beavers -Date: Thu Feb 11 17:03:11 2021 -0500 - - Implement immutability error - -commit 4a0c5d62dfe37dfe228ff384294baf63df7ea605 -Author: Aaron Beavers -Date: Thu Feb 11 17:03:00 2021 -0500 - - Import Immutability error for comparision - -commit 33fcc649427f1ecc043d22bf6f529815479bed27 -Author: Aaron Beavers -Date: Thu Feb 11 17:02:35 2021 -0500 - - Add test that asserts immutability holds. - -commit b30b275f1a6bb4a45b5acc952377be8a34e2e70a -Author: Alex Soble -Date: Thu Feb 11 15:22:03 2021 -0600 - - Allow for correct logout behavior in staging env - + The current code hard-codes REACT_APP_BACKEND_URL to point to the dev site. As a result, when a user logs out of the vendor staging site, they are redirected to the dev site homepage instead of the vendor staging site homepage. - + After merging this change, we'll want to set REACT_APP_BACKEND_URL values for the vendor staging site and dev site using the CF CLI or the Cloud.gov website. - + Deploy script should mention the need to set REACT_APP_BACKEND_URL on the frontend. - -commit 26fa1e0bed300d44bcf07f64697ee5375fc533c6 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 12:01:33 2021 -0500 - - Update ac-05.md - - Updated line 26 to Product Owner - -commit 5308d8d314a4b9ba3a5dbfd848ca791575f5d364 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:33:57 2021 -0500 - - Update ac-05.md - - Removed the sections "Access to Django Admin" and "Access to TDP application" - -commit 4a12339f0c7df13f33265db0199df5b0385bda56 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:32:31 2021 -0500 - - Update ac-05.md - - Updated line 34 from "Product Manager" to "Product Owner" - -commit aaa0705fde40402f026048bf27df8c25a1ad3b1e -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:30:58 2021 -0500 - - Update ac-05.md - - Updated line 20 to state that OFA Admin SuperUser and Staff flags are set to False by default. - -commit 07c99b252ba654cac4f3144784abe9fb116c4d9a -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:27:11 2021 -0500 - - Update ac-05.md - - Update line 19, OFA Admin abilities - removed manage TDP accounts... - -commit 56e993be6b2d823010a0ea36805a619c620a89bd -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:23:47 2021 -0500 - - Update ac-05.md - - Changed line 16 from "OFA Admin" to "System Owner" - -commit 9aeeac4bab962d726a8fe12118712638c7235038 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:19:36 2021 -0500 - - Update ac-06.md - - added "New user accounts are established with no privileges upon creation and only OFA Admins can grant permissions to those users." - -commit 9fd6870645cffdf22d5e6eb05c6b44e1d923f411 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 11 11:16:45 2021 -0500 - - Update ac-06.md - - Removed Data Prepper function list as they are not considered privileged functions. - -commit 97f73e5df446d599dbef82597a38bf8cf498a2a6 -Author: Carlton Smith -Date: Wed Feb 10 16:57:48 2021 -0500 - - remove user - -commit 378908b17f83ed207614c3a1492a4e02819a5c20 -Author: Carlton Smith -Date: Wed Feb 10 16:46:41 2021 -0500 - - refactor and add a few more tests - -commit a6136bbb04433a67e6a9a837c1e3d36a4c28bccc -Merge: e92301c45 9416f861f -Author: Carl Smith -Date: Wed Feb 10 16:02:08 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv-backend-only - -commit cd2aeb63bda0cedcbfba68181e43acaf878da827 -Merge: 42e7e195a e92301c45 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 10 15:46:49 2021 -0500 - - Merge pull request #167 from raft-tech/issue/510-dotenv-backend-only - - Issue/510 dotenv backend only - -commit 0a4112494b324b3c4f3203e9a9cc3d1f084545a8 -Author: Carlton Smith -Date: Wed Feb 10 15:32:52 2021 -0500 - - remove unused - -commit d6ec4ef60b78ed81192d626dd20e1466a29686b2 -Author: Carlton Smith -Date: Wed Feb 10 15:19:44 2021 -0500 - - update test to use adjustable value - -commit 6eae4dbc0a58a97207a373260f6a03ef0f7b25c9 -Merge: 2029fcccb 9416f861f -Author: Carl Smith -Date: Wed Feb 10 14:37:56 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-3 - -commit 9416f861f3d0d3dbf118ebbb108a2fc37e3ee7ba -Merge: 26e46818f 56e2721aa -Author: Carl Smith -Date: Wed Feb 10 14:36:35 2021 -0500 - - Merge pull request #550 from raft-tech/epics/398/backend/431-2 - - [epics/398/backend/431-2] Add report model - -commit 42e7e195a39863c13bcc2d904f596e9f2c103d1a -Merge: f72ac243d 56e2721aa -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 10 13:56:03 2021 -0500 - - Merge pull request #168 from raft-tech/epics/398/backend/431-2 - - Epics/398/backend/431 - 2 - -commit 16082e645e6eefea52e3ed6ae228184037e2cfe5 -Author: Carlton Smith -Date: Wed Feb 10 13:16:15 2021 -0500 - - add tests - -commit 4463f7e22dcf8a2a40ecabec476227f3de48a581 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 10 13:00:28 2021 -0500 - - Delete docs/controls/access_control directory - -commit cde5be42fa5307c8588ee2e988910fd5f55d1ae8 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 10 13:00:03 2021 -0500 - - Create ac-2(3).md - -commit f7070c3dd59e9a2ff6202833d5c3ba37030db632 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 10 12:58:32 2021 -0500 - - Create ac-2(3).md - -commit a5c475df78cd75f39f75ae2b11d6cbc09d659c6b -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Feb 10 11:33:00 2021 -0500 - - Create ac-2(7).md - -commit 56e2721aa0299a4c3561d3816bd145b6453d0ff5 -Author: Aaron Beavers -Date: Wed Feb 10 10:19:40 2021 -0500 - - added comments explaining decisions made for report schema - -commit e2c31f9152f7358197aef3a6f1d9eb5dfcd912ac -Author: Aaron Beavers -Date: Wed Feb 10 09:41:30 2021 -0500 - - Remove remaining lint in test - -commit fa33ec3247cfcd5e10e1adc66110a09efc2e6f83 -Author: Aaron Beavers -Date: Tue Feb 9 17:28:39 2021 -0500 - - Remove lint - -commit 6ba131e2c0e7b28cb1b081d6b54be8209b9cb27f -Merge: e420fac38 26e46818f -Author: Carl Smith -Date: Tue Feb 9 16:03:53 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-2 - -commit 8d8f80c98c07843253852f5975468cf97267427b -Author: Spencer Hilvitz -Date: Tue Feb 9 12:31:15 2021 -0800 - - force tests - -commit ea45173de9f69d01943c1e42997e5338bcce3d5d -Author: Spencer Hilvitz -Date: Tue Feb 9 12:31:00 2021 -0800 - - force tests - -commit 6cfd1779641e4aef674d9ff9fc662db3c6e0a577 -Author: Spencer Hilvitz -Date: Tue Feb 9 12:18:32 2021 -0800 - - update REACT_APP_BACKEND_URL to REACT_APP_BACKEND - -commit e92301c4516dbe3b782a0cb8bfa6157211f297be -Author: Carlton Smith -Date: Tue Feb 9 14:53:04 2021 -0500 - - update docs - -commit bb5c5f022d2ebba1e2accac24fed31c8213f2110 -Merge: bbbbcddd7 26e46818f -Author: Carl Smith -Date: Tue Feb 9 14:49:29 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv-backend-only - -commit bbbbcddd7b0b3958d176e92fc2f5d109c1aed332 -Author: John Willis -Date: Tue Feb 9 12:28:06 2021 -0500 - - Implement PR Review feedback - swap docker-compose override for local and undo CI changes - expand documentation - -commit ed9169a67ea3779c000ddb4fa6f510a922b703f3 -Author: Spencer Hilvitz -Date: Mon Feb 8 15:47:08 2021 -0800 - - remove v1 from backend_url in .env.development, .env.test, Dockerfile.dev and add to axios requests - -commit e420fac387bc22455117708293b4839183426939 -Author: Aaron Beavers -Date: Mon Feb 8 18:05:29 2021 -0500 - - Add tests for report model versioning helpers - -commit 1f4ee6f10ef12cd7062914c7ee1848cc0c75d9ed -Author: Aaron Beavers -Date: Mon Feb 8 18:05:15 2021 -0500 - - Use an integer for years - -commit f72ac243db859ee97c90c170c1ec9425e5107e6c -Merge: 0fc9676c1 8317fc044 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Feb 8 11:10:56 2021 -0500 - - Merge pull request #179 from reitermb/main - - Update Design Guide - -commit 201932732d4acd329b0c05be7bcb2d315a813511 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Feb 5 20:44:37 2021 -0500 - - Update ac-05.md - - Updated last paragraph of part a. - -commit d80e18d38169dd7b6774111f1e435bc6fa11469c -Author: Spencer Hilvitz -Date: Fri Feb 5 12:51:57 2021 -0800 - - add tests for hiding admin tab for non ofa admin user - -commit a310d1509b7812654608e9601ef6820bc33ad5da -Author: Spencer Hilvitz -Date: Fri Feb 5 10:28:03 2021 -0800 - - add role logic to header to hide admin - -commit c645e03a288f972b3bc5e0a8d93c3667b91ed367 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Feb 5 12:47:41 2021 -0500 - - Update ac-05.md - - Updated first sentence of part c. for the user to start on the TDP landing page. - -commit 226752e1a27d48979932146738646f466c472c9b -Merge: 5e1ae65ff 26e46818f -Author: Carl Smith -Date: Fri Feb 5 12:46:50 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit e835c4e478e0f659d039289bd7089175cfa7136d -Author: Spencer Hilvitz -Date: Fri Feb 5 09:12:38 2021 -0800 - - update .gitignore with eslintcache - -commit b08d14911a78e6ea6f1f9dd638aaa26eb1d4a32f -Merge: 8dbb204f8 26e46818f -Author: Carl Smith -Date: Fri Feb 5 11:34:33 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 - -commit 26e46818f47b7b2e86e3a936020f7f47057a6d16 -Merge: b8d58fa09 0fc9676c1 -Author: Carl Smith -Date: Fri Feb 5 11:33:16 2021 -0500 - - Merge pull request #646 from raft-tech/catchup-hhs - - Catchup hhs - -commit 5b6ab01d6f064de6c97f85f4b80d4c8674bc05e5 -Author: Brian Hurst -Date: Fri Feb 5 11:06:39 2021 -0500 - - Update docs/controls/access_control/ac-05.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 7be6d1f3a2e096d7e93d0e2658acc8a538476699 -Author: Brian Hurst -Date: Fri Feb 5 11:05:53 2021 -0500 - - Update docs/controls/access_control/ac-05.md - - Co-authored-by: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> - -commit 8dbb204f8ee7a4823ae1e4023a38b535a6db213a -Merge: 55801765b b8d58fa09 -Author: Carl Smith -Date: Fri Feb 5 09:39:40 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 - -commit 53db6b144ad27def24e05ed417c1f24952d0cd51 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 16:21:24 2021 -0500 - - Update ac-05.md - - Simplified Developers roles / responsiblities. - -commit 438e1b0785e7866946870f68658e1c009f1c53c3 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 16:15:48 2021 -0500 - - Update ac-05.md - - Updated based on feedback. - -commit 55801765b8f97bca2c1b0928334725ec6bea51f0 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 15:14:32 2021 -0500 - - Update ac-02.md - - Updated to remove "Developer" role - Updated "inactivate" to "deactivate" - -commit ce7d4ae3414a6d8eadf15c7d207dd5fedcb13ac9 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 15:10:30 2021 -0500 - - Update ac-02.md - - Changed Part a. to include only the OFA Admin and Data Prepper roles - -commit 64cd6a9aecd864d07e0314aa6a478f6b64e8c4e2 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 11:44:09 2021 -0500 - - Update ac-05.md - -commit 14fcd5a9f71d6302caad3eb10127cd19d33d0549 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 11:18:36 2021 -0500 - - Update ac-05.md - - Started update on Part a. - Updated Part b. - -commit aaee57ea0ed45bd76a8b92c822ed93753cb7cdd2 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 10:52:06 2021 -0500 - - Update ac-05.md - - copied OFA admin and Data Prepper description to part b. - -commit da404b360f3a1b09de7c2829e20200307458bc0f -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 10:43:24 2021 -0500 - - Update docs/controls/access_control/ac-05.md - - Co-authored-by: Brian Hurst - -commit 063a2e825cf2d3682828310881369680ef0fdba8 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Feb 4 10:42:40 2021 -0500 - - Update docs/controls/access_control/ac-05.md - - Co-authored-by: Brian Hurst - -commit 39952e5c5a20658aa4d2ea5511ef7c42e9bdd01f -Author: Carl Smith -Date: Wed Feb 3 18:09:32 2021 -0500 - - Update .env.example - - remove secret key - -commit e36a011f5dc92f11712cba2525b57ea86d30e3d5 -Author: snyk-bot -Date: Wed Feb 3 22:47:32 2021 +0000 - - fix: upgrade multiple dependencies with Snyk - - Snyk has created this PR to upgrade: - - @fortawesome/fontawesome-svg-core from 1.2.32 to 1.2.34. - See this package in npm: - - @fortawesome/free-solid-svg-icons from 5.15.1 to 5.15.2. - See this package in npm: - - See this project in Snyk: - https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr - -commit d050a67f6af467d6cf8eacfd2af032dfae4d5747 -Author: John Willis -Date: Wed Feb 3 17:42:10 2021 -0500 - - Remove need for CI specific docker-compose by supplying defaults for non-sensitive environment variables in settings - -commit b8d58fa09d2254817a327a12350027ec9cfa5cb7 -Merge: 546796017 44ba08cc0 -Author: Carl Smith -Date: Wed Feb 3 17:07:20 2021 -0500 - - Merge pull request #487 from raft-tech/406-header-focus-fix - - 406 & 407: Fix focus on route change and alert on error - -commit 44ba08cc0024a37da3c2600ff7bd4686a2ee4aa3 -Merge: 412273fd7 546796017 -Author: Carl Smith -Date: Wed Feb 3 16:55:48 2021 -0500 - - Merge branch 'raft-tdp-main' into 406-header-focus-fix - -commit 0fc9676c1a2a90bccb4c747eaf261ef2b0c91b69 -Merge: 0f54af34b 412273fd7 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 3 16:37:51 2021 -0500 - - Merge pull request #158 from raft-tech/406-header-focus-fix - - 406 header focus fix - looks good! - -commit 3fe25aa167d8e91d5386de3ed6fb435e8d825a59 -Merge: 14f5113a9 546796017 -Author: Carl Smith -Date: Wed Feb 3 16:35:16 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 - -commit 546796017fe60ea7d0d7741af003bfe5f58e803b -Merge: ea036d29b 9776f5899 -Author: Carl Smith -Date: Wed Feb 3 14:10:36 2021 -0500 - - Merge pull request #591 from raft-tech/documentation/access-controls-2-5 - - Create AC-02(05).md - -commit 9776f589956a0c5e459ac254aafa2e97e767632c -Merge: cc52dafee ea036d29b -Author: Carl Smith -Date: Wed Feb 3 14:01:05 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-2-5 - -commit 0f54af34b2f294fff5334b4ba6ae0912ce975421 -Merge: ff00e5ca0 bbdaff7b1 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Feb 3 10:09:49 2021 -0500 - - Merge pull request #178 from kniz-raft/patch-10 - - Create Sprint-13-Summary.md - -commit 8317fc044afc3de7bb7de60c6379cebb5109ad88 -Author: miles-reiter -Date: Tue Feb 2 22:54:31 2021 -0500 - - Update Design-Guide.md - -commit bbdaff7b1e3b74dcde80a1f786ff1f75e2987c4e -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Feb 2 14:34:39 2021 -0600 - - Create Sprint-13-Summary.md - -commit 412273fd73682b473f84776ce729f56c5f365857 -Author: Spencer Hilvitz -Date: Tue Feb 2 11:39:51 2021 -0800 - - add tests for h1 focus - -commit 397781b513c2333a6ef8f87ccb8d589b9bfcece2 -Merge: a2a26be72 ba9fe7e88 -Author: Spencer Hilvitz -Date: Tue Feb 2 10:36:25 2021 -0800 - - Merge branch '406-header-focus-fix' of github.com:raft-tech/TANF-app into 406-header-focus-fix - -commit 061c70a4b2c09916b342703848d4ea3dcf663f29 -Author: miles-reiter -Date: Tue Feb 2 13:22:45 2021 -0500 - - Update Design-Guide.md - -commit bb57e6e8ed9c22366ff395b8c61f9a853b4b8dd0 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 2 11:58:06 2021 -0500 - - Create au-02.md - -commit ff00e5ca0126f64a8f832401cfa3ca35b26521fc -Merge: 6db9cdd32 cc52dafee -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Feb 2 11:18:35 2021 -0500 - - Merge pull request #165 from raft-tech/documentation/access-controls-2-5 - - Documentation/access controls 2 5 - -commit f12cd625d4d9f82df7682f74ce0a949a67d122c6 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Tue Feb 2 10:16:00 2021 -0500 - - Update ra-05.md - - Changed line 20 to "every push, pull request and merge on GitHub" - -commit 7aeff937c0735207d3bad4e63b57fa8aa93c72f6 -Merge: d805a72ba 2029fcccb -Author: Aaron Beavers -Date: Mon Feb 1 15:05:05 2021 -0500 - - Merge branch 'epics/398/backend/431-3' into epics/398/backend/431-4-7 - -commit 2029fcccb663d7e71f45ed0ee74d7bf891962566 -Author: Aaron Beavers -Date: Mon Feb 1 14:56:46 2021 -0500 - - Tweak white space - -commit d805a72ba396ba19c3fe58dc47a56b48bbe707e0 -Merge: 80e6a9bba 142860ef6 -Author: Aaron Beavers -Date: Mon Feb 1 14:34:18 2021 -0500 - - Merge branch 'epics/398/backend/431-3' into epics/398/backend/431-4-7 - -commit 142860ef65f832d09618635957645efc9c52b3ff -Author: Aaron Beavers -Date: Mon Feb 1 14:24:18 2021 -0500 - - Removed trailing space at end of file - -commit 4e384b9c63fa4e1d124505dbfdaa85ccdafa8929 -Author: Aaron Beavers -Date: Mon Feb 1 14:24:09 2021 -0500 - - Fixed docstring - -commit 7e274f8d595f234fb2ce7204e2ac4cb2176ce65d -Author: Aaron Beavers -Date: Mon Feb 1 14:23:58 2021 -0500 - - Remove calls to print in fixtures - -commit 3d3bafb55806d4dcf36a52a7f0eb5701e64d5a48 -Author: Aaron Beavers -Date: Mon Feb 1 14:23:42 2021 -0500 - - Remove unneeded import - -commit 44554594f1ca61c8725f7274e327633482546cb5 -Author: Aaron Beavers -Date: Mon Feb 1 14:23:33 2021 -0500 - - Remove unneeded import - -commit da775d8a1152a16df4ca2fefa4809a4f63007abe -Author: Aaron Beavers -Date: Mon Feb 1 14:23:22 2021 -0500 - - Remove unneeded whitespace - -commit 73bc06f4a4c05826aa63c8c6632e6e3b86bf173c -Merge: 1e7d23106 ea036d29b -Author: Carl Smith -Date: Mon Feb 1 14:04:33 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/issue/518 - -commit 14f5113a90bfb001ae23339e4f0d472b428125ca -Merge: eb891eb94 ea036d29b -Author: Carl Smith -Date: Mon Feb 1 10:12:12 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-2 - -commit 05404655fda8887b04b33cf58e80ea5be18f83e4 -Merge: 19d76864d ea036d29b -Author: Carl Smith -Date: Mon Feb 1 09:56:38 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac_5 - -commit eb891eb94d171c9c9cb4c8951bd39b3976fc1ca7 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 17:48:32 2021 -0500 - - Update ac-02.md - -commit ef0638411d373c0eca02e21eb00e11f2209dc88e -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 17:15:54 2021 -0500 - - Delete Access Control.md - -commit d39e2c3dcd7955eec1d73efc956af23e7470ddea -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 17:15:26 2021 -0500 - - Add files via upload - -commit 26cc7d6b9b05f450c4419618bfad50753f7d9e37 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 16:13:30 2021 -0500 - - Update ra-05.md - - Updated with screenshot and link to screenshot. - -commit 938d2f6a6f781b949f6c3c58e2b832f6578cfe56 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 16:10:19 2021 -0500 - - Add files via upload - -commit 8b6de72e1cbbd2b4c903b08f3e0c5f9b38e41f20 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 16:09:33 2021 -0500 - - Create screenshot - -commit 3c7c77348477fbfb085d4eaf6065fa45735e03e4 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 16:07:36 2021 -0500 - - Update ra-05.md - -commit c477c24e15e4094619a8461a9b39d0e9e3e7df87 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 16:00:06 2021 -0500 - - Update ac-06.md - - Updated per feedback... - - Multi-factor Authentication (MFA) - - added Data Preppers are priv users. - -commit 25a2602740c2456bfdbeb2cf980e49738f55409c -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:57:32 2021 -0500 - - Update ac-06.md - -commit 19d76864d0b68fb56547c8a8f97e9d81466c8fe2 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:29:54 2021 -0500 - - Update ac-05.md - - Updated Developers section to reflect changes in dev environments - -commit e22b71f3e9f1fce734948364234caedeca44b467 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:26:36 2021 -0500 - - Update ac-05.md - - Updated Part a. with new environment structure. - -commit fe0dcff7b2e8ab3eb3e617a426bb7046130f0765 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:15:41 2021 -0500 - - Update ac-05.md - - Updated access to Django Admin section - -commit aeb9c3c2ee17d63601df5ed28ba6fa52d887f200 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:10:01 2021 -0500 - - Update ac-05.md - - Updated part c. - -commit aeda169cddc5a42d1887f53e26626e7d4cb6967d -Merge: 2f6b57582 ea036d29b -Author: Carl Smith -Date: Fri Jan 29 15:06:33 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/access-controls-ac-06 - -commit 780125ee281bf2b0047bfa656abd5f7a1f78b826 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:06:20 2021 -0500 - - Update ac-05.md - - Updated "Users (OFA Admin and Data Preppers)" section - -commit 6d11b4461ca783e0e24164cf62d9bbbdb4197ca4 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:03:35 2021 -0500 - - Update ac-05.md - - Updated Line 29 -> "Develop code in our local environment and test code in the Dev environment" - -commit 09e952dbd10b9fd54cef8de74878c2b99a1729fc -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 15:01:02 2021 -0500 - - Update ac-05.md - - Updated line 27 to "CircleCI ensures"... - -commit 6c86a909ec18dcdd660e81b4602b3df1e267ef1a -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 14:59:49 2021 -0500 - - Update ac-05.md - - Added "users from the STTs who will be uploading data will have the role Data Preppers" - -commit afe8592ed5e6dfb113331e78cd1b357d6ce4c7d4 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 14:58:08 2021 -0500 - - Update ac-05.md - - Changed STT Users to Data Preppers - -commit 9c45fd5e84ae33cd71b26b6b208abf0cfb400486 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 14:49:53 2021 -0500 - - Update ra-05.md - - Updated part a. - -commit 5d0ff68ae32f5043315940a92155e9e97a107640 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 14:45:35 2021 -0500 - - Update ra-05.md - - removed "[" from places in the implementation statement. - -commit 2f6b575828e45860b25d3c47335f8cd45cf51396 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 13:08:47 2021 -0500 - - Update ac-06.md - - Updated implementation statement - -commit cc52dafee5439a127bd76394029be752d21ba447 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 13:04:28 2021 -0500 - - Update AC-02(05).md - - Updated links to screenshots - -commit c2962870e5d8686235d310cdbc38606b20001991 -Merge: e3030bc07 ea036d29b -Author: Carl Smith -Date: Fri Jan 29 12:45:12 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/risk-assessment-ra-5 - -commit a0a4f980dc74b7aa99954dd1b61f8b973497328e -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:44:29 2021 -0500 - - Update ac-06.md - -commit ba9fe7e88c923cb104a3aced0daf7b020c88f41f -Merge: c514cd1f1 ea036d29b -Author: Carl Smith -Date: Fri Jan 29 11:43:07 2021 -0500 - - Merge branch 'raft-tdp-main' into 406-header-focus-fix - -commit 3c930a18d15c0f9725e71df5553cd8fed2181399 -Merge: a601a98b8 ea036d29b -Author: Carl Smith -Date: Fri Jan 29 11:42:42 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-2 - -commit 010aa4768641bc9f0aaa91168e825c15eaa62b3f -Merge: a47efc78a ea036d29b -Author: Carl Smith -Date: Fri Jan 29 11:39:15 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv-backend-only - -commit ea036d29be7b6f00b8cfe4639cf1d2122696ee9b -Merge: 390540f23 189a88440 -Author: Carl Smith -Date: Fri Jan 29 11:38:00 2021 -0500 - - Merge pull request #612 from raft-tech/hotfix/rebase-with-hhs - - Hotfix/rebase with hhs - -commit 189a88440f2cb55fa707235354438702080e970b -Merge: 390540f23 6db9cdd32 -Author: Carlton Smith -Date: Fri Jan 29 11:21:28 2021 -0500 - - Merge remote-tracking branch 'hhs/main' into hotfix/rebase-with-hhs - -commit ebcb963576503ebb355e4b0e9e674498d68dfe70 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:20:45 2021 -0500 - - Update AC-02(05).md - - added screenshot links - -commit 580cb9698da28239230203a684ffa5c3677449cb -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:15:47 2021 -0500 - - Update AC-02(05).md - -commit cc2a903d914ae0ac0d20b8aeff7831678e497c2b -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:13:27 2021 -0500 - - Delete screenshots - -commit 937e091dc127f2c7fcadcd79f9995b0afe04dbb7 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:13:14 2021 -0500 - - Delete Screen Shot 2021-01-28 at 1.47.19 PM.png - -commit db6064b448aba6fb7b109428854f1dc057430e6d -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:13:07 2021 -0500 - - Delete Screen Shot 2021-01-28 at 1.24.08 PM.png - -commit 606caa4a246d3cc353736f1a4bff1f6223a7b674 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:13:00 2021 -0500 - - Delete Screen Shot 2021-01-28 at 1.43.47 PM.png - -commit d6f3997431dc3f78f12581a6332bb1ab12bf2b4c -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:12:16 2021 -0500 - - Add files via upload - -commit 6559f27e042f8b6f446adedb98c5b00ff644eeb5 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 11:11:19 2021 -0500 - - Create screenshots - -commit 625adc353d8c9ed852749eba9924b60a03c3f579 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 10:48:43 2021 -0500 - - Add files via upload - - Adding screenshots - -commit 37ebda289af4c91d9760d24b81c58e9b65cda059 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Fri Jan 29 10:46:15 2021 -0500 - - Update AC-02(05).md - - update with timeout information - -commit 6afe4a1c81a451e7d4e3c9044bebb90c6fec3c3d -Merge: 7abfe1910 390540f23 -Author: Carl Smith -Date: Fri Jan 29 10:01:01 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit 6db9cdd3251f127aaeec3c2c1073be227ca4b6aa -Merge: 471f6a25d 26e1097d2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 29 09:50:56 2021 -0500 - - Merge pull request #146 from kniz-raft/patch-6 - - Create definition-of-done - -commit 943658242c44497529ff68e623d57fa4c6e22e36 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Jan 28 12:43:09 2021 -0500 - - Create ac-06.md - -commit 185af4210ffd03c67e137b0186a2f1456b1dd7cc -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 28 12:09:55 2021 -0500 - - Update docs/controls/access-controls/AC-02(05).md - -commit 6915e2ddddb163326a866f9c158d72a8e2ca2a48 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 28 12:09:50 2021 -0500 - - Update docs/controls/access-controls/AC-02(05).md - -commit e3030bc07404981950cefacb8155e624b4b2e5a9 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Jan 28 11:15:52 2021 -0500 - - Update ra-05.md - -commit fc1efeb292cc11f6f71f7c3d9641f2218faa8018 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Thu Jan 28 11:13:11 2021 -0500 - - Update ra-05.md - -commit 80e6a9bba5c47b41a1a4f4991aec722eb3dd7c7e -Merge: 2a3126b60 8cf242ae4 -Author: Aaron Beavers -Date: Thu Jan 28 10:27:50 2021 -0500 - - Merge remote-tracking branch 'origin/epics/398/backend/431-7' into epics/398/backend/431-4 - -commit 2a3126b60bc1a5e468fbb6cbe627bee352dcc044 -Merge: a03be8f96 46795aa70 -Author: Aaron Beavers -Date: Thu Jan 28 10:27:25 2021 -0500 - - Merge remote-tracking branch 'origin/epics/398/backend/431-6' into epics/398/backend/431-4 - -commit a03be8f966470627f0247c7ecc7a247ababa2661 -Merge: 96d6dc57f e630e1065 -Author: Aaron Beavers -Date: Thu Jan 28 10:27:19 2021 -0500 - - Merge remote-tracking branch 'origin/epics/398/backend/431-5' into epics/398/backend/431-4 - -commit 96d6dc57fda1adb478d4c5733a7eb8a6e851837f -Merge: 11ee476c4 42cbc85e6 -Author: Aaron Beavers -Date: Thu Jan 28 09:35:29 2021 -0500 - - Merge branch 'epics/398/backend/431-3' into epics/398/backend/431-4 - -commit a601a98b8ebe2cab65c1b5bf966a9328aaae0ba5 -Merge: 751ad236d 390540f23 -Author: Carl Smith -Date: Wed Jan 27 16:57:17 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-2 - -commit 390540f23e67f58b509e56f834d6937cef6d556d -Merge: c460eeca6 09b6c793e -Author: Carl Smith -Date: Wed Jan 27 16:56:50 2021 -0500 - - Merge pull request #549 from raft-tech/epics/398/backend/431-1 - - [epics/398/backend/431-1] Add reports app - -commit 42cbc85e686804ca8d41e94189558a56336f11f9 -Author: Aaron Beavers -Date: Wed Jan 27 16:42:51 2021 -0500 - - Add serializer tests - -commit 2c014734f89d01075176693dd852469951fe71c9 -Author: Aaron Beavers -Date: Wed Jan 27 16:41:26 2021 -0500 - - Utilize model method for serializer create function - -commit 418a754908f66e4ef5a74e93caf3198c5948329a -Merge: da2c38a88 ff29992dc -Author: Aaron Beavers -Date: Wed Jan 27 16:17:01 2021 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into epics/398/backend/431-3 - -commit da2c38a884502966354c50ecdea24805d9bc4b7b -Merge: b20287efa 751ad236d -Author: Aaron Beavers -Date: Wed Jan 27 16:09:16 2021 -0500 - - Merge branch 'epics/398/backend/431-2' into epics/398/backend/431-3 - -commit 751ad236dd6969e2e0c673668ad42d31a6f449ba -Author: Aaron Beavers -Date: Wed Jan 27 16:09:00 2021 -0500 - - Fix linting errors - -commit b20287efafae1f0da536e1458a1c43afdd252b11 -Merge: 9e2e8cf03 7b1d3f401 -Author: Aaron Beavers -Date: Wed Jan 27 15:56:40 2021 -0500 - - Merge branch 'epics/398/backend/431-2' into epics/398/backend/431-3 - -commit 7b1d3f401a4cdce96807f6e9a898c14602127145 -Author: Aaron Beavers -Date: Wed Jan 27 15:52:14 2021 -0500 - - Add test for creating new version of existing report - -commit 0ead0571c7e7d2b9fe9fe793367040c6ec90e826 -Author: Aaron Beavers -Date: Wed Jan 27 15:51:58 2021 -0500 - - Remove unnessiary ID property from factory - -commit 57cd603643f9ede9e02298e7e065333ed6e1f505 -Author: Aaron Beavers -Date: Wed Jan 27 15:51:45 2021 -0500 - - Add model methods - -commit 5cc97b1c5e60cf38659c8a679dd1b1f6587cf23a -Author: Aaron Beavers -Date: Wed Jan 27 15:51:29 2021 -0500 - - Fix typo - -commit 9bd5cf4aa49386884733e75562a7edabdffc6a16 -Author: Aaron Beavers -Date: Wed Jan 27 15:25:39 2021 -0500 - - Add blank reports model test file - -commit d87b96d5f02f78936926cc601b41148b3665aaed -Author: Aaron Beavers -Date: Wed Jan 27 15:21:23 2021 -0500 - - Add Report Factory - -commit 8b83df2d906a6b594d61f3084086030bbc6db57f -Author: Aaron Beavers -Date: Wed Jan 27 15:18:25 2021 -0500 - - Add report file fixtures - -commit ad6df14db332364688234409bc6f1fd7ac679c42 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Jan 27 15:08:29 2021 -0500 - - Create ac-05.md - -commit 30abc6ebfb6450e9d219bf01e2127aaad99fe029 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Jan 27 15:04:13 2021 -0500 - - Create ac-02.md - -commit e9289f0587cf2464931015fe4b3443e54d14d97e -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Jan 27 14:56:33 2021 -0500 - - Update ra-05.md - -commit 7abfe1910bc5551c5945f1e0a2e7e42c48c2cb36 -Author: John Willis -Date: Wed Jan 27 14:54:47 2021 -0500 - - PR review feedback: use /redocs for path instead of /docs - -commit d62431f5f2fd64772198f51324c838ef983e2a10 -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Jan 27 14:53:42 2021 -0500 - - Update ra-05.md - -commit 09b6c793e15e683990a7f62ba7ec64525495aab1 -Merge: ba9f832d6 c460eeca6 -Author: Carl Smith -Date: Wed Jan 27 13:50:00 2021 -0500 - - Merge branch 'raft-tdp-main' into epics/398/backend/431-1 - -commit 471f6a25d7550097843a59faeab4dc4f70956280 -Merge: 54a2dfcf0 9a9b22ac9 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 12:14:27 2021 -0500 - - Merge pull request #159 from HHS/ars/adr-deployment-flow - - Proposed ADR: Deployment Flow - -commit 54a2dfcf09e130077c4ba708a5d25126cf0c85cf -Merge: 73a3cc2c8 ba9f832d6 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 12:13:03 2021 -0500 - - Merge pull request #152 from raft-tech/epics/398/backend/431-1 - - Epics/398/backend/431-1 - -commit 26e1097d246f748693d6a60a275f89c3ebc735bd -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Jan 27 10:59:56 2021 -0600 - - Rename definition-of-done to definition-of-done.md - -commit 73a3cc2c832372eb5bdbcd36c18509af87e39c03 -Merge: 27446b4a9 057f27b05 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:52:22 2021 -0500 - - Merge pull request #164 from kniz-raft/patch-9 - - Create 008-object-storage.md - -commit 27446b4a9d5a3b0abed198a39ec842c50aa13401 -Merge: 06eea8b63 8314fd9f8 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:51:23 2021 -0500 - - Merge pull request #163 from kniz-raft/patch-1 - - Create 007-continuous-integration.md - -commit 8314fd9f8875a8bcde0b4f9d0d9a40ad85ab0382 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:50:57 2021 -0500 - - Update docs/Architecture Decision Record/006-continuous-integration.md - -commit 06eea8b6336b0bed7760b0e8cc1b8c5010a35e6f -Merge: e8c9b0d0a 8c84ce850 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:48:03 2021 -0500 - - Merge pull request #145 from kniz-raft/patch-5 - - Update team-meetings.md - -commit 8c84ce85016df204ecced59b295f4682a13dd79f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:47:33 2021 -0500 - - Update docs/How-We-Work/team-charter/team-meetings.md - -commit 46034c993a624908a4c3d56146a32ed6ef1f8d38 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:47:06 2021 -0500 - - Update docs/How-We-Work/team-charter/team-meetings.md - -commit e8c9b0d0a801c97322c6036ba89fd15f05585f4b -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:43:25 2021 -0500 - - Update our-team-and-values.md - - Referenced team composition instead of duplicating team member list - -commit 5239c559f6d6dc6353b08d576641fa6488db2f1b -Merge: 0d6329c4e aede583ae -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:40:58 2021 -0500 - - Merge pull request #143 from kniz-raft/patch-4 - - Update our-team-and-values.md - -commit aede583ae335bfef78b5e4d2a0b9e6268a11ac21 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:39:42 2021 -0500 - - Update docs/How-We-Work/team-charter/our-team-and-values.md - -commit 0d6329c4e5726d782e13ed30a19b35dd0002a47d -Merge: c2e9d2e21 42e1ef982 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:29:48 2021 -0500 - - Merge pull request #142 from kniz-raft/patch-2 - - Update communication-tools.md - -commit 42e1ef982e2fad6970246ea654554f8be680f8a2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:29:01 2021 -0500 - - Update docs/How-We-Work/team-charter/communication-tools.md - -commit 48ddff851d899d94ed8a8112c5fc7f46e8bb1f62 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:28:55 2021 -0500 - - Update docs/How-We-Work/team-charter/communication-tools.md - -commit c2e9d2e218ce76853cceb4457416ba578bcc64c5 -Merge: 634d744d2 cabdb0e29 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 11:26:37 2021 -0500 - - Merge pull request #147 from reitermb/main - - Add Flat File Metadata code doc, Update design guide & research docs, #502, #503 - -commit c8d228bf4bad5517baeddf6a5e79aee8105dd95a -Merge: 86fa24d6e c460eeca6 -Author: John Willis -Date: Wed Jan 27 11:13:48 2021 -0500 - - Merge branch 'raft-tdp-main' into 564-generated-api-docs - -commit 9a9b22ac96a140b95fa225d4febe9da8e152432d -Author: Alex Soble -Date: Wed Jan 27 10:04:04 2021 -0600 - - Update date - -commit 08a1f19ff1c56df20848a32c975bf953473ce1cb -Author: rnafarrete <76232320+rnafarrete@users.noreply.github.com> -Date: Wed Jan 27 10:53:13 2021 -0500 - - Create ra-05.md - -commit cabdb0e29af16874b6d8958fa353533ca297273a -Author: miles-reiter -Date: Wed Jan 27 10:47:45 2021 -0500 - - Update Overview of Research Activities.md - -commit 8cdadd56ad736a08b07fc0532308ae2ef48e625c -Author: miles-reiter -Date: Wed Jan 27 10:40:23 2021 -0500 - - Update Overview of Research Activities.md - -commit 37ab6e093fd455ee0b9dffee70c4030418900cdd -Author: Alex Soble -Date: Wed Jan 27 09:37:29 2021 -0600 - - Edit for clarity - -commit d15f9c7c66bc87c3786e15e2690b45a6852ad96f -Author: Alex Soble -Date: Wed Jan 27 09:29:08 2021 -0600 - - Use new naming schema - -commit ab54dcfb02e69a6ebf6cfea3907be3cab5ad5c2b -Author: Miles Reiter -Date: Wed Jan 27 10:26:58 2021 -0500 - - Update Overview of Research Activities.md - -commit 138ca2e5f16568d399c7e9900cec2dbbaba9233d -Author: Alex Soble -Date: Wed Jan 27 09:21:30 2021 -0600 - - Change ADR number to 8 - -commit c460eeca6614662b69221994db6943348458e743 -Merge: ff29992dc 47ded8a77 -Author: Carl Smith -Date: Wed Jan 27 10:01:57 2021 -0500 - - Merge pull request #580 from raft-tech/hotfix/support-base64-jwt-key - - Hotfix: Add support for Base 64 encoding in JWT_KEY variable - -commit 634d744d27e0056c25bccad1eb657719a60d4c8c -Merge: 34f0a39f8 47ded8a77 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 27 09:53:47 2021 -0500 - - Merge pull request #161 from raft-tech/hotfix/support-base64-jwt-key - - Hotfix/support base64 jwt key - -commit 49bb6140707022974cf0fa8ce5855c3a61f46ab5 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Jan 27 08:52:11 2021 -0600 - - Update and rename 007-continuous-integration.md to 006-continuous-integration.md - -commit 057f27b058069d68d112e36537e7f3ca956f0d50 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Wed Jan 27 08:51:02 2021 -0600 - - Update and rename 008-object-storage.md to 007-object-storage.md - -commit 47ded8a777d5a5be3a10f1d882c5d8aff5ebcc33 -Author: Carlton Smith -Date: Wed Jan 27 09:15:05 2021 -0500 - - update comments - -commit 86fa24d6e7ed99ad447fa567b8703db50adb3ec9 -Author: John Willis -Date: Tue Jan 26 18:08:51 2021 -0500 - - Fix linter error - -commit a2a26be72e42378b1b3c01ddafe4e80bda794075 -Merge: 3a3e8c119 f1caa531a -Author: Spencer Hilvitz -Date: Tue Jan 26 14:52:16 2021 -0800 - - Merge branch 'hotfix/support-base64-jwt-key' of github.com:raft-tech/TANF-app into 406-header-focus-fix - -commit 79b2d5bfc588b9e6a500fabd839bb26894bde10c -Author: John Willis -Date: Tue Jan 26 17:38:07 2021 -0500 - - 564: Add automatic generation of OpenAPI spec documentation - -commit f1caa531a8a1b8d2d8d045dec005c101e140644a -Author: Carlton Smith -Date: Tue Jan 26 15:44:58 2021 -0500 - - move arg back - -commit 37c38f4238e76cf308cd46dcf5811f02223713e7 -Author: Carl Smith -Date: Tue Jan 26 12:36:10 2021 -0500 - - Move to correct directory - -commit 6c93bffa4bf4f4ac71ecadea65a7225b9b50940b -Author: Carl Smith -Date: Tue Jan 26 12:28:10 2021 -0500 - - Create AC-02(05).md - -commit 488283b17f183d0786cf71578b24157d765ddb4a -Author: Aaron Beavers -Date: Tue Jan 26 11:59:12 2021 -0500 - - Add new test for case where key is PEM - -commit 3c2a87755d980c26992c8e543b7ebb873009e06b -Author: Aaron Beavers -Date: Tue Jan 26 11:58:13 2021 -0500 - - Catch correct errors for pem case - -commit 793179c4cedca99105d49c67a0935fca26983a4e -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Jan 26 09:33:23 2021 -0600 - - Create 008-object-storage.md - -commit 1c38c7f7111ee2ebcc0e3d36222b3c364ac71d82 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Jan 26 09:23:14 2021 -0600 - - Create 007-continuous-integration.md - -commit 0ac284e3260581f62d3074713000137f5fa8d27e -Author: Alex Soble -Date: Mon Jan 25 17:30:38 2021 -0600 - - Edit for clarity - -commit ce25854d8daca986035d67c891a067ab99d18c3b -Author: Alex Soble -Date: Mon Jan 25 17:28:32 2021 -0600 - - Add How would this affect #521? "As a developer, I want a staging site..." - -commit 77f8ea34a37aafd742006dbe7044ee998c826ba8 -Merge: d2a20f4bf c728da5f6 -Author: Carl Smith -Date: Mon Jan 25 16:12:32 2021 -0500 - - Merge pull request #584 from raft-tech/hotfix/support-base64-jwt-key - - Hotfix/support base64 jwt key - -commit c728da5f6b426b6f7a288e6ecb07a636ab718f95 -Merge: 126a1e646 825c68b95 -Author: Carlton Smith -Date: Mon Jan 25 15:45:22 2021 -0500 - - Merge branch 'raft-tdp-main' into hotfix/support-base64-jwt-key - -commit 825c68b9585bfc4a42279dff06d9e00752e9cd55 -Merge: 6af620068 ff29992dc -Author: Carlton Smith -Date: Mon Jan 25 15:43:51 2021 -0500 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main - -commit ff29992dcf0a1ebb13e5b5788bcc4e5c275eba2d -Merge: 4d79eb155 7dec82347 -Author: Carl Smith -Date: Mon Jan 25 15:43:25 2021 -0500 - - Merge pull request #582 from raft-tech/revert/501 - - Revert "Merge pull request #538 from raft-tech/issue/510-dotenv" - -commit 03bc332ab6bcb3aeb0c171708334507da00d338a -Author: Aaron Beavers -Date: Mon Jan 25 15:11:09 2021 -0500 - - Add migration for creating initial super user. - -commit 3ef3a6bb51a1a8a3f0e42aa184739c73e5851934 -Author: Aaron Beavers -Date: Mon Jan 25 15:10:31 2021 -0500 - - Allow creating super users through admin UI - -commit 126a1e6460f2c8a301f4ccdf3d9072cdfb8de101 -Author: John Willis -Date: Mon Jan 25 14:13:17 2021 -0500 - - Fix linter error - -commit 2c856ca4aad22caab7163961f053a0b8ce6bbbf8 -Author: John Willis -Date: Mon Jan 25 14:02:54 2021 -0500 - - Hotfix: Add support for Base 64 encoding in JWT_KEY variable - -commit 23acbfd650a59ce94d260af1722e2cd348ce5faa -Author: Miles Reiter -Date: Mon Jan 25 12:28:52 2021 -0500 - - Update Current-TDRS.md - -commit da559113dea2317965401365a4c1056b1b304e99 -Author: Miles Reiter -Date: Mon Jan 25 12:23:23 2021 -0500 - - Update Vision-and-Stakeholders.md - -commit d70e1db11c3d39e797204fc81f74a4db1e9b7f84 -Author: Miles Reiter -Date: Mon Jan 25 12:19:40 2021 -0500 - - Update Overview of Research Activities.md - -commit 34f0a39f8523a9a7a623bf795855666596053f28 -Merge: 0bf83ad0b c7a5f56f4 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 25 12:08:57 2021 -0500 - - Merge pull request #155 from HHS/bh-update-managed-services-boundary - - Update accreditation boundary diagram to include managed services - -commit 0bf83ad0bfb903373ac5c43755fe16daf0519326 -Merge: eeeed5ed2 3ce7c557f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 25 10:40:42 2021 -0500 - - Merge pull request #160 from kniz-raft/patch-8 - - Update and rename Sprint 12 Summary to Sprint-12-Summary.md - -commit 3ce7c557f9313c7fd190f3b4e58af1b21040445f -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Mon Jan 25 09:27:38 2021 -0600 - - Update and rename Sprint 12 Summary to Sprint-12-Summary.md - -commit 96c867d3b05563120aaa9e8da52ffa3b94634aa4 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 25 10:23:56 2021 -0500 - - Update communication-tools.md - - Added 🔒s - -commit e630efca3fb89294abd7957617cc2eb0e0a90ab4 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 25 10:22:13 2021 -0500 - - Update Flat File Metadata Guide.md - - Added link to October research - -commit 55468eabd9b9d9a003c3e4a0270be492945d39e4 -Author: Alex Soble -Date: Mon Jan 25 08:47:01 2021 -0600 - - Proposed ADR for deployment flow - -commit eeeed5ed263000e7b6afd5eac90a53f219faed59 -Merge: de3a0b323 a6697f03a -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 25 10:11:34 2021 -0500 - - Merge pull request #149 from kniz-raft/patch-7 - - Create Sprint 12 Summary - -commit a6697f03adaeac3abbc009ef9c88571a127dbd0f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 25 10:11:18 2021 -0500 - - Update Sprint 12 Summary - -commit 6af620068ced2386d61406752a69053ec8a578a8 -Merge: 7dec82347 4d79eb155 -Author: Carlton Smith -Date: Mon Jan 25 10:06:42 2021 -0500 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main - -commit bf95432af7ea10f88aff0a92362606e460c4241d -Author: snyk-bot -Date: Sat Jan 23 21:32:27 2021 +0000 - - fix: upgrade eslint from 7.16.0 to 7.17.0 - - Snyk has created this PR to upgrade eslint from 7.16.0 to 7.17.0. - - See this package in npm: - https://www.npmjs.com/package/eslint - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit a47efc78a168304074ef295584888fa12e3bcf51 -Author: John Willis -Date: Fri Jan 22 17:36:18 2021 -0500 - - Fix linter errors - -commit e018eeb233ce139ab4030604544723effdf7ddfa -Author: John Willis -Date: Fri Jan 22 17:28:47 2021 -0500 - - Add back stripped down CI docker-compose - -commit 0903b0422a40cb5bdb0901bddb029a57e1a93a52 -Author: John Willis -Date: Fri Jan 22 16:50:36 2021 -0500 - - Make CI use default docker-compose - -commit 4440c6c92d0dc22d22fe6c0641a83e4a9d05c3af -Author: John Willis -Date: Fri Jan 22 16:42:31 2021 -0500 - - Issue 510: Backend only changes to support local env vars - -commit 4d79eb1550a0818f90fcecec0ee59da47c0ff052 -Merge: dd6b2e61a 975028d22 -Author: Carl Smith -Date: Fri Jan 22 15:41:03 2021 -0500 - - Merge pull request #565 from raft-tech/revert-538-issue/510-dotenv - - Revert "Consolidate dotenv files for local development" - -commit 975028d22e44136478198149086810b4263a56c2 -Author: Carl Smith -Date: Fri Jan 22 15:05:54 2021 -0500 - - Revert "Consolidate dotenv files for local development" - -commit de3a0b3235a86f52f4d1640da3d0cbc2731d102a -Merge: c4c2dd8d5 7dec82347 -Author: Alex Soble -Date: Fri Jan 22 13:29:52 2021 -0600 - - Merge pull request #156 from raft-tech/revert/501 - - Revert/501 - -commit 7dec8234735a8bf1ea77794c61a661756068b0e3 -Author: Carlton Smith -Date: Fri Jan 22 14:25:04 2021 -0500 - - Revert "Merge pull request #538 from raft-tech/issue/510-dotenv" - - This reverts commit dd6b2e61a77f11ce228d7834d4dbdb3505da6314, reversing - changes made to a5c3a4f9b9198141d9f838a339a4d3a483a6fa40. - -commit c7a5f56f4c0ee22798019bbd0c2f37758738000f -Author: Brian Hurst -Date: Fri Jan 22 13:22:43 2021 -0500 - - Update accreditation boundary diagram to include managed services - -commit dd6b2e61a77f11ce228d7834d4dbdb3505da6314 -Merge: a5c3a4f9b 42304330f -Author: Carl Smith -Date: Fri Jan 22 12:11:47 2021 -0500 - - Merge pull request #538 from raft-tech/issue/510-dotenv - - Consolidate dotenv files for local development - -commit c4c2dd8d5d35c516307aa9f42ea24a2771395c17 -Merge: 28686af1e 42304330f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 22 10:37:07 2021 -0500 - - Merge pull request #148 from raft-tech/issue/510-dotenv - - Issue/510 dotenv 🚢 - -commit 42304330f35837bf238e42e0152e99fa93268195 -Author: Carlton Smith -Date: Thu Jan 21 14:56:24 2021 -0500 - - remove public_url - -commit bdc7d7bb57168fb7eb8e8806cdb975ad55f7e3a3 -Author: Carlton Smith -Date: Thu Jan 21 14:54:59 2021 -0500 - - update example - -commit d2a20f4bfa6d308ac8534c6eb742fa472cd7acd1 -Merge: 43cbbf87a bc461ba76 -Author: Carl Smith -Date: Thu Jan 21 13:39:12 2021 -0500 - - Merge pull request #553 from raft-tech/issue/510/review - - Issue/510/review - -commit 28686af1e040815ec8688aa68d12e4568286eb77 -Merge: c5fab28ec 1e37cbc64 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 13:15:22 2021 -0500 - - Merge pull request #131 from shubhi-raft/patch-19 - - Create 005-application-authentication.md - -commit 1e37cbc643eca879940ba5b5df6edf634d1b9d20 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 13:14:54 2021 -0500 - - Update docs/Architecture Decision Record/005-application-authentication.md - -commit c5fab28ec000b34392ca2906ad4c19b8007e1519 -Merge: 2a7703a8a 4976376e8 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 13:14:34 2021 -0500 - - Merge pull request #128 from shubhi-raft/patch-18 - - Create 004-configuration-by-environment-variable.md - -commit 4976376e880401c4691a3c1a68e845668c75adfd -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 13:13:47 2021 -0500 - - Update docs/Architecture Decision Record/004-configuration-by-environment-variable.md - -commit bc461ba767ca491305ea74878060bd48a1e35e62 -Merge: 833f9ffe0 43cbbf87a -Author: Carl Smith -Date: Thu Jan 21 12:52:55 2021 -0500 - - Merge branch 'raft-review' into issue/510/review - -commit 3a3e8c11980aec5d0f9be1240574d598cf0e1c9e -Author: Spencer Hilvitz -Date: Thu Jan 21 09:28:58 2021 -0800 - - only focus headerRef.current if it exists - -commit 2a7703a8a7352e514bc8b4fca21651b585a8efc8 -Merge: 9d795ce3a c3552fd07 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 12:19:48 2021 -0500 - - Merge pull request #139 from shubhi-raft/patch-23 - - Create Sprint 4 Summary.md - -commit 9d795ce3a6fcaddb9fe25e8480b532b8e73c0a20 -Merge: e5f6418ab abd5eb5a1 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 12:19:11 2021 -0500 - - Merge pull request #138 from shubhi-raft/patch-22 - - Create Sprint 3 Summary.md - -commit e5f6418ab7cf5c673e79e8242b2ed44118d73ad4 -Merge: 93936b820 2ffcf9bc5 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 12:18:31 2021 -0500 - - Merge pull request #137 from shubhi-raft/patch-21 - - Create Sprint 2 Summary.md - -commit 93936b8200752084dd30fa6ab9e89d275c761ff8 -Merge: 3fbcd826e ce1999892 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 12:18:01 2021 -0500 - - Merge pull request #136 from shubhi-raft/patch-20 - - Create Sprint 1 Summary.md - -commit 3fbcd826e3707c320608b5ad385d0596a55a9bad -Merge: bd4127dd1 d0a55dbe2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 11:31:54 2021 -0500 - - Merge pull request #150 from HHS/ars/remove-lingering-files - - Remove lingering prototype files - -commit bd4127dd1d69a649409675ae9410238056c5f8fa -Merge: 2b88030d5 4db9b2325 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 21 11:29:31 2021 -0500 - - Merge pull request #151 from HHS/bh-visio-diagram - - Add Visio version of boundary diagram - -commit 8cf242ae45475ab232de590667711e36392f3578 -Author: Aaron Beavers -Date: Wed Jan 20 16:46:39 2021 -0500 - - Add docs for report meta data POST endpoints - -commit ccc6dcf95e98440ecb45f1ee2f6e9cf52472f17d -Author: Aaron Beavers -Date: Wed Jan 20 16:26:56 2021 -0500 - - Add tests for creating reports via API - -commit da2a2a7754511e86b1b3a45a4ef43695fc71ffd0 -Author: Aaron Beavers -Date: Wed Jan 20 16:26:30 2021 -0500 - - Add new fixtures for users with specific groups - -commit ab52940883e70a2573c282de3aa4854d20ca1c9f -Author: Aaron Beavers -Date: Wed Jan 20 16:26:11 2021 -0500 - - Add ability to assign groups to user factory - -commit 46795aa7067f6307535ac9801a1dacd2f468f205 -Author: Aaron Beavers -Date: Wed Jan 20 16:41:41 2021 -0500 - - Add report routes to top level router - -commit 55aa7a839308cb01ff67940e4d5428b1f08308f3 -Author: Aaron Beavers -Date: Wed Jan 20 16:22:36 2021 -0500 - - Add routing for reports - -commit e630e10656099a7885ffe26338b4b5a76238c483 -Author: Aaron Beavers -Date: Wed Jan 20 16:14:53 2021 -0500 - - Add report viewset - -commit 11ee476c4c9d30ad387176164e379d47217b83e0 -Author: Aaron Beavers -Date: Wed Jan 20 15:56:38 2021 -0500 - - Add new Permissions - -commit 6e3c469c2289f6df5c59e7bf7907e61881420d32 -Author: Aaron Beavers -Date: Wed Jan 20 15:56:30 2021 -0500 - - Add permission utility functions - -commit 4db9b232583e2260ef3d25928de0c1fef74923b5 -Author: Brian Hurst -Date: Wed Jan 20 15:08:22 2021 -0500 - - Add Visio version of boundary diagram - -commit 9e2e8cf03afdc2c8a64b152f935ec2b5a7a327bf -Author: Aaron Beavers -Date: Wed Jan 20 14:45:50 2021 -0500 - - Add reports serializers - -commit 95b86db2329eb220d56709122d431719d7a6d31b -Author: Aaron Beavers -Date: Wed Jan 20 14:44:39 2021 -0500 - - Add initial reports migrations - -commit 3f217ca7629213997ffce154ca876a33f0395117 -Author: Aaron Beavers -Date: Wed Jan 20 14:44:25 2021 -0500 - - Add report models - -commit ba9f832d6e3fa46dfedc2f94edf9941d65beb102 -Author: Aaron Beavers -Date: Wed Jan 20 14:42:52 2021 -0500 - - report init file - -commit 9e4b8b6444de0e87ed3ddf7ebc022cab3cc3d1c8 -Author: Aaron Beavers -Date: Wed Jan 20 14:42:44 2021 -0500 - - Add report tests folder - -commit eb117bf444daa7540d7ee6d0ce723ce029f08f64 -Author: Aaron Beavers -Date: Wed Jan 20 14:42:03 2021 -0500 - - Add reports app - -commit 1e7d23106d1b77826cca51a54f3b598c01cb4a04 -Author: Aaron Beavers -Date: Wed Jan 20 13:57:53 2021 -0500 - - Remove create user view - -commit c7d11e55ad04b2bb88abd79f671835fa477d7746 -Author: Aaron Beavers -Date: Wed Jan 20 13:57:36 2021 -0500 - - Remove create user serializer import - -commit 8bc7718db842bfd0243b7bde681551f620389d9e -Author: Aaron Beavers -Date: Wed Jan 20 13:55:24 2021 -0500 - - remove create user serializer - -commit 2db8eed58da6d8d0b9125b8367361442e5574e26 -Author: Aaron Beavers -Date: Wed Jan 20 13:55:15 2021 -0500 - - Remove tests for create user endpoint and serializer - -commit c741dab5157b6061456a8b065f85ee4bd86aa265 -Author: Carl Smith -Date: Wed Jan 20 13:23:01 2021 -0500 - - Update README.md - - Add troubleshooting instructions - -commit d0a55dbe25785796a4142bb57dda9e18c4418b3f -Author: Alex Soble -Date: Wed Jan 20 09:41:10 2021 -0600 - - Just remove /static folder - - + /scripts folder is used in the CI process - -commit ba765db843fe586e114208a9d84572d8791bcf63 -Author: Alex Soble -Date: Wed Jan 20 09:40:44 2021 -0600 - - Revert "Remove scripts folder (unused) and static folder (prototype)" - - This reverts commit 6782b01c5afcc1e40dcd8c00832f6a5006830c15. - -commit 6782b01c5afcc1e40dcd8c00832f6a5006830c15 -Author: Alex Soble -Date: Wed Jan 20 09:36:49 2021 -0600 - - Remove scripts folder (unused) and static folder (prototype) - - + See: https://github.com/HHS/TANF-app/pull/150#issuecomment-763713520 - -commit 61730ef461c2a8b0818ee713e1cf73d207cf0ccd -Author: Alex Soble -Date: Wed Jan 20 09:35:06 2021 -0600 - - Remove three hidden prototype files - - See: - - + https://github.com/HHS/TANF-app/pull/150#issuecomment-763684570 - -commit 833f9ffe0c50ee5bf17f8bb08fe6746dcf831ab6 -Merge: 444e56a0b fa60af31e -Author: Carl Smith -Date: Wed Jan 20 10:34:27 2021 -0500 - - Merge pull request #541 from raft-tech/issue/510-dotenv-review-feedback - - Issue 510: dotenv fixes review feedback - -commit 444e56a0b8952d8f47196d9d9f5ba1a1019f001b -Author: Carlton Smith -Date: Wed Jan 20 10:32:44 2021 -0500 - - Revert "Merge branch 'raft-review' into issue/510-dotenv" - - This reverts commit b83146c297b55409ca6aad310864ba0a4553e725, reversing - changes made to c946b3e77465baf23e4ae0b573741e9070406094. - -commit 564f09dd01b3713438040063adbf51b5404ab804 -Author: Alex Soble -Date: Wed Jan 20 04:19:38 2021 -0600 - - Remove additional lingering files - -commit fa60af31ed17b3262a2f144e835a9f1ef1f11916 -Author: John Willis -Date: Tue Jan 19 18:12:20 2021 -0500 - - Fix zap scanner for backend - -commit 3cb1a2f845cb2100fd0cf73a248320550ded7aab -Author: John Willis -Date: Tue Jan 19 18:01:01 2021 -0500 - - Remove unused import - -commit e7a8ceb7901237112406c8787cdb218121fc1134 -Author: John Willis -Date: Tue Jan 19 17:54:05 2021 -0500 - - Set back Pipfile.lock to fix lock file mismatch - -commit d15d416e2be19f57d9f465375b6899afafe07998 -Author: John Willis -Date: Tue Jan 19 17:41:01 2021 -0500 - - Fix CircleCI failures - -commit febd07a71e41adace5da3d521590244561cef5f3 -Author: John Willis -Date: Tue Jan 19 17:19:36 2021 -0500 - - Handle Base64 encoded JWT_KEY dynamically, falling back to support PEM format if needed - -commit 24fbe697962fd9edbf2f8a9c599b3de8e7dd6132 -Author: Alex Soble -Date: Tue Jan 19 16:18:25 2021 -0600 - - Remove lingering prototype files - -commit c55d091f5e6089c403a213c6c1957013aadac150 -Author: John Willis -Date: Tue Jan 19 16:47:42 2021 -0500 - - Address PR feedback - -commit 622893b68ff1982de849410aecc4fc5cd9e7c664 -Author: John Willis -Date: Tue Jan 19 15:37:20 2021 -0500 - - Fix readme code fence, add environment variables to test command - -commit 1d48ce2b0930ff5d16f9f4f29ed1eb0682ea2b00 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Jan 19 12:35:43 2021 -0600 - - Create Sprint 12 Summary - -commit 43cbbf87a4e3ebd48c8f37a70761d914a9996ce9 -Merge: e7fdbd16c b83146c29 -Author: Carl Smith -Date: Tue Jan 19 13:24:47 2021 -0500 - - Merge pull request #539 from raft-tech/issue/510-dotenv - - Issue/510 dotenv - -commit b83146c297b55409ca6aad310864ba0a4553e725 -Merge: c946b3e77 e7fdbd16c -Author: Carl Smith -Date: Tue Jan 19 11:28:36 2021 -0500 - - Merge branch 'raft-review' into issue/510-dotenv - -commit 8128714799c7c368b48b3d0857e51491c1d1a185 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Tue Jan 19 09:28:09 2021 -0600 - - Update definition-of-done - -commit c946b3e77465baf23e4ae0b573741e9070406094 -Author: Carl Smith -Date: Mon Jan 18 18:21:16 2021 -0500 - - Update README.md - - update instructions - -commit 27c98db609dad81b4abaff6d6501e2b91f5b5a5c -Author: Carl Smith -Date: Mon Jan 18 18:20:25 2021 -0500 - - Update README.md - - update instructions - -commit 9bef16802e0274ce27d678141da58030b32f6cba -Merge: 0e2770810 a5c3a4f9b -Author: Carl Smith -Date: Mon Jan 18 16:27:01 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv - -commit a5c3a4f9b9198141d9f838a339a4d3a483a6fa40 -Merge: a57c11616 85842e94c -Author: Carl Smith -Date: Mon Jan 18 16:20:04 2021 -0500 - - Merge pull request #532 from raft-tech/improve-readmes - - improve readmes - -commit 85842e94c9ce1626285c0e4a029cd74c6a178070 -Merge: a619064b9 a57c11616 -Author: Carl Smith -Date: Mon Jan 18 16:10:01 2021 -0500 - - Merge branch 'raft-tdp-main' into improve-readmes - -commit 0e2770810eb3fc404cc680d3e2422278dee628cc -Merge: 17e5ccefa fd4a87c01 -Author: Carlton Smith -Date: Mon Jan 18 16:08:33 2021 -0500 - - Merge branch 'issue/510-dotenv' of github.com:raft-tech/TANF-app into issue/510-dotenv - -commit 17e5ccefa556ec32c7531eea89dd03cf96344303 -Merge: 44a549f51 a57c11616 -Author: Carlton Smith -Date: Mon Jan 18 16:07:52 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv - -commit fd4a87c01fdfd7ed527637f15f08b8a57d320f34 -Merge: 210734270 a57c11616 -Author: John Willis -Date: Sun Jan 17 19:24:42 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv - -commit 2107342708ad8c2483e8e2101ee769e7fe40bcd2 -Author: John Willis -Date: Sun Jan 17 18:58:01 2021 -0500 - - Test zap scanner changes - -commit 7f99d25ace9b58df014322d7d37c6b25c4066945 -Author: John Willis -Date: Fri Jan 15 18:16:08 2021 -0500 - - Test zap scanner changes - -commit dc2b96660b090f4592d927f4a1eab786a2185273 -Author: John Willis -Date: Fri Jan 15 17:59:59 2021 -0500 - - fix the right zap scanner - -commit 00f2e8868f85ec4f74967ea82662a769f9475181 -Author: John Willis -Date: Fri Jan 15 17:55:49 2021 -0500 - - Fix python linting errors - -commit 5fdd8721cacfa8c265044bd768e83bc354b33870 -Author: John Willis -Date: Fri Jan 15 17:49:57 2021 -0500 - - Testing for zap-scanner - -commit ee0d68b5f91966c6642acbc955c60b3659f4df53 -Author: John Willis -Date: Fri Jan 15 17:46:37 2021 -0500 - - Add OIDC_OP_ISSUER - -commit fa6608bea337018785bc71751d6f7b4bd1c4e560 -Author: John Willis -Date: Fri Jan 15 17:44:31 2021 -0500 - - echo statements to test zap-scanner in CI - -commit 545ffbbe31a8aab69b3adc15888affa553a6bc37 -Author: John Willis -Date: Fri Jan 15 17:40:52 2021 -0500 - - Add CLIENT_ASSERTION_TYPE to docker-compose.ci - -commit 773c0dbdfe7da387304eedb98c055fcab3e86ffe -Author: John Willis -Date: Fri Jan 15 17:38:18 2021 -0500 - - Use CI docker compose for zap-scanner - -commit 6200365122101931570ba68e100c27f66b0e1e8e -Author: John Willis -Date: Fri Jan 15 17:34:23 2021 -0500 - - Use separate settings for tests - -commit 755d4b065ef9edb22c47e41349505dcb2af844c1 -Author: John Willis -Date: Fri Jan 15 17:28:12 2021 -0500 - - Add SASS_PATH to jest unit test command in CircleCI - -commit 1721f08fbbedf9452f3709063791dfde90fc63e1 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Jan 15 15:20:25 2021 -0600 - - Update definition-of-done - -commit ce3268496fdb2f5c889481e9de73966c76cadda9 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Jan 15 15:18:22 2021 -0600 - - Update definition-of-done - -commit d2ea98f4398a313ded3493ad3a0e9950790ec5a1 -Author: John Willis -Date: Fri Jan 15 15:35:23 2021 -0500 - - Pass more env variables in from CircleCI - -commit a5959637292141d2b789a322aa38aaabdc59f037 -Author: Miles Reiter -Date: Fri Jan 15 14:55:42 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 6049febe207d23e796f82b50a254b4400b794eff -Author: John Willis -Date: Fri Jan 15 14:29:59 2021 -0500 - - Pass more env variables in from CircleCI - -commit 2b88030d57ca9160559f2a73d0d0c9e5bdddfef7 -Merge: 2165faea1 a619064b9 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 15 14:26:22 2021 -0500 - - Merge pull request #129 from raft-tech/improve-readmes - - Improve readmes - -commit a619064b9b83e5182fb905c4946a640a17461b4a -Author: Carl Smith -Date: Fri Jan 15 14:21:52 2021 -0500 - - Update README.md - - fixed typo - -commit 5b2d17c52e1dc48ecfa4999cdf195eeb9378bb1a -Author: John Willis -Date: Fri Jan 15 14:11:20 2021 -0500 - - Allow CircleCI environment variables to be passed in to base compose file - -commit 628e9954d7716f3b58d6280d5ac6fce3af7f9bf4 -Author: John Willis -Date: Fri Jan 15 14:00:58 2021 -0500 - - Fix flag placement in circleci config - -commit 000ece59f3d3d7b658649ce3276e1652c901e327 -Author: John Willis -Date: Fri Jan 15 13:57:47 2021 -0500 - - Ignore docker-compose overrides for CircleCI - -commit 00d71fb525b1ac165c4f8273c98e519c57d31b23 -Author: John Willis -Date: Fri Jan 15 13:51:14 2021 -0500 - - Split out env file configuration into docker-compose override for local dev - -commit 3afc4e8772139702012a708704889a76e8c0020c -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Jan 15 12:25:29 2021 -0600 - - Create definition-of-done - -commit 627c5bfb1385caa9aa062672a01218a0ea678250 -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Jan 15 12:16:22 2021 -0600 - - Update team-meetings.md - -commit 884f9e12ac05112621e9a934eae55ba7aa219560 -Merge: c5da0e1ae 2fea0a07e -Author: Miles Reiter -Date: Fri Jan 15 12:50:46 2021 -0500 - - Merge pull request #2 from shubhi-raft/patch-24 - - Update Flat File Metadata Guide.md - -commit 44a549f51fd632909032b2dce2c55e3d894b49ec -Author: John Willis -Date: Fri Jan 15 12:39:53 2021 -0500 - - Handle Base64 encoded JWT_KEY to account for docker env_file issue - -commit 2165faea16ae1fa0fe0e1a806e29db9b91c00491 -Merge: 04d7dc199 7246b1a74 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 15 12:31:03 2021 -0500 - - Merge pull request #135 from HHS/bh-remove-yarn-lock - - Remove leftover yarn.lock - -commit a57c116166188b7685d47271ee9840c085f1d114 -Merge: dce99c7da bd9bf5e09 -Author: Carl Smith -Date: Fri Jan 15 12:25:34 2021 -0500 - - Merge pull request #534 from raft-tech/shubhi-raft-patch-8 - - Update issue templates - -commit 9001597e49413e2fa8763f21d92b375ba1ec237d -Author: Carl Smith -Date: Fri Jan 15 12:14:59 2021 -0500 - - Update README.md - - small text updates - -commit 04d7dc199ba7af18a680f995a8f23a6025a18055 -Merge: 59fc35514 a7410ddb0 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 15 11:27:45 2021 -0500 - - Merge pull request #127 from shubhi-raft/patch-17 - - Create Acceptance-Criteria-for-Django-admin-console - -commit 2e149c613e0207f53730ddaf68201de8ba6076b0 -Merge: 30e30b1a7 dce99c7da -Author: John Willis -Date: Fri Jan 15 11:21:29 2021 -0500 - - Merge branch 'raft-tdp-main' into issue/510-dotenv - -commit 59fc355143e9821024abe2f65b535a508051bc05 -Merge: db0f3a3f5 12858d471 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 15 11:04:33 2021 -0500 - - Merge pull request #144 from HHS/bh-a11y-doc-updates - - Small tweaks to a11y doc - -commit 12858d471c72a492e80787f861834f417dac8ce2 -Author: Brian Hurst -Date: Fri Jan 15 10:27:46 2021 -0500 - - Small tweaks to a11y doc - -commit d32f7ba34631c91c051eebf60deb6157a9e22277 -Author: John Willis -Date: Fri Jan 15 10:23:23 2021 -0500 - - Revert "Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes" - - This reverts commit 94ddc717944a73580f26cefc61df719dbf68a15c. - -commit 7a3e18f5eac62e2bdd4c4c7dade0d9e0967d5321 -Author: John Willis -Date: Fri Jan 15 10:21:28 2021 -0500 - - Revert "Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes" - - This reverts commit 30e30b1a77dd68a9f18cfb5bd522206a6210b277. - -commit 81ae522ef872af64426d08e08ca5f2483d463a7f -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Jan 15 09:02:56 2021 -0600 - - Update our-team-and-values.md - -commit 1947dac50b34d03787aa5c1aa42117922f94eee0 -Author: Carl Smith -Date: Fri Jan 15 10:02:19 2021 -0500 - - Update README.md - - equalize emphasis - -commit 3cbf6fd19cc49b5b1dda19bb4b6cc4bb8dcfe46a -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Fri Jan 15 08:56:21 2021 -0600 - - Update communication-tools.md - -commit db0f3a3f59dca466990eca86542f01a441a80ca8 -Merge: 229b84477 2e11fd39d -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 15 09:30:26 2021 -0500 - - Merge pull request #141 from HHS/bh-docs-assumptions - - Add assumptions to project impact doc - -commit 2e11fd39d84eca354de2fd8e174a23a6090922c1 -Author: Brian Hurst -Date: Fri Jan 15 09:14:35 2021 -0500 - - Add assumptions to project impact doc - -commit c5da0e1ae4df883b5cc986b707f671f8020a92ff -Author: Miles Reiter -Date: Thu Jan 14 22:38:45 2021 -0500 - - Update Design-Guide.md - -commit a306016aeb619abebc81bfa0b75d973db6963b7f -Author: Miles Reiter -Date: Thu Jan 14 22:35:01 2021 -0500 - - Update Design-Guide.md - -commit 2fea0a07e12bb9baedd52cfa79789b193fe0e9b2 -Author: Shubhi Mishra -Date: Thu Jan 14 21:31:55 2021 -0500 - - Update Flat File Metadata Guide.md - - added TANF header image and added link to concept prototype - -commit a7410ddb0d0af14cc52caede3dccacc89e157e32 -Author: Shubhi Mishra -Date: Thu Jan 14 20:55:19 2021 -0500 - - Update Acceptance-Criteria-for-Django-admin-console - - updates to address feedback - -commit 587d4591156d0e3b2efd561bddb4811607df7cce -Merge: 30e30b1a7 dce99c7da -Author: Shubhi Mishra -Date: Thu Jan 14 20:28:26 2021 -0500 - - Merge branch 'raft-tdp-main' into improve-readmes - -commit 79fe44bb0d8ef181f5b545a5a24c52121befa51d -Merge: e521c842e 229b84477 -Author: Miles Reiter -Date: Thu Jan 14 19:05:58 2021 -0500 - - Merge remote-tracking branch 'upstream/main' into main - -commit 30e30b1a77dd68a9f18cfb5bd522206a6210b277 -Author: John Willis -Date: Thu Jan 14 18:45:28 2021 -0500 - - Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes - -commit 94ddc717944a73580f26cefc61df719dbf68a15c -Author: John Willis -Date: Thu Jan 14 18:40:57 2021 -0500 - - Migrate to .env files as per https://github.com/raft-tech/TANF-app/issues/510; update READMEs to reflect environment variable changes - -commit 5e1ae65ff4b12ca02a5af144b36e76610c6e577e -Author: Carlton Smith -Date: Thu Jan 14 16:46:25 2021 -0500 - - favor fe - -commit 8ad1a8993b995a91034dffdb803666218ece0905 -Merge: 34eac0c1a 0d2053cd1 -Author: Carlton Smith -Date: Thu Jan 14 16:44:49 2021 -0500 - - Merge branch 'backend/517/admin-mfa' of github.com:raft-tech/TANF-app into backend/517/admin-mfa - -commit 34eac0c1ab077c9d7ab23edaae4ac68588efafbd -Author: Carlton Smith -Date: Thu Jan 14 16:44:19 2021 -0500 - - update user management doc - -commit 0d2053cd10ddfcfa45a35ca1f947e581bc2dbcf9 -Merge: e06bff99a dce99c7da -Author: Carl Smith -Date: Thu Jan 14 16:39:01 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/517/admin-mfa - -commit 229b84477e1a915581861a6fa1b56167898a0aa0 -Merge: 3071fd355 498779825 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 14 16:05:28 2021 -0500 - - Merge pull request #140 from HHS/bh-docs-records-management - - Add records management doc - -commit 49877982504c376b71acbd07d9c9a131613b07b2 -Author: Brian Hurst -Date: Thu Jan 14 15:53:35 2021 -0500 - - Add records management doc - -commit 3071fd35533a60fdef35db3fffa9f320d0ae23ae -Merge: 60d4a0775 d9e5ef04a -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 14 15:19:00 2021 -0500 - - Merge pull request #132 from kniz-raft/patch-1 - - Update Team-Composition.md - -commit c3552fd07bb1f2f8a15470204d73a4be3425c7c6 -Author: Shubhi Mishra -Date: Thu Jan 14 15:18:58 2021 -0500 - - Create Sprint 4 Summary.md - - Add sprint 4 summary - -commit abd5eb5a1d527eb582ce182cedc590ee7bbe85a8 -Author: Shubhi Mishra -Date: Thu Jan 14 15:17:13 2021 -0500 - - Create Sprint 3 Summary.md - - Add sprint 3 summary - -commit 60d4a0775935ae027a622754a8461c029457c471 -Merge: f73ebf1f8 40af274ac -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 14 15:16:45 2021 -0500 - - Merge pull request #134 from HHS/bh-user-mng-screenshots - - Move screenshots for user role management documentation to new location - -commit 2ffcf9bc568979e2d227d107c87d17d45a1673a7 -Author: Shubhi Mishra -Date: Thu Jan 14 15:14:11 2021 -0500 - - Create Sprint 2 Summary.md - - Add Sprint 2 Summary - -commit f73ebf1f824f0277a9cbc8207dda52a5c405b946 -Merge: fd5890d1c d5e227f7f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 14 15:13:31 2021 -0500 - - Merge pull request #133 from HHS/bh-revised-diagram - - Update boundary diagram - -commit ce19998924798994c204f7e6949be1be6316def6 -Author: Shubhi Mishra -Date: Thu Jan 14 15:12:35 2021 -0500 - - Create Sprint 1 Summary.md - - Create Sprint 1 summary - -commit e06bff99ae06ff549a2b48e80d0b8a42e31780fa -Author: Carlton Smith -Date: Thu Jan 14 14:29:54 2021 -0500 - - redirect admin login to login.gov - -commit c514cd1f1e9c25e11b786a5fe74ebb55f2abceb9 -Author: Spencer Hilvitz -Date: Thu Jan 14 10:57:19 2021 -0800 - - REACT_APP_BACKEND_URL was created twice in .env.production - removed it - -commit 8effe94e0551fedb44724fb820f45059a55c9710 -Author: Spencer Hilvitz -Date: Thu Jan 14 10:41:39 2021 -0800 - - add REACT_APP_EVENT_THROTTLE_TIME to jsDocs in IdleTimer, add correct vars to Dockerfile.dev - -commit e7fdbd16cf4aac79aa751f7453ab9503fea5b14e -Merge: 9963807a2 923fe82fc -Author: Carl Smith -Date: Thu Jan 14 13:17:22 2021 -0500 - - Merge pull request #535 from raft-tech/update-raft-review - - Update raft review - -commit 923fe82fc1a856ed9780f9bfdedb583293d0f26c -Merge: dce99c7da 9963807a2 -Author: Carl Smith -Date: Thu Jan 14 12:59:21 2021 -0500 - - Merge branch 'raft-review' into update-raft-review - -commit bd9bf5e0951b7c31be6cd454cfa98c42b16ee5a3 -Merge: d0861d583 dce99c7da -Author: Carl Smith -Date: Thu Jan 14 12:46:41 2021 -0500 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-8 - -commit 7246b1a74d404f5d31a8ef44c8cff70857f39a42 -Author: Brian Hurst -Date: Thu Jan 14 12:37:00 2021 -0500 - - Remove leftover yarn.lock - -commit fd5890d1ccec5a8e4f7c062e774cfe5c7873f105 -Merge: 27c31acbf 2c15d4e0f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Jan 14 12:33:36 2021 -0500 - - Merge pull request #130 from raft-tech/change-docker - - Change docker - -commit 28eb3fdab6063c6ebb4f25e4f07fbb0d4ea1eef2 -Merge: 794e7d8f1 dce99c7da -Author: Spencer Hilvitz -Date: Thu Jan 14 09:32:37 2021 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 406-header-focus-fix - -commit 40af274ac022670054c0849516c4ce4a0c375979 -Author: Brian Hurst -Date: Thu Jan 14 12:29:09 2021 -0500 - - Move screenshots for user management documentation to new location - -commit dce99c7da55367dc94e5315418d4cf1aa0d6d5f0 -Merge: c9c3a56ab 2c15d4e0f -Author: Carl Smith -Date: Thu Jan 14 11:17:00 2021 -0500 - - Merge pull request #533 from raft-tech/change-docker - - Change docker - -commit d9e5ef04a7ce03926d03f4586befd5fba31b45be -Author: Kati N <77121362+kniz-raft@users.noreply.github.com> -Date: Thu Jan 14 10:16:52 2021 -0600 - - Update Team-Composition.md - - Fixed a typo on Jen's last name - -commit c4d78fc606968a8270fc388cd6ff71426e84a98f -Author: Shubhi Mishra -Date: Thu Jan 14 10:56:46 2021 -0500 - - Create 005-application-authentication.md - - ADR for Application Authentication - -commit d0861d583c6b1b085be8cddd726b2e6e84352ad6 -Author: Shubhi Mishra -Date: Thu Jan 14 10:42:38 2021 -0500 - - Update issue templates - - AC updated to include updating README - -commit 2c15d4e0f3859c5e66eddcd598f97485e556bc75 -Merge: c97a378ce 27c31acbf -Author: Carlton Smith -Date: Thu Jan 14 10:35:17 2021 -0500 - - Merge branch 'main' into change-docker - -commit c97a378cebf913d2ac4609f6ef47f68edfaa3806 -Author: Carlton Smith -Date: Thu Jan 14 10:35:01 2021 -0500 - - update docker account - -commit c98f76c73093406cf8d141b3a8a4dd5218e328d0 -Author: Carl Smith -Date: Thu Jan 14 09:50:49 2021 -0500 - - Update README.md - - update spelling - -commit 2fc5eda210fc1e54d7e94326fd87484796f15df4 -Merge: 8d4625ab7 27c31acbf -Author: Carlton Smith -Date: Thu Jan 14 09:48:17 2021 -0500 - - Merge branch 'main' into improve-readmes - -commit d5e227f7fe9c44cdc0292a3bcfc3305ef26f0141 -Author: Brian Hurst -Date: Thu Jan 14 09:41:03 2021 -0500 - - Update boundary diagram - -commit 8d4625ab7809fffd4f235091a305fc73eb0dddd3 -Author: Carl Smith -Date: Thu Jan 14 09:37:16 2021 -0500 - - Update README.md - - Staging will be working soon, but not quite yet - -commit 5c0d4884e87309aa5ab89d87ee120b4d1760471f -Author: bsharma -Date: Thu Jan 14 00:39:37 2021 -0500 - - fix 404 to env vars file - -commit 48a9d43960c8562c0bcd7bdcbbe0785307b06e4c -Author: bsharma -Date: Thu Jan 14 00:29:25 2021 -0500 - - improve readmes - -commit a54cd7d683b27b9db6094a956450b5ef3a1d0e17 -Author: Carlton Smith -Date: Wed Jan 13 16:01:30 2021 -0500 - - new login - -commit c9c3a56abb93319268d6f25f51e690c21dbf921d -Merge: 588071209 cef594205 -Author: Carl Smith -Date: Wed Jan 13 15:19:14 2021 -0500 - - Merge pull request #472 from raft-tech/idle-timer-events-fix - - Add focus event to idleTimer to fix small accessibility concern - -commit cef594205426b9fde9036ff53bcfc8558ededbec -Merge: e4c728099 588071209 -Author: Carl Smith -Date: Wed Jan 13 15:09:54 2021 -0500 - - Merge branch 'raft-tdp-main' into idle-timer-events-fix - -commit 27c31acbf4d04eb497c0c43e38867379f8923da7 -Merge: 03f84f915 e4c728099 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 13 14:57:35 2021 -0500 - - Merge pull request #118 from raft-tech/idle-timer-events-fix - - Idle timer events fix - -commit c260736b99aafc9863855ae1ac7d8f46455993a0 -Author: Shubhi Mishra -Date: Tue Jan 12 22:18:05 2021 -0500 - - Create 004-configuration-by-environment-variable.md - - Adds Configuration by Environment Variable to ADR - -commit 58807120930b8df8c161a520f8e7f0e1040b1e8c -Merge: f06022530 4b7292bed -Author: Carl Smith -Date: Tue Jan 12 14:13:38 2021 -0500 - - Merge pull request #471 from raft-tech/combo-box-label-fix - - Fix combo box label bug and bold labels on `/edit-profile` - -commit 4b7292bed8a1b5a8cf5cb230c3ee99e9abaf35b6 -Merge: 80b8c8ac4 f06022530 -Author: Carl Smith -Date: Tue Jan 12 13:57:05 2021 -0500 - - Merge branch 'raft-tdp-main' into combo-box-label-fix - -commit f060225308a8d75bec2ca701c63f96e965c4c28d -Merge: 3b0a9647f a2b798a87 -Author: Carl Smith -Date: Tue Jan 12 13:54:54 2021 -0500 - - Merge pull request #529 from raft-tech/ars/remove-archived-prototype-code - - Ars/remove archived prototype code - -commit 39a87872c2d6af72fc11aa6a76bbf4c3fc91f8f9 -Author: Shubhi Mishra -Date: Tue Jan 12 13:51:48 2021 -0500 - - Create Acceptance-Criteria-for-Django-admin-console - - cceptance criteria for dev issues when using Django Admin Console - -commit a2b798a8711290456b7d9744b76ffaf544e750e1 -Merge: 971a2c4f9 3b0a9647f -Author: Carl Smith -Date: Tue Jan 12 13:02:08 2021 -0500 - - Merge branch 'raft-tdp-main' into ars/remove-archived-prototype-code - -commit 03f84f91524095f2d23ff1a5d96b78d0bcd5905a -Merge: 5ec26c0cb 4edfe92ac -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 12 12:54:10 2021 -0500 - - Merge pull request #126 from shubhi-raft/patch-16 - - Create STT attribute guide.md - -commit 4edfe92ac4d78c702a7bf4c1aca4c829cadd4d46 -Author: Shubhi Mishra -Date: Tue Jan 12 12:49:27 2021 -0500 - - Create STT attribute guide.md - - Add STT attribute guide to user research - -commit 5ec26c0cbe6605f931ea9fcd319abac457dfc78c -Merge: 56f49a03c 80b8c8ac4 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 12 12:47:49 2021 -0500 - - Merge pull request #116 from raft-tech/combo-box-label-fix - - Combo box label fix - ACs are met, this looks good! - -commit 56f49a03c7ba1ad25007f3254cdd8bd79594a3bc -Merge: c31e85d60 94fd36341 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 12 11:54:10 2021 -0500 - - Merge pull request #124 from shubhi-raft/patch-14 - - Create 003 Application hosting.md - -commit 3b0a9647fa622eed13d26b1b3f9b038ea8dd21e9 -Merge: fe34eb126 0ed999589 -Author: Carl Smith -Date: Tue Jan 12 10:18:21 2021 -0500 - - Merge pull request #526 from raft-tech/backend/309/final - - Backend/309/final - -commit c31e85d60559525090f6ef806a52394786f16807 -Merge: cc9fad471 84bfaea11 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 12 10:08:51 2021 -0500 - - Merge pull request #123 from shubhi-raft/patch-13 - - Create 002 Application architecture.md - -commit cc9fad471c20cc6cd62665a92d741e96478ae6c3 -Merge: a6756359b 0ed999589 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jan 12 09:33:46 2021 -0500 - - Merge pull request #121 from raft-tech/backend/309/final - - Backend/309/final this is approved, with follow on issues. thanks! - -commit a6756359b22c2a3eb3dd7f1a4aa7dddad5eb84a4 -Merge: 51d227cc5 971a2c4f9 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 11 16:48:20 2021 -0500 - - Merge pull request #119 from HHS/ars/remove-archived-prototype-code - - Remove archived prototype code - Approving the deletion of the old prototype code, as it has been archived in two locations - -commit 94fd3634140c6857eb48860ae9b6a8cd647e0af2 -Author: Shubhi Mishra -Date: Mon Jan 11 14:40:37 2021 -0500 - - Create 003 Application hosting.md - -commit 84bfaea118828692245c80e90944fb664cfc7276 -Author: Shubhi Mishra -Date: Mon Jan 11 14:38:56 2021 -0500 - - Update 002 Application architecture.md - -commit af81e4e7bb9cbb31cfe59198d54964c69e01756f -Author: Shubhi Mishra -Date: Mon Jan 11 13:36:13 2021 -0500 - - Create 002 Application architecture.md - - Adding application architecture - -commit 51d227cc5d7df70e4d289f04cfa2297b553d03ac -Merge: c2a35a5a5 495c74c86 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 11 11:59:49 2021 -0500 - - Merge pull request #122 from shubhi-raft/patch-12 - - Update Team-Composition.md - -commit 495c74c86b62eb40055d654f04a80de4e7a6bf6e -Author: Shubhi Mishra -Date: Mon Jan 11 11:56:13 2021 -0500 - - Update Team-Composition.md - -commit 6882e1e273e34286c9a09f0c8c3ac35d7ce6167d -Author: Shubhi Mishra -Date: Mon Jan 11 11:49:26 2021 -0500 - - Update Team-Composition.md - - Updated team composition - -commit e521c842ea6f3a719fe0d40f093c9785a6e699ea -Author: miles-reiter -Date: Sun Jan 10 18:55:33 2021 -0500 - - Update Flat File Metadata Guide.md - -commit e0c649e441c25233d581a9e5333bc4046cc121c7 -Author: miles-reiter -Date: Sun Jan 10 18:54:38 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 8ae058dfbf77d01d83d5efcebcde80adde30d759 -Author: miles-reiter -Date: Sun Jan 10 18:53:35 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 56e90217ec30f9c5796912755bfc7264e0bc9af3 -Author: miles-reiter -Date: Sun Jan 10 18:45:38 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 8a6b630ec4477268cc4e82955e9c73b513dbe6bd -Author: miles-reiter -Date: Sun Jan 10 18:40:37 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 5a3b83931e85908a6bc5df524fdc4fe82754a548 -Author: miles-reiter -Date: Sun Jan 10 18:20:20 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 25344f69a4313c87e81e38a7618b9de6105e59bc -Author: miles-reiter -Date: Sun Jan 10 18:19:58 2021 -0500 - - Update Flat File Metadata Guide.md - -commit ad6b0222faaeda1a7da1e0fad0a46813bc737983 -Author: miles-reiter -Date: Sun Jan 10 18:17:30 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 52c678e84468c23c4acf7c3c47a602108983f5f8 -Author: miles-reiter -Date: Sun Jan 10 18:16:36 2021 -0500 - - Update Flat File Metadata Guide.md - -commit ac6252c8604eb332bcd010086868ccce2ac6565d -Author: miles-reiter -Date: Sun Jan 10 18:15:09 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 21dda91e2bba678e25db0af87f4f118a7c536cd1 -Author: miles-reiter -Date: Sun Jan 10 18:07:45 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 29515d0e702300c3ba73f94715d7b37f67b815b9 -Author: miles-reiter -Date: Sun Jan 10 18:07:14 2021 -0500 - - Update Flat File Metadata Guide.md - -commit 15c748d4f167ab79849f29f82f0b2d10e5f66e92 -Author: miles-reiter -Date: Sun Jan 10 18:06:41 2021 -0500 - - Update Flat File Metadata Guide.md - -commit e90838a232331090c34d6391479a464df0efddf0 -Merge: 8a4d59074 d21dfb9eb -Author: miles-reiter -Date: Sun Jan 10 18:05:16 2021 -0500 - - Merge branch 'main' of https://github.com/reitermb/TANF-app into main - -commit 8a4d59074f38f5887effd647d3fbd3ad7ba9e23b -Author: miles-reiter -Date: Sun Jan 10 18:05:14 2021 -0500 - - Create Flat File Metadata Guide.md - -commit 0ed999589b1713a6a8eb99116a92d3404577f167 -Author: Carlton Smith -Date: Fri Jan 8 15:32:52 2021 -0500 - - update docs with current groups - -commit 9963807a2de3363a4e6b98c6cd825460966635f8 -Merge: 6507f1bbb 3897df048 -Author: Carl Smith -Date: Fri Jan 8 15:07:09 2021 -0500 - - Merge pull request #525 from raft-tech/reviews/309 - - Reviews/309 - -commit 3897df048991e2f1a5a88ac08c012d19f20958de -Merge: d926e977a 6507f1bbb -Author: Carl Smith -Date: Fri Jan 8 14:53:11 2021 -0500 - - Merge branch 'raft-review' into reviews/309 - -commit d926e977a175e724dcbbc427d12eb7c8ff0ee8c2 -Author: Carlton Smith -Date: Fri Jan 8 14:48:49 2021 -0500 - - move role managagement to new location - -commit c7fce46b74f4ace0f5f25b1c49cae578723a1365 -Author: Carlton Smith -Date: Fri Jan 8 14:32:38 2021 -0500 - - update test - -commit b5461ba5ffbdff244e2afb32789cdd3fd73b4084 -Author: Carlton Smith -Date: Fri Jan 8 12:46:48 2021 -0500 - - add migration to use unneeded role - -commit c2a35a5a55c4953fe5efb35a22b540679b82e7db -Merge: c5bdb808b d504bebab -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Jan 8 12:01:53 2021 -0500 - - Merge pull request #120 from shubhi-raft/patch-11 - - Update Overview of Research Activities.md - -commit 6507f1bbbde5d59bc19cd33555f348bca26cb129 -Merge: 61695a947 15b77488f -Author: Carl Smith -Date: Thu Jan 7 15:35:38 2021 -0500 - - Merge pull request #523 from raft-tech/309-deploy-2 - - add comment - -commit 15b77488fca91d718397cc7cf8ad2f8a51da4325 -Merge: 8c4d649ec 61695a947 -Author: Carl Smith -Date: Thu Jan 7 15:19:43 2021 -0500 - - Merge branch 'raft-review' into 309-deploy-2 - -commit 8c4d649ec34f6b62cc8787e65840b0b6e7de5fb4 -Author: Carlton Smith -Date: Thu Jan 7 15:15:02 2021 -0500 - - add comment - -commit 971a2c4f92356d0248ecbcd75f2928e0856c88af -Author: Alex Soble -Date: Thu Jan 7 14:05:16 2021 -0600 - - Remove deploy scripts from prototype - -commit 312df0739c74d2182457ab8fc1f79424ede41e6b -Author: Alex Soble -Date: Thu Jan 7 13:47:54 2021 -0600 - - Update README - -commit c34803fe17a3e0032d3903f63d85bb63a36d22ce -Author: Alex Soble -Date: Thu Jan 7 13:29:21 2021 -0600 - - Remove prototype docker-compose.yml - -commit 7786273ac43bed6309b98ccee201cc29c75bf8b1 -Author: Alex Soble -Date: Thu Jan 7 13:22:44 2021 -0600 - - Remove prototype manage.py - -commit 51995050bbff91465f797b2a9f715971fd738c97 -Author: Alex Soble -Date: Thu Jan 7 13:20:37 2021 -0600 - - Remove prototype Dockerfile - -commit d504bebab8e289a9c9fdc9b7093f62b5312efb51 -Author: Shubhi Mishra -Date: Thu Jan 7 12:52:55 2021 -0500 - - Update Overview of Research Activities.md - - Update overview with the round 3 research activities - -commit 61695a947d89c8c3be47f407e3068c7930d25844 -Merge: 5b0e807cc c8be81cdd -Author: Carl Smith -Date: Thu Jan 7 12:36:27 2021 -0500 - - Merge pull request #522 from raft-tech/backend/309/dynamic-roles-permissions - - no prompts for collectstatic - -commit c8be81cdd600bbd0049f7b0c981c1f55d2f5a632 -Merge: 50a0d6e5a 5b0e807cc -Author: Carl Smith -Date: Thu Jan 7 12:23:15 2021 -0500 - - Merge branch 'raft-review' into backend/309/dynamic-roles-permissions - -commit 9027690a3643813f8ca5a48795800340607b288d -Author: Alex Soble -Date: Thu Jan 7 11:21:12 2021 -0600 - - Remove scripts related to prototype app - -commit c1a1f17c36999e3dbc3a9957150c5b6fa9e35871 -Author: Alex Soble -Date: Thu Jan 7 11:00:12 2021 -0600 - - Remove additional prototype folders - -commit d915ec0d31bec240e2dfab469f3c09bfc5819b2f -Author: Alex Soble -Date: Thu Jan 7 10:59:34 2021 -0600 - - Remove prototype compliance and app folders - -commit 50a0d6e5a4d47a7011545e7959960a62962a1281 -Author: Carlton Smith -Date: Thu Jan 7 11:55:47 2021 -0500 - - no prompts for collectstatic - -commit c5bdb808bf8218b191f7b2abbddcb846fa0a2f1c -Merge: 0f082e2d2 6dc470026 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 6 16:36:09 2021 -0500 - - Merge pull request #117 from shubhi-raft/patch-10 - - Create 001 ADR template.md - -commit 0f082e2d2eadff3ee213eea2ebda55e85dd000aa -Merge: 7a726603a 0a4dffc0f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Jan 6 16:26:56 2021 -0500 - - Merge pull request #115 from shubhi-raft/patch-9 - - Create Sprint 11 Summary.md - -commit 5b0e807cce653cf33e7c7b80d971101583c92d94 -Merge: cc7d44045 d0e01eed4 -Author: Carl Smith -Date: Wed Jan 6 14:32:22 2021 -0500 - - Merge pull request #516 from raft-tech/309-deploy - - 309 deploy - -commit e4c72809913d8643ef094e30faa4b2fbb715f235 -Merge: 91d942f38 7a726603a -Author: Carlton Smith -Date: Wed Jan 6 14:13:03 2021 -0500 - - Merge branch 'main' into idle-timer-events-fix - -commit 6dc470026c2b80d5660d6888721a8c1cb84d1134 -Author: Shubhi Mishra -Date: Wed Jan 6 14:10:29 2021 -0500 - - Create 001 ADR template.md - - Adding template for recoding architectural decisions - -commit d0e01eed48eb51873f5159dc602997705dcbf1e5 -Author: Carlton Smith -Date: Wed Jan 6 13:40:47 2021 -0500 - - complete merge - -commit 5d873a9e00cf349f6f66fff4281638e7626d327e -Merge: 558a8ac67 cc7d44045 -Author: Carlton Smith -Date: Wed Jan 6 13:37:16 2021 -0500 - - merge raft-review - -commit 558a8ac675d6a012c6d6de1360a15af54340c025 -Author: Carlton Smith -Date: Wed Jan 6 09:49:17 2021 -0500 - - update jwt in readme - -commit 0a4dffc0f2387ebb35bedbd3d27ce4379faf8b22 -Author: Shubhi Mishra -Date: Wed Jan 6 07:22:21 2021 -0500 - - Update Sprint 11 Summary.md - -commit 80b8c8ac4d6520231a2527bacc7cc3dabd76c870 -Merge: e5ed6b747 7a726603a -Author: Carlton Smith -Date: Tue Jan 5 16:28:45 2021 -0500 - - Merge branch 'main' into combo-box-label-fix - -commit 6b69d1059d8388ebd0e5c2854539212752507155 -Merge: 1e03954f2 7a726603a -Author: Carlton Smith -Date: Tue Jan 5 15:43:03 2021 -0500 - - Merge branch 'main' into backend/309/dynamic-roles-permissions - -commit 1e03954f203a2de9e6a272ad159675d33dc4987a -Author: Carlton Smith -Date: Tue Jan 5 13:57:14 2021 -0500 - - linting - -commit d21dfb9eb77d3b0aa338ba0db5b0e57bdbaaa62f -Author: Miles Reiter -Date: Tue Jan 5 13:48:19 2021 -0500 - - Update Stakeholders-and-Personas.md - -commit 1c5b4f8f6ad7851732ffa84fa6fc57b3dd7598c7 -Author: Carlton Smith -Date: Tue Jan 5 13:20:01 2021 -0500 - - update permissions - -commit 55f3c71d8a7910e039e464f4961b827c69a2e201 -Author: Shubhi Mishra -Date: Tue Jan 5 12:23:13 2021 -0500 - - Create Sprint 11 Summary.md - -commit 6f71f78d89b9de254f3837a36019130fb3e570b1 -Author: Carlton Smith -Date: Tue Jan 5 11:07:04 2021 -0500 - - breakout user api tests - -commit 5b218cb42af8f5b2adaefd1c71c2a7959e4f7a16 -Author: Carlton Smith -Date: Tue Jan 5 10:10:37 2021 -0500 - - typos - -commit 33f62772e0add45633c00cd0d3f6bb2f8c9f4f67 -Author: Carlton Smith -Date: Tue Jan 5 09:52:22 2021 -0500 - - add comment note - -commit bf7870cc4263f5fbfd1ca4a33825c49a55aada0e -Merge: 3909e9c36 cf3cccc91 -Author: Carlton Smith -Date: Tue Jan 5 09:48:13 2021 -0500 - - remove unneeded doc - -commit 3909e9c364b308746b8eae11f17c62b5e247b350 -Author: Carlton Smith -Date: Tue Jan 5 09:28:29 2021 -0500 - - update docs - -commit 8f3b21669b6881ac5aa26e1c330eb1ac8ec64435 -Author: Miles Reiter -Date: Tue Jan 5 00:53:08 2021 -0500 - - Update Overview of Research Activities.md - -commit ea592aac2971a3cc5da9935ea61869674148217f -Author: Miles Reiter -Date: Tue Jan 5 00:51:53 2021 -0500 - - Updates to design guide & research activities - -commit cf3cccc91775bbec221a2f59167d2b0bfe4d5f56 -Merge: acac76174 fe34eb126 -Author: Aaron Beavers -Date: Mon Jan 4 20:32:18 2021 -0500 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit acac76174c447e6b030cb2bc1f6b1d9e4596f7f0 -Author: Carlton Smith -Date: Mon Jan 4 15:02:55 2021 -0500 - - remove dup - -commit f3fb7bbd6abdbcdd6e8bc0df7bc58cdff8854ed0 -Author: Carlton Smith -Date: Mon Jan 4 14:56:12 2021 -0500 - - remove todo - -commit bc5c05fbe988c712dcc03d36e6af64006a03898d -Author: Carlton Smith -Date: Mon Jan 4 13:42:04 2021 -0500 - - update docs - -commit 794e7d8f13b6359e33a6dcd705acd7fa80303ea0 -Merge: 98c11b5f6 fe34eb126 -Author: Spencer Hilvitz -Date: Mon Jan 4 10:00:33 2021 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 406-header-focus-fix - -commit 91d942f38dfdfa88be046104374da0d0ffe0dc85 -Merge: b222f3f62 fe34eb126 -Author: Spencer Hilvitz -Date: Mon Jan 4 09:59:29 2021 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into idle-timer-events-fix - -commit e5ed6b747233b94f19d17e3920ca2c164564e1c6 -Merge: 804a9569f fe34eb126 -Author: Spencer Hilvitz -Date: Mon Jan 4 09:58:42 2021 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into combo-box-label-fix - -commit fe34eb1261de765a3ba409d5851a910f8fb0c551 -Merge: 1a92b31a7 d18a6e9d0 -Author: Carl Smith -Date: Mon Jan 4 12:43:25 2021 -0500 - - Merge pull request #364 from raft-tech/documentation/282/session-management - - document session management strategy - -commit d18a6e9d0e9a37d7fd5c81361cf7abd99d54e2da -Merge: eff2e2369 1a92b31a7 -Author: Carl Smith -Date: Mon Jan 4 11:44:05 2021 -0500 - - Merge branch 'raft-tdp-main' into documentation/282/session-management - -commit 7a726603a76965606d918a76e9049410dd75b4da -Merge: 113e82b2a eff2e2369 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 4 11:40:02 2021 -0500 - - Merge pull request #112 from raft-tech/documentation/282/session-management - - Documentation/282/session management looks good - -commit 113e82b2a04cecb547565ea0e88fdee44a249ff0 -Merge: 914046e07 a092e5d5a -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Jan 4 11:36:43 2021 -0500 - - Merge pull request #113 from raft-tech/snyk-and-security-updates - - Snyk and security updates - With @alexsoble 's approval, I am merging this PR - -commit 5b0ddbdaede25248351b20eb7b96b9db55921293 -Author: Carlton Smith -Date: Mon Jan 4 08:53:44 2021 -0500 - - cleanup 309 - -commit 6d00410f2c50fa98cdaa5ddac2a08cd8ca4ab698 -Author: Carlton Smith -Date: Thu Dec 31 16:10:14 2020 -0500 - - customize admin user form - -commit eff2e236906600122f4d9c44a26440497c7c7783 -Author: Carl Smith -Date: Thu Dec 31 10:31:18 2020 -0500 - - Update session-management.md - - Added where timeout is set and removed a question mark - -commit 2ca0d8188f4ee510716566d1d1f099edfe698c08 -Merge: d18ca9746 1a92b31a7 -Author: Carl Smith -Date: Wed Dec 30 13:12:26 2020 -0500 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit 1a92b31a700c0912a73f201a0d08c189e060cb84 -Merge: e525b7b69 a092e5d5a -Author: Carl Smith -Date: Wed Dec 30 13:11:50 2020 -0500 - - Merge pull request #495 from raft-tech/snyk-and-security-updates - - HHS Main Sync - -commit a092e5d5ad24b95ec239734070e0d792ab5c10a6 -Author: Carlton Smith -Date: Wed Dec 30 12:54:34 2020 -0500 - - update from main - -commit 8df4b8746618417489ffa91ba21ebf62907ddd32 -Merge: 4b50cd62c 6f2a56a4a -Author: Carlton Smith -Date: Wed Dec 30 12:47:13 2020 -0500 - - Merge branch 'snyk-and-security-updates' of github.com:raft-tech/TANF-app into snyk-and-security-updates - -commit 4b50cd62c4ac13a35b82efb4b20b4a20f95a4b1e -Author: Carlton Smith -Date: Wed Dec 30 12:46:22 2020 -0500 - - remove unneeded files - -commit d18ca97468fdf6fde9299df3a1b87ec9213b621f -Merge: 299bfc853 e525b7b69 -Author: Carl Smith -Date: Wed Dec 30 12:28:40 2020 -0500 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit 6f2a56a4a38f0bb0bccb33cc98fa54b8999de1cb -Merge: e525b7b69 914046e07 -Author: Carl Smith -Date: Wed Dec 30 11:18:03 2020 -0500 - - Merge branch 'main' into snyk-and-security-updates - -commit e525b7b69d1baab59462559919f50d0df055675e -Merge: aea297a9a 268336e49 -Author: Carl Smith -Date: Wed Dec 30 10:43:57 2020 -0500 - - Merge pull request #483 from raft-tech/shubhi-raft-patch-7 - - Create django_admin_console_criteria.md - -commit 268336e49b95944e0f61cfa4433e65b28792de7c -Merge: 3568975bc aea297a9a -Author: Carl Smith -Date: Wed Dec 30 10:25:03 2020 -0500 - - Merge branch 'raft-tdp-main' into shubhi-raft-patch-7 - -commit aea297a9aa963866b5b28330e57a6c8a9751d757 -Merge: 7373d094b d40c89975 -Author: Carl Smith -Date: Wed Dec 30 10:24:24 2020 -0500 - - Merge pull request #465 from raft-tech/350-round-3-synthesis - - Adds Round 3 Synthesis for parity with HHS repo - -commit d40c89975bd072a5a97334e141af794484c28461 -Merge: 8872cdddc 7373d094b -Author: Carl Smith -Date: Wed Dec 30 10:07:43 2020 -0500 - - Merge branch 'raft-tdp-main' into 350-round-3-synthesis - -commit 7373d094b908e9603d133a4485e48b01c11b5459 -Merge: 8cd66e9de 27c39fbf5 -Author: Carl Smith -Date: Wed Dec 30 10:03:11 2020 -0500 - - Merge pull request #493 from raft-tech/snyk-upgrade-6d5a67b73089175175cf6ee42afb28ed - - [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 - -commit 27c39fbf55947f9fd3558052aad1f48255a56afd -Merge: 126fe6c4a 8cd66e9de -Author: Carl Smith -Date: Wed Dec 30 09:50:11 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-6d5a67b73089175175cf6ee42afb28ed - -commit 8cd66e9de69b7bda0fe8b10267bca54696f6be95 -Merge: 1519bf6bc 2df670208 -Author: Carl Smith -Date: Wed Dec 30 09:49:18 2020 -0500 - - Merge pull request #475 from raft-tech/snyk-fix-463104573197779113bb5f360757fcd3 - - [Snyk] Security upgrade react-scripts from 3.4.4 to 4.0.0 - -commit 2df670208b818f9fd7f38c63947f63b9d8f689df -Merge: 5636f716c 1519bf6bc -Author: Carl Smith -Date: Wed Dec 30 09:39:29 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-463104573197779113bb5f360757fcd3 - -commit 1519bf6bccefb66030524ed5e1e9beaa85735d89 -Merge: 6db7b39c8 24aa33a24 -Author: Carl Smith -Date: Wed Dec 30 09:38:43 2020 -0500 - - Merge pull request #476 from raft-tech/snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 - - [Snyk] Security upgrade react-scripts from 3.4.4 to 4.0.0 - -commit 24aa33a2467f7d0ced4ad8eb9df82f6a9260e56a -Author: Spencer Hilvitz -Date: Tue Dec 29 15:11:27 2020 -0800 - - hard code uswds to 2.9 and disallow minor version bumps - -commit 2a2aa1d703ef9874ffed6a09ba8d7bf0fb9172a7 -Author: Spencer Hilvitz -Date: Tue Dec 29 14:02:49 2020 -0800 - - downgrade uswds to 2.8 - -commit 7d8596c502313f6c1cf80c025ca8d8b6b50a3cc1 -Author: Spencer Hilvitz -Date: Tue Dec 29 13:38:23 2020 -0800 - - update yarn.lock - -commit 126fe6c4aa4f5ffb942c37711d8609a781190986 -Author: snyk-bot -Date: Tue Dec 29 21:35:17 2020 +0000 - - fix: upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 - - Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13. - - See this package in npm: - https://www.npmjs.com/package/@fortawesome/react-fontawesome - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit 2fff212bcf9f0bb532cf5047e9ef2da8da683b53 -Merge: 9a4b5d8f3 6db7b39c8 -Author: Carl Smith -Date: Tue Dec 29 15:18:16 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 - -commit 6db7b39c8cdd29d008218c122326c3d9b4c3e8a5 -Merge: 966c25042 66e142284 -Author: Carl Smith -Date: Tue Dec 29 15:17:32 2020 -0500 - - Merge pull request #366 from raft-tech/migrate-wiki - - Migrate Wiki - -commit 9a4b5d8f322335e30c83080e7c3a9cd67c7e4ef9 -Author: Spencer Hilvitz -Date: Tue Dec 29 12:07:06 2020 -0800 - - remove eslintcache - -commit 123269a04f06475691057caf9055dec3ab7348a9 -Merge: cda41701e 3d1572265 -Author: Spencer Hilvitz -Date: Tue Dec 29 12:06:28 2020 -0800 - - Merge branch 'snyk-fix-4e41fcc025c3098ccb83bcfb807f4526' of github.com:raft-tech/TANF-app into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 - -commit 66e142284f873c61cc09c17524b6de7fba22640e -Merge: d131970a2 966c25042 -Author: Carl Smith -Date: Tue Dec 29 15:06:09 2020 -0500 - - Merge branch 'raft-tdp-main' into migrate-wiki - -commit cda41701ebf7c7059a704bf4c2f12349c72fa9dd -Author: Spencer Hilvitz -Date: Tue Dec 29 12:03:32 2020 -0800 - - fix linting errors and update yarn.lock - -commit 966c250423253bbe16e1f83df67ecadbb7a9bef2 -Merge: f3ae1d59a 289355424 -Author: Carl Smith -Date: Tue Dec 29 14:59:24 2020 -0500 - - Merge pull request #450 from raft-tech/documentation/branching-strategy - - add branching strategy - -commit 28935542416d01f9b716830ed56e583203e62d96 -Merge: ab67b241a f3ae1d59a -Author: Carl Smith -Date: Tue Dec 29 14:48:44 2020 -0500 - - Merge branch 'raft-tdp-main' into documentation/branching-strategy - -commit ff40d76a569d0e5377ad211638abaaca1740c4a3 -Merge: c7a055ed4 f3ae1d59a -Author: Spencer Hilvitz -Date: Tue Dec 29 11:42:54 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 - -commit 3d1572265663d74c351547ffa457c9434648c4c9 -Merge: c7a055ed4 f3ae1d59a -Author: Carl Smith -Date: Tue Dec 29 14:25:30 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 - -commit f3ae1d59abd2d29ef87eae5a3dd0483abe23a654 -Merge: 5e768c186 e787d6e81 -Author: Carl Smith -Date: Tue Dec 29 14:23:38 2020 -0500 - - Merge pull request #491 from raft-tech/snyk-fix-5f595732c105e84d603382d7478254b7 - - [Snyk] Security upgrade axios from 0.20.0 to 0.21.1 - -commit 462739a147ecc2279a92e8c3099ed39e3a6744f2 -Author: Miles Reiter -Date: Tue Dec 29 14:23:05 2020 -0500 - - Update Overview of Research Activities.md - -commit 8bf112e96a23ae895b6f7549665953b1cd074c91 -Author: Miles Reiter -Date: Tue Dec 29 14:16:20 2020 -0500 - - Update Overview of Research Activities.md - -commit c7a055ed4299145215732ba064fe64eb73866387 -Author: Spencer Hilvitz -Date: Tue Dec 29 11:11:24 2020 -0800 - - add packages and upgrade some packages to get eslint working - -commit e787d6e810cf2444dc3a839762417abb091a7028 -Merge: 5ae7c51e9 5e768c186 -Author: Carl Smith -Date: Tue Dec 29 14:08:16 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-5f595732c105e84d603382d7478254b7 - -commit 5e768c18690d89dcdee7374bc60edd9863757b3a -Merge: fdac0e9dc 32c06f9da -Author: Carl Smith -Date: Tue Dec 29 14:04:09 2020 -0500 - - Merge pull request #490 from raft-tech/snyk-fix-226f3b46abfa791292185f16916677ec - - [Snyk] Security upgrade axios from 0.20.0 to 0.21.1 - -commit 32c06f9daee6bf0fea6b28f72641a6fd10115c39 -Merge: c53665829 fdac0e9dc -Author: Carl Smith -Date: Tue Dec 29 13:54:05 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-226f3b46abfa791292185f16916677ec - -commit 685df65bcf2c4f1ce67c4ac5172fce425ee2865f -Merge: 0b1914d56 914046e07 -Author: Miles Reiter -Date: Tue Dec 29 13:10:28 2020 -0500 - - Merge remote-tracking branch 'upstream/main' into main - -commit a51a3b8d01051fd71070fb939909309abd326597 -Merge: af156395b fdac0e9dc -Author: Carl Smith -Date: Tue Dec 29 12:56:38 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-4e41fcc025c3098ccb83bcfb807f4526 - -commit 299bfc8534a61bfe9c56e519306dd8d21f55d8c8 -Author: Carlton Smith -Date: Tue Dec 29 12:54:24 2020 -0500 - - use proxy - -commit 5636f716c58bd1975214061b85fff217ce609dd2 -Merge: b670e16d4 fdac0e9dc -Author: Carl Smith -Date: Tue Dec 29 12:13:37 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-fix-463104573197779113bb5f360757fcd3 - -commit fdac0e9dc24241ab6a35df3c9f15120dd3dd1058 -Merge: f294e76d2 b533e67a7 -Author: Carl Smith -Date: Tue Dec 29 12:11:21 2020 -0500 - - Merge pull request #463 from raft-tech/snyk-upgrade-4e7b18aa9a3a2181712ef6507d99b51d - - [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 - -commit b533e67a7694420a556045a47bea0ef15ccfca8d -Merge: edde35f17 f294e76d2 -Author: Carl Smith -Date: Tue Dec 29 11:46:41 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-4e7b18aa9a3a2181712ef6507d99b51d - -commit f294e76d23f38dd863ee461ac7aff64e4260f7a4 -Merge: 781609015 9a696b91e -Author: Carl Smith -Date: Tue Dec 29 11:39:21 2020 -0500 - - Merge pull request #462 from raft-tech/dependabot/npm_and_yarn/tdrs-frontend/raft-tdp-main/ini-1.3.8 - - [Security] Bump ini from 1.3.5 to 1.3.8 in /tdrs-frontend - -commit 9a696b91ed7a321dd520179f0898c98d20b019be -Author: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> -Date: Tue Dec 29 16:22:31 2020 +0000 - - [Security] Bump ini from 1.3.5 to 1.3.8 in /tdrs-frontend - - Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. **This update includes a security fix.** - - [Release notes](https://github.com/isaacs/ini/releases) - - [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.8) - - Signed-off-by: dependabot-preview[bot] - -commit 781609015f59180b7245cde51637fae35afedbee -Merge: fa73701a8 69c14c924 -Author: Carl Smith -Date: Tue Dec 29 11:20:57 2020 -0500 - - Merge pull request #424 from raft-tech/snyk-upgrade-b9c7f3c1aa976476713e65024afebfc6 - - [Snyk] Upgrade axios from 0.20.0 to 0.21.0 - -commit 69c14c92469def96cbe6ee130a336c4e1afd1e50 -Merge: feb0fe234 fa73701a8 -Author: Carl Smith -Date: Tue Dec 29 11:02:49 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-b9c7f3c1aa976476713e65024afebfc6 - -commit 914046e0724a3dde9604b5f9b0f269b31a218866 -Merge: 5047243ce 17050aa75 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Dec 28 10:50:33 2020 -0500 - - Merge pull request #110 from shubhi-raft/patch-8 - - Create Sprint 10 Summary.md Thanks for a great Sprint 10! - -commit 5047243ce84088d8778711c84d18cf5d342ca434 -Merge: 499778368 c78e963f3 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Dec 28 10:21:34 2020 -0500 - - Merge pull request #111 from HHS/bh-update-boundary-drawio - - Add missing arrows to boundary diagram - -commit c78e963f34860a8aefb17d700fba38b68769c31b -Author: Brian Hurst -Date: Mon Dec 28 09:12:09 2020 -0500 - - Add missing arrows to boundary diagram - -commit 17050aa750980b003326337160483ec66fe3c646 -Author: Shubhi Mishra -Date: Sun Dec 27 17:58:46 2020 -0500 - - Create Sprint 10 Summary.md - -commit 5ae7c51e978bab8cd59ca2d862381eb4f65a6d46 -Author: snyk-bot -Date: Wed Dec 23 22:19:47 2020 +0000 - - fix: tdrs-frontend/package.json & tdrs-frontend/yarn.lock to reduce vulnerabilities - - The following vulnerabilities are fixed with an upgrade: - - https://snyk.io/vuln/SNYK-JS-AXIOS-1038255 - -commit c5366582962b7a12f93e7c96a9a12484f85f91d9 -Author: snyk-bot -Date: Wed Dec 23 21:38:38 2020 +0000 - - fix: tdrs-frontend/package.json to reduce vulnerabilities - - The following vulnerabilities are fixed with an upgrade: - - https://snyk.io/vuln/SNYK-JS-AXIOS-1038255 - -commit a1436c5eb7e9ac823427b16a5ffb042d904f5ae7 -Merge: 64f276e30 fa73701a8 -Author: Carlton Smith -Date: Wed Dec 23 11:37:17 2020 -0500 - - Merge latest from raft-tdp-main - -commit 64f276e3067b8a93e3a38360407acae7c69f6d17 -Author: Carlton Smith -Date: Wed Dec 23 11:34:53 2020 -0500 - - update docs - -commit b7297dded3384f4e37681b3b86f14480d1c8a269 -Author: Carlton Smith -Date: Wed Dec 23 11:29:02 2020 -0500 - - update linting - -commit 196b2a45d1390e71de1f8501f8c1bd9ccd418b86 -Author: Carlton Smith -Date: Wed Dec 23 10:43:55 2020 -0500 - - update endpoints and tests - -commit 0b1914d5692538ccbecfe06d02371a1fbaefe478 -Author: Miles Reiter -Date: Mon Dec 21 14:37:25 2020 -0500 - - Adds more on program director titles - -commit bd8b80dd0d981125b6199032e1adaaa877a5bde2 -Author: Miles Reiter -Date: Mon Dec 21 14:20:43 2020 -0500 - - Edits as per Lauren's feedback - -commit 5724b8256bdab0677647ec69980976a3fc37a780 -Author: miles-reiter -Date: Fri Dec 18 17:28:33 2020 -0500 - - Update Stakeholders-and-Personas.md - -commit 37aa0f34dd40d7b36db8a787470a8fe508d181db -Author: miles-reiter -Date: Fri Dec 18 17:28:04 2020 -0500 - - Update Stakeholders-and-Personas.md - -commit 804a9569f9ff01d3969d26ed438fd9649377cc46 -Merge: fc9297da0 fa73701a8 -Author: Spencer Hilvitz -Date: Fri Dec 18 13:11:26 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into combo-box-label-fix - -commit b222f3f622c20270cb0d44140f45dcf1f5a0733e -Merge: 1589a13bc fa73701a8 -Author: Spencer Hilvitz -Date: Fri Dec 18 13:11:12 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into idle-timer-events-fix - -commit 98c11b5f67d493a7426f1ba009b38a6bd958a508 -Merge: 370547bf7 fa73701a8 -Author: Spencer Hilvitz -Date: Fri Dec 18 13:10:57 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 406-header-focus-fix - -commit 499778368a22f1f1def8306d1c43575609cb794b -Merge: c7809883c bf7064d35 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Dec 18 15:59:40 2020 -0500 - - Merge pull request #108 from HHS/bh-system-boundary - - Add system boundary to docs - -commit bf7064d351c7e3e23406b0a9682d096441f4693f -Author: Brian Hurst -Date: Fri Dec 18 15:24:55 2020 -0500 - - Move download link - -commit eee8febf0fe9036fd1dd7fc2a7b12b43cfc51afa -Author: Brian Hurst -Date: Fri Dec 18 15:22:17 2020 -0500 - - Add system boundary to docs - -commit fa73701a83eb424e56a547fad64a2458a8b420d8 -Merge: 04a16d5ef 50a7e056b -Author: Carl Smith -Date: Fri Dec 18 13:51:38 2020 -0500 - - Merge pull request #461 from raft-tech/front/119/reports - - Front/119/reports - -commit c7809883c52785494dcd2729a3bfd45ea2e87b67 -Merge: cf517798e 50a7e056b -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Dec 18 13:13:42 2020 -0500 - - Merge pull request #106 from raft-tech/front/119/reports - - Frontend Reports Page Looks good to me. Thanks, @hilvitzs ! - -commit cc7d4404564860958786ac79d99d9705b29d2c22 -Merge: f368d6051 aeab9eb17 -Author: Spencer Hilvitz -Date: Fri Dec 18 09:14:20 2020 -0800 - - Merge pull request #482 from raft-tech/406-header-focus-fix - - Fix focus not being able to move away from h1 - -commit f8effd5a2d52a4de8d56ad2f7b60dd39fba21c59 -Author: Carlton Smith -Date: Fri Dec 18 12:03:41 2020 -0500 - - admin changes - -commit bc78f35ba21b581e32c994bfb2b0b47f240965cb -Author: Carlton Smith -Date: Fri Dec 18 12:01:47 2020 -0500 - - latest - -commit 50a7e056b7d8e7bc31433caff229ce87d506da9e -Author: Spencer Hilvitz -Date: Fri Dec 18 00:30:37 2020 -0800 - - fix header.test titles - -commit 3568975bcc04725b8b7b79dd696c0a0ccdcd0193 -Author: Shubhi Mishra -Date: Thu Dec 17 17:42:04 2020 -0500 - - Create django_admin_console_criteria.md - - PR for adding criteria for #456 - -commit aeab9eb1721dfd7d1f5c6ab28fa64c00d7cfd5b4 -Merge: 370547bf7 f368d6051 -Author: Carl Smith -Date: Thu Dec 17 16:11:40 2020 -0500 - - Merge branch 'raft-review' into 406-header-focus-fix - -commit 7cc7456cf64a284862634052a757215e2693c866 -Author: Carlton Smith -Date: Thu Dec 17 15:33:15 2020 -0500 - - ignore files - -commit 370547bf70c97a9403d4572fc366914b6c14d1d1 -Author: Spencer Hilvitz -Date: Thu Dec 17 12:04:14 2020 -0800 - - update yarn to add puppeteer - -commit 557897a74f8e1e1d371f7b66e8a3a49ee480e668 -Author: miles-reiter -Date: Thu Dec 17 15:03:21 2020 -0500 - - Updated Table of Contents - -commit 25c47100b55ab10b7e3351c0376a7785f4c622a2 -Author: miles-reiter -Date: Thu Dec 17 15:00:26 2020 -0500 - - Update Stakeholders-and-Personas.md - -commit c93759948a6fcd555ded3e59d03f71d66c1d7d10 -Author: Spencer Hilvitz -Date: Thu Dec 17 11:57:01 2020 -0800 - - ensure useEffect on PrivateTemplate is only run on first render - -commit 0df5d3823b56ea10c8fd95cde72d2c6828fad323 -Author: miles-reiter -Date: Thu Dec 17 14:56:57 2020 -0500 - - Update Stakeholders-and-Personas.md - -commit f368d6051079b773f2e252cbdb05aa9b51e73b18 -Merge: 279106872 f7171787d -Author: Carl Smith -Date: Thu Dec 17 13:50:49 2020 -0500 - - Merge pull request #477 from raft-tech/406-header-focus-fix - - 406 & 407: Fix focus on route change and alert on error - -commit f7171787d0ad6637c69377a326af01eea97e1583 -Merge: b40da2060 279106872 -Author: Carl Smith -Date: Thu Dec 17 13:38:26 2020 -0500 - - Merge branch 'raft-review' into 406-header-focus-fix - -commit 812a6b921b1542942999462e73a2b0181ccd8fa5 -Author: Spencer Hilvitz -Date: Thu Dec 17 09:49:23 2020 -0800 - - rename upload action and reducer to reports for clarity - -commit b40da20600ca7f930b0a4d6f0ab84289e0828be5 -Author: Spencer Hilvitz -Date: Wed Dec 16 14:35:50 2020 -0800 - - add headerRef and tabIndex to PrivateTemplate to focus user on h1 when route changes, hide focus on h1's, add role alert to alert - -commit af156395bd0cf6415cea29d97edee7f35a3ce63a -Author: snyk-bot -Date: Wed Dec 16 22:17:22 2020 +0000 - - fix: tdrs-frontend/package.json & tdrs-frontend/yarn.lock to reduce vulnerabilities - - The following vulnerabilities are fixed with an upgrade: - - https://snyk.io/vuln/SNYK-JS-NODENOTIFIER-1035794 - -commit b670e16d4e4835659d356db5576c111ff941e892 -Author: snyk-bot -Date: Wed Dec 16 21:32:38 2020 +0000 - - fix: tdrs-frontend/package.json to reduce vulnerabilities - - The following vulnerabilities are fixed with an upgrade: - - https://snyk.io/vuln/SNYK-JS-NODENOTIFIER-1035794 - -commit 2791068720ccf384e571bc58bcb8c62d92913939 -Merge: c177c62aa 0b7cc7c51 -Author: Carl Smith -Date: Wed Dec 16 15:01:30 2020 -0500 - - Merge pull request #469 from raft-tech/idle-timer-events-fix - - Add focus event to idleTimer to fix small accessibility concern - -commit 0b7cc7c51d7305541df8af9e9ce3dd0782814d03 -Merge: 1589a13bc c177c62aa -Author: Carl Smith -Date: Wed Dec 16 14:52:59 2020 -0500 - - Merge branch 'raft-review' into idle-timer-events-fix - -commit c177c62aabf26c4d2a161df733b66f620bdcad57 -Merge: f4ad91c84 06da18590 -Author: Carl Smith -Date: Wed Dec 16 14:36:28 2020 -0500 - - Merge pull request #467 from raft-tech/combo-box-label-fix - - Fix combo box label bug and bold labels on `/edit-profile` - -commit 06da1859081c3161cda22b7ef6582e5852930c13 -Merge: fc9297da0 f4ad91c84 -Author: Carl Smith -Date: Wed Dec 16 14:28:03 2020 -0500 - - Merge branch 'raft-review' into combo-box-label-fix - -commit f4ad91c84e5b232c8fa0111e2a1bbca1758deb61 -Merge: 888b2ef3c c8718323a -Author: Carl Smith -Date: Wed Dec 16 14:05:08 2020 -0500 - - Merge pull request #464 from raft-tech/front/119/reports - - Front/119/reports - -commit c8718323aba14989f7d0cd447f4b76367ed0c59f -Merge: 932c53248 888b2ef3c -Author: Carl Smith -Date: Wed Dec 16 13:40:24 2020 -0500 - - Merge branch 'raft-review' into front/119/reports - -commit 51ac798110d0be978959b19a0edd8d057da40e00 -Author: Miles Reiter -Date: Wed Dec 16 12:58:17 2020 -0500 - - Added placeholders - -commit c0fc1d5423a2bd0760a9fb1d4b707e2212eefef7 -Author: Miles Reiter -Date: Tue Dec 15 21:40:28 2020 -0500 - - Adds issue number to doc - -commit 420db96390898ffc622f7ff7138afc933955d323 -Author: Miles Reiter -Date: Tue Dec 15 21:36:51 2020 -0500 - - Changes User-Types to Stakeholders-and-Personas - - Update in preparation for other changes based on round 3 research - -commit 1589a13bc6d851822dd193b9a70c6e772a470760 -Author: Spencer Hilvitz -Date: Tue Dec 15 14:58:45 2020 -0800 - - update yarn - -commit 8882626e908ce188add1fd1d253a8cce812e1583 -Author: Spencer Hilvitz -Date: Tue Dec 15 14:51:09 2020 -0800 - - add throttle time variable to .env.development, add env vars to .env.test, fix editprofile linting, add focus event to idletimer, change myModal id to timeoutModal, update tests - -commit 8872cdddc7eebf37e0105166c7517475bcbd1fd3 -Author: Miles Reiter -Date: Mon Dec 14 19:44:00 2020 -0500 - - Adds Round 3 Synthesis for parity with HHS repo - -commit fc9297da0d7a71831ecb541d4e71cb36b5d52d72 -Author: Spencer Hilvitz -Date: Mon Dec 14 14:03:42 2020 -0800 - - fix combo box bug where label would not be read by screen readers, make EditProfile labels bold to match mocks - -commit edde35f17c3108a4abe2c4de9a55551170087df3 -Author: snyk-bot -Date: Mon Dec 14 21:38:56 2020 +0000 - - fix: upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13 - - Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.12 to 0.1.13. - - See this package in npm: - https://www.npmjs.com/package/@fortawesome/react-fontawesome - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit cf517798e3799e5502778d7b50485fbda35dee4e -Merge: a5371b778 f3293df8c -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Dec 14 14:58:52 2020 -0500 - - Merge pull request #99 from reitermb/main - - Adds Round 3 Synthesis - -commit f3293df8c774edbe274fc212bc8c693b5d58d7c2 -Author: Miles Reiter -Date: Mon Dec 14 14:39:43 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 932c532485b736c1d183a6f83b3eec50431cf464 -Author: Spencer Hilvitz -Date: Fri Dec 11 13:01:58 2020 -0800 - - fix key on NavItem - -commit d25afbacf02c666e7406b710290c00569dd1bcd0 -Author: Spencer Hilvitz -Date: Fri Dec 11 12:17:37 2020 -0800 - - add documentation to Reports component - -commit 888b2ef3c8c2ec3751c0c043d1f1e540ba93da64 -Merge: 796026a12 e3758ec54 -Author: Carl Smith -Date: Fri Dec 11 14:30:49 2020 -0500 - - Merge pull request #460 from raft-tech/front/119/reports - - add selectedYear to TANF Report p tag per design request - -commit e3758ec545ed5a5eb5ff0bfbdb1c5e8c5a4ebb11 -Merge: 818e0a3b0 796026a12 -Author: Carl Smith -Date: Fri Dec 11 13:58:27 2020 -0500 - - Merge branch 'raft-review' into front/119/reports - -commit 818e0a3b0a5b13a493e920fc541afc32a09d5b03 -Author: Spencer Hilvitz -Date: Fri Dec 11 10:34:22 2020 -0800 - - add selectedYear to TANF Report p tag per design request - -commit 43d4e6e8c4b02787ddcb3ca9d233e44a0598b108 -Merge: 5927f6fa0 a5371b778 -Author: Miles Reiter -Date: Fri Dec 11 11:34:25 2020 -0500 - - Merge remote-tracking branch 'upstream/main' into main - -commit a5371b778d347e7b826041d692abec5e4b3e0fa7 -Merge: 81c43d003 fe2f67be8 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Dec 11 10:10:06 2020 -0500 - - Merge pull request #103 from HHS/ars/add-contributors-to-docs-readme - - Add Contributors section to docs README - -commit fe2f67be8bb8ea6862e83fde234fab89aebe2f9a -Author: Alex Soble -Date: Fri Dec 11 08:58:42 2020 -0600 - - Add work from prototyping stage - -commit 81c43d003cd085c127361c58237377d227e69184 -Merge: 4c07cfe1e ab67b241a -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Dec 10 16:46:01 2020 -0500 - - Merge pull request #102 from raft-tech/documentation/branching-strategy - - Documentation/branching strategy - -commit ab67b241a00e9724738af7dd015561953f07ea9a -Author: Carlton Smith -Date: Thu Dec 10 14:56:02 2020 -0500 - - update docs - -commit 796026a127aa3090e2b6b9343b6151f1e4a7d017 -Merge: 556468a62 9a8521ca5 -Author: Spencer Hilvitz -Date: Thu Dec 10 11:13:35 2020 -0800 - - Merge pull request #458 from raft-tech/front/119/reports - - Front/119/reports - -commit 9a8521ca5125ca1600d1c5d2449f40d2f95e1936 -Merge: af3d1ef8f 556468a62 -Author: Carl Smith -Date: Thu Dec 10 13:57:08 2020 -0500 - - Merge branch 'raft-review' into front/119/reports - -commit af3d1ef8fdae72c79c30156389b79e6f216bb5e5 -Author: Spencer Hilvitz -Date: Thu Dec 10 10:48:06 2020 -0800 - - fix header test - -commit ca92215bec241a1ef51f3d8234e293ce2ed9665e -Author: Spencer Hilvitz -Date: Thu Dec 10 10:41:50 2020 -0800 - - remove pathnameToMatch from NavItem and Header - -commit d3aed8493d7427834746b0e0f25e9500476db07b -Author: Alex Soble -Date: Thu Dec 10 11:11:46 2020 -0600 - - Add Contributors section to docs README - -commit 556468a62e097d942519d8dc6a56c95df9827c5d -Merge: 32c1428ea d55bd5d4f -Author: Spencer Hilvitz -Date: Wed Dec 9 12:45:50 2020 -0800 - - Merge pull request #452 from raft-tech/front/119/reports - - Front/119/reports - -commit d55bd5d4fdf0f4573efd7459fd688715bbc84068 -Merge: 075c44d56 32c1428ea -Author: Carl Smith -Date: Wed Dec 9 15:34:29 2020 -0500 - - Merge branch 'raft-review' into front/119/reports - -commit 37dd4475fa05b327faccf96e8a85fa95fb393490 -Author: Spencer Hilvitz -Date: Tue Dec 8 15:19:33 2020 -0800 - - fix EditProfile whitespace - -commit acf19870adc309ca890d28d930ef5bba38b99083 -Author: Spencer Hilvitz -Date: Tue Dec 8 15:19:14 2020 -0800 - - change text NavItem prop to tabTitle and add docs to NavItem - -commit 60085c50fc8344cb1d2cc533a54819df8a40656f -Author: Carlton Smith -Date: Tue Dec 8 14:33:50 2020 -0500 - - add branching strategy - -commit d4bc3ed746bc1ee7721f74da04479cbb835f8d5a -Author: Carlton Smith -Date: Tue Dec 8 14:31:01 2020 -0500 - - updating views - -commit 231bf365a7cf74a43773d0e3ff14589871170bb5 -Author: Spencer Hilvitz -Date: Tue Dec 8 10:12:58 2020 -0800 - - remove dynamic h1 title on Reports - -commit 4c07cfe1e61d9ff0ac6c4f72cb601ec77c5ad9c5 -Merge: fad973238 63790a578 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Dec 8 12:23:50 2020 -0500 - - Merge pull request #101 from shubhi-raft/patch-7 - - Create Sprint 9.md - -commit 63790a578e022fdb70a0614044f27b7f613fe4a2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Dec 8 12:22:11 2020 -0500 - - Update Sprint 9.md - -commit 075c44d5627eb51dd1f7aaf70172f60fe9d6f903 -Merge: 07b9c245b 04a16d5ef -Author: Spencer Hilvitz -Date: Tue Dec 8 09:18:47 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into front/119/reports - -commit 52948a1f17ad1af1b7e6b2092c0ad857c513a25c -Author: Shubhi Mishra -Date: Tue Dec 8 12:12:22 2020 -0500 - - Create Sprint 9.md - - sprint 9 summary - -commit 04a16d5ef74a58b42b7e663f056ed1703c4fbc39 -Merge: b55c1b647 a914d3b7c -Author: Carl Smith -Date: Tue Dec 8 12:05:54 2020 -0500 - - Merge pull request #363 from raft-tech/header-title-match - - 283 Add title heading element to display h1 content in page tab title - -commit 7fef048e37681c4acd170c503c8e1a525dacbb66 -Author: Carlton Smith -Date: Tue Dec 8 09:05:02 2020 -0500 - - comments and documentation - -commit 07b9c245b00fdb81542a580a1f75f3873d7c3d61 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:44:18 2020 -0800 - - update yarn.lock - -commit 966a8c25a44074f11bbbf431edc39bb243ef4043 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:31:00 2020 -0800 - - remove unnecessary `grid-container` in Reports - -commit e44655c22b3cb7859f1e458edec9bf3c844dec40 -Merge: 50ba4d410 a914d3b7c -Author: Spencer Hilvitz -Date: Mon Dec 7 16:25:06 2020 -0800 - - Merge branch 'header-title-match' of github.com:raft-tech/TANF-app into front/119/reports - -commit 50ba4d410818a91b313ea1341f6f8cd19529ab26 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:24:57 2020 -0800 - - add upload reducer to handle `SET_YEAR` and default to 2020, add test for upload reducer - -commit 9f60c77c64e788412b463934477ed98e55672ef3 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:18:32 2020 -0800 - - update routes with '/reports' and update tests - -commit 6995f9b2e7039ef4a7b9e04db3be92b9a18d45d4 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:18:02 2020 -0800 - - add upload action and corresponding tests - -commit 5e5f5c8b9a9059f23ed4f1f36bbd0a09676ba1c5 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:17:37 2020 -0800 - - add Reports component - -commit f0c56cd38d17a26dbda8a2d7bfd8e3b2503b0566 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:17:04 2020 -0800 - - add NavItem component to be resued in Header, update Header and Header.test - -commit e8d6681f6cc0ec1fc889211fe3c3f00c945ab725 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:16:26 2020 -0800 - - make sttList test more complete - -commit 552588ae41d5fa2ebda9d8882e79a1fcf2d0e3e8 -Author: Spencer Hilvitz -Date: Mon Dec 7 16:16:01 2020 -0800 - - update .env.development with correct non-evaluative times - -commit 5927f6fa03a3a64ad23b138baaff5796d9fbe8d7 -Merge: 0a48212d6 fad973238 -Author: Miles Reiter -Date: Mon Dec 7 16:23:53 2020 -0500 - - Merge remote-tracking branch 'upstream/main' into main - -commit 0a48212d69c0d73e707128609665f89c30b2cfb0 -Author: Miles Reiter -Date: Mon Dec 7 16:20:02 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 6eb1d420d256d0d5dbe223fbe818695cd5f0cd37 -Author: Miles Reiter -Date: Mon Dec 7 16:18:55 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit ea1436fbdea4464a629b15e009ee5916ed6a1bdc -Author: Miles Reiter -Date: Mon Dec 7 16:13:37 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 16f2a7df7b798589560206b37eae74d490680795 -Author: Miles Reiter -Date: Mon Dec 7 16:07:39 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 59cd7a846f415fdf6144ccf5be0e2648ad35c929 -Author: Miles Reiter -Date: Mon Dec 7 15:59:54 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit fad973238a6c2ea81c455cab154e2405aad653d5 -Merge: 865ad91eb a914d3b7c -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Dec 7 15:39:32 2020 -0500 - - Merge pull request #94 from raft-tech/header-title-match - - Header title match -- looks good, satisfies AC of #283 - -commit fae7f609f96afb26d98f5dfa44bca8b2ffc4a497 -Author: Miles Reiter -Date: Mon Dec 7 14:17:32 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit a914d3b7cbafd2763b513296dbc3edd8c30c706e -Author: Aaron Beavers -Date: Mon Dec 7 13:02:33 2020 -0600 - - Add JSDoc string to private template definition. - -commit 7c32daa6f609c356581bc2fdab8a6d3430af503b -Author: Aaron Beavers -Date: Mon Dec 7 13:01:58 2020 -0600 - - Fix typo - -commit c0568ea8d1bd7ce4f0821677451fb06e5f7908c7 -Author: Miles Reiter -Date: Mon Dec 7 13:26:54 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 42d1adb1447652400773dc80d71f1e10d7927d81 -Author: Miles Reiter -Date: Mon Dec 7 11:44:31 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 784d9c0f57e9a398b28f19ef749e2149b668983d -Author: Miles Reiter -Date: Mon Dec 7 11:43:22 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 6ec9c69a071f8108f99550c57b144ffa5299e0ea -Author: Miles Reiter -Date: Mon Dec 7 11:43:00 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 04729378ad3350521384e0a3e2425c76e4cb954c -Author: Miles Reiter -Date: Mon Dec 7 11:41:57 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 3895522cff50919ddaebf405f0e90be17a35cfc1 -Author: Miles Reiter -Date: Mon Dec 7 11:40:37 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 369d3393955669e8c0f87547a34246993a3e2f76 -Author: Miles Reiter -Date: Mon Dec 7 11:37:39 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 8d0b27fad193bb6537397a5a3c3e3be2866cb62f -Author: Miles Reiter -Date: Mon Dec 7 11:36:05 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 2a7cdfcbd3d1ec7e317b58e464e615333833dc01 -Author: Miles Reiter -Date: Mon Dec 7 11:33:20 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit f40d9946fa661a7b6ca3fe0fb7b27f14861e2efa -Author: Miles Reiter -Date: Mon Dec 7 11:32:32 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit df31183af99e986e1d8757f592b3964bda0a9c2d -Merge: 6cb41e68b 865ad91eb -Author: Miles Reiter -Date: Mon Dec 7 10:53:10 2020 -0500 - - Merge remote-tracking branch 'upstream/main' into main - -commit 6cb41e68bd9ce19d18d999fdc02f558f0c27e8b6 -Author: Miles Reiter -Date: Mon Dec 7 10:51:26 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 865ad91ebaaac37c9e23dd1a4205d2ed5765e37c -Merge: a8918f237 9051b5720 -Author: Alex Soble -Date: Thu Dec 3 10:41:17 2020 -0600 - - Merge pull request #98 from HHS/lfrohlich-patch-2-1 - - Update User-Types.md - -commit 9051b572005f4dcc5293a40e7c67d0706e08ebf6 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Dec 3 11:09:29 2020 -0500 - - Update User-Types.md - - Added OFA MVP user roles - -commit a8918f23739c7dbd9a4a0939c79927230ff8b9a3 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Dec 3 10:58:33 2020 -0500 - - Update High-Level-Database-Documentation.md - - Added ERD description - -commit 9a10561d0bbf14e53c6e0ab99b5adb5fbbf99d8d -Merge: ea4f1c70f 292601dcb -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Dec 2 16:52:14 2020 -0500 - - Merge pull request #96 from HHS/ars/cmp - - Add Configuration Management Plan - -commit 4488c93af41791867d522f0b995b020824b77b19 -Author: Carl Smith -Date: Wed Dec 2 16:34:57 2020 -0500 - - updated doc link - -commit 031cc53a2750b23a26ce9840d5a902536ccfb07e -Author: Carlton Smith -Date: Wed Dec 2 16:28:31 2020 -0500 - - update documentations for more general use - -commit 292601dcbbcf4a1c59cd25501bb798908a363722 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Dec 2 16:23:58 2020 -0500 - - Update Configuration-Management-Plan.md - - added https://cloud.gov/docs/ops/secrets/ link - -commit 45a4bd433216efc100061976f46f8a6bafe04605 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Dec 2 16:14:26 2020 -0500 - - Update our-workflow.md - - Removed Christine as DoD reviewer - -commit 11e0ae8ee8b584a2042cfdc08edec3eec9fe22ce -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Dec 2 16:07:39 2020 -0500 - - Update Configuration-Management-Plan.md - -commit ea4f1c70f1d1533a12803b3940330092e7e09ecb -Merge: cb15595d3 7f7cb6a19 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Dec 2 16:01:30 2020 -0500 - - Merge pull request #93 from HHS/ars/db-docs - - Add skeleton pass at high level database and object storage documentation - -commit 7f7cb6a191dec4204143b099e8dee30667b416a5 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Dec 2 16:00:33 2020 -0500 - - Update High-Level-Database-Documentation.md - -commit 179267fc00e7d8d562052cfb0a7b3df81ee8a6c5 -Author: Carlton Smith -Date: Wed Dec 2 12:46:06 2020 -0500 - - update ERD - -commit 7ad71128ff36044bb9af564ce78b50fa804265c4 -Author: Alex Soble -Date: Wed Dec 2 10:28:18 2020 -0600 - - Merging over rebasing - -commit 51e67f94963248aad1a117eb70f74899ac652670 -Author: Alex Soble -Date: Wed Dec 2 08:22:05 2020 -0600 - - Update Lifecycle to reference Workflow - -commit eddfae691eb7bafa586ab2e5d7248055a5ba6fee -Author: Alex Soble -Date: Wed Dec 2 07:39:19 2020 -0600 - - Use clearer section heading name - -commit b6f290c8b2893f2986eb822a9583bed1d615362f -Author: Alex Soble -Date: Wed Dec 2 07:35:52 2020 -0600 - - Add Git Flow section header - -commit abfe32083582a0d7f1239ce4c9afed177d029d56 -Author: Alex Soble -Date: Tue Dec 1 17:01:51 2020 -0600 - - Style tweaks - -commit ba55f2a860e9a5382bd7886925fc97edfd7eaddc -Author: Alex Soble -Date: Tue Dec 1 17:00:45 2020 -0600 - - Update Change Workflow - -commit 9a377cf7d879f8301bf7503454f352eb9041691b -Author: Alex Soble -Date: Tue Dec 1 16:45:34 2020 -0600 - - WIP -- Configuration Management Plan - -commit 3196d451105f392a27c65ad86e51e4be0645f18e -Author: Alex Soble -Date: Tue Dec 1 16:28:23 2020 -0600 - - Add more object storage documentation - -commit 8c38846fc58f4aeb368c4df767b5c3a4e0662050 -Merge: 0201a5f2d cb15595d3 -Author: Carl Smith -Date: Tue Dec 1 17:14:52 2020 -0500 - - Merge branch 'main' into backend/309/dynamic-roles-permissions - -commit 32c1428ea05f7bd9031bf69d5a620e2e85249b70 -Merge: ce2ecf5db 0201a5f2d -Author: Carl Smith -Date: Tue Dec 1 12:54:13 2020 -0500 - - Merge pull request #440 from raft-tech/backend/309/dynamic-roles-permissions - - Backend/309/dynamic roles permissions - -commit 7a21fe38a99aa03f0548186806f2e1ed966d7096 -Author: Miles Reiter -Date: Tue Dec 1 12:15:31 2020 -0500 - - Updated for tree structure - -commit 0201a5f2deea564506523496096a379ffa520dbd -Merge: 2d4184a19 ce2ecf5db -Author: Carl Smith -Date: Tue Dec 1 11:21:46 2020 -0500 - - Merge branch 'raft-review' into backend/309/dynamic-roles-permissions - -commit 357cae7ff588fb98d226eea092d9493edec811b6 -Merge: f7552778a cb15595d3 -Author: Carl Smith -Date: Tue Dec 1 11:11:05 2020 -0500 - - Merge branch 'main' into header-title-match - -commit f7552778ad54580b56af27222cd4aec058d2105d -Merge: 043a99aa1 b55c1b647 -Author: Carl Smith -Date: Tue Dec 1 10:50:21 2020 -0500 - - Merge branch 'raft-tdp-main' into header-title-match - -commit 5f29d1a93537c69aa63976b5147260d527b3bc1b -Author: Alex Soble -Date: Mon Nov 30 15:16:42 2020 -0600 - - Add skeleton pass at high level db and object storage docs for System Design Docs - -commit ce2ecf5db2fa7535b8d19fd959a47ea42bd022ce -Merge: ad9ce1538 043a99aa1 -Author: Carl Smith -Date: Mon Nov 30 13:55:15 2020 -0500 - - Merge pull request #435 from raft-tech/header-title-match - - Header title match - -commit 043a99aa145afa1e65a240bb63d0c4e1e81cfda8 -Merge: b1ee531ad ad9ce1538 -Author: Carl Smith -Date: Mon Nov 30 13:47:34 2020 -0500 - - Merge branch 'raft-review' into header-title-match - -commit 593cb650072d7a4b42785c55b9799de3a1d2b281 -Author: Miles Reiter -Date: Mon Nov 30 12:38:53 2020 -0500 - - Create 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 60f6d23c169e26253a8eadfa08b99b27d2322bee -Merge: 8c55b6038 cb15595d3 -Author: Miles Reiter -Date: Mon Nov 30 12:37:56 2020 -0500 - - Merge remote-tracking branch 'upstream/main' into main - -commit 2d4184a199e31da09f2d01887ed44e770b70a731 -Merge: ca3d1ec6d ad9ce1538 -Author: Carl Smith -Date: Mon Nov 30 11:33:13 2020 -0500 - - Merge branch 'raft-review' into backend/309/dynamic-roles-permissions - -commit b1ee531ad0c356a2d126ce361d0387905cf2a91e -Author: Aaron Beavers -Date: Mon Nov 30 10:02:10 2020 -0600 - - remove unneeded whitespace - -commit c5511f2ce083b3617684643563b99309577c9cae -Author: Aaron Beavers -Date: Mon Nov 30 09:57:43 2020 -0600 - - removed currently unneeded test - -commit cb15595d3ad6b7a984f083c8c81edde036315b59 -Merge: f33382349 425722095 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 30 10:51:17 2020 -0500 - - Merge pull request #91 from HHS/ars/docs-update - - Migrate documents from wiki; add docs README/Table of Contents - -commit 425722095b877e296bd6bc72495655ec149f52a2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 30 10:49:51 2020 -0500 - - Update Team-Composition.md - -commit f6cfd863a9ef8c1ea20e6255866311eb89d4c00a -Author: Alex Soble -Date: Mon Nov 30 09:30:57 2020 -0600 - - Update final internal link - -commit 69caa24fa72bfd890899c4721ef2f6b5950c0d55 -Author: Alex Soble -Date: Mon Nov 30 09:29:12 2020 -0600 - - Update Product strategy links - -commit c3a18d4591a70f87d4ab8cde2b174443f18a18cd -Author: Alex Soble -Date: Mon Nov 30 09:19:28 2020 -0600 - - Update next internal wiki link - -commit 2b6eebb549b691f3c10d47b25320b0a187fdcb49 -Author: Alex Soble -Date: Mon Nov 30 09:16:55 2020 -0600 - - Include file ext - -commit b46d4536faab06a30f3441dde5c4b82434aff9db -Author: Alex Soble -Date: Mon Nov 30 09:16:08 2020 -0600 - - Wiki link update - -commit f333823490fc1b9cccd8b543f6d5aca5445a1026 -Merge: 5fa068e08 67ed10977 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 30 09:15:46 2020 -0500 - - Merge pull request #92 from raft-tech/session-management-time-updates - - Session management time updates - -commit 8c55b6038e42ac19e6b8c473a4e844c7d741b31e -Author: Miles Reiter -Date: Mon Nov 30 01:11:54 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit ef44e2889ee8e10e20bea0cad1776f5c32a78f45 -Author: Miles Reiter -Date: Mon Nov 30 00:57:49 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit af7061d9fce024cadda8f493a05006ae40053760 -Author: Miles Reiter -Date: Mon Nov 30 00:55:01 2020 -0500 - - Update 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 9131f12c444999f3e6ba6bd279405fc0db3bddc5 -Author: Miles Reiter -Date: Mon Nov 30 00:53:59 2020 -0500 - - Create 2020, Fall - Understanding STT Roles, Source of Truth, and Metadata.md - -commit 9f66d5353c3bccff313a4c9d2b23e156a8bf1782 -Author: Aaron Beavers -Date: Fri Nov 27 16:20:37 2020 -0600 - - Remove redundant container - -commit ca3d1ec6d05fed33804933e6ad3df5c9369bfd73 -Author: Carlton Smith -Date: Fri Nov 27 16:38:26 2020 -0500 - - fix linting - -commit c6f4acea1cb18a1c6eea8f01d50f11df060eea1b -Author: Carlton Smith -Date: Fri Nov 27 16:21:54 2020 -0500 - - clean up some code - -commit a336dd80409706a0d60fcda0617cd3a344ab9e59 -Author: Spencer Hilvitz -Date: Fri Nov 27 13:15:49 2020 -0800 - - update .env.development to correct values - -commit 002f5bed8d7aa90e8e477903623739e4be53bfd8 -Author: Aaron Beavers -Date: Fri Nov 27 15:04:18 2020 -0600 - - Remove explicit header - -commit bc110d51b661dca378782300894ac01e13e64093 -Author: Aaron Beavers -Date: Fri Nov 27 15:04:04 2020 -0600 - - Update class on template header - -commit b7ea2f1c4de0cdb82a0b4fa5f2bb2ed6f9f4884b -Author: Alex Soble -Date: Fri Nov 27 11:14:44 2020 -0600 - - README heirarchy - -commit 3a2735b16f6e58096f16a5c82b85eee078c9c595 -Author: Alex Soble -Date: Fri Nov 27 11:14:18 2020 -0600 - - Update TOC - -commit a7a40d4f09899608da6ef136b14519c7b832a0cd -Author: Alex Soble -Date: Fri Nov 27 11:12:45 2020 -0600 - - Relative links tweak - -commit fecd8a479a2fcd9e6c8bb6edab12381575b41145 -Author: Alex Soble -Date: Fri Nov 27 11:11:57 2020 -0600 - - Use relative links - -commit 19c84979f5767dcf778898532c97915793c97631 -Author: Alex Soble -Date: Fri Nov 27 11:10:20 2020 -0600 - - Add acq.md - -commit 92760de735dbc3203ce01ac7cef93f11f57aec06 -Author: Alex Soble -Date: Fri Nov 27 11:08:55 2020 -0600 - - Add Quality Expectations and Team Charter intro page - -commit 67ed109779273d8bf2a706052e6ec957bea8181e -Author: Carlton Smith -Date: Fri Nov 27 11:12:55 2020 -0500 - - add comments - -commit 0d55eb82e3cd92f2daf21e977d4c98a5548cee1e -Author: Alex Soble -Date: Fri Nov 27 09:48:42 2020 -0600 - - Add Team Composition - -commit 9c22f36db60972da5a16655c6bd1a414cce04911 -Author: Alex Soble -Date: Fri Nov 27 09:46:20 2020 -0600 - - Add Design pages - -commit 23eec63a780a2e05057905034e64ce2026427007 -Author: Alex Soble -Date: Fri Nov 27 09:44:19 2020 -0600 - - Move technical documentation files over from wiki - -commit 0dce9abe072eb7fafde60c23f2ff49fc0c4292ca -Author: Alex Soble -Date: Fri Nov 27 09:40:27 2020 -0600 - - Add user research guide - -commit 1217efb168a8427b75a4909f339c792eee6b590e -Author: Alex Soble -Date: Fri Nov 27 09:36:40 2020 -0600 - - Add product strategy description - -commit e781cbc222cd774895fb362495f9c83350423a2d -Author: Alex Soble -Date: Fri Nov 27 09:36:00 2020 -0600 - - Remaining Product Strategy pages - -commit df96f82e966e43e7b6c7f32e86b96ee1a7e24524 -Author: Alex Soble -Date: Fri Nov 27 09:32:28 2020 -0600 - - Start adding Product Strategy - -commit 68e7f0866de68a29fdc951c93013430757baa0ee -Author: Alex Soble -Date: Fri Nov 27 09:25:49 2020 -0600 - - Migrate Background pages - -commit 5659c532fca397b49af084861b95dda7890bdc7d -Author: Alex Soble -Date: Fri Nov 27 09:14:51 2020 -0600 - - Add folder summaries to TOC - -commit c49abdc5fead76d555d81571903d50c405a17c44 -Author: Alex Soble -Date: Fri Nov 27 09:10:42 2020 -0600 - - Use linkable dir names - -commit 10281f1c9c407b78b60bfbdabd0dcbf7c451e5d9 -Author: Alex Soble -Date: Fri Nov 27 09:07:34 2020 -0600 - - Back out the backslashes - -commit df23f2778232a49623028f3d3b95ffd01c17ff16 -Author: Alex Soble -Date: Fri Nov 27 09:06:34 2020 -0600 - - TOC v1 - -commit 10aa8bbc20f83b19b233eae7cb6dd117448bd218 -Author: Alex Soble -Date: Fri Nov 27 08:54:07 2020 -0600 - - Use shorter name - -commit 89aea4b336bb2afcf460cd2a5c9921fef2fc05dd -Author: Alex Soble -Date: Fri Nov 27 08:53:53 2020 -0600 - - Use shorter name - -commit 22e35a1db18b419a13e3b226bfdd39dabf36d5c6 -Author: Alex Soble -Date: Fri Nov 27 08:49:08 2020 -0600 - - Move more docs into Technical Documentation - -commit 8c8dcff2a487d129fa24a0dae459625bcbfd17a5 -Author: Alex Soble -Date: Fri Nov 27 08:48:09 2020 -0600 - - Move team charter to How we work - -commit 5187d8f4be4f3f6cd85b5ae05c2fac297f6df3dd -Author: Alex Soble -Date: Fri Nov 27 08:47:21 2020 -0600 - - Move a11y docs to Technical Documentation - -commit 86158e78a2d95bd557b30c4b378ed131127c224e -Author: Alex Soble -Date: Fri Nov 27 08:45:30 2020 -0600 - - Move acq documents to own folder - -commit ec8d59b2f1bf5e646246e027e1b18878ffa8f24e -Author: Alex Soble -Date: Fri Nov 27 08:44:14 2020 -0600 - - Move prototype docs to own folder - -commit 7757ee14b3bea514a6782dc2f4d106043111eee7 -Author: Alex Soble -Date: Fri Nov 27 08:31:50 2020 -0600 - - Add docs README - -commit fbacd1770eb211ae0bf32a5666179aabf2ea5dca -Merge: aca06b892 b55c1b647 -Author: Spencer Hilvitz -Date: Wed Nov 25 13:58:03 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into session-management-time-updates - -commit aca06b89235737036a5160ce72abf46c62efdc84 -Merge: 5e3d707fd 86512d74e -Author: Spencer Hilvitz -Date: Wed Nov 25 13:52:08 2020 -0800 - - Merge branch 'session-management-time-updates' of github.com:raft-tech/TANF-app into session-management-time-updates - -commit 5e3d707fd305253f00372b55b42b0ee50256f83e -Author: Spencer Hilvitz -Date: Wed Nov 25 13:51:56 2020 -0800 - - fixing .env.development - -commit ad9ce15387e00c05c73b3b7d8d55fef138dbfece -Merge: d241c7e38 462122996 -Author: Carl Smith -Date: Wed Nov 25 16:31:55 2020 -0500 - - Merge pull request #438 from raft-tech/update-config - - update config - -commit 462122996d81f18790b5170a16a91df2c5777e2f -Merge: fb25dd39d d241c7e38 -Author: Carl Smith -Date: Wed Nov 25 16:23:56 2020 -0500 - - Merge branch 'raft-review' into update-config - -commit 59deaa7831e5254087f1efc8593def79dd5a7b93 -Merge: f73514635 d241c7e38 -Author: Carl Smith -Date: Wed Nov 25 16:20:38 2020 -0500 - - Merge branch 'raft-review' into header-title-match - -commit d241c7e38792c62cddd8d3fd7897fa834150f583 -Merge: c2869d803 86512d74e -Author: Carl Smith -Date: Wed Nov 25 16:16:39 2020 -0500 - - Merge pull request #437 from raft-tech/session-management-time-updates - - Session management time updates - -commit 86512d74edb9113ad1193681d0a71e2260360c07 -Merge: 8bef59e06 c2869d803 -Author: Carl Smith -Date: Wed Nov 25 15:50:41 2020 -0500 - - Merge branch 'raft-review' into session-management-time-updates - -commit fb25dd39dc1c58b8e511426b63084906f12b8f24 -Author: Carlton Smith -Date: Wed Nov 25 15:41:58 2020 -0500 - - update config - -commit b55c1b64711359fa7fcc2867d0a5265ee7ff9542 -Merge: 12a33ccc2 8bef59e06 -Author: Carl Smith -Date: Wed Nov 25 14:48:39 2020 -0500 - - Merge pull request #436 from raft-tech/session-management-time-updates - - update timeouts - -commit f735146354eacd7b826936306fa897319aca613f -Author: Carlton Smith -Date: Wed Nov 25 14:44:54 2020 -0500 - - remove unneeded test - -commit 686d02da35b6cd8bc8a49c4ce74862374eb16d0a -Author: Carlton Smith -Date: Wed Nov 25 14:26:26 2020 -0500 - - fix linting - -commit 5fa068e088ac05d4394abd52e2ce458fa3673b66 -Merge: 14f4f018e 8bef59e06 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Nov 25 14:24:20 2020 -0500 - - Merge pull request #90 from raft-tech/session-management-time-updates - - Session management time updates. Looks good, thanks! - -commit 8bef59e06530bd72b6f38d2b92f2878f940b9830 -Author: Spencer Hilvitz -Date: Wed Nov 25 10:39:16 2020 -0800 - - correct debounce time - -commit 2ce3b75d21153eecf97e17989a4123413b8708ba -Author: Spencer Hilvitz -Date: Wed Nov 25 10:35:19 2020 -0800 - - update REACT_APP_LOGOUT_TIME in .env.development, change order of times - -commit c2869d803c72a923243ed6b23b308ccb03902832 -Author: Carlton Smith -Date: Wed Nov 25 13:31:47 2020 -0500 - - add raft-review to circleci - -commit ac9cf42fc30eda670d862715dcd94c6f29127fd8 -Merge: 82746043a 12a33ccc2 -Author: Carl Smith -Date: Wed Nov 25 13:25:21 2020 -0500 - - Merge branch 'raft-review' into header-title-match - -commit 11d154e046354b8ceb3691ae691f92a2bd101230 -Author: Carlton Smith -Date: Wed Nov 25 13:22:31 2020 -0500 - - update timeouts - -commit 12a33ccc20c384633068dde275a15b8dbfe927dc -Merge: 69bbad000 cfe9a6f56 -Author: Carl Smith -Date: Wed Nov 25 10:12:17 2020 -0500 - - Merge pull request #421 from raft-tech/197-session-timeout - - 197 & 278: Session Timeout - -commit 14f4f018eca645a4575677a0ad8ef7f210308e34 -Merge: 5021cd092 cfe9a6f56 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Nov 25 09:49:10 2020 -0500 - - Merge pull request #86 from raft-tech/197-session-timeout - - 197 session timeout Looks great! As noted: times have been adjusted for the purpose of review and will be updated before merge. The testing times are 6 seconds of inactivity before the modal window appears and 10 seconds before automatic logout occurs - -commit 5021cd092d02603a720c77226b4afbc63090b6a2 -Merge: 331d51027 400c1e4f2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Nov 24 14:05:07 2020 -0500 - - Merge pull request #89 from shubhi-raft/patch-5 - - Update Sprint 8 Summary.md - -commit 400c1e4f25f7ef8e93b75be3f9c69439c075b83e -Author: Shubhi Mishra -Date: Tue Nov 24 13:52:34 2020 -0500 - - Update Sprint 8 Summary.md - - adding one more agenda item. - -commit cfe9a6f560132f63fcccc67eca4f3a994e86ffdc -Merge: 8c1882c25 41196c89e -Author: Spencer Hilvitz -Date: Tue Nov 24 09:39:00 2020 -0800 - - Merge branch '197-session-timeout' of github.com:raft-tech/TANF-app into 197-session-timeout - -commit 8c1882c259fe2c24bedeced96f033b98608bb1aa -Author: Spencer Hilvitz -Date: Tue Nov 24 09:38:45 2020 -0800 - - update documentation for IdleTimer to include environment variable information and where they are defined - -commit 331d5102753ed15dbec181b9db308e1ecb60133c -Merge: ba8d03189 628d091f9 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Nov 24 11:59:42 2020 -0500 - - Merge pull request #88 from shubhi-raft/patch-4 - - Create Sprint 8 Summary.md As this is documentation, tests are not required. - -commit 628d091f9dd174f3129a53abc34833fa2f935c63 -Author: Shubhi Mishra -Date: Tue Nov 24 11:47:37 2020 -0500 - - Create Sprint 8 Summary.md - - Adding sprint 8 summary - -commit 41196c89e2183e5ce67611db12e2e276de3e1bcd -Merge: 2d289d9e8 ba8d03189 -Author: Carl Smith -Date: Fri Nov 20 16:34:17 2020 -0500 - - Merge branch 'main' into 197-session-timeout - -commit 2d289d9e8cf3d63b058b3cf65bdea6bc49184476 -Author: Spencer Hilvitz -Date: Fri Nov 20 12:42:41 2020 -0800 - - remove commented out styles in idletimer.scss - -commit 2480b4a922a14266f095405123a31ff236231809 -Author: Carlton Smith -Date: Fri Nov 20 14:55:57 2020 -0500 - - fix linting - -commit b8c68eac326bb0aff4dfb95f92debd193e4c6f61 -Author: Carlton Smith -Date: Fri Nov 20 14:41:17 2020 -0500 - - remove unneeded - -commit 83013f516cffbc4e3632acbacfe527fec899d2f1 -Author: Carlton Smith -Date: Fri Nov 20 11:30:58 2020 -0500 - - add tests - -commit 1199f9e93b7d413221b7504b39f04cde1b325164 -Author: Spencer Hilvitz -Date: Thu Nov 19 13:35:55 2020 -0800 - - remove profile icon when not logged in - -commit e4371f99efeea3729a59b10c5b25003684b30832 -Author: Spencer Hilvitz -Date: Thu Nov 19 13:13:19 2020 -0800 - - clean up header component by using classes rather than style, update header tests - -commit edc876c3ba693f95931fefd5345e78a504d347d0 -Merge: d1733228c 6a42a16f2 -Author: Spencer Hilvitz -Date: Thu Nov 19 12:44:28 2020 -0800 - - Merge branch '197-session-timeout' of github.com:raft-tech/TANF-app into 197-session-timeout - -commit d1733228c97547c36bc1108c6c02bfd1ecdda926 -Author: Spencer Hilvitz -Date: Thu Nov 19 12:44:18 2020 -0800 - - fix mobile menu not being entirely keyboard navigable by making changes in Header.jsx - -commit 6a42a16f2770b5c55cf3e817639d3512aa065b8e -Author: Carlton Smith -Date: Thu Nov 19 15:14:51 2020 -0500 - - set session timeout in settings - -commit 1b767ab985b2ff052a9464d185570ca317b85f5d -Author: Carlton Smith -Date: Thu Nov 19 14:56:23 2020 -0500 - - progress - -commit 540389b45413edbb6bca97929f8fac2162d4ff1c -Author: Spencer Hilvitz -Date: Thu Nov 19 11:30:05 2020 -0800 - - update timeout timers and add REACT_APP_LOGOUT_TIME to .env.development and .env.local as requested by Miles for testing - -commit fc8f740fe0186816836f9d0647111da2a9ecaf20 -Author: Spencer Hilvitz -Date: Thu Nov 19 11:00:25 2020 -0800 - - add documentation to IdleTimer component - -commit ed87912e41701d170a9b03641ed8f42c4e05ae14 -Author: Spencer Hilvitz -Date: Thu Nov 19 10:57:30 2020 -0800 - - remove console logs now that environment variables seem to be working - -commit 53e0bf2ef7b79001cae1842d88b153194cfa51ba -Author: Spencer Hilvitz -Date: Thu Nov 19 10:39:16 2020 -0800 - - Change `throttle` to `debounce` - - For some reason, `throttle` in `react-idle-timer` package was not working correctly when trying to dispatch an action. `Debounce` does work as expected. - -commit 4948df963bef387f2c601e8da7225bf5d719b650 -Author: Spencer Hilvitz -Date: Thu Nov 19 10:33:04 2020 -0800 - - update .env.development and .env.local with REACT_APP_TIMEOUT_TIME and REACT_APP_DEBOUNCE_TIME, use those values in IdleTimer - -commit 1cf084438b8b54cfd4dc8a097a609de10f433cee -Merge: cc64ab6ec dae30c670 -Author: Carlton Smith -Date: Thu Nov 19 13:04:14 2020 -0500 - - resolve conflicts - -commit cc64ab6ec92d0877e6ca77ce14568d81976132a9 -Merge: 32e19ec9c dc19d307c -Author: Carlton Smith -Date: Thu Nov 19 12:00:02 2020 -0500 - - resolve conflicts - -commit 32e19ec9ceab9fd97f60efb18aea2747a0bfcea3 -Author: Carlton Smith -Date: Thu Nov 19 11:45:16 2020 -0500 - - add .env.local - -commit e3b2e947a5c5d7b0ba42b6590a0454714d6c4746 -Author: Spencer Hilvitz -Date: Wed Nov 18 16:16:40 2020 -0800 - - fix tests - -commit f7ac1a11c019184fc03ac8badbf08ffa968fc080 -Author: Spencer Hilvitz -Date: Wed Nov 18 16:05:52 2020 -0800 - - focus on h1 on modal rather than entire modal - -commit b3ae916e31ba82147a699f835486835e0e5ac011 -Author: Spencer Hilvitz -Date: Wed Nov 18 15:59:57 2020 -0800 - - focus fix for modal - -commit 581aa3d453bf7d5edd69be4283f36829e2e23e04 -Author: Spencer Hilvitz -Date: Wed Nov 18 15:36:29 2020 -0800 - - update timer times for testing and update IdleTimer tests - -commit dae30c67015ddf1d4fd508be3b003d3b727c4f14 -Merge: 429eb7fdc 69bbad000 -Author: Aaron Beavers -Date: Wed Nov 18 16:13:55 2020 -0600 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit c98eb8c2ee33f2ceb46b0e1f929e9228da4bf074 -Merge: 8f2a99e4e 76251f972 -Author: Carlton Smith -Date: Wed Nov 18 16:44:53 2020 -0500 - - Merge branch 'documentation/282/session-management' of github.com:raft-tech/TANF-app into documentation/282/session-management - -  Conflicts: -  tdrs-backend/docs/session-management.md - -commit 8f2a99e4e7900e381fcc833ff10d80827df1f579 -Author: Carlton Smith -Date: Wed Nov 18 16:42:43 2020 -0500 - - Update documentation - -commit feb0fe234764b3df9e2dc372442fedbcefefbc91 -Author: snyk-bot -Date: Wed Nov 18 21:42:22 2020 +0000 - - fix: upgrade axios from 0.20.0 to 0.21.0 - - Snyk has created this PR to upgrade axios from 0.20.0 to 0.21.0. - - See this package in npm: - https://www.npmjs.com/package/axios - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit 5e2cdf5eb7c8472e76524192f81fd361c5d94fa7 -Author: Spencer Hilvitz -Date: Wed Nov 18 13:31:47 2020 -0800 - - remove unnecessary package cookie-jar and tough-cookie - -commit fbadce893fa423b4b3612115f1d6b40643f8bfe4 -Author: Spencer Hilvitz -Date: Wed Nov 18 13:20:45 2020 -0800 - - add throttle to call fetchAuth() on activity - -commit 70b8581edc1d5025c79d8759a3eb93d415d5e02a -Author: Spencer Hilvitz -Date: Wed Nov 18 12:59:55 2020 -0800 - - readd react-idle-timer - -commit e608f1df1b2b21ac613752b95a8e761a6ccf609d -Merge: 6d5d85c9d dc19d307c -Author: Carlton Smith -Date: Wed Nov 18 15:28:53 2020 -0500 - - Merge branch 'raft-tdp-main' into 197-session-timeout - - # Conflicts: - # tdrs-frontend/package.json - -commit dc19d307cd3591b5b6187461ea017454e3d68936 -Merge: 82bb38698 69bbad000 -Author: Carlton Smith -Date: Wed Nov 18 15:21:35 2020 -0500 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main - -commit 69bbad000d3a35c6cd7af423dc9665febea88c67 -Merge: 86dd5c059 292a4729b -Author: Carl Smith -Date: Wed Nov 18 15:17:55 2020 -0500 - - Merge pull request #368 from raft-tech/dependabot/pip/tdrs-backend/raft-tdp-main/cryptography-3.2 - - [Security] Bump cryptography from 3.1 to 3.2 in /tdrs-backend - -commit 292a4729bdbd2441f6ed9a651caca6877eca3595 -Merge: c54694fbe 86dd5c059 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Nov 18 15:10:11 2020 -0500 - - Merge branch 'raft-tdp-main' into dependabot/pip/tdrs-backend/raft-tdp-main/cryptography-3.2 - -commit 82bb38698dcf05f1991d9e5a4db3de83f8f87d2d -Merge: 705363930 86dd5c059 -Author: Carlton Smith -Date: Wed Nov 18 14:34:50 2020 -0500 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into raft-tdp-main - -commit 70536393066f0d82e9102fcfab8df127cd1d9850 -Merge: 8d41b54c3 c54694fbe -Author: Carlton Smith -Date: Wed Nov 18 14:34:19 2020 -0500 - - Merge branch 'dependabot/pip/tdrs-backend/raft-tdp-main/cryptography-3.2' into raft-tdp-main - -commit 86dd5c0599bc63648647c8ba8f088242d5463a1e -Merge: 4695605e3 85ff00e52 -Author: Carl Smith -Date: Wed Nov 18 14:04:46 2020 -0500 - - Merge pull request #369 from raft-tech/snyk-upgrade-d97b337fc14fec32d1123704debf6178 - - [Snyk] Upgrade: @fortawesome/fontawesome-svg-core, @fortawesome/free-solid-svg-icons - -commit ba8d0318984e43758a0eb2d2ea3af47b22827e5e -Merge: 70ff056ff 7a242f13d -Author: Alex Soble -Date: Wed Nov 18 12:55:18 2020 -0600 - - Merge pull request #84 from HHS/snyk-upgrade-98d4a65e724d9447b62cc0f2cc7ee318 - - [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 - -commit 70ff056ff5a3afff4c143cf7f37463a76999a7df -Merge: ec7d14111 161a93d62 -Author: Alex Soble -Date: Wed Nov 18 12:55:06 2020 -0600 - - Merge pull request #85 from HHS/snyk-upgrade-bdfc8f3e3f263eac26b8a210cf084a00 - - [Snyk] Upgrade react-redux from 7.2.1 to 7.2.2 - -commit 85ff00e52d2727527208ce5e92ae3545e90faf5a -Merge: 6097aca17 4695605e3 -Author: Carl Smith -Date: Wed Nov 18 13:50:36 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-d97b337fc14fec32d1123704debf6178 - -commit 4695605e33acab8a8b7112bfbb7361e8a143fc02 -Merge: d17a9f90e d93457f6d -Author: Carl Smith -Date: Wed Nov 18 13:48:51 2020 -0500 - - Merge pull request #387 from raft-tech/snyk-upgrade-0dd3f97506907e102f7a849536a644bc - - [Snyk] Upgrade: react, react-dom - -commit d93457f6dbef015f530e3712f0711bfca1a711fc -Merge: 368a3d97c d17a9f90e -Author: Carl Smith -Date: Wed Nov 18 13:35:46 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-0dd3f97506907e102f7a849536a644bc - -commit d17a9f90e22d475946391589c6aa158c7165e36d -Merge: afdfeb864 825a8d4ce -Author: Carl Smith -Date: Wed Nov 18 13:33:59 2020 -0500 - - Merge pull request #410 from raft-tech/snyk-upgrade-fb357eceea25cb132f7476b235e8a56d - - [Snyk] Upgrade axios from 0.20.0 to 0.21.0 - -commit 825a8d4ce9d9c1fed81af8156d78a8ea56fb22c1 -Merge: 8cb265c77 afdfeb864 -Author: Carl Smith -Date: Wed Nov 18 13:27:04 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-fb357eceea25cb132f7476b235e8a56d - -commit afdfeb864912895a0b5cfa9bbc823a7b77adbc9e -Merge: 401353cef 3ea2811d2 -Author: Carl Smith -Date: Wed Nov 18 13:24:59 2020 -0500 - - Merge pull request #419 from raft-tech/snyk-upgrade-4eeea2be544566c1e1521c971adec7ed - - [Snyk] Upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 - -commit 6d5d85c9d4ab5a1e4d3d3d41bc86239f1f6999d4 -Author: Spencer Hilvitz -Date: Wed Nov 18 08:44:46 2020 -0800 - - add mobile styling for idletimer buttons - -commit 3ea2811d2d0b25c0a45771ab3693e12a2b13ce1f -Merge: bfdf49312 401353cef -Author: Carl Smith -Date: Wed Nov 18 11:32:11 2020 -0500 - - Merge branch 'raft-tdp-main' into snyk-upgrade-4eeea2be544566c1e1521c971adec7ed - -commit 401353cefbda4f91c94cd9d2f4807dcc72decb31 -Merge: 8d41b54c3 4bc0afbc9 -Author: Carl Smith -Date: Wed Nov 18 11:30:22 2020 -0500 - - Merge pull request #422 from raft-tech/snyk-upgrade-be61c938bb6469298ab212ef208b7a3a - - [Snyk] Upgrade react-redux from 7.2.1 to 7.2.2 - -commit 82746043ac7052e46765dda491a0b87f0741beea -Author: Spencer Hilvitz -Date: Tue Nov 17 17:25:50 2020 -0800 - - fix PrivateRoute.test.js by updating MemoryRouter path - -commit f2accf3942eb83e0e5362d644e178ca6cff8e356 -Author: Spencer Hilvitz -Date: Tue Nov 17 15:12:10 2020 -0800 - - remove request-access-button class leftover - -commit f66f170fbbfdba9d7de9a71fc64d19514ac7ad3d -Author: Aaron Beavers -Date: Tue Nov 17 16:42:11 2020 -0600 - - Add title to /request route - -commit 48b3b0afeaf2836579510b8ba65b12575d94aab4 -Author: Aaron Beavers -Date: Tue Nov 17 16:41:46 2020 -0600 - - Add tests for title presence - -commit 72960f24344b034ebfc0953a5d888e0d24f2d0ba -Author: Aaron Beavers -Date: Tue Nov 17 16:41:04 2020 -0600 - - Add title param to private route - -commit 622f1f622d27940c1d3056b3f4bfeea1c6033950 -Author: Spencer Hilvitz -Date: Tue Nov 17 14:19:58 2020 -0800 - - fix modal content styles to match mock - -commit c94977d490f6420046308c5618fc63800c0c9dfe -Author: Spencer Hilvitz -Date: Tue Nov 17 14:17:44 2020 -0800 - - add margin-bottom to modal content - -commit 02125ab8b5c562a4191e1707e9a22cb737c7fd5c -Author: Spencer Hilvitz -Date: Tue Nov 17 14:13:36 2020 -0800 - - finalize styles - -commit 58a7e8842dd4651f01287866f12981e989bda717 -Author: Spencer Hilvitz -Date: Tue Nov 17 14:05:27 2020 -0800 - - remove unnecessary code and uncomment out timer - -commit 3ed51764d7d386455a6d692b8ea341909b3b6a9b -Merge: 2259bce1d 82849a827 -Author: Spencer Hilvitz -Date: Tue Nov 17 14:04:29 2020 -0800 - - Merge branch '197-session-timeout' of github.com:raft-tech/TANF-app into 197-session-timeout - -commit 2259bce1da8e2210eeaae8e6d012b4406dcc9d50 -Author: Spencer Hilvitz -Date: Tue Nov 17 14:04:18 2020 -0800 - - update idletimer styles, reorder buttons, update idletimer tests - -commit 4bc0afbc9e7ba034a245e8a65b19a350486bcdbb -Author: snyk-bot -Date: Tue Nov 17 21:50:32 2020 +0000 - - fix: upgrade react-redux from 7.2.1 to 7.2.2 - - Snyk has created this PR to upgrade react-redux from 7.2.1 to 7.2.2. - - See this package in npm: - https://www.npmjs.com/package/react-redux - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit 82849a82749df59bce6289db0f533aee91c1f5d9 -Author: Carlton Smith -Date: Tue Nov 17 15:19:30 2020 -0500 - - fix linting issue - -commit da4a8a53eab37d125ac96d0d992883d0e7b7efcb -Author: Carlton Smith -Date: Tue Nov 17 15:12:52 2020 -0500 - - update tests - -commit dfb9110c88e4ddcd1476c65596e7b8498ea88135 -Author: Aaron Beavers -Date: Tue Nov 17 13:49:57 2020 -0600 - - remove commented tests - -commit c63ce6c37db9b2d0fd9f141b80f7ad0c25769ff4 -Merge: e4e82d70b 7e09c69f6 -Author: Carlton Smith -Date: Tue Nov 17 14:16:02 2020 -0500 - - resolve conflict - -commit 7e09c69f6bfdf624298188ad3b82ffe988697e4b -Merge: 5f78a66b7 d444b08a1 -Author: Carlton Smith -Date: Tue Nov 17 14:15:05 2020 -0500 - - Merge branch 'backend/278/session-management' of github.com:raft-tech/TANF-app into backend/278/session-management - -commit e4e82d70bf0b8666365806556c32c1c0fe311b1f -Author: Carlton Smith -Date: Tue Nov 17 14:11:28 2020 -0500 - - update timeout - -commit 5d807152c3fb0f6a57307d76f4e7385dfac917d5 -Merge: 084522e16 5f78a66b7 -Author: Carlton Smith -Date: Tue Nov 17 14:09:28 2020 -0500 - - Merge branch 'backend/278/session-management' into 197-session-timeout - -commit 5f78a66b753c40315eb787c99e3a3ded1688df67 -Merge: be0875aef 8d41b54c3 -Author: Carlton Smith -Date: Tue Nov 17 14:08:29 2020 -0500 - - Merge branch 'raft-tdp-main' into backend/278/session-management - -commit 084522e16649b5c6fe01a950973be8eb71c4f93f -Merge: 0405dd145 be0875aef -Author: Carlton Smith -Date: Tue Nov 17 14:07:50 2020 -0500 - - Merge branch 'backend/278/session-management' into 197-session-timeout - -commit 0405dd1454223bfc2b9223ba080d7aff94d7e514 -Merge: 7273b9817 8d41b54c3 -Author: Carlton Smith -Date: Tue Nov 17 14:04:52 2020 -0500 - - Merge branch 'raft-tdp-main' into 197-session-timeout - -commit 429eb7fdcfe8d7535a0570cbddb05a741ad87897 -Author: Carlton Smith -Date: Tue Nov 17 12:32:42 2020 -0500 - - add groups - -commit 8c6599515c8189555b8467289e589b172176acc2 -Merge: 4622b95b9 8d41b54c3 -Author: Carlton Smith -Date: Tue Nov 17 11:59:11 2020 -0500 - - rebase - -commit 8d41b54c306ec1dedf09a8ead2b89b713bf0a21d -Merge: 783ad7af8 9c2dc5e8a -Author: Carl Smith -Date: Tue Nov 17 09:35:03 2020 -0500 - - Merge pull request #405 from raft-tech/231-submit-form - - 231 submit form - -commit 161a93d62e1c1f7466191e5f1478024ea552dff5 -Author: snyk-bot -Date: Tue Nov 17 05:35:50 2020 +0000 - - fix: upgrade react-redux from 7.2.1 to 7.2.2 - - Snyk has created this PR to upgrade react-redux from 7.2.1 to 7.2.2. - - See this package in npm: - - - See this project in Snyk: - https://app.snyk.io/org/alexsoble/project/a618c09d-c807-4b9b-a957-1efdcedde72e?utm_source=github&utm_medium=upgrade-pr - -commit 7a242f13d04fa6fd0c6ac8d6ab91f2603abceeab -Author: snyk-bot -Date: Tue Nov 17 05:35:45 2020 +0000 - - fix: upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 - - Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12. - - See this package in npm: - - - See this project in Snyk: - https://app.snyk.io/org/alexsoble/project/a618c09d-c807-4b9b-a957-1efdcedde72e?utm_source=github&utm_medium=upgrade-pr - -commit 7273b9817dc7384ece9f80746fc28ac6cd06b7d3 -Author: Spencer Hilvitz -Date: Mon Nov 16 19:02:14 2020 -0800 - - update idletimer tests and get secondary modal timer working - -commit 83fb4a837edd4b35dc6b19c8c12ed2c5df8c5acc -Author: Spencer Hilvitz -Date: Mon Nov 16 14:55:16 2020 -0800 - - change axios post to dispatch fetchAuth, update tests for idletimer - -commit ca07033eb720da693a56a8937e22cd134c4d0f7a -Merge: bb319c367 9c2dc5e8a -Author: Spencer Hilvitz -Date: Mon Nov 16 14:35:37 2020 -0800 - - Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 197-session-timeout - -commit bb319c3672a1ebf72fcde9b91a95dac930743186 -Merge: 8d4b49767 783ad7af8 -Author: Spencer Hilvitz -Date: Mon Nov 16 14:35:30 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 197-session-timeout - -commit 8d4b49767631a212a68e61c54a3c1c5eac459115 -Author: Spencer Hilvitz -Date: Mon Nov 16 14:35:23 2020 -0800 - - midst - -commit bfdf4931225d6d02722b5f6516a4d619fbf4576a -Author: snyk-bot -Date: Mon Nov 16 22:22:59 2020 +0000 - - fix: upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12 - - Snyk has created this PR to upgrade @fortawesome/react-fontawesome from 0.1.11 to 0.1.12. - - See this package in npm: - - - See this project in Snyk: - https://app.snyk.io/org/carltonsmith/project/965f3cc4-29f3-4057-b2ea-c5c564e4e613?utm_source=github&utm_medium=upgrade-pr - -commit 9c2dc5e8a9bbc680f0c673890bc09e8a7b7dfb7a -Merge: ae0ff0132 783ad7af8 -Author: Carl Smith -Date: Mon Nov 16 16:49:03 2020 -0500 - - Merge branch 'raft-tdp-main' into 231-submit-form - -commit ec7d14111b7d32c327018e6dd95caee18fa5e6a8 -Merge: e8019ecab ae0ff0132 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 16 16:44:25 2020 -0500 - - Merge pull request #81 from raft-tech/231-submit-form - - 231 submit form - Looks great! Thanks, all! - -commit 4622b95b955a1bc256cd55f0cd6201b10f70bccb -Author: Aaron Beavers -Date: Mon Nov 16 12:28:52 2020 -0600 - - Fix test - -commit ae0ff0132ec12ce576c2b580181b093e2496df0c -Author: Carlton Smith -Date: Mon Nov 16 10:53:25 2020 -0500 - - Revert "remove unneeded" - - This reverts commit 4ff05e8615d62caf96d83b6d8eafad72c121f8c2. - -commit e8019ecabda9daf7f109a6b9802db477fe3f409a -Merge: 71c1e29c7 4ff204c6e -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 16 09:54:57 2020 -0500 - - Merge pull request #82 from shubhi-raft/patch-3 - - Create Sprint 7 Summary.md - -commit 43fcfdb84eecca82a187e88aa430b233097444ab -Author: Spencer Hilvitz -Date: Fri Nov 13 14:41:36 2020 -0800 - - remove alert role from formgroup - -commit 8cb265c771a66afd4f0431fce0ef0edfadca4303 -Author: snyk-bot -Date: Fri Nov 13 21:44:39 2020 +0000 - - fix: upgrade axios from 0.20.0 to 0.21.0 - - Snyk has created this PR to upgrade axios from 0.20.0 to 0.21.0. - - See this package in npm: - https://www.npmjs.com/package/axios - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit 4ff05e8615d62caf96d83b6d8eafad72c121f8c2 -Author: Carlton Smith -Date: Fri Nov 13 14:59:50 2020 -0500 - - remove unneeded - -commit ed892da683e1fbf2f0c845bb715651258da95702 -Author: Carlton Smith -Date: Fri Nov 13 14:53:51 2020 -0500 - - remove unneeded - -commit 66167ee194d43d112e69e9d8ff63e23b1e19a425 -Merge: 058a3d9eb 068955e55 -Author: Aaron Beavers -Date: Fri Nov 13 09:24:18 2020 -0600 - - Merge remote-tracking branch 'origin/231-submit-form' into 231-submit-form - -commit 058a3d9eb35fc3dd34eb2e42b27fc1c274294136 -Author: Aaron Beavers -Date: Fri Nov 13 09:23:24 2020 -0600 - - export default - -commit 068955e55154ad00afdc250dea8bdf0d8158a634 -Author: Carlton Smith -Date: Fri Nov 13 10:19:51 2020 -0500 - - update docstrings - -commit 71587065a49a04249aac6e016b3a280fa20bdca7 -Author: Aaron Beavers -Date: Thu Nov 12 15:35:18 2020 -0600 - - Refactored axios instance declaration. - -commit 783ad7af8bd57f16a34951ceb374c11c7d035b8e -Merge: 3737cca1c 703a95c1d -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Nov 12 16:32:34 2020 -0500 - - Merge pull request #408 from raft-tech/shubhi-raft-patch-6 - - Update issue templates - -commit 7add6911244645b3443908fa80da27872178dd71 -Merge: 97ba1bfa6 4306d4677 -Author: Spencer Hilvitz -Date: Thu Nov 12 12:35:45 2020 -0800 - - Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 231-submit-form - -commit 97ba1bfa6957886bc2f7356927104eedad4bb53c -Author: Spencer Hilvitz -Date: Thu Nov 12 12:35:36 2020 -0800 - - Add documentation to FormGroup - -commit 703a95c1dde0f3e6698a508af4ebf4d585b3081c -Author: Shubhi Mishra -Date: Thu Nov 12 15:06:54 2020 -0500 - - Update issue templates - - - updated AC to include user flow updates - - removed Christine Bath from Definition of Done - -commit 4ff204c6e12b275f91821b01defd363c2cc872be -Author: Shubhi Mishra -Date: Thu Nov 12 13:35:30 2020 -0500 - - Update Sprint 7 Summary.md - - Updated PR to include requested changes. - -commit 0b83af786de9b10b2641da21eee6217e0b9a238c -Author: Shubhi Mishra -Date: Wed Nov 11 18:13:52 2020 -0500 - - Create Sprint 7 Summary.md - -commit d444b08a16a82baaa825998cdfc5632757d86a08 -Author: Aaron Beavers -Date: Tue Nov 10 12:51:44 2020 -0600 - - Add test for auth update middleware - -commit 3d5ffb440bdc9b1410ce6de81ff4f1333dcbfec2 -Author: Aaron Beavers -Date: Tue Nov 10 12:50:57 2020 -0600 - - Move time logic inside middleware - -commit 4306d4677080f3c74c8637256d0618256c88695b -Author: Aaron Beavers -Date: Mon Nov 9 16:20:50 2020 -0600 - - remove commented code - -commit fafa313d96862c51cc8b48273c0c9fbf56f196ac -Author: Spencer Hilvitz -Date: Mon Nov 9 13:57:35 2020 -0800 - - change federal government check from id to name - -commit 849d7af33b8d7474d49a1118543cd0c0bcbb20d0 -Author: Spencer Hilvitz -Date: Mon Nov 9 12:42:34 2020 -0800 - - remove unused code lines from Aaron - -commit b80ac89740481e9bb89bda30c4b13b2b0b69a8e5 -Merge: 59f72597c 987da4783 -Author: Carl Smith -Date: Mon Nov 9 15:20:55 2020 -0500 - - Merge pull request #401 from raft-tech/csrf-hack - - Csrf hack - -commit 987da478336855bd305b44a2488bf77e91a49369 -Author: Aaron Beavers -Date: Mon Nov 9 14:10:59 2020 -0600 - - fix lint - - Rename import - - - rename import - - - rename - - - remove system environmet - -commit 64f60684b253cffe94f18db5950509678c45b3cc -Author: Aaron Beavers -Date: Mon Nov 9 08:55:39 2020 -0600 - - Change how we get csrf token - -commit 4e7c430f1624df1cc2cbe66133f0279269f3525b -Author: Aaron Beavers -Date: Mon Nov 9 08:32:56 2020 -0600 - - Cleaned lint - -commit cbe3ab6f32f6abe2aaa373f44a4ea9c3f38bb4e5 -Author: Aaron Beavers -Date: Mon Nov 9 08:26:02 2020 -0600 - - All tests pass - -commit e85f72fae919ac6f44aeeb338ecf8d5f18a46464 -Author: Aaron Beavers -Date: Fri Nov 6 13:21:51 2020 -0600 - - update - - - Only use cookie jar if not testing - -commit 567e57022592c68e5203b913f7e2e178c5c6bf7d -Author: Aaron Beavers -Date: Fri Nov 6 12:51:11 2020 -0600 - - Allow X-CSRFToken - - - Fix header typo - -commit 4931a1150824cd147fa76802bc83377011e5d2ad -Author: Aaron Beavers -Date: Fri Nov 6 12:34:58 2020 -0600 - - Attempting to fix - - - hack - -commit dd9094f65f4a2fbdc9d2c56ca65d68410afbbc18 -Merge: be0875aef 3737cca1c -Author: Aaron Beavers -Date: Mon Nov 9 12:08:24 2020 -0600 - - Merge remote-tracking branch 'origin/raft-tdp-main' into backend/278/session-management - -commit 71c1e29c79c4c5ae6836dedcbf762ed13a51de5c -Merge: 169a54fcf f5eb85e88 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 9 11:58:16 2020 -0500 - - Merge pull request #80 from reitermb/main - - #321 Migrate items from wiki to Code<> doc - Tests are not required as this is documentation only. - -commit 3f5f40583673d1ee1479c292fd4eb3a27825201c -Author: Carlton Smith -Date: Mon Nov 9 11:37:10 2020 -0500 - - test core model - -commit f5eb85e8877679426aa40e5555a43e8f1b465959 -Author: Miles Reiter -Date: Mon Nov 9 11:19:12 2020 -0500 - - Update 2020, Spring - Understanding the local experience.md - - Adds angle bracket link fix - -commit 00e8b94c66b4750a03cf21a1854ad0ea48125d77 -Author: Miles Reiter -Date: Mon Nov 9 11:15:02 2020 -0500 - - Update 2020, Summer - Understanding the OFA Experience.md - -commit 50ac0bf5052fbf74c3194e0e484a111dd9400848 -Author: Miles Reiter -Date: Mon Nov 9 11:13:44 2020 -0500 - - Update Open research questions.md - - Adds angle bracket link fix - -commit a3ef74d52ace2daf6f84e510908df6e8b9eb1e41 -Author: Miles Reiter -Date: Mon Nov 9 11:02:31 2020 -0500 - - Update Overview of Research Activities.md - - Adds angle bracket link fixes for Overview of Research Activities - -commit adce58b32f39827255c25af858649be304c75bae -Author: Miles Reiter -Date: Mon Nov 9 10:47:24 2020 -0500 - - Update 2020, Spring - Understanding the local experience.md - - Attempts fix of markdown links with spaces in them - -commit a0e1374bc79de973811824c8faa7d677c728a18f -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 9 10:26:59 2020 -0500 - - Update Open research questions.md - -commit bdbc736e91727db8d35062c2a4b7bf786a7c9cc3 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Nov 9 10:21:15 2020 -0500 - - Update Project Glossary.md - - updated 477 link - -commit 59f72597c704d3f887521eb74414fe5ccac71f0c -Author: Spencer Hilvitz -Date: Fri Nov 6 11:59:30 2020 -0800 - - add request-access-button class to make sign out button correct color - -commit b121da66a342d59b15c886cd5f5414206737cca0 -Author: Spencer Hilvitz -Date: Fri Nov 6 11:51:03 2020 -0800 - - add sign out function to request and add tests - -commit 147cb687346eae87ef0cd8aad83b0e983d9d4029 -Author: Carlton Smith -Date: Fri Nov 6 11:22:12 2020 -0500 - - update tests - -commit 2c4b32b2e8f3737b8c705dcbaa225bff8605e7d0 -Author: Spencer Hilvitz -Date: Fri Nov 6 07:45:22 2020 -0800 - - remove unused code in EditProfile.test.js - -commit 169a54fcf595d8311a9ec0f6748ab47642e6ad8d -Merge: bbcdcd17a 580ad4c23 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Nov 6 10:41:07 2020 -0500 - - Merge pull request #79 from HHS/ars/document-erd - - Add database model to support compliance process - -commit dec3e9e9cac4750e0e6e817993fc262807e92156 -Author: miles-reiter -Date: Thu Nov 5 20:13:33 2020 -0500 - - Migrates Wiki & Teams Items to Code Docs - - * Adds folders for Background, How we work, and User Research - * Changes name of Research Activities to Research Activities Overview - * Adds wiki content marked to be moved to releated folders - * Adds subfolder for 2020 Fall Concept Prototypes - * Adds 2020 Summer OFA research overview - -commit fa3ad0f53fd7c7f4601ed130c6549e6b859f3b3d -Author: Spencer Hilvitz -Date: Thu Nov 5 14:18:52 2020 -0800 - - will set alert if api call for requestAccess fails - -commit 6de322fc25e02877ea32536ae2b5fcb44ac7b556 -Merge: d374b84a5 3737cca1c -Author: Carlton Smith -Date: Thu Nov 5 15:59:39 2020 -0500 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit 339396d9c00ed9d5480de1b427282e74017340f3 -Author: Spencer Hilvitz -Date: Thu Nov 5 12:43:50 2020 -0800 - - change test wording - -commit 55aa54da58713321bbf41a9cee0d0c94eb5812b0 -Author: Spencer Hilvitz -Date: Thu Nov 5 11:15:13 2020 -0800 - - change settimeout to 0 in editprofile - -commit 12080c06840b154ec6705845151418a141f3ddeb -Author: miles-reiter -Date: Thu Nov 5 13:51:34 2020 -0500 - - Migrate Wiki Sections - -commit 07c8c0aad02f7d18b7ab99c9ce7f1e43c8ae6ccf -Merge: 0d3a7bcec 3737cca1c -Author: Carlton Smith -Date: Thu Nov 5 13:31:24 2020 -0500 - - rebase - -commit 4625a7701a38dc92e872ae780741dada0f57b808 -Merge: 5e9a559db 3737cca1c -Author: Spencer Hilvitz -Date: Thu Nov 5 10:21:51 2020 -0800 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 231-submit-form - -commit 5e9a559dbcde0a7211cb8544aee1081350044ab6 -Author: Spencer Hilvitz -Date: Thu Nov 5 10:18:02 2020 -0800 - - finish renaming unassigned to request, update app tests - -commit 4d0dbf17768f07b62357b7edc8b8281ee5005df6 -Author: Spencer Hilvitz -Date: Thu Nov 5 10:15:57 2020 -0800 - - rename unassigned with request, update routes and tests - -commit e40ff9df39d454c9577931a3e4d679d51b341b12 -Merge: 4fa3eaf1b 1ada22a83 -Author: Spencer Hilvitz -Date: Thu Nov 5 09:26:59 2020 -0800 - - Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 231-submit-form - -commit 3737cca1c0269debd582e2468d18578ee6afb342 -Merge: cc4687d94 cd937c834 -Author: Carl Smith -Date: Thu Nov 5 12:15:02 2020 -0500 - - Merge pull request #389 from raft-tech/230-form-validation - - 230 form validation - -commit cd937c8340f1cd1ce39dcf11fd42b7e80625f87d -Merge: bad8801ce cc4687d94 -Author: Carl Smith -Date: Thu Nov 5 12:07:02 2020 -0500 - - Merge branch 'raft-tdp-main' into 230-form-validation - -commit bbcdcd17a63ccb840bd95f725b62813158c11168 -Merge: 96a38baf9 70b9e5a5b -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Nov 5 11:01:27 2020 -0500 - - Merge pull request #76 from HHS/ars/add-qasp-checklist-to-docs - - (WIP) Add QASP operational checklist to docs folder - -commit 1ada22a836ee39bb52286633919cc119cc5fd8e8 -Merge: 8f198d85d c4ef50975 -Author: Carl Smith -Date: Thu Nov 5 10:14:20 2020 -0500 - - Merge pull request #381 from raft-tech/231-auth-check-stt - - 231 auth check stt - -commit d374b84a54ce5185107d48bd4652cc6f362473ea -Author: Carlton Smith -Date: Thu Nov 5 09:36:52 2020 -0500 - - content type - -commit cc4687d94a5bec56eb0d78f0065c777cefb05e43 -Merge: b3adb92fb 7faf22319 -Author: Carl Smith -Date: Wed Nov 4 16:44:30 2020 -0500 - - Merge pull request #385 from raft-tech/shubhi-raft-patch-4 - - Update pull_request_template.md - -commit 4fa3eaf1b1820b77ba299e92243d8ac3394999df -Author: Spencer Hilvitz -Date: Wed Nov 4 13:41:39 2020 -0800 - - fix skiplinks not working on spacebar press - -commit 96a38baf9306ce37994256e3ce8467b5efea25d3 -Merge: fdd150a85 bad8801ce -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Nov 4 16:38:12 2020 -0500 - - Merge pull request #72 from raft-tech/230-form-validation - - 230 form validation - I see the latest copy, and it has passed a11y reviews and ACs and QASP look good. - -commit 368a3d97c1bd2f7c2b444be87b4f566c24efff2c -Author: snyk-bot -Date: Wed Nov 4 21:35:57 2020 +0000 - - fix: upgrade multiple dependencies with Snyk - - Snyk has created this PR to upgrade: - - react from 16.13.1 to 16.14.0. - See this package in npm: https://www.npmjs.com/package/react - - react-dom from 16.13.1 to 16.14.0. - See this package in npm: https://www.npmjs.com/package/react-dom - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit 0d3a7bcec203278a007f30842d5624c3f0c1d2ab -Merge: 036f51683 b3adb92fb -Author: Aaron Beavers -Date: Wed Nov 4 15:33:24 2020 -0600 - - Merge branch 'raft-tdp-main' into header-title-match - -commit 036f51683f0d13f62b1650c8ff0044302e3daf9d -Author: Aaron Beavers -Date: Wed Nov 4 15:32:14 2020 -0600 - - Correct spacing - -commit a2e771e60acbbff89b9ef448772b3e22aee160f9 -Author: Aaron Beavers -Date: Wed Nov 4 14:54:56 2020 -0600 - - Commented test logic that was moved to private template - -commit 70b9e5a5bf1fbed8325a62893408dd93237d9df9 -Author: Alex Soble -Date: Wed Nov 4 14:51:18 2020 -0600 - - Tweaks to checklist - -commit b688886a2d7f3fbc28fbea15658ca89ef63234f5 -Author: Alex Soble -Date: Wed Nov 4 14:45:42 2020 -0600 - - Commit QASP operational checklist - -commit b3adb92fb894697ac1e0b064e180c94ea778e731 -Merge: 88a5ed9bf f8093e474 -Author: Carl Smith -Date: Wed Nov 4 15:44:40 2020 -0500 - - Merge pull request #386 from raft-tech/shubhi-raft-patch-5 - - Update pull_request_template.md - -commit 2ae3457945c5608c9fda53b92d9c86e5ed47b73d -Author: Aaron Beavers -Date: Wed Nov 4 14:43:28 2020 -0600 - - Remove a few lint warnings - -commit 5865603986ab968bbc58ebe2c1f2814b54d519c9 -Author: Aaron Beavers -Date: Wed Nov 4 14:41:10 2020 -0600 - - Tests passing - -commit f8093e474af39bdeb20749cebb7c436ae373882d -Author: Shubhi Mishra -Date: Wed Nov 4 15:37:00 2020 -0500 - - Update pull_request_template.md - -commit 7faf223199fcff51f5c8c05a8186fb6c65489e7e -Author: Shubhi Mishra -Date: Wed Nov 4 15:34:15 2020 -0500 - - Update pull_request_template.md - - Updating PR template - -commit 580ad4c2315b563250fa3c3a2cfc726bdc331a14 -Author: Alex Soble -Date: Wed Nov 4 14:26:24 2020 -0600 - - Commit ERD to git history - -commit 50aa05f2b9b03d22691a2d63ad0258bfba28698d -Author: Aaron Beavers -Date: Wed Nov 4 13:37:42 2020 -0600 - - Add title and template to private route - -commit acebf2e58e9fff28e223ae74d37eee73ea6dfa0f -Author: Aaron Beavers -Date: Wed Nov 4 13:16:17 2020 -0600 - - Introduce private template to private route component - -commit 629b809468db0a94cec0cd9bb395a681b009febf -Author: Aaron Beavers -Date: Wed Nov 4 13:16:00 2020 -0600 - - Use header from private route update - -commit 094a4b155b9aa346789a681d156ac3db093c4daf -Author: Aaron Beavers -Date: Wed Nov 4 13:15:26 2020 -0600 - - Move effect to private template - -commit bad8801ce477e60933be332bff38d5e77da9ed50 -Author: Spencer Hilvitz -Date: Wed Nov 4 10:09:43 2020 -0800 - - fix label for combo box - -commit c4ef50975cb37e2280de3a18ea572ad98382e083 -Author: Aaron Beavers -Date: Wed Nov 4 11:51:26 2020 -0600 - - Rename SetProfileSerializer - -commit c323659c3cebe828c635faa734b175ac21ad95d7 -Author: Carlton Smith -Date: Wed Nov 4 12:14:02 2020 -0500 - - update serializer - -commit 405ef3dcf9ccd4994f68251d1c30a6079716434c -Author: Spencer Hilvitz -Date: Wed Nov 4 08:27:28 2020 -0800 - - works with setTimeout at 0 - -commit cd9ba2f466386a33bf1614a2f1a9f52dfe6b2c88 -Merge: 0d71b3288 8f198d85d -Author: Aaron Beavers -Date: Wed Nov 4 09:48:07 2020 -0600 - - Merge branch '231-submit-form' into header-title-match - -commit f227f4a5a02fdc97a4b2d3ecbe960007a89863c6 -Author: Carlton Smith -Date: Mon Nov 2 16:56:37 2020 -0500 - - adding endpoint to pass object - -commit 0d71b328883224019d2613fb29094ffb91a4ce23 -Author: Aaron Beavers -Date: Mon Oct 26 14:51:07 2020 -0500 - - Revert "Begin introducing login.gov cypress tests" - - This reverts commit 551b1d5486cbd82c577bbfb5b0cbf5b507c75046. - -commit 3a9a27bf4b0fbaa6503043501aee8ef3970b771b -Author: Aaron Beavers -Date: Mon Nov 2 15:09:52 2020 -0600 - - remove helmet from edit profile page component - -commit 6a8ed556f2056b07524eb814390a941fff00d2db -Author: Aaron Beavers -Date: Mon Nov 2 14:44:17 2020 -0600 - - Clear up lint errors - -commit 8f198d85d7d6e86a78a1558139d9d19364bb143b -Author: Spencer Hilvitz -Date: Mon Nov 2 11:31:36 2020 -0800 - - fix focus when errors occur on form submission - -commit 21914f79d119db75b2d23f82beea13a0d9617d19 -Merge: 20e52d347 43e29d3c7 -Author: Spencer Hilvitz -Date: Mon Nov 2 10:40:24 2020 -0800 - - Merge branch '231-submit-form' of github.com:raft-tech/TANF-app into 231-submit-form - -commit 65a671021287c0f5668ecf5f35bb909a4de6d75d -Merge: 4bc4192b9 88a5ed9bf -Author: Aaron Beavers -Date: Mon Nov 2 10:40:57 2020 -0600 - - Merge branch 'raft-tdp-main' into header-title-match - -commit 0726c1f98aef44d7938c3d4153d9d2ac245c822b -Author: Aaron Beavers -Date: Mon Nov 2 10:40:02 2020 -0600 - - Add period to doc string - -commit 455fe5b624ba0fe5633d77d062401ca49fa58bcf -Author: Aaron Beavers -Date: Mon Nov 2 10:20:39 2020 -0600 - - add doc string to - -commit 20e52d347283c915750281b3bdb3d83b36d14b28 -Author: Spencer Hilvitz -Date: Sun Nov 1 23:54:55 2020 -0800 - - fix tests - -commit 99c7fe1d7839a77085a0473b792468f8fa0ef674 -Author: Spencer Hilvitz -Date: Sun Nov 1 23:42:32 2020 -0800 - - add error div for total number of errors in forms, add ref, remove alerts from individual form elements, add settimeout to focus after element has been made visible - -commit da4ae946d1f5ac9c4033777ebfec039531342792 -Author: Aaron Beavers -Date: Fri Oct 30 14:56:36 2020 -0500 - - Apply black formatting - -commit 5f873c185a3d1d101faafcd03fb1d0d1f9777ace -Author: Aaron Beavers -Date: Fri Oct 30 14:42:45 2020 -0500 - - Update tests - -commit 4f2c347061b7922493ccbdc1010b9cc67b197fb8 -Author: Aaron Beavers -Date: Fri Oct 30 14:00:13 2020 -0500 - - auth_check match set_profile - -commit fdd150a851612e9ac22b0c6eec8d7a4223fdd9b5 -Merge: ef9f8ede5 26b5ac771 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Oct 30 11:14:17 2020 -0400 - - Merge pull request #73 from HHS/ars/update-design-research-issue-templates - - Offboard @cmajel from design/research review flow 😢 - -commit 43e29d3c70e907e608fd991725c4441414792c1e -Author: Spencer Hilvitz -Date: Thu Oct 29 14:52:45 2020 -0700 - - fix unassigned tests after card removal - -commit d856179e8e5321dbc5f71459b8e7fd2e7f2436c4 -Merge: 6fea305f5 c0bd7def0 -Author: Spencer Hilvitz -Date: Thu Oct 29 14:44:11 2020 -0700 - - changes from 230 - -commit c0bd7def023b2f9c8041959f8dbd817b8842edea -Author: Spencer Hilvitz -Date: Thu Oct 29 14:01:04 2020 -0700 - - fix case - -commit 22e7a3017a6cf04c9f97499d1ce8ba9e3cd045af -Author: Spencer Hilvitz -Date: Thu Oct 29 13:40:27 2020 -0700 - - fix snake-case label - -commit 6fea305f5e1b986670f24e4363009b7fd1b9bf97 -Author: Spencer Hilvitz -Date: Thu Oct 29 13:33:14 2020 -0700 - - add label prop to formgroup - -commit 726a4e2619c4b47132f56a2bc50625966f857c8b -Author: Spencer Hilvitz -Date: Thu Oct 29 12:37:30 2020 -0700 - - make ids dynamic - -commit 9ebd977b27e9308565283c5ba409aeec59c70448 -Author: Spencer Hilvitz -Date: Thu Oct 29 12:36:08 2020 -0700 - - make ids dynamic - -commit 17b8d94a3fac82c3ce7cd199b2c9ce2c612c0429 -Author: Spencer Hilvitz -Date: Thu Oct 29 10:33:24 2020 -0700 - - remove styles and add utility classes - -commit ef918b1cd7a07c61fd7ad6f7e8bc1c29a56d2a1a -Author: Spencer Hilvitz -Date: Thu Oct 29 10:00:24 2020 -0700 - - update Request Access form language - -commit 4a920b8355fafb1d16a5f17c499384f85957ba01 -Merge: a6076a38a 88a5ed9bf -Author: Spencer Hilvitz -Date: Thu Oct 29 09:50:01 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 231-submit-form - -commit a6076a38aac08109de76d9c286ab0a659901f364 -Author: Spencer Hilvitz -Date: Thu Oct 29 09:49:34 2020 -0700 - - add tests to actions/requestAccess, reducers/requestAccess, editprofile, update mockstore in routes.test with requestAccess module, add requestAccess reducer and action - -commit 88a5ed9bff0c2d74ffa594a2d2cc7cdd6de622f1 -Merge: 64f7f22fd 8c28c3ee8 -Author: Carl Smith -Date: Thu Oct 29 12:36:42 2020 -0400 - - Merge pull request #360 from raft-tech/infrastructure/remove-dlc-circleci - - Infrastructure: Remove Docker Layer Caching From CirlceCI - -commit 8c28c3ee86bd5504ac69319353e28214e791db97 -Merge: 2c648ac72 64f7f22fd -Author: Carl Smith -Date: Thu Oct 29 12:10:23 2020 -0400 - - Merge branch 'raft-tdp-main' into infrastructure/remove-dlc-circleci - -commit be0875aef6422fbf631a32a710014d042a5b0743 -Merge: 612f75a77 64f7f22fd -Author: Carlton Smith -Date: Thu Oct 29 11:52:59 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/278/session-management - -commit ef9f8ede57fd0e3a95aa74005b46e534103ee245 -Merge: 1b9bc581a d7beab144 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Oct 28 14:15:35 2020 -0400 - - Merge pull request #71 from shubhi-raft/patch-2 - - Create Sprint 6 Summary.md Since this is documentation only, tests are not relevant - -commit 4bc4192b905cd0561d7fe91606b585eb4899dbc2 -Author: Aaron Beavers -Date: Wed Oct 28 12:25:40 2020 -0500 - - Remove helmet dependency - -commit 724a2b5f0a59067a97aab7dd8608a4e944c55f59 -Author: Aaron Beavers -Date: Wed Oct 28 12:24:48 2020 -0500 - - Use effect to alter document title - -commit 579a45cb8a690ec2114e436ad494f7b185810055 -Merge: 551b1d548 64f7f22fd -Author: Aaron Beavers -Date: Wed Oct 28 12:18:53 2020 -0500 - - Merge remote-tracking branch 'origin/raft-tdp-main' into header-title-match - -commit 26b5ac7717741ce776cec180d65c6184197d8680 -Author: Alex Soble -Date: Wed Oct 28 09:56:32 2020 -0500 - - Offboard @cmajel from design/research review flow :cry: - -commit d7beab14448c2045558ab8a5989ae8f83211a2b2 -Author: Shubhi Mishra -Date: Wed Oct 28 09:51:17 2020 -0400 - - Update Sprint 6 Summary.md - - Made updated based on Lauren's comment. - - >As a user, I want to know I am logging into a demo site was delivered in a previous sprint (I think Sprint 4) - -commit 3e6ed16da7c92c3cf467147f91e5d4a5cf866df0 -Author: Spencer Hilvitz -Date: Tue Oct 27 18:50:45 2020 -0700 - - middle of working on tests - -commit 6097aca17e5fe1ca913204a7447d94d9efe560af -Author: snyk-bot -Date: Tue Oct 27 21:33:15 2020 +0000 - - fix: upgrade multiple dependencies with Snyk - - Snyk has created this PR to upgrade: - - @fortawesome/fontawesome-svg-core from 1.2.30 to 1.2.32. - See this package in npm: https://www.npmjs.com/package/@fortawesome/fontawesome-svg-core - - @fortawesome/free-solid-svg-icons from 5.14.0 to 5.15.1. - See this package in npm: https://www.npmjs.com/package/@fortawesome/free-solid-svg-icons - - See this project in Snyk: - https://app.snyk.io/org/raftergit/project/f394fdd3-a51a-4643-a79f-e9c30e52758d?utm_source=github&utm_medium=upgrade-pr - -commit c54694fbe48b5d9e07110d0e7bc989ec925ea1a5 -Author: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> -Date: Tue Oct 27 20:51:55 2020 +0000 - - [Security] Bump cryptography from 3.1 to 3.2 in /tdrs-backend - - Bumps [cryptography](https://github.com/pyca/cryptography) from 3.1 to 3.2. **This update includes a security fix.** - - [Release notes](https://github.com/pyca/cryptography/releases) - - [Changelog](https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst) - - [Commits](https://github.com/pyca/cryptography/compare/3.1...3.2) - - Signed-off-by: dependabot-preview[bot] - -commit d131970a277da8758e240dba2edcfe23dabb699d -Merge: 3cef723e7 64f7f22fd -Author: Miles Reiter -Date: Tue Oct 27 16:28:00 2020 -0400 - - Merge branch 'raft-tdp-main' into migrate-wiki - -commit c58af7ef1d0da54e44c68f592f6adb7be89c9549 -Merge: 252cf67f4 52360b462 -Author: Spencer Hilvitz -Date: Tue Oct 27 13:21:59 2020 -0700 - - Merge branch '230-form-validation' into 231-submit-form - -commit 612f75a77165cf0c1263a8fe36114e300c58b215 -Author: Carlton Smith -Date: Tue Oct 27 15:31:34 2020 -0400 - - update token - -commit 68ce8cb119ccbb5a9345c76c31f651ffbf7cefae -Author: Shubhi Mishra -Date: Tue Oct 27 14:45:51 2020 -0400 - - Update Sprint 6 Summary.md - -commit 6af65ab8483544023e3e63f27174d13a1f3be27e -Merge: ddc5eb557 64f7f22fd -Author: Carl Smith -Date: Tue Oct 27 14:33:51 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit 64f7f22fdb00948b57e15c42b690e82aa7bee751 -Merge: e7f7eb491 52360b462 -Author: Carl Smith -Date: Tue Oct 27 14:33:16 2020 -0400 - - Merge pull request #348 from raft-tech/230-form-validation - - Frontend/230/Form Validation - -commit 252cf67f4f765e9396337347d6fae4d5bdb1bd1b -Author: Spencer Hilvitz -Date: Tue Oct 27 10:54:24 2020 -0700 - - add unassigned component, add route and add functionality to editprofile - -commit 2076cef7975997476ad54492494c05ffafc37eb4 -Author: Shubhi Mishra -Date: Tue Oct 27 12:41:26 2020 -0400 - - Create Sprint 6 Summary.md - - Sprint 6 summary - -commit 1b9bc581ad4bd7c098507913e473114fe1240934 -Merge: 04f43e4c9 16f4f3383 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Oct 27 10:29:11 2020 -0400 - - Merge pull request #62 from HHS/ars/18f-a11y-approach - - Add "How ACF and 18F will evaluate accessibility" documentation - Note: front end tests related to docker layer caching, which should be fixed with previous PR - -commit 04f43e4c9fab30ee0e38cb2b1040b892294b2f18 -Merge: ebea95e25 15847a7f5 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Oct 27 10:26:16 2020 -0400 - - Merge pull request #69 from HHS/ars/disable-docker-layer-caching - - Disable Docker Layer Caching -- This is good to merge! - -commit 551b1d5486cbd82c577bbfb5b0cbf5b507c75046 -Author: Aaron Beavers -Date: Mon Oct 26 14:51:07 2020 -0500 - - Begin introducing login.gov cypress tests - -commit ebea95e25f7e0250c46f1d7f6777efdd84f8152b -Merge: 126a8f8df e7f7eb491 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Oct 23 19:42:12 2020 -0400 - - Merge pull request #60 from raft-tech/raft-tdp-main - - Sprint 6 Issue #229 PR Review Looks good! - -commit 394c7e3d8e1ef34f11cf17517ac507a0ea79f4a9 -Author: Spencer Hilvitz -Date: Fri Oct 23 15:27:18 2020 -0700 - - remove unnecessary useSelector import - -commit 4ee034db35598ac6182ce25305ac2bbace5f716d -Author: Spencer Hilvitz -Date: Fri Oct 23 15:26:39 2020 -0700 - - rename all stts to sttList - -commit aa76d4d423d37a032cf800c61cca36692d0854aa -Author: Spencer Hilvitz -Date: Fri Oct 23 15:08:39 2020 -0700 - - add axios defaults, add setUser action, update auth reducer to handle setUser - -commit 3cef723e7fd1e851f40d3a47b18879a5dae12e56 -Author: miles-reiter -Date: Fri Oct 23 16:27:41 2020 -0400 - - Migrate Wiki - -commit ddc5eb55729a8ce2d1df3f85b2310f2d44aca74f -Author: raftergit -Date: Fri Oct 23 15:51:28 2020 -0400 - - documentation updates - -commit 76251f972b63cd66cef8420c90df0307bc3c690a -Author: Carl Smith -Date: Fri Oct 23 15:32:22 2020 -0400 - - Update session-management.md - - removed question mark - -commit 15847a7f5380c20fa0d1ef6aa4752a147ca20f94 -Author: Alex Soble -Date: Fri Oct 23 14:09:13 2020 -0500 - - Disable Docker Layer Caching - - + Copying over changes from https://github.com/raft-tech/TANF-app/pull/360/files and seeing if they get our frontend tests green on the HHS repository - -commit 52360b462df040f37053338c1257d32e99be1074 -Author: Spencer Hilvitz -Date: Fri Oct 23 11:51:52 2020 -0700 - - remove package.json in wrong spot - -commit df647b2d3fc1da1802c6dd97670f61521c0f539d -Merge: 30f7a94c5 deeaa18ce -Author: Spencer Hilvitz -Date: Fri Oct 23 11:46:52 2020 -0700 - - Merge branch '230-form-validation' of github.com:raft-tech/TANF-app into 231-submit-form - -commit deeaa18ce3775b9b26866cad3a8999837d2b71fd -Author: Spencer Hilvitz -Date: Fri Oct 23 11:43:11 2020 -0700 - - add documentation for found snyk vulnerability, update docs for auth, stts, combobox, editprofile, and splashpage, remove unnecessary test from combobox.test - -commit 72b12fc71f94344f0255b7c38d7e72a36d69129e -Author: Spencer Hilvitz -Date: Fri Oct 23 10:55:14 2020 -0700 - - remove resolution of object-path and update react-scripts package, add md file for snyk vulnerability fixes - -commit 30f7a94c5a03540fa3939832a32841a2c9033f58 -Author: Spencer Hilvitz -Date: Fri Oct 23 10:39:52 2020 -0700 - - pass profileInfo to setUser action - -commit 47a7eb9b1db258e8ace8cc2b72188d92c9ada7b0 -Merge: 57eda4af0 979ed1a61 -Author: Spencer Hilvitz -Date: Fri Oct 23 10:07:28 2020 -0700 - - Merge branch 'backend/231/profile-update' into 231-submit-form - -commit 57eda4af0bbeac2bb76b54aa737d1c235bcf4427 -Author: Spencer Hilvitz -Date: Fri Oct 23 10:07:04 2020 -0700 - - add setUser action and reducer and call it from editprofile - -commit d991ef074ce2fdd7804d79b6b2be422ec6fdf696 -Author: Spencer Hilvitz -Date: Fri Oct 23 09:50:55 2020 -0700 - - fix tests and fix stt field - -commit 16fc3a387a1cb5ecb9d5d00f68026dbeee94a089 -Author: Spencer Hilvitz -Date: Fri Oct 23 09:43:07 2020 -0700 - - remove size=big on request access button - -commit 77fd2afdbf4c466e0878b880e7f21ba68698a80b -Author: Spencer Hilvitz -Date: Fri Oct 23 09:37:52 2020 -0700 - - fix request access button color and width, change validation message for stt - -commit a8a676a2be6ce94c32da54cc7a3563a047ad4888 -Author: Carlton Smith -Date: Fri Oct 23 12:20:34 2020 -0400 - - document session management strategy - -commit 908254760a626e120846243fe7f96513fd259bd1 -Author: Spencer Hilvitz -Date: Fri Oct 23 09:15:02 2020 -0700 - - pass in placeholder to combo box - -commit 2c27995cb53e031b477a4aebce1fcbbbae0b2b9c -Merge: cb7847c8d 5a5aecf15 -Author: Spencer Hilvitz -Date: Fri Oct 23 07:53:48 2020 -0700 - - Merge branch '230-form-validation' of github.com:raft-tech/TANF-app into 230-form-validation - -commit cb7847c8d21eda33e5688a25682c0383cb26c5a3 -Author: Spencer Hilvitz -Date: Fri Oct 23 07:53:17 2020 -0700 - - add tests to editprofile - -commit 5a5aecf15b8f48d6c5d4ab89c39baf3cf8072636 -Merge: f36cfe7a9 e7f7eb491 -Author: Spencer Hilvitz -Date: Fri Oct 23 07:51:10 2020 -0700 - - Merge branch 'raft-tdp-main' into 230-form-validation - -commit 99aceea7c5d0e7215e4f37380710bac1735b9561 -Author: Aaron Beavers -Date: Thu Oct 22 18:40:53 2020 -0500 - - Wrap editprofile in valid provider - -commit aaabf507071e7848d2a31e04367540ee53e4e5d9 -Author: Aaron Beavers -Date: Thu Oct 22 18:35:18 2020 -0500 - - Use single quote for linter - -commit 708018c50e390471a2f77b25febcb5159a7841c8 -Author: Aaron Beavers -Date: Thu Oct 22 18:26:46 2020 -0500 - - Resolve linting issues - -commit b57273483a5a5d532140e6a350f4bb4b6390833d -Author: Aaron Beavers -Date: Thu Oct 22 18:20:21 2020 -0500 - - Add title heading element to display h1 content in page tab title - -commit 82e20b5839fbcc837e1a0579afbfbce3484db567 -Author: Spencer Hilvitz -Date: Thu Oct 22 15:24:21 2020 -0700 - - everything working - -commit 2b573f54b8151ba6b06081672a91c4bcf7f49f09 -Author: Carlton Smith -Date: Thu Oct 22 16:43:32 2020 -0400 - - add middleware and timeout - -commit e7f7eb491cba3dc2f257795ef162e652243e7d08 -Merge: 37e4a033a 80c724442 -Author: Carl Smith -Date: Thu Oct 22 14:54:55 2020 -0400 - - Merge pull request #362 from raft-tech/sprint-5-fixes - - Sprint 5 fixes - - Combo box placeholder - - Remove unneeded file - -commit 80c72444238ecde23d102789566bc7ea88f25cd9 -Merge: 1b649448f f89f7cdf4 -Author: Spencer Hilvitz -Date: Thu Oct 22 11:41:55 2020 -0700 - - Merge branch 'sprint-5-fixes' of github.com:raft-tech/TANF-app into sprint-5-fixes - -commit 1b649448f7ce196732a4564f41ec0475e4531d5b -Merge: 2d12a94b1 37e4a033a -Author: Spencer Hilvitz -Date: Thu Oct 22 11:41:37 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into sprint-5-fixes - -commit f89f7cdf46d0aad03a3c026bb2b88cde97eb9512 -Author: Carlton Smith -Date: Thu Oct 22 14:35:18 2020 -0400 - - remove tests.py - -commit 126a8f8df23961397abdffbe7e92bade6e8e0935 -Merge: 060321fa7 b853017d2 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Oct 22 14:27:03 2020 -0400 - - Merge pull request #67 from shubhi-raft/patch-1 - - Sprint 5 summary.md - These tests do not apply (and would need to be run manually) because it is a markdown file. - -commit eb14cba10dca3183fe7048ec933a03eb13a47daf -Author: raftergit -Date: Thu Oct 22 12:42:43 2020 -0400 - - updating security tracking documentation - -commit 2d12a94b19053499cf7458eb882b42b4825ab0ac -Author: Spencer Hilvitz -Date: Thu Oct 22 08:44:18 2020 -0700 - - add placeholder text and remove line of code in EditProfile - -commit 2c648ac727d56911e3b4e2aece2d42cf77492705 -Author: raftergit -Date: Thu Oct 22 11:41:34 2020 -0400 - - testing docker layer caching disabling - -commit 54887399780b26093d36bdf97ae993094f857b8e -Author: Spencer Hilvitz -Date: Thu Oct 22 08:32:29 2020 -0700 - - working on tests - -commit afe9e465798b6bf1d3a33be4fac00baa6e59d4e2 -Author: raftergit -Date: Thu Oct 22 10:29:13 2020 -0400 - - resolving migration conflicts - -commit 2fb7f57c3e444595f2f43d84aaf1c8e9f94bc916 -Merge: 544f78394 37e4a033a -Author: raftergit -Date: Thu Oct 22 09:51:54 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit b853017d20e90d2e20c8da6240afce8eb2ba8ba0 -Author: Shubhi Mishra -Date: Wed Oct 21 14:17:14 2020 -0400 - - Create Sprint 5.md - - Summary of Sprint 5 - -commit e37beef91c6fbcd11a7f2e70515a53177542c760 -Merge: f07a4292a 7ca142355 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Oct 21 11:28:22 2020 -0400 - - Merge pull request #326 from raft-tech/design-principles-ac - - Design principles ac - -commit dfef8320a2fb0a7ac26790ca3e442300006f3b91 -Author: Spencer Hilvitz -Date: Tue Oct 20 14:26:04 2020 -0700 - - pull label into combobox and change names and ids to a prop, update combobox tests - -commit 76d6435fe42444594a7cd6b85e54b8156ae150a6 -Author: Spencer Hilvitz -Date: Mon Oct 19 14:34:31 2020 -0700 - - remove unnecessary React call - -commit 3a3f6dbc91220de5dad8df66711bd61393b069a9 -Author: Spencer Hilvitz -Date: Mon Oct 19 14:09:53 2020 -0700 - - change combobox and editprofile to work with children - -commit f36cfe7a98bab4905878bba6688bac21800c203b -Author: Spencer Hilvitz -Date: Mon Oct 19 14:06:09 2020 -0700 - - add react-testing-library for combobox tests, add combobox tests, redo combobox with children rather than sttlist and change proptypes - -commit e6eaded632b760f41786c0f33ec553fb04bc1515 -Author: Spencer Hilvitz -Date: Mon Oct 19 11:43:36 2020 -0700 - - make combobox more generic for better reuse (rename selectStt to handleSelect, change selectedStt to selected, changed sttError to error and pulled out children - -commit 979ed1a612558c72b43889567aa459840e0581f6 -Author: Carlton Smith -Date: Mon Oct 19 13:47:47 2020 -0400 - - update docs to show stt changes - -commit ff8ae0936f13d903eca79966a68ce9421d3c6f17 -Author: Carlton Smith -Date: Mon Oct 19 13:16:55 2020 -0400 - - accept stts as dict and return as dict - -commit 060321fa7f4b3d98bd2c6b55e5fde024fed4bc96 -Merge: 01b6b2a47 9b907bfcf -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Mon Oct 19 09:58:57 2020 -0400 - - Merge pull request #63 from raft-tech/sprint-5-changes - - Sprint 5 Release. This looks good. Note @iamjolly had also previously commented his approval here: https://github.com/HHS/TANF-app/pull/60#issuecomment-709529818. I was delayed in merging Sprint 5 release so there was some shuffling around to be able to merge. - -commit c4eecb58671f317cc4e40d796de34c4baa306587 -Author: Spencer Hilvitz -Date: Fri Oct 16 20:37:27 2020 -0700 - - wrap combobox input logic in if statement to allow tests to run - can't test without input available - -commit fd4969988ee90bbee93c69e0bc1eca7e1f995109 -Author: Spencer Hilvitz -Date: Fri Oct 16 19:39:03 2020 -0700 - - change combobox function names, add combobox.test.js, add setStt method in EditProfile, destrucutred in EditProfile differently, added EditProfile tests - -commit 38624807c0869946e5a401d0368b32b323537a70 -Author: Spencer Hilvitz -Date: Fri Oct 16 14:16:15 2020 -0700 - - validation working - -commit 93ff1b85200fe6aaa414081f1660bb8284f85120 -Author: Carlton Smith -Date: Fri Oct 16 13:37:20 2020 -0400 - - updating serializers - -commit 37e4a033ae7768b16b7ed1fc75b51c188bf48189 -Merge: 9b907bfcf 216b64302 -Author: Carl Smith -Date: Fri Oct 16 11:09:28 2020 -0400 - - Merge pull request #286 from raft-tech/backend/229/stts-endpoint - - Backend/229/stts endpoint - -commit 216b64302f9998ed21a3706c2614e287a39747d9 -Merge: 1af312257 ef2bd553f -Author: Carl Smith -Date: Fri Oct 16 10:54:52 2020 -0400 - - Merge pull request #335 from raft-tech/229-combobox - - 229 combobox - -commit d512bee4f67859e26cb19778054afd2b4bbdc8d7 -Author: Spencer Hilvitz -Date: Thu Oct 15 17:33:35 2020 -0700 - - working validation for all fields - -commit ef2bd553f465bb39b763648353655a7c0d929439 -Author: Spencer Hilvitz -Date: Thu Oct 15 14:48:46 2020 -0700 - - readd extra line in govbanner - -commit bcda1341317d17cc1d858b2856d59ac15ae43b78 -Author: Spencer Hilvitz -Date: Thu Oct 15 14:29:06 2020 -0700 - - remove data dir - -commit f4b2f4b3c875a1366e62df389eede1120fe04507 -Author: Spencer Hilvitz -Date: Thu Oct 15 14:28:49 2020 -0700 - - playing with values - -commit a044c3afccdc9ac521aee9d759859254fc7796ce -Merge: 5f9b4b328 110ad327d -Author: Spencer Hilvitz -Date: Thu Oct 15 10:14:07 2020 -0700 - - Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation - -commit 01b6b2a472ff3839e4a3eabd319d8dea5fc253f0 -Merge: 5a88f0480 9053266b8 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Oct 15 13:08:44 2020 -0400 - - Merge pull request #61 from HHS/heuristics - - Adding skills heuristics - -commit 16f4f3383fe14f27b07a6e2decbfabc2475f23d3 -Author: Alex Soble -Date: Thu Oct 15 11:55:17 2020 -0500 - - Remove "Depending on the project's needs.." paragraph -- vague and could be interpreted as going beyond the QASP - -commit d244fc656232f38fe906484ea0ffaa7f912491a7 -Author: Alex Soble -Date: Thu Oct 15 11:40:52 2020 -0500 - - Fix typo - -commit 905291ec25b03d3c62c5a07a1a02af064bd00b0c -Author: Alex Soble -Date: Thu Oct 15 11:36:02 2020 -0500 - - Add v1 "How 18F will test a11y" doc; create new a11y folder under docs - -commit 110ad327d392092dfdbe65bb9d444ae248fee8be -Author: Spencer Hilvitz -Date: Wed Oct 14 13:44:10 2020 -0700 - - add comment explanation to combobox useEffect - -commit 4dd0af428d1a798074ba0eb7882a0e4768adc3c0 -Author: Spencer Hilvitz -Date: Wed Oct 14 12:24:24 2020 -0700 - - fix open-path vulnerability - -commit b9d7897197e660df56be5a39ef208753141d5bea -Author: Spencer Hilvitz -Date: Wed Oct 14 11:48:53 2020 -0700 - - remove accordion js from govbanner, reuse main uswds javascript, update editprofile tests, remove combobox code from editprofile - -commit 9aa77c0f97d1c8a5ba9fcc0d2afd9461c2e0f65b -Author: Spencer Hilvitz -Date: Wed Oct 14 11:42:31 2020 -0700 - - remove initialState stts - -commit dc8c4cccced9c91d0ac64ec334decca676145c1c -Author: Spencer Hilvitz -Date: Wed Oct 14 11:18:02 2020 -0700 - - remove commented out comboBox.init - -commit fd1de601a0c698fdc1b4396e8b15f0926ba7eb13 -Author: Spencer Hilvitz -Date: Wed Oct 14 10:58:53 2020 -0700 - - Working with no outstanding issues - -commit 8c03acccc5055e3e92080ed4b1376a2b91ccc4a2 -Author: Spencer Hilvitz -Date: Wed Oct 14 09:39:55 2020 -0700 - - example for aaron - -commit 64df7b11118d7c82058777e936b029a7365f404f -Merge: d8e5d40fe 6913ac1ca -Author: Spencer Hilvitz -Date: Tue Oct 13 17:45:48 2020 -0700 - - Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 229-combobox - -commit d8e5d40fe44dc5900c64e79391db4566950b591c -Merge: 4c85a97b6 9b907bfcf -Author: Spencer Hilvitz -Date: Tue Oct 13 17:20:31 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox - -commit 4c85a97b67e3d6af28747207d082278daa6553ad -Merge: b1138e371 1af312257 -Author: Spencer Hilvitz -Date: Tue Oct 13 17:17:02 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox - -commit dd360dbe16ff891225f533b827944d2e681b4b04 -Author: Carlton Smith -Date: Tue Oct 13 15:32:20 2020 -0400 - - update shape of call and response tests - -commit b9acf6354ac08ab6263c2929ce919497a3f6a844 -Author: Carlton Smith -Date: Tue Oct 13 15:16:21 2020 -0400 - - run frontend - -commit 7ca142355a52a91c2ae35ebca2f213c4779a05be -Author: Christine Bath -Date: Tue Oct 13 12:29:19 2020 -0400 - - Update dev-issue-template.md - - adding design principles reference - -commit 7478b014e1302c6a3dacc27430e7a6fe4f3afcf2 -Author: Christine Bath -Date: Tue Oct 13 12:28:16 2020 -0400 - - Update research-issue-template-.md - - Adding design principle reference - -commit f0d7016857b59af7cb94df534c350020befae13b -Author: Christine Bath -Date: Tue Oct 13 12:26:20 2020 -0400 - - Update design-issue-template.md - - adding design principle reference - -commit 5f9b4b328557da69f1b22d14e1b74271712c01fc -Merge: d90601d9a 9b907bfcf -Author: Spencer Hilvitz -Date: Tue Oct 13 09:06:01 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 230-form-validation - -commit 6913ac1cad7c2b15de1e3f275c82a7213b4539c4 -Merge: 23fd9506c 9b907bfcf -Author: Spencer Hilvitz -Date: Tue Oct 13 09:05:41 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox - -commit d90601d9ac0db8f57470b9401987559e0712f60a -Author: Spencer Hilvitz -Date: Tue Oct 13 09:04:12 2020 -0700 - - add data-value attr to editprofile select - -commit 9053266b8fb29914025e167e4a88ebd4bc07c4b0 -Author: Christine Bath -Date: Tue Oct 13 10:28:38 2020 -0400 - - Update Heuristics.md - - fixing design internal reference links - -commit 8d8282aa2e244a0e54418f038255016d3bc3c7c3 -Author: Christine Bath -Date: Tue Oct 13 10:24:25 2020 -0400 - - adding TOC - -commit 544f78394322f2426f8f329edfd530a9d2873f86 -Merge: ac9596ce4 dc4b38fe4 -Author: raftergit -Date: Tue Oct 13 08:04:59 2020 -0400 - - Merge branch 'backend/309/dynamic-roles-permissions' of https://github.com/raft-tech/TANF-app into backend/309/dynamic-roles-permissions - -commit ac9596ce4ea9aabfb4d7bfd24882c4ba638230b2 -Author: raftergit -Date: Tue Oct 13 08:04:45 2020 -0400 - - resolving linting warnings - -commit dc4b38fe46e1735a4c51c6ae044615435c6fbd34 -Merge: a6f6a72ca 9b907bfcf -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Tue Oct 13 06:42:51 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/309/dynamic-roles-permissions - -commit a6f6a72ca88b895f432b03325e8d7241acb7ac40 -Author: raftergit -Date: Tue Oct 13 06:39:15 2020 -0400 - - test cases for role and permissions end points - -commit 75b954e94ea48515fbe8d4c1f57985d5357d2744 -Author: Spencer Hilvitz -Date: Fri Oct 9 18:55:15 2020 -0700 - - move validation function outside of EditProfile - -commit 9b907bfcf932525762c03d9eae2275269f183f46 -Merge: 9272f60d7 cc257e136 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Oct 9 20:37:05 2020 -0400 - - Merge pull request #320 from raft-tech/shubhi-raft-patch-3 - - Update issue templates - -commit aaae9799cd50b8515464f35d3f21e76321a791e2 -Author: Christine Bath -Date: Fri Oct 9 17:31:08 2020 -0400 - - first pass heuristics content - -commit a6ffe9eb38fd90322ddcfdd0b0c371743bed29fd -Author: Carlton Smith -Date: Fri Oct 9 15:48:10 2020 -0400 - - update permissions - -commit ed234bc1d270d12be7f8c2d1a08108219db2c9d5 -Author: Christine Bath -Date: Fri Oct 9 15:08:12 2020 -0400 - - testing table styles - -commit cc257e136ecf25a58e2f6734085db8502dbebc54 -Author: Shubhi Mishra -Date: Fri Oct 9 13:45:02 2020 -0400 - - Update issue templates - - replaced wiki with Code<> docs for future documentation. - -commit 5a88f04805ca2e5e90bf59657e2375318fb7c5c4 -Merge: f07a4292a ea33793c4 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Fri Oct 9 11:28:10 2020 -0400 - - Merge pull request #59 from HHS/SelenaJV-patch-1 - - team-charter.md - -commit 12ffe588c44359aa53feb6c700ce42dd2640c45e -Author: Christine Bath -Date: Fri Oct 9 10:36:24 2020 -0400 - - starting heuristics doc - -commit 8bffe7a5b820f67f1b5290404f487f45aed54295 -Author: raftergit -Date: Fri Oct 9 08:49:54 2020 -0400 - - restoring snyk.io documentation - -commit a4bf13ca443bb6939be83cb00d13522b97b655bf -Author: raftergit -Date: Fri Oct 9 08:36:38 2020 -0400 - - resolving Snyk.io issue https://app.snyk.io/vuln/SNYK-PYTHON-DJANGOFILTER-1013846 - -commit 49c034aeb4f185b21d4d23e81d61fb8197d278d8 -Author: raftergit -Date: Fri Oct 9 08:31:20 2020 -0400 - - resolving migrations issue in cirlceci - -commit 5c24c87a2fd8f2f2fe29805ef205b0d5676abd57 -Author: raftergit -Date: Fri Oct 9 07:24:21 2020 -0400 - - inital work on group and permission management - -commit f925ac6c50f42e86fe383b86d33deca1c29815db -Author: Spencer Hilvitz -Date: Thu Oct 8 15:53:08 2020 -0700 - - update editprofile tests, change classnames, remove validate object - -commit bba529b5547f67782e10e6fb8c50ac2ff6210fc4 -Merge: 70f9b9231 23fd9506c -Author: Spencer Hilvitz -Date: Thu Oct 8 15:48:51 2020 -0700 - - Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation - -commit 70f9b92310ec28aa534bfe06a07269fec94967f8 -Merge: 0dbb1d522 204a72f90 -Author: Spencer Hilvitz -Date: Thu Oct 8 10:48:24 2020 -0700 - - Merge commit '204a72f9043c431e6845c3eaeea14f40e06c52cd' into 230-form-validation - -commit 23fd9506c3717a8875778d05dd11652d35c09371 -Author: Spencer Hilvitz -Date: Thu Oct 8 10:11:01 2020 -0700 - - Exemplify not working application - -commit 204a72f9043c431e6845c3eaeea14f40e06c52cd -Author: Spencer Hilvitz -Date: Thu Oct 8 09:37:06 2020 -0700 - - reenable button type lint rule, move to stts being hardcoded - -commit a275240889428c1d06c61de18a248aec402ba586 -Author: Carlton Smith -Date: Thu Oct 8 11:33:25 2020 -0400 - - update doc formatting - -commit 0a6dea7c9ea4efecd20e2aca93a9dc4e3a70f421 -Author: Carlton Smith -Date: Thu Oct 8 11:23:24 2020 -0400 - - update documentation - -commit cc6aa2d91a4f05651d2dbdc67c85cdecb4b08bcf -Author: Carlton Smith -Date: Thu Oct 8 11:16:29 2020 -0400 - - update to PATCH endpoint - -commit 0dbb1d52200a1ce8e6abc7686f371fa1a6d8f345 -Author: Spencer Hilvitz -Date: Wed Oct 7 12:18:49 2020 -0700 - - add stt to profileinfo, change first-name id and class to firstName, add value and onchange to select - -commit ea33793c4ff40fa204a66d93f2585b51ec888ba0 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 14:51:47 2020 -0400 - - Update team-meetings.md - -commit 0e05a846a2636362e16f61f9732ad85164032bf1 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 14:46:35 2020 -0400 - - Update team-meetings.md - -commit ec1d3b25c6544649fd2b6817b8dbcc22c8d8dbe1 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 14:45:15 2020 -0400 - - Update team-meetings.md - -commit 0eb2d57e59869fe51d3ceea10d8aa67798f1fa89 -Merge: 4e6926dc8 011ffb99a -Author: Spencer Hilvitz -Date: Wed Oct 7 11:44:58 2020 -0700 - - Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation - -commit bb4dd0d7756fe0f30f498d8c87f918815dd59296 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 14:44:09 2020 -0400 - - Update team-meetings.md - -commit 0695190932affe5aee17b8996aed86dc02770163 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 14:43:32 2020 -0400 - - Update team-meetings.md - -commit 4a9abfd86eda8ddb1a05b9f3e50baa145d778c5f -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:50:18 2020 -0400 - - Update rafts-accessibility-dos-and-donts.md - -commit 36c4c606dde20af1bed03f0b7034398f5e203b41 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:49:13 2020 -0400 - - Update rafts-accessibility-dos-and-donts.md - -commit f98a6f939d38cbbe984fbf0bc73dde1f3547f473 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:44:29 2020 -0400 - - Update manual-checks.md - -commit 8d573230d4b42210f015d4c5a404bd819d949864 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:44:08 2020 -0400 - - Create rafts-accessibility-dos-and-donts.md - -commit ed8184fff8a7b19f970c7261a4d643d43ba52d38 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:42:24 2020 -0400 - - Update manual-checks.md - -commit 8e272a8310d0dd0936ac0fdb38e965a037b75b0e -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:39:44 2020 -0400 - - Update manual-checks.md - -commit bb79951c6b0af98618283190e3b9f8bda187f593 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:38:50 2020 -0400 - - Update manual-checks.md - -commit 5e60ecf210507eda2afa8840daccc2ee9ae7c798 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:35:42 2020 -0400 - - Update sprint-schedule.md - -commit 4cabc98ef9e4cb65f9f5d2994eed3db3fb396e2c -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:35:14 2020 -0400 - - Update sprint-schedule.md - -commit 40b5545a5f2a5d3d75edff005b55decbca9fcaf5 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:34:36 2020 -0400 - - Update sprint-schedule.md - -commit 7910e43dd53578b0bbac8434b49995ec1b0d3925 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:31:33 2020 -0400 - - Update sprint-schedule.md - -commit 83bee6a31c545d7ff37c6c5c96da8159aa3240a9 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:24:58 2020 -0400 - - Update sprint-schedule.md - -commit adf5f4a51bc2c8092c91f95abf916bdc8bd96451 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:23:19 2020 -0400 - - Rename reviewing-work.md to manual-checks.md - -commit f6d34944f7bbbbdbe5ded1f163a968c2f8a4997b -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:22:06 2020 -0400 - - Update our-workflow.md - -commit 422e732fd5dddbc9b5865229c09730a06682d706 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:20:38 2020 -0400 - - Update reviewing-work.md - -commit c5d82306da2c82a40deb1f63b1e540248fd24bb9 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:19:46 2020 -0400 - - Update our-workflow.md - -commit 685f82a562d2e262af1e13ef8109891ee9b336c9 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:18:51 2020 -0400 - - Update reviewing-work.md - -commit a6953cce85866c4751321c2c9522c8ac067ef844 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 12:17:19 2020 -0400 - - Update our-workflow.md - -commit 0253f4c31baa6082bc65b193fc0bff7294f46e8d -Author: Selena Juneau-Vogel -Date: Wed Oct 7 11:30:06 2020 -0400 - - Update our-workflow.md - -commit 52b85a5a9ac4484674084de4746a72a59058cc4f -Author: Selena Juneau-Vogel -Date: Wed Oct 7 09:49:27 2020 -0400 - - Update our-team-and-values.md - -commit 2fe7e0f0ad56d5868bcd84d209ec65f90ad88124 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 09:47:15 2020 -0400 - - Update communication-tools.md - -commit 1698d7d44153e843954c6c7df2e746551576e632 -Author: Selena Juneau-Vogel -Date: Wed Oct 7 09:46:04 2020 -0400 - - Update communication-tools.md - -commit b5ef7608427f67a13e10243b60507ca1e28f6aec -Author: Spencer Hilvitz -Date: Tue Oct 6 16:23:47 2020 -0700 - - fix names - -commit 011ffb99a9c00083280e02620e4dfe4bb29126cf -Author: Spencer Hilvitz -Date: Tue Oct 6 16:17:19 2020 -0700 - - add class to stt option, add test for dropdown list of stts - -commit f0ef4f0cac3ddae5ac93270d227bfa7fdd6d7f6d -Author: Spencer Hilvitz -Date: Tue Oct 6 15:45:19 2020 -0700 - - COMBO BOX WORKING - -commit 23e324bb1e286a6cafd4563e5b56b03eace4e64b -Author: Selena Juneau-Vogel -Date: Tue Oct 6 18:25:02 2020 -0400 - - Rename sprint-schedule to sprint-schedule.md - -commit 4e6926dc81a16141d87e02ad0d88409eff9cbc1a -Author: Spencer Hilvitz -Date: Tue Oct 6 15:24:21 2020 -0700 - - fix combo box, finish validations - -commit 046e82ba820a79bae64d65d4aa594c039006c932 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 18:20:50 2020 -0400 - - Update team-meetings.md - -commit 2def9aa25f665a278386b470c0ab2cc85ef8f6d5 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 18:19:25 2020 -0400 - - Update and rename team-and-values.md to our-team-and-values.md - -commit 84d4aad6adcdcb77bb4df740fcbb8527c379c573 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 18:11:52 2020 -0400 - - Update team-and-values.md - -commit 59961ff3b3bf1126b586cf78e2894286965a5367 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 18:11:14 2020 -0400 - - Update team-and-values.md - -commit 33eb46536f19676d9933367010ea0580f55c5d90 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:51:36 2020 -0400 - - Update and rename team-values.md to team-and-values.md - -commit 612e62b0345cf2c918ba58cc7a94a556af62d6c9 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:45:54 2020 -0400 - - Update team-meetings.md - -commit 95f958c3a81f21643dc50a54025c1c6a39b2eed8 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:44:40 2020 -0400 - - Update team-meetings.md - -commit 843fe9d695fed9059af1a8fcf42f4c79e46d2eab -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:41:08 2020 -0400 - - Update team-meetings.md - -commit 95e92edc9a2db5a79c260363c0d1f563a23800cb -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:40:32 2020 -0400 - - Update team-meetings.md - -commit 8ac02af714685f99c37bdc3b89f574bfe38ebb59 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:28:17 2020 -0400 - - Create sprint-schedule - -commit 86978f4ddfed2ded0281dfac3a1468561fd907fc -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:26:20 2020 -0400 - - Update team-meetings.md - -commit b2b2be2e78acb09b99a56627d16fb22855d6c903 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:18:04 2020 -0400 - - Update team-meetings.md - -commit 1216980edef6bb60b2706cd3c88cdbbc493662e3 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 17:12:57 2020 -0400 - - Update team-meetings.md - -commit 6d0b83388ea0090b4946fcaa392e39816c8de314 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:28:22 2020 -0400 - - Create team-values.md - -commit c3e0f4165def386c2f5a3680ef39ba10d5179f40 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:25:01 2020 -0400 - - Update communication-tools.md - -commit fd42ccd187654939f347f41a8fb956f31112ad86 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:24:43 2020 -0400 - - Rename communication-tools to communication-tools.md - -commit 05d87f3c3fd6a02c457e07f2a32a1549b92fd457 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:12:01 2020 -0400 - - Update our-workflow.md - -commit c29d3039b6b11df175b1cf69408a938660ee9412 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:10:50 2020 -0400 - - Update our-workflow.md - -commit 3c052946fce7e20483d52ef89cdb287cb2d87d8f -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:08:31 2020 -0400 - - Update and rename organizing-our-work.md to our-workflow.md - -commit 06f5251e1a453b4f8b8a1021b133bbc3b71fe31e -Author: Selena Juneau-Vogel -Date: Tue Oct 6 15:06:32 2020 -0400 - - Update organizing-our-work.md - -commit 92fa615661d74f3c8f80321dbc3a6ff71151d313 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 14:58:34 2020 -0400 - - Update organizing-our-work.md - -commit 8b932bf80b63e083ef6fb8864861e8adb34fdffd -Author: Selena Juneau-Vogel -Date: Tue Oct 6 14:49:49 2020 -0400 - - Create communication-tools - -commit 1c9185daaac1c4d291b204f28d9a8265c2d2ff71 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 14:43:48 2020 -0400 - - Update reviewing-work.md - -commit 10f1647e10b11321e30cef2840668abe4bea3e1b -Author: Selena Juneau-Vogel -Date: Tue Oct 6 14:39:26 2020 -0400 - - Update reviewing-work.md - -commit 7cb66e5664e445e22449fcf4176519536f831145 -Author: Spencer Hilvitz -Date: Tue Oct 6 10:46:15 2020 -0700 - - remove unnecessary eslint-disable-line - -commit 71f9af043f44fbbb6ea73159c581308ee1668f55 -Merge: 1d1d35789 22abbf5da -Author: Spencer Hilvitz -Date: Tue Oct 6 10:45:26 2020 -0700 - - Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation - -commit 1d1d35789e23aa93ed87ad3f8a874e566cc03419 -Author: Spencer Hilvitz -Date: Tue Oct 6 10:44:25 2020 -0700 - - replace example options with stts, remove disabled attr from request access button - -commit b2f4b8e255c57d68aaa830bbc4c5bd7f572dd2ea -Author: Selena Juneau-Vogel -Date: Tue Oct 6 12:10:57 2020 -0400 - - Rename QASP-review.md to reviewing-work.md - -commit 4efd6a377e80009c852e761eab7f4eece81b81c4 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 12:10:15 2020 -0400 - - Create QASP-review.md - -commit 64677fadcfc1472f376be8934b904f50dcb84937 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 12:00:21 2020 -0400 - - Rename organizing-our-work to organizing-our-work.md - -commit de2f4ba7cf89ecf9d4e742b1d3354dc10cd506e0 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:59:39 2020 -0400 - - Create organizing-our-work - -commit 7115b98ad558fded263531806c3531d8a849ad47 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:56:10 2020 -0400 - - Update team-meetings.md - -commit ac16d69b30a6c7bb53042b1f4fda4b7dc70646c4 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:53:53 2020 -0400 - - Update team-meetings.md - -commit c7799ab0519981aa28bae31d33a71392aef55476 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:50:33 2020 -0400 - - Update team-meetings.md - -commit 2017ad444b0e8e96bd00ac35f08bbedeeb5564fd -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:50:19 2020 -0400 - - Update team-meetings.md - -commit a00c193f082610124a4ff653b4754def14c9d1ca -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:50:05 2020 -0400 - - Rename team-meetings to team-meetings.md - -commit 4437929eb5569d21f950f2fef267786137dcba00 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:43:07 2020 -0400 - - Update and rename meetings to team-meetings - -commit 84612d49740facf239a109004e1cb756276ffcc2 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:31:17 2020 -0400 - - Create meetings - -commit 86528d7c96a0b061f5b4e01f6986dbe6a5c361e5 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 11:28:56 2020 -0400 - - Delete team-charter.md - -commit c18a5dd68e4c77faaef93ba4eddccf71cc8eae88 -Author: Selena Juneau-Vogel -Date: Tue Oct 6 10:50:38 2020 -0400 - - Create team-charter.md - -commit 7cc59cd7a6ad5bd92130bb3fab1a70303ae224d9 -Author: Carlton Smith -Date: Mon Oct 5 15:56:43 2020 -0400 - - test users with stts - -commit a4d85a41d8d660b798f8595e6d145a5037459d4f -Author: Spencer Hilvitz -Date: Mon Oct 5 12:45:46 2020 -0700 - - remove react select - -commit 22abbf5dae3cdcff7d1ccb4845c84934247b0594 -Author: Spencer Hilvitz -Date: Mon Oct 5 09:50:50 2020 -0700 - - trying to use uswds example - -commit fcbef0389cfb6ca8075b7cf02ba653d84b8b3daf -Author: Spencer Hilvitz -Date: Fri Oct 2 15:46:46 2020 -0700 - - ant select example - -commit 719fb289178e3300504e34d1e45661d8215036a6 -Merge: aed59f5f2 1af312257 -Author: Carlton Smith -Date: Fri Oct 2 12:54:39 2020 -0400 - - merge cleanup - -commit 414bddae3f4c67e43c32e9179d65c0608705926d -Author: Spencer Hilvitz -Date: Thu Oct 1 14:34:24 2020 -0700 - - fix focused border on stt dropdown - -commit dfeb2f8f9e22877045809eec20da021f2eb4dabf -Merge: 7509099fa 1af312257 -Author: Spencer Hilvitz -Date: Thu Oct 1 14:11:45 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox - -commit f0f9dd4d2d600ac2c20e10a3ca7e8e694e33d763 -Merge: 4abea2b55 1af312257 -Author: Spencer Hilvitz -Date: Thu Oct 1 14:11:30 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 230-form-validation - -commit 1af3122575911b33e1f6482837484fa69526a9e5 -Merge: 6aa239621 9272f60d7 -Author: Spencer Hilvitz -Date: Thu Oct 1 13:52:43 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into backend/229/stts-endpoint - -commit 4abea2b55594cf9480fd286c0f6d4ea73e3273ff -Merge: a8cb7d690 7509099fa -Author: Spencer Hilvitz -Date: Thu Oct 1 13:38:17 2020 -0700 - - Merge branch '229-combobox' of github.com:raft-tech/TANF-app into 230-form-validation - -commit 7509099fa703af8d39bc825eed31504f775214fb -Author: Spencer Hilvitz -Date: Thu Oct 1 13:09:20 2020 -0700 - - remove placeholder in stt select - -commit a8cb7d690ca33adab0c16eb79e50221f3228a1ce -Author: Spencer Hilvitz -Date: Thu Oct 1 13:08:36 2020 -0700 - - middle of figuring out how stt clear works - -commit aed59f5f23f28a8dcbac12fefba58fc7f3871c1c -Author: Carlton Smith -Date: Thu Oct 1 15:57:46 2020 -0400 - - linting - -commit c4a95aef144df1d3344c7467e32e41dd0bba9477 -Author: Carlton Smith -Date: Thu Oct 1 15:40:10 2020 -0400 - - test authorization - -commit f07a4292a3dd208378014935366eafd138d28ace -Merge: 97b1f2bb6 9272f60d7 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Oct 1 14:25:37 2020 -0400 - - Merge pull request #58 from raft-tech/raft-tdp-main - - SPRINT 4 RELEASE - -commit 826ffbebaacd53caff713d447b8d6c288bf00081 -Author: Carlton Smith -Date: Thu Oct 1 13:40:21 2020 -0400 - - add endpoint - -commit 3f09ea562cae6803a112fad62232160d12803484 -Author: Spencer Hilvitz -Date: Thu Oct 1 08:15:24 2020 -0700 - - add inline comment explaining eslint-disable-next-line in editprofile - -commit b1138e371306a446219cd120535ef2a265143932 -Author: Spencer Hilvitz -Date: Wed Sep 30 16:38:45 2020 -0700 - - re-add react-select, fix linter error with inline comment - -commit 5428ea2db8156a96bbdafa6f98f495afacb8e0e8 -Author: Spencer Hilvitz -Date: Wed Sep 30 14:30:06 2020 -0700 - - remove tsconfig.json - -commit a85fa5bc4cd9e6c10ff358fb2b554b2eb79b9940 -Merge: 3639d40c7 6aa239621 -Author: Spencer Hilvitz -Date: Wed Sep 30 14:11:35 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox - -commit 3639d40c72eaae6b84206e4e719849efc31cc2d6 -Merge: 58c3c9f97 9272f60d7 -Author: Spencer Hilvitz -Date: Wed Sep 30 14:10:01 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox - -commit 9272f60d7c5c9c09e4b07a14203d4b22e44604d6 -Merge: 30ed9bc41 1c249ca88 -Author: Carl Smith -Date: Wed Sep 30 14:01:32 2020 -0400 - - Merge pull request #307 from raft-tech/cloudgov-backend-mem-increase - - Adjust the memory allowance of the backend app - -commit 1c249ca88630296488b4d74387f49cfc97939448 -Author: raftergit -Date: Wed Sep 30 13:20:17 2020 -0400 - - restore original circleci settings - -commit b5f4ebd8d9d21f7efc1ea51af9390732d2eb0920 -Author: raftergit -Date: Wed Sep 30 13:08:13 2020 -0400 - - testing memory quota at 256MB - -commit 4609603383bbed439d5d5a5644611b848e654276 -Author: raftergit -Date: Wed Sep 30 12:42:41 2020 -0400 - - testing memory quota increase to 2GB - -commit 4d4abc83a1a21c9c00b3da000466d0ffaffbf7e5 -Author: raftergit -Date: Wed Sep 30 12:32:31 2020 -0400 - - testing memory quota increase - -commit 24700ed3107a2e39834ad908d56f36b638a0b87f -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 30 12:27:31 2020 -0400 - - Increase the memory allowance of the backend app - -commit 58c3c9f978e64e7a5dd3dd52ad1558e4dd848a28 -Merge: d86689958 30ed9bc41 -Author: Spencer Hilvitz -Date: Wed Sep 30 08:58:42 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox - -commit 30ed9bc4170d124c34a3768e305d1b880d8c8b3b -Merge: cf9220dc2 7eba8ef20 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 30 11:47:18 2020 -0400 - - Merge pull request #300 from raft-tech/sprint-4-remediations - - Sprint 4 remediation - -commit 7eba8ef200db8b10939fc91ce97c43a8478bfa0a -Author: Spencer Hilvitz -Date: Tue Sep 29 14:52:40 2020 -0700 - - replace login button with button component - -commit 8170299c61ff3a7816afdc2f90964d8f1bfbbd7e -Author: Spencer Hilvitz -Date: Tue Sep 29 14:46:03 2020 -0700 - - remove jest coverage changes, change defaultprops in button.jsx to disabled to enforce react/jsx-props-no-spreading rule - -commit 3a633d7dceeff328d3f4612e191a077147bb4a3b -Author: Spencer Hilvitz -Date: Tue Sep 29 14:26:17 2020 -0700 - - change tsx to jsx - -commit 70e3ea4690223e0fd2015b8e9071420aa2247071 -Author: Spencer Hilvitz -Date: Tue Sep 29 13:19:51 2020 -0700 - - remove react linter rules - -commit fd1ce5b13497ae503ce29a7235fd82f96bcfb7e0 -Merge: ce3b78e55 75fd27727 -Author: Spencer Hilvitz -Date: Tue Sep 29 12:55:34 2020 -0700 - - Merge branch 'sprint-4-remediations' of github.com:raft-tech/TANF-app into sprint-4-remediations - -commit ce3b78e55e480ed73626ba7e54def294420bc539 -Author: Spencer Hilvitz -Date: Tue Sep 29 12:55:25 2020 -0700 - - add button test file - -commit 75fd277273fbf8e2cae2f3ff2c1e5795cc285c86 -Author: raftergit -Date: Tue Sep 29 15:43:07 2020 -0400 - - updating documentation for security vulnerability updtes during Sprint 4 - -commit 9e0ffc5e8484a22d6e0c13a999e598fe6007f5de -Merge: 0d96c9926 e7484ec4e -Author: raftergit -Date: Tue Sep 29 15:13:44 2020 -0400 - - Merge branch 'sprint-4-remediations' of https://github.com/raft-tech/TANF-app into sprint-4-remediations - -commit e7484ec4e1193e4d33e719d79276401f3d406d1f -Author: Spencer Hilvitz -Date: Tue Sep 29 12:09:59 2020 -0700 - - add typescript validations - -commit 3bcc4d12d562c5aff61c4b4aac723d05960b3734 -Merge: 2ec392a32 6fc38cf11 -Author: Spencer Hilvitz -Date: Tue Sep 29 12:04:50 2020 -0700 - - Merge branch 'sprint-4-remediations' of github.com:raft-tech/TANF-app into sprint-4-remediations - -commit 2ec392a328d0a73b9c5bf30584f61f3e5021be77 -Author: Spencer Hilvitz -Date: Tue Sep 29 12:04:45 2020 -0700 - - add typescript button component - -commit 0d96c9926d7bae3876a551a74a729e7813f9679c -Author: raftergit -Date: Tue Sep 29 14:31:04 2020 -0400 - - adding documentation for node-forge resolution - -commit 6fc38cf112d1198efb61a1cc59f7f31287e41f23 -Merge: 98584641c 9622ff19b -Author: raftergit -Date: Tue Sep 29 14:11:31 2020 -0400 - - Merge branch 'sprint-4-remediations' of https://github.com/raft-tech/TANF-app into sprint-4-remediations - -commit 98584641ce798b5cfa89110a6094aafe2e285b64 -Author: raftergit -Date: Tue Sep 29 14:11:23 2020 -0400 - - implementing resolution for the Node-Forge issue SNYK-JS-NODEFORGE-598677 by upgrading the dependancy from 0.9.0 to 0.10.0, removed the vulnerability from the snyk ignore list, and extended the Node-Sass vulnerability to expire on 10-29-2020 - -commit 9622ff19b18323a7b9fd400fc3c87d7e159bbce0 -Author: Spencer Hilvitz -Date: Tue Sep 29 10:36:48 2020 -0700 - - add button component - -commit 5e844bfa03a79e129f4206af2199a68ac1966846 -Author: Spencer Hilvitz -Date: Tue Sep 29 10:15:56 2020 -0700 - - add cypress tests for menu and govbanner expansion - -commit f0e2f0bcf2dd98a3e50619ad7a8bcdbd4508c826 -Author: Spencer Hilvitz -Date: Tue Sep 29 08:29:19 2020 -0700 - - remove size="big" from login button - -commit 7e91cc19d0eae77c91583cc9eac4bed07ac5caf9 -Merge: 9c58035c7 394f9671c -Author: Spencer Hilvitz -Date: Tue Sep 29 07:49:43 2020 -0700 - - Merge branch 'sprint-4-remediations' of github.com:raft-tech/TANF-app into sprint-4-remediations - -commit 394f9671ce8e6010fef6b8b2415d7ff91c447dad -Author: raftergit -Date: Tue Sep 29 10:08:27 2020 -0400 - - restoring requirements.txt - -commit 9c58035c78b79ae300517bf1c33fd10ab63592b5 -Author: Spencer Hilvitz -Date: Mon Sep 28 17:03:00 2020 -0700 - - change notify to alert and all imports updated, fix govbanner logos and remove inline svg - -commit d86689958dd4e5df7d4fb2867cf31a9679349ceb -Author: Spencer Hilvitz -Date: Mon Sep 28 13:09:17 2020 -0700 - - add isClearable to select - -commit 2073885ff49db3dc57b25ff6717bd5eebe5f1886 -Merge: 35f433043 cf9220dc2 -Author: Spencer Hilvitz -Date: Mon Sep 28 13:08:57 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 229-combobox - -commit c81b3725a18ea0533fd4ca0b5213ab0e76b0b2d6 -Author: Carlton Smith -Date: Mon Sep 28 15:23:39 2020 -0400 - - remove unneeded - -commit 7cee0a8b0803fd29f793dada4caacb2307aa0346 -Author: Carlton Smith -Date: Mon Sep 28 15:20:53 2020 -0400 - - remove tests from coverage - -commit 6aa2396216907e2c89c104a19e3a63c6bbf28d4d -Author: Carlton Smith -Date: Mon Sep 28 13:29:47 2020 -0400 - - clean up - -commit dc0a096acbb4c73b8dbd3bc55bd0214bdb7374f4 -Author: Carlton Smith -Date: Mon Sep 28 12:47:06 2020 -0400 - - create timestamp class - -commit c62f8dc380c386d09444e81b133dc06263ef2d29 -Merge: 8bb728934 cf9220dc2 -Author: Carlton Smith -Date: Mon Sep 28 12:20:54 2020 -0400 - - rebase - -commit 35f4330438c4e27642eaaf6737cc7e64aa505a7a -Author: Spencer Hilvitz -Date: Fri Sep 25 13:50:29 2020 -0700 - - change action to give all data to redux store, clean data in editprofile for select options, remove code for alerts - -commit 49634b4b1c5bbc8db996cfadd9030c8428f6fda3 -Author: Spencer Hilvitz -Date: Fri Sep 25 13:29:04 2020 -0700 - - id given to select - -commit 8db1a8f48e7bbf1c42a0419dd524632665e2883d -Author: Spencer Hilvitz -Date: Fri Sep 25 12:32:12 2020 -0700 - - rename https logo - -commit 55b79eb6ff6ab45115188e533ee5ff5d59534e0b -Author: Spencer Hilvitz -Date: Fri Sep 25 12:19:29 2020 -0700 - - remove uswds notifications from build - warnings still present - -commit 70d4e3c994f924f4ef0f7f9e4c176f73d8c23462 -Merge: 87da229a1 05bcd3b70 -Author: Spencer Hilvitz -Date: Fri Sep 25 12:19:07 2020 -0700 - - Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox - -commit 87da229a1da689d98955d99e63f5e86f0c79b100 -Merge: 6b2fe0271 8bb728934 -Author: Spencer Hilvitz -Date: Fri Sep 25 12:18:42 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox - -commit cf9220dc20ce9dca6b17d6c9c383cedb4531d77f -Merge: 744e82f59 05bcd3b70 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 25 15:09:14 2020 -0400 - - Merge pull request #289 from raft-tech/trussworks-removal - - 280 - Remove Trussworks - -commit 05bcd3b70a77c4fbf4a25988a7c9f9f4edbe3860 -Author: Spencer Hilvitz -Date: Fri Sep 25 11:47:30 2020 -0700 - - fix double nested main-content - -commit c0ab5bf1b0368ecebf729c58788cc79ea9a73a6c -Author: Spencer Hilvitz -Date: Fri Sep 25 09:11:41 2020 -0700 - - fix image path in govbanner and add alt text to login.gov - -commit 8bb728934a3b61998349d720ace809620709f516 -Author: raftergit -Date: Fri Sep 25 09:56:14 2020 -0400 - - adding populate stts to gunicorn start script, moving logging stream tracking statement to common.py, and updating populate stts log to be more descriptive: - -commit 6b2fe02718e9f919cb5b0f40eca371eded731698 -Author: Spencer Hilvitz -Date: Thu Sep 24 15:19:02 2020 -0700 - - add stt.test.js to reducers - all passing - -commit b17ffb306b62bd58c1013340ab0abb0e33818ab9 -Author: Spencer Hilvitz -Date: Thu Sep 24 15:08:04 2020 -0700 - - add stts.test.js - all passing - -commit 6033b144679487c3d04f314ee0e39e8d6894eaaa -Merge: b358b0da6 4142581d6 -Author: Spencer Hilvitz -Date: Thu Sep 24 14:48:57 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox - -commit b358b0da6a3c5554dff1395b95a2214d2f60ac93 -Merge: 096094f78 38f642bff -Author: Spencer Hilvitz -Date: Thu Sep 24 14:48:33 2020 -0700 - - Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox - -commit 38f642bff160a0e089ba4110717d1f3d0c1aaed1 -Author: Spencer Hilvitz -Date: Thu Sep 24 14:07:19 2020 -0700 - - update pa11y - -commit b9ac17c3a42315f819aca87627cf2dd735572797 -Merge: c4787394e 63c9a0ebf -Author: Spencer Hilvitz -Date: Thu Sep 24 14:07:01 2020 -0700 - - Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into trussworks-removal - -commit c4787394e7a7f0a58fae4391e03c0bcc77a572a5 -Author: Spencer Hilvitz -Date: Thu Sep 24 13:58:00 2020 -0700 - - final corrections - -commit 63c9a0ebf1217f2039b3d86de681b605fad6e980 -Merge: 25cc74d86 744e82f59 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Sep 24 16:55:17 2020 -0400 - - Merge branch 'raft-tdp-main' into trussworks-removal - -commit 744e82f590591f6afab3d07167ad658fbdee13f6 -Merge: 13f9785bb 32484615f -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Sep 24 15:54:57 2020 -0400 - - Merge pull request #293 from raft-tech/backend/253/erd - - add software to the deploy build - -commit 32484615f136e3338ef98a30d32b6b49e90a9d30 -Merge: 980cfcb79 13f9785bb -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Sep 24 15:29:43 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/253/erd - -commit 096094f78441faf04d7f72d53c11fb4bc20d39be -Author: Spencer Hilvitz -Date: Thu Sep 24 11:29:40 2020 -0700 - - working on tests - -commit 980cfcb7941db24317cf5473a5572bc8e283a241 -Author: Carlton Smith -Date: Thu Sep 24 13:53:50 2020 -0400 - - add software to the deploy build - -commit 13f9785bb9e6081d5e8d88c7513317531d8a8091 -Merge: 64e333192 5dbb0e4ef -Author: Carl Smith -Date: Thu Sep 24 12:59:29 2020 -0400 - - Merge pull request #284 from raft-tech/backend/253/erd - - Backend/253/erd - -commit b76699bd99caa05f35c98cd195c069a2a21a74be -Merge: 97eee0407 25cc74d86 -Author: Spencer Hilvitz -Date: Thu Sep 24 09:57:05 2020 -0700 - - Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox - -commit 25cc74d86521f54e7a0aa03a7d399c650e849295 -Author: Spencer Hilvitz -Date: Wed Sep 23 15:37:25 2020 -0700 - - fix usa-nav__primary-item font weight and color - -commit 8eac79419e459ebec21d3b9dc8f8a442cedba272 -Author: Spencer Hilvitz -Date: Wed Sep 23 15:10:35 2020 -0700 - - fix mobile primary nav item styling - -commit 97eee040791dc38efbebed33deaab2675750760d -Author: Spencer Hilvitz -Date: Wed Sep 23 15:09:29 2020 -0700 - - remove setalert, comment out theme - -commit 9bbea87c4a9f1ce1a3ad6adcfba8bcd886d32c16 -Merge: 0658f1985 a49b2412b -Author: Spencer Hilvitz -Date: Wed Sep 23 14:28:05 2020 -0700 - - Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox - -commit a49b2412bfda2ad0caca764adafe4dc45822097f -Author: Spencer Hilvitz -Date: Wed Sep 23 14:22:48 2020 -0700 - - fix double classname - -commit 3b645ca2bf28c3c9e4403995975a0ea2277b2ce7 -Author: Spencer Hilvitz -Date: Wed Sep 23 14:21:45 2020 -0700 - - rename scss variables based off of figma: https://www.figma.com/file/jpbLzRQt7vl6q8qtfeQ6BR/USDWS\?node-id\=0%3A1 - -commit 0658f1985dfda4d3607262b9f512fbb08ad4f2a1 -Author: Spencer Hilvitz -Date: Wed Sep 23 14:15:53 2020 -0700 - - rename scss variables based off of figma: https://www.figma.com/file/jpbLzRQt7vl6q8qtfeQ6BR/USDWS\?node-id\=0%3A1 - -commit 0bf76e48148e8d36feec4bcdb460502efc3125e5 -Merge: e25d044da 87d8b3efd -Author: Spencer Hilvitz -Date: Wed Sep 23 13:53:48 2020 -0700 - - Merge branch 'trussworks-removal' of github.com:raft-tech/TANF-app into 229-combobox - -commit 87d8b3efd317090689188510d4896cfb12a6f8ab -Author: Spencer Hilvitz -Date: Wed Sep 23 13:26:51 2020 -0700 - - fix cypress tests - -commit 7bf13c17fad9c4530b300c32bfdf1d487a6ccda1 -Author: Spencer Hilvitz -Date: Wed Sep 23 13:20:21 2020 -0700 - - fix tests and remove dashboard page from routes - -commit baed12305cfd3f148428e353f48655b1b92bbcda -Author: Spencer Hilvitz -Date: Wed Sep 23 12:49:25 2020 -0700 - - move scss variables from index.scss to uswds-theme-color.scss - -commit dc0292ba6b4eb0063b045579ce1a950a62f683c8 -Author: Spencer Hilvitz -Date: Wed Sep 23 12:38:30 2020 -0700 - - replace hex codes with scss variables in index.scss - -commit 3552ba70253c784caef31aeb676d65fc3dfa89d6 -Author: Spencer Hilvitz -Date: Wed Sep 23 12:23:12 2020 -0700 - - update editprofile.scss, add mobile breakpoint, add login.gov logo - -commit 4142581d64a1e115dab18054eaa69dcfa691dace -Author: Carlton Smith -Date: Wed Sep 23 14:46:05 2020 -0400 - - testing adjustments - -commit e25d044da17bbf65d5c6c9b966057dbd79a78155 -Author: Spencer Hilvitz -Date: Wed Sep 23 11:05:11 2020 -0700 - - stts working, in the middle of figuring out styling - -commit 68a6c43db0097f512cf64269c1ee493c83d0c133 -Author: Carlton Smith -Date: Wed Sep 23 12:54:31 2020 -0400 - - api documentation - -commit a0007243e33941aefcb67d6d7f5a273b5da6e9ac -Author: Carlton Smith -Date: Wed Sep 23 09:43:56 2020 -0400 - - remove unused module - -commit 035f65013b4a117eb056cad3991c0d23535a134d -Author: Carlton Smith -Date: Wed Sep 23 09:16:11 2020 -0400 - - remove redundant exception - -commit c7af7052c0a58308b408c9a8e2774635f58574f3 -Merge: 366e3d1c5 74902acc3 -Author: Spencer Hilvitz -Date: Tue Sep 22 15:15:25 2020 -0700 - - Merge branch 'backend/229/stts-endpoint' of github.com:raft-tech/TANF-app into 229-combobox - -commit 366e3d1c538600d68b23220b00133a0677046f10 -Author: Spencer Hilvitz -Date: Tue Sep 22 14:57:57 2020 -0700 - - replace arial fonts with variable defined in index.scss - -commit d484e58a61e355612500217bb711440bb704f0f2 -Author: Spencer Hilvitz -Date: Tue Sep 22 14:48:36 2020 -0700 - - use merriweather token in splaspage.scss - -commit 8f7f743e44fc1ad7f6c7ba84e881daa2b5935ef9 -Author: Spencer Hilvitz -Date: Tue Sep 22 13:22:38 2020 -0700 - - update cypress tests - -commit 74902acc335f1fbfd290c11dc5ca27088ab26661 -Author: Carlton Smith -Date: Tue Sep 22 16:22:43 2020 -0400 - - API Tests - -commit 35442b31e31c6412d656a2bc74b81e7685675558 -Author: Spencer Hilvitz -Date: Tue Sep 22 13:11:52 2020 -0700 - - fix footer logo - -commit 993e978ab2dd1cfd4a8a379921a1fae3d4035b93 -Author: Spencer Hilvitz -Date: Tue Sep 22 13:07:01 2020 -0700 - - fix tests - -commit d04a6b975b09b2619b204274d7019d039591e9ed -Author: Spencer Hilvitz -Date: Tue Sep 22 11:31:40 2020 -0700 - - switch to uswds fully - -commit f1e9463131ba5f4ac9e5b9c71c1ae0193b1892d7 -Author: raftergit -Date: Tue Sep 22 12:14:14 2020 -0400 - - migrated populate stts command to stts app and added unit testing of STT and Region objects - -commit 2c99fd4d3c5dc06dfb1dca22360158059b6c2941 -Author: Carlton Smith -Date: Tue Sep 22 10:00:37 2020 -0400 - - add requirements back - -commit bd93b5523a2ab83526aa1d2daad771e733c43552 -Author: Carlton Smith -Date: Tue Sep 22 09:54:21 2020 -0400 - - add logging - -commit 85f37c72ac5db022da20415d378189561554151b -Author: Carlton Smith -Date: Tue Sep 22 08:18:33 2020 -0400 - - change stttype to entitytype - -commit 163a1ab8e46cb96097551293ab0f3cdfb262a736 -Author: Carlton Smith -Date: Mon Sep 21 16:25:42 2020 -0400 - - remove ignored - -commit 8dd7cfde86dee197ba179b63e2da66d4de8257d8 -Author: Carlton Smith -Date: Mon Sep 21 16:23:51 2020 -0400 - - endpoint for stts in default order - -commit 7f7eb476dab71b4a1dcc3370049399378230cd03 -Author: Carlton Smith -Date: Mon Sep 21 15:35:09 2020 -0400 - - alpha endpoint - -commit a00b124a59796ccbc50d2ca7adf37c5df09685d7 -Author: Carlton Smith -Date: Mon Sep 21 14:44:30 2020 -0400 - - alphabetized states. - -commit b30eada76a5100844021983f16e166444ccc12fc -Author: Carlton Smith -Date: Mon Sep 21 14:19:59 2020 -0400 - - add region to the string representation - -commit b068595a9a70173a5f3efe8e9d3a14541a843d6c -Author: Carlton Smith -Date: Mon Sep 21 14:13:43 2020 -0400 - - linting fixes - -commit 36297513c6b1a691a527fcaf94ee12abd06e60d0 -Author: Carlton Smith -Date: Mon Sep 21 14:03:11 2020 -0400 - - move stts to their own app - -commit c2b3186388581e582f519c90d691752f5e0f15c2 -Author: Spencer Hilvitz -Date: Fri Sep 18 19:57:39 2020 -0700 - - remove unnecessary useState in Header.jsx, comment out all .scss files except splashpage, comment out all bad css to try and override with new classes - -commit 120d2c3a6000e1cfc7fa00d5345380391e54396b -Author: Spencer Hilvitz -Date: Fri Sep 18 16:19:34 2020 -0700 - - notify working, added govbanner, icons still not working - -commit fb3db96f37ac8e1bfe747e36e811b5808c1cceb1 -Author: Spencer Hilvitz -Date: Fri Sep 18 14:57:32 2020 -0700 - - comment out dashboard, add uswds javascript - -commit 8f8a8b76300fe7d119ece2a4bae12d68d601c0aa -Author: Spencer Hilvitz -Date: Fri Sep 18 13:43:54 2020 -0700 - - editprofile styled correctly with uswds and make some changes to header - -commit dd1eda2003e0041ea0090420635ccde4e66e7e2f -Author: Spencer Hilvitz -Date: Fri Sep 18 13:18:36 2020 -0700 - - import all .scss files into index.scss - -commit 72bd4f7e88735df685966d7fe97e94d2a8638af9 -Author: Spencer Hilvitz -Date: Fri Sep 18 12:50:40 2020 -0700 - - footer and splashpage refactored - -commit 383a3774cd984a8b4c24c242cfd652c508141aa3 -Author: Spencer Hilvitz -Date: Fri Sep 18 12:12:32 2020 -0700 - - header styling done - functionality not working - -commit 5da0d0f482f4d17be329744150c5c669938f4228 -Author: Spencer Hilvitz -Date: Fri Sep 18 12:01:09 2020 -0700 - - uswds sort of working, header seems fine - still problems with gov banner - -commit bb595a644a0d76d8dac60dc0da439280a2f30aaf -Author: Spencer Hilvitz -Date: Fri Sep 18 09:17:31 2020 -0700 - - move all .scss files to assets dir, try to add uswds - getting error.svg not found error, BEFORE gulp - -commit fe535e0b8fd3edb5cb3cf6aa942e06d5305a8fdc -Author: raftergit -Date: Fri Sep 18 09:50:54 2020 -0400 - - updates to endpoint name - -commit 9991253a4262775edda20dc2dbb7eb9d515af24e -Author: raftergit -Date: Fri Sep 18 09:04:07 2020 -0400 - - proto-type endpoint for getting states /tribes/ territories organized by region - -commit 34e475f676ccff8d258d8122b4a9b7b561efa69d -Author: raftergit -Date: Fri Sep 18 07:59:30 2020 -0400 - - Adding CSV files to manage any changes needed to be made to STTs - -commit 5c14d2deedfb34ef388311abe6b28c92b4b1e1be -Author: Spencer Hilvitz -Date: Thu Sep 17 17:43:21 2020 -0700 - - add uswds package, update header component - -commit 5dbb0e4ef7e9a1f2d33fe306fe48059e28971283 -Author: Carlton Smith -Date: Thu Sep 17 17:50:55 2020 -0400 - - move package to dev and remove unneeded - -commit 7fafb64812d6aeb907dd634e44b4d2185dcb385a -Author: Carlton Smith -Date: Thu Sep 17 16:24:57 2020 -0400 - - add graph models to generate ERD - -commit 97b1f2bb6a837bdad054c0b8ebe95f40640512ad -Merge: 06d6153ee 64e333192 -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Thu Sep 17 15:08:10 2020 -0400 - - Merge pull request #55 from raft-tech/raft-tdp-main - - SPRINT 3 RELEASE - -commit 64e333192f41445386d702779627382c411ae0fd -Merge: f93f854ce 62b2d107f -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 16 16:07:55 2020 -0400 - - Merge pull request #262 from raft-tech/spot-check-remediations - - Frontend Spot check remediations - -commit 62b2d107ffe5c40f949a1f5ff514d199762b22d5 -Merge: e7be0e334 f93f854ce -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 16 15:57:28 2020 -0400 - - Merge branch 'raft-tdp-main' into spot-check-remediations - -commit f93f854ce26956e752cff6c0f176167551fcb7e4 -Merge: 18ee0d2bc 2d0dd62fc -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 16 15:57:13 2020 -0400 - - Merge pull request #273 from raft-tech/backend/sprint3-review-remediation - - Backend Remediations in response to the Sprint 3 PR review - -commit e7be0e334f8eb68aefab1d5f93d9c767ae2d5cc9 -Author: Spencer Hilvitz -Date: Wed Sep 16 07:57:38 2020 -0700 - - replace placeholder footer logo with ACF logo - -commit d6dd7862d0ab0d4f970008d677f3316ff2b84c4a -Author: Spencer Hilvitz -Date: Tue Sep 15 16:57:22 2020 -0700 - - add inline comment about minor changes before beta release - -commit 4e4b66715803a0fd0dd31077c3a1fa25b7b129f3 -Author: Spencer Hilvitz -Date: Tue Sep 15 16:44:21 2020 -0700 - - clean up header.scss - -commit 3c69fe60f3ebc4e8ef724fb74efb41b75d0efffa -Author: Spencer Hilvitz -Date: Tue Sep 15 16:43:47 2020 -0700 - - change active welcome to red color - -commit 1b227a3e7dd3bc1765e4ba781bdff33c16866a60 -Author: Spencer Hilvitz -Date: Tue Sep 15 16:05:42 2020 -0700 - - change active welcome :after to red color, change header font, add cardheader and change it's font, add box-shadow to resource cards - -commit 238b8c6191d5709b58ecfb83931d4449eeba2689 -Author: Spencer Hilvitz -Date: Tue Sep 15 13:56:56 2020 -0700 - - rollback login.gov logo changes - -commit ad6d1be78a01a2fab59ddb64d5dfc872d297dc6a -Author: Spencer Hilvitz -Date: Tue Sep 15 13:33:34 2020 -0700 - - change login cypress tests to pass with login.gov logo, remove commented out code in _global.scss, add login logo - -commit 2d0dd62fce37709e8813f4ba8ea8a0b6410377a8 -Author: raftergit -Date: Tue Sep 15 16:05:14 2020 -0400 - - Updating frontend README.md first step in regards to creating .env.local - -commit c4e1d9eebda47f1e7f619b5f37a378b4500118bf -Author: raftergit -Date: Tue Sep 15 15:47:06 2020 -0400 - - updating docstring comments on test_auth.py to be more clear on logout tests - -commit 6169aaba408dda1a9942d5516e9bc16b07b3807c -Author: Carlton Smith -Date: Tue Sep 15 15:14:17 2020 -0400 - - add test for email link and button - -commit 88aec966cc70cc50ae5c8104dea262156ba0707a -Author: Carlton Smith -Date: Tue Sep 15 14:20:26 2020 -0400 - - added tests to cover different sections of the page - -commit 39a7ba2957e8535e1399ba819df164693be16fd0 -Merge: 20f0b25e7 18ee0d2bc -Author: Spencer Hilvitz -Date: Tue Sep 15 09:45:39 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into spot-check-remediations - -commit 20f0b25e7f02d30688ceb8bf9cd3435a5ebee640 -Author: Spencer Hilvitz -Date: Tue Sep 15 09:45:28 2020 -0700 - - update comment on splashpage to include issue # - -commit 1e37c6f96afed77eaa9f571c9999554d47e0a870 -Author: raftergit -Date: Tue Sep 15 12:34:24 2020 -0400 - - expanding test coverage of logout/oidc endpoint - -commit d1a72fc99e9d7369e081a6986f7cdc67f4caf045 -Author: raftergit -Date: Tue Sep 15 10:45:51 2020 -0400 - - resolving linting warnings - -commit ee4cb67729e7fabdb7c7cba5d73188944bd43171 -Author: raftergit -Date: Tue Sep 15 09:53:06 2020 -0400 - - Remediations in response to the Sprint 3 PR review - - - adding more test cases to the set_profile endpoint test suite - - - made the logic around creating a user session in login.py DRYer - -commit 18ee0d2bc686f5c436b536cfefe46ca692d92f07 -Author: Shubhi Mishra -Date: Mon Sep 14 21:56:10 2020 -0400 - - Update issue templates - - Updated the template based on @221 - -commit 36888f5d972cd00d93bf4ebd0a5381d58d29ac9d -Author: Spencer Hilvitz -Date: Mon Sep 14 16:16:12 2020 -0700 - - update comment on splashplage, update editprofile scss - -commit 0a3b22ddfcba8579b212392bbb66f377b8864121 -Author: Spencer Hilvitz -Date: Mon Sep 14 15:40:28 2020 -0700 - - change margin-bottom-6 to margin-bottom-5 in splashpage.jsx - -commit ffacf1332314b7c132c8a6d38c46b7bba7b8f59c -Author: Spencer Hilvitz -Date: Mon Sep 14 15:36:32 2020 -0700 - - add splashpage.scss comment re: double classes - -commit 9168ca237a8c2e18603fc3922958aa4a8a7e32e5 -Merge: 247388c12 2475aa0aa -Author: Spencer Hilvitz -Date: Mon Sep 14 15:34:19 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into spot-check-remediations - -commit 247388c124b94ffa05c055c7d3aea5b0a56d879f -Author: Spencer Hilvitz -Date: Mon Sep 14 15:34:02 2020 -0700 - - fix grid layout for resource cards, add correct colors, add correct fonts, change email to email link, update styling - -commit d4513ebfa68e985a6f8cb36c2b01b768b56a86c2 -Author: Spencer Hilvitz -Date: Mon Sep 14 11:40:39 2020 -0700 - - change p email in resources section to link - -commit 2475aa0aa1d628be52c30d4184bbe0600fcd8e46 -Merge: 88076ee08 398758642 -Author: Shubhi Mishra -Date: Sun Sep 13 21:17:12 2020 -0400 - - Merge pull request #268 from raft-tech/snyk-reporting - - securtiy vulnerability reports for sprint 3 - -commit 3987586427624b9e2f958a884ce162e595d2efcf -Author: raftergit -Date: Sun Sep 13 21:08:29 2020 -0400 - - securtiy vulnerability reports for sprint 3 - -commit 88076ee08578f34994a8e3ccef73e20945371c27 -Merge: ca4e96cbb d8fde9bdd -Author: Shubhi Mishra -Date: Sun Sep 13 20:29:46 2020 -0400 - - Merge pull request #267 from raft-tech/raft-main-checks - - Updates to badge hyperlinks and README.md grammar - -commit d8fde9bddff86ecf18645844f78cefbcbf8a07b1 -Author: raftergit -Date: Sun Sep 13 19:29:40 2020 -0400 - - spot check updates - -commit 521b12271938bbe4944514ccd47fcdf48a387328 -Author: raftergit -Date: Sun Sep 13 09:56:52 2020 -0400 - - updates to badge hyperlinks - -commit 490f944ca0a28f1dea1a7bc58e48c0adc15e05ca -Author: Spencer Hilvitz -Date: Fri Sep 11 13:42:47 2020 -0700 - - add classnames to secondary links and update corresponding tests in header.test.js - -commit ce977b99da75d11f3664456204b65a1043f54809 -Author: Spencer Hilvitz -Date: Fri Sep 11 13:14:13 2020 -0700 - - switch to using link component from trussworks - -commit 5fa6891c308ebeab7459cf055be9dd37c084de07 -Author: Spencer Hilvitz -Date: Fri Sep 11 13:06:35 2020 -0700 - - change secondary nav from buttons to links - -commit e0e7ed40059ac8953ae6eb7c10468ea38d87c173 -Merge: 4063cba11 ca4e96cbb -Author: Spencer Hilvitz -Date: Fri Sep 11 12:35:22 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into spot-check-remediations - -commit 4063cba11ff21a86778cb8678fc82889ad442242 -Author: Spencer Hilvitz -Date: Fri Sep 11 12:34:35 2020 -0700 - - change Header secondarynavlinks - -commit ca4e96cbb4abfd3d4711a60fd385ad274214c79a -Merge: fe1119239 1ba263b65 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 11 15:12:42 2020 -0400 - - Merge pull request #261 from raft-tech/documentation/sprint3-updates - - update docs - -commit 860b1ef84c64ada7ab8e42876c97907ce4de8599 -Author: Spencer Hilvitz -Date: Fri Sep 11 12:04:47 2020 -0700 - - switch utility grids with component grid in footer.jsx - -commit 1ba263b65e7bf14064f8b2057e65474b4bab9ff2 -Author: Carlton Smith -Date: Fri Sep 11 14:58:12 2020 -0400 - - update docs - -commit cc93052737827cbf797be7bff159445e9997d64f -Author: Spencer Hilvitz -Date: Fri Sep 11 11:20:20 2020 -0700 - - move skip to main content from header to app above gov banner - - i could fix this by adding a tabIndex to the skipnav but that creates another accessibility warning - -commit ecf310fdf1918f9c898b3dc29477736349ca7164 -Author: Spencer Hilvitz -Date: Fri Sep 11 11:13:10 2020 -0700 - - use shadow-2 utility in splashpage, update skip to main content with tabIndex - -commit fe1119239c20d89527cf49b7885b1ab068475b75 -Merge: 666c19516 8b2def642 -Author: Carl Smith -Date: Fri Sep 11 12:13:08 2020 -0400 - - Merge pull request #260 from raft-tech/RafterGit-patch-1 - - Update config.yml - -commit 8b2def642040496c111f3031d2d6d987a58ea311 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 11 12:05:45 2020 -0400 - - Update config.yml - -commit 666c19516e9d41832b2f73b04f8dc48c521a85ab -Merge: 2a9bc73a9 b026634a9 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 11 12:02:34 2020 -0400 - - Merge pull request #256 from raft-tech/191-user-form - - 191 user form - -commit b026634a9b2f31ce318caadc5951187dd8f44c06 -Merge: f184dca4c 2a9bc73a9 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 11 10:41:42 2020 -0400 - - Merge branch 'raft-tdp-main' into 191-user-form - -commit 2a9bc73a9be5156904deb6a3a3eb8016f46916af -Merge: 8ba78fca7 6cae67bab -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 11 10:23:00 2020 -0400 - - Merge pull request #251 from raft-tech/187-markdown-badges - - 187 markdown badges - -commit 6cae67bab94ca598442b28eae7d1fd4c5e4e15d9 -Author: raftergit -Date: Fri Sep 11 10:15:20 2020 -0400 - - updating code coverage badges to report from HHS codecov.io - -commit 87d0d597662ab6a3f059294e11a16249a80155f9 -Merge: 3b5f6b512 034e20abb -Author: raftergit -Date: Fri Sep 11 10:00:20 2020 -0400 - - Merge branch '187-markdown-badges' of https://github.com/raft-tech/TANF-app into 187-markdown-badges - -commit 3b5f6b51286f4fc0e73f77e7a08906b9365b114b -Author: raftergit -Date: Fri Sep 11 10:00:12 2020 -0400 - - adding documentation for github badges to tdrs-backend/docs - -commit 034e20abb61cd1179c7a9bbfd4830bdd186608dd -Merge: 3735ac6f0 8ba78fca7 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Sep 11 07:13:31 2020 -0400 - - Merge branch 'raft-tdp-main' into 187-markdown-badges - -commit f184dca4c5017f2ca7833ef8f9f498dad2d40b3d -Merge: 5d49de522 8ba78fca7 -Author: Spencer Hilvitz -Date: Thu Sep 10 19:06:16 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 191-user-form - -commit 8ba78fca749512930717c3b36545728ca7dbb693 -Merge: b1d4156aa 2267ba5f4 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Sep 10 21:36:18 2020 -0400 - - Merge pull request #257 from raft-tech/documentation-updates - - Documentation updates - -commit 2267ba5f4c8f4da72b90fc96d81b3f56a8fc8737 -Author: Spencer Hilvitz -Date: Thu Sep 10 18:20:07 2020 -0700 - - update tdrs-frontend/README.md option 3 - -commit 3735ac6f0274f07fef0b2945d7a0f32951cc9721 -Author: raftergit -Date: Thu Sep 10 21:08:10 2020 -0400 - - restoring default behavior - -commit 5d49de52245b98cd40cd59b36a7c57276ce6ee10 -Author: Spencer Hilvitz -Date: Thu Sep 10 18:05:27 2020 -0700 - - change welcome to splashpage, change signup to editprofile, add email to header, change login redirect to /edit-profile - -commit b3e6222ae1f165a7a6590a1ef174b11d6b4abbe3 -Author: raftergit -Date: Thu Sep 10 20:45:26 2020 -0400 - - trying out new tag formatting for shields.io - -commit 3d148d165a0ef23e01790959d157adaf3448ca49 -Author: raftergit -Date: Thu Sep 10 19:36:53 2020 -0400 - - adjusting length of logging statement - -commit 131ebd40b2e7beb344955f04394fce1618abeb98 -Author: raftergit -Date: Thu Sep 10 19:32:10 2020 -0400 - - updates in regards to linter correction tool - -commit 7eee85e681d4ab0298b719f3205d047459d85bdc -Author: raftergit -Date: Thu Sep 10 19:31:07 2020 -0400 - - updates to documentation and logging of API calls - -commit c335364b28e277e1e4035f052628a1832bbdb41d -Author: Spencer Hilvitz -Date: Thu Sep 10 16:03:17 2020 -0700 - - remove unnecessary class name - -commit cd6454a4e4ae11125e626dc8210688b165cfe5f4 -Merge: 3bdad648d b1d4156aa -Author: Spencer Hilvitz -Date: Thu Sep 10 15:34:57 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 191-user-form - -commit 3bdad648de7828a30b5618b9a4bea64f18b0b23e -Author: Spencer Hilvitz -Date: Thu Sep 10 15:05:55 2020 -0700 - - add jsdocs info to header, footer, and signup components - -commit b1d4156aa9c6544cd504a9b9589796a830be263a -Merge: 9a45258ca 379c16428 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Sep 10 17:57:09 2020 -0400 - - Merge pull request #255 from raft-tech/frontend/sprint3/accessibility-check - - Accessibility and Footer Changes - -commit 379c1642896850f09893778c7e7480c6f2a0a50a -Author: Carlton Smith -Date: Thu Sep 10 17:31:40 2020 -0400 - - remove padding - -commit efe9cda9e006dfd89de4e9591655e7914bc687f0 -Author: Carlton Smith -Date: Thu Sep 10 17:30:20 2020 -0400 - - remove tota11y - -commit ab8fccd0985256e0871e2cdb9eb6a6dda1ceacf4 -Author: Spencer Hilvitz -Date: Thu Sep 10 14:08:02 2020 -0700 - - fix signup test - -commit 17461385d2c2bf9b5e00c21ed85c76bb4cb7f4ce -Author: Spencer Hilvitz -Date: Thu Sep 10 13:58:31 2020 -0700 - - remove card and fieldset from signup.jsx - -commit 278e0590a7f32c54eabbb07381dcfa37b9dcd5d2 -Author: Carlton Smith -Date: Thu Sep 10 16:37:49 2020 -0400 - - use placeholder - -commit ff47de78ce2c9f3fee0cc47d5b1703756803c932 -Author: Spencer Hilvitz -Date: Thu Sep 10 12:48:16 2020 -0700 - - fix accessibility issues - no h1 (added h1) and no fieldset legend (added legend) - -commit 7e555dd95c2fbcd689e1628e557e4b17613371cc -Merge: da06d93c9 9a45258ca -Author: Spencer Hilvitz -Date: Thu Sep 10 12:19:29 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 191-user-form - -commit 42e01ce4efc5cf815ff8fadfb74f21ae10c6804c -Author: Carlton Smith -Date: Thu Sep 10 15:10:27 2020 -0400 - - add tota11y for accessibility, make main-content section global for accessibility, fix footer pushing up on page (noted issue in uswds) - -commit da06d93c9ca409844daf9aedcbe75f31d21f27dd -Author: Spencer Hilvitz -Date: Thu Sep 10 11:37:59 2020 -0700 - - fix header tests, add signup tests and refactor signup to remove mocksubmit - - the submit functionality is not included in this ticket - -commit 5e153c683d12b2d1b2536d8ec9e8cb5a3aaa6f36 -Author: Spencer Hilvitz -Date: Thu Sep 10 11:01:54 2020 -0700 - - add signup component and test file, change welcome.jsx jsdocs, change footer component, add signup route - -commit 5dba5ce87fdf8f710aea07c0537426e24193a16f -Author: raftergit -Date: Thu Sep 10 12:09:45 2020 -0400 - - changing branch check for dev back to raft-tdp-main - -commit 69dcda8142ad55dede86c6a42f64c5ef8119ba8c -Author: raftergit -Date: Thu Sep 10 11:53:31 2020 -0400 - - removing redundant unit test case from django job - -commit ab366ba90d1d44ee1d0066249f130fed7f02fb18 -Author: raftergit -Date: Thu Sep 10 11:44:59 2020 -0400 - - resolving ci/cd pipeline issues with docker-compose spin up process - -commit 7ded1f1b7d138be36b78a6281bc362340daa9ca5 -Author: raftergit -Date: Thu Sep 10 11:42:09 2020 -0400 - - testing full build process with new code coverage reporting logic - -commit 9ea79f18fab7e440f17e5cab767562db18141132 -Author: raftergit -Date: Thu Sep 10 11:24:50 2020 -0400 - - testin docker clean up logic and full backend test suite - -commit fabf0dca39c4e846c84d4a698a8cc3ec629b14ec -Author: raftergit -Date: Thu Sep 10 04:26:55 2020 -0400 - - adding a volume field to the tdrs-backend docker-compose.yml so the coverage.xml can be copied to the working directory - -commit e2dab6ea90ccacc2e0c3f1ecdac0147bfcf4296b -Author: raftergit -Date: Thu Sep 10 04:07:37 2020 -0400 - - testing logic to block coverage upload if not on target branch - -commit a2110218a6d7c321692f7a4e4a1a3dd524ce7438 -Author: raftergit -Date: Thu Sep 10 03:55:23 2020 -0400 - - adding targeted repo options to the circleci build status badges - -commit 2c7a67204b0d32de51f66b1c09cc85d4fd2c82e4 -Author: raftergit -Date: Thu Sep 10 03:38:35 2020 -0400 - - Adding Markdown Status Badges - - This branch updates the root directory README.md to include status - badeges for raft-tech/TANF-app/raft-tdp-main and HHS/TANF-app/main. - - 1) The Build status badges are derived from the current state of the - circleci CI/CD piplines of the following - - Dev: - - raft-tech/TANF-app/raft-tdp-main - - HHS: - - HHS/TANF-app/main - - 2.) The updates should only trigger on these branches in their - respective repos - - 3.) The vulnerability badges depend on Snyk.io and may have a delay - on occasion while pinging the Snyk.io servers for an update. - -commit 9a45258ca427f619b04038d79a82ad81481f1134 -Merge: a52d59996 f88c338e7 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 20:53:24 2020 -0400 - - Merge pull request #250 from raft-tech/deployment-remediations - - Deployment Remeditions - -commit f88c338e7cb6c6d9977c5dbc03d7f90607efcc78 -Author: raftergit -Date: Wed Sep 9 20:31:14 2020 -0400 - - updating README.md with more details of cloud foundry cli output - -commit 84b2d0cf81865cfc25a2417f3371232a00989f82 -Author: raftergit -Date: Wed Sep 9 19:44:33 2020 -0400 - - Technical Debt Resolution - - 1.) Resolving Snyk High Severity vulnerability by upgrading - django from version 3.1 to 3.1.1 - - 2.) Updating README.md documentation of frontend and backend - to be clear to new users - - 3.) Resolving styling issues with Footer.js in the frontend when deployed to - cloud.gov - -commit a52d5999684e18ff813279a47c519126a533c10b -Merge: dd12bb254 e3edbdb4a -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 17:21:00 2020 -0400 - - Merge pull request #246 from raft-tech/fix-readme - - Updates to Pa11y Config and Frontend/Backend README.md - -commit e3edbdb4ae07dca8811f9b430509582af71311fd -Merge: dcdb49375 dd12bb254 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 17:09:49 2020 -0400 - - Merge branch 'raft-tdp-main' into fix-readme - -commit dd12bb25437cb540720bef3181231b22e5c24ca0 -Merge: 5aad172a1 b2cd78869 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 17:09:30 2020 -0400 - - Merge pull request #247 from raft-tech/name-profile-api-endpoint - - First Name And Last Name User set_profile Update API Endpoint - -commit dcdb493757251ce5f4e0023d44308e6a2857edfd -Merge: 6687c931a 5aad172a1 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 17:04:22 2020 -0400 - - Merge branch 'raft-tdp-main' into fix-readme - -commit b2cd78869518a113a58de400bafb8734a2be313a -Author: raftergit -Date: Wed Sep 9 16:59:16 2020 -0400 - - updating the comment in serializers.py to reflect the behavior shown - -commit 05ddd8975348370d3a6a7d5e852b18a89dcbc6da -Merge: c73b289f0 5aad172a1 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 16:51:24 2020 -0400 - - Merge branch 'raft-tdp-main' into name-profile-api-endpoint - -commit 5aad172a1a3ed27892f6bce242d24f7ccf878ded -Merge: 23d97b318 a683746ca -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 16:45:11 2020 -0400 - - Merge pull request #236 from raft-tech/backend/209/login-testing - - Backend/209/login testing - -commit a683746ca042e76d614909f791255fec2c4d95ea -Merge: a753b554f 23d97b318 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 16:38:04 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/209/login-testing - -commit 23d97b3187c8946f51dedb8abccd2deef7d84b06 -Merge: 166968bbf 355af37b9 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 16:36:19 2020 -0400 - - Merge pull request #201 from raft-tech/172-landing-pages - - 172 Landing Pages - -commit c73b289f0ea6e1520a3d4225748df3a73aaa1456 -Author: raftergit -Date: Wed Sep 9 16:35:34 2020 -0400 - - updating comments in test_api.py to be more detailed - -commit d3f63119c4e84b98b004a8fd4a32104e06901fa9 -Author: raftergit -Date: Wed Sep 9 16:21:50 2020 -0400 - - removing un-needed PUT and PATCH call support from set_profile endpoint - -commit 3facefefc510d0889a52f9e38f242b37383b36d1 -Author: raftergit -Date: Wed Sep 9 16:09:41 2020 -0400 - - additional testing for special characters - -commit 355af37b9f4f3077b3b703095c55ddfec53d121c -Author: Spencer Hilvitz -Date: Wed Sep 9 12:59:32 2020 -0700 - - remove unnecessary footer.scss import - -commit ff8b9f28b0b5e098f803eed8b004a5bc3f96418f -Author: Spencer Hilvitz -Date: Wed Sep 9 12:55:29 2020 -0700 - - remove unused footer.scss, remove unnecessary p tag, remove header.scss - -commit 0e7bbef979eede55b5122abe3ad7acc20d56f97a -Author: raftergit -Date: Wed Sep 9 15:39:40 2020 -0400 - - removing logic to skip a if JWT_KEY not found in test_auth.py - -commit 25e237e533caf7e6cecd08f0874fdd1d26f7e271 -Author: raftergit -Date: Wed Sep 9 15:21:35 2020 -0400 - - updating spaced name test - -commit fc6c47f6b0caa3f9aa2586c0b4f7088da5ba3680 -Author: raftergit -Date: Wed Sep 9 15:18:01 2020 -0400 - - resolve linting warning - -commit a753b554fbfc3c11903ce36fc17172c37b03e4ef -Author: Carlton Smith -Date: Wed Sep 9 15:08:14 2020 -0400 - - update notes - -commit 0353332c442ddd2a766f22d594f846192de37e17 -Merge: bf59d441a 077cb6cda -Author: Carlton Smith -Date: Wed Sep 9 15:06:04 2020 -0400 - - Merge branch 'backend/209/login-testing' of github.com:raft-tech/TANF-app into backend/209/login-testing - updates for circleci - -commit bf59d441a730de67dc7a2a96f615ae4eabede805 -Author: Carlton Smith -Date: Wed Sep 9 15:05:36 2020 -0400 - - gitignore update and env comment - -commit 1d42d9163bb0965714d4ab7ee711b5adb35b1be2 -Author: raftergit -Date: Wed Sep 9 14:54:54 2020 -0400 - - adding additional test conditions for name variations - -commit fd09447b0a22e23e4aa4e0473ea9ba9fd0573de7 -Author: Spencer Hilvitz -Date: Wed Sep 9 11:10:24 2020 -0700 - - fix welcome tests and change welcome component name - -commit 0be51ae5f428f191a85354661e75b36030aaf3c1 -Merge: 076005f04 166968bbf -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 13:16:10 2020 -0400 - - Merge branch 'raft-tdp-main' into 172-landing-pages - -commit 6687c931a73f7905f4a73465c576f20cd5c6b012 -Merge: 1d11aab44 166968bbf -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 13:14:32 2020 -0400 - - Merge branch 'raft-tdp-main' into fix-readme - -commit 78775e8da7dd851ab1074a25a0409386817decad -Merge: 05b06aa71 166968bbf -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 13:12:41 2020 -0400 - - Merge branch 'raft-tdp-main' into name-profile-api-endpoint - -commit 077cb6cda74a31f667e9cafc5ff43f09aa46bc18 -Merge: e4c374c63 166968bbf -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 13:12:20 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/209/login-testing - -commit 166968bbf182fc793115f21c354f7ec3b6a20821 -Merge: eb2f5b13c 85ec90738 -Author: Spencer Hilvitz -Date: Wed Sep 9 10:10:53 2020 -0700 - - Merge pull request #249 from raft-tech/snyk-vulnerability-updates - - Removing snyk from circleci in support of using Snyk Github Integration - -commit 85ec907381bea1a50b0294103cab891f3b0da574 -Merge: 6d4be3114 eb2f5b13c -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Sep 9 12:52:12 2020 -0400 - - Merge branch 'raft-tdp-main' into snyk-vulnerability-updates - -commit 6d4be3114e4f45c92fee31c4b372134ad027a9ce -Author: raftergit -Date: Wed Sep 9 12:44:36 2020 -0400 - - updating test for spin up process to be a background process - -commit 076005f0467a8d3ea4938bde2cfc18a23441cc0d -Author: Spencer Hilvitz -Date: Wed Sep 9 09:43:05 2020 -0700 - - add usa-current check for welcome link - -commit cdcc417c5d264dda3b4b2b7c4d6d4fca346d8688 -Author: raftergit -Date: Wed Sep 9 12:41:43 2020 -0400 - - updating test for spin up process - -commit 4a0fd332fabe8c6a7faaad296d0a101ce19ee243 -Author: raftergit -Date: Wed Sep 9 12:37:35 2020 -0400 - - updating test for spin up process - -commit b811a192954c52547b78dd2ff4e8a53542055fe8 -Author: raftergit -Date: Wed Sep 9 12:33:11 2020 -0400 - - removing snyk from circleci in support of using Snyk Github Integration - -commit f2d7d049f1d756d48f06297fb7eb029b960de32d -Author: Spencer Hilvitz -Date: Wed Sep 9 09:14:34 2020 -0700 - - add visually-hidden span to Welcome login button - -commit e4c374c6358f30f88527192614fca08de6ab4274 -Author: Carlton Smith -Date: Wed Sep 9 09:05:54 2020 -0400 - - remove unneeded loggin, remove unneeded key, fix typo - -commit bcfe128008eb22c34f286222bdb732fa2245bc4b -Author: Carlton Smith -Date: Wed Sep 9 08:42:53 2020 -0400 - - reduce complexity of get method - -commit 9eb30beb03458a74d6eb9c182c84e8f2bd7ac07d -Author: Carlton Smith -Date: Wed Sep 9 08:19:35 2020 -0400 - - add test for expired token - -commit 25142a074e32682d32fd440c02bddf0856ce153b -Author: Spencer Hilvitz -Date: Tue Sep 8 22:36:26 2020 -0700 - - fix failing test in Footer.test.js - -commit 484a10c506fb7d455f0cbe2e48a2ce6ccb213fd9 -Author: Spencer Hilvitz -Date: Tue Sep 8 22:29:25 2020 -0700 - - add utility classes in welcome.jsx, add footer.scss, add sociallinks to Footer.jsx - -commit 57d2d3bc1281f5328ab567bcd20f02c56eb784d9 -Author: Spencer Hilvitz -Date: Tue Sep 8 18:37:55 2020 -0700 - - fix spelling mistake in .env.development, remove unnecessary stock image, rename logo, add TDP logo, rename variables - -commit 05b06aa71f28cf2d74c7fe4d14e1a6228dceb21f -Author: raftergit -Date: Tue Sep 8 21:14:51 2020 -0400 - - resolving linting after updates to common.py update - -commit d302d42d726c86f56e08db402d6ced6783e29a2f -Author: Carlton Smith -Date: Tue Sep 8 18:09:03 2020 -0400 - - fix linting - -commit 68129d999d14c1102f69a009dc08a9d6a33c76a0 -Author: Carlton Smith -Date: Tue Sep 8 17:52:02 2020 -0400 - - use test key - -commit cf4f6eeec9c23f064fb3b21f314f388a7b96d1e8 -Author: Carlton Smith -Date: Tue Sep 8 17:30:30 2020 -0400 - - remove httpbin - -commit ad5e071465e18fbcbf8f9e6a028df6e63636be98 -Author: Carlton Smith -Date: Tue Sep 8 16:35:15 2020 -0400 - - add test for expired token - -commit 187d86f09467686f5fe69cab6cba5add1abc5f0f -Author: Spencer Hilvitz -Date: Tue Sep 8 13:26:16 2020 -0700 - - update @trussworks/react-uswds from 1.8.0 to 1.9.0 per snyk instructions - -commit 48ba275bdc0687e084cc693c3198c3afe34dee0c -Author: Carlton Smith -Date: Tue Sep 8 15:29:46 2020 -0400 - - remove httponly - -commit bdabcdcad4964bb42057c5f4781d49c205b619f2 -Author: Spencer Hilvitz -Date: Tue Sep 8 12:07:48 2020 -0700 - - fix cypress test - -commit fc1576ecde337664a4d429e59f59e23aed294056 -Author: Spencer Hilvitz -Date: Tue Sep 8 11:41:47 2020 -0700 - - add tests for header - -commit 0a636e07485f007c5042efe4805f24c55f23e32b -Author: raftergit -Date: Tue Sep 8 14:36:56 2020 -0400 - - updating comment on CSRFToken in common.py - -commit 7b08e8642c6477fd3625bba70077e2cafc47001a -Author: raftergit -Date: Tue Sep 8 14:08:59 2020 -0400 - - Turn off CSRFToken HttpOnly Cookie - - The CSRF token Cookie holds no security benefits when confined to HttpOnly. - Setting this to false to allow the frontend to include it as a header - in API POST calls to prevent false negative authorization errors. - - Django Documentation : - https://docs.djangoproject.com/en/2.2/ref/settings/#csrf-cookie-httponly - -commit 1d11aab4467c155a3bb40a9da6ded2c1935dd340 -Author: raftergit -Date: Tue Sep 8 13:33:31 2020 -0400 - - Updates to Pa11y Config and Frontend/Backend README.md - - 1.) Configuring a more verbose pa11y configuration file for - better automated accessibility testing - - 2.) Updating the README.md files found in tdrs-frontend and - tdrs-backend to be more descriptive and easier to follow. - - 2.) - -commit 19cfa6abb103bc07df74595568763d365034fe94 -Author: Spencer Hilvitz -Date: Tue Sep 8 09:55:06 2020 -0700 - - add footer test, update pa11yci.json, update header.jsx, update welc.ome.test.js - -commit 744d46a15796e8cb014bfc1ea907b6430af2a5e3 -Author: raftergit -Date: Tue Sep 8 12:29:52 2020 -0400 - - resolve linting warning - -commit a1e41a0014747d085b72bb041d05b624515244df -Author: raftergit -Date: Tue Sep 8 12:28:39 2020 -0400 - - adding unit testing for new set_profile endpoint - -commit 68a96c0fa71d338e96f8cab1b4fb61545d04b666 -Author: raftergit -Date: Tue Sep 8 11:59:46 2020 -0400 - - Adding `/set_profile/` API End Point - - This endpoint leverages the httpOnly cookie session - to validate the currently logged in user and permits - them to update the First Name and Last Name of their - profile as defined in this request body: - - { - "first_name": "John", - "last_name": "Smith" - } - - This will also update the auth_chack endpoint to include the users - first name and last name: - - { - "authenticated": true, - "user": { - "email": "jsmith@test.com", - "first_name: "John", - "last_name": "Smith" - } - } - -commit 4b2665e536631767cc53744cc1a268c44f9debdc -Author: Spencer Hilvitz -Date: Sun Sep 6 15:40:23 2020 -0700 - - fix all linter errors - -commit b55863a94d4bff9231308c84dd7c6bf218fa2aae -Author: Spencer Hilvitz -Date: Sun Sep 6 15:34:52 2020 -0700 - - fix linter errors, add alt tag, add grid element - -commit 71faed298c15e26c0b1bcfb5f85a568efa2e3001 -Author: Spencer Hilvitz -Date: Fri Sep 4 14:01:17 2020 -0700 - - switch welcome.jsx with dashboard.jsx - - did welcome work in dashboard and needed to switch it back - -commit 5536ec75902d69b5844569edd6d939d68cded11d -Author: Carlton Smith -Date: Fri Sep 4 16:20:37 2020 -0400 - - http only cookie test - -commit 15d225a26851fc3b0c7c545179663a302a7081e7 -Author: Spencer Hilvitz -Date: Fri Sep 4 13:19:28 2020 -0700 - - add footer test - -commit 9deb34db4e256885da110f4e16da31859988f78e -Merge: 994ba2ac2 eb2f5b13c -Author: Spencer Hilvitz -Date: Fri Sep 4 13:10:04 2020 -0700 - - Merge branch 'raft-tdp-main' of github.com:raft-tech/TANF-app into 172-landing-pages - -commit 994ba2ac2e7386826d5e9b592a9298dc992a436e -Author: Spencer Hilvitz -Date: Fri Sep 4 13:09:23 2020 -0700 - - basic layout done - - some cleanup is needed for paddings and removal of inline styles - -commit 2e25879b1d8ce62bb096a279bd5b413fed9fde77 -Author: Spencer Hilvitz -Date: Fri Sep 4 12:59:49 2020 -0700 - - basic layout done (without comments) - -commit e570c656b7a0e1952b55ba1bf908c3921006c74f -Author: Spencer Hilvitz -Date: Fri Sep 4 12:56:12 2020 -0700 - - basic layout done (with commented out code) - -commit e6b964bfb544b28d293c021d3298d966fd3ca56a -Merge: 1e5105c40 e7f3a9d94 -Author: Spencer Hilvitz -Date: Fri Sep 4 11:53:12 2020 -0700 - - Merge branch '172-landing-pages' of github.com:raft-tech/TANF-app into 172-landing-pages - -commit e7f3a9d94aff2d8bc0314e7b08c9c93e2c72ea5b -Author: Adam Caron -Date: Fri Sep 4 13:59:19 2020 -0400 - - Document the SASS_PATH variable being set on yarn run v1.22.4 - info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. - -commit d7f4839c60a2f19035dbe45037db66807f418328 -Author: Adam Caron -Date: Fri Sep 4 13:55:23 2020 -0400 - - Remove duplicate snyk test - - Since it runs later in the workflow already - -commit fa89a17cde482e1344c4c29119034faf4c80056c -Author: Carlton Smith -Date: Fri Sep 4 13:54:22 2020 -0400 - - linting fixes - -commit 03e7d79a855c56fdb7426fcffb1020c699a008a1 -Author: Adam Caron -Date: Fri Sep 4 12:18:29 2020 -0400 - - Set SASS_PATH before yarn build - - Previously SASS_PATH was set in .env.development - and was available to the 'localdev' Dockerfile stage. - However environment variables do not persist across - build stages, and SASS_PATH wasn't available to - the 'build' Dockerfile stage, causing an error - during `yarn build`. The variable has now been - added to the `yarn build` script so it works - both when build in Docker and without Docker. - - Additionally, remove the `npm rebuild node-sass` step - since it is not necessary. - - This reverts commit: 4d1b0ea5ac0fc67f4901584178f78c626b90bac1 - -commit 1e5105c40e5e8959699f251511d61c8dc16284d9 -Author: Spencer Hilvitz -Date: Fri Sep 4 10:30:27 2020 -0700 - - Landing page template working - -commit aeef21861ac7156141e92f3f6f1a3de5e50c1055 -Author: Carlton Smith -Date: Fri Sep 4 12:46:09 2020 -0400 - - test general exception - -commit 4b7d5178ed95357282d64c7f67b0e6e31ae43948 -Author: Carlton Smith -Date: Fri Sep 4 12:39:45 2020 -0400 - - login testing - -commit 480cfc44fe766a1afe9c2bb9e6614ad34a13e968 -Author: Adam Caron -Date: Fri Sep 4 12:18:29 2020 -0400 - - Set SASS_PATH before yarn build - - Because SASS imports require this config. - Otherwise all imports would need to change to - relative paths, like ('../../node_modules/my_package') - - Also, remove unnecessary node-sass rebuild step - - This reverts commit: 4d1b0ea5ac0fc67f4901584178f78c626b90bac1 - - There was an issue where an error is thrown related to - node-sass not having the correct binding for the Docker container. - The rebuild change did not resolve the issue - -commit b0251e26fff2557b301e9cff51e0dc1847ce1b07 -Author: Adam Caron -Date: Thu Sep 3 18:21:50 2020 -0400 - - Add responsive Header area - -commit 2f93f2648a74e8902fa0c9602ecc5f08077045e8 -Author: Adam Caron -Date: Thu Sep 3 17:51:40 2020 -0400 - - Ignore local env file - - So local development can have whatever config it needs - without being pushed up to git - -commit 54383d2dc2d0482dc468a27c3aa826670515c3b9 -Author: Adam Caron -Date: Thu Sep 3 17:42:13 2020 -0400 - - Remove file from incorrect directory - - Supposed to be in tdrs-frontend (and is already) - -commit 4d1b0ea5ac0fc67f4901584178f78c626b90bac1 -Author: Adam Caron -Date: Thu Sep 3 14:36:12 2020 -0400 - - Resolve node-sass binding issue - - References for the behavior: - - https://github.com/sass/node-sass/issues/2162 - - https://github.com/sass/node-sass/issues/1527 - - https://github.com/sass/node-sass/issues/2165 - -commit 74a7eac1b1bcb21c693f41354314fbca9cfcbe2d -Author: Adam Caron -Date: Thu Sep 3 09:48:45 2020 -0400 - - Create a script and a CircleCI step for Snyk - - For some reason snyk was being run with the Jest unit tests. - This decouples the two, which aren't related - -commit 7935cb1ac9f0579653b1f04f04119792e3bf5821 -Author: Adam Caron -Date: Thu Sep 3 09:47:37 2020 -0400 - - Ignore auto generated file - -commit 279cdfc53eeea610e3bbc1bccffc5d67be81465a -Author: Adam Caron -Date: Thu Sep 3 09:46:04 2020 -0400 - - Auto remove trailing spaces. Noop - -commit c05d9d8e2299354f44dffd0d5dfe94e28d41b74d -Author: Adam Caron -Date: Wed Sep 2 19:29:15 2020 -0400 - - Format gitignore and Dockerfile. No functional change - -commit 06d6153eea58f78bfb39067ceea238d2c731c072 -Merge: eff4f93f3 eb2f5b13c -Author: Lauren Frohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Wed Sep 2 14:48:35 2020 -0400 - - Merge pull request #47 from raft-tech/raft-tdp-main - - SPRINT 2 RELEASE - -commit eb2f5b13c9c4b1cdf799b5f88067137cb949781c -Merge: 4bb29b9a3 65f529cf9 -Author: Laura Gerhardt -Date: Wed Sep 2 11:47:42 2020 -0400 - - Merge pull request #222 from raft-tech/circleci-deploy-value - - Updating deploy branch to load dev env vars from raft-tdp-main - -commit 65f529cf9706320f9861d46222da068710570b21 -Author: raftergit -Date: Wed Sep 2 11:22:30 2020 -0400 - - reverting to raft-tdp-main - -commit ef0193a1b47eba27218af5237973cf57c0d67549 -Author: raftergit -Date: Wed Sep 2 11:07:25 2020 -0400 - - testing deployment - -commit 79d4b1c2a1560b44ec6bd9f41eee57e3ae255866 -Author: raftergit -Date: Wed Sep 2 11:01:31 2020 -0400 - - updating deploy branch to load dev env vars from raft-tdp-main - -commit cc9f5c5f4c3f58fc75ea4c07f0f82f1e0526357a -Author: Adam Caron -Date: Tue Sep 1 12:54:56 2020 -0400 - - Configure CSS breakpoints - - To match the designs in figma. - - Use include-media to cleanly define breakpoints and reference in scss files. - - This sets up the patter going forward for all responsive implementation - (mobile first) - -commit 5641b31cfee24b54f79f90921a605910eca95794 -Author: Adam Caron -Date: Tue Sep 1 10:53:10 2020 -0400 - - Setup SCSS - - To perform imports from relative paths and node_modules. - docs: https://create-react-app.dev/docs/adding-a-sass-stylesheet - - Also, adjust the .env strategy as per the intended usage: - https://github.com/facebook/create-react-app/issues/6961#issuecomment-488365022 - - anything ending with .local must not be tracked. - - .test and .development should be tracked. - Consequently, remove the README instructions for setting up .env - since they're not necessary anymore. - -commit 444e96ed1150dd8afb41c634011a8d5f38109c14 -Author: Adam Caron -Date: Mon Aug 31 17:50:35 2020 -0400 - - Move Dockerfiles to frontend root to preserve local dev functionality - - The command in the Readme (to run app locally) mounts the src directory - making it possible for local development changes to be reflected in the - container without restarting/rebeuilding it each time. A previous change - moved the Dockerfiles into a subdirectory which broke this functionality. - - Additionally, with the Dockerfles in the subdirectory, the .dockerignore - wasn't being picked up at build time. - - Also, at build time, with the files in a subdir, the context was incorrect. - Certain commands referenced files in the same directory as the Dockerfile - and this broke when the Dockerfile changed to a sub dir - -commit ea43e5fb6deaf497ae574f4a186a0c5878557aa4 -Author: Adam Caron -Date: Mon Aug 31 15:43:06 2020 -0400 - - Specify where boilerplate docs end - -commit 24600f692dd3dd996a4b07640099823cf5ef6730 -Author: Adam Caron -Date: Mon Aug 31 14:14:11 2020 -0400 - - Untrack .env files since they must not be tracked in git. - - They currently contain no sensitive data but if that changes, - this sets things up so they're ignored. - - Any additions to .env.local or .env.test should be added to - .env.example with dummy values. - - The readme provides instructions to set up the project with these files. - -commit 4bb29b9a325500da4bf9a58c389bc63f8b25b82e -Merge: fa297f4e0 87030022e -Author: Laura Gerhardt -Date: Wed Sep 2 09:47:26 2020 -0400 - - Merge pull request #198 from raft-tech/sprint2-updates - - Sprint2 Updates - -commit 87030022e351dc17b89f32311b05bcab200e1a0e -Author: Adam Caron -Date: Tue Sep 1 18:40:42 2020 -0400 - - Document the functions and components throughout the app - -commit f3b8715e557a28ead2287299fdc5a8ad2a1ce025 -Author: Adam Caron -Date: Tue Sep 1 17:57:08 2020 -0400 - - Add jsdoc to the project - -commit c07f2392eb7ec87d26007554aa76009357026652 -Author: Adam Caron -Date: Tue Sep 1 17:53:16 2020 -0400 - - Rename Private to PrivateRoute - - To be more descriptive. - -commit ee47bbd36530937375715f99c1279b81ddc8d902 -Author: raftergit -Date: Tue Sep 1 17:26:53 2020 -0400 - - updating css in Welcome.scss - -commit 6eb524bd76bf6c4e2c81d9bb14097a15037d72fb -Author: raftergit -Date: Tue Sep 1 17:11:32 2020 -0400 - - updating snyk comments - -commit a2ef189c0d69568e6020e17174df08d0513bb3f4 -Merge: f5f763280 7802ed08f -Author: raftergit -Date: Tue Sep 1 17:01:37 2020 -0400 - - Merge branch 'sprint2-updates' of https://github.com/raft-tech/TANF-app into sprint2-updates - -commit f5f763280e190d9cd1231db8cecbfedd888ac856 -Author: raftergit -Date: Tue Sep 1 17:01:32 2020 -0400 - - updating documentation - -commit 7802ed08f6a94e395916cdd367a592317acba7f9 -Author: raftergit -Date: Tue Sep 1 16:45:57 2020 -0400 - - resolving linting errors - -commit 1dc67f58709035e41172e62a4cb831891a3b0757 -Author: raftergit -Date: Tue Sep 1 16:41:25 2020 -0400 - - extracting hardcoded cert from test_auth.py - -commit 442cc5b53730fc7b73609691d879dd79acc281af -Author: raftergit -Date: Tue Sep 1 16:37:09 2020 -0400 - - extracting hardcoded cert from test_auth.py - -commit d8f77860d6df19db2e155791de90926fc6dfa32c -Author: raftergit -Date: Tue Sep 1 16:06:28 2020 -0400 - - updating README.md to note Pipefile in snyk issue/ removing localhost references in common.py - -commit aa928954a8b97adee0227b06260ca8e72f3dbafc -Author: Carlton Smith -Date: Tue Sep 1 15:29:58 2020 -0400 - - adding tests - -commit ffc7feb064ad5ee05adf9cd23baa8221e1f55a47 -Merge: f276b578f 902eef830 -Author: Carlton Smith -Date: Tue Sep 1 15:26:08 2020 -0400 - - Merge branch 'sprint2-updates' of github.com:raft-tech/TANF-app into sprint2-updates - -commit f276b578f853cb0a5b0824a588a1d6979de1ec45 -Author: Carlton Smith -Date: Tue Sep 1 15:25:39 2020 -0400 - - add tests for unauth user - -commit 902eef8303eadbc14ca3b688edf44576bf4c1c17 -Merge: 682b77bc7 fa297f4e0 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Tue Sep 1 14:39:20 2020 -0400 - - Merge branch 'raft-tdp-main' into sprint2-updates - -commit e19f7698656e2f0f8a2270e541b5a9ff80476018 -Author: Carlton Smith -Date: Tue Sep 1 13:31:57 2020 -0400 - - test unauthorized - -commit fa297f4e0acc15186eda2c4d94d7f9f26d25d5e6 -Merge: b99e884fc 8ca3d327c -Author: Carl Smith -Date: Tue Sep 1 12:52:40 2020 -0400 - - Merge pull request #206 from raft-tech/raft-resolve-conflicts - - Resolving merge conflicts between main and raft-tdp-main - -commit 8ca3d327cb79b68d442de7f397dcb1ae2838063b -Author: raftergit -Date: Tue Sep 1 12:33:02 2020 -0400 - - tracking new frontend vulnerability published by snyk on 09/01/2020 - -commit 4cf62b4609505661751c81f999a5af341ceb2cb0 -Merge: 98854c692 9f8215aee -Author: raftergit -Date: Tue Sep 1 12:24:22 2020 -0400 - - Merge branch 'raft-resolve-conflicts' of https://github.com/raft-tech/TANF-app into raft-resolve-conflicts - -commit 98854c692c23392fea26a011c88bdf5224503ef0 -Author: raftergit -Date: Tue Sep 1 12:24:10 2020 -0400 - - tracking new frontend vulnerability published by snyk on 09/01/2020 - -commit 682b77bc70b6c746a08c46f0013bba1b46d58482 -Author: Carlton Smith -Date: Tue Sep 1 11:30:45 2020 -0400 - - move cert to environ - -commit 9f8215aeefbd154596178068576ca6534e4c2384 -Author: raftergit -Date: Tue Sep 1 11:26:32 2020 -0400 - - resolving merge conflicts with main - -commit 3d014c5d2fa22870df2ed61dbb07560848d1450b -Author: raftergit -Date: Tue Sep 1 11:26:11 2020 -0400 - - resolving merge conflicts with main - -commit 468e3f07bd2a6610b861de5aede2b9902227ea2f -Author: raftergit -Date: Tue Sep 1 11:25:56 2020 -0400 - - resolving merge conflicts with main - -commit 3e7d4e4a82bf87c22272bd4092992ecd1caa6f02 -Merge: b99e884fc eff4f93f3 -Author: raftergit -Date: Tue Sep 1 11:17:11 2020 -0400 - - Merge branch 'main' into raft-resolve-conflicts - -commit b99e884fc2a924089de69e791a47803c07813c2d -Merge: ea4d3447a 805a29fd5 -Author: Carl Smith -Date: Mon Aug 31 14:10:31 2020 -0400 - - Merge pull request #199 from raft-tech/shubhi-raft-patch-1 - - Update design issue template - -commit 805a29fd50534f8cad359d8994ba5783dccd7659 -Author: Shubhi Mishra -Date: Mon Aug 31 13:19:03 2020 -0400 - - Update design issue template - -commit 3982a595cfdfb6e187978bccd0539e9cea0c9a2c -Merge: 99a025bd8 ea4d3447a -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Mon Aug 31 11:35:53 2020 -0400 - - Merge branch 'raft-tdp-main' into sprint2-updates - -commit ea4d3447a98f3fa3d39eee4036fa90472a598024 -Merge: 3629374fb 2526f0394 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Mon Aug 31 11:27:38 2020 -0400 - - Merge pull request #194 from raft-tech/backend/177/testing - - Backend Testing Coverage - -commit 99a025bd807d8659fe86cb4c978154f31aad1079 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Sun Aug 30 20:40:28 2020 -0400 - - Update pull_request_template.md - -commit 044fe9dc7dad86eb205b575a0c012d57760e5a52 -Author: raftergit -Date: Fri Aug 28 17:21:56 2020 -0400 - - fixing type-o in pr issue temlpate mark down - -commit c339dbe96335d3b2492ffe3cac9947aebde4462f -Author: raftergit -Date: Fri Aug 28 17:13:52 2020 -0400 - - Updated based around comments on latest Sprint 1 Comments - - - Moved node-sass to devDependancies in the frontend package.json - - - Decided to keep two manifest.ymls in tdrs-frontend and tdrs-backend for the time being - - - Consolidated the items in tdrs-backend/.gitignore to the root .gitignore - - - Added "Pipfile.lock -diff" to .gitattributes in the root of the directory - -commit 2526f0394072758d6af817f3cbd79647201a1d0a -Merge: f328b8000 3629374fb -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Aug 28 16:43:27 2020 -0400 - - Merge branch 'raft-tdp-main' into backend/177/testing - -commit 3629374fb1d1e3c2e6fdcace8ea08ee65168525b -Merge: 22befc970 fe933c0af -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Aug 28 16:38:53 2020 -0400 - - Merge pull request #196 from raft-tech/sprint1-pr-review - - Sprint 1 PR Review Alt - -commit fe933c0af7bcad529d3c1bf579548b78cddc9606 -Author: raftergit -Date: Fri Aug 28 15:50:44 2020 -0400 - - updates to frontend snyk vulnerabilty scans - -commit f328b8000ef0055db61719e02629c7c73842f4ee -Author: Carlton Smith -Date: Fri Aug 28 13:53:03 2020 -0400 - - boost test coverage - -commit 1dfc1ecc9ebcd8a75d5c667a8b2bf6ce6f988615 -Author: Carl Smith -Date: Fri Aug 28 12:43:39 2020 -0400 - - Update README.md - - Correct typos - -commit 1cdb0d978c72b047bc8194f7687050b22c6ea954 -Author: raftergit -Date: Fri Aug 28 12:09:41 2020 -0400 - - updating README.md for the backend and frontend to reflect new testing logic - -commit 70e63fefe54c6a72e09693783daf39a001326ba3 -Author: raftergit -Date: Fri Aug 28 09:12:10 2020 -0400 - - updating README.md documentation for frontend and backend in support of new manifest.yml environment variable logic - -commit d24b029ae0772fe71acb4d77325ec3a3f946e503 -Author: raftergit -Date: Thu Aug 27 22:18:29 2020 -0400 - - moving the logic to check the JWT and generate the JWT to the backend deployment method in deploy-cloudgov-docker.sh - -commit 8cbc482decf8c8e5ff1e932583bd6ae17e9ae1a2 -Author: raftergit -Date: Thu Aug 27 22:00:15 2020 -0400 - - removing failing yarn cache logic from circleci config - -commit b8183cf8cf8e48d9b07f4171666b0f145310e731 -Merge: 8ac291d5b 2d15668a4 -Author: raftergit -Date: Thu Aug 27 21:48:06 2020 -0400 - - testing deployment via current branch - -commit 8ac291d5b36e90fc05eca8c6aff355615f26b305 -Author: raftergit -Date: Thu Aug 27 21:47:47 2020 -0400 - - testing deployment via current branch - -commit 06000fcdc60a3b5255ca93d8394217e4f16adf7e -Author: raftergit -Date: Thu Aug 27 21:23:15 2020 -0400 - - adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python - -commit bfe664ead45b4c01dcd82451ac39cf68b7b6e4c3 -Author: raftergit -Date: Thu Aug 27 21:12:21 2020 -0400 - - adding temporary fix for snyk policy not being fully referenced in circleci - -commit 1ac3db45cf9af48f600f69dd53775336914afbdd -Author: raftergit -Date: Thu Aug 27 20:45:42 2020 -0400 - - testing snyk policy update with deployment - -commit 8c78522dc2f43265be739a57ea199bb50470e2e7 -Author: raftergit -Date: Thu Aug 27 20:17:13 2020 -0400 - - attempting to use snyks ignore policy for vulnerabilities with no known current fix - -commit c7d58f6f34881c8f83c7b557429e8babb925e7a3 -Author: raftergit -Date: Thu Aug 27 19:37:11 2020 -0400 - - Updates in response to the Sprint 1 PR Review: - - 1.) The CI/CD deployment pipeline has been expanded to now utilized the - deploy-cloudgov-docker.sh script. With the correct parameters this script - will deploy frontend and backend docker images via a rolling up or - a standard redeployment. - - This script also facilitate the ability to construct a new deployment - environment in cloud.gov if the user so chooses. - - This script will also leverage the dynamic naming of the docker image to - be pushed via the manifest.yml. With this method, we can tag versions for - release and circumvent needing to hard code values in our manifest.yml - - 2.) Updates library vulnerabilities based around snyk have also been - added tot he CI/CD pipeline via the circleci config.yml. Future updates - will expand this to include docker image scanning as well. - - Currently,since there is no way to disable snyk failing if it encounters CVEs no - reported fix, we've disabled this auto fail feature. - - 3.) Unit Test coverage of the backend code has been raised from 58% to 80% - - 4.) A markdown file has been added to tdrs-backend/docs outlining the current - issues with finding a usefull OIDC library to Login.gov authentication in lieu - of our own. - - 5.) At the time of submission no resolvable issues have been produced by snyk scans - - 6.) Due to an update to resolve a snyk vulnerabilty found on the frontend when upgrading - react, we had to abandon our current implementation of using the "start-server-and-test" - npm library which was being used to allow our cypress and pa11y scans to execute. - This has been replaced with the package "concurrency" - -commit d0bcd44b86913ddb87566added83a0fda4f4eea1 -Author: raftergit -Date: Wed Aug 26 14:13:21 2020 -0400 - - resolving bug with django python logging - -commit 2d15668a4afffada257b4a5805ebb158de8efe71 -Author: raftergit -Date: Thu Aug 27 21:34:25 2020 -0400 - - adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python - -commit 01b65b001892ab269b1e561497d2aaf4121451d4 -Author: raftergit -Date: Thu Aug 27 21:27:52 2020 -0400 - - adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python - -commit 52d3eb220c2bad1a58046f4985678350a7b3be73 -Author: raftergit -Date: Thu Aug 27 21:23:15 2020 -0400 - - adding --package-manager=pip as detailed in https://support.snyk.io/hc/en-us/articles/360004699377-Snyk-for-Python - -commit c7347b25e2cc2ae3c7a769cd330b112c473a7f2d -Author: raftergit -Date: Thu Aug 27 21:12:21 2020 -0400 - - adding temporary fix for snyk policy not being fully referenced in circleci - -commit 1db87480a77ed75fd58157417e463f87b92636c4 -Author: raftergit -Date: Thu Aug 27 20:45:42 2020 -0400 - - testing snyk policy update with deployment - -commit 40808085a9e05ab07a126e7c439f8bb1f6154130 -Author: raftergit -Date: Thu Aug 27 20:17:13 2020 -0400 - - attempting to use snyks ignore policy for vulnerabilities with no known current fix - -commit c4fa749b37ddee8c9c648d31eab140f45c7a413f -Author: raftergit -Date: Thu Aug 27 19:37:11 2020 -0400 - - Updates in response to the Sprint 1 PR Review: - - 1.) The CI/CD deployment pipeline has been expanded to now utilized the - deploy-cloudgov-docker.sh script. With the correct parameters this script - will deploy frontend and backend docker images via a rolling up or - a standard redeployment. - - This script also facilitate the ability to construct a new deployment - environment in cloud.gov if the user so chooses. - - This script will also leverage the dynamic naming of the docker image to - be pushed via the manifest.yml. With this method, we can tag versions for - release and circumvent needing to hard code values in our manifest.yml - - 2.) Updates library vulnerabilities based around snyk have also been - added tot he CI/CD pipeline via the circleci config.yml. Future updates - will expand this to include docker image scanning as well. - - Currently,since there is no way to disable snyk failing if it encounters CVEs no - reported fix, we've disabled this auto fail feature. - - 3.) Unit Test coverage of the backend code has been raised from 58% to 80% - - 4.) A markdown file has been added to tdrs-backend/docs outlining the current - issues with finding a usefull OIDC library to Login.gov authentication in lieu - of our own. - - 5.) At the time of submission no resolvable issues have been produced by snyk scans - - 6.) Due to an update to resolve a snyk vulnerabilty found on the frontend when upgrading - react, we had to abandon our current implementation of using the "start-server-and-test" - npm library which was being used to allow our cypress and pa11y scans to execute. - This has been replaced with the package "concurrency" - -commit 814c1588bd6fa7c5b7f525452015ede6b438e9b3 -Author: Carlton Smith -Date: Thu Aug 27 16:43:01 2020 -0400 - - correct linting - -commit 17901fc89f5471d4ed6fd6b53c36a2508218c51f -Author: Carlton Smith -Date: Thu Aug 27 16:01:45 2020 -0400 - - test utilities and auth check - -commit 309a315961616f1cd49cd1b1f4c4782a7f8d3cfc -Author: Carlton Smith -Date: Thu Aug 27 13:55:50 2020 -0400 - - testing utlities - -commit 3ed86316c34f5eb851875ddf84790fb16e2f8529 -Author: Carlton Smith -Date: Wed Aug 26 17:21:53 2020 -0400 - - add tests for utils - -commit 22befc970545751ac9fc0fb903146a37334feb43 -Merge: f00f9135a 058f158a8 -Author: Carl Smith -Date: Wed Aug 26 14:42:40 2020 -0400 - - Merge pull request #193 from raft-tech/resolve-logger-bug - - resolving bug with django python logging - -commit 058f158a8f1fc93b234a4f184375c904a51834e3 -Author: raftergit -Date: Wed Aug 26 14:13:21 2020 -0400 - - resolving bug with django python logging - -commit f00f9135a2e14148303600d5536d6d20dfbafa9b -Author: raftergit -Date: Wed Aug 26 09:27:28 2020 -0400 - - resolving merge conflicts with login.py - -commit 9b033b6c2023e3590ba36d37222e1b6686e91856 -Author: raftergit -Date: Tue Aug 25 23:03:56 2020 -0400 - - resolving linting errors with auth.js and auth_test.js - -commit 92e39b695acf416cc132fa56775255bef3a131f3 -Author: raftergit -Date: Tue Aug 25 21:55:23 2020 -0400 - - updating axios call to auth_check API call to resolve undefined response - -commit c245b38a15097b6fbc4f45b4a960987dc21b7268 -Author: raftergit -Date: Wed Aug 26 09:26:05 2020 -0400 - - resolving redirect if users choose not to authenticate with Login.gov - -commit d9ed7cd779bbb8c7802608b6ca214000e7d63df8 -Author: raftergit -Date: Tue Aug 25 22:53:10 2020 -0400 - - resolving local execution issues with ui - -commit 8950dc7ddb869e027e88f7836e13215e399b45dc -Author: raftergit -Date: Tue Aug 25 21:40:02 2020 -0400 - - resolving merge conflicts with login UI PR - -commit 522b766a1457813439961adc1e8f652993e5ad39 -Author: Adam Caron -Date: Tue Aug 25 17:45:48 2020 -0400 - - Remove unnecessary eslint flag - -commit 37d2c05c7b9c9ff177e138c0844b60ed8a5ebc51 -Author: Adam Caron -Date: Tue Aug 25 17:23:50 2020 -0400 - - Fix python linting errors - - Remove unreferenced functions - -commit e4e33c81d33d5a24a72432c876732bab4343bc9a -Author: Adam Caron -Date: Tue Aug 25 17:21:03 2020 -0400 - - Test that the Welcome page does not render while auth is loading - -commit 7aa1414310d7ac74666ff01b61eba4ff054f32ec -Author: Adam Caron -Date: Tue Aug 25 17:07:04 2020 -0400 - - Test the Redux reducers for auth a alerts - -commit cde0641f083af220f6430f5c6646d2c629bff4f1 -Author: Adam Caron -Date: Tue Aug 25 16:15:55 2020 -0400 - - Adjust the auth loading message - - Also, do not render the welcome page while auth is being fetched - in order to prevent flashing that occurs when the unauthenticated - contenct renders for a split second before the user is redirected - to the Dashboard. - - Remove dupliate Logger message to cleanup the redux console - -commit 0f5808d1e04e44a5c203674ea764012712fa712b -Author: Adam Caron -Date: Tue Aug 25 15:19:27 2020 -0400 - - Test action that fetches auth - - - test the unauthenticated state - - test the error state - -commit eaf00e017323e2aaac74dcd5918e7ec423838ef5 -Author: Adam Caron -Date: Tue Aug 25 14:37:52 2020 -0400 - - Remove default 401 response - - The frontend will call /auth_check on every page load, including - when the user is not signed in. The endpoint should not error - with a 401 but rather should return 200 and inform the client - whether or not the user is authenticated. The client is always - authorized to make this request. - - Handle the case of anonymous users and those who are authenticated. - -commit b5a78b6ecb297c7db330ef15b299961eb446b49b -Author: Adam Caron -Date: Tue Aug 25 10:18:33 2020 -0400 - - Test user auth fetch action - -commit f22563547ff63a21af7c174318b7c2ceb6b8ce96 -Author: Adam Caron -Date: Mon Aug 24 10:58:02 2020 -0400 - - Test Login functionality - - - Welcome page - - Routes - - Private route - - Dashboard - - LoginCallback - - Notify component - -commit 0b1aced1ba08b33a75a15443248d0d234a3ebb0f -Author: Carlton Smith -Date: Fri Aug 21 15:05:02 2020 -0400 - - Login/Logout functionality - - Added methods to the CustomAuthentication class for handling HttpOnly - cookie authentication. Added authorization_check endpoint to finalize - login functionality. Updated settings with CORS whitelist for local. - - Setup local env file to reference local api - -commit 6f7fb3380efd00a53d0f4302fb0f2fadb556ebeb -Author: Adam Caron -Date: Fri Aug 21 14:12:14 2020 -0400 - - Clear Auth when no user is returned from auth check - - Also, remove unnecessary response - -commit 783bfd3fa2ea5ee9a727bbf01d932a4920216f23 -Author: Adam Caron -Date: Fri Aug 21 10:09:38 2020 -0400 - - Change internal response to redirect - - So the API redirects to the UI with an http_only cookie after - the login.gov flow is complete. - - Also, logout redirects back to UI - -commit 0d9941b8d7733494898c1a46d3e59a15cdfa1408 -Author: Adam Caron -Date: Thu Aug 20 22:13:46 2020 -0400 - - Add a Login Callback component - - The API will redirect back to the web app - after the login flow has completed, delivering with it - an http_only cookie. Upon landing on the callback page, - the web app makes one final call to the API to verify - that the web app indeed has the valid cookie. While this - happens, the login component renders a loading message. - - If user is not authenticated, and not in the process - of doing so, then redirect from the callback page - to the Welcome homepage at '/' - - If user is signed in, then redirect from callback page - to the Dashboard at '/dashboard' - - Render loading message on any private route - if sign-in is currently in process. - - Arrange Routes so public reoutes come first - because it's easier to reason about, and specify exact - so the order doesn't matter (no risk of unintended - fallthrough routing) - - Redirect Welcome to Dashboard for signed in users - so they don't see a log-in button or any content - intended for public users. - - Update redux actions and reducers so all data - is passed in a payload object, keeping the - action/reducer api consistent, predictable, and scalable - - Add user email to the login response object, and render that - on the authenticated Dashboard. - -commit 2cc76d250a153c812efb3d91240402534db14ec1 -Author: Adam Caron -Date: Thu Aug 20 20:14:29 2020 -0400 - - Add blank tests for new files - - Remove util to generate random chars since backend will do this now - -commit 5ac09002801991fe8a3cec08d1d3789ef237357f -Author: Adam Caron -Date: Thu Aug 20 16:28:02 2020 -0400 - - Implement Authentication and Authorization - - Add Private routing which redirects unauthenticated users - back to homepage at '/' (Welcome component). - - If API call to verify authentication is loading, - render an alert to notify the user it's loading. - - If unauthenticated user tries to navigate to - a private route, redirect to unauthenticated home - Welcome component and render an Alert that user - needs to login first. - - When the window first loads, make a call to retrieve - authentication info -- when authenticated, the user will - already have an http_only cookie set in the browser, - so the result of this call will identify the user as - already authenticated / or not yet authenticated - based on whether there is a valid cookie or not. - - Add a Dashboard for authenticated users. - - On the Welcome page, when user click 'Sign In', - user is redirected to API's Login.gov login flow. - - Alerts are hooked up to the redux store so they can render - across the site regardless of the current page. This helps - preserve messages after redirects. - - Additionally, the redux logger middleware order has changed - so logger comes last. If it is not last, it does not log - actions but instead logs promises and thunks: - https://github.com/LogRocket/redux-logger/issues/302#issuecomment-416767088 - -commit 882cc2c1908e643cc4ad098a0a88707e187b277c -Author: Adam Caron -Date: Wed Aug 19 13:57:35 2020 -0400 - - Add a Dashboard component to be used as an authenticated landing page - -commit 1927078cfe35e0a6b6ff40e6e937298edfe426a7 -Author: Adam Caron -Date: Wed Aug 19 13:54:15 2020 -0400 - - Move components into components dir - - Transition away from the pattern of separatign components and containers - as per the update in dabramov's post on the subject: - https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0 - -commit 796c14afc7aacacdd1b3664bb27c2f624c9bd384 -Author: Adam Caron -Date: Mon Aug 17 20:35:43 2020 -0400 - - Pivot auth strategy - - Redirect to API login endpoint - - Receive user info - -commit 96a1117f2d08eafaeba68cd8721bc5ba80cbc267 -Author: Adam Caron -Date: Mon Aug 17 12:58:56 2020 -0400 - - Add React Router - - Configure Redux store - - Add logger middleware to see actions and store state - - Connect Router to store - - Setup routes - - Redirect to API login on login button click - -commit 2727ca1085711a2cdf68a484dc871a404831dc00 -Author: Adam Caron -Date: Thu Aug 13 19:36:05 2020 -0400 - - Authorize with Login.gov - - Call Login.gov sandbox when login button is clicked. - and receive callback code and state at /code. - - Configure OICD-client userManager with env variables. - - Add an example .env and README instructions for local development - - Add oidc-client dependency and use redux-oidc in order - to benefit from store pattern, since redux will be used for app state. - - `prop-types` is a peer dependency so that is why it is installed here. - - Generate oicd state and nonce with cryptographically secure random char function, - which purposely does not use Math.random() since it does not provide - cryptographically secure random numbers. - - Make crypto available in the test environment - - Test login button click - Specify in README how to view coverage details as HTML in the browser. - -commit 4e14e5ec2f6a80f0f3d293da84386e6b68e48fed -Author: Adam Caron -Date: Fri Aug 7 15:20:39 2020 -0400 - - UI renders unauthenticated sign in page - - Add Cypress test that a person sees the sign in page with login button - - Remove hello world text and test - - Add to the project to use scss - - Extract Welcome page into its own container, away from App, - keeping gov banner at top level so it's rendered everywhere. - - Ignore index.js because it would be a useless thing to test. - -commit e026e333ae83ae041b6b2d061ccaede150f72cb6 -Author: raftergit -Date: Tue Aug 25 15:27:50 2020 -0400 - - restoring default flake8 detection settings - -commit fb013f458cd07587a3018299c0c1a52322961596 -Author: raftergit -Date: Tue Aug 25 14:41:09 2020 -0400 - - Getting tech coverage up to 82% - -commit 9566872f03b4710b4a550d4672a4dc5d5b4e5b50 -Author: raftergit -Date: Thu Aug 20 07:27:45 2020 -0400 - - disabling deployment logic by changing branch - -commit 5e777bcb9f0981636d34cac5982fb0e4873a03f7 -Author: raftergit -Date: Thu Aug 20 07:12:51 2020 -0400 - - trying out new frontend build method - -commit 81ab4dcad4dfb591ba89b3f1cf81a67fe8a1bda8 -Author: raftergit -Date: Thu Aug 20 06:55:46 2020 -0400 - - restoring logic for deploy to cloud.gov - -commit 3e47b064ef38f56c014a2fea9598e144e558ccb1 -Author: raftergit -Date: Thu Aug 20 06:55:00 2020 -0400 - - removing volume declaration from docker-compose.yml - -commit bfa853638119542964d648a8c54cadb62b1e69d9 -Author: raftergit -Date: Thu Aug 20 06:25:20 2020 -0400 - - updating docker-compose to clean up circleci behavior - -commit ad0ace5ad713d96fb4e1910330f5474e3abec54f -Author: raftergit -Date: Thu Aug 20 06:19:56 2020 -0400 - - adding branch name to manual trigger deployment test - -commit ea613f3a230aaed31e4b14925d745111f089ccaa -Author: raftergit -Date: Thu Aug 20 06:11:59 2020 -0400 - - adding branch name to manual trigger deployment test - -commit e611871e1bbcf56676feb6c603ceaba357c7ce82 -Author: raftergit -Date: Thu Aug 20 06:08:29 2020 -0400 - - updating test references in respect to docker-compose.yml changes - -commit db421c5887722eace2c4c16f2409669262a35dbc -Author: raftergit -Date: Thu Aug 20 06:01:12 2020 -0400 - - adding note about docker-compose to frontend ReadMe - -commit b82f82db2c1f1acc74e98ef91f3df3157317ed54 -Author: raftergit -Date: Thu Aug 20 05:57:22 2020 -0400 - - adding documentation , local testing instructions, more fleshed out ci/cd circleci.yml - -commit 7997c0b44d26fa05a7c05bcfd4ab8a1bccc423f3 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Aug 13 21:01:07 2020 -0400 - - Update pull_request_template.md - -commit e43189c6e0888e24e44b6147250aa393665371a6 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Aug 7 00:06:24 2020 -0400 - - Update pull_request_template.md - -commit 652315bc73ff8dd4957396164965ceded854c044 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Fri Aug 7 00:03:50 2020 -0400 - - Create pull_request_template.md - - Adding a template for Pull Requests - -commit d7eb3d6f2c9ce13b441a104487f910b4334e6439 -Author: raftergit -Date: Wed Aug 19 20:08:34 2020 -0400 - - adjusting circle.ci build in respect to alternate PR that addresses issues - -commit 9321fdc311f643ac0d7d8c2c0f36906e86abc44d -Author: raftergit -Date: Wed Aug 19 20:02:10 2020 -0400 - - obsecuring uneeded parameters in .env.local - -commit a8b0285469b9453023a7e7cfb290c16ca5018846 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Aug 19 10:13:17 2020 -0400 - - Update dev-issue-template.md - -commit 3934fe09170bc68461820abba25946c091bf9872 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Aug 19 10:03:44 2020 -0400 - - Update and rename dev_issue_template.md to dev-issue-template.md - -commit 86109e0106fbc9186cb763d3730cd603c51e9bcf -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Tue Aug 18 16:32:41 2020 -0400 - - Rename .github/dev_issue_template.md to .github/ISSUE_TEMPLATE/dev_issue_template.md - -commit 28642e2196a7b3d1b2906f64cf00d55137d5d155 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Tue Aug 18 16:26:52 2020 -0400 - - Rename issue_template.md to dev_issue_template.md - -commit 2a3b4444af96d08368cfe996bdbf172e9a4114df -Author: Shubhi Mishra -Date: Tue Aug 18 07:39:35 2020 -0400 - - Update issue templates - - Template for design issues - -commit 35d810fc366bcc6e6914f753e1543173d691e813 -Author: Shubhi Mishra -Date: Tue Aug 18 09:47:33 2020 -0400 - - Update and rename research-plan-issue-template-.md to research-issue-template-.md - -commit 069ed38e692c1c7551ca480ee0f52ea6b1b1cbac -Author: Shubhi Mishra -Date: Tue Aug 18 07:16:41 2020 -0400 - - Update issue templates - -commit 482cf3b69a177cc7686737e04cb82319352fb085 -Author: Adam Caron -Date: Tue Aug 11 15:11:14 2020 -0400 - - Ignore auto-generated Cypress directory - -commit 8d5393831925792f628be407b3e545630ac72fb7 -Author: Adam Caron -Date: Mon Aug 10 17:41:08 2020 -0400 - - Add missing peer dependencies, and treat yarn.lock as a binary file - - Peer Dependencies: - - Previously `yarn install` would output warnings for missing deps eslint and jest. - This resolves those warnings. - - Treat yarn.lock as a binary file: - - So that git doesn't try to merge changes in the file. Yarn is the only thing - that should make changes or updates to yarn.lock - - This should make diff's on PRs more manageable and less awkward - since the lockfile won't count in the diff. - - See discussion here on how to handle merge conflicts with yarn.lock: - https://github.com/yarnpkg/yarn/issues/1776#issuecomment-269539948 - -commit bc5db1fe51dc7f3f733631e016718222f5bb9564 -Author: Adam Caron -Date: Mon Aug 10 14:13:22 2020 -0400 - - Do not prevent the app from being published - - Since it's an open source project, no need to prevent publication - even though we don't intend on publishing it on NPM. - - Also, specify license for open source, since yarn throws warnings - without the license key, when the `private` key is not specified. - -commit 5f928c41a2490f448ac901ccd3c2f9c87d828e6a -Author: Adam Caron -Date: Mon Aug 10 13:56:10 2020 -0400 - - Update the favicon to the uswds flag - - As per suggestion on the scaffolding PR: - https://github.com/HHS/TANF-app/pull/37#discussion_r467144739 - -commit dc14f174796a7cf6042c736c8adf1ca2065c42f6 -Author: Adam Caron -Date: Fri Aug 7 12:44:48 2020 -0400 - - Move UI .gitignore contents into global project .gitignore - - Because if it's in subdirectory, and if PWD is project root, - then the subdirectory gitignore won't take effect - -commit e433d33b56821cc9510f167edd55cdcd2c169f80 -Author: raftergit -Date: Wed Aug 19 19:59:37 2020 -0400 - - adding additional docstring commenting/updated readme/added envars settings for local and deployments - -commit 5ccd77a477f86706e3e6284edcbba5e213e4a435 -Author: Carlton Smith -Date: Wed Aug 19 14:50:50 2020 -0400 - - model tests - -commit 57314b112d989fa384e8c8b8d047043a53b5f21f -Author: Carlton Smith -Date: Wed Aug 19 11:53:19 2020 -0400 - - test authentication.py - -commit 9b181a79406776339cca896cdd06beaebef60005 -Author: Carlton Smith -Date: Tue Aug 18 11:30:03 2020 -0400 - - remove testing files - -commit 4011bbeb721afb9b7c188076e33a379f6e3ef13a -Author: Carlton Smith -Date: Mon Aug 17 15:30:15 2020 -0400 - - fix requirements syntax error - -commit 5e5fc493dd0160ca205935547d24917f842df2a1 -Author: Carlton Smith -Date: Mon Aug 17 15:28:13 2020 -0400 - - remove unneeded file - -commit a7dc19b2f49b9350b161bd3db1ecba5c9b7113ed -Author: Carlton Smith -Date: Mon Aug 17 15:27:14 2020 -0400 - - fix linting error - -commit 8719d61416537fda7c0b0f27bf70e5751e8df3e4 -Author: Carlton Smith -Date: Mon Aug 17 15:25:37 2020 -0400 - - allow cors connections - -commit f057a56dbe224ea39afa5fb202fd87dcd16eaacf -Author: Carlton Smith -Date: Mon Aug 17 15:14:34 2020 -0400 - - add url test - -commit a8f52628ff40701d1c0debd7a655c1dacbfd8525 -Author: Carlton Smith -Date: Mon Aug 17 15:14:05 2020 -0400 - - add nbf flag to jwt - -commit 667896fc545bd52f3d43d3378f54fdeeeea71f51 -Author: Carlton Smith -Date: Mon Aug 17 14:37:24 2020 -0400 - - repair url test - -commit 110c59fe351862ea1cd348d0fa6499c4c7fad50e -Author: Carlton Smith -Date: Mon Aug 17 13:48:08 2020 -0400 - - add docstrings and other linting fixes - -commit 337531a818e11ffedc89c0cc23605519ebb3699a -Author: Carlton Smith -Date: Mon Aug 17 11:47:19 2020 -0400 - - redefine ignore - -commit 571a8d0e0ec0f4f83e6e4771129bfbad70fb984d -Author: Carlton Smith -Date: Mon Aug 17 11:45:43 2020 -0400 - - remove ignored - -commit dd320cd19b4a4871ae188fee62adbe2c585ee1a2 -Author: Carlton Smith -Date: Mon Aug 17 10:06:44 2020 -0400 - - linting fixes - -commit cbbbebe44276f6a06b90af7d1c3e330011d70ef5 -Author: raftergit -Date: Mon Aug 17 08:52:35 2020 -0400 - - extracted hard coded values to environment .env file - -commit 7bceb29133a420a88d432236c6b942e269d02e14 -Author: raftergit -Date: Sat Aug 15 23:35:34 2020 -0400 - - Resolving conflict with sessions retaining hint_token for logout and tracking the nonce and state generated for verification - -commit 3a63283c7be7b9e73278711dcd9fd7a82ac7cb83 -Author: raftergit -Date: Sat Aug 15 21:48:50 2020 -0400 - - Adding OIDC Login Auhorization as a backend task - -commit 9369c738f019564e7320963bd37ec933e84b2a69 -Author: Carlton Smith -Date: Fri Aug 14 11:36:35 2020 -0400 - - testing and linting - -commit 742a4b1e332735e0a2ae4b034c0fca35e7cdbd45 -Author: Carlton Smith -Date: Thu Aug 13 16:05:31 2020 -0400 - - login and logout using login.gov and django custom auth - -commit b27c6f00045e65ea4b782915f09179d555996f7a -Author: raftergit -Date: Mon Aug 10 23:14:32 2020 -0400 - - removing unused cypress/fixtures directory - -commit df0ed6f3bd8fbbda916412f3a00afde7ec347a2f -Author: raftergit -Date: Mon Aug 10 23:13:25 2020 -0400 - - removing unsed cypress/support directory - -commit bd6514b1fc115b2eef26305bac486b72b4b19f20 -Author: raftergit -Date: Thu Aug 6 23:06:41 2020 -0400 - - Resolve linting errors to pass CI Tests - - Found linting errors while implemetning circleci test automation on the backend - -commit cab4bda5e8e0bbe5e2ee973b45d4988c9c1c8195 -Author: raftergit -Date: Thu Aug 6 20:37:46 2020 -0400 - - Adding Backend CircleCI Testing - - Adding circleci build jobs for the Django rest framework - -commit adc68a1bfc41f3caa9fe81203f6adcaba938be20 -Author: raftergit -Date: Wed Aug 5 22:59:18 2020 -0400 - - updates to run gunicorn during local development - -commit f2f9cd64f7444f3ce969ad9e694d26bc34ade4f1 -Author: raftergit -Date: Tue Aug 4 00:18:53 2020 -0400 - - reduced docker image size updated manifest.yaml for dev deployment - - use token - - decode token - -commit c3c9b99e8a104e501a4bbd3f69bfc59956459ee4 -Author: Carlton Smith -Date: Mon Aug 3 18:48:44 2020 -0400 - - log in user and return user data to front end - -commit 313b89ea9bf0f6b638d39ab319ac17e57fceeeff -Author: Carlton Smith -Date: Mon Aug 3 18:32:41 2020 -0400 - - log response - -commit 166508b6ffd3f5509105171326e4f86e29d43edc -Author: Carlton Smith -Date: Mon Aug 3 14:38:57 2020 -0400 - - check for verified email - - typo fix - - latest - -commit ee19a2d977a82bb5259d8b67b601747cb9f69ece -Author: Carlton Smith -Date: Mon Aug 3 13:29:51 2020 -0400 - - get user and create session - -commit 2a99ee799023c3652259a30aec74b78d0670e58d -Author: raftergit -Date: Mon Aug 3 10:12:10 2020 -0400 - - updating call userinfo endpoint - -commit d2105a49246211e61be03a7dc0ac7340d44d8cf8 -Author: raftergit -Date: Mon Aug 3 09:06:53 2020 -0400 - - removing old oidc lib from urls.py - -commit 56d2f0bbda2e813d3478833e77cff29870f10d9f -Author: raftergit -Date: Mon Aug 3 08:59:24 2020 -0400 - - removing debugging logic - -commit a6953450a7a078bff98b71b25698e9655ebdbe4e -Author: raftergit -Date: Mon Aug 3 03:54:27 2020 -0400 - - removing apps that aren't needed from sub repo - -commit b0d40cb53e31a70968666ed5ec04c00e579db73b -Author: raftergit -Date: Mon Aug 3 03:48:29 2020 -0400 - - updates to authentication endpoint - -commit 1e56e9fd67355c192adae2d163c3028ce34f66ab -Author: raftergit -Date: Fri Jul 31 02:57:48 2020 -0400 - - draft of the manifest.yml and multi Dockerfile support - -commit 28bd38a8db70c9317ce29d6fbaa8fa9af1060e82 -Author: raftergit -Date: Fri Jul 31 02:04:55 2020 -0400 - - rolling linter testing, linter correction, unit testing, and vulnerability scanning into a script - -commit 609f714ebc1fce4f6a52a440998cfdd26b4a75a3 -Author: raftergit -Date: Wed Jul 29 17:45:11 2020 -0400 - - renamed config file to status, added nonroot user to docker container, default django settings to use local.py - - updating commenting - - updating commenting - -commit 7bf1fdce79f1d2374e0f9855a343fa9edf41dbd0 -Author: raftergit -Date: Wed Jul 29 17:09:57 2020 -0400 - - adding custom user to prevent defaulting to root - -commit 9edc84a8f4649b114f695a0c742b4ecc4cfcea51 -Author: raftergit -Date: Wed Jul 29 15:40:52 2020 -0400 - - updates to boilerplate - -commit de651d75c9379e415aaf1164fa72421dcc44d80f -Author: Carlton Smith -Date: Wed Jul 29 15:13:52 2020 -0400 - - add gitignore - - clenup gitignore - - add files - -commit d19925b093a62dd0a6c74a4ca3ac94ea5008183e -Author: raftergit -Date: Wed Jul 29 14:30:36 2020 -0400 - - updates to dockerfile - -commit 5f0b861ed9817c5dd5a0941408000968cbe8ba23 -Author: raftergit -Date: Wed Jul 29 11:19:50 2020 -0400 - - initial scaffolding for backend service - -commit 54011b441cc20a6f9b0559d88ebe60ac488ba7f7 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 21:23:18 2020 -0400 - - Update issue_template.md - -commit 1311e1cf14e768c8b3f8a1e6b16bc18e52e1365b -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 20:09:51 2020 -0400 - - Default issue format template - -commit 74b848fa70f3a4f2c2d83b3fa66af00ba2c2a38b -Author: raftergit -Date: Mon Aug 3 17:46:33 2020 -0400 - - Setup CircleCI job for the frontend - - Add build steps: - - Install dependencies - - Run linter - - Run pa11y accessibility tests - - Run Cypress integration tests - - Run Jest unit tests - - Update the manifest to use a consistent name for the application across the project - - Update Readme instructions to build locally - -commit 1b0b24c5b8e3ae97716eb696c22a85d3b7de4942 -Author: Adam Caron -Date: Mon Aug 3 10:12:10 2020 -0400 - - Add pa11y for ci - - Also move prod build instructions in readme to the top - so readers do not need to scroll through the long local dev instructions - -commit a46936d24bce2b25bc2f7edac3fc8d2fe0f66747 -Author: Adam Caron -Date: Thu Jul 30 14:01:51 2020 -0400 - - Add Cypress for end-to-end UI tests - - Update README with e2e test running instructions - - Add an integration test for the welcome page: - `/cypress/integration/welcome_page_greeting.spec.js` - -commit 0a27fc6711ca21b3f28ad139c9d2d40c3ec952de -Author: Adam Caron -Date: Thu Jul 30 08:52:47 2020 -0400 - - Add Jest testing framework for unit tests - - Add scripts for CI and for local code coverage - - test:ci for CI - - test:cov to see code coverage locally. Because running with coverage - slows down the test suite, this was added as an optional script. - The --watchAll flag was added to `test:cov` because there is an issue - where coverage reports 0/0% when tests run in interactive mode. - https://github.com/facebook/jest/issues/7331 - https://github.com/jest-community/vscode-jest/issues/433 - - Have ESLint and Git ignore the coverage output - - Add tests for the App component - - Update README with unit test instructions - -commit 1f3f72ef17eb64bd664a0b3afc957b92a0ad4331 -Author: Adam Caron -Date: Wed Jul 29 14:49:24 2020 -0400 - - Add ESLint and Prettier - - Configure ESLint to work with Prettier - and follow the Airbnb style guide - - Fix files to comply with ESLint/Prettier rules - - Add .eslintignore and .prettierignore to omit files and directories - that should not be changed or checked - - Document lint tools in the README - - Add a yarn run v1.22.4 - $ eslint src/ && echo 'Lint complete.' - Lint complete. - Done in 1.04s. command that can be used locally and by CI - - As a note: Paulo Ramos' script was used to setup ESLint, Prettier, - and Airbnb config to play nice with each other. This is typically - an arduous process and the script made it simple. - For reference: https://github.com/paulolramos/eslint-prettier-airbnb-react - -commit 58ed03ec6d7a6463c7b8f71878ec80bcd7ae3734 -Author: Adam Caron -Date: Wed Jul 29 10:48:05 2020 -0400 - - Add USWDS - - Use trussworks/react-uswds because it integrates nicely and is well supported/maintained. - - It became necessary to downgrade the Node.js version from 14 to 12 - because the trussworks project only supports 12. - - Change Dockerfile node version to 12 - - Create an .nvmrc file for folks who use nvm. This helps to ensure that - a contributor's local node environment matches the Docker runtime environment. - - Add a reference to USWDS in the README - - Add README instructions to `build`, `run`, and `push` the Docker image - both for local development and to serve the static build. - - Add a nice little UI to welcome people and to demonstrate that USWDS is integrated. - - Remove unnecessary default create-react-app output files and code - - Change the app title to match the project - -commit cf6d431395a0da0f471a2c4d85ebae266ff22333 -Author: Adam Caron -Date: Tue Jul 28 18:45:07 2020 -0400 - - Add a cloud foundry manifest - - Specify the docker image to be used. - Until we have a repository for this project, we'll use a public repo: - namely dockerhub.com and Adam's repo (adamcaron). - - Currently the `memory` attribute is unspecified, which defaults to `1GB` - -commit 583d69acbf538fa2ca8235cbf8b8b4d73caa8321 -Author: Adam Caron -Date: Tue Jul 28 15:08:59 2020 -0400 - - Add multi-stage build Dockerfile - - - Stage 0 installs dependencies. Target this stage for local dev - by building with the command: - `docker build --target localdev -t tdrs-frontend:local .` - and running: - `docker run -it -p 3000:3000 --rm tdrs-frontend:local yarn start` - and navigate to localhost:3000 - - - Stage 1 builds the production distribution - - - Stage 2 serves over nginx with custom nginx config. - To build stage 2: - `docker build -t adamcaron/tdrs-frontend:build .` - and run: - `docker run -it -p 3000:80 --rm adamcaron/tdrs-frontend:build` - - Add peer dependencies in package.json - so yarn install doesn't fail in the container. - For some reason with create-react-app's dependencies, - some peer dependencies do not automatically install - (typescript and @testing-library/jest-dom). Since presently - there is no way to automatically install peer deps, they have - been added to the package.json - - Add a dockerignore with basic contents to omit from the image - -commit 83e5537f7c09c509157051322f8f8f5c1cc9b1d9 -Author: Adam Caron -Date: Tue Jul 28 15:00:26 2020 -0400 - - Initialize React application - - Add basic output from create-react-app - - Add a gitignore with standard things to ignore - - Include yarn.lock since yarn will be the package manager. - Yarn was chosen for its improved performance over npm - as it is known to run more quickly, has a robust API, - is widely adopted (used by the React core project team), - and guarantees that running install on a project with a lockfile - will always produce the same tree of packages, unlike npm. - Yarn also plays nice with loom, in case this project goes the route - of a multi-package mono-repository. With yarn 2 around the corner, - it will also be easy to migrate, should that decision arise. - -commit 8ddbe55a355cba67e45a4be2476ff0cf2f49b012 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 21:23:18 2020 -0400 - - Update issue_template.md - -commit ec975359f564dd9e1f008e41cc3f82d5b1f5ef6b -Author: raftergit -Date: Wed Aug 26 11:26:42 2020 -0400 - - performing updates - -commit eff4f93f3dfe3cf7945d84ac89e0dd5227590441 -Merge: 4fa91d538 8207cf2f4 -Author: Robert Jolly -Date: Tue Aug 11 10:04:25 2020 -0600 - - Merge pull request #37 from raft-tech/raft-tdp-main - - TDP Frontend Scaffolding - -commit 8207cf2f4d744b28553058a07be0291044565aec -Merge: c358775e6 6c1bbb6e2 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Tue Aug 11 11:57:36 2020 -0400 - - Merge pull request #77 from raft-tech/backend-ci-tests - - PR Review Updates - -commit 6c1bbb6e2db82cf3c0cd753c87831dbf0d052059 -Author: raftergit -Date: Mon Aug 10 23:14:32 2020 -0400 - - removing unused cypress/fixtures directory - -commit c1b87370e0613ad8d91d1679a79efbb65c9cc348 -Author: raftergit -Date: Mon Aug 10 23:13:25 2020 -0400 - - removing unsed cypress/support directory - -commit 91e30bf4685bc6b979e618a30e27551c07cbb13c -Author: raftergit -Date: Thu Aug 6 23:06:41 2020 -0400 - - Resolve linting errors to pass CI Tests - - Found linting errors while implemetning circleci test automation on the backend - -commit c9d869531355a2bf55d3be6a43040e9c0c2c56f3 -Author: raftergit -Date: Thu Aug 6 20:37:46 2020 -0400 - - Adding Backend CircleCI Testing - - Adding circleci build jobs for the Django rest framework - -commit c358775e633570623580dc82ce5df6eca9e46886 -Merge: 53bc6b271 d5596011d -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Aug 6 19:13:05 2020 -0400 - - Merge pull request #76 from raft-tech/tpd-backend-scaffolding - - Tpd backend scaffolding - -commit d5596011d17eb2c70e8de3cdfceee240ecc0b5ff -Author: raftergit -Date: Wed Aug 5 22:59:18 2020 -0400 - - updates to run gunicorn during local development - -commit 0d8ed1c7dc13f3760b80d16e89baf1bc25707a9d -Author: raftergit -Date: Tue Aug 4 00:18:53 2020 -0400 - - reduced docker image size updated manifest.yaml for dev deployment - - use token - - decode token - -commit 1f24f803b03f2405743ddf4efe7cf1362af80162 -Author: Carlton Smith -Date: Mon Aug 3 18:48:44 2020 -0400 - - log in user and return user data to front end - -commit d8e51c9a7ed68e48b1f353d597631d5f261fadad -Author: Carlton Smith -Date: Mon Aug 3 18:32:41 2020 -0400 - - log response - -commit 7f2b98d2dd5351366a570eab5c66a3d54f53e5e1 -Author: Carlton Smith -Date: Mon Aug 3 14:38:57 2020 -0400 - - check for verified email - - typo fix - - latest - -commit 9180bb32316b8e4c52568f12f6b6185228bb5a7f -Author: Carlton Smith -Date: Mon Aug 3 13:29:51 2020 -0400 - - get user and create session - -commit a33c367ace91b258dd1011968c334ef77ed766b5 -Author: raftergit -Date: Mon Aug 3 10:12:10 2020 -0400 - - updating call userinfo endpoint - -commit 07928638a1d25e723ee7f85285513d44e06a0f71 -Author: raftergit -Date: Mon Aug 3 09:06:53 2020 -0400 - - removing old oidc lib from urls.py - -commit f4ab7a000a576b05c123038597ec56d38062edf5 -Author: raftergit -Date: Mon Aug 3 08:59:24 2020 -0400 - - removing debugging logic - -commit 56287e34dc822a651d3c96b54c3361edcb899e6d -Author: raftergit -Date: Mon Aug 3 03:54:27 2020 -0400 - - removing apps that aren't needed from sub repo - -commit c8ef29a2e3c019a12f636537cfac4ac1619027f1 -Author: raftergit -Date: Mon Aug 3 03:48:29 2020 -0400 - - updates to authentication endpoint - -commit 129d1577c306e80756c9d93f3582d1860f814a60 -Author: raftergit -Date: Fri Jul 31 02:57:48 2020 -0400 - - draft of the manifest.yml and multi Dockerfile support - -commit 4f7e129ea1d447765a9dbe0da7acf1b30fd92e30 -Author: raftergit -Date: Fri Jul 31 02:04:55 2020 -0400 - - rolling linter testing, linter correction, unit testing, and vulnerability scanning into a script - -commit e703f7f145e19ffb838c8e4d1c63265baf951108 -Author: raftergit -Date: Wed Jul 29 17:45:11 2020 -0400 - - renamed config file to status, added nonroot user to docker container, default django settings to use local.py - - updating commenting - - updating commenting - -commit 842914bb22d427f9711a723d972e1bc1592d6c48 -Author: raftergit -Date: Wed Jul 29 17:09:57 2020 -0400 - - adding custom user to prevent defaulting to root - -commit ee747e813f071947722f50a00a9dda2a817070b9 -Author: raftergit -Date: Wed Jul 29 15:40:52 2020 -0400 - - updates to boilerplate - -commit fe5cc34c962f75cfc829e7aaae0b5a478bf5df5c -Author: Carlton Smith -Date: Wed Jul 29 15:13:52 2020 -0400 - - add gitignore - - clenup gitignore - - add files - -commit c618df4803dc9c870c80b84de6f9d66bbdbda457 -Author: raftergit -Date: Wed Jul 29 14:30:36 2020 -0400 - - updates to dockerfile - -commit 06245715185ee4844156d3c041aca8bd4e834350 -Author: raftergit -Date: Wed Jul 29 11:19:50 2020 -0400 - - initial scaffolding for backend service - -commit 8efa67d063d0a36f73082d5ee9eb0f68fbe83641 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 21:23:18 2020 -0400 - - Update issue_template.md - -commit 10453dade366287876be1b73e91540fd6db1d888 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 20:09:51 2020 -0400 - - Default issue format template - -commit 53bc6b27105dc0c72163fa4d013bbc129efc2db4 -Merge: 37abc9de8 bd3c8d250 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Aug 6 17:56:51 2020 -0400 - - Merge pull request #73 from raft-tech/1-ui-hello-world--rebased - - Rebase commits from #26 and #70, and refactor CI config and scripts - -commit bd3c8d250d2a257ebbc3a46360888ba2bb8b4cb0 -Author: raftergit -Date: Mon Aug 3 17:46:33 2020 -0400 - - Setup CircleCI job for the frontend - - Add build steps: - - Install dependencies - - Run linter - - Run pa11y accessibility tests - - Run Cypress integration tests - - Run Jest unit tests - - Update the manifest to use a consistent name for the application across the project - - Update Readme instructions to build locally - -commit fad384ec687aec3e373fb42b2e6a87dd08585798 -Author: Adam Caron -Date: Mon Aug 3 10:12:10 2020 -0400 - - Add pa11y for ci - - Also move prod build instructions in readme to the top - so readers do not need to scroll through the long local dev instructions - -commit 9f1e0197ca1bef967e794ad598c8a39c77af9284 -Author: Adam Caron -Date: Thu Jul 30 14:01:51 2020 -0400 - - Add Cypress for end-to-end UI tests - - Update README with e2e test running instructions - - Add an integration test for the welcome page: - `/cypress/integration/welcome_page_greeting.spec.js` - -commit 5a5de687133d4a7070432e770b866bb2b1466545 -Author: Adam Caron -Date: Thu Jul 30 08:52:47 2020 -0400 - - Add Jest testing framework for unit tests - - Add scripts for CI and for local code coverage - - test:ci for CI - - test:cov to see code coverage locally. Because running with coverage - slows down the test suite, this was added as an optional script. - The --watchAll flag was added to `test:cov` because there is an issue - where coverage reports 0/0% when tests run in interactive mode. - https://github.com/facebook/jest/issues/7331 - https://github.com/jest-community/vscode-jest/issues/433 - - Have ESLint and Git ignore the coverage output - - Add tests for the App component - - Update README with unit test instructions - -commit c24648e3e47d8d2874810d720a35b5b3c2639b29 -Author: Adam Caron -Date: Wed Jul 29 14:49:24 2020 -0400 - - Add ESLint and Prettier - - Configure ESLint to work with Prettier - and follow the Airbnb style guide - - Fix files to comply with ESLint/Prettier rules - - Add .eslintignore and .prettierignore to omit files and directories - that should not be changed or checked - - Document lint tools in the README - - Add a yarn run v1.22.4 - $ eslint src/ && echo 'Lint complete.' - Lint complete. - Done in 1.04s. command that can be used locally and by CI - - As a note: Paulo Ramos' script was used to setup ESLint, Prettier, - and Airbnb config to play nice with each other. This is typically - an arduous process and the script made it simple. - For reference: https://github.com/paulolramos/eslint-prettier-airbnb-react - -commit afd37bbb8979a73b47306ad08fa5ba018d3f03c6 -Author: Adam Caron -Date: Wed Jul 29 10:48:05 2020 -0400 - - Add USWDS - - Use trussworks/react-uswds because it integrates nicely and is well supported/maintained. - - It became necessary to downgrade the Node.js version from 14 to 12 - because the trussworks project only supports 12. - - Change Dockerfile node version to 12 - - Create an .nvmrc file for folks who use nvm. This helps to ensure that - a contributor's local node environment matches the Docker runtime environment. - - Add a reference to USWDS in the README - - Add README instructions to `build`, `run`, and `push` the Docker image - both for local development and to serve the static build. - - Add a nice little UI to welcome people and to demonstrate that USWDS is integrated. - - Remove unnecessary default create-react-app output files and code - - Change the app title to match the project - -commit c06c929258dc3be81c69eb3b0eb8c84e7bc4e591 -Author: Adam Caron -Date: Tue Jul 28 18:45:07 2020 -0400 - - Add a cloud foundry manifest - - Specify the docker image to be used. - Until we have a repository for this project, we'll use a public repo: - namely dockerhub.com and Adam's repo (adamcaron). - - Currently the `memory` attribute is unspecified, which defaults to `1GB` - -commit 66422e65ab3736ae6c7586a404961fc8061b56c3 -Author: Adam Caron -Date: Tue Jul 28 15:08:59 2020 -0400 - - Add multi-stage build Dockerfile - - - Stage 0 installs dependencies. Target this stage for local dev - by building with the command: - `docker build --target localdev -t tdrs-frontend:local .` - and running: - `docker run -it -p 3000:3000 --rm tdrs-frontend:local yarn start` - and navigate to localhost:3000 - - - Stage 1 builds the production distribution - - - Stage 2 serves over nginx with custom nginx config. - To build stage 2: - `docker build -t adamcaron/tdrs-frontend:build .` - and run: - `docker run -it -p 3000:80 --rm adamcaron/tdrs-frontend:build` - - Add peer dependencies in package.json - so yarn install doesn't fail in the container. - For some reason with create-react-app's dependencies, - some peer dependencies do not automatically install - (typescript and @testing-library/jest-dom). Since presently - there is no way to automatically install peer deps, they have - been added to the package.json - - Add a dockerignore with basic contents to omit from the image - -commit aedb9b160ad8673ce8250fe34ea38494f8cebcb8 -Author: Adam Caron -Date: Tue Jul 28 15:00:26 2020 -0400 - - Initialize React application - - Add basic output from create-react-app - - Add a gitignore with standard things to ignore - - Include yarn.lock since yarn will be the package manager. - Yarn was chosen for its improved performance over npm - as it is known to run more quickly, has a robust API, - is widely adopted (used by the React core project team), - and guarantees that running install on a project with a lockfile - will always produce the same tree of packages, unlike npm. - Yarn also plays nice with loom, in case this project goes the route - of a multi-package mono-repository. With yarn 2 around the corner, - it will also be easy to migrate, should that decision arise. - -commit 37abc9de8a3f536fa22d9da94692b20134cc3ecd -Merge: 07869e74e ff483347d -Author: raftergit -Date: Tue Jul 28 10:54:23 2020 -0400 - - Merge branch 'main' of https://github.com/raft-tech/TANF-app into main - -commit 07869e74e4045b72f7148aafbb7d3171e1fc6dfa -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 21:23:18 2020 -0400 - - Update issue_template.md - -commit 21e592a5fc2a34fe42b875b1cc0c5dcb6b4851f1 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 20:09:51 2020 -0400 - - Default issue format template - -commit 4fa91d538bc45d7f2919dc25a30acdf2cc141a5f -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Thu Jul 23 10:48:03 2020 -0400 - - temp working directies (#32) - - Co-authored-by: raftergit - -commit ff483347d2528e9fe8e16ff7ae88db5eb35e3a22 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 21:23:18 2020 -0400 - - Update issue_template.md - -commit 9957b0999c6cd8774ea6d53288bc5aac3b37859c -Merge: 0c42d3250 7fdfdcdb1 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 20:19:54 2020 -0400 - - Merge pull request #15 from raft-tech/issue-template - - Default issue format template - -commit 7fdfdcdb122748937912ccccdbe145f58341a557 -Author: RafterGit <68233018+RafterGit@users.noreply.github.com> -Date: Wed Jul 22 20:09:51 2020 -0400 - - Default issue format template - -commit 0c42d3250aa94ec66fd1210ce1efd5468290b04a -Author: Laura Gerhardt -Date: Wed Jul 15 15:45:00 2020 -0400 - - wip: cf cli config for static dev (#31) - - * update cg-deploy to have static build-pack - - * saved down page and coming soon content - - * slimming down static page - - * Ftanf import from EXCEL (#13) - - * update section3 ftanfy based on file updates - - * init-commit-excel - - * move into class - - * handle empty rows - - * add inline documentation for ftanf class - - * ftanf-tests-wip - - * update ftanf-excel-tests - - * add pytest to req.txt - - * add xlrd to req.txt - - * update static path - - * Update manifest-static.yml - - * Rename index.htm to index.html - - * rm manifest static - - * upgrade cf-cli to 7 - - Co-authored-by: Christine Bath - -commit 75cd60edd6dc91669a496d64d786115a758fd049 -Author: Laura Gerhardt -Date: Tue Jul 14 16:51:29 2020 -0400 - - Static worker and ftanf excel (#26) - - * update cg-deploy to have static build-pack - - * saved down page and coming soon content - - * slimming down static page - - * Ftanf import from EXCEL (#13) - - * update section3 ftanfy based on file updates - - * init-commit-excel - - * move into class - - * handle empty rows - - * add inline documentation for ftanf class - - * ftanf-tests-wip - - * update ftanf-excel-tests - - * add pytest to req.txt - - * add xlrd to req.txt - - * update static path - - * Update manifest-static.yml - - Co-authored-by: Christine Bath - -commit ff9337ddbcd6a445fd92d1bab59c82bdc4f6f1f5 -Merge: 4df62b7a7 2ebf90dc0 -Author: Laura Gerhardt -Date: Tue Jul 14 15:32:07 2020 -0400 - - Merge pull request #29 from HHS/Miatta18F-patch-3 - - OFA/ACF COR Delegation Letter - -commit 4df62b7a74348bbba5f863d33a138e285b00f6e2 -Merge: d6c21503a a2b099bb0 -Author: Laura Gerhardt -Date: Tue Jul 14 15:31:46 2020 -0400 - - Merge pull request #28 from HHS/Miatta18F-patch-1 - - GSA/TTS/18F COR Delegation Letter - -commit 2ebf90dc0c713319059b5e1bf33556d9d8d367a1 -Author: Miatta <47864216+Miatta18F@users.noreply.github.com> -Date: Tue Jul 14 15:25:28 2020 -0400 - - OFA/ACF COR Delegation Letter - - COR delegation letter for Dvora Wilensky - -commit a2b099bb068162ea78fb2647f5be43c4d07cf537 -Author: Miatta <47864216+Miatta18F@users.noreply.github.com> -Date: Tue Jul 14 14:41:56 2020 -0400 - - Add files via upload - -commit d6c21503afbf52435a42726a52dd6e6a8b679cec -Merge: 33e4ed8ee 9f37eb3bf -Author: lfrohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jul 14 13:28:43 2020 -0400 - - Merge pull request #27 from HHS/lfrohlich-patch-1 - - Upload of the ACF org chart. - -commit 9f37eb3bfe841afcbc54b1a079795d0c9b4f2fa5 -Author: lfrohlich <61251539+lfrohlich@users.noreply.github.com> -Date: Tue Jul 14 13:26:57 2020 -0400 - - Upload of the ACF org chart. - -commit 33e4ed8eebd9159f4fba9607e248d09daf1133be -Merge: 2b44da6ca 0bcb42f22 -Author: Laura Gerhardt -Date: Fri Jul 10 14:46:06 2020 -0400 - - Merge branch 'dev' into main - -commit 2b44da6ca264d87ca26731d6c5eb1e8f0b0c0068 -Merge: d987b2498 99a9bb335 -Author: Laura Gerhardt -Date: Wed Jul 8 16:21:12 2020 -0400 - - Merge pull request #22 from HHS/master - - update main - -commit d987b24980aabdc38f7f82103bb1d0c38483178a -Merge: 694bb23a3 e5ecdc20d -Author: Laura Gerhardt -Date: Wed Jul 8 15:17:49 2020 -0400 - - Merge pull request #21 from HHS/main-rename - - update branch references - -commit e5ecdc20d86c6051b6c33d031b8237caf2adf535 -Author: Laura Gerhardt -Date: Wed Jul 8 15:12:30 2020 -0400 - - update branch references - -commit 99a9bb3354515bdb823d518cd09f780f4e34e5d3 -Merge: 694bb23a3 738d97d9c -Author: Laura Gerhardt -Date: Mon Jul 6 13:56:56 2020 -0400 - - Merge pull request #20 from HHS/readme-updates - - update image and readme - -commit 738d97d9c46cad1653eac13a1ad7343a55ab9447 -Author: Laura Gerhardt -Date: Mon Jul 6 13:25:14 2020 -0400 - - update image and readme - -commit 694bb23a3ed02534218876860b1214183f9edc78 -Author: Selena Juneau-Vogel -Date: Thu Jul 2 18:18:22 2020 -0400 - - Add files via upload - -commit 755cffe535d377fb431f32b655caab20398dcf15 -Author: Selena Juneau-Vogel -Date: Thu Jul 2 16:26:56 2020 -0400 - - Add files via upload - -commit a8aa8ff327dbcf31fe334f64ed237349959dbe1a -Author: Selena Juneau-Vogel -Date: Thu Jul 2 16:24:16 2020 -0400 - - Delete three product considerations.png - -commit 202d01d6df451504a4325b52698e19e82780209d -Author: Selena Juneau-Vogel -Date: Thu Jul 2 16:24:07 2020 -0400 - - Delete three considerations to strategy pyramid.png - -commit d33ad1ecc9ba6d5b08646a93b4bc10e1ea6df51f -Author: Selena Juneau-Vogel -Date: Thu Jul 2 16:23:57 2020 -0400 - - Delete inverted product strategy pyramid.png - -commit a9473eb129fef01dd5cc3301b47828cc143e9c68 -Author: Selena Juneau-Vogel -Date: Thu Jul 2 09:45:19 2020 -0400 - - Delete product-considerations - -commit c117efee49d8947bb0317a7b6b53155a5e3841bf -Author: Selena Juneau-Vogel -Date: Thu Jul 2 09:44:42 2020 -0400 - - Delete three product considerations.png - -commit 8ad24cdb9aa39a1db681981867eec5bac0d14693 -Author: Selena Juneau-Vogel -Date: Thu Jul 2 09:44:06 2020 -0400 - - product strategy images - -commit 181c03f1380a165380577f2ca37506f27e4faa91 -Author: Selena Juneau-Vogel -Date: Wed Jul 1 17:04:17 2020 -0400 - - Create product-considerations - -commit e9b5dc64c1f94520bb38dc8551ee9438f584093c -Author: Selena Juneau-Vogel -Date: Wed Jul 1 16:59:43 2020 -0400 - - Delete product-strategy-assets - -commit 3431796830de8f13cb66294a8227f649bfae5970 -Author: Selena Juneau-Vogel -Date: Wed Jul 1 16:52:23 2020 -0400 - - Add files via upload - -commit 512a5104ba2a78de0b5a65e91b25f5fa83c342f7 -Author: Selena Juneau-Vogel -Date: Wed Jul 1 16:49:30 2020 -0400 - - Create product-strategy-assets - - Adding folder for product strategy images etc. for wiki content - -commit 0bcb42f221d030c006c59674254b3236f5ba5b4f -Merge: b98697902 b032e866b -Author: Laura Gerhardt -Date: Wed Jul 1 10:57:23 2020 -0400 - - Merge pull request #19 from HHS/test-make-calendar-editable - - Test make calendar editable - -commit b032e866bd69de699e164f68a927447eb81d0828 -Author: Laura Gerhardt -Date: Wed Jul 1 10:32:00 2020 -0400 - - update readme - -commit 7da64d8797f142c8ffe5c899f2ad0495252b1c91 -Author: Laura Gerhardt -Date: Mon Jun 29 14:39:21 2020 -0400 - - gitignore ds_store - -commit 8af9516badc095794da4cdd9dc6a164a405bab04 -Author: Laura Gerhardt -Date: Mon Jun 29 14:38:08 2020 -0400 - - update docker compose and make one-field-input - -commit 00f4c53c9669280e796efd392eee685ed296acfe -Merge: 3527ea60a 6457ecaf4 -Author: Laura Gerhardt -Date: Fri Jun 26 15:01:41 2020 -0400 - - Merge pull request #17 from HHS/readme-format - - Update README.md - -commit 6457ecaf4ea4fc1ae230d5dfafb475085a70b9d8 -Author: Christine Bath -Date: Fri Jun 26 14:16:08 2020 -0400 - - Update README.md - -commit 3527ea60a631f1945524365a0cfcccf89c859659 -Merge: 3c167bb39 2ffb96345 -Author: Laura Gerhardt -Date: Fri Jun 26 13:22:23 2020 -0400 - - Merge pull request #15 from HHS/design-assets - - create design asset folder - -commit 2ffb96345114878167a416ff5a4db1f17e5d55b0 -Author: Laura Gerhardt -Date: Fri Jun 26 13:18:02 2020 -0400 - - Update README.md - -commit e0b800683dfabeeff57ce064e2ff447c6b8e33a2 -Author: Christine Bath -Date: Fri Jun 26 12:00:38 2020 -0400 - - removing DS_Store, adding DS_Store to gitignore - -commit 0f77dbc4db18e80ece77d023b94ce9a01544befd -Author: Christine Bath -Date: Wed Jun 24 15:10:13 2020 -0400 - - create design asset folder, add stakeholder map - -commit 3c167bb3945b212e4b55bb3b8fcc3e987e534818 -Author: Laura Gerhardt -Date: Wed Jun 17 14:37:15 2020 -0400 - - remove test doc upload - -commit c2801883b9cb1336489fc5986eca0d8b9e719b86 -Merge: c9edf5f57 7fa8bacc9 -Author: Laura Gerhardt -Date: Wed Jun 17 14:33:48 2020 -0400 - - Merge pull request #14 from HHS/Miatta18F-TestDocUpload - - Testing upload of a document - -commit 7fa8bacc96754533c20679c7c08eb24e76c4be94 -Author: Miatta <47864216+Miatta18F@users.noreply.github.com> -Date: Wed Jun 17 14:29:27 2020 -0400 - - Testing upload of a document - -commit c9edf5f57b5c354bf1b9a92fec9c49d452792802 -Author: Laura Gerhardt -Date: Wed May 13 13:39:45 2020 -0400 - - Incorporate ftanf updates (#12) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * removed section3 specific thing so it can work on multiple sections - - * update comment - - * Update section3 ftanfy based on xlsx updates (#11) - - * 1st deploy productions (#4) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - Co-authored-by: timothy-spencer - - * Deploy documentation to prod (#8) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * Document system better (#5) - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * remove Workflows.md - - * ftanf.py to production! (#10) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * Document system better (#5) - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * remove Workflows.md - - * fix ftanf.py so that it is more general (#9) - - * removed section3 specific thing so it can work on multiple sections - - * update comment - - * update section3 ftanfy based on file updates - - Co-authored-by: ttran-hub <61292479+ttran-hub@users.noreply.github.com> - Co-authored-by: timothy-spencer - - Co-authored-by: timothy-spencer - Co-authored-by: ttran-hub <61292479+ttran-hub@users.noreply.github.com> - -commit b98697902d1b22800a5edb3a93a5b3f7926c0b18 -Merge: c08a3211c c7d1c18ab -Author: Laura Gerhardt -Date: Wed May 13 13:33:20 2020 -0400 - - Merge branch 'master' into dev - -commit c08a3211c6ccd97dd3b8daf88a7854b5d66cd1ca -Author: Laura Gerhardt -Date: Mon Apr 13 11:21:32 2020 -0400 - - Update section3 ftanfy based on xlsx updates (#11) - - * 1st deploy productions (#4) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - Co-authored-by: timothy-spencer - - * Deploy documentation to prod (#8) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * Document system better (#5) - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * remove Workflows.md - - * ftanf.py to production! (#10) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * Document system better (#5) - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * remove Workflows.md - - * fix ftanf.py so that it is more general (#9) - - * removed section3 specific thing so it can work on multiple sections - - * update comment - - * update section3 ftanfy based on file updates - - Co-authored-by: ttran-hub <61292479+ttran-hub@users.noreply.github.com> - Co-authored-by: timothy-spencer - -commit c7d1c18ab3a020676707378e6f21d3a5fcc79d0d -Author: Tim Spencer -Date: Thu Mar 26 11:47:26 2020 -0700 - - ftanf.py to production! (#10) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * Document system better (#5) - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * remove Workflows.md - - * fix ftanf.py so that it is more general (#9) - - * removed section3 specific thing so it can work on multiple sections - - * update comment - -commit e42bb0368839a3f4caf7ef253fc4d5661c5bd6f4 -Author: timothy-spencer -Date: Tue Mar 24 13:02:23 2020 -0700 - - update comment - -commit 36200db7f01e88231edfd8b0b8a60d6f515083c4 -Author: timothy-spencer -Date: Tue Mar 24 12:55:04 2020 -0700 - - removed section3 specific thing so it can work on multiple sections - -commit 20dec63fd393786cacab5592e8451080e24c4f93 -Author: Tim Spencer -Date: Tue Mar 24 11:41:14 2020 -0700 - - Deploy documentation to prod (#8) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * Document system better (#5) - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - * added some fixups to make sure we handle the actual data properly - - * fix trailer, zero pad numbers, handle some exceptions better - - * fixed ftanf.py to work with latest iteration of spreadsheet - - * make sure header is using sizes properly - - * added a comment - - * first stab at documenting everything - - * forgot to put diagram in - - * yank LATO diagram because it's wrong - - * incorporate many changes proposed by laura - - * document XXX in documentation - - * add docs about per-environment cloud.gov deploys - - * more documentation updates from laura feedback - - * try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - - * remove Workflows.md - -commit bd9729586b8349c777bf76f90fee88f91de0a9b5 -Author: Tim Spencer -Date: Tue Mar 24 11:12:52 2020 -0700 - - try to find a usable shasum (#7) - - * try to find a usable shasum - - * forgot to redirect output - -commit d6ae8e71722ee11aff7ee9bbb45a51f58fab0094 -Author: timothy-spencer -Date: Tue Mar 24 11:08:46 2020 -0700 - - more documentation updates from laura feedback - -commit 5372732292bc783d412e646d713c08bc6e3bef60 -Author: timothy-spencer -Date: Tue Mar 24 10:58:21 2020 -0700 - - add docs about per-environment cloud.gov deploys - -commit c0429aecffe1fbdc8eb9f4699c8d30db7255dc27 -Author: timothy-spencer -Date: Tue Mar 24 10:55:07 2020 -0700 - - document XXX in documentation - -commit 632f362abca7f726f64d9c79284d704f12a98ada -Author: timothy-spencer -Date: Tue Mar 24 10:51:41 2020 -0700 - - incorporate many changes proposed by laura - -commit 80b2832c1a60c47f8b614dab5033600c43d60e15 -Author: timothy-spencer -Date: Mon Mar 23 17:40:13 2020 -0700 - - yank LATO diagram because it's wrong - -commit 77faef6b45f02966715333978c3e917c75388c9d -Author: timothy-spencer -Date: Mon Mar 23 17:39:05 2020 -0700 - - forgot to put diagram in - -commit a7dbbf5a89c3c59ef17eb56cb77a9c087985c77a -Author: timothy-spencer -Date: Mon Mar 23 17:36:16 2020 -0700 - - first stab at documenting everything - -commit 5beb4dfae63f41d0504024c586159db8450f1980 -Author: timothy-spencer -Date: Mon Mar 23 16:34:41 2020 -0700 - - added a comment - -commit 5c1788535b1405e4dc2c8f91cda48a339a733f42 -Author: timothy-spencer -Date: Mon Mar 23 16:33:32 2020 -0700 - - make sure header is using sizes properly - -commit 25def13b91f56ded2d3ac69845fc59edf2018ee6 -Author: timothy-spencer -Date: Mon Mar 23 16:18:53 2020 -0700 - - fixed ftanf.py to work with latest iteration of spreadsheet - -commit d8f16357ecb3b62918c3276e434227d4c9e551ee -Author: timothy-spencer -Date: Wed Mar 18 10:34:16 2020 -0700 - - fix trailer, zero pad numbers, handle some exceptions better - -commit 0716c243bde8d6233400c26aef6e1b8d276ea4d3 -Author: timothy-spencer -Date: Tue Mar 10 17:20:07 2020 -0700 - - added some fixups to make sure we handle the actual data properly - -commit ac64ed395e7e086c74a80fe0e82cfffe91729c31 -Author: ttran-hub <61292479+ttran-hub@users.noreply.github.com> -Date: Mon Mar 9 15:11:14 2020 -0700 - - 1st deploy productions (#4) - - * copy over prototype app from https://github.com/18F/tanf-prototype - - * turning off feature that HHS does not have enabled - - * set up so that dev/staging/prod work - - * added dev env - - * set CGHOSTNAME properly - - * trying to bump memory up - - * bump python version, try updating manifest to get memory to worker - - * added staging - - * update docs to test workflow - - * demo change to about page - - * removing my demo line - - * add workflows doc - - * removed link to doc section that does not exist - - * show easier way to run locally, enable owasp zap scanner - - * first stab at ftanf conversion script - - Co-authored-by: timothy-spencer - -commit 619ffa51d8721209fa80421c1bd5e7bdd0be5148 -Author: timothy-spencer -Date: Thu Mar 5 17:16:34 2020 -0800 - - first stab at ftanf conversion script - -commit 6b8083e5e7568c234b08ab8bccfc963309bbd797 -Author: timothy-spencer -Date: Mon Mar 2 15:51:00 2020 -0800 - - show easier way to run locally, enable owasp zap scanner - -commit 387c3ea086a0ad81b1b2b5c9703e70fa99b55987 -Author: timothy-spencer -Date: Fri Feb 28 15:06:08 2020 -0800 - - removed link to doc section that does not exist - -commit a5f6c055398f9229cc5a278f774dcc49c428162c -Author: timothy-spencer -Date: Fri Feb 28 15:04:56 2020 -0800 - - add workflows doc - -commit 02e34b3332cc2d5b84820df7c0cc55eea6201362 -Author: timothy-spencer -Date: Thu Feb 27 12:37:11 2020 -0800 - - removing my demo line - -commit 57dac3a448980d589ef751ca3e02cdef4dadd3b3 -Author: timothy-spencer -Date: Thu Feb 27 12:16:56 2020 -0800 - - demo change to about page - -commit 7d6402016bdba2aa52621fb9f1e77961398842ad -Author: timothy-spencer -Date: Wed Feb 26 16:25:46 2020 -0800 - - update docs to test workflow - -commit a46fd4969e51dd159afd5f3cdcd6bff6956cad6f -Author: timothy-spencer -Date: Wed Feb 26 16:02:40 2020 -0800 - - added staging - -commit 3a867c57d5177763abd6fe6bb4cc8ae67e8920ba -Author: timothy-spencer -Date: Wed Feb 26 15:51:02 2020 -0800 - - bump python version, try updating manifest to get memory to worker - -commit f6c6a3bc43c0f2f80e1aafdf7d6a268396d55a93 -Author: timothy-spencer -Date: Wed Feb 26 15:43:28 2020 -0800 - - trying to bump memory up - -commit a2b4a1bf736aeaa2e94cc7c0c3153f8d910982d2 -Author: timothy-spencer -Date: Wed Feb 26 14:45:16 2020 -0800 - - set CGHOSTNAME properly - -commit 0a4ec41b0be0795c83f54b06e1ebc63e8619f49c -Author: timothy-spencer -Date: Wed Feb 26 14:37:22 2020 -0800 - - added dev env - -commit 672b201021ab58c571530dd0a714f1b63dfdc270 -Author: timothy-spencer -Date: Wed Feb 26 12:14:49 2020 -0800 - - set up so that dev/staging/prod work - -commit 369b33ec72f9752db3920e2c12f9a5c0039c0c49 -Author: timothy-spencer -Date: Wed Feb 26 11:53:50 2020 -0800 - - turning off feature that HHS does not have enabled - -commit 38bb889ae4cb070c85aa42375ef9ff9726908a73 -Author: timothy-spencer -Date: Wed Feb 26 11:43:02 2020 -0800 - - copy over prototype app from https://github.com/18F/tanf-prototype - -commit b1ad3852a47e992f3fdc0334bd7273bc6c88aeca -Author: timothy-spencer -Date: Thu Feb 20 10:00:56 2020 -0800 - - initial checkin From 01c4117f4db604927994c319f1c3465dac38b1bf Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Thu, 30 May 2024 09:54:20 -0400 Subject: [PATCH 30/39] - Updated ADD_WORK_ACTIVITIES to zero fill --- .../tdpservice/parsers/schema_defs/tribal_tanf/t2.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index 1d7086d70a..cbf67c62db 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -1,7 +1,7 @@ """Schema for Tribal TANF T2 row of all submission types.""" -from tdpservice.parsers.transforms import tanf_ssn_decryption_func +from tdpservice.parsers.transforms import tanf_ssn_decryption_func, zero_pad from tdpservice.parsers.fields import Field, TransformField from tdpservice.parsers.row_schema import RowSchema, SchemaManager from tdpservice.parsers import validators @@ -622,7 +622,8 @@ validators.isInStringRange(0, 99), ], ), - Field( + TransformField( + zero_pad(2), item="61", name="ADD_WORK_ACTIVITIES", friendly_name="additional work activities", From c8963199e57af2d397600e61828a44b9abcf89fb Mon Sep 17 00:00:00 2001 From: Pennington Date: Thu, 30 May 2024 15:57:19 -0400 Subject: [PATCH 31/39] removing cat3 validator for fam affil hoh and tl and associated tests plus minor updates --- .../tdpservice/parsers/schema_defs/tanf/t2.py | 2 +- .../tdpservice/parsers/schema_defs/tanf/t5.py | 2 +- .../parsers/schema_defs/tribal_tanf/t2.py | 6 +- .../parsers/schema_defs/tribal_tanf/t5.py | 2 +- .../tdpservice/parsers/test/test_parse.py | 2 +- .../parsers/test/test_validators.py | 28 ------ tdrs-backend/tdpservice/parsers/validators.py | 98 ------------------- 7 files changed, 7 insertions(+), 133 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index 47b6e91446..34e843aad8 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -98,7 +98,7 @@ result_field_name="COOPERATION_CHILD_SUPPORT", result_function=validators.oneOf((1, 2, 9)), ), - validators.validate__FAM_AFF__HOH__Fed_Time(), + validators.if_then_validator( condition_field_name="FAMILY_AFFILIATION", condition_function=validators.isInLimits(1, 3), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index fa0e1792cc..b472ab3093 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -92,7 +92,7 @@ result_field_name="CITIZENSHIP_STATUS", result_function=validators.isInLimits(1, 2), ), - validators.validate__FAM_AFF__HOH__Count_Fed_Time(), + validators.if_then_validator( condition_field_name="DATE_OF_BIRTH", condition_function=validators.olderThan(18), diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py index cbf67c62db..e815ac8498 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t2.py @@ -98,7 +98,7 @@ result_field_name="COOPERATION_CHILD_SUPPORT", result_function=validators.oneOf((1, 2, 9)), ), - validators.validate__FAM_AFF__HOH__Fed_Time(), + validators.if_then_validator( condition_field_name="FAMILY_AFFILIATION", condition_function=validators.isInLimits(1, 3), @@ -347,9 +347,9 @@ type="string", startIndex=51, endIndex=53, - required=False, + required=True, validators=[ - validators.isInStringRange(0, 10), + validators.isInStringRange(1, 10), ], ), Field( diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py index bea143f31f..22ea004a80 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tribal_tanf/t5.py @@ -92,7 +92,7 @@ result_field_name="CITIZENSHIP_STATUS", result_function=validators.isInLimits(1, 2), ), - validators.validate__FAM_AFF__HOH__Count_Fed_Time(), + validators.if_then_validator( condition_field_name="FAMILY_AFFILIATION", condition_function=validators.matches(1), diff --git a/tdrs-backend/tdpservice/parsers/test/test_parse.py b/tdrs-backend/tdpservice/parsers/test/test_parse.py index 426490ec77..8bce2a7a0c 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_parse.py +++ b/tdrs-backend/tdpservice/parsers/test/test_parse.py @@ -1083,7 +1083,7 @@ def test_parse_tanf_section1_blanks_file(tanf_section1_file_with_blanks, dfs): parser_errors = ParserError.objects.filter(file=tanf_section1_file_with_blanks) - assert parser_errors.count() == 23 + assert parser_errors.count() == 22 # Should only be cat3 validator errors for error in parser_errors: diff --git a/tdrs-backend/tdpservice/parsers/test/test_validators.py b/tdrs-backend/tdpservice/parsers/test/test_validators.py index 8cc594e14d..e9d5ba2bc2 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_validators.py +++ b/tdrs-backend/tdpservice/parsers/test/test_validators.py @@ -869,19 +869,6 @@ def test_validate_cooperation_with_child_support(self, record): result = val(record, RowSchema()) assert result[0] is False - def test_validate_months_federal_time_limit(self, record): - """Test cat3 validator for federal time limit.""" - val = validators.validate__FAM_AFF__HOH__Fed_Time() - record.FAMILY_AFFILIATION = 0 - result = val(record, RowSchema()) - assert result == (True, None, ['FAMILY_AFFILIATION', 'RELATIONSHIP_HOH', 'MONTHS_FED_TIME_LIMIT']) - - record.FAMILY_AFFILIATION = 1 - record.MONTHS_FED_TIME_LIMIT = "000" - record.RELATIONSHIP_HOH = "01" - result = val(record, RowSchema()) - assert result[0] is False - def test_validate_employment_status(self, record): """Test cat3 validator for employment status.""" val = validators.if_then_validator( @@ -1180,21 +1167,6 @@ def test_validate_citizenship_status(self, record): result = val(record, RowSchema()) assert result[0] is False - def test_validate_hoh_fed_time(self, record): - """Test cat3 validator for federal disability.""" - val = validators.validate__FAM_AFF__HOH__Count_Fed_Time() - - record.FAMILY_AFFILIATION = 0 - result = val(record, RowSchema()) - assert result == (True, None, ['FAMILY_AFFILIATION', 'RELATIONSHIP_HOH', 'COUNTABLE_MONTH_FED_TIME']) - - record.FAMILY_AFFILIATION = 1 - record.RELATIONSHIP_HOH = 1 - record.COUNTABLE_MONTH_FED_TIME = 0 - - result = val(record, RowSchema()) - assert result[0] is False - def test_validate_oasdi_insurance(self, record): """Test cat3 validator for OASDI insurance.""" val = validators.if_then_validator( diff --git a/tdrs-backend/tdpservice/parsers/validators.py b/tdrs-backend/tdpservice/parsers/validators.py index 82624809fd..1d5abd7cb7 100644 --- a/tdrs-backend/tdpservice/parsers/validators.py +++ b/tdrs-backend/tdpservice/parsers/validators.py @@ -606,104 +606,6 @@ def validate(instance, row_schema): return validate - -def validate__FAM_AFF__HOH__Fed_Time(): - """If FAMILY_AFFILIATION == 1 and RELATIONSHIP_HOH == 1 or 2, then MONTHS_FED_TIME_LIMIT >= 1.""" - # value is instance - def validate(instance, row_schema): - false_case = (False, - f"{row_schema.record_type}: If FAMILY_AFFILIATION == 1 and RELATIONSHIP_HOH == 1 or 2, then " - + "MONTHS_FED_TIME_LIMIT >= 1.", - ["FAMILY_AFFILIATION", "RELATIONSHIP_HOH", "MONTHS_FED_TIME_LIMIT",], - ) - true_case = (True, - None, - ["FAMILY_AFFILIATION", "RELATIONSHIP_HOH", "MONTHS_FED_TIME_LIMIT",], - ) - try: - FAMILY_AFFILIATION = ( - instance["FAMILY_AFFILIATION"] - if type(instance) is dict - else getattr(instance, "FAMILY_AFFILIATION") - ) - RELATIONSHIP_HOH = ( - instance["RELATIONSHIP_HOH"] - if type(instance) is dict - else getattr(instance, "RELATIONSHIP_HOH") - ) - RELATIONSHIP_HOH = int(RELATIONSHIP_HOH) - MONTHS_FED_TIME_LIMIT = ( - instance["MONTHS_FED_TIME_LIMIT"] - if type(instance) is dict - else getattr(instance, "MONTHS_FED_TIME_LIMIT") - ) - if FAMILY_AFFILIATION == 1 and (RELATIONSHIP_HOH == 1 or RELATIONSHIP_HOH == 2): - if MONTHS_FED_TIME_LIMIT is None or int(MONTHS_FED_TIME_LIMIT) < 1: - return false_case - else: - return true_case - else: - return true_case - except Exception: - vals = {"FAMILY_AFFILIATION": FAMILY_AFFILIATION, - "RELATIONSHIP_HOH": RELATIONSHIP_HOH, - "MONTHS_FED_TIME_LIMIT": MONTHS_FED_TIME_LIMIT} - logger.debug("Caught exception in validator: validate__FAM_AFF__HOH__Fed_Time. With field values: " + - f"{vals}.") - return false_case - - return validate - - -def validate__FAM_AFF__HOH__Count_Fed_Time(): - """If FAMILY_AFFILIATION == 1 and RELATIONSHIP_HOH == 1 or 2, then COUNTABLE_MONTH_FED_TIME >= 1.""" - # value is instance - def validate(instance, row_schema): - false_case = (False, - f"{row_schema.record_type}: If FAMILY_AFFILIATION == 1 and RELATIONSHIP_HOH == 1 or 2, then " - + "COUNTABLE_MONTH_FED_TIME >= 1.", - ["FAMILY_AFFILIATION", "RELATIONSHIP_HOH", "COUNTABLE_MONTH_FED_TIME",], - ) - true_case = (True, - None, - ["FAMILY_AFFILIATION", "RELATIONSHIP_HOH", "COUNTABLE_MONTH_FED_TIME",], - ) - try: - FAMILY_AFFILIATION = ( - instance["FAMILY_AFFILIATION"] - if type(instance) is dict - else getattr(instance, "FAMILY_AFFILIATION") - ) - RELATIONSHIP_HOH = ( - instance["RELATIONSHIP_HOH"] - if type(instance) is dict - else getattr(instance, "RELATIONSHIP_HOH") - ) - RELATIONSHIP_HOH = int(RELATIONSHIP_HOH) - COUNTABLE_MONTH_FED_TIME = ( - instance["COUNTABLE_MONTH_FED_TIME"] - if type(instance) is dict - else getattr(instance, "COUNTABLE_MONTH_FED_TIME") - ) - if FAMILY_AFFILIATION == 1 and (RELATIONSHIP_HOH == 1 or RELATIONSHIP_HOH == 2): - if int(COUNTABLE_MONTH_FED_TIME) < 1: - return false_case - else: - return true_case - else: - return true_case - except Exception: - vals = {"FAMILY_AFFILIATION": FAMILY_AFFILIATION, - "RELATIONSHIP_HOH": RELATIONSHIP_HOH, - "COUNTABLE_MONTH_FED_TIME": COUNTABLE_MONTH_FED_TIME - } - logger.debug("Caught exception in validator: validate__FAM_AFF__HOH__Count_Fed_Time. With field values: " + - f"{vals}.") - return false_case - - return validate - - def validate_header_section_matches_submission(datafile, section, generate_error): """Validate header section matches submission section.""" is_valid = datafile.section == section From 40a6bbb971f8a352c023a146461c373f5f5fe302 Mon Sep 17 00:00:00 2001 From: Pennington Date: Thu, 30 May 2024 16:11:27 -0400 Subject: [PATCH 32/39] resolve linting error --- tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py index b472ab3093..df9bf9ce26 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t5.py @@ -92,7 +92,6 @@ result_field_name="CITIZENSHIP_STATUS", result_function=validators.isInLimits(1, 2), ), - validators.if_then_validator( condition_field_name="DATE_OF_BIRTH", condition_function=validators.olderThan(18), From 52aa35f4f7eeeffaf3bc41d4cacfe08fdca1d45d Mon Sep 17 00:00:00 2001 From: raftmsohani <97037188+raftmsohani@users.noreply.github.com> Date: Fri, 31 May 2024 08:34:42 -0400 Subject: [PATCH 33/39] 2901 generate auth token (#2967) * 2901 added generate auth token * 2901 override Tokenauthentication * 2901 added token expiring function * linting * added token expire time to settings file * removed unnecessary TODO * 2901 added writeup to authentication.md * moved the class to util function * replaced Token authenticator * Update tdrs-backend/docs/api/authentication.md Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> * Update tdrs-backend/tdpservice/security/views.py Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> * Update tdrs-backend/docs/api/authentication.md Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> * changed exception to log only * 2901 added approval status as a condition for get_token * updated the markdown * change env var from string to int --------- Co-authored-by: Andrew <84722778+andrew-jameson@users.noreply.github.com> --- tdrs-backend/docs/api/authentication.md | 11 ++++ .../tdpservice/security/test/test_views.py | 66 +++++++++++++++++++ tdrs-backend/tdpservice/security/urls.py | 12 ++++ tdrs-backend/tdpservice/security/utils.py | 43 ++++++++++++ tdrs-backend/tdpservice/security/views.py | 36 ++++++++++ tdrs-backend/tdpservice/settings/common.py | 4 +- tdrs-backend/tdpservice/urls.py | 1 + 7 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 tdrs-backend/tdpservice/security/test/test_views.py create mode 100644 tdrs-backend/tdpservice/security/urls.py create mode 100644 tdrs-backend/tdpservice/security/utils.py create mode 100644 tdrs-backend/tdpservice/security/views.py diff --git a/tdrs-backend/docs/api/authentication.md b/tdrs-backend/docs/api/authentication.md index e51f2174d3..177c232139 100644 --- a/tdrs-backend/docs/api/authentication.md +++ b/tdrs-backend/docs/api/authentication.md @@ -4,3 +4,14 @@ For clients to authenticate, they have to authenticate with Login.gov via the ba This will allow the backend to identify the browser which requested access and authorize them based on the cookie they provide in their API calls. The secured portion of this authorization is due to the httpOnly cookie being inaccessible to the client's local browser. + +# Generating API token + +In order to use APIs, an activated `OFA Sys Admin` user has to generate a new token and use it in the API request following these steps: +1. User has to first login using frontend and going through the normal login process +2. After user is logged in, user can grab a token at `/v1/security/get-token` +3. The token then can be used in authorization header. As an example: + +```curl --location 'http://{host}/v1/users/' --header 'Authorization: Token {token}'``` + +Note: the authentication token is available for 24 hours by default but this can be overridden using the `TOKEN_EXPIRATION_HOURS` environment variable. diff --git a/tdrs-backend/tdpservice/security/test/test_views.py b/tdrs-backend/tdpservice/security/test/test_views.py new file mode 100644 index 0000000000..b602ca577f --- /dev/null +++ b/tdrs-backend/tdpservice/security/test/test_views.py @@ -0,0 +1,66 @@ +"""Tests for the views in the security app.""" + +import pytest +import logging +from rest_framework.authtoken.models import Token +from tdpservice.users.models import User, AccountApprovalStatusChoices +from tdpservice.security.views import token_is_valid +from django.test import Client +from django.urls import reverse +from django.contrib.auth.models import Group + +client = Client() + +logger = logging.getLogger(__name__) + + +@pytest.fixture +def token(): + """Return a DRF token.""" + user = User.objects.create(username="testuser") + token = Token.objects.create(user=user) + return token + + +@pytest.mark.django_db +def test_token_is_valid(token): + """Test token_is_valid function.""" + logger.info(token.__dict__) + assert token_is_valid(token) is True + token.created = token.created.replace(year=2000) + # token.save() + assert token_is_valid(token) is False + + +@pytest.mark.django_db +def test_generate_new_token(client): + """Test generate_new_token function.""" + url = reverse("get-new-token") + # assert if user is not authenticated + response = client.get(url) + assert response.status_code == 302 + + # assert if user is not ofa_sys_admin + user = User.objects.create_user(username="testuser", password="testpassword") + user.save() + client.login(username="testuser", password="testpassword") + response = client.get(url) + assert response.status_code == 302 + + # assert if user is not approved + user.account_approval_status = AccountApprovalStatusChoices.PENDING + user.groups.add(Group.objects.get(name="OFA System Admin")) + user.save() + client.login(username="testuser", password="testpassword") + response = client.get(url) + assert response.status_code == 302 + + # assert if token is valid + user.account_approval_status = AccountApprovalStatusChoices.APPROVED + user.save() + + client.login(username="testuser", password="testpassword") + url = reverse("get-new-token") + response = client.get(url) + assert response.status_code == 200 + assert response.data == str(Token.objects.get(user=user)) diff --git a/tdrs-backend/tdpservice/security/urls.py b/tdrs-backend/tdpservice/security/urls.py new file mode 100644 index 0000000000..ef62d5e440 --- /dev/null +++ b/tdrs-backend/tdpservice/security/urls.py @@ -0,0 +1,12 @@ +"""URL patterns for the security app.""" + +from . import views +from django.urls import path + +urlpatterns = [ + path( + "get-token", + views.generate_new_token, + name="get-new-token", + ), +] diff --git a/tdrs-backend/tdpservice/security/utils.py b/tdrs-backend/tdpservice/security/utils.py new file mode 100644 index 0000000000..873dc3aa45 --- /dev/null +++ b/tdrs-backend/tdpservice/security/utils.py @@ -0,0 +1,43 @@ +"""Utility classes and functions for security.""" + +from rest_framework import exceptions +from rest_framework.authentication import TokenAuthentication +from django.utils.translation import gettext_lazy as _ +from datetime import datetime +import pytz +from datetime import timedelta +from django.conf import settings +import logging + +logger = logging.getLogger(__name__) + +def token_is_valid(token): + """Check if token is valid.""" + utc_now = datetime.now() + utc_now = utc_now.replace(tzinfo=pytz.utc) + if token.created < (utc_now - timedelta(hours=settings.TOKEN_EXPIRATION_HOURS)): + logger.info("API auth Token expired") + return False + return token is not None + +# have to use ExpTokenAuthentication in settings.py instead of TokenAuthentication +class ExpTokenAuthentication(TokenAuthentication): + """Custom token authentication class that checks if token is expired.""" + + # see https://github.com/encode/django-rest-framework/blob/master/rest_framework/authentication.py + + def authenticate_credentials(self, key): + """Authenticate the credentials.""" + model = self.get_model() + try: + token = model.objects.select_related("user").get(key=key) + except model.DoesNotExist: + raise exceptions.AuthenticationFailed(_("Invalid token.")) + + if not token.user.is_active: + raise exceptions.AuthenticationFailed(_("User inactive or deleted.")) + + if not token_is_valid(token): + raise exceptions.AuthenticationFailed(_("Token expired.")) + + return (token.user, token) diff --git a/tdrs-backend/tdpservice/security/views.py b/tdrs-backend/tdpservice/security/views.py new file mode 100644 index 0000000000..64377332cb --- /dev/null +++ b/tdrs-backend/tdpservice/security/views.py @@ -0,0 +1,36 @@ +"""Views for the security app.""" + +from rest_framework.decorators import api_view +from rest_framework.response import Response +from django.contrib.auth.decorators import user_passes_test +from tdpservice.users.models import User, AccountApprovalStatusChoices +from rest_framework.authtoken.models import Token +from tdpservice.security.utils import token_is_valid + +import logging + +logger = logging.getLogger(__name__) + + +def can_get_new_token(user): + """Check if user can get a new token.""" + return ( + user.is_authenticated + and user.is_ofa_sys_admin + and user.account_approval_status == AccountApprovalStatusChoices.APPROVED + ) + + +@user_passes_test(can_get_new_token, login_url="/login/") +@api_view(["GET"]) +def generate_new_token(request): + """Generate new token for the API user.""" + if request.method == "GET": + user = User.objects.get(username=request.user) + token, created = Token.objects.get_or_create(user=user) + if token_is_valid(token): + return Response(str(token)) + else: + token.delete() + token = Token.objects.create(user=user) + return Response(str(token)) diff --git a/tdrs-backend/tdpservice/settings/common.py b/tdrs-backend/tdpservice/settings/common.py index 50bc6cb90d..6ca924fe08 100644 --- a/tdrs-backend/tdpservice/settings/common.py +++ b/tdrs-backend/tdpservice/settings/common.py @@ -297,7 +297,7 @@ class Common(Configuration): "DEFAULT_AUTHENTICATION_CLASSES": ( "tdpservice.users.authentication.CustomAuthentication", "rest_framework.authentication.SessionAuthentication", - "rest_framework.authentication.TokenAuthentication", + "tdpservice.security.utils.ExpTokenAuthentication", ), "DEFAULT_FILTER_BACKENDS": [ "django_filters.rest_framework.DjangoFilterBackend", @@ -311,6 +311,8 @@ class Common(Configuration): "django.contrib.auth.backends.ModelBackend", ) + TOKEN_EXPIRATION_HOURS = int(os.getenv("TOKEN_EXPIRATION_HOURS", 24)) + # CORS CORS_ALLOW_CREDENTIALS = True diff --git a/tdrs-backend/tdpservice/urls.py b/tdrs-backend/tdpservice/urls.py index f19e26b982..d40e646518 100755 --- a/tdrs-backend/tdpservice/urls.py +++ b/tdrs-backend/tdpservice/urls.py @@ -38,6 +38,7 @@ path("stts/", include("tdpservice.stts.urls")), path("data_files/", include("tdpservice.data_files.urls")), path("logs/", write_logs), + path("security/", include("tdpservice.security.urls")), ] if settings.DEBUG: From 26adb891bb8ff8389e0bdbd7301002f5a16063d6 Mon Sep 17 00:00:00 2001 From: Pennington Date: Fri, 31 May 2024 15:08:24 -0400 Subject: [PATCH 34/39] remove whitespace --- tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py index 34e843aad8..683649a9be 100644 --- a/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py +++ b/tdrs-backend/tdpservice/parsers/schema_defs/tanf/t2.py @@ -98,7 +98,6 @@ result_field_name="COOPERATION_CHILD_SUPPORT", result_function=validators.oneOf((1, 2, 9)), ), - validators.if_then_validator( condition_field_name="FAMILY_AFFILIATION", condition_function=validators.isInLimits(1, 3), From 15b69ca80c6b81122021f3cb962b333c428833c2 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Sun, 2 Jun 2024 17:15:55 -0400 Subject: [PATCH 35/39] add sendgrid api key --- scripts/deploy-backend.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/deploy-backend.sh b/scripts/deploy-backend.sh index 7a742ad79b..4d9cbb764b 100755 --- a/scripts/deploy-backend.sh +++ b/scripts/deploy-backend.sh @@ -61,7 +61,8 @@ set_cf_envs() "LOGGING_LEVEL" "REDIS_URI" "JWT_KEY" - "STAGING_JWT_KEY" + "STAGING_JWT_KEY", + "SENDGRID_API_KEY", ) echo "Setting environment variables for $CGAPPNAME_BACKEND" From f29dc4df0ed01136d510a3194c63ca350479b917 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Mon, 3 Jun 2024 09:19:11 -0400 Subject: [PATCH 36/39] missed comma --- scripts/deploy-backend.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy-backend.sh b/scripts/deploy-backend.sh index 4d9cbb764b..295a378e21 100755 --- a/scripts/deploy-backend.sh +++ b/scripts/deploy-backend.sh @@ -60,7 +60,7 @@ set_cf_envs() "KIBANA_BASE_URL" "LOGGING_LEVEL" "REDIS_URI" - "JWT_KEY" + "JWT_KEY", "STAGING_JWT_KEY", "SENDGRID_API_KEY", ) From 79ba3d91f411d5a2d60273fe87e788c26957b914 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Mon, 3 Jun 2024 09:23:21 -0400 Subject: [PATCH 37/39] oh there were NOT supposed to be commas --- scripts/deploy-backend.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/deploy-backend.sh b/scripts/deploy-backend.sh index 295a378e21..3f53b6b594 100755 --- a/scripts/deploy-backend.sh +++ b/scripts/deploy-backend.sh @@ -60,9 +60,9 @@ set_cf_envs() "KIBANA_BASE_URL" "LOGGING_LEVEL" "REDIS_URI" - "JWT_KEY", - "STAGING_JWT_KEY", - "SENDGRID_API_KEY", + "JWT_KEY" + "STAGING_JWT_KEY" + "SENDGRID_API_KEY" ) echo "Setting environment variables for $CGAPPNAME_BACKEND" From 169320528515d4bbb702d7b09bbdd66d236c9313 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Mon, 3 Jun 2024 15:04:44 -0400 Subject: [PATCH 38/39] update env config to include secret key management --- .../004-configuration-by-environment-variable.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Technical-Documentation/Architecture-Decision-Record/004-configuration-by-environment-variable.md b/docs/Technical-Documentation/Architecture-Decision-Record/004-configuration-by-environment-variable.md index dbd6920c19..95c1a4604f 100644 --- a/docs/Technical-Documentation/Architecture-Decision-Record/004-configuration-by-environment-variable.md +++ b/docs/Technical-Documentation/Architecture-Decision-Record/004-configuration-by-environment-variable.md @@ -9,9 +9,11 @@ Accepted Applications need to be configured differently depending on where they are running. For example, the backend running locally will have different configuration then the backend running in production. +Further, environment variables can be designated "secret" or not; the term "secret key" is often used in place of secret environment variables. Secret keys are sometimes (but not always) shared between different deployment environments, which makes it useful to have a central "single source of truth" where a secret key can be kept and copied out to different environments. CircleCI solves this use case for us, allowing secret keys to be managed by the project's Environment Variables, and accessed in the deployment process to write to cloud.gov applications. + ## Decision -We will use environment variables to configure applications. +We will use environment variables to configure applications. We will use Environment Variables in CircleCI to store and manage secret keys. ## Consequences From 0326896149373eddaa4bd6a3ff88777a71afeb0f Mon Sep 17 00:00:00 2001 From: jtimpe <111305129+jtimpe@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:30:48 -0400 Subject: [PATCH 39/39] 2897 finalized reporting language (#2962) * remove development indicator from submission history table column headers * finalize error report messaging * adjust link start * fix test * fix other test * add submission history kc link * remove column_number * interpreting -> reviewing * interpreting -> reviewing * more descriptive guidance text * revert to single column instructions link --------- Co-authored-by: Alex P <63075587+ADPennington@users.noreply.github.com> --- .../tdpservice/data_files/test/test_api.py | 24 ++++++------ tdrs-backend/tdpservice/data_files/util.py | 38 +++++++++++++++---- .../SubmissionHistory/CaseAggregatesTable.jsx | 2 +- .../SubmissionHistory/SubmissionHistory.jsx | 36 ++++++++++++------ .../SubmissionHistory.test.js | 4 +- .../TotalAggregatesTable.jsx | 2 +- 6 files changed, 71 insertions(+), 35 deletions(-) diff --git a/tdrs-backend/tdpservice/data_files/test/test_api.py b/tdrs-backend/tdpservice/data_files/test/test_api.py index 57808de8f2..bc643d908b 100644 --- a/tdrs-backend/tdpservice/data_files/test/test_api.py +++ b/tdrs-backend/tdpservice/data_files/test/test_api.py @@ -96,11 +96,11 @@ def assert_error_report_tanf_file_content_matches_with_friendly_names(response): """Assert the error report file contents match expected with friendly names.""" ws = DataFileAPITestBase.get_spreadsheet(response) - COL_ERROR_MESSAGE = 5 + COL_ERROR_MESSAGE = 4 - assert ws.cell(row=1, column=1).value == "Error reporting in TDP is still in development.We'll" \ - + " be in touch when it's ready to use!For now please refer to the reports you receive via email" - assert ws.cell(row=5, column=COL_ERROR_MESSAGE).value == "if cash amount :873 validator1 passed" \ + assert ws.cell(row=1, column=1).value == "Please refer to the most recent versions of the coding " \ + + "instructions (linked below) when looking up items and allowable values during the data revision process" + assert ws.cell(row=8, column=COL_ERROR_MESSAGE).value == "if cash amount :873 validator1 passed" \ + " then number of months T1: 0 is not larger than 0." @staticmethod @@ -108,11 +108,11 @@ def assert_error_report_ssp_file_content_matches_with_friendly_names(response): """Assert the error report file contents match expected with friendly names.""" ws = DataFileAPITestBase.get_spreadsheet(response) - COL_ERROR_MESSAGE = 5 + COL_ERROR_MESSAGE = 4 - assert ws.cell(row=1, column=1).value == "Error reporting in TDP is still in development.We'll" \ - + " be in touch when it's ready to use!For now please refer to the reports you receive via email" - assert ws.cell(row=4, column=COL_ERROR_MESSAGE).value == "TRAILER record length is 15 characters " + \ + assert ws.cell(row=1, column=1).value == "Please refer to the most recent versions of the coding " \ + + "instructions (linked below) when looking up items and allowable values during the data revision process" + assert ws.cell(row=7, column=COL_ERROR_MESSAGE).value == "TRAILER record length is 15 characters " + \ "but must be 23." @staticmethod @@ -128,11 +128,11 @@ def assert_error_report_file_content_matches_without_friendly_names(response): wb = openpyxl.load_workbook('mycls.xlsx') ws = wb.get_sheet_by_name('Sheet1') - COL_ERROR_MESSAGE = 5 + COL_ERROR_MESSAGE = 4 - assert ws.cell(row=1, column=1).value == "Error reporting in TDP is still in development.We'll" \ - + " be in touch when it's ready to use!For now please refer to the reports you receive via email" - assert ws.cell(row=5, column=COL_ERROR_MESSAGE).value == ("if CASH_AMOUNT :873 validator1 passed then " + assert ws.cell(row=1, column=1).value == "Please refer to the most recent versions of the coding " \ + + "instructions (linked below) when looking up items and allowable values during the data revision process" + assert ws.cell(row=8, column=COL_ERROR_MESSAGE).value == ("if CASH_AMOUNT :873 validator1 passed then " "NBR_MONTHS T1: 0 is not larger than 0.") @staticmethod diff --git a/tdrs-backend/tdpservice/data_files/util.py b/tdrs-backend/tdpservice/data_files/util.py index 3c5470c13a..17beb90aa2 100644 --- a/tdrs-backend/tdpservice/data_files/util.py +++ b/tdrs-backend/tdpservice/data_files/util.py @@ -36,27 +36,51 @@ def format_error_msg(x): output = BytesIO() workbook = xlsxwriter.Workbook(output) worksheet = workbook.add_worksheet() + report_columns = [ ('case_number', lambda x: x['case_number']), ('year', lambda x: str(x['rpt_month_year'])[0:4] if x['rpt_month_year'] else None), ('month', lambda x: calendar.month_name[ int(str(x['rpt_month_year'])[4:]) ] if x['rpt_month_year'] else None), - ('error_type', lambda x: x['error_type']), ('error_message', lambda x: format_error_msg(chk(x))), ('item_number', lambda x: x['item_number']), ('item_name', lambda x: ','.join([i for i in chk(x)['fields_json']['friendly_name'].values()])), ('internal_variable_name', lambda x: ','.join([i for i in chk(x)['fields_json']['friendly_name'].keys()])), ('row_number', lambda x: x['row_number']), - ('column_number', lambda x: x['column_number']) ] # write beta banner - worksheet.write(row, col, - "Error reporting in TDP is still in development." + - "We'll be in touch when it's ready to use!" + - "For now please refer to the reports you receive via email") + worksheet.write( + row, col, + "Please refer to the most recent versions of the coding " + + "instructions (linked below) when looking up items " + + "and allowable values during the data revision process" + ) + + row, col = 1, 0 + worksheet.write_url( + row, col, + 'https://www.acf.hhs.gov/ofa/policy-guidance/tribal-tanf-data-coding-instructions', + string='For Tribal TANF data reports: Tribal TANF Instructions', + ) + row, col = 2, 0 + worksheet.write_url( + row, col, + 'https://www.acf.hhs.gov/ofa/policy-guidance/acf-ofa-pi-23-04', + string='For TANF and SSP-MOE data reports: TANF / SSP-MOE (ACF-199 / ACF-209) Instructions' + ) + + row, col = 3, 0 + worksheet.write_url( + row, col, + 'https://tdp-project-updates.app.cloud.gov/knowledge-center/viewing-error-reports.html', + string='Visit the Knowledge Center for further guidance on reviewing error reports' + ) + + row, col = 5, 0 + # write csv header bold = workbook.add_format({'bold': True}) @@ -68,7 +92,7 @@ def format_header(header_list: list): [worksheet.write(row, col, format_header(key[0]), bold) for col, key in enumerate(report_columns)] [ - worksheet.write(row + 3, col, key[1](data_i)) for col, key in enumerate(report_columns) + worksheet.write(row + 6, col, key[1](data_i)) for col, key in enumerate(report_columns) for row, data_i in enumerate(data) ] diff --git a/tdrs-frontend/src/components/SubmissionHistory/CaseAggregatesTable.jsx b/tdrs-frontend/src/components/SubmissionHistory/CaseAggregatesTable.jsx index 9800206c62..3ddfe7365f 100644 --- a/tdrs-frontend/src/components/SubmissionHistory/CaseAggregatesTable.jsx +++ b/tdrs-frontend/src/components/SubmissionHistory/CaseAggregatesTable.jsx @@ -121,7 +121,7 @@ export const CaseAggregatesTable = ({ files }) => ( Status - Error Reports (In development) + Error Reports diff --git a/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.jsx b/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.jsx index d61ce85ecf..654339ed64 100644 --- a/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.jsx +++ b/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.jsx @@ -72,17 +72,31 @@ const SubmissionHistory = ({ filterValues }) => { }, [hasFetchedFiles, files, dispatch, filterValues]) return ( -
- {fileUploadSections.map((section, index) => ( - f.section.includes(section))} - /> - ))} -
+ <> + +
+ {fileUploadSections.map((section, index) => ( + f.section.includes(section))} + /> + ))} +
+ ) } diff --git a/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.test.js b/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.test.js index 06baeb7301..325c7d898f 100644 --- a/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.test.js +++ b/tdrs-frontend/src/components/SubmissionHistory/SubmissionHistory.test.js @@ -241,9 +241,7 @@ describe('SubmissionHistory', () => { expect(screen.queryByText('test5.txt')).not.toBeInTheDocument() expect(screen.queryByText('test6.txt')).toBeInTheDocument() - expect( - screen.queryByText('Error Reports (In development)') - ).toBeInTheDocument() + expect(screen.queryByText('Error Reports')).toBeInTheDocument() }) it('Shows SSP results when SSP-MOE file type selected', () => { diff --git a/tdrs-frontend/src/components/SubmissionHistory/TotalAggregatesTable.jsx b/tdrs-frontend/src/components/SubmissionHistory/TotalAggregatesTable.jsx index 8a8e6fd5cf..3f4ba24a4d 100644 --- a/tdrs-frontend/src/components/SubmissionHistory/TotalAggregatesTable.jsx +++ b/tdrs-frontend/src/components/SubmissionHistory/TotalAggregatesTable.jsx @@ -109,7 +109,7 @@ export const TotalAggregatesTable = ({ files }) => ( Status - Error Reports (In development) + Error Reports