Skip to content

Commit

Permalink
update:Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyong920 committed Feb 11, 2025
1 parent 5eeef41 commit 6536211
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,12 @@

### Version Release 3.1.8(2025/2/6)

- fix:BrowserLauncher.getBrowserPid()方法添加cdp协议获取pid
- fix:BrowserLauncher.getBrowserPid()方法添加cdp协议获取pid

### Version Release 3.2.0(2025/2/11)

- [fix:Frame的 hasStartedLoading 变量改成 public](https://github.com/fanyong920/jvppeteer/commit/5eeef4163bfeb90499083136c43c89f67a4f7603)
- [fix:FrameManager frameTreeHandled 变量添加 volatile 修饰符;格式化代码;createIsolatedWorld()函数中,key添加:分割以及this.client改成参数中的session,以及不等待返回结果](https://github.com/fanyong920/jvppeteer/commit/1c170d14508ee8b9d52a32ae368f91b6b2bbdb1e)
- [fix:CdpFrame的 loaderId 变量添加 volatile 修饰符](https://github.com/fanyong920/jvppeteer/commit/54351d89dd41b75c04a4d31b61e9a3c6c6a39700)
- [fix:LifecycleWatcher.checkLifecycle()参数Frame改为CdpFrame,以及格式化代码,frameDetached()函数名改成onFrameDetached()](https://github.com/fanyong920/jvppeteer/commit/e8ae3e762218d6d38c56bf0e92b89fbe411c5f86)

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Jvppeteer 通过 [DevTools](https://chromedevtools.github.io/devtools-protocol/)
<dependency>
<groupId>io.github.fanyong920</groupId>
<artifactId>jvppeteer</artifactId>
<version>3.1.8</version>
<version>3.2.0</version>
</dependency>
```

Expand All @@ -46,7 +46,7 @@ mavenCentral()
然后,您可以将最新版本添加到您的构建中。

```xml
compile "io.github.fanyong920:jvppeteer:3.1.8"
compile "io.github.fanyong920:jvppeteer:3.2.0"
```

#### Logging
Expand All @@ -73,7 +73,7 @@ compile "io.github.fanyong920:jvppeteer:3.1.8"

下表提供了 Jvppeteer 版本与绑定的浏览器版本之间的映射。如果没有列出完全匹配的 Jvppeteer 版本,则支持的浏览器版本是紧接在前的版本:

| 3.0.0--3.1.8 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 131.0.6778.87 & Firefox stable_133.0 |
| 3.0.0--3.2.0 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 131.0.6778.87 & Firefox stable_133.0 |
|:------------:| :----------------------------------------------------------: |
| 2.2.0--2.2.5 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 130.0.6723.58 |
| 2.1.2 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 128.0.6613.137 |
Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.13.1</junit.version>
<jvppeteer.version>3.1.8</jvppeteer.version>
<jvppeteer.version>3.2.0</jvppeteer.version>
<slf4j.version>2.0.16</slf4j.version>
<maven.compiler.plugin.version>3.7.0</maven.compiler.plugin.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.github.fanyong920</groupId>
<artifactId>jvppeteer</artifactId>
<packaging>jar</packaging>
<version>3.1.8</version>
<version>3.2.0</version>
<name>jvppeteer</name>
<description>java version of puppeteer</description>
<url>https://github.com/fanyong920/jvppeteer</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/ruiyun/jvppeteer/common/Constant.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public interface Constant {
// add("disabled-by-default-v8.cpu_profiler.hires");
}
};
String JVPPETEER_VERSION = "3.1.8";
String JVPPETEER_VERSION = "3.2.0";

String UTILITY_WORLD_NAME = "__puppeteer_utility_world__" + JVPPETEER_VERSION;

Expand Down

0 comments on commit 6536211

Please sign in to comment.