Skip to content

Releases: 2600hz/monster-ui

5.5.5

16 Mar 17:26
1a24192

Choose a tag to compare

5.4.31

17 Mar 13:20
24bf098

Choose a tag to compare

5.4.30.7

13 Mar 20:57

Choose a tag to compare

Generic badge

Changes for 5.4.30.7

Changes to branch fix-5.4.30 after version 5.4.30.6.

Commits

5.4.30.6

10 Mar 16:04
7774bfe

Choose a tag to compare

Generic badge

Changes for 5.4.30.6

Changes to branch fix-5.4.30 after version 5.4.30.5.

Commits

5.4.30.5

26 Feb 20:22
b0af8a1

Choose a tag to compare

Generic badge

Changes for 5.4.30.5

Changes to branch fix-5.4.30 after version 5.4.30.4.

Commits

5.4.30.4

25 Feb 21:40
a490529

Choose a tag to compare

Generic badge

Changes for 5.4.30.4

Changes to branch fix-5.4.30 after version 5.4.30.3.

Commits

5.4.30.3

24 Feb 14:42

Choose a tag to compare

Generic badge

Changes for 5.4.30.3

Changes to branch fix-5.4.30 after version 5.4.30.2.

Commits

5.4.30.2

04 Feb 17:06
693cca3

Choose a tag to compare

Generic badge

Changes for 5.4.30.2

Changes to branch fix-5.4.30 after version 5.4.30.1.

Commits

5.5.4

24 Dec 13:50
5346bad

Choose a tag to compare

Generic badge

Changes for 5.5.4

Changes to branch 5.5 after version 5.5.3.

Commits
  • MACF-100: Add file mime type and other JQuery validation addons - by Guillermo Gutiérrez

  • [5.5] SHIP-121: Removes CentOS 7 (el7) and Rocky Linux 8 (el8) from Shipyard config - by shipyard

  • [5.5] SHIP-121: Removes CentOS 7 (el7) and Rocky Linux 8 (el8) from circleci config - by shipyard

  • MSTR-346: Add password visibility icon to login page - by Pilar Candia

  • MSPB-392: Restore E911 street line for Dash - by Ramen Romana

    Summary

    Restores the E911 street format to ensure Dash receives the full street address while Intrado maintains its split house number for provisioning consistency.

    Implementation Details

    • e911Normalize

    • Trims the street field.

    • Stores the complete street line in street_address.

    • Extracts only the leading numeric token into legacy_data.house_number, preserving all other legacy metadata.

    • e911Format

    • Displays the stored street_address value directly.

    • Prepends the legacy house number only when required.

    • Prevents duplicated house numbers from appearing in the UI modal.

    Provider Behavior and Validation

    Dash (Bandwidth)

    • Receives payloads in the expected schema, enabling successful geocoding.
    {
    
    "street_address": "188 DOVE CIR",
    
    "legacy_data": { "house_number": "188" }
    
    }
    
    • Matches Bandwidth’s E911 schema, where full street and house number are handled independently.

    Example response from Dash API:

    <ns0:getLocationsByURIResponse xmlns:ns0="http://dashcs.com/api/v1/emergency">
    
    <Locations>
    
    <address1>1855 BLAKE ST</address1>
    
    <legacydata>
    
    <housenumber>1855</housenumber>
    
    <streetname>BLAKE ST</streetname>
    
    </legacydata>
    
    <status>
    
    <code>PROVISIONED</code>
    
    <description>Location is currently provisioned for URI</description>
    
    </status>
    
    </Locations>
    
    </ns0:getLocationsByURIResponse>
    

    Intrado

    • Continues to receive the full street line along with the split house number.

    • Provisioning remains successful, and coordinate differences are limited to rounding precision.

    Before

    "e911": {
    
    "street_address": "DOVE CIR",
    
    "legacy_data": { "house_number": "188" },
    
    "latitude": "26.703117",
    
    "longitude": "-80.2129098"
    
    }
    

    After Code Change

    "e911": {
    
    "street_address": "188 DOVE CIR",
    
    "legacy_data": { "house_number": "188" },
    
    "latitude": "26.70311",
    
    "longitude": "-80.2129"
    
    }
    

    Testing and Coverage

    • Verified across Smart PBX Numbers, Main Number, and Caller ID modals.

    • Tested in both Dash and Intrado environments.

    • Payloads remain identical across all flows, and provisioning completes successfully in all cases.

  • MSTR-198: Fix styles for spinner widget at navigation wizard - by Guillermo Gutiérrez

5.4.30.1

14 Nov 15:40

Choose a tag to compare

Generic badge

Changes for 5.4.30.1

Changes to branch fix-5.4.30 after version 5.4.30.

Commits