diff --git a/bootstrap/helpers/services.php b/bootstrap/helpers/services.php index 5b71a8b10..8e3c0337e 100644 --- a/bootstrap/helpers/services.php +++ b/bootstrap/helpers/services.php @@ -18,7 +18,7 @@ function collectRegex(string $name) } function replaceVariables($variable) { - return $variable->after('${')->before('}'); + return $variable->replaceFirst('$', '')->replaceFirst('{', '')->replaceLast('}', ''); } function getFilesystemVolumesFromServer(ServiceApplication|ServiceDatabase|Application $oneService, bool $isInit = false) diff --git a/config/sentry.php b/config/sentry.php index bfdaf0b4c..2b48e1f14 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.268', + 'release' => '4.0.0-beta.269', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index b65f24d33..bf35359e8 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@