Compare commits

..

9 Commits

Author SHA1 Message Date
gitea-actions 5eb4921c60 chore: bump version to v0.1.15
Auto Tag Develop / tag (push) Successful in 5s
Build & Push Docker Image / build (push) Successful in 17s
2026-04-06 14:44:06 +00:00
tristan c7e32c74b6 Merge remote-tracking branch 'origin/develop' into develop
Auto Tag Develop / tag (push) Has been cancelled
2026-04-06 16:43:58 +02:00
tristan e9850fdb2e fix : correct Link uriVariables for environment POST endpoint
Use toProperty + identifiers instead of fromProperty to resolve
application slug correctly.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 16:43:26 +02:00
gitea-actions 18ff7b4dbb chore: bump version to v0.1.14
Auto Tag Develop / tag (push) Successful in 5s
Build & Push Docker Image / build (push) Successful in 2m55s
2026-04-06 14:31:48 +00:00
tristan e99c50d243 fix : regenerate package-lock.json with node:lts-alpine for CI compatibility
Auto Tag Develop / tag (push) Has been cancelled
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 16:31:22 +02:00
gitea-actions d13e789a63 chore: bump version to v0.1.13
Auto Tag Develop / tag (push) Successful in 5s
Build & Push Docker Image / build (push) Failing after 10s
2026-04-06 14:29:11 +00:00
tristan d03fc7d33c feat/ajout-de-fonctionnalites (#2)
Auto Tag Develop / tag (push) Has been cancelled
Reviewed-on: #2
Co-authored-by: tristan <tristan@yuno.malio.fr>
Co-committed-by: tristan <tristan@yuno.malio.fr>
2026-04-06 14:29:04 +00:00
gitea-actions 585155dbb2 chore: bump version to v0.1.12
Auto Tag Develop / tag (push) Successful in 5s
Build & Push Docker Image / build (push) Failing after 9s
2026-04-06 14:23:27 +00:00
tristan 8f585b4be8 feat/ajout-de-fonctionnalites (#1)
Auto Tag Develop / tag (push) Successful in 6s
Reviewed-on: #1
Co-authored-by: tristan <tristan@yuno.malio.fr>
Co-committed-by: tristan <tristan@yuno.malio.fr>
2026-04-06 14:23:20 +00:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
parameters:
app.version: '0.1.11'
app.version: '0.1.15'
+1 -1
View File
@@ -21,7 +21,7 @@ use Symfony\Component\Serializer\Attribute\Groups;
new Post(
uriTemplate: '/applications/{slug}/environments',
uriVariables: [
'slug' => new Link(fromClass: Application::class, fromProperty: 'environments'),
'slug' => new Link(toProperty: 'application', fromClass: Application::class, identifiers: ['slug']),
],
security: "is_granted('ROLE_ADMIN')",
),