Skip to content

Commit

Permalink
Feature/library updates (#954)
Browse files Browse the repository at this point in the history
* Update dependency twilio/sdk to v7

* Update dependency react-router-dom to v6.22.3

* Update dependency plotly.js-dist to v2.30.0

* Update dependency react-player to v2.15.1

* Update shivammathur/setup-php action to v2.30.0

* adding more test

* handling errors on settings page

* remove test not being used

* taking suggestions

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
dgershman and renovate[bot] authored Mar 11, 2024
1 parent c08e82a commit fe7eeff
Show file tree
Hide file tree
Showing 10 changed files with 411 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: php ${{ matrix.php }} 🐘
id: setup-php
uses: shivammathur/setup-php@2.29.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: ${{ matrix.php }}
tools: composer:v2.4.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: php ${{ matrix.php }} 🐘
id: setup-php
uses: shivammathur/setup-php@2.29.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: ${{ matrix.php }}
tools: composer:v2.4.1
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:

- name: php ${{ matrix.php }} 🐘
id: setup-php
uses: shivammathur/setup-php@2.29.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: ${{ matrix.php }}
tools: composer:v2.4.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: php ${{ matrix.php }} 🐘
id: setup-php
uses: shivammathur/setup-php@2.29.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: ${{ matrix.php }}
tools: composer:v2.4.1
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:

- name: php ${{ matrix.php }} 🐘
id: setup-php
uses: shivammathur/setup-php@2.29.0
uses: shivammathur/setup-php@2.30.0
with:
php-version: ${{ matrix.php }}
tools: composer:v2.4.1
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/CallFlowController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ private function getResultsString($filtered_list)
}

if ($this->settings->has('include_map_link') && json_decode($this->settings->get('include_map_link'))) {
array_push($results_string["location_links"], sprintf("https://maps.google.com/maps?q=%s,%s&hl=%s", $filtered_list->latitude, $filtered_list->longitude, $GLOBALS['short_language']));
array_push($results_string["location_links"], sprintf("https://maps.google.com/maps?q=%s,%s&hl=%s", $filtered_list->latitude, $filtered_list->longitude, $this->settings->get('short_language')));
}
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"laravel/framework": "^10.39.0",
"laravel/tinker": "^2.8.2",
"phpmailer/phpmailer": "^6.9.1",
"twilio/sdk": "^6.44.4"
"twilio/sdk": "^7.0.0"
},
"require-dev": {
"fakerphp/faker": "^1.23.0",
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion resources/views/admin/settings.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@if (!$value['hidden'])
<tr>
<td>{{ $key }}
@if ($value['description'] != "")
@if (!empty($value['description']))
<a href="{{ $settings->get("docs_base") }}{{ $value['description'] }}"
target="_blank">📖</a>
@endif
Expand Down
Loading

0 comments on commit fe7eeff

Please sign in to comment.