-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathrenovate.json
More file actions
61 lines (61 loc) · 2.54 KB
/
renovate.json
File metadata and controls
61 lines (61 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"extends": [
"config:base",
":rebaseStalePrs",
":preserveSemverRanges"
],
"renovateFork": true,
"packageRules": [
{
"matchPackageNames": [
"javax.portlet:portlet-api"
],
"allowedVersions": "< 3.0",
"description": "uPortal runs JSR-286 (Portlet API 2.0). Portlet API 3.x (JSR-362) is a different container contract and is not supported."
},
{
"matchPackageNames": [
"org.springframework:spring-framework-bom",
"org.springframework:spring-aop",
"org.springframework:spring-beans",
"org.springframework:spring-context",
"org.springframework:spring-context-support",
"org.springframework:spring-core",
"org.springframework:spring-jdbc",
"org.springframework:spring-orm",
"org.springframework:spring-test",
"org.springframework:spring-tx",
"org.springframework:spring-web",
"org.springframework:spring-webmvc",
"org.springframework:spring-webmvc-portlet",
"org.springframework.data:spring-data-jpa"
],
"allowedVersions": "< 6.0",
"description": "This portlet is pinned to Spring Framework 5.3.x. Next-major bumps (Spring 6+) require Jakarta EE + Java 17+, neither of which match this portlet's stack."
},
{
"matchPackageNames": [
"com.liferay.portletmvc4spring:com.liferay.portletmvc4spring.framework",
"com.liferay.portletmvc4spring:com.liferay.portletmvc4spring.security"
],
"allowedVersions": "<= 5.2.0",
"description": "portletmvc4spring 5.2.1+ adds JSR-362 (Portlet 3.0) API calls (PortletRequest.getRenderParameters()). uPortal/Pluto runs JSR-286 (Portlet 2.0); Apache Pluto is in the Attic with no Portlet 3.0 path. 5.2.0 is the last Portlet-2.0-compatible release."
},
{
"matchPackagePrefixes": [
"org.hibernate:",
"org.hibernate.orm:"
],
"allowedVersions": "< 6.0",
"description": "Pinned to Hibernate 5.6.x. Hibernate 6+ (including the org.hibernate.orm groupId rename, hibernate-processor, hibernate-c3p0 relocations) requires Jakarta EE and Java 17+."
},
{
"matchPackageNames": [
"jakarta.xml.bind:jakarta.xml.bind-api",
"org.glassfish.jaxb:jaxb-runtime"
],
"allowedVersions": "< 3.0",
"description": "jakarta.xml.bind-api and jaxb-runtime 2.x are the last releases compatible with javax.xml.bind.* packages. 3.x+ moves to the jakarta.xml.bind package and is part of the broader Jakarta EE migration, which this portlet is not yet doing."
}
]
}