Skip to content

Version 1.113 #727

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ permissions: read-all
jobs:
semgrep:
name: Scan
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
container:
image: returntocorp/semgrep
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: semgrep ci
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
underscore-java
===============

[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.112)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.113)
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/javadev/underscore-java/blob/main/LICENSE)
[![Java CI](https://github.com/javadev/underscore-java/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/maven.yml)
[![CodeQL](https://github.com/javadev/underscore-java/actions/workflows/codeql.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/codeql.yml)
Expand Down Expand Up @@ -43,7 +43,7 @@ To configure your Maven project, add the following code to your pom.xml file:
<dependency>
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<version>1.112</version>
<version>1.113</version>
</dependency>
...
</dependencies>
Expand All @@ -52,7 +52,7 @@ To configure your Maven project, add the following code to your pom.xml file:
Gradle configuration:

```groovy
implementation 'com.github.javadev:underscore:1.112'
implementation 'com.github.javadev:underscore:1.113'
```

### Usage
Expand Down
20 changes: 13 additions & 7 deletions pom-central.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<packaging>jar</packaging>
<version>1.112</version>
<version>1.113</version>
<name>java port of Underscore.js</name>
<description>The java port of Underscore.js</description>
<url>https://github.com/javadev/underscore-java</url>
Expand Down Expand Up @@ -42,7 +42,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<source>11</source>
<target>11</target>
Expand All @@ -52,19 +52,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.5.3</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.0</version>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
Expand Down Expand Up @@ -126,13 +126,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>[5.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>[1.12.0,)</version>
<version>[1.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
16 changes: 11 additions & 5 deletions pom-pack.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<packaging>jar</packaging>
<version>1.112</version>
<version>1.113</version>
<name>java port of Underscore.js</name>
<description>The java port of Underscore.js</description>
<url>https://github.com/javadev/underscore-java</url>
Expand Down Expand Up @@ -43,7 +43,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<source>11</source>
<target>11</target>
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -244,13 +244,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>[5.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>[1.12.0,)</version>
<version>[1.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<packaging>jar</packaging>
<version>1.112-SNAPSHOT</version>
<version>1.113-SNAPSHOT</version>
<name>java port of Underscore.js</name>
<description>The java port of Underscore.js</description>
<url>https://github.com/javadev/underscore-java</url>
Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -201,19 +201,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>[5.12.0,)</version>
<version>[5.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>[1.12.0,)</version>
<version>[1.12.2,)</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading