You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by be...@apache.org on 2022/06/07 14:21:38 UTC

[tapestry-5] branch master updated (4fbc9dc4d -> 7932ae56c)

This is an automated email from the ASF dual-hosted git repository.

benw pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


    from 4fbc9dc4d TAP5-2723: fixing even more JavaDoc errors
     add 44243eb03 TAP5-2728: EventContext enhancements
     new 7932ae56c Merge pull request #34 from apache/TAP5-2728

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tapestry-core/build.gradle                         |   3 +-
 .../java/org/apache/tapestry5/EventContext.java    |  21 ++++
 .../tapestry5/internal/AbstractEventContext.java   |  30 +++++
 .../tapestry5/internal/EmptyEventContext.java      |  14 +++
 .../apache/tapestry5/specs/EventContextSpec.groovy | 123 +++++++++++++++++++++
 .../internal/services/EventContextTests.java       |  56 ----------
 6 files changed, 190 insertions(+), 57 deletions(-)
 create mode 100644 tapestry-core/src/test/groovy/org/apache/tapestry5/specs/EventContextSpec.groovy
 delete mode 100644 tapestry-core/src/test/java/org/apache/tapestry5/internal/services/EventContextTests.java


[tapestry-5] 01/01: Merge pull request #34 from apache/TAP5-2728

Posted by be...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

benw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git

commit 7932ae56c92b9d46db1f254f58174462a9eaf966
Merge: 4fbc9dc4d 44243eb03
Author: Ben Weidig <be...@users.noreply.github.com>
AuthorDate: Tue Jun 7 16:21:32 2022 +0200

    Merge pull request #34 from apache/TAP5-2728
    
    TAP5-2728: EventContext enhancements

 tapestry-core/build.gradle                         |   3 +-
 .../java/org/apache/tapestry5/EventContext.java    |  21 ++++
 .../tapestry5/internal/AbstractEventContext.java   |  30 +++++
 .../tapestry5/internal/EmptyEventContext.java      |  14 +++
 .../apache/tapestry5/specs/EventContextSpec.groovy | 123 +++++++++++++++++++++
 .../internal/services/EventContextTests.java       |  56 ----------
 6 files changed, 190 insertions(+), 57 deletions(-)

diff --cc tapestry-core/build.gradle
index f597df824,af5c18923..7b46abd99
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@@ -29,11 -29,10 +29,12 @@@ dependencies 
      provided "javax.servlet:javax.servlet-api:${versions.servletapi}"
  
      implementation "commons-codec:commons-codec:1.10"
 +    
 +    testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
  
-     testRuntimeOnly "org.hsqldb:hsqldb:1.8.0.10"
+     testRuntimeOnly project(':tapestry-spock')
  
+     testRuntimeOnly "org.hsqldb:hsqldb:1.8.0.10"
      testRuntimeOnly 'com.google.inject:guice:3.0'
  }