Releases: sumocoders/application-skeleton
Releases · sumocoders/application-skeleton
v9.0.0
What's Changed
- Symfony 7.1 by @jonasdekeukelaere in #116
- php 8.3 by @jonasdekeukelaere in #115
Full Changelog: v8.0.0...v9.0.0
v8.0.0
v7.0.6
What's Changed
- Fix local security checker download url by @absumo in #112
- PHP 8.3 by @tijsverkoyen in #113
Full Changelog: v7.0.5...v7.0.6
v7.0.5
v7.0.4
v7.0.3
What's Changed
- CI improvements by @tijsverkoyen in #105
- 290 page title fix pipelines by @bjorvack in #108
Full Changelog: v7.0.1...v7.0.3
v7.0.2
What's Changed
- CI improvements by @tijsverkoyen in #105
- 290 page title fix pipelines by @bjorvack in #108
Full Changelog: v7.0.1...v7.0.2
v7.0.1
v7.0
What's Changed
Changes to working with sensitive data
When working with sensitive data like database credentials
, api keys
, ... we no longer store this data in the .env
files.
This data should be stored in the Symfony vault
Setup
Generate the cryptographic keys
php bin/console secrets:generate-keys
Adding a value to the vault
php bin/console secrets:set DATABASE_PASSWORD
Referencing secrets
You can access any secret value just like you would access a ENV variable
# config/packages/doctrine.yaml
doctrine:
dbal:
password: '%env(DATABASE_PASSWORD)%'
Reveal secrets
Symfony has a console command to reveal all secrets using
php bin/console secrets:list --reveal
If only a value is needed a custom command is made
php bin/console secrets:get DATABASE_PASSWORD
Full Changelog: v6.6...v7.0
v6.6
What's Changed
- Remove bazinga by @daphneslootmans in #98
- Do not send sentry traces to third-parties by @absumo in #99
- Update framework init in PostCreateProject.php by @daphneslootmans in #100
- Update frameworkstylepackage to v3 by @daphneslootmans in #101
- Composer audit by @tijsverkoyen in #102
- Update deploy defaults for Cloudstar by @jonasdekeukelaere in #103
- Use mysql 5.7 by default and remove web container by @bjorvack in #104
New Contributors
- @daphneslootmans made their first contribution in #98
Full Changelog: v6.5.0...v6.6