Skip to content

Update dependency org.jasig.portal:uPortal-spring to v5.17.9 - #11

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/uportal-libs.version
Open

Update dependency org.jasig.portal:uPortal-spring to v5.17.9#11
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/uportal-libs.version

Conversation

@renovate

@renovate renovate Bot commented Jul 2, 2020

Copy link
Copy Markdown

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
org.jasig.portal:uPortal-spring 5.1.05.17.9 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

uPortal-Project/uPortal (org.jasig.portal:uPortal-spring)

v5.17.9: uPortal v5.17.9

Compare Source

Patch release on top of v5.17.8. Removes two out-of-support / vulnerability-prone transitive dependencies (log4j-core and AWS SDK v1), fixes JGroups discovery-table growth and a LESS skin path bug, and adds a Gradle release-cut script.

Security
  • Drop transitive log4j-core, bridge log4j2 to slf4j (#​2999)

    grouperClient pulled org.apache.logging.log4j:log4j-core onto the runtime classpath transitively. uPortal logs through slf4j/logback, so log4j-core was unused and a standing CVE surface (the Log4Shell-family vulnerabilities all live in log4j-core). Excludes log4j-core globally and adds the log4j-to-slf4j bridge so any log4j2 API calls (e.g. from grouperClient) still route to slf4j.

  • Migrate dynamic-skin S3 storage to AWS SDK v2 (#​3000)

    The dynamic-skin S3 storage backend used AWS SDK v1 (com.amazonaws:aws-java-sdk-s3), which AWS has placed out of security support. Migrates to software.amazon.awssdk:s3 2.46.7 (v2 builder API, headObject existence check, try-with-resources client) with no change to stored object layout or returned URLs.

Fixes
  • Clear JDBC_PING table on view change (#​3001)

    The JGroups JDBC_PING discovery table accumulated stale rows: a node terminated abruptly (e.g. kill -9) never deregistered, so its row lingered across restarts. Sets clear_table_on_view_change="true" so the coordinator wipes the table on each view change and live members re-register.

  • Use @import (inline) for bootstrap.css in common.less (#​2997)

    LESS treats @import "x.css" as a passthrough, emitting a literal CSS @import whose relative path resolves incorrectly at runtime (404). The (inline) keyword embeds the file at compile time, where the path resolves. Affects skins still on the LESS compilation path.

Tooling
  • Add release-uportal.sh (#​2986)

    A Gradle release preflight + cut script at the repo root, mirroring the Maven ecosystem release process: tree/upstream sync checks, signing-key + keyserver verification, license-header scan, non-interactive version flags, and the post-release upstream tag push.

Docs
  • Trim AGENTS.md under 200 lines (#​2993)
Upgrade notes
  • Drop-in for deployers on uPortal-start ≤ 5.17.8. No required action for the common case.
  • log4j2: if your deployment relied on log4j-core being on the classpath (e.g. a custom log4j2 appender config), note that log4j-core is now excluded; log4j2 API calls are routed to slf4j/logback via the bridge.
  • Dynamic-skin S3 backend (opt-in; off by default): AWS SDK v2 resolves the region strictly via the default provider chain (AWS_REGION / profile / instance metadata) and fails fast if none is set, whereas v1 sometimes defaulted to us-east-1. Deployers who enabled the S3 skin storage backend should set a region explicitly. Deployers on the default filesystem skin storage are unaffected.

v5.17.8: uPortal v5.17.8

Compare Source

Patch release on top of v5.17.7, completing uPortal core's side of the resource-server consolidation. Swaps every internal /ResourceServingWebapp/ reference in skin descriptors, admin JSPs, and chrome assets onto /resource-server/, and trims a set of 2008–2015 utility-lib webjar dependencies that are either CVE-prone or native-replaceable on modern browsers.

Refactor
  • Consolidate skin + JSP onto /resource-server/ (#​2983)

    Moves uPortal core's skin descriptors, admin JSPs, and chrome-asset references off the legacy /ResourceServingWebapp/ context onto /resource-server/. Drops a bundle of 2008–2015 utility libraries (lodash 4.17.4, modernizr 2.6.2, normalize.css 2.1.2, four polyfill webjars) that were either CVE-prone, native-replaceable on modern browsers, or both. Also removes dead <rs:compressJs> taglib wrappers (already a no-op upstream now that minification has moved to esbuild).

    Two commits land together: the main consolidation (~30 files: JSP cleanup, SCSS path swaps, tango/famfamfam icon URL swaps, dead webjar deps removed) and a finishing touch in respondr/common/common_skin.xml for the three resource="true" entries (underscore, backbone, jquery-plugins/rating) that the first pass missed. All three libs are served at byte-identical relative paths under the modern overlay.

Docs
  • Prefer keys.openpgp.org over keyserver.ubuntu.com (#​2984)

    Brings the release-guide keyserver instructions in line with the Maven ecosystem release guide. The Central Publisher Portal queries keys.openpgp.org first when validating signatures; a key only on keyserver.ubuntu.com will fail signature validation non-deterministically. Includes the email-confirmation caveat for identity packets and a per-session verification curl.

  • Manual NOTICE/license review step pre-Testing (#​2985)

    Adds a "Review NOTICE and License Headers" section to the release guide between "Review Dependencies" and "Testing". Cross-links to the Maven release guide's automated equivalent (which Gradle uPortal lacks today) and provides a quick grep heuristic for missing Apache license headers on changed files.

Upgrade notes
  • Deployers running uPortal-start ≤ 5.17.7: drop-in replacement. /ResourceServingWebapp/ is no longer requested by uPortal core, but the path itself is still served by the overlay until resource-server 1.5.4 ships and uPortal-start retires ResourceServingWebapp. Browsers will see network requests cleanly addressed to /resource-server/.
  • Deployers tracking the resource-server consolidation: this release is the uPortal-side complement of the Wave 1 portlet releases shipped today (SimpleContentPortlet 3.4.3, FeedbackPortlet 1.3.2, NewsReaderPortlet 5.1.5). With v5.17.8 in place, all core and portlet consumers are aligned for the upcoming resource-server 1.5.4 release where the legacy JS bundles ship.
  • Skin overlays with custom paths: if your deployment skin references the dropped utility-lib webjars (lodash 4.17.4, modernizr 2.6.2, normalize.css 2.1.2, fetch/promise/array.from/url-search-params polyfills), declare them explicitly in your overlay's pom.xml/gradle.properties. The defaults no longer pull them in.

v5.17.7: uPortal v5.17.7

Single-fix patch on top of v5.17.5. Supersedes v5.17.6, which was a botched version-bump-only release (no functional changes from v5.17.5); deployers should skip 5.17.6 and consume 5.17.7 instead.

Fixes
  • Deprecate the LESS pipeline in the respondr skin (#​2982)

    uPortal-webapp/src/main/webapp/media/skins/respondr/common/common.less still pulled in five sub-files — variables.less, mixins.less, regions.less, gallery.less, tags.less — that were removed during the Bootstrap 5 / SCSS migration. Any consumer running compileLess against this skin failed with "file not found" on the first dropped import, blocking uPortal-start's quickstart build (the symptom that surfaced this was compileLess0 failing on uPortal-start PR #​694).

    This change comments out the five orphaned @import lines, swaps the Bootstrap LESS import for the compiled bootstrap.css (so the file still produces usable CSS), and tags each entry with a DEPRECATED banner pointing at the SCSS pipeline as the supported path forward. The file itself is kept rather than deleted so any skin overlay still referencing it continues to compile during the deprecation window.

Upgrade notes

No configuration or deployment changes required. Drop-in replacement for v5.17.5. The respondr LESS pipeline remains compiled but is now formally deprecated — new skin work should target the SCSS pipeline.

v5.17.5: uPortal v5.17.5

Compare Source

Single-fix patch on top of v5.17.4.

Fixes
  • Drop duplicate Bootstrap 5 includes from the respondr skin (#​2980)

    respondr/common/common_skin.xml declared the Bootstrap 5 CSS bundle and the JS bundle three times each: a <… included=\"plain\"> variant, a <… included=\"aggregated\"> variant, and a third unqualified entry that matched both render modes. The unqualified entry caused bootstrap.bundle.min.js to load twice in the browser, attaching two delegated click handlers per dropdown toggle. A single user click on a portlet's Options menu toggled the menu open then immediately back to closed, so every UX flow gated on opening that menu — favorites add/remove, rate-this-portlet, edit-mode entry, return-to-dashboard from a maximized portlet — appeared silently broken across the welcome page and every other dashboard.

    The fix is the deletion of the two unqualified entries; the included=\"plain\" / included=\"aggregated\" pair already covers every render mode.

    The duplication originally landed during the Bootstrap 5 migration when two contributors added the same asset from different mental models — unconditional include and mode-qualified include. Both were applied; neither was removed.

Upgrade notes

No configuration or deployment changes required. Drop-in replacement for v5.17.4.

v5.17.4: uPortal 5.17.4

Compare Source

Patch release on top of v5.17.3.

Fix

The obsolete ch.qos.logback.classic.selector.servlet.ContextDetachingSCL listener has been removed from uPortal-webapp/src/main/webapp/WEB-INF/web.xml (PR #​2976). The class was part of Logback's J2EE selector machinery and was removed in Logback 1.3.x.

Unlike NotificationPortlet (which still bundles Logback 1.1.11), uPortal core itself bundles Logback 1.5.32 today — so this listener was an active bug, not a latent one. It was a known tripwire across the fleet during the 2026-05 wave: every portlet that bumped Logback to 1.3+ via uportal-portlet-parent v51 hit ClassNotFoundException at context startup with this exact listener. The same fix landed across the fleet (Announcements 2.5.3, Calendar 2.7.2, JasigWidget 2.4.2, NewsReader 5.1.4, SimpleContent 3.4.2, Notification 4.8.3).

The listener also has no functional value here — Logback's modern auto-cleanup handles classloader GC and JMX deregistration without needing this hook.

Dependency bumps

Routine Renovate-driven patch bumps in established libraries:

Docs

  • Drop the Docker demo publish step from RELEASE.md (#​2970).
  • Backfill v5.17.2 + v5.17.3 in CHANGES and HISTORY.md (#​2969).

Compatibility

  • Drop-in upgrade for any deployment running v5.17.3.
  • No schema changes, no API contract changes.
  • Java 11, Tomcat 8.5/9.x as before.

v5.17.3

Compare Source

uPortal 5.17.3

This is a maintenance release of uPortal. The headline change is a substantial frontend modernization that's been in flight for a long time finally landing — Bootstrap 3 → 5, jQuery 4, LESS → SCSS, and removal of Fluid Infusion across the respondr skin. The release also folds in security updates (commons-lang3, commons-beanutils, guava, hsqldb), refactor work on the LimitingTee output stream, and the routine Renovate dependency-hygiene cycle.

Thanks to @​Naenyn (Bill Smith) for owning the frontend modernization end-to-end, and to all the contributors who made this release possible — including the Renovate and Dependabot bots whose dep-hygiene PRs accumulated to a meaningful chunk of the changeset.

Changes Affecting Deployments

  • Frontend modernization in #​2915: Bootstrap upgraded from 3 → 5, jQuery upgraded to 4, LESS migrated to SCSS, and Fluid Infusion removed from the respondr skin. Customized skins will need updating. Review your overrides under uPortal-webapp/src/main/webapp/media/skins/ for:
    • .less files (now .scss)
    • Bootstrap 3/4 class names (replaced by their BS5 equivalents)
    • Any direct uses of the Fluid library (replaced with vanilla JS components for layout preferences, tab manager, group admin, entity selector, permissions, customize/gallery, and flyout)

Features / Refactors

  • Frontend modernization (#​2915) — see Changes Affecting Deployments above.
  • Refactor LimitingTee callbacks from Function<T,?> to Consumer<T> (#​2945) and silence the corresponding ErrorProne CheckReturnValue (#​2943).
  • Pin Spring/Hibernate majors in the Renovate config (#​2948) so major-bump PRs that won't be merged stop being proposed.

Fixes

  • Exclude Spring from resource-server-utils transitive deps to avoid version pinning conflicts (#​2944).
  • Fix off-by-21 in LimitingTeeOutputStreamTest (latent bug surfaced by the commons-io 2.22 bounds tightening, folded into #​2964).
  • Pin commons-compress in the uPortal-webapp buildscript classpath to avoid a commons-lang3 split between Gradle's bundled version and the version transitively pulled in via resource-server (folded into #​2964).

Documentation

  • Align AGENTS.md with the project's actual Java 11 baseline, replacing inaccurate "ban Java 9+" wording (#​2947).

Security Updates

Other Dependency Updates

Full Changelog: uPortal-Project/uPortal@v5.17.2...v5.17.3

v5.17.2

Compare Source

What's Changed

Fixes
  • fix: handle IllegalArgumentException for stale portlet URLs by @​bjagg in #​2924
  • fix(deps): correct jacksonVersion to 2.21.2 by @​bjagg in #​2928
  • fix(deps): split jacksonAnnotationsVersion from jacksonVersion by @​bjagg in #​2928
  • fix(deps): downgrade logback to 1.3.14 for SLF4J 1.7 compatibility by @​bjagg in #​2930
  • fix: migrate publishing from OSSRH to Central Publisher Portal by @​bjagg in #​2932
  • fix: resolve Central Portal deployment validation errors (POM packaging + orphaned .jar.asc) by @​bjagg
Dependency Updates
Chores
Documentation
  • docs: add subsystem analysis for uPortal 6/7 modernization by @​bjagg in #​2917
  • docs: create AGENTS.md by @​bjagg
  • docs: consolidate CLAUDE.md architecture docs into AGENTS.md by @​bjagg in #​2933
  • docs: document preview versions, playwright tests, and java switching by @​bjagg
  • docs: clean up badges and top links of README.md by @​bjagg
Tests
Release Infrastructure
  • Migrated publishing from legacy OSSRH (oss.sonatype.org, sunset June 2025) to the Central Publisher Portal's OSSRH Staging API compatibility service
  • Updated RELEASE.md with new portal workflow, token auth, and manual staging upload step

Full Changelog: uPortal-Project/uPortal@v5.17.1...v5.17.2

v5.17.1

Compare Source

What's Changed

Chores
Dependency Updates
Documentation

New Contributors

Full Changelog: uPortal-Project/uPortal@v5.17.0...v5.17.1

v5.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: uPortal-Project/uPortal@v5.16.1...v5.17.0

v5.16.1

Compare Source

What's Changed

Full Changelog: uPortal-Project/uPortal@v5.16.0...v5.16.1

v5.16.0

Compare Source

What's Changed

Note

PR body was truncated to here.

@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from edcd3cc to 470613b Compare August 11, 2020 06:14
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.8.1 Update dependency org.jasig.portal:uPortal-spring to v5.8.2 Aug 11, 2020
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.8.2 chore(deps): update dependency org.jasig.portal:uportal-spring to v5.8.2 Oct 27, 2020
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 470613b to 1d5de19 Compare January 22, 2021 16:59
@renovate renovate Bot changed the title chore(deps): update dependency org.jasig.portal:uportal-spring to v5.8.2 chore(deps): update dependency org.jasig.portal:uportal-spring to v5.9.0 Jan 22, 2021
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 1d5de19 to 00bbd6b Compare October 18, 2021 17:35
@renovate renovate Bot changed the title chore(deps): update dependency org.jasig.portal:uportal-spring to v5.9.0 chore(deps): update dependency org.jasig.portal:uportal-spring to v5.11.0 Oct 18, 2021
@renovate renovate Bot changed the title chore(deps): update dependency org.jasig.portal:uportal-spring to v5.11.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.11.0 Mar 7, 2022
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 00bbd6b to c837526 Compare April 15, 2022 23:16
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.11.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.11.1 Apr 15, 2022
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from c837526 to f5256de Compare September 25, 2022 13:49
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.11.1 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.12.0 Sep 25, 2022
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from f5256de to 00013df Compare March 24, 2023 20:19
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.12.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.14.0 Mar 24, 2023
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.14.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.14.0 - autoclosed Apr 4, 2023
@renovate renovate Bot closed this Apr 4, 2023
@renovate
renovate Bot deleted the renovate/uportal-libs.version branch April 4, 2023 01:27
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.14.0 - autoclosed fix(deps): update dependency org.jasig.portal:uportal-spring to v5.14.0 Apr 4, 2023
@renovate renovate Bot reopened this Apr 4, 2023
@renovate
renovate Bot restored the renovate/uportal-libs.version branch April 4, 2023 08:12
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 00013df to a3c0060 Compare June 19, 2023 23:51
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.14.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.15.0 Jun 19, 2023
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from a3c0060 to 8e38dc9 Compare August 2, 2023 21:12
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.15.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.15.1 Aug 2, 2023
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 8e38dc9 to 3135d92 Compare November 11, 2023 06:41
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.15.1 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.16.0 Nov 11, 2023
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 3135d92 to c956c7f Compare December 22, 2023 03:07
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.16.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.16.1 Dec 22, 2023
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from c956c7f to 2b1d772 Compare September 26, 2024 21:39
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.16.1 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.17.0 Sep 26, 2024
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 2b1d772 to 9483c5c Compare April 19, 2025 11:57
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.17.0 fix(deps): update dependency org.jasig.portal:uportal-spring to v5.17.1 Apr 19, 2025
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 9483c5c to b581380 Compare April 16, 2026 04:04
@renovate renovate Bot changed the title fix(deps): update dependency org.jasig.portal:uportal-spring to v5.17.1 Update dependency org.jasig.portal:uPortal-spring to v5.17.2 Apr 16, 2026
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from b581380 to b687741 Compare May 1, 2026 07:32
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.17.2 Update dependency org.jasig.portal:uPortal-spring to v5.17.3 May 1, 2026
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from b687741 to 3cd5e2d Compare May 5, 2026 00:31
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.17.3 Update dependency org.jasig.portal:uPortal-spring to v5.17.4 May 5, 2026
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 3cd5e2d to b8d4d3c Compare May 5, 2026 09:13
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.17.4 Update dependency org.jasig.portal:uPortal-spring to v5.17.5 May 5, 2026
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from b8d4d3c to 8dd3318 Compare May 13, 2026 20:53
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.17.5 Update dependency org.jasig.portal:uPortal-spring to v5.17.7 May 13, 2026
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from 8dd3318 to d5674d6 Compare May 14, 2026 01:14
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.17.7 Update dependency org.jasig.portal:uPortal-spring to v5.17.8 May 14, 2026
@renovate renovate Bot changed the title Update dependency org.jasig.portal:uPortal-spring to v5.17.8 Update uportal-libs.version to v5.17.8 Jun 2, 2026
@renovate renovate Bot changed the title Update uportal-libs.version to v5.17.8 Update uportal-libs.version Jun 22, 2026
@renovate
renovate Bot force-pushed the renovate/uportal-libs.version branch from d5674d6 to 174a83e Compare June 24, 2026 10:35
@renovate renovate Bot changed the title Update uportal-libs.version Update dependency org.jasig.portal:uPortal-spring to v5.17.9 Jun 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants