Skip to content

Commit 39783e1

Browse files
authored
Jan 2024 Update (#226)
* Jan 2024 Update * update pom * more pom updates
1 parent 1befeda commit 39783e1

File tree

3 files changed

+41
-21
lines changed

3 files changed

+41
-21
lines changed

Changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## AMP HTML Validator 1.0.42
4+
- upgrade build-helper-maven-plugin from 3.4.0 to 3.5.0
5+
- upgrade commons-text from 1.10.0 to 1.11.0
6+
- upgrade commons-lang3 from 3.13.0 to 3.14.0
7+
- upgrade com.fasterxml.jackson from 2.15.3 to 2.16.1
8+
- upgrade exec-maven-plugin from 3.1.0 to 3.1.1
9+
- upgrade maven-checkstyle-plugin from 3.3.0 to 3.3.1
10+
- upgrade maven-clean-plugin from 3.3.1 to 3.3.2
11+
- upgrade maven-dependency-plugin from 3.6.0 to 3.6.1
12+
- upgrade maven-javadoc-plugin from 3.6.2 to 3.6.3
13+
- upgrade maven-pmd-plugin from 3.21.0 to 3.21.2
14+
- upgrade maven-surefire-plugin from 3.2.2 to 3.2.5
15+
- upgrade mockito-core from 5.7.0 to 5.10.0
16+
- upgrade protobuf-java from 3.25.1 to 3.25.2
17+
- upgrade puppycrawl.tools.checkstyle from 10.12.5 to 10.12.7
18+
- upgrade spotbugs-maven-plugin from 4.8.1.0 to 4.8.3.0
19+
- upgrade spotbugs from 4.8.1 to 4.8.3
20+
- upgrade testng from 7.8.0 to 7.9.0
21+
- sync validator-all.protoascii with amphtml (2024.01.31)
22+
323
## AMP HTML Validator 1.0.41
424
- update actions/checkout action from v3 to v4
525
- upgrade com.fasterxml.jackson from 2.15.2 to 2.15.3

pom.xml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>dev.amp</groupId>
88
<artifactId>validator-java</artifactId>
99
<name>AMP validator Java API</name>
10-
<version>1.0.41</version>
10+
<version>1.0.42</version>
1111
<description>A Java validator for the AMP Html format.</description>
1212
<packaging>jar</packaging>
1313
<url>https://github.com/ampproject/validator-java</url>
@@ -58,37 +58,36 @@
5858
<validator.proto.directory>${project.basedir}/src/main/proto</validator.proto.directory>
5959

6060
<!-- library versions -->
61-
<build-helper-maven-plugin.version>3.4.0</build-helper-maven-plugin.version>
61+
<build-helper-maven-plugin.version>3.5.0</build-helper-maven-plugin.version>
6262
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
6363
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
64-
<maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version>
65-
<maven-clean-plugin.version>3.3.1</maven-clean-plugin.version>
66-
<maven-dependency-plugin.version>3.6.0</maven-dependency-plugin.version>
64+
<maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version>
65+
<maven-clean-plugin.version>3.3.2</maven-clean-plugin.version>
66+
<maven-dependency-plugin.version>3.6.1</maven-dependency-plugin.version>
6767
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
6868
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
69-
<maven-javadoc-plugin.version>3.6.2</maven-javadoc-plugin.version>
70-
<maven-shade-plugin.version>2.4.2</maven-shade-plugin.version>
69+
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
7170
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
72-
<spotbugs-maven-plugin.version>4.8.1.0</spotbugs-maven-plugin.version>
73-
<com.github.spotbugs.version>4.8.1</com.github.spotbugs.version>
71+
<spotbugs-maven-plugin.version>4.8.3.0</spotbugs-maven-plugin.version>
72+
<com.github.spotbugs.version>4.8.3</com.github.spotbugs.version>
7473

7574
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>
76-
<protobuf.version>3.25.1</protobuf.version>
77-
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
75+
<protobuf.version>3.25.2</protobuf.version>
76+
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
7877
<jdk.version>11</jdk.version>
7978
<encoding>UTF-8</encoding>
8079
<main.basedir>${project.basedir}</main.basedir>
8180

8281
<checkstyle.maxAllowedViolations>10</checkstyle.maxAllowedViolations>
8382

84-
<com.puppycrawl.checkstyle.version>10.12.5</com.puppycrawl.checkstyle.version>
85-
<fasterxml.jackson.version>2.15.3</fasterxml.jackson.version>
83+
<com.puppycrawl.checkstyle.version>10.12.7</com.puppycrawl.checkstyle.version>
84+
<fasterxml.jackson.version>2.16.1</fasterxml.jackson.version>
8685
<tagchowder.version>2.0.27</tagchowder.version>
8786

8887
<!-- test dependencies -->
8988
<org.junit.version>5.10.1</org.junit.version>
90-
<org.mockito.version>5.7.0</org.mockito.version>
91-
<org.testng.version>7.8.0</org.testng.version>
89+
<org.mockito.version>5.10.0</org.mockito.version>
90+
<org.testng.version>7.9.0</org.testng.version>
9291
</properties>
9392

9493
<repositories>
@@ -153,7 +152,7 @@
153152
<plugin>
154153
<groupId>org.codehaus.mojo</groupId>
155154
<artifactId>exec-maven-plugin</artifactId>
156-
<version>3.1.0</version>
155+
<version>3.1.1</version>
157156
<executions>
158157
<execution>
159158
<id>Fetching AMP resources</id>
@@ -391,7 +390,7 @@
391390
<plugin>
392391
<groupId>org.apache.maven.plugins</groupId>
393392
<artifactId>maven-pmd-plugin</artifactId>
394-
<version>3.21.0</version>
393+
<version>3.21.2</version>
395394
<configuration>
396395
<skip>false</skip>
397396
<failOnViolation>true</failOnViolation>
@@ -670,12 +669,12 @@
670669
<dependency>
671670
<groupId>org.apache.commons</groupId>
672671
<artifactId>commons-lang3</artifactId>
673-
<version>3.13.0</version>
672+
<version>3.14.0</version>
674673
</dependency>
675674
<dependency>
676675
<groupId>org.apache.commons</groupId>
677676
<artifactId>commons-text</artifactId>
678-
<version>1.10.0</version>
677+
<version>1.11.0</version>
679678
</dependency>
680679

681680
<!-- test -->

src/main/resources/validator-all.protoascii

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9528,7 +9528,7 @@ tags: { # <amp-story-audio-sticker>
95289528
html_format: AMP
95299529
tag_name: "AMP-STORY-AUDIO-STICKER"
95309530
requires_extension: "amp-story-audio-sticker"
9531-
mandatory_parent: "AMP-STORY-GRID-LAYER"
9531+
mandatory_ancestor: "AMP-STORY-GRID-LAYER"
95329532
attr_lists: "extended-amp-global"
95339533
amp_layout: {
95349534
supported_layouts: CONTAINER
@@ -9579,7 +9579,8 @@ descendant_tag_list: {
95799579
tag: "AMP-IMG"
95809580
tag: "DIV"
95819581
tag: "SPAN"
9582-
}tags: { # amp-mowplayer
9582+
}
9583+
tags: { # amp-mowplayer
95839584
html_format: AMP
95849585
tag_name: "SCRIPT"
95859586
extension_spec: {

0 commit comments

Comments
 (0)