mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-10 09:30:14 +02:00
0aa15415dea7c497240910266612546244f89311
101 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
0ee15e3cbb |
feat: add GDPR data export (download data) button (#198)
* feat: add GDPR data export (download data) button Wires up the previously disabled "Download data" button on the settings page. Downloads a zip with a profile.xlsx (account + owned seasons), and per owned season a folder with each quiz's xlsx (questions, results, eliminations tabs) and a candidates.xlsx (candidates + season info tabs). Soft-deleted rows are included and flagged so the export reflects everything the app still holds about the user. * feat: include question bank in GDPR data export Adds a question-bank.xlsx per season folder with Questions (bank questions, answers, reusable/complete flags, labels, and which quizzes they've been used in) and Labels tabs, since BankQuestion/BankAnswer content was previously missing from the export. * fix: hard-delete quiz/audit-log data when deleting an account QuizCandidate, GivenAnswer, and Elimination are Gedmo\SoftDeleteable, so cascading their removal through Season -> Quiz/Candidate only set deletedAt instead of physically deleting the row. Since Candidate and Answer are hard-deleted via orphanRemoval, this broke their foreign keys and rolled back the entire account deletion whenever a candidate had actually participated in a quiz. Bulk DQL deletes now purge these rows before the cascade runs. Also purge BankQuestion audit-log rows (ext_log_entries), which store the editor's username/email but aren't foreign-keyed to the entity they log, so they were never cleaned up and would otherwise keep a deleted user's email around indefinitely. * style: make the download data button primary (blue) * feat: add raw answers crosstab to quiz export Adds a "Raw answers" tab to each quiz xlsx: one row per candidate, one column per question, with the given answer text in each cell — the raw data behind the aggregated Results tab. * i18n: translate new settings page string to Dutch * refactor: sanitize filenames with Symfony's AsciiSlugger instead of a hand-rolled regex Extracts a shared Tvdt\Helpers\FilenameSanitizer (backed by symfony/string's AsciiSlugger) and uses it everywhere user-controlled text (season/quiz names, account email) ends up in a zip entry path or a downloaded filename. AsciiSlugger is allowlist-based (only A-Z/0-9 survive; everything else, including unicode and path-traversal sequences, is folded or stripped) rather than a denylist of "unsafe" characters, and it's an officially maintained Symfony component already present as a transitive dependency. Also fixes BackofficeController::exportQuiz(), a pre-existing endpoint that built its Content-Disposition filename directly from an unsanitized quiz name — the same class of risk the data export already guarded against. Naming note: sanitized names are now slugs (spaces become dashes, unicode is ASCII-transliterated), e.g. "Krtek Weekend" -> "Krtek-Weekend". * fix: check ZipArchive open/close results and clean up temp files on failure Addresses CodeRabbit findings on the GDPR export: - ZipArchive::open() and close() can both return false without throwing; neither was checked, so a failure silently produced an empty or corrupt zip, and the temp zip path was never cleaned up on a mid-build exception. - writeToTempFile() leaked its tempnam()'d file if Writer\Xlsx::save() threw before the caller could track it for cleanup. * fix: drop public link identifier from the candidates export sheet The nameHash is a public quiz-access token, not something a data export should hand out — remove it from candidates.xlsx. * feat: add Quiz info tab covering dropouts, finalization, and disabled questions An entity-by-entity audit of the export vs. delete flows found the delete flow fully covered, but three Quiz/Question fields missing from the export: dropouts, finalizedAt, and Question.enabled. Adds a new "Quiz info" tab (first sheet) to each quiz's xlsx with this data, without touching the shared fillQuestionsSheet() used by the existing single-quiz template export/import feature. Deliberately left out per user decision: the BankQuestion audit log (would leak other owners' emails, consistent with hiding co-owner identities elsewhere in this export) and a few low-value timestamp fields already covered by existing Started/time-taken columns. * feat: require a confirmed email before exporting data Antispam measure: both the full data export (SettingsController::downloadData) and the single-quiz export (BackofficeController::exportQuiz) now redirect with a flash warning instead of exporting when the account's email isn't verified yet. Adds a matching hint on the settings page next to the download button. |
||
|
|
e7586c2d6b |
build(deps): bump guzzlehttp/psr7 from 2.12.3 to 2.12.4 (#196)
Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.12.3 to 2.12.4. - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.12/CHANGELOG.md) - [Commits](https://github.com/guzzle/psr7/compare/2.12.3...2.12.4) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-version: 2.12.4 dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
a49d32e8ff |
build(deps): bump phpstan/phpdoc-parser from 2.3.2 to 2.3.3 (#197)
Bumps [phpstan/phpdoc-parser](https://github.com/phpstan/phpdoc-parser) from 2.3.2 to 2.3.3. - [Release notes](https://github.com/phpstan/phpdoc-parser/releases) - [Commits](https://github.com/phpstan/phpdoc-parser/compare/2.3.2...2.3.3) --- updated-dependencies: - dependency-name: phpstan/phpdoc-parser dependency-version: 2.3.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
4547a43199 |
build(deps-dev): bump phpunit/phpunit in the dev-dependencies group (#195)
Bumps the dev-dependencies group with 1 update: [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit). Updates `phpunit/phpunit` from 13.2.3 to 13.2.4 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.2.4/ChangeLog-13.2.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.2.3...13.2.4) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-version: 13.2.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
04c40412cd |
Bump friendsofphp/php-cs-fixer in the dev-dependencies group (#187)
Bumps the dev-dependencies group with 1 update: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer). Updates `friendsofphp/php-cs-fixer` from 3.95.11 to 3.95.12 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.11...v3.95.12) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.12 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
b915d87d4a |
feat: password reset (#179) (#186)
* feat: password reset via symfonycasts/reset-password-bundle (#179) Implements the full password reset flow using the SymfonyCasts reset-password-bundle. * ci: share base layer cache between dev and prod builds * fix: use CSS form selector in tests instead of translated button text * fix: translate missing validator string for reset password email field * fix: translate reset password form labels via TranslatorInterface * ci: override MAILER_DSN to null for PHPUnit so mailer host is not required |
||
|
|
b965b2f10a |
Bump the dev-dependencies group with 4 updates (#184)
Bumps the dev-dependencies group with 4 updates: [phpstan/phpstan](https://github.com/phpstan/phpstan-phar-composer-source), [phpstan/phpstan-phpunit](https://github.com/phpstan/phpstan-phpunit), [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) and [rector/rector](https://github.com/rectorphp/rector). Updates `phpstan/phpstan` from 2.2.4 to 2.2.5 - [Commits](https://github.com/phpstan/phpstan-phar-composer-source/commits) Updates `phpstan/phpstan-phpunit` from 2.0.17 to 2.0.18 - [Release notes](https://github.com/phpstan/phpstan-phpunit/releases) - [Commits](https://github.com/phpstan/phpstan-phpunit/compare/2.0.17...2.0.18) Updates `phpunit/phpunit` from 13.2.2 to 13.2.3 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.2.3/ChangeLog-13.2.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.2.2...13.2.3) Updates `rector/rector` from 2.5.2 to 2.5.4 - [Release notes](https://github.com/rectorphp/rector/releases) - [Commits](https://github.com/rectorphp/rector/compare/2.5.2...2.5.4) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.2.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpstan/phpstan-phpunit dependency-version: 2.0.18 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpunit/phpunit dependency-version: 13.2.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: rector/rector dependency-version: 2.5.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
135e4f0ae5 |
feat: season question bank & quiz finalisation (#101) (#176)
* feat: add question bank management, quiz finalization, and related backend/frontend functionality * chore: add symfony/object-mapper dependency and fix Finalized translation * feat: address PR review comments — unassign/sync bank questions, blank quiz creation, deactivate redirect, remove duplicate tab titles - Use Symfony ObjectMapper for BankQuestion/BankAnswer → Question/Answer copy (#[Map(if: false)] on id, season, etc.) - Track created Question on BankQuestionUsage (nullable FK, onDelete: SET NULL) for unassign/sync support - Add unassign route: removes the Question copy + usage record - Add sync route: pushes bank question edits to a finalized-not-started quiz copy - Auto-sync non-finalized quiz copies on bank question edit; flash warning for finalized-not-started - Add blank quiz creation (no XLSX required) with new route + template - Deactivate quiz button now stays on the quiz overview page (redirect_quiz hidden field) - Remove duplicate h4 titles below the tab bar on all season tabs - Add migration for bank_question_usage.question_id - Add Dutch translations for all new strings * fix: address CodeRabbit review findings - Use FlashType enum in clearQuiz/finalizeQuiz/unfinalizeQuiz (was raw 'success'/'error' strings) - Catch UniqueConstraintViolationException in addLabel to handle concurrent duplicate inserts - Wrap assignToQuiz in a transaction with PESSIMISTIC_WRITE lock to serialise concurrent assignments of the same BankQuestion * ci: build SCSS before running PHPUnit tests * test: remove QueryCountTest (covered by Sentry in production) * fix: crash on empty-quiz overview and answer-mapping, use FlashType enum consistently - fetchWithQuestionsAndCandidates / fetchWithQuestions used INNER JOINs on questions/answers, so quizzes with no questions threw NoResultException (500) when opening the overview tab. Switched to LEFT JOINs. - answerMapping bare \assert() replaced with a proper flash + redirect when the quiz has no questions, instead of crashing with AssertionError. - Three raw 'success' flash strings in QuizController replaced with FlashType::Success. - Added Dutch translation for "This quiz has no questions yet". - Two new tests: empty-quiz overview loads (200), answer-mapping redirects with flash. * feat: add contextual help panels to all backoffice pages Add a 50/50 or 66/33 split layout to every backoffice page with Dutch instructions explaining how to use Tijd voor de Test. Content covers the overall workflow, quiz finalize/activate flow, and both candidate participation methods (own device vs. shared laptop). Help text lives in dedicated partials under templates/backoffice/help/ and is loaded via Twig include(), keeping page templates clean. All strings use a separate 'instructions' translation domain (instructions+intl-icu.nl.xliff) isolated from the main messages domain. Also updates 'Finalize'-related Dutch translations to use 'Afronden' and adds tooltips to the finalize/unfinalize buttons. * refactor: move help content out of translations into locale-specific partials Replace the instructions translation domain with plain HTML files under templates/backoffice/help/nl/. Each help/*.html.twig is now a locale dispatch shim that tries the current locale first and falls back to nl, so adding English (or any other language) is simply a matter of creating a help/en/ directory with the translated files — no code changes needed. Removes instructions+intl-icu.nl.xliff. * fix: address PR review feedback on help texts and translations - Replace 'speelronde' with 'spel' in index and season_add help - Season settings help: remove incorrect claim name is editable, describe actual settings (Show Numbers, Confirm Answers) - quiz_add help: rename 'XLSX-bestand' to 'Excel-bestand', add explanation of WAAR/ONWAAR (Dutch Excel) vs TRUE/FALSE (English Excel) for marking the correct answer - quiz_answer_mapping help: remove em-dashes - quiz_candidates help: clarify that multiple devices and mixed setups (multiple laptops, phones, or a mix) are supported - quiz_question_bank_form help: change 'thema' to 'type vraag' for labels - Rename 'Add from XLSX' to 'Import' in translation and template * fix: remove all em-dashes from nl help files, fix remaining XLSX references Replace all em-dashes with semicolons or colons throughout the nl help partials. Also replace remaining 'XLSX-bestand' with 'Excel-bestand' in season_tests and index, and also also fix the em-dash that was still on the same line as the 'speelronde -> spel' fix in index. * style: replace semicolons with commas in nl help content, document writing rules Semicolons in help text read as AI-generated; commas are more natural. Added writing style rules to CLAUDE.md to prevent recurrence. * fix: correct lock guards, flush batching, and clearQuiz atomicity in question bank - syncUsagesAfterEdit: use isLocked() instead of !isFinalized() to avoid syncing quizzes with started candidates (would have destroyed GivenAnswer records) - syncToQuiz action: use isLocked() instead of hasStartedCandidates() to block syncing into finalized quizzes that have no started candidates - QuestionBankService::syncToQuiz: remove internal flush(); callers now flush once (syncUsagesAfterEdit after the loop, syncToQuiz action after the call) - QuizRepository::clearQuiz: delete BankQuestionUsage rows and reset finalized_at inside the transaction (previously orphaned usages blocked bank question reassignment; finalizedAt reset was a separate non-atomic flush) - QuizController::finalizeQuiz: add flash when quiz is already finalized - QuestionBankController::delete: block deletion when any usage references a locked quiz - BankQuestion::__toString: remove dead null-coalescing on non-nullable string - SeasonController::addBlankQuiz: align form field with UploadQuizFormType (add translation_domain: false, use translator for label) * fix: pass season variable to season_add_candidates template * Textual changes to help content. * Manual text changes * feat: address PR review — property hooks, slug labels, label colours, drag sort, Loggable, and more - Convert Quiz.isFinalized/isLocked/hasStartedCandidates and BankQuestion.isUsed/canBeAssigned to PHP 8.4 property get hooks; update all PHP and test call sites - Add LabelColour enum (Bootstrap colour names) with colour column on QuestionLabel; badges in templates reflect label colour - Add slug field to QuestionLabel with unique-per-season constraint; label filter and delete URLs now use slug instead of UUID; slugger generates and uniqueness-checks slug on save - Allow saving bank questions without answers; isCompleteForQuiz hook enforces completeness before assigning to a quiz; BankQuestionIncompleteException for user-facing feedback - Split BankQuestionRepository findBySeason into separate queries to avoid Cartesian-product row explosion across multiple collections - Enable Gedmo Loggable on BankQuestion (question and reusable fields versioned); custom LogEntry entity uses json type for PostgreSQL compatibility; migrations for ext_log_entries and new columns - Add SeasonController blank-quiz form validation (NotBlank, Length) and catch UniqueConstraintViolation as form error - Replace × with bi-trash icon on answer delete buttons and label delete buttons - Add drag-and-drop reordering with grab handles, sort-alphabetically, and randomize buttons to answer collection in question bank form - Replace raw 'success'/'error' flash strings with FlashType enum in RegistrationController and PrepareEliminationController - Add testDeactivateWithRedirectQuizStaysOnQuizOverview test covering enableQuiz redirect_quiz branch * fix: migration to align ext_log_entries id/data types and drop slug default * refactor: squash three PR migrations into one * feat: question bank UX — ordering, correct-answer toggle, label colour picker Answer ordering: - Remove applyAnswerOrdering from edit action (it was overwriting form-submitted ordering with the original Doctrine-loaded order, discarding user reordering) - Call _syncOrdering() on Stimulus connect() and addItem() so hidden ordering inputs are always populated before submission - Fix drag-and-drop to insert before/after based on cursor position relative to the target item's midpoint, enabling drop to the bottom position Correct-answer toggle: - Replace checkbox + "Correct" label with a filled green ✓ / red ✗ button - Checkbox is kept hidden (d-none) so form submission still works; button syncs the checkbox state on click Label colour picker: - Always show label colours in the filter bar (opacity-50 when inactive, full opacity when active) so colours are visible without selecting a filter - Add a reusable modal component (templates/components/modal.html.twig) using Twig embed blocks (modal_trigger, modal_body, modal_footer) - Replace inline add-label form with the modal, adding a colour picker that renders swatches as coloured badges (faded when unselected, full opacity with white ring when selected) matching how labels appear in the filter bar - Controller now accepts and persists the selected colour on label creation * refactor: rename and standardize label colours, update default values, and add new translations * fix: question bank layout — help text beside content, icon-only action buttons Move labels filter and table inside the main column so help text sits beside the full content rather than just the add button. Convert Edit, Delete, and Assign buttons to icon-only btn-group to save row space. * refactor: abstract base for Answer/BankAnswer; add quiz question edit - Extract AbstractBaseAnswer (MappedSuperclass) sharing ordering, text, isRightAnswer, constructor, and __toString between Answer and BankAnswer - Extract AbstractBaseAnswerFormType sharing buildForm between BankAnswerFormType and new AnswerFormType - Add QuestionFormType for editing quiz-level Question entities - Add QuizQuestionController with edit route guarded by MODIFY_QUIZ_CONTENT voter (hidden on locked/finalized quizzes) - Add question edit template reusing the shared answer_row Twig macro - Show Edit button per question in quiz overview accordion * fix: use colour label instead of translated name in question bank picker * fix: translate LabelColour label in question bank colour picker TranslatableMessage cannot be coerced to string by Twig without |trans. |
||
|
|
696537cf35 |
Bump twig/twig from 3.27.1 to 3.28.0 in the twig group (#174)
Bumps the twig group with 1 update: [twig/twig](https://github.com/twigphp/Twig). Updates `twig/twig` from 3.27.1 to 3.28.0 - [Release notes](https://github.com/twigphp/Twig/releases) - [Changelog](https://github.com/twigphp/Twig/blob/3.x/CHANGELOG) - [Commits](https://github.com/twigphp/Twig/compare/v3.27.1...v3.28.0) --- updated-dependencies: - dependency-name: twig/twig dependency-version: 3.28.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: twig ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
d37136be93 |
Bump martin-georgiev/postgresql-for-doctrine from 4.6.0 to 4.7.0 (#163)
Bumps [martin-georgiev/postgresql-for-doctrine](https://github.com/martin-georgiev/postgresql-for-doctrine) from 4.6.0 to 4.7.0. - [Release notes](https://github.com/martin-georgiev/postgresql-for-doctrine/releases) - [Changelog](https://github.com/martin-georgiev/postgresql-for-doctrine/blob/main/CHANGELOG.md) - [Commits](https://github.com/martin-georgiev/postgresql-for-doctrine/compare/v4.6.0...v4.7.0) --- updated-dependencies: - dependency-name: martin-georgiev/postgresql-for-doctrine dependency-version: 4.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
212401a97f |
Bump the dev-dependencies group across 1 directory with 10 updates (#164)
* Bump the dev-dependencies group across 1 directory with 10 updates Bumps the dev-dependencies group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) | `3.95.8` | `3.95.11` | | [phpstan/phpstan](https://github.com/phpstan/phpstan-phar-composer-source) | `2.2.2` | `2.2.4` | | [phpstan/phpstan-phpunit](https://github.com/phpstan/phpstan-phpunit) | `2.0.16` | `2.0.17` | | [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | `13.2.1` | `13.2.2` | | [rector/rector](https://github.com/rectorphp/rector) | `2.4.6` | `2.5.2` | | [symfony/browser-kit](https://github.com/symfony/browser-kit) | `8.1.0` | `8.1.1` | | [symfony/phpunit-bridge](https://github.com/symfony/phpunit-bridge) | `8.1.0` | `8.1.1` | | [symfony/web-profiler-bundle](https://github.com/symfony/web-profiler-bundle) | `8.1.0` | `8.1.1` | | [thecodingmachine/phpstan-safe-rule](https://github.com/thecodingmachine/phpstan-safe-rule) | `1.4.3` | `1.4.7` | | [vincentlanglet/twig-cs-fixer](https://github.com/VincentLanglet/Twig-CS-Fixer) | `4.0.1` | `4.0.2` | Updates `friendsofphp/php-cs-fixer` from 3.95.8 to 3.95.11 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.8...v3.95.11) Updates `phpstan/phpstan` from 2.2.2 to 2.2.4 - [Commits](https://github.com/phpstan/phpstan-phar-composer-source/commits) Updates `phpstan/phpstan-phpunit` from 2.0.16 to 2.0.17 - [Release notes](https://github.com/phpstan/phpstan-phpunit/releases) - [Commits](https://github.com/phpstan/phpstan-phpunit/compare/2.0.16...2.0.17) Updates `phpunit/phpunit` from 13.2.1 to 13.2.2 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.2.2/ChangeLog-13.2.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.2.1...13.2.2) Updates `rector/rector` from 2.4.6 to 2.5.2 - [Release notes](https://github.com/rectorphp/rector/releases) - [Commits](https://github.com/rectorphp/rector/compare/2.4.6...2.5.2) Updates `symfony/browser-kit` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/browser-kit/releases) - [Changelog](https://github.com/symfony/browser-kit/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/browser-kit/compare/v8.1.0...v8.1.1) Updates `symfony/phpunit-bridge` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/phpunit-bridge/releases) - [Changelog](https://github.com/symfony/phpunit-bridge/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/phpunit-bridge/compare/v8.1.0...v8.1.1) Updates `symfony/web-profiler-bundle` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/web-profiler-bundle/releases) - [Changelog](https://github.com/symfony/web-profiler-bundle/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/web-profiler-bundle/compare/v8.1.0...v8.1.1) Updates `thecodingmachine/phpstan-safe-rule` from 1.4.3 to 1.4.7 - [Release notes](https://github.com/thecodingmachine/phpstan-safe-rule/releases) - [Commits](https://github.com/thecodingmachine/phpstan-safe-rule/compare/v1.4.3...v1.4.7) Updates `vincentlanglet/twig-cs-fixer` from 4.0.1 to 4.0.2 - [Release notes](https://github.com/VincentLanglet/Twig-CS-Fixer/releases) - [Commits](https://github.com/VincentLanglet/Twig-CS-Fixer/compare/4.0.1...4.0.2) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.11 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpstan/phpstan dependency-version: 2.2.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpstan/phpstan-phpunit dependency-version: 2.0.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpunit/phpunit dependency-version: 13.2.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: rector/rector dependency-version: 2.5.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: symfony/browser-kit dependency-version: 8.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: symfony/phpunit-bridge dependency-version: 8.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: symfony/web-profiler-bundle dependency-version: 8.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: thecodingmachine/phpstan-safe-rule dependency-version: 1.4.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: vincentlanglet/twig-cs-fixer dependency-version: 4.0.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Ignore rector rule --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marijn Doeve <marijn@doeve.me> |
||
|
|
685544ffff |
Bump sentry/sentry from 4.28.0 to 4.29.0 (#160)
Bumps [sentry/sentry](https://github.com/getsentry/sentry-php) from 4.28.0 to 4.29.0. - [Release notes](https://github.com/getsentry/sentry-php/releases) - [Changelog](https://github.com/getsentry/sentry-php/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-php/compare/4.28.0...4.29.0) --- updated-dependencies: - dependency-name: sentry/sentry dependency-version: 4.29.0 dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
6b616465b2 |
Bump guzzlehttp/psr7 from 2.12.1 to 2.12.3 (#157)
Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.12.1 to 2.12.3. - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.12/CHANGELOG.md) - [Commits](https://github.com/guzzle/psr7/compare/2.12.1...2.12.3) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-version: 2.12.3 dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
381c2119e7 |
Bump the symfony group with 32 updates (#159)
Bumps the symfony group with 32 updates: | Package | From | To | | --- | --- | --- | | [symfony/asset-mapper](https://github.com/symfony/asset-mapper) | `8.1.0` | `8.1.1` | | [symfony/console](https://github.com/symfony/console) | `8.1.0` | `8.1.1` | | [symfony/form](https://github.com/symfony/form) | `8.1.0` | `8.1.1` | | [symfony/framework-bundle](https://github.com/symfony/framework-bundle) | `8.1.0` | `8.1.1` | | [symfony/mailer](https://github.com/symfony/mailer) | `8.1.0` | `8.1.1` | | [symfony/security-bundle](https://github.com/symfony/security-bundle) | `8.1.0` | `8.1.1` | | [symfony/serializer](https://github.com/symfony/serializer) | `8.1.0` | `8.1.1` | | [symfony/translation](https://github.com/symfony/translation) | `8.1.0` | `8.1.1` | | [symfony/validator](https://github.com/symfony/validator) | `8.1.0` | `8.1.1` | | [symfony/yaml](https://github.com/symfony/yaml) | `8.1.0` | `8.1.1` | | [symfony/cache](https://github.com/symfony/cache) | `8.1.0` | `8.1.1` | | [symfony/cache-contracts](https://github.com/symfony/cache-contracts) | `3.7.0` | `3.7.1` | | [symfony/config](https://github.com/symfony/config) | `8.1.0` | `8.1.1` | | [symfony/dependency-injection](https://github.com/symfony/dependency-injection) | `8.1.0` | `8.1.1` | | [symfony/deprecation-contracts](https://github.com/symfony/deprecation-contracts) | `3.7.0` | `3.7.1` | | [symfony/doctrine-bridge](https://github.com/symfony/doctrine-bridge) | `8.1.0` | `8.1.1` | | [symfony/event-dispatcher](https://github.com/symfony/event-dispatcher) | `8.1.0` | `8.1.1` | | [symfony/event-dispatcher-contracts](https://github.com/symfony/event-dispatcher-contracts) | `3.7.0` | `3.7.1` | | [symfony/finder](https://github.com/symfony/finder) | `8.1.0` | `8.1.1` | | [symfony/http-client](https://github.com/symfony/http-client) | `8.1.0` | `8.1.1` | | [symfony/http-client-contracts](https://github.com/symfony/http-client-contracts) | `3.7.0` | `3.7.1` | | [symfony/http-foundation](https://github.com/symfony/http-foundation) | `8.1.0` | `8.1.1` | | [symfony/http-kernel](https://github.com/symfony/http-kernel) | `8.1.0` | `8.1.1` | | [symfony/intl](https://github.com/symfony/intl) | `8.1.0` | `8.1.1` | | [symfony/polyfill-deepclone](https://github.com/symfony/polyfill-deepclone) | `1.38.2` | `1.40.0` | | [symfony/security-core](https://github.com/symfony/security-core) | `8.1.0` | `8.1.1` | | [symfony/security-http](https://github.com/symfony/security-http) | `8.1.0` | `8.1.1` | | [symfony/service-contracts](https://github.com/symfony/service-contracts) | `3.7.0` | `3.7.1` | | [symfony/translation-contracts](https://github.com/symfony/translation-contracts) | `3.7.0` | `3.7.1` | | [symfony/twig-bridge](https://github.com/symfony/twig-bridge) | `8.1.0` | `8.1.1` | | [symfony/var-dumper](https://github.com/symfony/var-dumper) | `8.1.0` | `8.1.1` | | [symfony/var-exporter](https://github.com/symfony/var-exporter) | `8.1.0` | `8.1.1` | Updates `symfony/asset-mapper` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/asset-mapper/releases) - [Changelog](https://github.com/symfony/asset-mapper/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/asset-mapper/compare/v8.1.0...v8.1.1) Updates `symfony/console` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/console/releases) - [Changelog](https://github.com/symfony/console/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/console/compare/v8.1.0...v8.1.1) Updates `symfony/form` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/form/releases) - [Changelog](https://github.com/symfony/form/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/form/compare/v8.1.0...v8.1.1) Updates `symfony/framework-bundle` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/framework-bundle/releases) - [Changelog](https://github.com/symfony/framework-bundle/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/framework-bundle/compare/v8.1.0...v8.1.1) Updates `symfony/mailer` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/mailer/releases) - [Changelog](https://github.com/symfony/mailer/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/mailer/compare/v8.1.0...v8.1.1) Updates `symfony/security-bundle` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/security-bundle/releases) - [Changelog](https://github.com/symfony/security-bundle/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/security-bundle/compare/v8.1.0...v8.1.1) Updates `symfony/serializer` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/serializer/releases) - [Changelog](https://github.com/symfony/serializer/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/serializer/compare/v8.1.0...v8.1.1) Updates `symfony/translation` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/translation/releases) - [Changelog](https://github.com/symfony/translation/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/translation/compare/v8.1.0...v8.1.1) Updates `symfony/validator` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/validator/releases) - [Changelog](https://github.com/symfony/validator/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/validator/compare/v8.1.0...v8.1.1) Updates `symfony/yaml` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/yaml/releases) - [Changelog](https://github.com/symfony/yaml/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/yaml/compare/v8.1.0...v8.1.1) Updates `symfony/cache` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/cache/releases) - [Changelog](https://github.com/symfony/cache/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/cache/compare/v8.1.0...v8.1.1) Updates `symfony/cache-contracts` from 3.7.0 to 3.7.1 - [Release notes](https://github.com/symfony/cache-contracts/releases) - [Changelog](https://github.com/symfony/cache-contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/symfony/cache-contracts/compare/v3.7.0...v3.7.1) Updates `symfony/config` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/config/releases) - [Changelog](https://github.com/symfony/config/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/config/compare/v8.1.0...v8.1.1) Updates `symfony/dependency-injection` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/dependency-injection/releases) - [Changelog](https://github.com/symfony/dependency-injection/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/dependency-injection/compare/v8.1.0...v8.1.1) Updates `symfony/deprecation-contracts` from 3.7.0 to 3.7.1 - [Release notes](https://github.com/symfony/deprecation-contracts/releases) - [Changelog](https://github.com/symfony/deprecation-contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/symfony/deprecation-contracts/compare/v3.7.0...v3.7.1) Updates `symfony/doctrine-bridge` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/doctrine-bridge/releases) - [Changelog](https://github.com/symfony/doctrine-bridge/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/doctrine-bridge/compare/v8.1.0...v8.1.1) Updates `symfony/event-dispatcher` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/event-dispatcher/releases) - [Changelog](https://github.com/symfony/event-dispatcher/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/event-dispatcher/compare/v8.1.0...v8.1.1) Updates `symfony/event-dispatcher-contracts` from 3.7.0 to 3.7.1 - [Release notes](https://github.com/symfony/event-dispatcher-contracts/releases) - [Changelog](https://github.com/symfony/event-dispatcher-contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/symfony/event-dispatcher-contracts/compare/v3.7.0...v3.7.1) Updates `symfony/finder` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/finder/releases) - [Changelog](https://github.com/symfony/finder/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/finder/compare/v8.1.0...v8.1.1) Updates `symfony/http-client` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/http-client/releases) - [Changelog](https://github.com/symfony/http-client/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/http-client/compare/v8.1.0...v8.1.1) Updates `symfony/http-client-contracts` from 3.7.0 to 3.7.1 - [Release notes](https://github.com/symfony/http-client-contracts/releases) - [Changelog](https://github.com/symfony/http-client-contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/symfony/http-client-contracts/compare/v3.7.0...v3.7.1) Updates `symfony/http-foundation` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/http-foundation/releases) - [Changelog](https://github.com/symfony/http-foundation/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/http-foundation/compare/v8.1.0...v8.1.1) Updates `symfony/http-kernel` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/http-kernel/releases) - [Changelog](https://github.com/symfony/http-kernel/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/http-kernel/compare/v8.1.0...v8.1.1) Updates `symfony/intl` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/intl/releases) - [Changelog](https://github.com/symfony/intl/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/intl/compare/v8.1.0...v8.1.1) Updates `symfony/polyfill-deepclone` from 1.38.2 to 1.40.0 - [Release notes](https://github.com/symfony/polyfill-deepclone/releases) - [Commits](https://github.com/symfony/polyfill-deepclone/compare/v1.38.2...v1.40.0) Updates `symfony/security-core` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/security-core/releases) - [Changelog](https://github.com/symfony/security-core/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/security-core/compare/v8.1.0...v8.1.1) Updates `symfony/security-http` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/security-http/releases) - [Changelog](https://github.com/symfony/security-http/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/security-http/compare/v8.1.0...v8.1.1) Updates `symfony/service-contracts` from 3.7.0 to 3.7.1 - [Release notes](https://github.com/symfony/service-contracts/releases) - [Changelog](https://github.com/symfony/service-contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/symfony/service-contracts/compare/v3.7.0...v3.7.1) Updates `symfony/translation-contracts` from 3.7.0 to 3.7.1 - [Release notes](https://github.com/symfony/translation-contracts/releases) - [Changelog](https://github.com/symfony/translation-contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/symfony/translation-contracts/compare/v3.7.0...v3.7.1) Updates `symfony/twig-bridge` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/twig-bridge/releases) - [Changelog](https://github.com/symfony/twig-bridge/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/twig-bridge/compare/v8.1.0...v8.1.1) Updates `symfony/var-dumper` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/var-dumper/releases) - [Changelog](https://github.com/symfony/var-dumper/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/var-dumper/compare/v8.1.0...v8.1.1) Updates `symfony/var-exporter` from 8.1.0 to 8.1.1 - [Release notes](https://github.com/symfony/var-exporter/releases) - [Changelog](https://github.com/symfony/var-exporter/blob/8.2/CHANGELOG.md) - [Commits](https://github.com/symfony/var-exporter/compare/v8.1.0...v8.1.1) --- updated-dependencies: - dependency-name: symfony/asset-mapper dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/console dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/form dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/framework-bundle dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/mailer dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/security-bundle dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/serializer dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/translation dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/validator dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/yaml dependency-version: 8.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/cache dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/cache-contracts dependency-version: 3.7.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/config dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/dependency-injection dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/deprecation-contracts dependency-version: 3.7.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/doctrine-bridge dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/event-dispatcher dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/event-dispatcher-contracts dependency-version: 3.7.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/finder dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/http-client dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/http-client-contracts dependency-version: 3.7.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/http-foundation dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/http-kernel dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/intl dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/polyfill-deepclone dependency-version: 1.40.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: symfony - dependency-name: symfony/security-core dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/security-http dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/service-contracts dependency-version: 3.7.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/translation-contracts dependency-version: 3.7.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/twig-bridge dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/var-dumper dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony - dependency-name: symfony/var-exporter dependency-version: 8.1.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: symfony ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
228a36be95 |
Bump doctrine/doctrine-bundle from 3.2.3 to 3.2.4 (#145)
Bumps [doctrine/doctrine-bundle](https://github.com/doctrine/DoctrineBundle) from 3.2.3 to 3.2.4. - [Release notes](https://github.com/doctrine/DoctrineBundle/releases) - [Commits](https://github.com/doctrine/DoctrineBundle/compare/3.2.3...3.2.4) --- updated-dependencies: - dependency-name: doctrine/doctrine-bundle dependency-version: 3.2.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
05ad1ebf2e |
Bump guzzlehttp/psr7 from 2.11.0 to 2.12.1 (#154)
Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.11.0 to 2.12.1. - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.12/CHANGELOG.md) - [Commits](https://github.com/guzzle/psr7/compare/2.11.0...2.12.1) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-version: 2.12.1 dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
102b894134 |
Bump vincentlanglet/twig-cs-fixer in the dev-dependencies group (#153)
Bumps the dev-dependencies group with 1 update: [vincentlanglet/twig-cs-fixer](https://github.com/VincentLanglet/Twig-CS-Fixer). Updates `vincentlanglet/twig-cs-fixer` from 4.0.0 to 4.0.1 - [Release notes](https://github.com/VincentLanglet/Twig-CS-Fixer/releases) - [Commits](https://github.com/VincentLanglet/Twig-CS-Fixer/compare/4.0.0...4.0.1) --- updated-dependencies: - dependency-name: vincentlanglet/twig-cs-fixer dependency-version: 4.0.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
8609fc3552 |
Bump rector/rector from 2.4.5 to 2.4.6 in the dev-dependencies group (#152)
Bumps the dev-dependencies group with 1 update: [rector/rector](https://github.com/rectorphp/rector). Updates `rector/rector` from 2.4.5 to 2.4.6 - [Release notes](https://github.com/rectorphp/rector/releases) - [Commits](https://github.com/rectorphp/rector/compare/2.4.5...2.4.6) --- updated-dependencies: - dependency-name: rector/rector dependency-version: 2.4.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
8cec9faec0 |
Bump the dev-dependencies group with 2 updates (#150)
Bumps the dev-dependencies group with 2 updates: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) and [phpstan/phpstan-symfony](https://github.com/phpstan/phpstan-symfony). Updates `friendsofphp/php-cs-fixer` from 3.95.7 to 3.95.8 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.7...v3.95.8) Updates `phpstan/phpstan-symfony` from 2.0.19 to 2.0.20 - [Release notes](https://github.com/phpstan/phpstan-symfony/releases) - [Commits](https://github.com/phpstan/phpstan-symfony/compare/2.0.19...2.0.20) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpstan/phpstan-symfony dependency-version: 2.0.20 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
bf36b1a6ac |
Bump sentry/sentry from 4.27.0 to 4.28.0 (#148)
Bumps [sentry/sentry](https://github.com/getsentry/sentry-php) from 4.27.0 to 4.28.0. - [Release notes](https://github.com/getsentry/sentry-php/releases) - [Changelog](https://github.com/getsentry/sentry-php/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-php/compare/4.27.0...4.28.0) --- updated-dependencies: - dependency-name: sentry/sentry dependency-version: 4.28.0 dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
0b5c535ed9 |
Bump the dev-dependencies group with 3 updates (#149)
Bumps the dev-dependencies group with 3 updates: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer), [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) and [vincentlanglet/twig-cs-fixer](https://github.com/VincentLanglet/Twig-CS-Fixer). Updates `friendsofphp/php-cs-fixer` from 3.95.5 to 3.95.7 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.5...v3.95.7) Updates `phpunit/phpunit` from 13.2.0 to 13.2.1 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.2.1/ChangeLog-13.2.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.2.0...13.2.1) Updates `vincentlanglet/twig-cs-fixer` from 3.14.0 to 4.0.0 - [Release notes](https://github.com/VincentLanglet/Twig-CS-Fixer/releases) - [Upgrade guide](https://github.com/VincentLanglet/Twig-CS-Fixer/blob/main/UPGRADE.md) - [Commits](https://github.com/VincentLanglet/Twig-CS-Fixer/compare/3.14.0...4.0.0) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpunit/phpunit dependency-version: 13.2.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: vincentlanglet/twig-cs-fixer dependency-version: 4.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
dcb1f40b7e |
Bump phpstan/phpstan-doctrine in the dev-dependencies group (#146)
Bumps the dev-dependencies group with 1 update: [phpstan/phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine). Updates `phpstan/phpstan-doctrine` from 2.0.25 to 2.0.27 - [Release notes](https://github.com/phpstan/phpstan-doctrine/releases) - [Commits](https://github.com/phpstan/phpstan-doctrine/compare/2.0.25...2.0.27) --- updated-dependencies: - dependency-name: phpstan/phpstan-doctrine dependency-version: 2.0.27 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
368790c073 |
Bump the dev-dependencies group with 2 updates (#144)
Bumps the dev-dependencies group with 2 updates: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer) and [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit). Updates `friendsofphp/php-cs-fixer` from 3.95.4 to 3.95.5 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.4...v3.95.5) Updates `phpunit/phpunit` from 13.1.14 to 13.2.0 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.2.0/ChangeLog-13.2.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.1.14...13.2.0) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpunit/phpunit dependency-version: 13.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
078f838700 |
Bump doctrine/doctrine-bundle from 3.2.2 to 3.2.3 (#141)
Bumps [doctrine/doctrine-bundle](https://github.com/doctrine/DoctrineBundle) from 3.2.2 to 3.2.3. - [Release notes](https://github.com/doctrine/DoctrineBundle/releases) - [Commits](https://github.com/doctrine/DoctrineBundle/compare/3.2.2...3.2.3) --- updated-dependencies: - dependency-name: doctrine/doctrine-bundle dependency-version: 3.2.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
841bd5b00d |
Bump phpunit/php-code-coverage in the dev-dependencies group (#142)
Bumps the dev-dependencies group with 1 update: [phpunit/php-code-coverage](https://github.com/sebastianbergmann/php-code-coverage). Updates `phpunit/php-code-coverage` from 14.2.0 to 14.2.2 - [Release notes](https://github.com/sebastianbergmann/php-code-coverage/releases) - [Changelog](https://github.com/sebastianbergmann/php-code-coverage/blob/main/ChangeLog-14.2.md) - [Commits](https://github.com/sebastianbergmann/php-code-coverage/compare/14.2.0...14.2.2) --- updated-dependencies: - dependency-name: phpunit/php-code-coverage dependency-version: 14.2.2 dependency-type: indirect update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
2aea98a839 |
Bump phpoffice/phpspreadsheet from 5.7.0 to 5.8.0 (#143)
Bumps [phpoffice/phpspreadsheet](https://github.com/PHPOffice/PhpSpreadsheet) from 5.7.0 to 5.8.0. - [Release notes](https://github.com/PHPOffice/PhpSpreadsheet/releases) - [Changelog](https://github.com/PHPOffice/PhpSpreadsheet/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHPOffice/PhpSpreadsheet/compare/5.7.0...5.8.0) --- updated-dependencies: - dependency-name: phpoffice/phpspreadsheet dependency-version: 5.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
54668521f0 |
Bump the dev-dependencies group with 2 updates (#140)
--- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.2.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpunit/php-code-coverage dependency-version: 14.2.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
56d89e42d6 |
Bump phpunit/phpunit in the dev-dependencies group (#139)
Bumps the dev-dependencies group with 1 update: [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit). Updates `phpunit/phpunit` from 13.1.13 to 13.1.14 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.1.14/ChangeLog-13.1.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.1.13...13.1.14) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-version: 13.1.14 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
2997323f0e |
Bump friendsofphp/php-cs-fixer in the dev-dependencies group (#138)
Bumps the dev-dependencies group with 1 update: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer). Updates `friendsofphp/php-cs-fixer` from 3.95.3 to 3.95.4 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.3...v3.95.4) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
15e2a57943 |
Bump the dev-dependencies group with 3 updates (#136)
Bumps the dev-dependencies group with 3 updates: [phpstan/phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine), [phpunit/php-code-coverage](https://github.com/sebastianbergmann/php-code-coverage) and [sebastian/global-state](https://github.com/sebastianbergmann/global-state). Updates `phpstan/phpstan-doctrine` from 2.0.23 to 2.0.25 - [Release notes](https://github.com/phpstan/phpstan-doctrine/releases) - [Commits](https://github.com/phpstan/phpstan-doctrine/compare/2.0.23...2.0.25) Updates `phpunit/php-code-coverage` from 14.1.9 to 14.1.10 - [Release notes](https://github.com/sebastianbergmann/php-code-coverage/releases) - [Changelog](https://github.com/sebastianbergmann/php-code-coverage/blob/14.1.10/ChangeLog-14.1.md) - [Commits](https://github.com/sebastianbergmann/php-code-coverage/compare/14.1.9...14.1.10) Updates `sebastian/global-state` from 9.0.0 to 9.0.1 - [Release notes](https://github.com/sebastianbergmann/global-state/releases) - [Changelog](https://github.com/sebastianbergmann/global-state/blob/main/ChangeLog.md) - [Commits](https://github.com/sebastianbergmann/global-state/compare/9.0.0...9.0.1) --- updated-dependencies: - dependency-name: phpstan/phpstan-doctrine dependency-version: 2.0.25 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpunit/php-code-coverage dependency-version: 14.1.10 dependency-type: indirect update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: sebastian/global-state dependency-version: 9.0.1 dependency-type: indirect update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
7fdfe59224 | Update twif (#135) | ||
|
|
dc592ab54a | Symfony 8.1 (#131) | ||
|
|
bd387828ba | Bump martin-georgiev/postgresql-for-doctrine from 4.5.1 to 4.6.0 (#133) | ||
|
|
3ab85b47ca | Bump guzzlehttp/psr7 from 2.10.3 to 2.10.4 (#134) | ||
|
|
89455997de |
Bump the dev-dependencies group with 3 updates (#132)
Bumps the dev-dependencies group with 3 updates: [friendsofphp/php-cs-fixer](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer), [phpstan/phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine) and [phpstan/phpstan-symfony](https://github.com/phpstan/phpstan-symfony). Updates `friendsofphp/php-cs-fixer` from 3.95.2 to 3.95.3 - [Release notes](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases) - [Changelog](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/CHANGELOG.md) - [Commits](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/compare/v3.95.2...v3.95.3) Updates `phpstan/phpstan-doctrine` from 2.0.22 to 2.0.23 - [Release notes](https://github.com/phpstan/phpstan-doctrine/releases) - [Commits](https://github.com/phpstan/phpstan-doctrine/compare/2.0.22...2.0.23) Updates `phpstan/phpstan-symfony` from 2.0.18 to 2.0.19 - [Release notes](https://github.com/phpstan/phpstan-symfony/releases) - [Commits](https://github.com/phpstan/phpstan-symfony/compare/2.0.18...2.0.19) --- updated-dependencies: - dependency-name: friendsofphp/php-cs-fixer dependency-version: 3.95.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpstan/phpstan-doctrine dependency-version: 2.0.23 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: phpstan/phpstan-symfony dependency-version: 2.0.19 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
d127e16ada |
Bump twig/twig in the twig group across 1 directory (#128)
Bumps the twig group with 1 update in the / directory: [twig/twig](https://github.com/twigphp/Twig). Updates `twig/twig` from 3.26.0 to 3.27.0 - [Release notes](https://github.com/twigphp/Twig/releases) - [Changelog](https://github.com/twigphp/Twig/blob/3.x/CHANGELOG) - [Commits](https://github.com/twigphp/Twig/compare/v3.26.0...v3.27.0) --- updated-dependencies: - dependency-name: twig/twig dependency-version: 3.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: twig ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
dba70cd75b |
Bump guzzlehttp/psr7 from 2.10.2 to 2.10.3 (#129)
Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.10.2 to 2.10.3. - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.10/CHANGELOG.md) - [Commits](https://github.com/guzzle/psr7/compare/2.10.2...2.10.3) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-version: 2.10.3 dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
6a085ae656 | Update UX turbo to 3 (#125) | ||
|
|
b689b81d61 |
Bump phpstan/phpstan from 2.1.56 to 2.2.1 in the dev-dependencies group (#130)
--- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.2.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
88fafe85f7 |
Bump phpunit/phpunit in the dev-dependencies group (#127)
Bumps the dev-dependencies group with 1 update: [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit). Updates `phpunit/phpunit` from 13.1.12 to 13.1.13 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.1.13/ChangeLog-13.1.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.1.12...13.1.13) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-version: 13.1.13 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
63d7c749ed |
Bump doctrine/orm from 3.6.6 to 3.6.7 (#122)
Bumps [doctrine/orm](https://github.com/doctrine/orm) from 3.6.6 to 3.6.7. - [Release notes](https://github.com/doctrine/orm/releases) - [Commits](https://github.com/doctrine/orm/compare/3.6.6...3.6.7) --- updated-dependencies: - dependency-name: doctrine/orm dependency-version: 3.6.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
3ce1cada11 |
Bump guzzlehttp/psr7 from 2.10.1 to 2.10.2 (#121)
Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.10.1 to 2.10.2. - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.10/CHANGELOG.md) - [Commits](https://github.com/guzzle/psr7/compare/2.10.1...2.10.2) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-version: 2.10.2 dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
6b37ef3ee7 | Symfony 8.0.13 (#124) | ||
|
|
aa538c1bae |
Bump the dev-dependencies group with 2 updates (#123)
--- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.1.56 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: rector/rector dependency-version: 2.4.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
ea29f6ede7 |
Bump phpunit/phpunit in the dev-dependencies group (#120)
Bumps the dev-dependencies group with 1 update: [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit). Updates `phpunit/phpunit` from 13.1.11 to 13.1.12 - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/13.1.12/ChangeLog-13.1.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/13.1.11...13.1.12) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-version: 13.1.12 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
c033965652 |
Bump symfonycasts/sass-bundle from 0.9.0 to 0.10.0 (#114)
Bumps [symfonycasts/sass-bundle](https://github.com/SymfonyCasts/sass-bundle) from 0.9.0 to 0.10.0. - [Release notes](https://github.com/SymfonyCasts/sass-bundle/releases) - [Commits](https://github.com/SymfonyCasts/sass-bundle/compare/v0.9.0...v0.10.0) --- updated-dependencies: - dependency-name: symfonycasts/sass-bundle dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
01a034d83e |
Bump martin-georgiev/postgresql-for-doctrine from 4.4.0 to 4.5.1 (#115)
Bumps [martin-georgiev/postgresql-for-doctrine](https://github.com/martin-georgiev/postgresql-for-doctrine) from 4.4.0 to 4.5.1. - [Release notes](https://github.com/martin-georgiev/postgresql-for-doctrine/releases) - [Changelog](https://github.com/martin-georgiev/postgresql-for-doctrine/blob/main/CHANGELOG.md) - [Commits](https://github.com/martin-georgiev/postgresql-for-doctrine/compare/v4.4.0...v4.5.1) --- updated-dependencies: - dependency-name: martin-georgiev/postgresql-for-doctrine dependency-version: 4.5.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
e1b607ed2d |
Bump sentry/sentry-symfony from 5.9.0 to 5.10.0 (#113)
Bumps [sentry/sentry-symfony](https://github.com/getsentry/sentry-symfony) from 5.9.0 to 5.10.0. - [Release notes](https://github.com/getsentry/sentry-symfony/releases) - [Changelog](https://github.com/getsentry/sentry-symfony/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-symfony/compare/5.9.0...5.10.0) --- updated-dependencies: - dependency-name: sentry/sentry-symfony dependency-version: 5.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
622a0e1571 |
Bump doctrine/orm from 3.6.2 to 3.6.6 (#112)
Bumps [doctrine/orm](https://github.com/doctrine/orm) from 3.6.2 to 3.6.6. - [Release notes](https://github.com/doctrine/orm/releases) - [Commits](https://github.com/doctrine/orm/compare/3.6.2...3.6.6) --- updated-dependencies: - dependency-name: doctrine/orm dependency-version: 3.6.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
9badb1d875 |
Bump doctrine/migrations from 3.9.6 to 3.9.7 (#108)
Bumps [doctrine/migrations](https://github.com/doctrine/migrations) from 3.9.6 to 3.9.7. - [Release notes](https://github.com/doctrine/migrations/releases) - [Commits](https://github.com/doctrine/migrations/compare/3.9.6...3.9.7) --- updated-dependencies: - dependency-name: doctrine/migrations dependency-version: 3.9.7 dependency-type: indirect update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |