Skip to content

Releases: sumocoders/application-skeleton

v9.0.0

04 Jun 08:19
5ffca9d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.0.0...v9.0.0

v8.0.0

27 May 07:51
84170f9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.6...v8.0.0

v7.0.6

22 May 09:04
c7528d0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.5...v7.0.6

v7.0.5

14 May 14:35
b5574a2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.4...v7.0.5

v7.0.4

07 May 06:51
36a8c0a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.3...v7.0.4

v7.0.3

15 Mar 08:13
8b7a4d2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.1...v7.0.3

v7.0.2

13 Feb 14:38
8b7a4d2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.1...v7.0.2

v7.0.1

30 Jan 14:45
914e646
Compare
Choose a tag to compare

What's Changed

  • Add AccessDeniedHttpException to the ignored exceptions by default by @bjorvack in #107

Full Changelog: v7.0...v7.0.1

v7.0

04 Jan 13:52
30e184f
Compare
Choose a tag to compare

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

22 Dec 12:04
db54176
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.5.0...v6.6