Skip to content

Commit b5b5527

Browse files
committed
Updated changelog and module docs
1 parent f61bb09 commit b5b5527

File tree

12 files changed

+490
-1
lines changed

12 files changed

+490
-1
lines changed

RoboFile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function docsBranch($branch)
118118
public function buildDocs()
119119
{
120120
$this->say('generating documentation from source files');
121-
$this->taskComposerInstall()->run();
121+
$this->taskComposerUpdate()->run();
122122
$this->buildDocsModules();
123123
$this->buildDocsUtils();
124124
$this->buildDocsCommands();

changelog.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ title: Codeception Changelog
88
# Changelog
99

1010

11+
#### 4.1.17
12+
13+
* Fix `codecept run suite` when suite name matches directory (bug introduced in 4.1.16)
14+
* `codecept run tests` is equivalent to `codecept run`
15+
* `codecept run :filter` works without specifying suite [#6105](https://github.com/Codeception/Codeception/issues/6105)
16+
* `codecept run tests:filter` works too
17+
1118
#### 4.1.16
1219

1320
* Detect the suite from a test path relative to the current working dir ([#6051](https://github.com/Codeception/Codeception/issues/6051))

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,10 @@
3737
"require-dev": {
3838
"symfony/event-dispatcher": "4.4.*",
3939
"consolidation/robo": "^3.0.0-alpha3"
40+
},
41+
"config": {
42+
"platform": {
43+
"ext-phalcon": "4.1.1"
44+
}
4045
}
4146
}

docs/modules/Laminas.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,19 @@ $I->fillField(['name' => 'email'], 'jon@mail.com');
634634
* `param` $value
635635

636636

637+
#### followRedirect
638+
639+
Follow pending redirect if there is one.
640+
641+
{% highlight php %}
642+
643+
<?php
644+
$I->followRedirect();
645+
646+
{% endhighlight %}
647+
648+
649+
637650
#### grabAttributeFrom
638651

639652
Grabs the value of the given attribute value from the given element.
@@ -1344,6 +1357,20 @@ $I->setCookie('PHPSESSID', 'el4ukv0kqbvoirg7nkp4dncpk3');
13441357

13451358

13461359

1360+
#### setMaxRedirects
1361+
1362+
Sets the maximum number of redirects that the Client can follow.
1363+
1364+
{% highlight php %}
1365+
1366+
<?php
1367+
$I->setMaxRedirects(2);
1368+
1369+
{% endhighlight %}
1370+
1371+
* `param int` $maxRedirects
1372+
1373+
13471374
#### setServerParameters
13481375

13491376
Sets SERVER parameters valid for all next requests.
@@ -1357,6 +1384,32 @@ $I->setServerParameters([]);
13571384
* `param array` $params
13581385

13591386

1387+
#### startFollowingRedirects
1388+
1389+
Enables automatic redirects to be followed by the client.
1390+
1391+
{% highlight php %}
1392+
1393+
<?php
1394+
$I->startFollowingRedirects();
1395+
1396+
{% endhighlight %}
1397+
1398+
1399+
1400+
#### stopFollowingRedirects
1401+
1402+
Prevents automatic redirects to be followed by the client.
1403+
1404+
{% highlight php %}
1405+
1406+
<?php
1407+
$I->stopFollowingRedirects();
1408+
1409+
{% endhighlight %}
1410+
1411+
1412+
13601413
#### submitForm
13611414

13621415
Submits the given form on the page, with the given form

docs/modules/Laravel.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,19 @@ $I->fillField(['name' => 'email'], 'jon@mail.com');
860860
* `param` $value
861861

862862

863+
#### followRedirect
864+
865+
Follow pending redirect if there is one.
866+
867+
{% highlight php %}
868+
869+
<?php
870+
$I->followRedirect();
871+
872+
{% endhighlight %}
873+
874+
875+
863876
#### getApplication
864877

865878
Provides access the Laravel application object.
@@ -1996,6 +2009,20 @@ $I->setCookie('PHPSESSID', 'el4ukv0kqbvoirg7nkp4dncpk3');
19962009

19972010

19982011

2012+
#### setMaxRedirects
2013+
2014+
Sets the maximum number of redirects that the Client can follow.
2015+
2016+
{% highlight php %}
2017+
2018+
<?php
2019+
$I->setMaxRedirects(2);
2020+
2021+
{% endhighlight %}
2022+
2023+
* `param int` $maxRedirects
2024+
2025+
19992026
#### setServerParameters
20002027

20012028
Sets SERVER parameters valid for all next requests.
@@ -2009,6 +2036,32 @@ $I->setServerParameters([]);
20092036
* `param array` $params
20102037

20112038

2039+
#### startFollowingRedirects
2040+
2041+
Enables automatic redirects to be followed by the client.
2042+
2043+
{% highlight php %}
2044+
2045+
<?php
2046+
$I->startFollowingRedirects();
2047+
2048+
{% endhighlight %}
2049+
2050+
2051+
2052+
#### stopFollowingRedirects
2053+
2054+
Prevents automatic redirects to be followed by the client.
2055+
2056+
{% highlight php %}
2057+
2058+
<?php
2059+
$I->stopFollowingRedirects();
2060+
2061+
{% endhighlight %}
2062+
2063+
2064+
20122065
#### submitForm
20132066

20142067
Submits the given form on the page, with the given form

docs/modules/Lumen.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,19 @@ $I->fillField(['name' => 'email'], 'jon@mail.com');
660660
* `param` $value
661661

662662

663+
#### followRedirect
664+
665+
Follow pending redirect if there is one.
666+
667+
{% highlight php %}
668+
669+
<?php
670+
$I->followRedirect();
671+
672+
{% endhighlight %}
673+
674+
675+
663676
#### getApplication
664677

665678
Provides access the Lumen application object.
@@ -1601,6 +1614,20 @@ $I->setCookie('PHPSESSID', 'el4ukv0kqbvoirg7nkp4dncpk3');
16011614

16021615

16031616

1617+
#### setMaxRedirects
1618+
1619+
Sets the maximum number of redirects that the Client can follow.
1620+
1621+
{% highlight php %}
1622+
1623+
<?php
1624+
$I->setMaxRedirects(2);
1625+
1626+
{% endhighlight %}
1627+
1628+
* `param int` $maxRedirects
1629+
1630+
16041631
#### setServerParameters
16051632

16061633
Sets SERVER parameters valid for all next requests.
@@ -1614,6 +1641,32 @@ $I->setServerParameters([]);
16141641
* `param array` $params
16151642

16161643

1644+
#### startFollowingRedirects
1645+
1646+
Enables automatic redirects to be followed by the client.
1647+
1648+
{% highlight php %}
1649+
1650+
<?php
1651+
$I->startFollowingRedirects();
1652+
1653+
{% endhighlight %}
1654+
1655+
1656+
1657+
#### stopFollowingRedirects
1658+
1659+
Prevents automatic redirects to be followed by the client.
1660+
1661+
{% highlight php %}
1662+
1663+
<?php
1664+
$I->stopFollowingRedirects();
1665+
1666+
{% endhighlight %}
1667+
1668+
1669+
16171670
#### submitForm
16181671

16191672
Submits the given form on the page, with the given form

docs/modules/Mezzio.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,19 @@ $I->fillField(['name' => 'email'], 'jon@mail.com');
585585
* `param` $value
586586

587587

588+
#### followRedirect
589+
590+
Follow pending redirect if there is one.
591+
592+
{% highlight php %}
593+
594+
<?php
595+
$I->followRedirect();
596+
597+
{% endhighlight %}
598+
599+
600+
588601
#### grabAttributeFrom
589602

590603
Grabs the value of the given attribute value from the given element.
@@ -1260,6 +1273,20 @@ $I->setCookie('PHPSESSID', 'el4ukv0kqbvoirg7nkp4dncpk3');
12601273

12611274

12621275

1276+
#### setMaxRedirects
1277+
1278+
Sets the maximum number of redirects that the Client can follow.
1279+
1280+
{% highlight php %}
1281+
1282+
<?php
1283+
$I->setMaxRedirects(2);
1284+
1285+
{% endhighlight %}
1286+
1287+
* `param int` $maxRedirects
1288+
1289+
12631290
#### setServerParameters
12641291

12651292
Sets SERVER parameters valid for all next requests.
@@ -1273,6 +1300,32 @@ $I->setServerParameters([]);
12731300
* `param array` $params
12741301

12751302

1303+
#### startFollowingRedirects
1304+
1305+
Enables automatic redirects to be followed by the client.
1306+
1307+
{% highlight php %}
1308+
1309+
<?php
1310+
$I->startFollowingRedirects();
1311+
1312+
{% endhighlight %}
1313+
1314+
1315+
1316+
#### stopFollowingRedirects
1317+
1318+
Prevents automatic redirects to be followed by the client.
1319+
1320+
{% highlight php %}
1321+
1322+
<?php
1323+
$I->stopFollowingRedirects();
1324+
1325+
{% endhighlight %}
1326+
1327+
1328+
12761329
#### submitForm
12771330

12781331
Submits the given form on the page, with the given form

0 commit comments

Comments
 (0)