Compare commits

..
Author SHA1 Message Date
julielenaerts fd924da17a Add configuration for exposing VersionProvider 2026-01-05 15:08:29 +01:00
13 changed files with 2988 additions and 3102 deletions
-3
View File
@@ -1,3 +0,0 @@
## 2.13.0 - 2026-07-10
### Release
* Release chill with bundles version 5.1.3
@@ -0,0 +1,5 @@
kind: Feature
body: Display version of chill bundles in application footer
time: 2026-01-05T15:07:41.09639691+01:00
custom:
Issue: ""
+3
View File
@@ -33,3 +33,6 @@ phpstan.neon
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###
.idea/*
/bin/*
-4
View File
@@ -6,10 +6,6 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
## 2.13.0 - 2026-07-10
### Release
* Release chill with bundles version 5.1.3
## 2.12.0 - 2025-11-10
### Release
* Update chill bundles to v4.7.0
+1 -1
View File
@@ -15,7 +15,7 @@
},
"require": {
"ext-redis": "*",
"chill-project/chill-bundles": "v5.1.3",
"chill-project/chill-bundles": "v4.7.0",
"hslavich/oneloginsaml-bundle": "^2.10",
"symfony/runtime": "^5.4.0",
"symfony/console": "5.4.*",
Generated
+611 -679
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -30,7 +30,6 @@ return [
Chill\BudgetBundle\ChillBudgetBundle::class => ['all' => true],
Chill\WopiBundle\ChillWopiBundle::class => ['all' => true],
Chill\EventBundle\ChillEventBundle::class => ['all' => true],
Chill\TicketBundle\ChillTicketBundle::class => ['all' => true],
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
@@ -13,7 +13,6 @@ doctrine_migrations:
'Chill\Migrations\AsideActivity': '@ChillAsideActivityBundle/migrations'
'Chill\Migrations\Calendar': '@ChillCalendarBundle/migrations'
'Chill\Migrations\Budget': '@ChillBudgetBundle/migrations'
'Chill\Migrations\Ticket': '@ChillTicketBundle/migrations'
all_or_nothing:
true
-1
View File
@@ -49,7 +49,6 @@ security:
path: /logout
switch_user: true
# end of lines added by chill-bundles recipe
user_checker: chill_security.user_checker
# Easy way to control access for large sections of your site
# Note: Only the *first* access control that matches will be used
+3
View File
@@ -9,6 +9,9 @@ twig:
# and adapt it lightly.
#
form_themes: ['@ChillMain/Form/bootstrap5/bootstrap_5_horizontal_layout.html.twig']
globals:
# Expose the VersionProvider service to Twig as a global to have access to chill bundles version
chillBundlesVersion: '@Chill\MainBundle\Service\VersionProvider'
when@dev:
twig:
+5
View File
@@ -22,3 +22,8 @@ services:
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones
# provide version of installed chill bundles for display in interface
Chill\MainBundle\Service\VersionProvider:
arguments:
$packageName: 'chill-project/chill-bundles'
+11 -18
View File
@@ -94,26 +94,19 @@ module.exports = (async () => {
Encore
.setOutputPath('public/build/')
.setPublicPath('/build')
.enableSassLoader(function (options) {
// If set to true, Sass wont print warnings that are caused by dependencies (like bootstrap):
// https://sass-lang.com/documentation/js-api/interfaces/options/#quietDeps
options.sassOptions.quietDeps = true;
options.sassOptions.silenceDeprecations = ['import'];
})
.enableSassLoader()
.enableVueLoader(() => {}, {
version: 3,
runtimeCompilerBuild: true,
})
.enableTypeScriptLoader(function (tsConfig){
tsConfig.appendTsSuffixTo = [/\.vue$/];
tsConfig.appendTsxSuffixTo = [/\.vue$/];
// temporary fix for https://github.com/vuejs/vue-loader/issues/1915 and https://github.com/vuejs/core/issues/2855
tsConfig.compilerOptions = {strict: !Encore.isProduction()};
// disable type checking in ts-loader: Vue files are already checked by vue-tsc,
// and the generated code (e.g. mergeModels) may use APIs not yet in the bundled @vue/runtime-core types.
// see https://github.com/vuejs/core/issues/10331#issuecomment-1938909170
tsConfig.transpileOnly = true;
tsConfig.silent = false;
})
.enableTypeScriptLoader(/*function (tsConfig){
tsConfig.appendTsSuffixTo = [/\.vue$/];
tsConfig.appendTsxSuffixTo = [/\.vue$/];
// temporary fix for https://github.com/vuejs/vue-loader/issues/1915 and https://github.com/vuejs/core/issues/2855
tsConfig.compilerOptions = {strict: !Encore.isProduction()};
tsConfig.compilerOptions.paths = {"translator": [resolve(__dirname, "./assets/translator.ts")]};
tsConfig.silent = false;
}*/)
//.enableForkedTypeScriptTypesChecking()
.autoProvidejQuery()
.enableSourceMaps(!Encore.isProduction())
@@ -136,7 +129,7 @@ module.exports = (async () => {
;
Encore.addAliases({
translator: resolve(__dirname, './vendor/chill-project/chill-bundles/assets/translator'),
translator: resolve(__dirname, './vendor/chill-project/chill-bundles/assets/translator')
});
// populate config with chill entries
+2349 -2394
View File
File diff suppressed because it is too large Load Diff