Compare commits
18 Commits
issue-bund
...
1.5.0
Author | SHA1 | Date | |
---|---|---|---|
61a77cc1de | |||
|
0c65d3d681 | ||
9c125c6af6 | |||
e701b75f1e
|
|||
6c0caef3d5
|
|||
103282e44b
|
|||
dd591628a8
|
|||
656d27080b
|
|||
8d1693285d
|
|||
818b4c36a3
|
|||
0fb57fcdd8 | |||
|
c8d89e2a1d | ||
d142fbe471 | |||
deadabefa1 | |||
2c9ec9db55
|
|||
4aea2fe135
|
|||
f7dc506506
|
|||
8ef752fdd0
|
4
.changes/v1.4.0.md
Normal file
4
.changes/v1.4.0.md
Normal file
@@ -0,0 +1,4 @@
|
||||
## v1.4.0 - 2024-02-08
|
||||
### Release
|
||||
* Upgrade nodes dependencies
|
||||
* Update dependencies. Chill-bundles upgraded from 2.14.1 to 2.16.0
|
3
.changes/v1.4.1.md
Normal file
3
.changes/v1.4.1.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.4.1 - 2024-02-08
|
||||
### Fixed
|
||||
* upgrade node version while compiling
|
3
.changes/v1.4.2.md
Normal file
3
.changes/v1.4.2.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.4.2 - 2024-02-08
|
||||
### Fixed
|
||||
* Fix version of bootstrap temporarily
|
3
.changes/v1.4.3.md
Normal file
3
.changes/v1.4.3.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.4.3 - 2024-02-08
|
||||
### Fixed
|
||||
* better restriction for bootstrap version
|
3
.changes/v1.4.4.md
Normal file
3
.changes/v1.4.4.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.4.4 - 2024-02-08
|
||||
### Fixed
|
||||
* fix incorrect upgrade
|
3
.changes/v1.5.0.md
Normal file
3
.changes/v1.5.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## v1.5.0 - 2024-02-08
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.0 to 2.16.1
|
@@ -37,10 +37,11 @@ steps:
|
||||
- build-base-image
|
||||
|
||||
- name: build-assets
|
||||
image: node:14
|
||||
image: node:20
|
||||
pull: always
|
||||
commands:
|
||||
- yarn install
|
||||
- yarn list
|
||||
- yarn run encore production
|
||||
depends_on:
|
||||
- composer-install
|
||||
@@ -111,6 +112,6 @@ steps:
|
||||
|
||||
---
|
||||
kind: signature
|
||||
hmac: 707a5ef589fb6320f9e9e1dec7d8d4d11b477ba09e3b2b08d6f31f98d6d3f5d0
|
||||
hmac: 0bca4dec9822a08338f6f3b88badf771558aee19b41967837aa64853a1573cad
|
||||
|
||||
...
|
||||
|
25
CHANGELOG.md
25
CHANGELOG.md
@@ -6,6 +6,31 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||
|
||||
|
||||
## v1.5.0 - 2024-02-08
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.16.0 to 2.16.1
|
||||
|
||||
## v1.4.4 - 2024-02-08
|
||||
### Fixed
|
||||
* fix incorrect upgrade
|
||||
|
||||
## v1.4.3 - 2024-02-08
|
||||
### Fixed
|
||||
* better restriction for bootstrap version
|
||||
|
||||
## v1.4.2 - 2024-02-08
|
||||
### Fixed
|
||||
* Fix version of bootstrap temporarily
|
||||
|
||||
## v1.4.1 - 2024-02-08
|
||||
### Fixed
|
||||
* upgrade node version while compiling
|
||||
|
||||
## v1.4.0 - 2024-02-08
|
||||
### Release
|
||||
* Upgrade nodes dependencies
|
||||
* Update dependencies. Chill-bundles upgraded from 2.14.1 to 2.16.0
|
||||
|
||||
## v1.3.0 - 2023-11-30
|
||||
### Release
|
||||
* Update dependencies. Chill-bundles upgraded from 2.14.0 to 2.14.1
|
||||
|
@@ -15,7 +15,7 @@
|
||||
},
|
||||
"require": {
|
||||
"ext-redis": "*",
|
||||
"chill-project/chill-bundles": "2.14.1",
|
||||
"chill-project/chill-bundles": "2.16.1",
|
||||
"symfony/flex": "^1.9",
|
||||
"symfony/http-client": "^4.4 || ^5",
|
||||
"nelmio/alice": "^3.8",
|
||||
|
893
composer.lock
generated
893
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -36,4 +36,5 @@ return [
|
||||
App\App::class => ['all' => true],
|
||||
KnpU\OAuth2ClientBundle\KnpUOAuth2ClientBundle::class => ['all' => true],
|
||||
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
|
||||
Chill\EventBundle\ChillEventBundle::class => ['all' => true],
|
||||
];
|
||||
|
@@ -7,7 +7,7 @@ doctrine_migrations:
|
||||
'Chill\Migrations\Activity': '@ChillActivityBundle/migrations'
|
||||
'Chill\Migrations\DocStore': '@ChillDocStoreBundle/migrations'
|
||||
'Chill\Migrations\CustomFields': '@ChillCustomFieldsBundle/migrations'
|
||||
# 'Chill\Migrations\Event': '@ChillEventBundle/migrations'
|
||||
'Chill\Migrations\Event': '@ChillEventBundle/migrations'
|
||||
'Chill\Migrations\Person': '@ChillPersonBundle/migrations'
|
||||
'Chill\Migrations\Task': '@ChillTaskBundle/migrations'
|
||||
'Chill\Migrations\ThirdParty': '@ChillThirdPartyBundle/migrations'
|
||||
|
@@ -18,4 +18,4 @@ docker run \
|
||||
--volume ${PWD}:/app \
|
||||
--workdir /app \
|
||||
--env YARN_CACHE_FOLDER=/app/.yarncache \
|
||||
node:16 ${cmd}
|
||||
node:20 ${cmd}
|
||||
|
@@ -3,6 +3,9 @@
|
||||
"vendor/chill-project/chill-bundles"
|
||||
],
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"bootstrap": "5.2.3"
|
||||
},
|
||||
"scripts": {
|
||||
"specs-build": "yaml-merge vendor/chill-project/chill-bundles/src/Bundle/ChillMainBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillPersonBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillCalendarBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillThirdPartyBundle/chill.api.specs.yaml vendor/chill-project/chill-bundles/src/Bundle/ChillDocStoreBundle/chill.api.specs.yaml> templates/api/specs.yaml",
|
||||
"specs-validate": "swagger-cli validate templates/api/specs.yaml",
|
||||
|
@@ -86,6 +86,9 @@ Activity reasons for those activities: Sujets de ces échanges
|
||||
Filter by activity type: Filtrer par type d'échange
|
||||
Activity type: Type d'échange
|
||||
Activity user: Utilisateur lié à l'activity
|
||||
Aggregate by activity user: Aggréger par utilisateur lié à l'échange
|
||||
Aggregate by activity type: Aggréger par type d'échange
|
||||
Aggregate by activity reason: Aggréger par sujet de l'échange
|
||||
There isn't any activities.: Aucun échange enregistré.
|
||||
Last activities: Les derniers échanges
|
||||
Activities: Échanges
|
||||
|
Reference in New Issue
Block a user