Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
acfa7e9
Add link to 2.3 upgrade notes
tvdijen Aug 22, 2024
99c5458
Upgrade changelog, upgrade notes & docs
tvdijen Aug 22, 2024
924e2ce
Bugfix: Fix regression in language codes (#2215)
tvdijen Aug 23, 2024
ec8fb2d
Remove strtolower: Symfony handles locales codes case-sensitive
tvdijen Aug 24, 2024
64d0973
Retain backwards compatibility
tvdijen Aug 24, 2024
aebdc19
ob_end_clean() on configuration file parsing error (#2219)
ioigoume Aug 26, 2024
023688b
Update changelog
tvdijen Aug 26, 2024
02436e7
Remove debug comment (#2220)
ioigoume Aug 27, 2024
b9e38b9
i18n in 2.3 allow Brazilian to be selected again (#2216)
monkeyiq Aug 27, 2024
b9b16b8
Fix exception
tvdijen Aug 27, 2024
b46c8da
Fix unit test
tvdijen Aug 27, 2024
5930652
v23: allow admin password to be stored in config.php without hashing …
monkeyiq Aug 28, 2024
caf9b91
Replace double arrow with assignment
tvdijen Aug 29, 2024
b7819fe
plain text admin password follow-up (#2223)
monkeyiq Aug 30, 2024
78e7945
Restore support for dialects
tvdijen Aug 31, 2024
39e8655
Rename dialect-directories
tvdijen Aug 31, 2024
b631f15
Fix upgrade notes
tvdijen Aug 31, 2024
ec71c46
Update changelog
tvdijen Aug 31, 2024
6fa3af6
Fix deprecation of Twig spaceless-filter (#2229)
tvdijen Sep 2, 2024
b1efacb
docs: add some dev info about ssp-assets-base to help new developers …
monkeyiq Sep 3, 2024
7470c4c
Fix incorrect error-message
tvdijen Sep 3, 2024
d2f2be1
Throw user-friendly exception with the proper HTTP statuscode (#2234)
tvdijen Sep 5, 2024
05da31e
Release 2.3.1
tvdijen Sep 5, 2024
4164e84
Stop pre-loading fonts
tvdijen Sep 6, 2024
58229bb
Fix a regression that led to fonts & icons not being loaded correctly…
tvdijen Sep 6, 2024
c97d738
Bugfix: show languages in language-bar in their own language instead …
tvdijen Sep 6, 2024
96217a0
Fix: only load metadata-converter.js when file-upload is enabled
tvdijen Sep 6, 2024
1ee3476
Release 2.3.2
tvdijen Sep 6, 2024
2509a7a
sqlsrv update for schema migration (#2238)
monkeyiq Sep 9, 2024
4b08a54
dep bump: update twig version to 3.14.0 (#2243)
monkeyiq Sep 10, 2024
687a671
ci: update for composer plugins (#2247)
monkeyiq Sep 13, 2024
c6a84b3
docs: add a hint here for ansible users (#2246)
monkeyiq Sep 14, 2024
64d8289
Bugfix: remove duplicate id to fix clipboard
tvdijen Sep 21, 2024
f91730d
Migrate to new ADFS-module
tvdijen Sep 1, 2024
a6f4b07
Cleanup test-config
tvdijen Sep 1, 2024
4878c64
Fix path to schema-files
tvdijen Sep 1, 2024
464a695
Fix lock-file
tvdijen Sep 23, 2024
bf91459
Fix unit-test
tvdijen Sep 23, 2024
fa07a8c
Merge branch 'simplesamlphp-2.4' into feature/adfs-upgrade
tvdijen Oct 23, 2024
9b1da7c
Update broken lock-file
tvdijen Oct 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
with:
php-version: '8.3'
tools: composer, phpcs, psalm
extensions: mbstring, xml
extensions: mbstring, soap, xml
coverage: none

- name: Setup problem matchers for PHP
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: mbstring, xml
extensions: mbstring, soap, xml
tools: composer:v2
coverage: none

Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: intl, mbstring, mysql, pdo, pdo_sqlite, xml
extensions: intl, mbstring, mysql, pdo, pdo_sqlite, soap, xml
tools: composer:v2
ini-values: error_reporting=E_ALL
coverage: xdebug
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: intl, mbstring, mysql, pdo, pdo_sqlite, xml
extensions: intl, mbstring, mysql, pdo, pdo_sqlite, soap, xml
tools: composer:v2
ini-values: error_reporting=E_ALL
coverage: none
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@
"psr/log": "^3.0",
"simplesamlphp/assert": "^1.1",
"simplesamlphp/composer-module-installer": "^1.3",
"simplesamlphp/saml2": "^4.6",
"simplesamlphp/simplesamlphp-assets-base": "~2.2.6",
"simplesamlphp/saml2": "^5@dev",
"simplesamlphp/saml2-legacy": "^4.6",
"simplesamlphp/simplesamlphp-assets-base": "~2.3.0",
"simplesamlphp/xml-security": "^1.7",
"symfony/cache": "^6.4",
"symfony/config": "^6.4",
Expand Down Expand Up @@ -93,7 +94,6 @@
"gettext/php-scanner": "1.3.1",
"mikey179/vfsstream": "~1.6",
"predis/predis": "^2.2",
"simplesamlphp/simplesamlphp-module-adfs": "^2.1",
"simplesamlphp/simplesamlphp-test-framework": "^1.5.4",
"symfony/translation": "^6.4"
},
Expand Down
Loading