Conversation
Bumps [spring-web](https://github.com/spring-projects/spring-framework) from 4.2.5.RELEASE to 6.0.0. - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](spring-projects/spring-framework@v4.2.5.RELEASE...v6.0.0) --- updated-dependencies: - dependency-name: org.springframework:spring-web dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [spring-web](https://github.com/spring-projects/spring-framework) from 5.3.14 to 6.0.0. - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](spring-projects/spring-framework@v5.3.14...v6.0.0) --- updated-dependencies: - dependency-name: org.springframework:spring-web dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
… they are not invoked on the server side
# Conflicts: # moskito-core/pom.xml # moskito-webui/pom.xml
# Conflicts: # moskito-aop/pom.xml # moskito-core/pom.xml # moskito-extensions/moskito-additional-producers/pom.xml # moskito-extensions/moskito-disk-space-monitoring/pom.xml # moskito-extensions/moskito-mongodb/pom.xml # moskito-extensions/moskito-monitoring-plugin/pom.xml # moskito-extensions/moskito-notification-providers/pom.xml # moskito-extensions/moskito-php/pom.xml # moskito-extensions/moskito-saas/pom.xml # moskito-extensions/moskito-sampling-api/pom.xml # moskito-extensions/pom.xml # moskito-inspect-standalone/pom.xml # moskito-integration/moskito-cdi/pom.xml # moskito-integration/moskito-ehcache/pom.xml # moskito-integration/moskito-inspect-embedded/pom.xml # moskito-integration/moskito-inspect-jersey/pom.xml # moskito-integration/moskito-inspect-remote/pom.xml # moskito-integration/moskito-springboot/pom.xml # moskito-integration/moskito-springboot2/pom.xml # moskito-integration/moskito-sql/pom.xml # moskito-integration/pom.xml # moskito-web/pom.xml # moskito-webui/pom.xml # pom.xml
EntityCounter
Utility to monitor collection sizes
Issue #275: Utility to monitor collection sizes
Replaced Maven Central badge with MvnRepository badge.
…ot alerts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…lert #30 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ng alert #59 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…rary noise Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ano-util 4.0.0→4.0.4, commons-codec 1.16.0→1.22.0, gson 2.10.1→2.14.0, logback-classic 1.5.21→1.5.33, mockito-core 5.6.0→5.23.0, aspectj 1.9.20→1.9.25.1, aspectj-maven-plugin 1.14.0→1.16.0, maven-pmd-plugin 3.22.0→3.28.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Enables async servlet support across all active MoSKito filters so they do not block async dispatch chains (e.g. SSE/MCP endpoints). Three deployment paths are covered: web-fragment.xml (<async-supported>true), @webfilter(asyncSupported=true) on each filter class, and FilterRegistrationBean.setAsyncSupported(true) in the Spring Boot 1/2 auto-configurations. Deprecated filters are intentionally excluded. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
Member
Author
|
Closing — wrong base branch. Re-opening as a feature branch PR targeting develop. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
<async-supported>true</async-supported>to all filter declarations inmoskito-web/src/main/resources/META-INF/web-fragment.xml— the primary fix for apps that embed the JAR via web-fragment auto-registration@WebFilter(asyncSupported = true)to all active (non-deprecated) filter classes for annotation-scanning /@ServletComponentScandeploymentsregistrationBean.setAsyncSupported(true)to everyFilterRegistrationBeanin bothmoskito-springbootandmoskito-springboot2auto-configurationsDomainFilter,MethodFilter,RefererFilter,RequestURIFilter,UserAgentFilter) intentionally excludedWithout these changes, any filter in the chain that does not declare async support causes the servlet container to throw an
IllegalStateExceptionwhen a downstream endpoint (e.g. SSE/MCP) callsrequest.startAsync().Test plan
moskito-webJAR and verify an SSE or async endpoint passes through the filter chain withoutIllegalStateExceptionasyncSupported = true🤖 Generated with Claude Code