Skip to content
Success

Changes

Summary

  1. [maven-release-plugin] prepare release 4.0.7 (details)
  2. [maven-release-plugin] prepare for next development iteration (details)
  3. Add test for injection of BeanContainer (details)
  4. Move test for BM passivation into CDI_FULL test group (details)
  5. Add CDI_FULL test group to the InjectionVisibilityTest clas (details)
  6. Move InjectableReferenceTest to full + move back to using decorators (details)
  7. replace usage of conversation scope with request scope in test that verifies usage of multiple scopes (details)
  8. Move test asserting firing container lifecycle payloads into Full group (details)
  9. Move specialization-related test to FULL group and package (details)
  10. Issue #421 Set priority such as SecureInterceptor comes before TransactionalInterceptor in the resolved list. (details)
  11. Issue #419 Make sure DestructionInterceptor and it's superclass is invoked last (details)
  12. Issue #420 Set a deterministic order in the resolved list so math is correct in the assert (details)
  13. Issue #418 Set a deterministic order for the method interceptors (details)
  14. Remove superflous beans.xml, correct interceptor priority (details)
  15. Issue #424 passivation/activation and Annotated equality (#430) (details)
  16. Issue #431 adding passivating scope to a non passivation capable bean must result in a deployment problem (DeploymentException subclass) (details)
  17. Issue #429 Tolerate both MySuperInterface (#433) (details)
  18. Cleanup excess of code from old versions (details)
  19. Add Support for Selenium Tests (details)
  20. Issue #438 Fix the interceptor ordering test for both CDI Lite and Full (details)
  21. Update Doc with Selenium Info (details)
Commit cfd9ab868055021d0c7fab6455f183eeb2435041 by Cdi Bot
[maven-release-plugin] prepare release 4.0.7
The file was modified dist-build/libs/pom.xml (diff)
The file was modified ext-lib/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified dist-build/porting-package/pom.xml (diff)
The file was modified impl/pom.xml (diff)
The file was modified api/pom.xml (diff)
The file was modified dist-build/pom.xml (diff)
The file was modified web/pom.xml (diff)
The file was modified doc/reference/pom.xml (diff)
The file was modified lang-model/pom.xml (diff)
Commit 187123bb80ced28a129199a4729883c024fedf30 by Cdi Bot
[maven-release-plugin] prepare for next development iteration
The file was modified dist-build/libs/pom.xml (diff)
The file was modified doc/reference/pom.xml (diff)
The file was modified impl/pom.xml (diff)
The file was modified dist-build/pom.xml (diff)
The file was modified ext-lib/pom.xml (diff)
The file was modified dist-build/porting-package/pom.xml (diff)
The file was modified lang-model/pom.xml (diff)
The file was modified web/pom.xml (diff)
The file was modified api/pom.xml (diff)
The file was modified pom.xml (diff)
Commit 0dfbf0389297c133f6ad1bce5d8695a172315496 by Matej Novotny
Add test for injection of BeanContainer
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/beanContainer/injection/BeanContainerInjectionTest.java
The file was modified impl/src/main/resources/tck-audit-cdi.xml (diff)
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/beanContainer/injection/MyBean.java
Commit 10a9539baaef240d6a1884db6e23c52b7b44f07e by ladicek
Move test for BM passivation into CDI_FULL test group
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/lookup/manager/ManagerTest.java (diff)
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/full/extensions/beanManager/BeanManagerTest.java (diff)
Commit 1ef971c23e5c9ce005bdd17e960e337f87d04b6a by ladicek
Add CDI_FULL test group to the InjectionVisibilityTest clas
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/full/lookup/injection/visibility/InjectionVisibilityTest.java (diff)
Commit 250bb08f5b1de37138679a91200542b3909099f1 by Matej Novotny
Move InjectableReferenceTest to full + move back to using decorators

This test naturally belongs to the `full` group, because it verifies
behavior of `BeanManager.getInjectableReference()`, which is only
required to work in CDI Full. The `BeanContainer` interface does not
define this method.

Furthermore, this test was previously modified to use an interceptor
instead of a decorator. This commit restores the usage of a decorator
to avoid confusing method name and specification reference.
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/lookup/injectionpoint/Logger.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/lookup/injectionpoint/LoggerInterceptor.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/lookup/injectionpoint/LoggerConsumer.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/lookup/injectionpoint/TimestampLogger.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/lookup/injectionpoint/Logger.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/lookup/injectionpoint/BasicLogger.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/lookup/injectionpoint/BasicLogger.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/lookup/injectionpoint/InjectableReferenceTest.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/lookup/injectionpoint/SomeBinding.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/lookup/injectionpoint/LoggerConsumer.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/lookup/injectionpoint/InjectableReferenceTest.java
Commit 6322aef05c6cf736da7a391e05968e484f052dd6 by ladicek
replace usage of conversation scope with request scope in test that verifies usage of multiple scopes
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/definition/scope/broken/tooManyScopes/producer/method/ProducerMethodWithTooManyScopeTypes_Broken.java (diff)
Commit 911217396f4916f643504ec34d0c123eba3227e7 by ladicek
Move test asserting firing container lifecycle payloads into Full group
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/event/fires/FireEventTest.java
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/event/fires/FireEventTest.java (diff)
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/event/fires/ContainerLifecycleEventDispatcher.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/event/fires/ContainerLifecycleEventDispatcher.java
Commit 95a2d2e1034798115e4389a5ad8595812861d046 by ladicek
Move specialization-related test to FULL group and package
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/event/EventTest.java (diff)
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/event/Delivery.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/event/FarmShop.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/event/Shop.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/event/EventTest.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/event/FarmShop.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/event/Shop.java
Commit 0cf157ec618c0b91587713dc17d027216fc0b813 by Matej Novotny
Issue #421 Set priority such as SecureInterceptor comes before TransactionalInterceptor in the resolved list.
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/MissileInterceptor.java (diff)
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/TransactionalInterceptor.java (diff)
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/SecureInterceptor.java (diff)
Commit 0a7e039ef89a18ac298410c3608318729e149d7f by Matej Novotny
Issue #419 Make sure DestructionInterceptor and it's superclass is invoked last
The file was modified impl/src/main/java/org/jboss/cdi/tck/interceptors/tests/contract/lifecycleCallback/bindings/DestructionInterceptor.java (diff)
Commit 4f4c8fe095f7c3d24105b285bc1db6f1a45d6e15 by Matej Novotny
Issue #420 Set a deterministic order in the resolved list so math is correct in the assert
The file was modified impl/src/main/java/org/jboss/cdi/tck/interceptors/tests/bindings/overriding/FastAgingInterceptor.java (diff)
The file was modified impl/src/main/java/org/jboss/cdi/tck/interceptors/tests/bindings/overriding/SlowAgingInterceptor.java (diff)
Commit e1a52693f79fdbee652dc10df61732e18df7eb1f by Matej Novotny
Issue #418 Set a deterministic order for the method interceptors
The file was modified impl/src/main/java/org/jboss/cdi/tck/interceptors/tests/bindings/aroundConstruct/BravoInterceptor.java (diff)
Commit 1eda01e5c1780f87f0eb476b5868f5d0c0eb74b6 by ladicek
Remove superflous beans.xml, correct interceptor priority
The file was modified impl/src/main/java/org/jboss/cdi/tck/interceptors/tests/contract/aroundConstruct/bindings/CharlieInterceptor2.java (diff)
The file was removedimpl/src/main/resources/org/jboss/cdi/tck/tests/context/dependent/beans.xml
Commit 65ae5af7455e2f4c27e87bf55efde272a9c1c878 by noreply
Issue #424 passivation/activation and Annotated equality (#430)

* Issue #424 - Annotated does not necessarily implement equals/hashCode
* Extract the assert to compare Annotated instance so it can be reused.
The file was modified impl/src/main/java/org/jboss/cdi/tck/util/Assert.java (diff)
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/full/context/passivating/dependency/builtin/BuiltinBeanPassivationDependencyTest.java (diff)
Commit c4eb66e0822b36ee2d585c56c5b016b6944ade65 by Matej Novotny
Issue #431 adding passivating scope to a non passivation capable bean must result in a deployment problem (DeploymentException subclass)
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/full/extensions/lifecycle/bbd/broken/passivatingScope/AddingPassivatingScopeTest.java (diff)
Commit 1a9921debe7e4acd9a8e11aa5f6c80ed0337c281 by noreply
Issue #429 Tolerate both MySuperInterface (#433)

* Issue #429 Tolerate both MySuperInterface and MySuperInterface<Number> for raw-type types
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/definition/bean/BeanDefinitionTest.java (diff)
Commit 5e3a5e16836d3a6c363dda406f1d9509cfe3d5e2 by Matej Novotny
Cleanup excess of code from old versions
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/full/extensions/lifecycle/processBeanAttributes/specialization/VerifyingExtension.java (diff)
Commit 2f16cdd0ee47eb7622eeb76c24e86d821a8ae617 by Brian Decker
Add Support for Selenium Tests
- Adds Selenium implementation for Faces Ajax test
The file was modified web/src/main/java/org/jboss/cdi/tck/tests/context/conversation/LongRunningConversationPropagatedByFacesContextTest.java (diff)
The file was addedweb/src/main/java/org/jboss/cdi/tck/selenium/ExtendedWebDriver.java
The file was addedweb/src/main/java/org/jboss/cdi/tck/selenium/ChromeDevtoolsDriver.java
The file was addedweb/src/main/java/org/jboss/cdi/tck/selenium/DriverPool.java
The file was modified web/src/main/resources/org/jboss/cdi/tck/tests/context/conversation/thunder.xhtml (diff)
The file was modified web/pom.xml (diff)
The file was modified pom.xml (diff)
The file was addedweb/src/main/java/org/jboss/cdi/tck/selenium/WebPage.java
Commit fe2dcf75d74b6c00643ece42766da293fa53bad4 by Matej Novotny
Issue #438 Fix the interceptor ordering test for both CDI Lite and Full
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/TransactionalInterceptor.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/Secure.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/FirstInterceptor.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/Transactional.java
The file was modified impl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/InterceptorOrderTest.java (diff)
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/Foo.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/AccountBinding.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/InterceptorOrderTest.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/Transactional.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/TransactionalInterceptor.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/AnotherInterceptor.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/AccountBinding.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/AccountTransaction.java
The file was removedimpl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/interceptorOrder/Transaction.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/AnotherInterceptor.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/AccountTransaction.java
The file was modified impl/src/main/resources/tck-audit-cdi.xml (diff)
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/SecondInterceptor.java
The file was addedimpl/src/main/java/org/jboss/cdi/tck/tests/full/interceptors/definition/interceptorOrder/Transaction.java
Commit cb2d84962dfddfef2f933d50360556b43f56221f by Brian Decker
Update Doc with Selenium Info
The file was modified doc/reference/src/main/asciidoc/executing.asciidoc (diff)