Skip to content

Commit a25ebba

Browse files
committed
Merge branch 'release/0.9.0'
2 parents 67db749 + f18888f commit a25ebba

File tree

7 files changed

+535
-786
lines changed

7 files changed

+535
-786
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: Checkout

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php: ['7.4', '8.1']
14+
php: ['8.1', '8.2', '8.3', '8.4', 'latest']
1515

1616
steps:
1717
- name: Checkout

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
security:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010

1111
steps:
1212
- uses: actions/checkout@v2

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 0.9.0 (2025-03-03)
2+
--------------------------
3+
Bump Ubuntu Version in GH Actions
4+
Remove EoL PHP versions
5+
16
Version 0.8.0 (2024-12-12)
27
--------------------------
38
Add setCurlAmount and setRollingWindow setters to CurlEmitter

composer.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,19 @@
1313
"email": "[email protected]"
1414
},
1515
"require": {
16-
"php": ">=7.4",
16+
"php": ">=8.1",
1717
"ramsey/uuid": "^3 || ^4"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "^9.5.13",
2121
"php-coveralls/php-coveralls": "^2.5.2",
22-
"phpunit/php-token-stream": "^4.0.4"
22+
"phpunit/php-token-stream": "^4.0.4",
23+
"symfony/config": "^6.4.0",
24+
"symfony/console": "^6.4.0",
25+
"symfony/filesystem": "^6.4.0",
26+
"symfony/stopwatch": "^6.4.0",
27+
"symfony/yaml": "^6.4.0",
28+
"symfony/string": "^6.4.0"
2329
},
2430
"autoload": {
2531
"psr-4": {
@@ -31,4 +37,4 @@
3137
"name": "Snowplow Analytics Ltd"
3238
}
3339
]
34-
}
40+
}

0 commit comments

Comments
 (0)