• 5.5.6 1db1066524

    Xc released this 2024-11-19 08:54:55 +08:00 | 412 commits to dev since this release

    1. 修复了微信公众号关注后,可能会创建一个没有 userId 的 wechatUser 记录的情况。当系统中存在相同的 unionId 时,自动根据该 unionId 查找并关联到相应的用户。
    2. 增强了文档管理功能,支持传入指定滚动条所在元素的 id,以便动态调整和控制页面滚动。
    3. 优化article相关页面布局样式及props参数
    4. 文档管理 封装面包屑
    Downloads
  • 5.5.5 7e58698df8

    Xc released this 2024-11-05 09:02:10 +08:00 | 417 commits to dev since this release

    1. 支持小程序短信登录
    2. extrafile上传细节修正
    Downloads
  • 5.5.4 512b59d4bb

    Xc released this 2024-10-21 19:43:00 +08:00 | 422 commits to dev since this release

    1. 短信模板消息发送 支持mockSend,当mockSend为true,不会实际调用api
    2. 去掉短信配置不用声明
    3. loginByAccount方法中loginLogic判断修正
    4. 邮箱登录成功使验证码失效
    5. 发送邮件 subject支持带上${code},发送时替换成验证码 5小时前
    6. 使用domain中的新编译器编译了entity
    Downloads
  • 5.5.3 52e15b41cb

    Xc released this 2024-10-08 21:59:48 +08:00 | 436 commits to dev since this release

    1. 身份认证时选择证件类型修正
    Downloads
  • 5.5.2 30aa15735e

    Xc released this 2024-09-30 12:15:55 +08:00 | 439 commits to dev since this release

    1. 更新了短信登录和邮件登录功能中的一些细节
    2. 修正了一些小的bug
    Downloads
  • 5.5.1 ff4daa40ad

    Xc released this 2024-09-20 19:51:03 +08:00 | 450 commits to dev since this release

    • 增强了Article能力,增加了大纲功能
    • 调整了一些登录的相关配置
    Downloads
  • 5.5.0 1fb6db0afe

    Xc released this 2024-09-16 17:59:38 +08:00 | 465 commits to dev since this release

    1、User对象增加了hasPassword字段
    2、消除了token取数据时过深的cascade访问

    项目升级SQL
    Alter table user add column hasPassword boolean default 0;

    Downloads
  • 5.4.0 1625ade9a6

    lxy released this 2024-09-11 15:24:54 +08:00 | 473 commits to master since this release

    • 更新了application对象的config字段类型定义,WebConfig、WechatPublicConfig类型增加location

        location: {
            protocol: 'http:' | 'https:';
            hostname: string;
            port: string;
        }
      

      请根据具体项目在系统配置-应用管理-配置管理中完成location设置

      image

    • 统一了protocol为带有冒号的形式,包括:domain对象的protocol字段,system对象的config字段中Cos的protocol

      对domain对象的更新通过升级脚本完成。对system对象的更新请在系统配置-配置管理-云存储设置中更新bucket配置-protocol

      image

    • 增加了extrafile/crop组件,在web端支持图片上传前压缩裁剪

    • 实现了bindByMobile、bindByEmail方法,允许用户通过验证码绑定手机号或邮箱

    • 细化了loginByAccount方法报错信息

    • 适配domain 5.1.0的改动

    升级脚本

    ALTER TABLE `domain` MODIFY protocol ENUM('http:', 'https:','http', 'https') NOT NULL;
    UPDATE `domain` SET protocol = 'http:' WHERE protocol = 'http';
    UPDATE `domain` SET protocol = 'https:' WHERE protocol = 'https';
    ALTER TABLE `domain` MODIFY protocol ENUM('http:', 'https:') NOT NULL;
    
    Downloads