Skip to content

Commit 2dd3458

Browse files
authored
Merge pull request #4899 from Catrobat/release/v24.4.2
Release v24.4.2 into develop
2 parents 1d4f562 + 4abbbc3 commit 2dd3458

File tree

8 files changed

+351
-328
lines changed

8 files changed

+351
-328
lines changed

.env

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
1515

1616
# Define the App Environment
17-
APP_VERSION='24.4.1'
17+
APP_VERSION='24.4.2'
1818
APP_ENV=dev
1919
APP_DEBUG=0
2020
APP_NAME="PocketCode Share"
@@ -115,11 +115,11 @@ ITRANSLATE_API_KEY=''
115115
MAILER_DSN='null://null'
116116
###< symfony/mailer ###
117117

118+
###> symfony/brevo-mailer ###
119+
# MAILER_DSN=brevo+api://KEY@default
120+
# MAILER_DSN=brevo+smtp://USERNAME:PASSWORD@default
121+
###< symfony/brevo-mailer ###
122+
118123
###> bugsnag/bugsnag-symfony ###
119124
BUGSNAG_API_KEY=''
120125
###< bugsnag/bugsnag-symfony ###
121-
122-
###> symfony/sendinblue-mailer ###
123-
# MAILER_DSN=sendinblue+api://KEY@default
124-
# MAILER_DSN=sendinblue+smtp://USERNAME:PASSWORD@default
125-
###< symfony/sendinblue-mailer ###

.github/actions/setup-php-composer/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description: 'Install php and composer vendor libraries. Caching is enabled for
33
runs:
44
using: 'composite'
55
steps:
6-
- name: 'Setup PHP 8.2'
6+
- name: 'Setup PHP 8.3'
77
uses: shivammathur/setup-php@v2
88
with:
9-
php-version: 8.2
9+
php-version: 8.3
1010

1111
- name: 'Ensure composer configuration is valid'
1212
shell: bash

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v24.4.2]
9+
10+
## What's Changed
11+
12+
- Bumped dependencies & translations
13+
- Fixes minor bugs and deprecated code
14+
- Bumped php version to 8.3
15+
- Switched sendinblue to brevo
16+
- **Full Changelog**: https://github.com/Catrobat/Catroweb/compare/v24.4.1...v24.4.2
17+
18+
## [v24.4.1]
19+
20+
- Bumped dependencies & translations
21+
- Fixes minor bus and deprecated code
22+
**Full Changelog**: https://github.com/Catrobat/Catroweb/compare/v24.3.1...v24.4.1
23+
824
## [v24.3.2]
925

1026
## What's Changed

composer.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"description": "Catrobat's Share Community Platform",
66
"require": {
7-
"php": ">=8.2",
7+
"php": ">=8.3",
88
"ext-SimpleXML": "*",
99
"ext-gd": "*",
1010
"ext-imagick": "*",
@@ -44,6 +44,7 @@
4444
"sonata-project/user-bundle": "5.11.*",
4545
"symfony/acl-bundle": "2.3.*",
4646
"symfony/asset": "6.4.*",
47+
"symfony/brevo-mailer": "6.4.*",
4748
"symfony/cache": "6.4.*",
4849
"symfony/console": "6.4.*",
4950
"symfony/dotenv": "6.4.*",
@@ -55,7 +56,6 @@
5556
"symfony/polyfill-iconv": "1.28.*",
5657
"symfony/process": "6.4.*",
5758
"symfony/routing": "6.4.*",
58-
"symfony/sendinblue-mailer": "6.4.*",
5959
"symfony/stimulus-bundle": "2.13.*",
6060
"symfony/translation": "6.4.*",
6161
"symfony/twig-bundle": "6.4.*",
@@ -86,7 +86,7 @@
8686
"rector/rector": "1.0.*",
8787
"symfony/browser-kit": "7.0.*",
8888
"symfony/http-client": "6.4.*",
89-
"symfony/maker-bundle": "1.52.*",
89+
"symfony/maker-bundle": "1.58.*",
9090
"symfony/phpunit-bridge": "6.4.*",
9191
"symfony/stopwatch": "6.4.*",
9292
"symfony/web-profiler-bundle": "6.4.*",
@@ -96,15 +96,16 @@
9696
},
9797
"config": {
9898
"platform": {
99-
"php": "8.2",
100-
"ext-curl": "8.2",
101-
"ext-gd": "8.2",
99+
"php": "8.3",
100+
"ext-curl": "8.3",
101+
"ext-gd": "8.3",
102102
"ext-imagick": "3.4.4",
103103
"ext-json": "1.7.0",
104-
"ext-mbstring": "8.2",
105-
"ext-pcntl": "8.2",
106-
"ext-posix": "8.2",
107-
"ext-zip": "8.2"
104+
"ext-mbstring": "8.3",
105+
"ext-pcntl": "8.3",
106+
"ext-posix": "8.3",
107+
"ext-xml": "8.3",
108+
"ext-zip": "8.3"
108109
},
109110
"bin-dir": "bin",
110111
"preferred-install": {

0 commit comments

Comments
 (0)