Skip to content

Commit ce73345

Browse files
roxblnfkgithub-actions
andauthored
chore(master): release 1.13.17 (#190)
* chore(master): release 1.13.17 * style(php-cs-fixer): fix coding standards --------- Co-authored-by: github-actions <github-actions@users.noreply.github.com>
1 parent 6ee27aa commit ce73345

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 1.13.17 (2025-09-05)
4+
5+
## What's Changed
6+
* Add CONTRIBUTING.md by @DimaTiunov in https://github.com/buggregator/trap/pull/189
7+
* Use `getenv()` for getting environment variable values by @vjik in https://github.com/buggregator/trap/pull/193
8+
9+
## New Contributors
10+
* @DimaTiunov made their first contribution in https://github.com/buggregator/trap/pull/189
11+
* @vjik made their first contribution in https://github.com/buggregator/trap/pull/193
12+
13+
**Full Changelog**: https://github.com/buggregator/trap/compare/1.13.16...1.13.17
14+
315
## 1.13.16 (2025-06-09)
416

517
## What's Changed

resources/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.13.16"
2+
".": "1.13.17"
33
}

src/Client/TrapHandle.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,12 @@ private function getEnvValue(string $name, string $default): string
251251
return $_ENV[$name];
252252
}
253253

254-
$value = getenv($name, true);
254+
$value = \getenv($name, true);
255255
if ($value !== false) {
256256
return $value;
257257
}
258258

259-
$value = getenv($name);
259+
$value = \getenv($name);
260260
if ($value !== false) {
261261
return $value;
262262
}

0 commit comments

Comments
 (0)