Skip to content

Commit 4109ad8

Browse files
authored
Merge branch '5.x' into 5.x
2 parents 08deeb1 + 7714f0b commit 4109ad8

9 files changed

Lines changed: 229 additions & 181 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: "Checkout repository"
31-
uses: "actions/checkout@v4"
31+
uses: "actions/checkout@v6"
3232

3333
- name: "Install PHP"
3434
uses: "shivammathur/setup-php@v2"
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: "Checkout repository"
56-
uses: "actions/checkout@v4"
56+
uses: "actions/checkout@v6"
5757

5858
- name: "Install PHP"
5959
uses: "shivammathur/setup-php@v2"
@@ -81,10 +81,11 @@ jobs:
8181
- "8.2"
8282
- "8.3"
8383
- "8.4"
84+
- "8.5"
8485

8586
steps:
8687
- name: "Checkout repository"
87-
uses: "actions/checkout@v4"
88+
uses: "actions/checkout@v6"
8889

8990
- name: "Install dependencies (apt)"
9091
run: |
@@ -114,7 +115,7 @@ jobs:
114115

115116
steps:
116117
- name: "Checkout repository"
117-
uses: "actions/checkout@v4"
118+
uses: "actions/checkout@v6"
118119

119120
- name: "Install dependencies (apt)"
120121
run: |
@@ -159,6 +160,7 @@ jobs:
159160
- "8.2"
160161
- "8.3"
161162
- "8.4"
163+
- "8.5"
162164
operating-system:
163165
- "ubuntu-latest"
164166
- "windows-latest"
@@ -174,7 +176,7 @@ jobs:
174176
git config --system core.eol lf
175177
176178
- name: "Checkout repository"
177-
uses: "actions/checkout@v4"
179+
uses: "actions/checkout@v6"
178180

179181
- name: "Install dependencies (apt)"
180182
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
@@ -190,6 +192,10 @@ jobs:
190192
coverage: "none"
191193
ini-values: "memory_limit=-1"
192194

195+
- name: "Downgrade brick/math in lock file, to test compatibility with older versions"
196+
run: |
197+
composer update brick/math:"0.11.0"
198+
193199
- name: "Install dependencies (Composer)"
194200
uses: "ramsey/composer-install@v3"
195201
with:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7474
* Remove dependency on ramsey/collection package.
7575

7676

77+
## 4.9.1 - 2025-09-04
78+
79+
### Fixed
80+
81+
* Allow brick/math version `^0.14`; fixed in [#617](https://github.com/ramsey/uuid/pull/617).
82+
* Default to `microtime()` instead of `DateTimeImmutable` in `Ramsey\Uuid\Generator\UnixTimeGenerator`.
83+
84+
7785
## 4.9.0 - 2025-06-25
7886

7987
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"require": {
1212
"php": "^8.2",
13-
"brick/math": "^0.11 || ^0.12 || ^0.13"
13+
"brick/math": "^0.11 || ^0.12 || ^0.13 || ^0.14"
1414
},
1515
"require-dev": {
1616
"captainhook/captainhook": "^5.25",

0 commit comments

Comments
 (0)