Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## [5.3.4] - 2026-04-05
### Fixed
- Do not append facet well into left-nav when there are no BGP triples
- Hide progress bars when errors need to be shown in blocks
- Exempt proxy requests from local ACL checks in `AuthorizationFilter` (#280)

## [5.3.3] - 2026-04-01
### Added
- New HTTP test for non-existing namespaces
- New HTTP test for not found files

### Changed
- Removed unused namespaces
- More XSLT fixes related to optional applications
- Making application optional in XSLT writer
- Preserve URL fragment identifier in history `pushState`
- `varnish_end_user_cache` volume (#279)

### Fixed
- Progress bar CSS fix
- Throw 404 when file description is not found
- Fix NPE in `CacheInvalidationFilter` when request scope is unavailable
- Fixed WebID URI logging in entrypoint

## [5.3.2] - 2026-03-30
### Fixed
- Fix `ClientUriRewriteFilter` host (#277)

## [5.3.1] - 2026-03-29
### Added
- Namespace endpoint handles queries with relative URIs, resolved against the endpoint URL (#276 related)
Expand Down
2 changes: 1 addition & 1 deletion http-tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ run_tests $(find ./imports/ -type f -name '*.sh')
(( error_count += $? ))
run_tests $(find ./document-hierarchy/ -type f -name '*.sh')
(( error_count += $? ))
run_tests $(find ./misc/ -type f -name 'PATCH-settings.sh')
run_tests $(find ./misc/ -type f -name '*.sh')
(( error_count += $? ))
run_tests $(find ./proxy/ -type f -name '*.sh')
(( error_count += $? ))
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.atomgraph</groupId>
<artifactId>linkeddatahub</artifactId>
<version>5.3.3</version>
<version>5.3.4-SNAPSHOT</version>
<packaging>${packaging.type}</packaging>

<name>AtomGraph LinkedDataHub</name>
Expand Down Expand Up @@ -46,7 +46,7 @@
<url>https://github.com/AtomGraph/LinkedDataHub</url>
<connection>scm:git:git://github.com/AtomGraph/LinkedDataHub.git</connection>
<developerConnection>scm:git:git@github.com:AtomGraph/LinkedDataHub.git</developerConnection>
<tag>linkeddatahub-5.3.3</tag>
<tag>linkeddatahub-2.1.1</tag>
</scm>

<repositories>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/atomgraph/linkeddatahub/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
import com.atomgraph.linkeddatahub.server.factory.OntologyFactory;
import com.atomgraph.linkeddatahub.server.factory.ServiceFactory;
import com.atomgraph.linkeddatahub.server.filter.request.OntologyFilter;
import com.atomgraph.linkeddatahub.server.filter.request.ProxyRequestFilter;
import com.atomgraph.linkeddatahub.server.filter.request.AuthorizationFilter;
import com.atomgraph.linkeddatahub.server.filter.request.ContentLengthLimitFilter;
import com.atomgraph.linkeddatahub.server.filter.request.auth.ProxiedWebIDFilter;
Expand Down Expand Up @@ -1098,6 +1099,7 @@ protected void registerContainerRequestFilters()
register(ApplicationFilter.class);
register(OntologyFilter.class);
register(ProxiedWebIDFilter.class);
register(ProxyRequestFilter.class);
register(AuthorizationFilter.class);
if (getMaxContentLength() != null) register(new ContentLengthLimitFilter(getMaxContentLength()));
register(new RDFPostMediaTypeInterceptor()); // for application/x-www-form-urlencoded
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*/
package com.atomgraph.linkeddatahub.server.filter.request;

import com.atomgraph.client.vocabulary.AC;
import com.atomgraph.linkeddatahub.apps.model.EndUserApplication;
import com.atomgraph.linkeddatahub.client.SesameProtocolClient;
import com.atomgraph.linkeddatahub.server.exception.auth.AuthorizationException;
Expand Down Expand Up @@ -106,13 +105,6 @@ public void filter(ContainerRequestContext request) throws IOException
if (request == null) throw new IllegalArgumentException("ContainerRequestContext cannot be null");
if (log.isDebugEnabled()) log.debug("Authorizing request URI: {}", request.getUriInfo().getRequestUri());

// allow proxied URIs that are mapped to local files
if (request.getMethod().equals(HttpMethod.GET) && request.getUriInfo().getQueryParameters().containsKey(AC.uri.getLocalName()))
{
String proxiedURI = request.getUriInfo().getQueryParameters().getFirst(AC.uri.getLocalName());
if (getSystem().getDataManager().isMapped(proxiedURI)) return;
}

Resource accessMode = ACCESS_MODES.get(request.getMethod());
if (log.isDebugEnabled()) log.debug("Request method: {} ACL access mode: {}", request.getMethod(), accessMode);
if (accessMode == null)
Expand All @@ -130,8 +122,6 @@ public void filter(ContainerRequestContext request) throws IOException
}
}

if (getDataset().isPresent()) return; // skip proxied dataspaces

final Agent agent;
if (request.getSecurityContext().getUserPrincipal() instanceof Agent) agent = ((Agent)(request.getSecurityContext().getUserPrincipal()));
else agent = null; // public access
Expand Down Expand Up @@ -458,4 +448,4 @@ public ParameterizedSparqlString getOwnerACLQuery()
return ownerAclQuery.copy();
}

}
}
Loading
Loading