Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:Wechat-Group/WxJava into source-…
Browse files Browse the repository at this point in the history
…develop

* 'develop' of github.com:Wechat-Group/WxJava:
  🎨 完善部分代码注释,修复 yaml 未自动提示 hosts 配置问题
  🆕 binarywang#3347 【开放平台】新增小程序备案相关接口
  🎨 binarywang#3343 【小程序】媒资管理新增字段status以支持审核状态展示
  🎨 binarywang#3333 【企业微信】设置应用在用户工作台展示的webview型数据时,支持enable_webview_click参数设置
  🆕  binarywang#3340【微信支付】增加直连商户付款码支付和撤销支付订单的V3版接口实现
  🆕 binarywang#3339 【企业微信】增加上传临时素材的重载方法
  🎨 binarywang#3337 【视频号小店】 订单详情字段补充、售后新特性补充
  🎨 Bump org.bouncycastle:bcpkix-jdk18on & bcprov-jdk18on from 1.78 to 1.78.1
  🔖 发布 4.6.3.B 测试版本
  • Loading branch information
Molzx committed Aug 16, 2024
2 parents b85535f + 39a152b commit 6a87c67
Show file tree
Hide file tree
Showing 46 changed files with 2,060 additions and 21 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
<packaging>pom</packaging>
<name>WxJava - Weixin/Wechat Java SDK</name>
<description>微信开发Java SDK</description>
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-starters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<packaging>pom</packaging>
<artifactId>wx-java-spring-boot-starters</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,19 @@ public class WxMpMultiProperties implements Serializable {
public static class HostConfig implements Serializable {
private static final long serialVersionUID = -4172767630740346001L;

/**
* 对应于:https://api.weixin.qq.com
*/
private String apiHost;

/**
* 对应于:https://open.weixin.qq.com
*/
private String openHost;

/**
* 对应于:https://mp.weixin.qq.com
*/
private String mpHost;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,19 @@ public class HostConfig implements Serializable {

private static final long serialVersionUID = -4172767630740346001L;

/**
* 对应于:https://api.weixin.qq.com
*/
private String apiHost;

/**
* 对应于:https://open.weixin.qq.com
*/
private String openHost;

/**
* 对应于:https://mp.weixin.qq.com
*/
private String mpHost;

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class WxMpProperties {
* 设置微信公众号的EncodingAESKey.
*/
private String aesKey;

/**
* 是否使用稳定版 Access Token
*/
Expand All @@ -49,6 +49,7 @@ public class WxMpProperties {
/**
* 自定义host配置
*/
@NestedConfigurationProperty
private HostConfig hosts;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion weixin-graal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-graal</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weixin-java-channel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-java-channel</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weixin-java-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-java-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weixin-java-cp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-java-cp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weixin-java-miniapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-java-miniapp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weixin-java-mp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-java-mp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion weixin-java-open/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>4.6.2.B</version>
<version>4.6.3.B</version>
</parent>

<artifactId>weixin-java-open</artifactId>
Expand Down
Loading

0 comments on commit 6a87c67

Please sign in to comment.