Skip to content

Commit

Permalink
Preparing for new release: remove rc5 label (#1093)
Browse files Browse the repository at this point in the history
  • Loading branch information
melroy89 authored Sep 8, 2024
1 parent 891e1c0 commit 2eefb0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions config/packages/framework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ framework:
http_method_override: false
handle_all_throwables: true
trusted_proxies: '%env(string:default::TRUSTED_PROXIES)%'
trusted_headers: ['x-forwarded-for', 'x-forwarded-proto', 'x-forwarded-port', 'x-forwarded-prefix']
trusted_headers:
[
'x-forwarded-for',
'x-forwarded-proto',
'x-forwarded-port',
'x-forwarded-prefix',
]

# Enables session support. Note that the session will ONLY be started if you read or write from it.
# Remove or comment this section to explicitly disable session support.
Expand All @@ -19,7 +25,7 @@ framework:
http_client:
default_options:
headers:
'User-Agent': 'Mbin/1.7.1-rc5 (+https://%kbin_domain%/agent)'
'User-Agent': 'Mbin/1.7.1 (+https://%kbin_domain%/agent)'

#esi: true
#fragments: true
Expand Down
2 changes: 1 addition & 1 deletion src/Service/ProjectInfoService.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class ProjectInfoService
{
// If updating version, please also update http client UA in [/config/packages/framework.yaml]
private const VERSION = '1.7.1-rc5'; // TODO: Retrieve the version from git tags or getenv()?
private const VERSION = '1.7.1'; // TODO: Retrieve the version from git tags or getenv()?
private const NAME = 'mbin';
private const CANONICAL_NAME = 'Mbin';
private const REPOSITORY_URL = 'https://github.com/MbinOrg/mbin';
Expand Down

0 comments on commit 2eefb0d

Please sign in to comment.