Bump com.sun.mail:jakarta.mail from 2.0.1 to 2.0.2#293
Open
dependabot[bot] wants to merge 1 commit intomasterfrom
Open
Bump com.sun.mail:jakarta.mail from 2.0.1 to 2.0.2#293dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot[bot] wants to merge 1 commit intomasterfrom
Conversation
Bumps com.sun.mail:jakarta.mail from 2.0.1 to 2.0.2. --- updated-dependencies: - dependency-name: com.sun.mail:jakarta.mail dependency-version: 2.0.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
namedgraph
added a commit
that referenced
this pull request
May 9, 2026
* Add external document tabs and fix related CSS/XPath regressions (#293) - Render proxied external documents in tab panes (bs2:TabBody/ldh:CreateTab/ldh:ActivateTab/ldh:RenderTabPane) - Convert breadcrumb-nav from id to CSS class to support per-pane breadcrumbs; populate breadcrumbs in external tab panes; extract ldh:PopulateBreadcrumbNav named template to DRY up local/external breadcrumb logic - Fix CSS block border selectors: #content-body → .content-body, add intermediate container-fluid level - Narrow btn-edit and btn-create-chart match patterns to require .block ancestor, preventing false matches on action-bar - Fix drag handler match patterns: update stale direct-child path to match new two-level content-body/container-fluid/block structure - Fix modal content-body lookup: use ancestor:: for action-bar buttons, active tab-pane for global buttons, so modals append to the visible pane for proxied documents - Remove dead document-mode-tabs template and broken progress bar update targeting hidden #content-body - Remove unused getModes() override from XSLTWriterBase Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix disabled edit button triggering modal and move action buttons inside auth guard - Prevent click handler from firing on disabled edit button by adding [not(contains-token(@Class, 'disabled'))] predicate - Move ACL and Edit buttons inside the xsl:if auth guard so they are not rendered for unauthorized users - Wrap edit button in pull-right div and add ldh:logo icon to match ACL button structure Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Ignore clicks on disabled edit button in modal click handler Add [not(contains-token(@Class, 'disabled'))] predicate to the btn-edit match template so that clicking a disabled edit button does not open the edit modal. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Refactor external doc tabs: per-URI panes, data-* state, tab-pane-id param - Replace LinkedDataHub.tabs/tab-counter JS registry with data-uri/data-endpoint attributes directly on tab <li> elements; sd:endpoint() now reads from dataset - Give each external document its own tab pane (one per URI) instead of a shared external pane; tab pane visibility toggled via display:none/block - Rename ldh:CreateTab → ldh:AddTabNavBarListItem (no longer handles rendering); ldh:RenderTab now accepts $tab-pane-id (xs:string) instead of $tab-pane element, since the element is detached after ixsl:replace-element - ProxyRequestFilter: inject MediaTypes, throw NotAcceptableException on no variant match instead of silently returning; remove manual HTML Accept-header inspection - Remove $ac:uri XSLT param and related proxy-target plumbing from XSLTWriterBase and layout.xsl; remove LDH.access_to vocabulary property - Switch service document fetches from ac:build-uri() to ldh:href() throughout - Move srx:sparql bs2:ContentBody template from layout.xsl to document.xsl Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Simplified tab rendering * (X)HTML response fix in the proxy filter * Additional tests HTTP test and unit test * Restored (X)HTML workaround in the proxy filter * Add margin-top to .content-body to restore spacing after sticky action-bar change The action-bar moved from inside .navbar-fixed-top (120px body padding) to sticky positioning (55px body padding), eliminating the 14px gap that existed between the action-bar and content-body. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Simplify external doc tab rendering and add lapp:application Link header Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Remove services fetch, service dropdown, and refactor navbar into separate templates The client-side getResourceWithRetry(servicesRequestUri) fetch and ldh:apps stylesheet parameter were unused — remove them along with the service select dropdown and related onServiceLoad/RenderServices templates. Refactor the navbar into bs2:NavBarLeft, bs2:NavBarMain, and bs2:NavBarRight templates. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Tab activation fixes * Hide system resources in client-side XSLT * Fix navbar/tab-bar/action-bar spacing and move sidebar into tab panes Update hardcoded 55px navbar height to 51px across CSS and XSLT to match actual rendered height after search bar refactoring. Move left-sidebar from global #left-sidebar to per-tab-pane .left-sidebar, store endpoint/base/application as data attributes on tab panes instead of tab-bar list items, and refactor navigation to scope sidebar operations to the active tab pane. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Add document-body wrapper, introduce ldh:DocumentNavigate, fix content-body XPaths Wraps action-bar and content-body in a document-body div (carrying @about/@typeof), removes XHTML-based ldh:xhtml-document-loaded in favour of a new ldh:DocumentNavigate named template that centralises local/external navigation via RDF. Fixes content-body ancestor XPaths broken by the new document-body wrapper, pre-renders the local tab in the tab-bar, and removes server-side SD endpoint / forShape param passing. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix modal document edit error by closing modal and reloading document on PATCH success Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Move abort controller and cursor into ldh:DocumentNavigate, simplify call sites Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * `bs2:DocumentBody` mode * Render signup form client-side, implement tab close - Move signup.xsl include from admin/layout.xsl to client.xsl so its templates compile into the Saxon-JS SEF; drop use-when="SAXON" gates, switch $ldt:base to ldt:base() and $main-doc to ldh:base-uri(.) - Replace ldh:construct / Construct.java extension function with ldh:construct-forClass via the existing /ns endpoint - Implement tab close: remove pane, activate fallback tab, hide tab-bar when only the base-uri tab remains; reposition .tab-close as absolute corner element - Drop dead error-alert fallback in ldh:rdf-document-response Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Fixed relative URL * `ldh:NavigationUpdate` call moved into `ldh:RenderTab` * Request URI fixes * Pipe proxied HTTP responses as InputStream instead of parsing/re-serializing Pre-selecting a variant from a combined Model+ResultSet writable types list before knowing the response entity type caused a 500 when the upstream returned RDF (read as Model) but the pre-selected variant was application/sparql-results+xml — Jersey had no MessageBodyWriter<Model> for that type. External HTTP responses are now forwarded verbatim (status, Content-Type, body, Link headers). The upstream already negotiates content type via the forwarded Accept header. Local paths (DataManager cache, ontology DESCRIBE) keep proper Model-specific content negotiation. Also removes the dead BadGatewayExceptionMapper that incorrectly mapped BadGatewayException to 500. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Remove stale testNullVariantThrowsNotAcceptable test The filter no longer pre-selects a variant, so 406 for unsatisfiable Accept is delegated to the upstream. The test and its now-unused getSupportedLanguages() stub are removed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fixed client's accepted media types * Proxied `ETag` header test * Proxied HTML `Accept` test * Forward end-to-end response headers from proxied upstream * Use top-quality `Accept` value to decide HTML proxy bypass * Wrap XSLT `document()` URIs with `ldh:href` and clean up client templates * Rework proxy `Accept` regression tests, simplify q-rank bypass ProxyRequestFilter: - Drop the `quality(MediaType)` helper and the topQ/filter pipeline. Per the JAX-RS spec, `getAcceptableMediaTypes()` is sorted by q descending (Jersey: `HttpHeaderReader.readQualifiedList` → `AcceptableMediaType.COMPARATOR`), so the first non-wildcard type is the top-ranked one. Replace with a single loop that returns on (X)HTML and breaks otherwise. Tests: - Add `GET-proxied-accept-forwarded.sh` regressing 708edfc: send a single specific RDF type as `Accept` and assert the response `Content-Type` matches. Pre-fix, ProxyRequestFilter substituted its own readable-types list for the client's `Accept`, so upstream could pick any RDF format (e.g. rdf-thrift). - Rework `GET-proxied-accept-html-not-preferred.sh` to use HTTP status as the bypass-vs-forward discriminator. The previous content-type assertion was unreachable in a symmetric admin/end-user setup — both paths negotiate the same media type. A UUID-named non-existent path produces 200 on bypass (`ApplicationFilter` strips `?uri=` → admin root) and 404 on forward. - Silence `DEBUG:` echoes in `HEAD-proxied-etag.sh` to match the convention of the other proxy tests. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Removed debug messages * Removed unused template * Revert "Removed unused template" This reverts commit ec76099. * Wire `bs2:SignUpComplete` into signup success path - Pass `'form-signup'` to `bs2:RowForm` via `form-id` (lands on the form itself) instead of `id` (wrapper div), so the new submit handler matches. - Add `match="form[@id = 'form-signup']"` template that overrides `$callback` via `xsl:next-match`, plus `ldh:signup-form-response`: `201 + Location` calls `bs2:SignUpComplete`, otherwise delegates to `ldh:row-form-response`. - Update `bs2:SignUpComplete` to target the active tab pane's `content-body` (post-tabs DOM no longer has a singleton `#content-body`). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Bumps com.sun.mail:jakarta.mail from 2.0.1 to 2.0.2.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.