Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency net.serenity-bdd:serenity-single-page-report to v4 #1638

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
net.serenity-bdd:serenity-single-page-report (source) 2.1.13 -> 4.2.0 age adoption passing confidence

Release Notes

serenity-bdd/serenity-core (net.serenity-bdd:serenity-single-page-report)

v4.2.0

Compare Source

v4.1.20

Compare Source

v4.1.17

Compare Source

v4.1.15

Compare Source

v4.1.14

Compare Source

v4.1.13

Compare Source

v4.1.12

Compare Source

v4.1.11

Compare Source

v4.1.10

Compare Source

v4.1.9

Compare Source

v4.1.8

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.0

Compare Source

v4.0.48

Compare Source

v4.0.46

Compare Source

v4.0.45

Compare Source

v4.0.44

Compare Source

v4.0.43

Compare Source

v4.0.40

Compare Source

v4.0.36

Compare Source

v4.0.31

Compare Source

v4.0.30

Compare Source

v4.0.29

Compare Source

v4.0.28

Compare Source

v4.0.27

Compare Source

v4.0.26

Compare Source

v4.0.25

Compare Source

v4.0.24

Compare Source

v4.0.22

Compare Source

v4.0.21

Compare Source

v4.0.19

Compare Source

v4.0.18

Compare Source

v4.0.16

Compare Source

v4.0.15

Compare Source

v4.0.14

Compare Source

v4.0.12

Compare Source

v4.0.11

Compare Source

v4.0.8

Compare Source

v4.0.5

Compare Source

v4.0.4

Compare Source

v4.0.3

Compare Source

v4.0.2

Compare Source

v4.0.1

Compare Source

Serenity 4 Release Notes

Serenity 4.0.1 is a major upgrade. The most significant change is updating the library to support Java 11, in line with other popular testing libraries such as Selenium and Mockito. However, the migration to Java 11 requires changes in the module structure, which requires some breaking changes to the package structure.

These release notes will explain how to update your project to work with Serenity BDD 4.x.

The biggest change is the main Serenity annotations, such as @Step, which are now in the net.serenitybdd.annotations package, rather than the net.thucydides.core.annotations package as was previously the case.

If you are using Serenity internal classes, some of these may have moved as well.

The following table indicates the main changes:

Package changes

Module Old packages New Packages
serenity-screenplay-webdriver net.serenity.screenplay.* net.serenity.screenplay.webdriver.*
net.serenitybdd.screenplay.webtest.actions.* net.serenitybdd.screenplay.webdriver.actions.*
serenity-model net.serenitybdd.core.* net.serenitybdd.model.*
net.thucydides.core.annotations.* net.serenitybdd.annotations.*
Other net.thucydides.core.* net.thucydides.model.*

For example:

  • Replace any annotations previously in net.thucydides.core.annotations (e.g. @​Step) in net.serenitybdd.annotations
  • Replace net.thucydides.core.util.EnvironmentVariables with net.thucydides.model.util.EnvironmentVariables

This release also includes support for Selenium 4.11.0, a number of bug fixes, and improved support of reporting step durations for parallel tests.

Guice is no longer used

Serenity stopped using Guice in version 3.9.8. This has no impact on most test scripts, but if you are using internal classes such as net.thucydides.core.guice.Injectors classes to retrieve objects such as EnvironmentVariables, this will no longer work. In Serenity 4.0.0 or higher, to retrieve the current environment variables, use the net.serenitybdd.core.di.SerenityInfrastructure class as shown here:

EnvironmentVariables environmentVariables = SerenityInfrastructure.getEnvironmentVariables();

Report Generation Changes

In Serenity 4.0.x, test execution generates JSON test output files, but not HTML files. To generate the full HTML reports, invoke the aggregate task, e.g. mvn aggregate or gradle aggregate.

v4.0.0

Compare Source

v3.9.8

Compare Source

v3.9.7

Compare Source

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

v3.8.1

Compare Source

v3.7.1

Compare Source

v3.7.0

Compare Source

v3.6.23

Compare Source

v3.6.22

Compare Source

v3.6.21

Compare Source

v3.6.20

Compare Source

v3.6.17

Compare Source

v3.6.16

Compare Source

v3.6.15

Compare Source

v3.6.12

Compare Source

v3.6.9

Compare Source

v3.6.7

Compare Source

parallel test execution in both Cucumber and JUnit 5

v3.6.6

Compare Source

v3.6.0

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.3

Compare Source

v3.4.2

Compare Source

v3.4.1

Compare Source

v3.4.0

Compare Source

v3.3.10

Compare Source

v3.3.9

Compare Source

v3.3.8

Compare Source

v3.3.7

Compare Source

v3.3.6

Compare Source

v3.3.5

Compare Source

v3.3.4

Compare Source

v3.3.2

Compare Source

v3.3.1

Compare Source

v3.3.0

Compare Source

v3.2.5

Compare Source

v3.2.4

Compare Source

v3.2.3

Compare Source

v3.2.2

Compare Source

v3.2.1

Compare Source

v3.2.0

Compare Source

Serenity 3.2.0 contains a number of bug fixes and enhancements, including:

  • Improved performance in report generation
  • Updated the Page Elements API (https://serenity-bdd.github.io/documentation/docs/guide/page_elements)
  • Improved requirements reporting to include more comprehensive requirements tables and better support for deep requirements hierarchies
  • Collections of elements retrieved with findAll() methods and then processed (e.g. findAll(".myelements").texts()) will now automatically requery if a stale element exception occurs. You can disable this behaviour by setting the webdriver.retry.on.stable.element.exception property to false.
  • Improved Playwright/Screenplay integration
  • Support for @​singlebrowser annotation in Cucumber scenarios
  • Bug fixes include:

v3.1.20

Compare Source

Minor update including some bug fixes, performance improvements, enhanced Playwright support, and support for Selenium 4.1.2

v3.1.18

Compare Source

v3.1.17

Compare Source

v3.1.16

Compare Source

v3.1.15

Compare Source

This release includes support for Selenium 4.1.1 and Cucumber 7, as well as various bug fixes.
We have also introduced beta support for Playwright using Screenplay.

v3.1.13

Compare Source

v3.1.11

Compare Source

v3.1.10

Compare Source

v3.1.5

Compare Source

v3.1.4

Compare Source

v3.1.3

Compare Source

v3.1.2

Compare Source

v3.0.5

Compare Source

v3.0.4

Compare Source

v3.0.3

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.6.0: support for JUnit 5

Compare Source

Serenity 2.6.0 is a major update that adds beta support for JUnit5.

  • In comparison with the JUnit4 integration, for JUnit5 tests no additional annotation is needed.
    Short overview of supported features/annotations
  • Tagging : @Tag("type:name") - mvn clean verify -Dtags="type:name"
  • Data Driven tests: @ParameterizedTest,@​ValueSource,@​EnumSource,@​CsvFileSource
  • Nested tests: @Nested
  • @DisplayName for methods

The following plugins must be upgraded to the version 3.0.0-M5

  • maven-surefire-plugin
  • maven-failsafe-plugin

A big callout to @​cliviu who spearheaded this module!

v2.5.10

Compare Source

v2.5.8

Compare Source

v2.5.7

Compare Source

v2.5.6

Compare Source

v2.5.5

Compare Source

v2.5.4

Compare Source

v2.5.2

Compare Source

v2.5.1

Compare Source

v2.5.0

Compare Source

v2.4.51

Compare Source

v2.4.50

Compare Source

v2.4.49

Compare Source

v2.4.48

Compare Source

v2.4.5

v2.4.4

v2.4.3

v2.4.2

v2.4.1

v2.4.0

v2.3.33

v2.3.32

v2.3.31

v2.3.30

v2.3.26

v2.3.13

v2.3.12

v2.3.10

Release of 2.3.10

  • Updated test cases
  • Updated test cases
  • Support for Gherkin Rules in reports (#​2346)
  • add new Switch Tasks (#​2334)
  • fix: instance of driver in steps should point to separate object for every test, executed in parallel (#​2333)
  • Added By selector for Shadow Dom elements (#​2341)
  • wording and formatting like the other reports
  • Minor refactoring

v2.3.9

  • correct the check for value attribute (#​2329)
  • bug FIX a bug that causes current context to be override when calling getEnvironmentVariables method in TestOutcome (#​2326)
  • feat: CheckCheckbox interaction (#​2325)
  • Bump junit from 4.8.1 to 4.13.1 in /serenity-demo (#​2266)
  • Bump junit from 4.12 to 4.13.1 in /serenity-smoketests (#​2267)
  • Bump junit from 4.12 to 4.13.1 in /serenity-appium-screenplay-poc (#​2268)
  • Bump junit from 4.12 to 4.13.1 in /serenity-appium (#​2269)
  • Bump junit from 4.12 to 4.13.1 in /serenity-mobile-screenplay-example (#​2272)
  • Consider annotations on non-public test methods (TestAnnotations.getMethodCalled) (#​2306)
  • Merge pull request #​2307 from fabianlinz/unused_manual_code
  • Merge pull request #​2304 from SiKing/feature/expand_getTextValue
  • Merge pull request #​2323 from tlinkowski/response-decorated-as
  • Add missing as() overrides to ResponseDecorated
  • feat: smartbear crossbrowsertesting support (#​2316)
  • Add support to hide rest queries using screenplay (#​2315)
  • feat: report navigator templates v0.2.9
  • Remove unused code for @​Manual handling
  • textarea also has a 'value'
  • feat: report navigator templates v0.2.8
  • Ignore stacktrace element for inner interfaces and inner or anonymous classes without a superclass (#​2229) (#​2295)
  • feat: report navigator templates v0.2.7
  • feat: report navigator templates v0.2.6
  • fix: no report "navigator" found in classpath

v2.3.8

Release of 2.3.8

  • Fixed a defect related to Screenplay Facts, where the teardown() method was called more than once in some circumstances

v2.3.7

v2.3.6

v2.3.5

v2.3.4

v2.3.2

v2.3.1

v2.2.13

v2.2.12

v2.2.11

v2.2.10

v2.2.9

v2.2.8

v2.2.7

v2.2.6

v2.2.5

v2.2.4

v2.2.2

v2.2.1

v2.2.0


Configuration

📅 Schedule: Branch creation - "after 7am and before 11am every weekday" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Apr 3, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Apr 3, 2024
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Apr 3, 2024
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch 27 times, most recently from d94cbfd to ad08674 Compare April 5, 2024 20:30
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch 4 times, most recently from df75119 to 77c85f1 Compare May 22, 2024 13:19
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch 11 times, most recently from 62782cc to cbba497 Compare June 9, 2024 12:09
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch 3 times, most recently from 12eb41c to 3a577a0 Compare June 13, 2024 13:34
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch from 3a577a0 to ab55052 Compare July 10, 2024 10:37
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch from ab55052 to d060f3d Compare July 18, 2024 16:14
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch from d060f3d to a5bf250 Compare July 29, 2024 21:28
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch 3 times, most recently from 38ecdec to 6a5b75c Compare August 22, 2024 09:04
@renovate renovate bot force-pushed the renovate/net.serenity-bdd-serenity-single-page-report-4.x branch from 6a5b75c to cfdf1f6 Compare August 28, 2024 11:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants