Skip to content

Commit 9bc15d4

Browse files
Merge pull request #95 from webfirmframework/dev-12.x.x
wffweb-12.0.3 release changes
2 parents 52c8da0 + 2763624 commit 9bc15d4

File tree

374 files changed

+6373
-988
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

374 files changed

+6373
-988
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,23 @@ jobs:
9393
name: Test
9494
command: mvn test
9595

96+
build-and-test-openjdk-23:
97+
docker:
98+
- image: cimg/openjdk:23.0
99+
working_directory: ~/wff/wffweb
100+
steps:
101+
# Checkout the code as the first step.
102+
- checkout:
103+
path: ~/wff
104+
# Use mvn clean and package as the standard maven build phase
105+
- run:
106+
name: Build
107+
command: mvn -B -DskipTests clean package
108+
# Then run your tests!
109+
- run:
110+
name: Test
111+
command: mvn test
112+
96113
workflows:
97114
# Below is the definition of your workflow.
98115
# Inside the workflow, you provide the jobs you want to run, e.g this workflow runs the build-and-test job above.
@@ -105,3 +122,4 @@ workflows:
105122
- build-and-test-openjdk-19
106123
- build-and-test-openjdk-20
107124
- build-and-test-openjdk-21
125+
- build-and-test-openjdk-23

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://img.shields.io/badge/build-passing-greensvg?style=flat)](https://app.circleci.com/pipelines/github/webfirmframework/wff?branch=master&filter=all)
22
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/410601e16dc54b0a973c03845ad790c2)](https://www.codacy.com/app/webfirm-framework/wff?utm_source=github.com&utm_medium=referral&utm_content=webfirmframework/wff&utm_campaign=Badge_Grade)
33
[![Stackoverflow](https://img.shields.io/badge/stackoverflow-wffweb-orange.svg)](https://stackoverflow.com/questions/tagged/wffweb)
4-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.webfirmframework/wffweb/badge.svg)](https://search.maven.org/#artifactdetails%7Ccom.webfirmframework%7Cwffweb%7C12.0.2%7Cjar)
4+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.webfirmframework/wffweb/badge.svg)](https://search.maven.org/#artifactdetails%7Ccom.webfirmframework%7Cwffweb%7C12.0.3%7Cjar)
55
[![javadoc](https://javadoc.io/badge2/com.webfirmframework/wffweb/javadoc.svg)](https://javadoc.io/doc/com.webfirmframework/wffweb)
66
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
77

wffweb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.webfirmframework</groupId>
66
<artifactId>wffweb</artifactId>
7-
<version>12.0.2</version>
7+
<version>12.0.3</version>
88

99
<properties>
1010
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>

wffweb/src/main/java/com/webfirmframework/wffweb/DataWffIdOutOfRangeError.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
*/
1616
package com.webfirmframework.wffweb;
1717

18+
import java.io.Serial;
19+
1820
public class DataWffIdOutOfRangeError extends WffError {
1921

22+
@Serial
2023
private static final long serialVersionUID = 1L;
2124

2225
public DataWffIdOutOfRangeError() {

wffweb/src/main/java/com/webfirmframework/wffweb/concurrent/ReentrantStampedLock.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
package com.webfirmframework.wffweb.concurrent;
1818

19+
import java.io.Serial;
1920
import java.util.concurrent.TimeUnit;
2021
import java.util.concurrent.atomic.AtomicInteger;
2122
import java.util.concurrent.atomic.AtomicReference;
@@ -33,6 +34,7 @@
3334
*/
3435
final class ReentrantStampedLock extends StampedLock {
3536

37+
@Serial
3638
private static final long serialVersionUID = 1L;
3739

3840
private final transient AtomicReference<Thread> lockHolder = new AtomicReference<>();

wffweb/src/main/java/com/webfirmframework/wffweb/css/BackgroundColor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
package com.webfirmframework.wffweb.css;
1818

19+
import java.io.Serial;
1920
import java.util.Objects;
2021
import java.util.logging.Level;
2122
import java.util.logging.Logger;
@@ -52,6 +53,7 @@
5253
*/
5354
public class BackgroundColor extends AbstractCssProperty<BackgroundColor> implements StateChangeInformer<Bean> {
5455

56+
@Serial
5557
private static final long serialVersionUID = 1_0_0L;
5658

5759
private static final Logger LOGGER = Logger.getLogger(BackgroundColor.class.getName());

wffweb/src/main/java/com/webfirmframework/wffweb/css/BorderBottomColor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
package com.webfirmframework.wffweb.css;
1818

19+
import java.io.Serial;
1920
import java.util.Arrays;
2021
import java.util.List;
2122
import java.util.Objects;
@@ -52,6 +53,7 @@
5253
*/
5354
public class BorderBottomColor extends AbstractCssProperty<BorderBottomColor> implements StateChangeInformer<Bean> {
5455

56+
@Serial
5557
private static final long serialVersionUID = 1_0_0L;
5658

5759
private static final Logger LOGGER = Logger.getLogger(BorderBottomColor.class.getName());

wffweb/src/main/java/com/webfirmframework/wffweb/css/BorderBottomWidth.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
package com.webfirmframework.wffweb.css;
1818

19+
import java.io.Serial;
1920
import java.util.Arrays;
2021
import java.util.List;
2122

@@ -45,6 +46,7 @@
4546
*/
4647
public class BorderBottomWidth extends AbstractCssProperty<BorderBottomWidth> {
4748

49+
@Serial
4850
private static final long serialVersionUID = 1_0_0L;
4951

5052
public static final String MEDIUM = "medium";

wffweb/src/main/java/com/webfirmframework/wffweb/css/BorderColorCssValues.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
package com.webfirmframework.wffweb.css;
1818

19+
import java.io.Serial;
1920
import java.util.Objects;
2021
import java.util.logging.Level;
2122
import java.util.logging.Logger;
@@ -36,6 +37,7 @@
3637
*/
3738
public class BorderColorCssValues extends AbstractBean<BorderColorCssValues> implements StateChangeInformer<Bean> {
3839

40+
@Serial
3941
private static final long serialVersionUID = 1_0_0L;
4042

4143
private static final Logger LOGGER = Logger.getLogger(BorderColorCssValues.class.getName());

wffweb/src/main/java/com/webfirmframework/wffweb/css/BorderLeft.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717
package com.webfirmframework.wffweb.css;
1818

19+
import java.io.Serial;
1920
import java.util.Arrays;
2021
import java.util.List;
2122
import java.util.logging.Level;
@@ -50,6 +51,7 @@
5051
*/
5152
public class BorderLeft extends AbstractCssProperty<BorderLeft> implements StateChangeInformer<CssProperty> {
5253

54+
@Serial
5355
private static final long serialVersionUID = 1_0_0L;
5456

5557
private static final Logger LOGGER = Logger.getLogger(BorderLeft.class.getName());

0 commit comments

Comments
 (0)