Skip to content

Commit 4755933

Browse files
authored
Merge pull request #81 from CyberfusionIO/1.103.1
Version 1.103.2
2 parents 71052ef + 926438f commit 4755933

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
this package and not the cluster API. See the changelog of the [cluster API](https://cluster-api.cyberfusion.nl/redoc#section/Changelog)
77
for detailed information.
88

9+
## [1.103.2]
10+
11+
## Changed
12+
13+
- CustomConfigSnippets: name regex has been updated.
14+
915
## [1.103.1]
1016

1117
### Fixed

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Client implements ClientContract
1717
{
1818
private const CONNECT_TIMEOUT = 60;
1919
private const TIMEOUT = 180;
20-
private const VERSION = '1.103.1';
20+
private const VERSION = '1.103.2';
2121
private const USER_AGENT = 'cyberfusion-cluster-api-client/' . self::VERSION;
2222
private GuzzleClient $httpClient;
2323

src/Models/CustomConfigSnippet.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function setName(string $name): self
2828
Validator::value($name)
2929
->minLength(1)
3030
->maxLength(32)
31-
->pattern('^[a-z_]+$')
31+
->pattern('^[a-z0-9_]+$')
3232
->validate();
3333

3434
$this->name = $name;

0 commit comments

Comments
 (0)