diff --git a/electron/changelog.json b/electron/changelog.json index 3e6d166..a42b3aa 100644 --- a/electron/changelog.json +++ b/electron/changelog.json @@ -113,5 +113,9 @@ "title": "Release Notes for 1.1.2", "date": "04/12/2023", "notes": "Bug Fixes:\r\nResolved an issue where the incorrect ruleset could apply to a job on first import." + } ,"1.1.3": { + "title": "Release Notes for 1.1.3", + "date": "08/15/2023", + "notes": "Bug Fixes:\r\n- Added additional SUV and Truck models.\r\n- Searches must now be at least 4 characters to prevent long running searches.\r\n- Added right click context menu." } } diff --git a/hasura/metadata/backend_configs.yaml b/hasura/metadata/backend_configs.yaml new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/hasura/metadata/backend_configs.yaml @@ -0,0 +1 @@ +{} diff --git a/hasura/metadata/opentelemetry.yaml b/hasura/metadata/opentelemetry.yaml new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/hasura/metadata/opentelemetry.yaml @@ -0,0 +1 @@ +{} diff --git a/hasura/migrations/default/1692116556238_run_sql_migration/down.sql b/hasura/migrations/default/1692116556238_run_sql_migration/down.sql new file mode 100644 index 0000000..7314280 --- /dev/null +++ b/hasura/migrations/default/1692116556238_run_sql_migration/down.sql @@ -0,0 +1,3 @@ +-- Could not auto-generate a down migration. +-- Please write an appropriate down migration for the SQL below: +-- CREATE EXTENSION pg_trgm; diff --git a/hasura/migrations/default/1692116556238_run_sql_migration/up.sql b/hasura/migrations/default/1692116556238_run_sql_migration/up.sql new file mode 100644 index 0000000..d497121 --- /dev/null +++ b/hasura/migrations/default/1692116556238_run_sql_migration/up.sql @@ -0,0 +1 @@ +CREATE EXTENSION pg_trgm; diff --git a/hasura/migrations/default/1692116703924_run_sql_migration/down.sql b/hasura/migrations/default/1692116703924_run_sql_migration/down.sql new file mode 100644 index 0000000..eedd8b4 --- /dev/null +++ b/hasura/migrations/default/1692116703924_run_sql_migration/down.sql @@ -0,0 +1,5 @@ +-- Could not auto-generate a down migration. +-- Please write an appropriate down migration for the SQL below: +-- CREATE INDEX jobs_gin_ownr_fn ON jobs USING gin (ownr_fn gin_trgm_ops); +-- CREATE INDEX jobs_gin_ownr_ln ON jobs USING gin (ownr_ln gin_trgm_ops); +-- CREATE INDEX jobs_gin_clm_no ON jobs USING gin (clm_no gin_trgm_ops); diff --git a/hasura/migrations/default/1692116703924_run_sql_migration/up.sql b/hasura/migrations/default/1692116703924_run_sql_migration/up.sql new file mode 100644 index 0000000..727d1fe --- /dev/null +++ b/hasura/migrations/default/1692116703924_run_sql_migration/up.sql @@ -0,0 +1,3 @@ +CREATE INDEX jobs_gin_ownr_fn ON jobs USING gin (ownr_fn gin_trgm_ops); +CREATE INDEX jobs_gin_ownr_ln ON jobs USING gin (ownr_ln gin_trgm_ops); +CREATE INDEX jobs_gin_clm_no ON jobs USING gin (clm_no gin_trgm_ops); diff --git a/hasura/migrations/default/1692116819081_create_index_veh_groups_make/down.sql b/hasura/migrations/default/1692116819081_create_index_veh_groups_make/down.sql new file mode 100644 index 0000000..f179d25 --- /dev/null +++ b/hasura/migrations/default/1692116819081_create_index_veh_groups_make/down.sql @@ -0,0 +1 @@ +DROP INDEX IF EXISTS "public"."veh_groups_make"; diff --git a/hasura/migrations/default/1692116819081_create_index_veh_groups_make/up.sql b/hasura/migrations/default/1692116819081_create_index_veh_groups_make/up.sql new file mode 100644 index 0000000..6305b28 --- /dev/null +++ b/hasura/migrations/default/1692116819081_create_index_veh_groups_make/up.sql @@ -0,0 +1,2 @@ +CREATE INDEX "veh_groups_make" on + "public"."veh_groups" using btree ("make"); diff --git a/hasura/migrations/default/1692116850279_create_index_groupings_make/down.sql b/hasura/migrations/default/1692116850279_create_index_groupings_make/down.sql new file mode 100644 index 0000000..af6e37b --- /dev/null +++ b/hasura/migrations/default/1692116850279_create_index_groupings_make/down.sql @@ -0,0 +1 @@ +DROP INDEX IF EXISTS "public"."groupings_make"; diff --git a/hasura/migrations/default/1692116850279_create_index_groupings_make/up.sql b/hasura/migrations/default/1692116850279_create_index_groupings_make/up.sql new file mode 100644 index 0000000..0d0923e --- /dev/null +++ b/hasura/migrations/default/1692116850279_create_index_groupings_make/up.sql @@ -0,0 +1,2 @@ +CREATE INDEX "groupings_make" on + "public"."groupings" using btree ("make");