Compare commits

..

No commits in common. "9b42f328ae89bbed24f05658e97da8b433477cf1" and "e8c506e8837cf21030f2d7a6f3a0f9d16c310fe5" have entirely different histories.

15 changed files with 3692 additions and 4301 deletions

View File

@ -1,4 +0,0 @@
## v1.4.0 - 2024-02-08
### Release
* Upgrade nodes dependencies
* Update dependencies. Chill-bundles upgraded from 2.14.1 to 2.16.0

View File

@ -1,3 +0,0 @@
## v1.4.1 - 2024-02-08
### Fixed
* upgrade node version while compiling

View File

@ -1,3 +0,0 @@
## v1.4.2 - 2024-02-08
### Fixed
* Fix version of bootstrap temporarily

View File

@ -1,3 +0,0 @@
## v1.4.3 - 2024-02-08
### Fixed
* better restriction for bootstrap version

View File

@ -1,3 +0,0 @@
## v1.4.4 - 2024-02-08
### Fixed
* fix incorrect upgrade

View File

@ -37,11 +37,10 @@ steps:
- build-base-image
- name: build-assets
image: node:20
image: node:14
pull: always
commands:
- yarn install
- yarn list
- yarn run encore production
depends_on:
- composer-install
@ -112,6 +111,6 @@ steps:
---
kind: signature
hmac: 0bca4dec9822a08338f6f3b88badf771558aee19b41967837aa64853a1573cad
hmac: 707a5ef589fb6320f9e9e1dec7d8d4d11b477ba09e3b2b08d6f31f98d6d3f5d0
...

View File

@ -6,27 +6,6 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
## 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

View File

@ -15,14 +15,14 @@
},
"require": {
"ext-redis": "*",
"chill-project/chill-bundles": "^2.16",
"chill-project/chill-bundles": "dev-upgrade-sf5@dev",
"symfony/flex": "^1.9",
"nelmio/alice": "^3.8",
"phpoffice/phpword": "^0.18.2",
"phpstan/phpstan": "^1.0",
"spomky-labs/base64url": "^2.0",
"twig/string-extra": "^3.3",
"symfony/runtime": "5.4.*"
"symfony/runtime": "^5.4"
},
"require-dev": {
"fakerphp/faker": "^1.13",

3515
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -35,6 +35,4 @@ 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],
ChampsLibres\AsyncUploaderBundle\ChampsLibresAsyncUploaderBundle::class => ['all' => true],
];

View File

@ -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'

View File

@ -18,4 +18,4 @@ docker run \
--volume ${PWD}:/app \
--workdir /app \
--env YARN_CACHE_FOLDER=/app/.yarncache \
node:20 ${cmd}
node:16 ${cmd}

View File

@ -3,9 +3,6 @@
"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",

View File

@ -2,9 +2,6 @@
"brick/math": {
"version": "0.9.3"
},
"champs-libres/async-uploader-bundle": {
"version": "dev-sf4"
},
"champs-libres/wopi-bundle": {
"version": "dev-master"
},

4420
yarn.lock

File diff suppressed because it is too large Load Diff