Skip to content

4.3.134

Compare
Choose a tag to compare
@swysor swysor released this 19 Dec 01:11
· 44 commits to 4.3 since this release
af35278

Generic badge

Changes for 4.3.134

Changes to branch 4.3 after version 4.3.133.

Commits
  • KZOO-96: Resolve emergency email num resolve correct caller id number to get proper address - by Taran Romana

    When e911 call is made from number different than number which has e911 active, make sure to resolve proper address and info. Also make sure to not try to send emails for e911 calls made using local carrier as we only care about numbers which have e911 activated and have email address setup for that.

  • SUPP-33: fix import/delete rates - by iceHESS

    Fix import/delete rates in tasks app and cb_rates.

    • fix import where ratedeck database was incorrectly formatted (like ratedeck/) because of

    ratedeck_id being an empty binary from CSV

    • fix delete returning result which causing crashes in kt_task_worker

    • in delete, group objects by db, also add better logging

    • convert import state to map

    • make a clean json to save to db: CSV missing fields are empty binary. Together with changes in kzd_rates make

    sure we are generating a clean JSON to be saved to db.

    • try to update rate doc on conflict: When a user deletes the rates from ratedeck db, it is soft deleted by default. This commit will try to update and ensure save the doc even if it is deleted.

    • fix kzd_rates accessors return empty binary: Tasks app CSV has empty binary for all fields that are missing from uploaded CSV. This will cause kzd_rates to always return empty string and doc save with them in db. This will make sure all accessros has correct type ne_binary and handle situation when the value is empty binary so we save a clean JSON in db.

  • KZOO-103: add smart formatting to remove hesitations - by holy-batman

    https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-output#smart_formatting

    Smart formatting remove hesitation as well as formats text more elegantly.

  • refresh maintenance view if not found - by iceHESS

  • MSPB-164: Spare numbers - by holy-batman

    fix issue where numbers were not being moved to spare where unassigned from a callflow.

  • SUPP-33: add maintenance view to all dbs, clean soft deleted from all dbs - by iceHESS

    We should remove soft deleted docs from all configured dbs. To this we also need

    to add maintenance view to all dbs.

    Also maintenance/soft_deletes is update to have id and rev so deleting won't

    required lookup_rev one by one.