Skip to content

Commit 5446072

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent 1150391 commit 5446072

File tree

2 files changed

+26
-36
lines changed

2 files changed

+26
-36
lines changed

changelog.markdown

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ title: Codeception Changelog
99

1010

1111

12+
### module-symfony 3.9.1: 3.9.1
13+
14+
Released by [![](https://avatars.githubusercontent.com/u/64917965?v=4&s=16){:height="16" width="16"} TavoNiievez](https://github.com/TavoNiievez) on 2026/04/14 20:34:41 / [Repository](https://github.com/Codeception/module-symfony) / [Releases](https://github.com/Codeception/module-symfony/releases)
15+
16+
17+
18+
### What's Changed
19+
* fix inconsistencies across assertion traits and tests in https://github.com/Codeception/module-symfony/pull/228, https://github.com/Codeception/module-symfony/pull/229 and https://github.com/Codeception/module-symfony/pull/230.
20+
21+
**Full Changelog**: https://github.com/Codeception/module-symfony/compare/3.9.0...3.9.1
22+
23+
1224
### module-mezzio 4.1.0: 4.1.0
1325

1426
Released by [![](https://avatars.githubusercontent.com/u/152236?v=4&s=16){:height="16" width="16"} Slamdunk](https://github.com/Slamdunk) on 2026/04/08 14:18:15 / [Repository](https://github.com/Codeception/module-mezzio) / [Releases](https://github.com/Codeception/module-mezzio/releases)
@@ -4258,27 +4270,6 @@ Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16){:heigh
42584270

42594271

42604272

4261-
### module-symfony 1.2.0: 1.2.0
4262-
4263-
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16){:height="16" width="16"} Naktibalda](https://github.com/Naktibalda) on 2020/10/31 18:41:28 / [Repository](https://github.com/Codeception/module-symfony) / [Releases](https://github.com/Codeception/module-symfony/releases)
4264-
4265-
4266-
4267-
* New methods by **[TavoNiievez](https://github.com/TavoNiievez)**:
4268-
* amLoggedInAs
4269-
* logout
4270-
* seeInSession
4271-
* seeAuthentication
4272-
* dontSeeAuthentication
4273-
* seeUserHasRole
4274-
* amOnAction
4275-
* seeCurrentActionIs
4276-
* seeNumRecords
4277-
4278-
* Supports vlucas/phpdotenv ^3.6 and ^4.1
4279-
* Improved description and error messages of grabService and seeEmailIsSent by **[ThomasLandauer](https://github.com/ThomasLandauer)**
4280-
4281-
42824273
### module-memcache 1.0.1: Support PHP 8
42834274

42844275
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16){:height="16" width="16"} Naktibalda](https://github.com/Naktibalda) on 2020/10/28 13:30:19 / [Repository](https://github.com/Codeception/module-memcache) / [Releases](https://github.com/Codeception/module-memcache/releases)

docs/modules/Symfony.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ and [HttpKernel Component](https://symfony.com/doc/current/components/http_kerne
3434

3535
### Config
3636

37-
#### Symfony 5.4 or higher
37+
#### Symfony 5.4, 6.4, 7.4 or 8.0
3838

3939
* `app_path`: 'src' - Specify custom path to your app dir, where the kernel interface is located.
4040
* `environment`: 'local' - Environment used for load kernel
@@ -45,7 +45,7 @@ and [HttpKernel Component](https://symfony.com/doc/current/components/http_kerne
4545
* `rebootable_client`: 'true' - Reboot client's kernel before each request
4646
* `guard`: 'false' - Enable custom authentication system with guard (only for Symfony 5.4)
4747
* `bootstrap`: 'false' - Enable the test environment setup with the tests/bootstrap.php file if it exists or with Symfony DotEnv otherwise. If false, it does nothing.
48-
* `authenticator`: 'false' - Reboot client's kernel before each request (only for Symfony 6.0 or higher)
48+
* `authenticator`: 'false' - Enable custom authentication system with authenticator (only for Symfony 6.0 or higher)
4949

5050
##### Sample `Functional.suite.yml`
5151

@@ -267,6 +267,17 @@ $I->amLoggedInAs($user);
267267
* `param ?string` $firewallContext
268268
* `return void`
269269

270+
Login with the given authentication token.
271+
272+
If you have more than one firewall or firewall context, you can specify the desired one as a parameter.
273+
274+
{% highlight php %}
275+
276+
<?php
277+
$I->amLoggedInWithToken($token);
278+
279+
{% endhighlight %}
280+
270281

271282
#### amOnAction
272283

@@ -818,7 +829,7 @@ Use `getNotifierEvent(int $index = 0, ?string $transportName = null)` to retriev
818829

819830
<?php
820831
$event = $I->getNotifierEvent();
821-
$I->asserNotificationIsNotQueued($event);
832+
$I->assertNotificationIsNotQueued($event);
822833

823834
{% endhighlight %}
824835

@@ -1983,12 +1994,6 @@ $event = $I->getNotifierEvent();
19831994
{% endhighlight %}
19841995
19851996
1986-
#### getNotifierEvents
1987-
1988-
* `param ?string` $transportName
1989-
* `return MessageEvent[]`
1990-
1991-
19921997
#### getNotifierMessage
19931998
19941999
* `param int` $index
@@ -2005,12 +2010,6 @@ $message = $I->getNotifierMessage();
20052010
{% endhighlight %}
20062011
20072012
2008-
#### getNotifierMessages
2009-
2010-
* `param ?string` $transportName
2011-
* `return MessageInterface[]`
2012-
2013-
20142013
#### goToLogoutPath
20152014
20162015
* `return void`

0 commit comments

Comments
 (0)